/* 개인정보처리방침 모달창 */
#modalWrapper {
    z-index: 5000;
    position: fixed;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.modal-inner {
    overflow-y: scroll;
    overflow-x: hidden;
    position: relative;
    width: clamp(320px, 80vw, 800px);
    aspect-ratio: 4/3;
    padding: 20px;
    border-radius: var(--border-radius-default);
    background-color: #fff;
    font-size: var(--font-size-mid);
    line-height: var(--line-height-5);
}

.modal-btn-box {
    display: flex;
    justify-content: flex-end;
    width: clamp(320px, 80vw, 800px);
    padding: 10px 0;
}
#modal-close-btn {
    position: relative;
    width: 30px;
    aspect-ratio: 1/1;
    border: 3px solid #fff;
    border-radius: 50%;
}
#modal-close-btn::before,
#modal-close-btn::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    content: '';
}
#modal-close-btn::before {transform: translate(-50%, -50%) rotate(45deg);}
#modal-close-btn::after {transform: translate(-50%, -50%) rotate(-45deg);}