////
/// Box Sizing.
///
/// @group  Generic
/// @author Lee Anthony <seothemeswp@gmail.com>
/// @link   https://CustomizePro.com/
////

html {
	overflow-x: hidden;
	box-sizing: border-box;
	max-width: 100vw;
	height: 100%;
	font-size: 62.5%; // 10px browser default
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;

	&.admin-bar-showing {
		height: calc(100% - 46px);

		@include mq(m) {
			height: calc(100% - 32px);
		}
	}
}

div,
nav,
section {
	border-width: 0;
	border-style: solid;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}
