﻿@charset "utf-8";
/* CSS Document */

.BottomFixedAds{
	position: fixed;
	z-index: 9999;
	display:table;
	font-family: Montserrat,'Heiti TC','microsoft jhenghei';
	width:100vw;
	height: 100vh; 
	padding: 0px; 
	text-align: center;
	left:0px; 
	right: 0px;
	top:30px;
	bottom:0px;
	background: rgba(245,245,245,.85);
	box-shadow: 0px 0px 3px rgba(0,0,0,0.35);
	transition: all ease .5s;
	opacity: 0;
}
	
.HideAd .BottomFixedAds{
}

.HideAd .BottomFixedAds.VS{
	display:none;
}
	
.BottomFixedAds .close-btn{
	position:absolute;
	width:40px;
	height: 40px;
	border-radius: 100px;
	right:10px;
	top:10px;
	z-index: 999;
	background: #323232;
	border:2px solid #FFFFFF;
	box-shadow: 2px 2px 0px rgba(0,0,0,0.35);
	cursor: pointer;
}
	
.BottomFixedAds .close-btn:before{
	content:"";
	display:block;
	width:2px;
	height: 15px;
	background: #FFFFFF;
	position: absolute;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	margin: auto;
	transform: rotate(45deg);
}
	
.BottomFixedAds .close-btn:after{
	content:"";
	display:block;
	width:2px;
	height: 15px;
	background: #FFFFFF;
	position: absolute;
	left:0px;
	right:0px;
	top:0px;
	bottom:0px;
	margin: auto;
	transform: rotate(-45deg);
}
	
@media screen and (max-width:768px){
	body{
		padding-bottom:0px;
		transition: all ease .5s;
	}
	
	body.HideAd{
		padding-bottom: 0px;
	}
}

.BottomFixedAds .FixAdsCell{
	display:table-cell;
	text-align: center;
	vertical-align: middle;
}
	
.BottomFixedAds .AdContent{
	text-align: center;
	vertical-align: middle;
	display:inline-block;
	position:relative;
}
	
.BottomFixedAds .AdContent .AdContext{
	color:#162056;
	font-weight: 800;
	margin:10px 0px;
}
	
.BottomFixedAds .AdContent .AdLink{
	background: #0085ca;
	border-radius: 500px;
	color:#F5f5f5;
	width:50%;
	max-width:300px;
	padding: 10px 0px;
	line-height: 100%;
	text-align: center;
	display:inline-block;
}
	
.BottomFixedAds .AdContent .AdLink a{
	color:#FFFFFF;
	text-decoration: none;
}

.BottomFixedAds .AdsContent{
	text-align: center;
	vertical-align: middle;
	display:inline-block;
	position:relative;
}
	
.BottomFixedAds .AdsContent .AdContext{
	color:#162056;
	font-weight: 800;
	margin:10px 0px;
}
	
.BottomFixedAds .AdsContent .AdLink{
	background: #0085ca;
	border-radius: 500px;
	color:#F5f5f5;
	width:50%;
	max-width:300px;
	padding: 10px 0px;
	line-height: 100%;
	text-align: center;
	display:inline-block;
}
	
.BottomFixedAds .AdsContent .AdLink a{
	color:#FFFFFF;
	text-decoration: none;
}
	
.BottomFixedAds img{
	max-height: 80vh;
	max-width: 80vw ;
	display:inline-block;
}

.FixedLoadingArea{
	font-family: Montserrat,'Heiti TC','microsoft jhenghei';
	position:fixed;
	left:0px;
	top:0px;
	bottom:0px;
	right:0px;
	background: rgba(245,245,245,1);
	z-index: 10000;
	width:100vw;
	height: 100vh;
	transform: scale(1);
	transition: all ease .5s;
	display: none;
}

.FixedLoadingArea.Loading{
	transform: scale(1);
	display: table;
}

.FixedLoadingArea .FixLoadingCell{
	display:table-cell;
	text-align: center;
	vertical-align: middle;
	padding: 10px;
}

.FixedLoadingArea .FixLoadingCell .LoadingContent{
	position:relative;
}

@keyframes LoadingRotate{
	50%{transform: rotate(360deg)scale(1.5);}
}

.FixedLoadingArea .LoadingContent .Pic{
	width:60px;
	display:block;
	margin:0px auto;
	transform: rotate(0deg)scale(.8);
	filter: grayscale(1)brightness(.5);
}

.FixedLoadingArea .LoadingContent .Pic img {
	width: 100%;
}

.FixedLoadingArea .LoadingContent .Title {
	margin: 20px 0px;
	color: #474747;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 1px;
	display: none;
}

.FixedLoadingArea.Maintain .LoadingContent .Title{
	display:block;
	color:#000000;
	font-weight: 500;
	margin:10px 0px;
}

.FixedLoadingArea .LoadingContent .Context{
	font-size: 12px;
	color:#808080;
	letter-spacing: 1px;
}

.FixedLoadingArea .LoadingContent .Context en{
	font-size: 14px;
    letter-spacing: -0.03em;
    font-weight: 300;
}

.FixedInvalidWindow {
	position: fixed;
	left: 0px;
	top: 0px;
	bottom: 0px;
	right: 0px;
	z-index: 10000;
	background: rgba(245,245,245,.95);
	width: 100vw;
	height: 100vh;
	transition: all ease .5s;
	display: none;
}

.FixedInvalidWindow.Show{
	display:flex;
	align-content:center;
	align-items:center;
	justify-content:center;
}

.FixedInvalidWindow .Content{
	padding:5px 10px;
	border-radius:3px;
	background:#f72717;
	color:#fff;
	font-size:16px;
	font-weight:600;
}