/*
@media (min-width: 480px){

}
@media (min-width: 768px){

}
@media (min-width: 992px){

}
@media (min-width: 1200px){

}
*/



*{
	margin: 0;
	padding: 0;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html,
body{
	width: 100%;
	height: 100%;
	overflow: hidden;
}
html{

}
body{
	font-family: 'Roboto', Arial;
	color: white;
	background: black;
}
h1{
	font-family: 'BigNoodle';
	font-size: 35px;
	font-weight: normal;
	text-transform: uppercase;
}
h2{
	font-family: 'BigNoodle';
	font-size: 30px;
	font-weight: normal;
	text-transform: uppercase;
}
h4{
	font-family: 'BigNoodle';
	font-size: 21px;
	font-weight: normal;
	text-transform: uppercase;
}
h6{
	font-size: 12px;
	font-weight: bold;
}
p{
	font-size: 12px;
}
p.text-lg{
	font-size: 14px;
}
@media (min-width: 768px){
h4{
	font-size: 28px;
}
}
@media (min-width: 992px){
	
}
@media (min-width: 1200px){
h1{
	font-size: 48px;
}
h4{
	font-size: 30px;
}
}


.clearfix{
	clear: both;
}
.clearfix:before{
	content: '';
	display: table;
}
.clearfix:after{
	content: '';
	display: block;
	clear: both;
}


/* display */
.d-table{
	display: table;
}
.d-cell{
	display: table-cell;
}
.d-block{
	display: block;
}
.d-inline{
	display: inline;
}
.d-inline-block{
	display: inline-block;
}
.d-none{
	display: none;
}
@media (min-width: 480px){
.d-table-xs{
	display: table;
}
.d-cell-xs{
	display: table-cell;
}
.d-block-xs{
	display: block;
}
.d-inline-xs{
	display: inline;
}
.d-inline-block-xs{
	display: inline-block;
}
.d-none-xs{
	display: none !important;
}	
}
@media (min-width: 768px){
.d-table-sm{
	display: table;
}
.d-cell-sm{
	display: table-cell;
}
.d-block-sm{
	display: block;
}
.d-inline-sm{
	display: inline;
}
.d-inline-block-sm{
	display: inline-block;
}
.d-none-sm{
	display: none !important;
}
}
@media (min-width: 992px){
.d-table-md{
	display: table;
}
.d-cell-md{
	display: table-cell;
}
.d-block-md{
	display: block;
}
.d-inline-md{
	display: inline;
}
.d-inline-block-md{
	display: inline-block;
}
.d-none-md{
	display: none !important;
}
}
@media (min-width: 1200px){
.d-table-lg{
	display: table;
}
.d-cell-lg{
	display: table-cell;
}
.d-block-lg{
	display: block;
}
.d-inline-lg{
	display: inline;
}
.d-inline-block-lg{
	display: inline-block;
}
.d-none-lg{
	display: none !important;
}
}
/* /display */


.tl-fixed{
	table-layout: fixed;
}


/* vertical-align */
.va-top{
	vertical-align: top;
}
.va-bottom{
	vertical-align: bottom;
}
.va-middle{
	vertical-align: middle;
}
@media (min-width: 480px){
.va-top-xs{
	vertical-align: top;
}
.va-bottom-xs{
	vertical-align: bottom;
}
.va-middle-xs{
	vertical-align: middle;
}
}
@media (min-width: 768px){
.va-top-sm{
	vertical-align: top;
}
.va-bottom-sm{
	vertical-align: bottom;
}
.va-middle-sm{
	vertical-align: middle;
}
}
@media (min-width: 992px){
.va-top-md{
	vertical-align: top;
}
.va-bottom-md{
	vertical-align: bottom;
}
.va-middle-md{
	vertical-align: middle;
}
}
@media (min-width: 1200px){
.va-top-lg{
	vertical-align: top;
}
.va-bottom-lg{
	vertical-align: bottom;
}
.va-middle-lg{
	vertical-align: middle;
}
}
/* /vertical-align */


/* text-align */
.ta-center{
	text-align: center;
}
/* /text-align */


/* transitions */
.trans-default-total,
.trans-default-total:before,
.trans-default-total:after,
.trans-default-total *,
.trans-default-total *:before,
.trans-default-total *:after{
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.trans-background{
	-webkit-transition: background-image 0.2s ease;
	-moz-transition: background-image 0.2s ease;
	-ms-transition: background-image 0.2s ease;
	-o-transition: background-image 0.2s ease;
	transition: background-image 0.2s ease;
}
.trans-slow{
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-ms-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}
/* /transitions */


/* input text */
input[type="text"],
input[type="password"],
input[type="text"]:focus,
input[type="password"]:focus{
	display: block;
	width: auto;
	height: auto;
	font-size: 12px;
	font-weight: bold;
	border: none;
	color: white;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	background: none;
	outline: none;
}
/* /input text */


/* full-size */
.full-size{
	width: 100%;
	height: 100%;
}
@media (min-width: 480px){
.full-size-xs{
	width: 100%;
	height: 100%;
}
}
@media (min-width: 768px){
.full-size-sm{
	width: 100%;
	height: 100%;
}
}
@media (min-width: 992px){
.full-size-md{
	width: 100%;
	height: 100%;
}
}
@media (min-width: 1200px){
.full-size-lg{
	width: 100%;
	height: 100%;
}
}
/* /full-size */


/* .fullpage */
.fullpage{

}
.fullpage__page{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-color: black;
}
.fullpage__page[data-page="0"]{
	background-image: url(../images/bg-1.jpg);
}
.fullpage__page[data-page="1"]{
	background-image: url(../images/bg-2.jpg);
}
.fullpage__page[data-page="1"]:before{
	content: '';
	display: block;
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
}
.fullpage__page[data-page="1"].dark:before{
	opacity: 1;
}
.fullpage__page[data-page="2"]{
	background-image: url(../images/bg-3-1.jpg);
}
.fullpage__page[data-page="2"][data-bg="1"]{
	background-image: url(../images/bg-3-1.jpg);
}
.fullpage__page[data-page="2"][data-bg="2"]{
	background-image: url(../images/bg-3-2.jpg);
}
.fullpage__page[data-page="2"][data-bg="3"]{
	background-image: url(../images/bg-3-3.jpg);
}
.fullpage__page[data-page="3"]{
	background-image: url(../images/bg-4.jpg);
}
@media (max-width: 767px){
.fullpage__page[data-page="2"]{
	background-position: 22% center;
}
.fullpage__page[data-page="2"]:before{
	content: '';
	display: block;
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background: rgba(0, 0, 0, 0.5);
}
}
@media (min-width: 992px){
.fullpage__page[data-page="1"].dark:before{
	opacity: 0;
}
}
/* /.fullpage */


/* .container */
.container{
	width: 95%;
	height: 100%;
	margin: auto;
}
.container__header{
	z-index: 10;
}
.container__body{
	height: 70%;
}
.container__footer{
	width: 100%;
	position: absolute;
	bottom: 0px;
	left: 0px;
}
.container__decor{
	display: none;
	position: absolute;
}
@media (min-width: 768px){
.container{
	width: 720px;
}
.container__header{
	height: 120px;
}
.container__footer{
	height: 120px;
}
.container__body{
	width: 100%;
	height: auto;
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
}
.container__header ~ .container__body{
	top: 120px;
}
.container__footer ~ .container__body{
	bottom: 120px;
}
}
@media (min-width: 992px){
.container{
	width: 900px;
}
.fullpage__page[data-page="0"] .container__decor{
	display: block;
	height: 520px;
	left: 50%;
	right: -25%;
	margin: 35px auto 0px;
}
}
@media (min-width: 1200px){
.container{
	width: 1200px;
}
.fullpage__page[data-page="0"] .container__decor{
	height: 680px;
	right: -20%;
	margin: auto;
}
}
/* /.container */


/* .logo */
.logo{
	display: block;
	text-decoration: none;
	color: white;
}
.logo__image{
	display: block;
	width: 100%;
}
.logo__text{
	color: white;
	text-decoration: none;
	margin-top: 4px;
}
/* /.logo */


/* .title */
.title{
	margin: 77px auto 0;
	text-shadow: 0px 0px 30px white, 0px 0px 30px rgba(255, 255, 255, 0.5);
}
@media (min-width: 768px){
.title{
	margin-top: 35px;
}
}
/* /.title */


/* .btn */
.btn{
	display: inline-block;
	vertical-align: top;
	padding: 14px 35px;
	border: 2px solid white;
	border-radius: 5px;
	overflow: hidden;
	font-family: 'BigNoodle';
	font-size: 24px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	color: white;
	background: #00b7ee;
	cursor: pointer;
	-webkit-appearance: none;
}
.btn.btn_big{
	border-width: 10px;
}
.btn.btn_square{
	width: 30px;
	height: 30px;
	line-height: 26px;
	padding: 0;
	font-size: 21px;
}
.btn.btn_circle{
	border-radius: 100%;
}
.btn.btn_big.btn_square{
	width: 110px;
	height: 110px;
	padding-left: 14px;
	padding-right: 14px;
	line-height: 90px;
}
.btn_simple{
	border: none;
	background: none;
}
.btn.btn_square.btn_simple{
	line-height: 30px;
}
.btn_shine{
	box-shadow: 0px 0px 60px white, 0px 0px 60px rgba(255, 255, 255, 0.3);
}
.btn_shine:hover{
	box-shadow: 0px 0px 70px white, 0px 0px 70px white;
}
.btn_small{
	padding: 7px 21px;
	border-width: 1px;
	border-radius: 30px;
	font-size: 12px;
	font-family: 'Roboto';
	background: none;
}
@media (min-width: 1200px){
.btn.btn_big.btn_square{
	width: 130px;
	height: 130px;
	line-height: 110px;
}
}
/* /.btn */


/* .arrow */
.arrow{
	width: 42px;
	height: 42px;
	line-height: 37px;
	border: 2px solid #00b9e9;
	border-radius: 100%;
	font-size: 25px;
	text-align: center;
	color: #00b9e9;
	cursor: pointer;
}
/* /.arrow */


/* .soc */
.soc{

}
.soc__title{
	margin-bottom: 8px;
}
.soc__list{
	list-style: none;
	font-size: 0;
	white-space: nowrap;
}
.soc__item{
	display: inline-block;
	vertical-align: top;
	width: 25px;
	height: 25px;
	line-height: 25px;
	border: 1px solid white;
	border-radius: 100%;
	text-align: center;
}
.soc__item ~ .soc__item{
	margin-left: 7px;
}
.soc__link{
	display: block;
	width: 100%;
	height: 100%;
	line-height: 24px;
	font-size: 14px;
	text-align: center;
	text-decoration: none;
	color: white;
}
.soc_bright .soc__item{
	border-color: #00b9e9;
	background: #00b9e9;
}
.soc_big .soc__title{
	margin-bottom: 14px;
	font-size: 16px;
	font-weight: bold;
}
.soc_big .soc__item{
	width: 42px;
	height: 42px;
	line-height: 42px;
}
.soc_big .soc__item ~ .soc__item{
	margin-left: 14px;
}
.soc_big .soc__link{
	line-height: 40px;
	font-size: 21px;
}
/* /.soc */


/* .nav */
.nav{

}
.nav__list{
	list-style: none;
	white-space: nowrap;
}
.nav__item{

}
.nav__link{
	display: inline-block;
	padding-top: 4px;
	padding-bottom: 4px;
	text-decoration: none;
	text-transform: uppercase;
}
.nav__link-icon{
	display: inline-block;
	vertical-align: top;
	width: 20px;
	height: 20px;
	margin-left: -7px;
	margin-right: 7px;
}
.nav__link-icon:before,
.nav__link-icon:after{
	content: '';
	display: block;
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	margin: auto;
	border-radius: 100%;
}
.nav__link-icon:before{
	width: 6px;
	height: 6px;
	background: white;
}
.nav__link-icon:after{
	width: 6px;
	height: 6px;
	border: 1px solid white;
	opacity: 0;
}
.nav__link-text{
	display: inline-block;
	vertical-align: top;
	line-height: 20px;
	color: white;
}
.nav__link:hover .nav__link-text{
	color: #00b7ee;
}
.nav__item.active{

}
.nav__item.active .nav__link-icon:before{
	background: #00b7ee;
}
.nav__item.active .nav__link-icon:after{
	width: 18px;
	height: 18px;
	border-color: #00b7ee;
	opacity: 1;
}
.nav__item.active .nav__link-text{
	font-size: 14px;
	color: #00b7ee;
}
.nav__item.active .nav__link:hover{
	cursor: default;
}

@media (min-width: 768px){
.nav__link{
	padding-top: 0;
	padding-bottom: 0;
}
.nav__item:before{
	content: '';
	display: block;
	width: 1px;
	height: 1px;
	margin: 3px;
	opacity: 0;
	background: white;
}
.nav__item.active + .nav__item:before,
.nav__item:last-child.active:before{
	height: 50px;
	margin-top: 7px;
	margin-bottom: 7px;
	opacity: 1;
}
}
/* /.nav */


/* .pagination */
.pagination{
	list-style: none;
}
.pagination__item{

}
.pagination__link{
	display: block;
	text-decoration: none;
	color: white;
}
.pagination__icon{
	display: inline-block;
	vertical-align: top;
	width: 20px;
	height: 20px;
}
.pagination__icon:before,
.pagination__icon:after{
	content: '';
	display: block;
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	margin: auto;
	border-radius: 100%;
}
.pagination__icon:before{
	width: 6px;
	height: 6px;
	background: white;
}
.pagination__icon:after{
	width: 6px;
	height: 6px;
	border: 1px solid white;
	opacity: 0;
}
.pagination__text{
	display: inline-block;
	vertical-align: top;
	line-height: 20px;
	color: white;
}
.pagination__icon ~ .pagination__text{
	margin-left: 7px;
}
.pagination__item.pagination__item_active .pagination__link{
	cursor: default;
}
.pagination__item.pagination__item_active .pagination__icon:before{
	background: #00b7ee;
}
.pagination__item.pagination__item_active .pagination__icon:after{
	width: 18px;
	height: 18px;
	border-color: #00b7ee;
	opacity: 1;
}

.pagination.pagination_dots .pagination__text{
	display: none;
}
.pagination.pagination_hor .pagination__item{
	display: inline-block;
	vertical-align: top;
}
.pagination.pagination_hor .pagination__item ~ .pagination__item{
	margin-left: 7px;
}
/* /.pagination */


/* .user */
.user{

}
.user__info{

}
.user__info-title{

}
.user__info-name{
	font-weight: bold;
}
.user__item{
	margin: 14px 0px;
	text-transform: uppercase;
}
.user__link{
	text-decoration: none;
	color: white;
}
.user__link:hover{
	color: #00b7ee;
}
/* /.user */


/* .navbar */
.navbar{
	width: 100%;
	padding: 14px 21px;
	position: fixed;
	top: 0px;
	bottom: 0px;
	left: -100%;
	overflow: auto;
	background: black;
}
.navbar .nav{

}
.navbar .user{
	margin-top: 28px;
	margin-bottom: 35px;
}
.navbar .soc ~ .soc{
	/*display: inline-block;*/
	margin-top: 28px;
	/*margin-right: 42px;*/
}
.navbar .toggle{
	margin: -7px 0px 14px -12px;
}
.navbar.opened{
	left: 0;
}
@media (min-width: 768px){
.navbar{
	width: auto;
	position: absolute;
	top: 150px;
	bottom: 100px;
	left: auto;
	padding: 0;
	overflow: visible;
	background: none;
}
.navbar.opened{
	left: auto;
}
}
/* /.navbar */


/* .aside */
.aside{
	padding: 0px 14px;
	position: absolute;
	top: 0px;
}
.aside_left{
	left: 0px;
}
.aside.aside_right{
	right: 0px;
}
.aside.aside_fixed{
	position: fixed;
}
@media (min-width: 768px){
.aside{
	padding: 0px 28px;
	bottom: 0px;
}	
}
/* /.aside */


/* .header */
.header{
	padding: 7px 0px;
}
.header .logo_brand{
	display: inline-block;
	width: 120px;
	margin-top: 4px;
}
.header .logo_portal{
	width: 85px;
	margin-top: 4px;
}
.header .soc{
	margin-top: 21px;
}
.header .toggle{
	display: inline-block;
	margin-right: 14px;
}
@media (min-width: 768px){
.header{
	padding: 35px 0px;
}
.header .logo_brand{
	width: 140px;
	margin-top: 0;
}
.header .logo_portal{
	width: 135px;
	margin-top: 0;
}
}
/* /.header */


/* .footer */
.footer{
	width: 100%;
	padding: 7px 0px;
	position: absolute;
	bottom: 0px;
}
@media (min-width: 768px){
.footer{
	padding: 35px 0px;
}
}
/* /.footer */


/* .steps */
.steps{
	margin: 0px auto 0px;
	list-style: none;
	text-align: center;
}
.step{
	display: inline-block;
	padding: 7px 28px;
	margin-bottom: 28px;
}
.step[data-step="1"]{
	margin-top: 35px;
}
.step[data-step="2"]{
	padding: 11px 35px;
}
.step__title{
	
}
.step__body{
	width: 100%;
	height: 100%;
	font-size: 0;
	position: absolute;
	top: 0px;
	left: 0px;
	-webkit-transform: skew(-45deg);
	-moz-transform: skew(-45deg);
	-ms-transform: skew(-45deg);
	-o-transform: skew(-45deg);
	transform: skew(-45deg);
}
.step__side{
	display: inline-block;
	vertical-align: top;
	width: 50%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
}
.step__side:first-child{
	width: 40%;
	border-right: 1px solid white;
}
.step__side:last-child{
	width: 60%;
}
.step__index{
	display: block;
	height: 49px;
	position: absolute;
	top: -14px;
	right: 5px;
	-webkit-transform: skew(45deg);
	-moz-transform: skew(45deg);
	-ms-transform: skew(45deg);
	-o-transform: skew(45deg);
	transform: skew(45deg);
}
.step[data-step="1"] .step__index{
	right: 14px;
}
@media (min-width: 768px){
.step{
	padding: 14px 28px;
	margin-bottom: 42px;
}
.step[data-step="2"]{
	padding: 11px 35px;
}
.step[data-step="3"]{
	margin-bottom: 14px;
}
.step__index{
	top: -28px;
}
}
@media (min-width: 992px){
.step{
	padding: 21px 35px;
	margin-bottom: 49px;
}
.step[data-step="2"]{
	padding: 11px 35px;
}
.step[data-step="3"]{
	margin-bottom: 28px;
}
.step__index{
	height: 105px;
	top: auto;
	bottom: 7px;
	right: 14px;
}
.step[data-step="1"] .step__index{
	right: 30px;
}
}
@media (min-width: 1200px){
.step,
.step[data-step="3"]{
	margin-bottom: 63px;
}
.step[data-step="1"]{
	margin-top: 7px;
}
}
@media (min-width: 1200px) and (max-height: 720px){
.step[data-step="1"]{
	margin-bottom: 42px;
}
.step[data-step="2"]{
	margin-bottom: 56px;
}
.step[data-step="3"]{
	margin-bottom: 21px;
}
}
/* /.steps */


/* .gallery */
.gallery{
	margin-top: 42px;
}
.gallery__body{
	/*margin-top: 35px;*/
}
.gallery__content{
	width: 80%;
	min-width: 250px;
	margin: auto;
}
.gallery__item{

}
.gallery__footer{
	margin-top: 7px;
	text-align: center;
}
.gallery__controls{
	display: inline-block;
	vertical-align: middle;
	margin-top: 7px;
}
.gallery__arrow{
	display: inline-block;
	vertical-align: middle;
}
.gallery__pagination{
	display: inline-block;
	vertical-align: middle;
	margin: 0px 28px;
}
@media (min-width: 768px){
.gallery__content{
	width: 51%;
	float: right;
}
.gallery__footer{
	margin-top: 35px;
}
.spec__item {
    margin-bottom: 14px;
}
.gallery__controls{
	margin-top: 21px;
}
}
@media (min-width: 1200px){
.gallery__content{
	width: 35%;
	min-width: 0;
	float: right;
}
.gallery__body{
	margin-top: 42px;
}
.gallery__footer{
	margin-top: 14px;
}
}
@media (min-width: 1200px) and (min-height: 760px){
.gallery{
	margin-top: 56px;
}
.gallery__footer{
	margin-top: 21px;
}
.gallery__controls{
	margin-top: 35px;
}	
}
@media (min-width: 1200px) and (min-height: 860px){
.gallery{
	margin-top: 140px;
}
.gallery__footer{
	margin-top: 70px;
}
.gallery__controls{
	margin-top: 35px;
}	
}
/* /.gallery */


/* .spec */
.spec{
	list-style: none;
}
.spec__item{
	margin-bottom: 7px;
}
.spec__icon{
	display: block;
	width: 42px;
	margin-right: 14px;
}
.spec__text{
	font-weight: bold;
}
@media (min-width: 992px){
.spec__icon{
	width: 28px;
}	
}
@media (min-width: 992px){
.spec__icon{
	width: 35px;
}
}
@media (min-width: 1200px){
.spec__icon{
	width: auto;
}
}
/* /.spec */


/* .shuffle */
.shuffle{

}
.shuffle__item{
	display: none;
}
.shuffle__item.active{
	display: block;
}
/* /.shuffle */


/* .timer */
.timer{
	width: 60px;
	height: 60px;
	margin: auto;
}
.timer__circle{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	border: 3px solid white;
	border-radius: 100%;
}
.timer__countdown{
	width: 100%;
	height: 100%;
	line-height: 63px;
	font-size: 35px;
}
@media (min-width: 768px){

}
@media (min-width: 992px){
.timer{
	width: 70px;
	height: 70px;
}
.timer__countdown{
	line-height: 70px;
	font-size: 40px;
}
}
@media (min-width: 1200px){
.timer{
	width: 100px;
	height: 100px;
}
.timer__countdown{
	line-height: 100px;
	font-size: 60px;
}
}
/* /.timer */


/* .result */
.result{

}
.result__title{

}
.result__subtitle{
	color: #00b9e9;
	margin-bottom: 49px;
}
/* /.result */


/* .final */
.final{

}
.final__title + .final__bonuses{
	margin-top: 7px;
}
.final .auth__soc{
	margin-top: 28px;
	margin-bottom: 28px;
}
.final__insta{
	margin: 14px auto 0px;
}
.final__insta-title{
	font-size: 12px;
	font-weight: bold;
}
.final__insta-text{
	font-weight: bold;
	margin: 5px 0px;
}
.final__insta-link{
	color: #00b5e2;
}
.final__insta-soc{

}
@media (min-width: 768px){
.final__insta-title{
	font-size: 16px;
}
.final__insta-text{
	margin: 14px 0px 14px;
}
.final__insta{
	width: 80%;
	margin: 28px auto 0px;
}
}
@media (min-width: 992px){
.final__insta{
	margin: 7px auto 0px;
}
}
@media (min-width: 1200px){
.final__insta{
	margin: 28px auto 0px;
}
.final__title + .final__bonuses{
	margin-top: 21px;
}
}
/* /.final */


/* .auth */
.auth{

}
.auth__title{
	margin-bottom: 56px;
}
.auth__soc{

}
/* /.auth */


/* .bonuses */
.bonuses{
	font-size: 0;
}
.bonus{
	margin-bottom: 14px;
}
.bonus.bonus_invite{

}
.bonus__title{
	font-size: 12px;
	font-weight: bold;
}
.bonus__score{
	font-size: 12px;
	font-weight: bold;
	color: #00b9e9;
}
.bonus__soc{
	margin-top: 3px;
}
.bonus__link{
	margin-top: 4px;
}
.bonus__btn{
	display: block;
	width: 100%;
	margin-bottom: 7px;
}
.bonus__btn_select{
	display: none;
}
input.bonus__input{
	display: none;
	width: 100%;
	margin-bottom: 14px;
}

.bonus_link_active .bonus__link{
	margin-top: 7px;
}
.bonus_link_active .bonus__btn_show{
	display: none;
}
.bonus_link_active .bonus__btn_select{
	display: block;
}
.bonus_link_active input.bonus__input{
	display: block;
}
@media (min-width: 768px){
.bonus{
	display: inline-block;
	vertical-align: top;
	width: 28%;
	margin: 0% 2.5%;
}
.bonus.bonus_invite{
	width: 30%;
	margin: 0;
}
.bonus__score{
	font-size: 16px;
}
.bonus__soc{
	margin-top: 7px;
}
.bonus_link_active .bonus__link{
	margin-top: 14px;
}
}
@media (min-width: 1200px){
.bonus__score{
	font-size: 24px;
}
.bonus__title{
	font-size: 16px;
}
}
/* /.final */


/* .question */
.question{

}
.question__header{
	height: 10%;
}
.question__locker{
	position: absolute;
	top: 0px;
	left: 0px;
}
.question__footer{
	height: 30%;
}
.question__content{
	height: auto;
}
.question__title{
	font-family: 'BigNoodle';
	font-size: 24px;
	text-transform: uppercase;
	text-shadow: 0px 0px 35px white;
}
.question__subtitle{
	width: 100%;
	margin-top: -28px;
	margin-bottom: 28px;
	font-size: 0px;
	font-weight: bold;
	color: #00b9e9;
	opacity: 0;
}
.question__text{
	margin-top: 10px;
	margin-bottom: 21px;
	font-size: 16px;
	font-weight: bold;
	min-height: 40px;
}
.question__answers{
	height: 85%;
}
.question__answer{
	display: block;
	padding: 7px 28px;
	margin-bottom: 14px;
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	text-transform: none;
}
.question__answer *{
	font-size: 14px;
}
.question__result{
	display: none;
}
.question__timer{
	margin-bottom: 7px;
}

.question[data-state="choose"]{
	cursor: pointer;
}
.question[data-state="choose"] .question__header{
	height: 100%;
}
.question[data-state="choose"] .question__footer{
	height: 0%;
	opacity: 0;
}
.question[data-state="choose"] .question__content,
.question[data-state="choose"] .question__header ~ .question__content,
.question[data-state="choose"] .question__footer ~ .question__content{
	top: 100%;
	bottom: 0;
	opacity: 0;
}
.question[data-state="choose"] .question__title{
	font-size: 42px;
}
.question[data-state="choose"] .question__subtitle{
	font-size: 18px;
	opacity: 1;
}
.question[data-state="choose"]:hover .question__title{
	text-shadow: 0px 0px 35px white, 0px 0px 35px white;
}

.question[data-state="prepare"] .question__content,
.question[data-state="prepare"] .question__footer{
	-webkit-transition: all 0.3s ease, opacity 0.3s ease 0.3s;
	-moz-transition: all 0.3s ease, opacity 0.3s ease 0.3s;
	-ms-transition: all 0.3s ease, opacity 0.3s ease 0.3s;
	-o-transition: all 0.3s ease, opacity 0.3s ease 0.3s;
	transition: all 0.3s ease, opacity 0.3s ease 0.3s;
}

.question[data-state="prepared"] .question__text,
.question[data-state="prepared"] .question__footer{
	opacity: 0;
}

.question[data-state="question"] .question__prepared{
	display: none;
}
.question[data-state="question"] .question__answers{
	display: block;
}

.question[data-state="result"]{
	-webkit-transition: none;
	-moz-transition: none;
	-ms-transition: none;
	-o-transition: none;
	transition: none;
}
.question[data-state="result"] .question__content,
.question[data-state="result"] .question__header ~ .question__content,
.question[data-state="result"] .question__footer ~ .question__content{
	top: 100%;
	bottom: 0;
	opacity: 0;
}
.question[data-state="again"] .question__content{
	
}

@media (min-width: 768px){

}
@media (min-width: 992px){
.question__content{
	height: 55%;
}
.question__header{
	height: 15%;
}
.question__text{
	height: 70px;
	min-height: 0;
	font-size: 18px;
	padding: 0px 28px;
	margin-bottom: 0;
	margin-top: 0;
}
.question__timer ~ .question__text{
	height: auto;
	margin-top: 14px;
	font-size: 14px;
}
.question__answer{
	display: inline-block;
	width: 30%;
	height: 100%;
	padding: 7px 14px;
	margin-bottom: 0px;
	/*margin-top: 10px;*/
}
.question__subtitle{
	width: 100%;
	position: absolute;
	margin-top: -28px;
}
.question[data-state="choose"] .question__title{
	font-size: 60px;
}
.question__timer{
	margin-bottom: 0px;
}
}
/* /.question */


/* .game */
.game{
	height: 100%;
}
.game__bg{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
.game__bg:before{
	content: '';
	display: block;
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background: rgba(0, 0, 0, 0.5);
}
.game__bg.game__bg_hidden{
	opacity: 0;
}
.game__bg[data-bg="dizayn"]{
	background-image: url(../images/game/dizayn.jpg);
}
.game__bg[data-bg="foto_i"]{
	background-image: url(../images/game/foto_i.jpg);
}
.game__bg[data-bg="honor_9"]{
	background-image: url(../images/game/honor_9.jpg);
}
.game__bg[data-bg="muzika"]{
	background-image: url(../images/game/muzika.jpg);
}
.game__bg[data-bg="nochnie_gonki"]{
	background-image: url(../images/game/nochnie_gonki.jpg);
}
.game__bg[data-bg="nochnie_kvesti"]{
	background-image: url(../images/game/nochnie_kvesti.jpg);
}
.game__bg[data-bg="puteshestviya"]{
	background-image: url(../images/game/puteshestviya.jpg);
}
.game__bg[data-bg="razvlecheniya_nochnie"]{
	background-image: url(../images/game/razvlecheniya_nochnie.jpg);
}
.game__bg[data-bg="tehnologii"]{
	background-image: url(../images/game/tehnologii.jpg);
}
.game__body{
	width: 100%;
	height: 100%;
}
.game__viewport{
	position: absolute;
	top: 7px;
	bottom: 0;
	left: 0%;
	right: 0%;
}
.game__content{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
}
.game .question{
	position: absolute;
	top: 14px;
	bottom: 7px;
	left: 0px;
	right: 0px;	
}
@media (min-width: 480px){
	
}
@media (min-width: 768px){
.game{
	margin-left: 10%;
}
.game .question{
	top: 0px;
}
}
@media (min-width: 992px){
.game{
	margin-left: 20%;
}
.game__body{
	width: 720px;
	height: 349px;
	margin: auto;
	background: url(../images/phone-game.png) center center / contain no-repeat;
}
.game__viewport{
	overflow: hidden;
	width: 78.3%;
	height: 91.5%;
	top: 4.5%;
	bottom: auto;
	left: 10.6%;
	right: auto;
}
.game__viewport:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.5);
}
}
@media (min-width: 1200px){
.game{
	margin-left: 0%;
}
.game__body{
	width: 846px;
	height: 409px;
}	
}
/* /.game */


/* .scoreTable */
.scoreTable{
	width: 100%;
	margin: 35px auto 0px;
}
.scoreTable-container{
	width: 100%;
	height: 100%;
}
.scoreTable-wrapper{
	width: 100%;
	margin: 0px auto 0px;
	overflow: hidden;
}
.scoreTable-list{
	width: 100%;
	font-size: 0;
	white-space: nowrap;
	text-align: center;
}
.scoreTable-col{
	display: inline-block;
	vertical-align: top;
	width: 100%;
}
.scoreTable-item{
	padding: 5px;
}
.scoreTable-item-col{
	display: inline-block;
	vertical-align: top;
	font-size: 16px;
	line-height: 40px;
	background: rgba(0, 0, 0, 0.7);
}
.scoreTable-item-col.index{
	width: 15%;
	text-align: center;
}
.scoreTable-item-col.login{
	width: 55%;
	padding: 0px 14px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	text-align: left;
}
.scoreTable-item-col.score{
	width: 30%;
	color: #00b7ee;
	text-align: right;
	font-weight: bold;
	font-size: 14px;
	padding-right: 14px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.scoreTable-item-col.date{
	width: 45%;
}
.scoreTable-arrow{
	display: none;
	position: absolute;
	top: 0px;
	bottom: 0px;
	margin: auto;
}
.scoreTable-arrow.active{
	display: block;
}
.scoreTable-arrow.prev{
	left: 10px;
}
.scoreTable-arrow.next{
	right: 10px;
}
.scoreTable-pagination-outer{
	margin-top: 14px;
}
.scoreTable-pagination{
	text-align: center;
	font-size: 0;
	padding: 0px 70px;
}
.scoreTable-pagination-btn{
	display: inline-block;
	width: 14px;
	height: 20px;
	margin: 5px;
	font-weight: bold;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	cursor: pointer;
}
.scoreTable-pagination-btn.active{
	color: #00b7ee;
}
@media (min-width: 768px){

}
@media (min-width: 992px){
.scoreTable{
	width: 590px;
	margin-top: 0px;
}
.scoreTable-wrapper{
	width: 590px;
}
.scoreTable-col{
	width: 50%;
}
.scoreTable-pagination-outer{
	margin-top: 42px;
}
.scoreTable-item-col.index{
	width: 40px;
}
.scoreTable-item-col.login{
	width: 150px;
}
.scoreTable-item-col.score{
	width: 90px;
}
}
.vicscore__subtitle{
	margin-top: 15px;
	text-align: center;
	font-size: 16px;
}
/*@media (max-width: 991px){*/
.scoreTable-pagination-btn.dots {
    margin-right: 30px;
}
.scoreTable-pagination-btn.dots:before {
    content: '...';
    display: block;
    position: absolute;
    top: 0px;
    right: -23px;
    color: white;
}
.scoreTable-pagination-btn.disabled{
	display: none;
}
/*}*/
@media (min-width: 768px) and (max-width: 1199px){
.vicscore{
	width: 760px;
}
.vicscore .container__body{
	/*padding-left: 170px;*/
	width: 500px;
	left: 220px;
}
.scoreTable{
	width: 500px;
}
.scoreTable-wrapper{
	width: 500px;
}
}
@media (min-width: 1200px){
.vicscore{
	margin-left: auto;
}
.scoreTable{
	width: 740px;
}
.scoreTable-wrapper{
	width: 740px;
}
.scoreTable-item-col.index{
	margin-right: 10px;
}
.scoreTable-item-col.score{
	width: 110px;
}
.scoreTable-pagination-btn{
	display: inline-block;
	width: 40px;
	height: 40px;
	margin: 5px;
	font-weight: bold;
	font-size: 14px;
	line-height: 40px;
	text-align: center;
	background: rgba(0, 0, 0, 0.7);
	cursor: pointer;
}
.scoreTable-pagination-btn.active{
	color: white;
	background: #00b7ee;
}
.scoreTable-item-col.login{
	width: 200px;
}
}
/* /.scoreTable */


/* .overlay */
.overlay{
	display: none;
	position: fixed;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	text-align: center;
	background: url(../images/bg-1.jpg) center center / cover no-repeat;
}
.overlay:before{
	content: '';
	display: block;
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background: rgba(0, 0, 0, 0.3);
}
.overlay__icon{
	display: inline-block;
	width: 100px;
	margin-bottom: 14px;
}
.overlay__text{
	padding: 0px 21px;
}
@media (orientation: landscape){
.overlay{
	display: block;
}
}
@media (min-width: 768px){
.overlay{
	display: none;
}
}
/* /.overlay */