.popup {
	display: none;
}
.popup.show {
	display: block;
}

/*------ Popup Setting ------*/
.popup {
	text-align: left;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9998;
}
.popup_mask {
	background: rgba(0,0,0,0.7);
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transition: opacity 0.5s ease;
}
.popup_outer {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	cursor: pointer;
}
.popup_inner {
	padding: 5px;
	margin: auto;
	background: #FFF;
	border: 1px solid #DDD;
	border-radius: 15px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transition: top .5s ease;
}
.popup.login .popup_inner {
	width: 600px;
	height: 440px;
}
.popup.alert .popup_inner {
	width: 400px;
	height: 110px;
}
.btn_close {
	background-image: url(../images/btn_close.png);
	background-size: 100% 100%;
	width: 1.5em;
	height: 1.5em;
	position: absolute;
	top: -10px;
	right: -10px;
	z-index: 9999;
	cursor: pointer;
}
.popup_container {
	height: 100%;
	/*overflow: auto;*/
}
.btn_close:hover {
	background-image: url(../images/btn_close_a.png);
	-webkit-transition: 0.5s all;
	-o-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-ms-transition: 0.5s all;
}

@media only screen and (max-width: 640px), only screen and (max-device-width: 640px) {
	.popup.login .popup_inner {
		width: 90%;
	}
}

/*------ Popup Content ------*/
.login_banner {
	background: url("../images/login_banner.jpg") center top no-repeat;
	background-size: cover;
	width: 100%;
	height: 80px;
	line-height: 80px;
	font-size: 18px;
	font-weight: bold;
	color: #bf0000;
	text-align: center;
}
.login_content {
	width: 80%;
	margin: 40px auto;
}
.alert_content {
	padding: 40px;
	text-align: center;
}