@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: 320px;
	height: 121px;
	top: 50%;
	left: 50%;
	margin-left: -160px;
	margin-top: -60px;
	background: #fff;
	border-radius:15px;
	z-index: 41;
	box-shadow:3px 3px 5px rgba(0, 0, 0, 0.5);
}
#alert_text {
	position: relative;
	float: left;
	top: 40px;
	left:140px;
	width: 130px;
	height: 53px;
	color: #35160e;
	text-align: center;
	font-size: 22px;
	font-family: nanum_sr;
}
#alert_close {
	position: absolute;
	float: right;
	width: 16px;
	height: 16px;
	text-align: center;
	top: 6px;
	right: 12px;
	font-size: 30px;
	cursor: pointer;
	color: #333;
}
.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:#fff url(../images/alert_check.png) 17px 14px no-repeat }
.alert_re #alert_wrap { background:#fff url(../images/alert_re.png) 17px 14px no-repeat}
.alert_o #alert_wrap { background:#fff url(../images/alert_o.png)17px 14px no-repeat}
.alert_x #alert_wrap { background:#fff url(../images/alert_x.png) 17px 14px no-repeat }
/* 추가 - 텍스트 길 경우*/
.alert_long #alert_wrap {
	background: #fff url(../images/alert_long.png) 17px 14px no-repeat;
	width: 550px;
	height: 121px;
	margin-left: -275px;
	margin-top: -60px;
}

.alert_long #alert_text {
	margin-left: 0;
	top: 50px;
	width: 390px;
	height: 80px;
	line-height: 110%;
	text-align: left;
	font-size: 19px;
	color:#444;
}
.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;
}
