@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: 'Roboto';
	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: #cd9e01;
	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:#cd9e01;
}
.tabs .tab-wrapper > [type="radio"],
.feature table {
	border-bottom-color: #cd9e01 !important;
}

select {
	width: 100%;
}

/* ================================================================================================ */
/* =========================================== 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: 50px 10px;
	text-align: center;
}
.header h1 {
	color: #fff;
	font-family: 'Lato-thin';
	font-size: 48px;
	font-weight: normal;
	margin: 20px 0 0;
	letter-spacing: -1px;
	line-height: 1;
}
.header h1 span {
	color: #aaa;
	display: block;
	font-family: 'Roboto';
	font-size: 22px;
	font-weight: 200;
	padding: 10px 0 0;
	letter-spacing: 0;
}
.header > img {
	width:100px;
}
@media screen and (max-width: 50em) {
	.header {
		padding: 2em 5%;
	}
}

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

/* ================================================================================================ */
/* ============================================= MAIN ============================================= */
/* ================================================================================================ */
#main-wrapper {
	margin: 0;
	padding-left: 0;
	width:100%;
	transition: all 0.3s ease;
}