@font-face { font-family: Lato-Thin; src: url(../fonts/Lato-Thin.ttf); }
@font-face { font-family: Lato-Regular; src: url(../fonts/Lato-Regular.ttf); }

*,
*: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: 'Lato-Thin';
	color: #fff;
	background: #2b2b2b;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-y: scroll;
	overflow-x: hidden;
	width: 100vw;
}

a {
	outline: none;
	color: #fd264f;
	text-decoration: none;
}
a:hover,
a:focus {
	color: #fff;
}

button:focus {
	outline: none;
}

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

.ref_color {
	color:#fd264f;
}
.tabs .tab-wrapper > [type="radio"],
.feature table {
	border-bottom-color: #fd264f !important;
}

select {
	width: 100%;
}

/* ================================================================================================ */
/* ======================================== MATERIAL ICONS ======================================== */
/* ================================================================================================ */
.material-icons {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: 'liga';
 }

/* ================================================================================================ */
/* =========================================== SCROLLBAR ========================================== */
/* ================================================================================================ */
::-webkit-scrollbar {
	overflow: hidden;
	width: 6px;
	height: 6px;
	background: transparent;
}
::-webkit-scrollbar-button {
	display: none;
}
::-webkit-scrollbar-corner {	
	display: none;
	background: transparent;
}
::-webkit-scrollbar-thumb {
	background: #d3d3d4;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	-o-border-radius: 1px;
	-ms-border-radius: 1px;
	border-radius: 1px;
}

/* ================================================================================================ */
/* ============================================ HEADER ============================================ */
/* ================================================================================================ */
.header {
	padding: 2em 1em 4em;
	text-align: center;
}
.header h1 {
	margin: 0.5em 0 0;
	letter-spacing: -1px;
	font-size: 3em;
	line-height: 1;
	font-weight: normal;
}
.header h1 span {
	display: block;
	padding: 0.5em 0 1em;
	color: #999;
	font-weight: normal;
	font-size: 0.45em;
	letter-spacing: 0;
}
.header > img {
	max-width:100px;
	width:100px;
}
@media screen and (max-width: 50em) {
	.header {
		padding: 2em 5%;
	}
}

@media screen and (max-width: 40em) {
	.header h1 {
		font-size: 2.15em;
	}
}