*, *:after, *:before { -webkit-box-sizing: border-box; box-sizing: border-box; }
.clearfix:before, .clearfix:after {display: table;  content: ''; }
.clearfix:after { clear: both; }

body {
	font-family: 'Avenir Next', Avenir, 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color: #fff;
	background: #272729;
	height: 100vh;
	overflow: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	outline: none;
	color: #aaa;
	text-decoration: none;
}

a:hover, a:focus {
	color: #fff;
}

.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}

/* Header */
.header {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 9;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	padding: 1em;
	background: linear-gradient(to bottom, transparent, #000);
	background: rgba(24,24,28,0.3);
	font-size: 0.85em;
}

.header__title {
	font-size: 1.25em;
	margin: 0;
	padding: 0;
	color: #5C5C64;
}

.note {
	font-weight: bold;
	margin: 0 0 0 auto;
	display: none;
	padding: 0 0.5em;
	color: #de6363;
}

.no-preserve3d .note--support {
	display: block;
}

.logo {
	position: fixed;
	top: 10px;
	left: 10px;
	width: 150px;
	height: 130px;
	background: transparent url(../../img/web/logo_white.png) no-repeat center center;
	background-size: contain;
	z-index: 9;
}

/* Top Navigation Style */
.site-links {
	position: relative;
	display: inline-block;
	text-align: center;
	white-space: nowrap;
	margin: 0 0.75em 0 0;
}

.site-links::after {
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	background: rgba(255,255,255,0.1);
	content: '';
	-webkit-transform: rotate3d(0,0,1,22.5deg);
	transform: rotate3d(0,0,1,22.5deg);
}

.site-icon {
	display: inline-block;
	margin: 0.5em;
	padding: 0 0;
	width: 1.5em;
	text-decoration: none;
}

.site-icon span {
	display: none;
}

.site-icon:before {
	margin: 0 5px;
	text-transform: none;
	line-height: 1;
	speak: none;
	-webkit-font-smoothing: antialiased;
}

.site-icon.site-icon--prev {
	display: inline-block;
	width: 18px;
	height: 18px;
	background-color: #fff;
	-webkit-mask-image: url("../../img/web/left-arrow.svg");
	mask-image: url("../../img/web/left-arrow.svg");
	mask-size: cover;
}

.site-icon.site-icon--home {
	display: inline-block;
	width: 18px;
	height: 18px;
	background-color: #fff;
	-webkit-mask-image: url("../../img/web/home.svg");
	mask-image: url("../../img/web/home.svg");
	mask-size: cover;
}

.inline-icon {
	display: inline-block;
	margin-top: -2px;
}

.inline-icon.lg {
	width: 20px;
	height: 20px;
}