@charset "UTF-8";

/*====================================

	body

====================================*/

body {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.85em;
    background: #0285CF;
    touch-action: none;
}

/*====================================

	loading

====================================*/

.spinner {
	width: 100px;
	height: 100px;
}

/*====================================

	header

====================================*/

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px;
}
header nav .logo {
    float: left;
    width: 100px;
}
header nav .logo:after {
    content: '';
    display: table;
    clear: both;
}
header nav .nav_container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
header nav .menu-left {
    padding-left: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    z-index: 10;
    float: right;
    max-height: none;
}
header nav .menu-left li {
	float: none;
    margin-left: 1em;
    float: left;
}
header nav .menu-left a {
    display: inline-block;
    position: relative;
    padding-bottom: 0px;
    transition: color .35s ease;
    display: block;
    color: #fff;
    text-decoration: none;
}
header nav .menu-left a:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    transition: width 0s ease, background .35s ease;
}
header nav .menu-left a:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: #fff;
    transition: width .35s ease;
}
header nav .menu-left a:hover:before {
    width: 100%;
    background: #fff;
    transition: width .35s ease;
}
header nav .menu-left a:hover:after {
    width: 100%;
    background: transparent;
    transition: all 0s ease;
}
header nav .nav-toggle {
	display: none;
}

/*====================================

	#app_top

====================================*/

#app_top {
	max-width: 1800px;
	width: 100%;
	margin: 0 auto;
}

/*====================================

	footer

====================================*/

footer {
	background: #333;
	padding: 30px;
    position: relative;
    z-index: 2;
}
footer small {
	color: #fff;
	width: 100%;
	text-align: center;
	font-size: 80%;
	display: block;
}







