/* BASIC */
.app_modal{position:fixed; top:0; left:0; right:0; bottom:0; z-index:10000003; background:rgba(0,0,0,0.5); display:none; text-align:center}
.modal_wrap{display:inline-block; background:#fff; position:relative; top:50%; transform:translateY(-50%); min-width:400px; border-radius:20px; padding:30px; box-sizing:border-box}
.modal_wrap .modal_th h4{color:var(--text-black); font-weight:700}
.modal_wrap .modal_con{padding:20px 0 30px; box-sizing:border-box}
.modal_wrap .modal_btn{display:flex; gap:10px; justify-content:space-between}

.modal_wrap .modal_btn button{background:#E12547;; font-size:16px; color:#fff; border-radius:10px}
.modal_wrap .modal_btn button.cancel{background:#e0e0e0; color:#666}
.modal_wrap .modal_btn button.dblue{background:#4E5365}
.modal_wrap .modal_btn button.disable{opacity:0.3}

.modal_con h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}











@media (max-width: 460px) {
    .modal_wrap{min-width:90%}
}