.form-wrapper{
	position: relative;
	z-index: 9;
}

.red-bg .form-wrapper,
.red-bg .form-wrapper .title,
.red-bg .form-wrapper p,
.red-bg .form-wrapper a,
.red-bg .form-wrapper label{
	color: #FFFFFF;
}

.form-wrapper .title{
	margin-top: 20px;
	margin-bottom: 10px;
	font-family: 'Beebas Neue';
	font-size: 34px;
}

.form-wrapper p{
	font-family: 'Hurme Geometric Sans 1';
}

.form-wrapper label{
	font-family: 'Hurme Geometric Sans 1';	
	font-weight: normal;
	font-size: 14px;
}

.form-control{
	background-color: transparent;
	border-radius: 0;
	border-color: #FFFFFF;
	color: #FFFFFF;
}

.control-left{
	padding-right: 8px;
}

.control-right{
	padding-left: 8px;
}

select.form-control{
	color: #FFFFFF;
}

select.form-control>option{
	color: #c71e2f;
}

.form-control:focus{
    border-color: #FFFFFF;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;	
}

.form-control::-webkit-input-placeholder { color: white; }  /* WebKit, Blink, Edge */
.form-control:-moz-placeholder { color: white; }  /* Mozilla Firefox 4 to 18 */
.form-control::-moz-placeholder { color: white; }  /* Mozilla Firefox 19+ */
.form-control:-ms-input-placeholder { color: white; }  /* Internet Explorer 10-11 */
.form-control::-ms-input-placeholder { color: white; }  /* Microsoft Edge */


/***********
 * Register
 ***********/
 #registerForm .link-ret{
	float: left;
	font-size: 21px;
	margin-top: 15px;
}

#registerGenderRow .control-label{
	margin-right: 35px;
}

#registerGenderRow span{
	font-size: 12px;
}

#register_code{
	/*font-family: 'Beebas Neue Bold';*/
	height: 54px;
	font-weight: bold;
	font-size: 32px;	
}

#register_code::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.4); }  /* WebKit, Blink, Edge */
#register_code:-moz-placeholder { color: rgba(255, 255, 255, 0.4); }  /* Mozilla Firefox 4 to 18 */
#register_code::-moz-placeholder { color: rgba(255, 255, 255, 0.4); }  /* Mozilla Firefox 19+ */
#register_code:-ms-input-placeholder { color: rgba(255, 255, 255, 0.4); }  /* Internet Explorer 10-11 */
#register_code::-ms-input-placeholder { color: rgba(255, 255, 255, 0.4); }  /* Microsoft Edge */


#gameWrapper{
	background-color: #FFFFFF;
	border: 2px solid #c61d48;
	position: relative;
	min-height: 530px;
}

#gameWrapper .ballon{
	position: absolute;
	cursor: pointer;
	float: none;
	z-index: 19;
}

#gameWrapper .explore{
	transition: transform 3s linear, opacity 3s;
	-webkit-transition: -webkit-transform 3s linear, opacity 3s;	
	opacity: 0;
	transform: scale(5);
	-webkit-transform: scale(5);	
}

.ballon.fly-out{
	transition: transform 3s linear;
	-webkit-transition: -webkit-transform 3s linear;	
	transform: translateY(-1000px);
	-webkit-transform: translateY(-1000px);
}

#gameWrapper .ballon.top{
	-webkit-animation:pulsate 1s linear infinite backwards;	
	-moz-animation: pulsate 1s linear infinite backwards;
	-ms-animation: pulsate 1s linear infinite backwards;
	-o-animation: pulsate 1s linear infinite backwards;	
	animation: pulsate 1s linear infinite backwards;	
}

#gameWrapper .ballon.bottom{
	-webkit-animation:pulsate-reverse 1s linear infinite backwards;	
	-moz-animation: pulsate-reverse 1s linear infinite backwards;
	-ms-animation: pulsate-reverse 1s linear infinite backwards;
	-o-animation: pulsate-reverse 1s linear infinite backwards;
	animation: pulsate-reverse 1s linear infinite backwards;	
}

@keyframes pulsate{
   0%{margin-top:0px}
   50%{margin-top:-10px}
   100%{margin-top:0px}
}

@-webkit-keyframes pulsate{
   0%{margin-top:0px}
   50%{margin-top:-10px}
   100%{margin-top:0px}
}

@keyframes pulsate-reverse{
   0%{margin-top:0px}
   50%{margin-top:10px}
   100%{margin-top:0px}
}

@-webkit-keyframes pulsate-reverse{
   0%{margin-top:0px}
   50%{margin-top:10px}
   100%{margin-top:0px}
}

#gameWrapper .ballon.top.left{
	top: 50px;
	left: 60px;
}

#gameWrapper .ballon.top.center{
	top: 65px;
	margin: 0 auto;
	left: 0;
	right: 0;
}

#gameWrapper .ballon.top.right{
	top: 50px;
	right: 60px;	
}

#gameWrapper .ballon.bottom.left{
	top: 270px;
	left: 180px;	
}

#gameWrapper .ballon.bottom.right{
	top: 235px;
	right: 180px;	
}

.anim{
    -webkit-transform:translate(500px,500px);
}

/***************
 * Responsive
 ***************/
@media (max-width: 768px){
	.modal{
		top: 15px;
	}

	.form-wrapper{
		padding: 15px;
	}

	.control-left{
		padding-right: 15px;
		margin-bottom: 15px;
	}

	.control-right{
		padding-left: 15px;
		margin-bottom: 15px;
	}
	
	#gameWrapper .ballon.top.left{
		display: none;
	}

	#gameWrapper .ballon.top.right{
		display: none;
	}
}