@charset "utf-8";

.layer_popup {position:fixed;top:0;right:0;bottom:0;left:0;z-index:999999;display:block;} /* 팝업 위치 수정 */
.layer_popup .layer_dimmed {position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(0, 0, 0, 0.6);}
.layer_popup .layer_wrap {position:absolute;top:50%;left:50%;width:600px;padding:80px 0;background:#fff;transform:translate(-50%, -50%)} /* 팝업 위치 수정 */
.layer_popup .layer_wrap .layer_title {margin:0 20px;padding-bottom:0.5em;font-family:"HyundaiMedium";font-size:40px;line-height:1.2em;color:#000;text-align:center;border-bottom:1px solid #ccc;letter-spacing:-0.4px;}/* 폰트명 수정 */
.layer_popup .layer_wrap .layer_cont {font-family:"HyundaiRegular";font-size:16px;width:100%;margin:30px 0 0;text-align:center;}/* 폰트명 수정 */
.layer_popup .layer_wrap .popup_close {position:absolute;width:50px;height:50px;top:30px;right:30px;border:0;background:transparent;}
.popup_close:before,
.popup_close:after {content:'';position:absolute;top:50%;left:50%;width:24px;height:1px;margin-left:-12px;background:#000;}
.popup_close:before {
    -o-transform:rotate(-45deg);
    -ms-transform:rotate(-45deg);
    -moz-transform:rotate(-45deg);
    -webkit-transform:rotate(-45deg);
    transform:rotate(-45deg);
}
.popup_close:after {
    -o-transform:rotate(45deg);
    -ms-transform:rotate(45deg);
    -moz-transform:rotate(45deg);
    -webkit-transform:rotate(45deg);
    transform:rotate(45deg);
}
.popup_close span {position:absolute;overflow:hidden;display:inline-block;width:0 !important;height:0 !important;padding:0 !important;margin:0 !important;font-size:0 !important;line-height:0 !important;}
@media screen and (max-width:767px){
    .layer_popup .layer_wrap { width:calc(100% - 30px);left:50%;margin:0;padding:40px 0;} /* 팝업 위치 수정 */
    .layer_popup .layer_wrap .layer_title {font-size:24px;}
    .layer_popup .layer_wrap .layer_cont {font-size:14px;}
    .layer_popup .layer_wrap .popup_close {top:15px;right:15px;}
}