@charset "UTF-8";
.no-scroll {
    height: 100%;
    overflow: hidden;
}

/* modal */
.modal-dim {
    position: fixed;
    inset: 0px;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: hidden auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.modal-wrap {
    width: 320px;
    display: flex;
    background-color: var(--bg--neu--00-4);
    z-index: 1001;
    flex-direction: column;
    align-items: center;
    border-radius: 14px;
    box-sizing: border-box;
    gap: 24px;
}

.modal-wrap.vertical-center {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.modal-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
    color: var(--txt--neu--500);
    box-sizing: border-box;
    padding: 24px 20px 0 20px;
    gap: 10px;
}

.modal-body .title {
    font-size: 16px;
    font-weight: 500;
    color: var(--txt--neu--900);
    padding-bottom: 2px;
    line-height: 22px;
}

.modal-btn-wrap {
    display: flex;
    gap: 6px;
    padding: 0 20px 20px 20px;
    box-sizing: border-box;
    width: 100%;
    flex-shrink: 0;
}

.modal-scroll {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
    color: var(--txt--neu--500);
    box-sizing: border-box;
    padding: 0;
    height: calc(100vh - 200px);
    max-height: 390px;
}

.modal-scroll .title {
    font-size: 16px;
    font-weight: 500;
    color: var(--txt--neu--900);
    padding-bottom: 2px;
    line-height: 22px;
    display: flex;
    height: 45px;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    border-bottom: 1px solid var(--bor--neu--10-3);
    flex-shrink: 0;
}

.modal-scroll .scroll-wrap {
    display: flex;
    padding: 24px 20px 0 20px;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    align-self: stretch;
    overflow-y: auto;
    height: 100%;
}

/* 풀모달 */
.modal-full {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: var(--bg--neu--00-1);
    height: 100%;
    overflow-y: scroll;
}

.modal-full .modal-header {
    display: flex;
    align-items: center;
    position: fixed;
    height: 46px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 210;
    background-color: var(--bg--neu--00-1);
    color: var(--txt--neu--20-2);
    font-size: 19px;
    border-bottom: 1px solid var(--bor--neu--10-1);
    box-sizing: border-box;
    justify-content: center;
}

.modal-header .btn-close {
    position: absolute;
    right: 0;
    width: 44px;
    height: 46px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-header .btn-close svg {
    stroke: var(--img--neu900);
}

.modal-full .modal-content {
    padding-top: 46px;
}
