@charset "utf-8";
/* CSS Document */

.popupMobileAppOverlayBG	{
	position:fixed;
	left:0px;
	top:0px;
	width:1000%;
	height:2000%;
	background-color:#000000;
	z-index:1000;
}
.popupMobileAppOverlay {
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	z-index:1001;
}
.getApp	{
	z-index:1002;
	position:relative;
	top:25px;
	width:50%;
	margin:0 auto;
	background:url(/static/en/images/mobile/img_getAppNow.png) no-repeat;
}
a.closePop {
	position:absolute; 
	display:block;
}

@media screen and (max-width: 900px) {
	.getApp				{ width:700px; height:548px; background-size:700px 548px; }
	a.closePop			{ width:45px; height:45px; top:-15px; right:-10px; background:url(/static/en/images/mobile/btn_close.png) no-repeat; background-size:45px 45px; }
	.getApp	div			{ position:absolute;width:100px; height:33px; bottom:30px; }
	.getApp	div a		{ display:block; width:100px; height:33px; }
	.btn_appStore		{ right:155px; }
	.btn_appStore a		{ background:url(/static/en/images/mobile/btn_appStore.jpg) no-repeat; background-size:100px 33px; }
	.btn_googlePlay		{ right:30px; }
	.btn_googlePlay a	{ background:url(/static/en/images/mobile/btn_googlePlay.jpg) no-repeat; background-size:100px 33px; }
}
@media screen and (min-width: 900px){
	.getApp				{ width:866px; height:678px; background-size:866px 678px; }
	a.closePop			{ width:54px; height:54px; top:-20px; right:-10px; background:url(/static/en/images/mobile/btn_close.png) no-repeat; }
	.getApp	div			{ position:absolute; width:133px; height:44px; bottom:33px; }
	.getApp	div a		{ display:block; width:133px; height:44px; }
	.btn_appStore		{ right:185px; }
	.btn_appStore a		{ background:url(/static/en/images/mobile/btn_appStore.jpg) no-repeat; }
	.btn_googlePlay		{ right:37px; }
	.btn_googlePlay a	{ background:url(/static/en/images/mobile/btn_googlePlay.jpg) no-repeat; }
}

.popupMobileAppOverlayBG {
	opacity: 0;
	-webkit-transition: opacity 0.3s linear; 
	-moz-transition: opacity 0.3s linear; 
	-o-transition: opacity 0.3s linear; 
	-ms-transition: opacity 0.3s linear; 
	transition: opacity 0.3s linear; 
}
.popupMobileAppOverlayBG.halfFadeIn {
	opacity: 0.5;
}
.popupMobileAppOverlayBG.hidden {
	display: none;
}

.popupMobileAppOverlay {
	opacity: 0;
	-webkit-transition: opacity 0.3s linear; 
	-moz-transition: opacity 0.3s linear; 
	-o-transition: opacity 0.3s linear; 
	-ms-transition: opacity 0.3s linear; 
	transition: opacity 0.3s linear; 
}
.popupMobileAppOverlay.fadeIn {
	opacity: 1;
}
.popupMobileAppOverlay.hidden {
	display: none;
}