.layer_popup_section {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.4);
}
.layer_popup_section > div {
    position: absolute;
    background: #fff;
    max-height: 90%;
    overflow-y: auto;
    padding: 40px 24px 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.layer_popup_section > .mini_popup {
    padding: 16px 24px;
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
    min-width: 360px;
}
.close {
    cursor: pointer;
    position: absolute;
    width: 24px;
    height: 24px;
    top: 16px;
    right: 16px;
    background: url(/images/login_renewal/close.svg) no-repeat 0 0 / 100%;
}
.mini_popup > *:not(.close) {
    margin-top: 16px;
}
.mini_popup h4 {
	font-weight: 700;
}
.mini_popup b {
	font-weight: 700;
}
.mini_popup span {
	font-weight: 700;
	color: #FF753A;
}
.mini_popup .list {
    font-size: 14px;
    font-weight: 600;
    color:#222;
    border-radius: 8px;
    background: #F8F8F8;
    padding: 10px 16px;
}
.explan {
    margin-top: 24px;
    font-size: 14px;
    text-align: center;
    color: #595959;
}
.mini_popup button {
    border-radius: 4px;
    width: 100%;
    height: 40px;
    color: #595959;
    background: #EFF1F5;
}


/* =============== 모바일 mobile =============== */

@media only screen and (max-width: 768px) {

.layer_popup_section {
    height: 100vh;
    background: #F8F8F8;
}
.layer_popup_section > div {
    position: static;
    width: 100%;
    height: 100vh;
    transform: unset;
    padding: 0 16px;
    background: #F8F8F8;
}
.layer_popup_section > .mini_popup {
    position: absolute;
	height: auto;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

}





















