
@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800");

/* Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}
html {
	width: 100%;
	height: 100%;
}
body {
	line-height: 1;
	height: 100%;
}

ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	-webkit-text-size-adjust: none;
}

/* Box Model */
*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	outline: 0;
}

button#mute{
	color: #fff;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0.5em;
	right: 0.5em;
	font-size: 1.5em;
	min-width: 2em;
	min-height: 2em;
	line-height: 2em;
	background-color: #0576F4;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.25);
	cursor: pointer;
	border-radius: 1em;
	border: none;
	outline: none;
}

button#mute i.fa-volume-off{
	display: none;
}

body.app-audio-mute button#mute i.fa-volume-off{
	display: inline-block;
}

body.app-audio-mute button#mute i.fa-volume-up{
	display: none;
}

@media screen and (max-width: 767px){
	button#mute{
		font-size: 1.25em;
	}
}

body.is-loading *,
body.is-loading *:before,
body.is-loading *:after {
	-moz-animation: none !important;
	-webkit-animation: none !important;
	-ms-animation: none !important;
	animation: none !important;
	-moz-transition: none !important;
	-webkit-transition: none !important;
	-ms-transition: none !important;
	transition: none !important;
}
html {
	height: 100%;
}
body {
	height: 100%;
	background-color: #ffffff;
	background-repeat: no-repeat;
	background-size: 100px 100px, cover;
	background-position: top center;
	background-attachment: fixed;
}
body:after {
	content: '';
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: inherit;
	opacity: 0;
	z-index: 1;
	background-color: #ffffff;
	background-repeat: repeat, no-repeat;
	background-size: 100px 100px, cover;
	background-position: top left, center center;
	-moz-transition: opacity 1.75s ease-out;
	-webkit-transition: opacity 1.75s ease-out;
	-ms-transition: opacity 1.75s ease-out;
	transition: opacity 1.75s ease-out;
}
body.is-loading:after {
	opacity: 1;
}

/* Main */
.main {
	position: relative;
	max-width: 100%;
	min-width: 320px;
	padding: 2.5em 3em 2em 3em;
	border-radius: 4px;
	cursor: default;
	text-align: center;
	-moz-transform-origin: 50% 50%;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-moz-transform: rotateX(0deg);
	-webkit-transform: rotateX(0deg);
	-ms-transform: rotateX(0deg);
	transform: rotateX(0deg);
	-moz-transition: opacity 1s ease, -moz-transform 1s ease;
	-webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
	-ms-transition: opacity 1s ease, -ms-transform 1s ease;
	transition: opacity 1s ease, transform 1s ease;
	/* max-width: 50%; */
}

body header{
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
	overflow: visible;
}

body.step-join button#mute{
	display: none;
}

body.is-loading .main {
	opacity: 0;
	-moz-transform: rotateX(15deg);
	-webkit-transform: rotateX(15deg);
	-ms-transform: rotateX(15deg);
	transform: rotateX(15deg);
}

/* Wrapper */
#wrapper {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-moz-perspective: 1000px;
	-webkit-perspective: 1000px;
	-ms-perspective: 1000px;
	perspective: 1000px;
	position: relative;
	min-height: 100%;
	padding: 1.5em;
	z-index: 2;
	top: 100px;
}
#wrapper>* {
	z-index: 1;
}
#wrapper:before {
	content: '';
	display: block;
}
@media screen and (max-width: 360px) {
	#wrapper {
		padding: 0.75em;
	}
}
body.is-ie #wrapper {
	height: 100%;
}
.btn_wrp {
	width: 100%;
}
.inner {
	display: table;
	margin: 0 auto;
}
.btn img {
	width: 75%;
}
.step3 .btn img {
	width: 90%;
}
.step.step-1 .btn,
.step.step-2 .btn,
.step.step-3 .btn{
	width: 50%;
	text-align: center;
	float: left;
}
.btn_full {
	width: 100%;
	text-align: center;
	float: left;
}
.btn_full img {
	width: 75%;
}
.gender>img {
	width: 95%;
}
#bg {
	position: fixed;
	left: 0;
	top: 0;
	z-index: -1;
}

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

	CUSTOM

	========================================================================== */
body {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #000;
}

.page__wrap {
	width: 1080px;
}

/* Pulse Grow */
@-webkit-keyframes hvr-pulse-grow {
	to {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
}
@keyframes hvr-pulse-grow {
	to {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
}
.hvr-pulse-grow {
	display: inline-block;
	vertical-align: middle;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-pulse-grow:hover,
.hvr-pulse-grow:focus,
.hvr-pulse-grow:active {
	-webkit-animation-name: hvr-pulse-grow;
	animation-name: hvr-pulse-grow;
	-webkit-animation-duration: 0.3s;
	animation-duration: 0.3s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	animation-direction: alternate;
}

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

	MEDIA QUERIES

	========================================================================== */
@media only screen and (min-width:480px) {
	.main {
		max-width: 50%;
	}
}
@media only screen and (min-height:320px) {
	.is-loading {
		height: 100%;
	}
	
	#wrapper {
		display: block;
		position: relative;
		height: 100%;
		padding: 0;
		z-index: 2;
		top: auto;
	}
	
	.main {
		margin: auto;
		position: absolute;
		left: 50%;
		top: 50%;
		-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
}

@media only screen and (max-width:1024px) {
	.mute-button:hover {
		background: #0576F4;
	}
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
	.mute-button:hover {
		background: #0576F4;
	}
}

@media only screen and (max-width:991px) {
	#wrapper {
		top: 60px;
	}
}

@media only screen and (max-width:479px) {
	.main {
		padding: 2em 0.25em;
	}
	
	#wrapper {
		top: 20px;
	}
}
@media only screen and (max-width: 360px) {
	.btn img {
		width: 90%;
	}
	
	body.step-1 .btn,
	body.step-2 .btn,
	body.step-3 .btn{
		width: 50%;
		text-align: center;
		float: left;
	}
}
@media only screen and (max-height:420px) {
	.main {
		padding-top: 0;
		max-width: 90%;
	}
	
	#wrapper {
		top: 0;
	}
}
@media only screen and (max-height:360px) {
	.main {
		max-width: 80%;
	}
}
body {
	background-position: center top;
}
.rating {
	position: fixed;
	bottom: 1em;
	left: 1em;
}
.bg2 .rating {
	display: none;
}
@media only screen and (max-width:991px) {
	#wrapper {
		top: auto;
	}
}

div.logo img{
	max-width: 100%;
}

header .logo{
	background: none !important;
	padding-left: 1em;
}

header .logo a{
	color: #fff;
	text-decoration: none;
}

div.legal.h-game-b{
	display: none;
}

.step{
	z-index: 5;
}

.step.step-1,
.step.step-2,
.step.step-3{
	text-align: center;
	transition: opacity 1s ease-out;
	opacity: 0;
	height: 0;
	overflow: hidden;
	padding: 0;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (min-width: 768px){
	.step.step-1,
	.step.step-2,
	.step.step-3{
		max-width: 50%;
	}
}

body.step-1 .step.step-1,
body.step-2 .step.step-2,
body.step-3 .step.step-3{
	opacity: 1;
	height: auto;
	position: relative;
	top: 50vh;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 10;
}

.text-step{
	max-width: 50%;
}

@media screen and (max-width: 767px){
	.text-step{
		max-width: 80%;
	}
}

.btn:active{
	box-shadow: none;
	-webkit-box-shadow: none;
}
