@charset "utf-8";
/* CSS Document */

#alert {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	left: 0;
	display: none;
	z-index: 40;
}
#alert_wrap {
	position: absolute;
	width: 277px;
	height: 273px;
	top: 50%;
	left: 50%;
	margin-left: -138px;
	margin-top: -137px;
	background: url(../images/alert_bg.png) no-repeat;
	z-index: 41;
}
#alert_text {
	position: relative;
	float: left;
	top: 200px;
	width: 282px;
	height: 83px;
	color: #000;
	text-align: center;
	font-size: 22px;
	font-family: nanum_sr;
}
#alert_close {
	position: absolute;
	float: right;
	width: 38px;
	height: 38px;
	line-height: 38px;
	text-align: center;
	top: 15px;
	right: 15px;
	font-size: 21px;
	cursor: pointer;
	color: #0090ff;
}
.alert_backdrop {
	position: absolute;
	width: 1000px;
	height: 650px;
	top: 50%;
	left: 50%;
	margin-left: -500px;
	margin-top: -325px;
	background-color: rgba(0, 0, 0, 0.6);
}
.alert_check #alert_wrap { background: url(../images/alert_check.png) center 70px no-repeat, url(../images/alert_bg.png) no-repeat; }
.alert_re #alert_wrap { background: url(../images/alert_re.png) center 70px no-repeat, url(../images/alert_bg.png) no-repeat; }
.alert_o #alert_wrap { background: url(../images/alert_o.png) center 70px no-repeat, url(../images/alert_bg.png) no-repeat; }
.alert_x #alert_wrap { background: url(../images/alert_x.png) center 70px no-repeat, url(../images/alert_bg.png) no-repeat; }
/* 추가 - 텍스트 길 경우*/
.alert_long #alert_wrap {
	background: #fff url(../images/alert_long.png) 20px 15px no-repeat;
	width: 550px;
	height: 100px;
	margin-left: -275px;
	margin-top: -50px;
}
.alert_long #alert_text {
	margin-left: 110px;
	top: 30px;
	width: 390px;
	height: 80px;
	line-height: 120%;
	text-align: left;
	font-size: 19px;
}
.alert_long #alert_close {
	position: absolute;
	float: right;
	width: 48px;
	height: 48px;
	text-align: center;
	top: 10px;
	font-size: 30px;
	right: 0;
	cursor: pointer;
	color: #aaa;
}
