.modal-open {
    overflow:hidden;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.modal-overlay.active {
    display: flex;
}
.modal-container {
    background: white;
    border-radius:12px;
    max-width: 90%;
    max-height: 80%;
    overflow-y: auto;
    position: relative;
    -webkit-overflow-scrolling: touch;
    padding-top:24px;
}
.modal-container * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.modal-close {
    position: absolute;    
    top:24px;
    right:15px;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;    
    line-height: 1;
    width:20px;
    height:20px;
    padding: 0;
    margin: 0;
}
.modal-close span {
    display:block;
    position:relative;
    width:100%;
    height:100%;
    background-image:url(../../../imgs/new_image/icon/icon_close.svg);
    background-size:100% auto;
    background-repeat:no-repeat;
}
.modal-title {
    color: #222;
    margin-bottom:24px;
    font-weight: 700;
    font-size:24px;
    padding-right:32px;
    padding-left:24px;
    line-height:32px;
}
.modal-content {
    padding-right:24px;
    padding-left:24px;
    padding-bottom:24px;
    font-size:16px;
    color:#000;
}
.modal-footer {
    padding-right:24px;
    padding-left:24px;
    padding-bottom:24px;
}
.modal-btn-area {
    display:flex;
    gap:1rem;
}
.modal-btn-area .btn {
    flex:1;
}

/* 모달 크기 변형 */
.modal-large {
    max-width: 800px !important;
    width: 90% !important;
}
.modal-wd600 {
    max-width: 600px !important;
    width: 90% !important;
}
.modal-wd400 {
    max-width: 400px !important;
    width: 90% !important;
}
.modal-small {
    max-width: 400px !important;
    width: 90% !important;
}
.modal-fullscreen {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
}
.modal-fullscreen .modal-content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.fullscreen-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}


/* 모달 스크롤 콘텐츠 */
.modal-scroll-content {
    max-height: 300px;
    overflow-y: auto;
    padding:2.4rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top:2rem;
}
.adkfn {
    background-color:#fff;
}