/* ==========================================================================
   �˾�â �ٿ�� css
   ========================================================================== */
@charset "UTF-8";

.popup_area{
	/* display: none; */
	position:absolute; 
	left:0%; 
	right:0%; 
	margin:0px auto; 
	width:100%;
	z-index: 1011;
}

.background_black_cover {
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1010;
}
.popup_layer {
	position: relative;
	margin: 0px auto;
	top: 125px;
}

.popup_layer .img {
	position: absolute;
	z-index: 20;
	left: 0;
	right: 0;
	margin: auto;
	background: #fff;
	display: inline-block;
}

.popup_layer .headline {
	z-index: 30;
	color: #fff;
	height: 50px;
	box-sizing: border-box;
	padding: 0px 15px;
	overflow: hidden;
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	background: rgba(0, 0, 0, 0.5);
}

.popup_layer .headline .title {
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	line-height: 50px;
}

.popup_layer .headline .del-ment {
	color: #fff;
	font-size: 14px;
	float: right;
	line-height: 50px;
}

.popup_layer .x {
	position: absolute;
	top: -10px;
	right: -10px;
	z-index: 50;
}

.popup_content{
	background: white;
}

@media screen and (max-width : 670px){
	.popup_layer{
		width: 270px;
		height: 380px; 			
	}
}
@media screen and (min-width: 670px){
   	.popup_layer{
		width: 640px;
		height: 910px;
	}
}