

#loading_mask {
	position:fixed;
	top:0;
	bottom:0;
	left:0;
	right:0;
	width:100%;
	height:100%;
	z-index:99990;
	background-color:rgba(0,0,0,0);
}
#loading_bg {
	position:fixed;
	top:40%;
	left:0;
	right:0;
	margin:auto;
	width:100px;
	height:100px;
	background-color:rgba(0,0,0,0.5);
	border-radius:5px;
	color:white;
	text-align:center;
	z-index:1000;
}
#loading_img {
    border: 3px solid #FFD43F;
    border-top-color: transparent;
    width: 30px;
    height: 30px;
    margin-top: 30px;
    border-radius: 50%;
    display: inline-block;
    -webkit-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
}
@-webkit-keyframes rotation {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}

#toast {
	display:none;
	position:fixed;
	top:40%;
    left: 0;
    right: 0;
    margin: auto;
	width:100%;
	text-align:center;
	z-index:99992;
}
#toast_inner {
	position:relative;
	display:inline-block;
	color:white;
	background-color:rgba(0,0,0,0.6);
	border-radius:5px;
}
#toast_content {
	padding:0 15px;
    height:40px;
	line-height:40px;
	font-size:18px;
	text-align:center;
}



#alert_mask {
	position:fixed;
	width:100%;
	height:100%;
	top:0;
	left:0;
	bottom:0;
	right:0;
	z-index:99991;
	background-color:rgba(0,0,0,0.5);
	margin:auto;
}
#alert_bg {
	position:fixed;
	width:300px;
    top:30%;
	left:0;
	right:0;
	margin:auto;
	background-color:white;
	border-radius:5px;
}
#alert_top_img {
	float:left;
    width: 100%;
}

#alert_content {
	float:left;
	width:80%;
	font-size:16px;
	margin-top:30px;
    margin-left: 10%;
	text-align:center;
	color:#3d3d3d;
}
#alert_cancel {
	float:left;
    width:110px;
	height:40px;
	line-height:40px;
	font-size:16px;
	text-align:center;
	margin-bottom:20px;
    margin-top: 30px;
    margin-left: 28px;
	border-radius:5px;
	color:#ffffff;
    background-color: #D2D2D2;
}
#alert_confirm {
	float:left;
    width:110px;
	height:40px;
	line-height:40px;
	font-size:16px;
	text-align:center;
	margin-bottom:20px;
    margin-top: 30px;
    margin-left: 25px;
	border-radius:5px;
	color:#282828;
    background-color: #FFD43F;
}
