@charset "utf-8";

/***** 메인팝업 *****/
.popup-wrap {
	display: block;
}
.popup-wrap::after {
    content: "";
    display: block;
    position: fixed;
    left: 0px;
    top: 0px;
/*    width: 100%;
    height: 100%;*/
    background-color: none;
    z-index: 560;
}
.popup-wrap .popup-zone {
   position: fixed;
   left: 50%;
   top: 50%;
   min-width: 400px;
   width: 400px;
   max-height: calc(100vh - 60px);
   margin: 0 auto;
   background-color: #fff;
   z-index: 1000;
   transform: translate(-50%, -50%);
   overflow: auto;
   box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
   border-radius: 10px;
}
.popup-wrap .popup-zone .popup-body {
   min-height: 400px;
   height: calc(100% - 60px);
   overflow-y: auto;
	overscroll-behavior: contain;
	padding: 0px 0px 0px;
    background: #fff;
}
.popup_footer {
   display: table;
   position: absolute;
   left: 0;
   bottom: 0;
   z-index: 10;
   width: 100%;
   height: 50px;
   background: #fff;
   line-height: 50px;
   text-align: center;
}
.popup_footer a {
   display: table-cell;
   position: relative;
   font-size: 14px;
}
.popup_footer a:nth-of-type(1) {
   width: 67%;
}
.popup_footer a:nth-of-type(2) {
   width: 33%;
}
.popup_footer a + a::before {
   content: '';
   display: block;
   position: absolute;
   top: 18px;
   left: 0;
   width: 1px;
   height: 14px;
   background: #e0e0e0;
}


@media (max-width: 1140px) {

}


@media (max-width: 1024px) {

}


@media (max-width: 768px) {
   

}


@media (max-width: 480px) {

}