.notice-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 999999;

    animation: noticePopAnima;
    opacity: 0;
    animation-delay: 0s;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

.notice-modal.show {
    display: flex;
}

.notice-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.notice_popup {
    position: relative;
    width: 100%;
    max-width: 600px;
    background: url('/bootstrap/custom-assets/images/event_popup/pop_bg.webp') no-repeat center / cover;
    /*overflow: hidden;*/
    padding: 32px 24px 24px;
    font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
    color: #1F2937;
    animation: noticePopAnima;
    opacity: 0;
    animation-delay: 0.5s;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes noticePopAnima {
    0% { opacity: 0; }
    100% {opacity: 1; }
}

.notice-modal-close-v2 {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;

    top: 32px;
    right: 24px;
    background: none;
    border: none;
    color: #9CA3AF;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    background-color: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    width: 32px;
    height: 32px;
}

.notice-modal-close-v2 span {
    margin-top: -3px;
}

.notice_popup .badge {
    margin: 0 auto;
    width: fit-content;
    padding: 6px 16px;
    border-radius: 999px;
    background: #fff;
    color: #5B6FE8;
    font-weight: 800;
    letter-spacing: 0.4px;
    font-size: 14px;
    display: flex;
    gap: 14px;
    align-items: center;
    line-height: 1;
}

.notice_popup .title {
    position: relative;
    text-align: center;
    margin: 22px 0 18px;
    font-weight: 900;
    color: #242833;
    font-size: 40px;
    line-height: 1.1;
}

.notice_popup .title svg {
    position: absolute;
    top: -16px;
    left: 76%;
}

.notice_popup .title .accent {
    display: block;
    margin-top: 8px;
    color: #6973e8;
}

.notice_popup .sub {
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
    color: #4B5563;
    font-weight: 500;
    margin: 0;
}

.notice_popup .card {
    margin-top: 16px;
    border-radius: 24px;
    background: #fff;
    padding: 24px 0 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(91, 111, 232, 0.12);
}

.notice_popup .card .lead {
    font-size: 14px;
    margin: 0;
    color: #2b313d;
    margin-bottom: 12px;
}

.notice_popup .point {
    font-weight: 900;
    color: #6271e5;
    font-size: 48px;
    line-height: 1.05;
    margin: 0;
}

.notice_popup .point span {
    color: #a7a9ad;
}

.notice_popup .gift {
    color: #727CF5;
    font-size: 18px;
    font-weight: 600;
    margin: 8px 0 16px;
}

.notice_popup .steps {
    display: grid;
    grid-template-columns: 1fr 0.1fr 1fr 0.1fr 1fr;
    gap: 18px;
    align-items: start;
    position: relative;
    padding: 0 50px;
}

.notice_popup .step-icon {
    width: 184px;
    height: 184px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    font-size: 56px;
    width: 96px;
    height: 96px;
}

.notice_popup .step-icon-01 {
    background: url('/bootstrap/custom-assets/images/event_popup/step_01.webp') no-repeat center / contain;
}

.notice_popup .step-icon-02 {
    background: url('/bootstrap/custom-assets/images/event_popup/step_02.webp') no-repeat center / contain;
}

.notice_popup .step-icon-03 {
    background: url('/bootstrap/custom-assets/images/event_popup/step_03.webp') no-repeat center / contain;
}

.notice_popup .step-t {
    color: #9ba4b4;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
}

.notice_popup .step-n {
    color: #212a3a;
    font-size: 18px;
    margin: 0;
    font-weight: 900;
    white-space: nowrap;
    opacity: 0.85;
}

.notice_popup .step-d {
    margin-top: 4px;
    color: #1F2937;
    font-size: 12px;
    line-height: 1.35;
    color: #9CA3AF;
    white-space: nowrap;
}

.notice_popup .note {
    margin: 16px 0 16px;
    text-align: center;
    color: #9CA3AF;
    font-size: 14px;
    line-height: 1.4;
}

.notice_popup .notice-today {
    position: relative;
    margin-top: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 400;
    color: #747981;
    cursor: pointer;
}

.notice_popup .notice-today-input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
}

.notice_popup .notice-today-box {
    width: 17px;
    height: 17px;
    border-radius: 4px;
    border: 1px solid #C2BDBD;
    background: #fff;
    display: inline-block;
    flex: 0 0 auto;
    position: relative;
    transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.notice_popup .notice-today-text {
    line-height: 1.2;
}

.notice_popup .notice-today-input:checked+.notice-today-box {
    background: #fff;
}

.notice_popup .notice-today-input:checked+.notice-today-box::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid #727CF5;
    border-width: 0 2px 2px 0;
    background-color: #F9F5F5;
    transform: rotate(45deg);
}

.notice_popup .notice-today-input:focus-visible+.notice-today-box {
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.2);
}

.notice_popup .arrow {
    background: url('/bootstrap/custom-assets/images/event_popup/arrow.png') no-repeat center / contain;
    width: 12px;
    height: 18px;
    margin-top: 36px;
}

.notice_popup .notice_popup_btn {
    background-color: #FFE500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    border-radius: 16px;
}

.notice_popup .notice_popup_btn>span {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 800;
    color: #111827;
    padding: 18px 0;
}

@media (max-height: 909px) {

    body {
        padding: 3.5204vh 0;
    }

    .notice-modal-content {
        max-width: 90%;
        max-height: 90%;
    }

    .notice_popup {
        width: 100%;
        max-width: 66.0066vh;
        padding: 3.5204vh 2.6403vh 2.6403vh;
    }

    .notice-modal-close-v2 {
        top: 3.5204vh;
        right: 2.6403vh;

        font-size: 2.4202vh;

        box-shadow: 0 0.1100vh 0.2200vh 0 rgba(0, 0, 0, 0.05);
        border-radius: 50%;
        width: 3.5204vh;
        height: 3.5204vh;
    }

    .notice-modal-close-v2 span {
        margin-top: -0.1vw;
    }

    .notice_popup .badge {
        padding: 0.6601vh 1.7602vh;
        border-radius: 109.9010vh;

        letter-spacing: 0.0440vh;
        font-size: 1.5402vh;
        gap: 1.5402vh;
    }

    .notice_popup .title {
        margin: 2.4202vh 0 1.9802vh;
        font-size: 4.4004vh;
    }

    .notice_popup .title svg {
        top: -0.7602vh;
        left: 77%;
        width: 2.5204vh;
        height: 2.5204vh;
    }

    .notice_popup .title .accent {
        margin-top: 0.8801vh;
    }

    .notice_popup .sub {
        font-size: 1.7602vh;
    }

    .notice_popup .card {
        margin-top: 1.7602vh;
        border-radius: 2.6403vh;
        padding: 2.6403vh 0 2.2002vh;
        box-shadow: 0 1.1001vh 2.2002vh rgba(91, 111, 232, 0.12);
    }

    .notice_popup .card .lead {
        font-size: 1.5402vh;
        margin-bottom: 1.3201vh;
    }

    .notice_popup .point {
        font-size: 5.2805vh;
    }

    .notice_popup .gift {
        font-size: 1.9802vh;
        margin: 0.8801vh 0 1.7602vh;
    }

    .notice_popup .steps {
        grid-template-columns: 1fr 0.1fr 1fr 0.1fr 1fr;
        gap: 1.9802vh;
        padding: 0 5.5006vh;
    }

    .notice_popup .step-icon {
        width: 20.2420vh;
        height: 20.2420vh;
        margin: 0 auto 1.7602vh;
        font-size: 6.1606vh;
        width: 10.5611vh;
        height: 10.5611vh;
    }

    .notice_popup .step-t {
        font-size: 1.3201vh;
        margin-bottom: 0.4400vh;
    }

    .notice_popup .step-n {
        font-size: 1.9802vh;
    }

    .notice_popup .step-d {
        margin-top: 0.4400vh;
        font-size: 1.3201vh;
    }

    .notice_popup .note {
        margin: 1.7602vh 0 1.7602vh;
        font-size: 1.3201vh;
        line-height: 1.4;
    }

    .notice_popup .notice-today {
        margin-top: 1.3201vh;
        gap: 0.8801vh;
        font-size: 1.4301vh;
    }

    .notice_popup .notice-today-input {
        width: 0.1100vh;
        height: 0.1100vh;
    }

    .notice_popup .notice-today-box {
        width: 1.8702vh;
        height: 1.8702vh;
        border-radius: 0.4400vh;
    }

    .notice_popup .notice-today-input:checked+.notice-today-box::after {
        left: 0.5501vh;
        top: 0.2200vh;
        width: 0.6vh;
        height: 1vh;
    }

    .notice_popup .arrow {
        width: 1.3201vh;
        height: 1.9802vh;
        margin-top: 3.9604vh;
    }

    .notice_popup .notice_popup_btn {
        gap: 1.3201vh;
        box-shadow: 0 1.1001vh 1.6502vh -0.3300vh rgba(0, 0, 0, 0.1);
        border-radius: 1.5602vh;
    }

    .notice_popup .notice_popup_btn>span {
        font-size: 2.2002vh;
        padding: 1.9802vh 0;
    }
}

@media (max-width: 500px) {

    .mo_br {
        display: block;
    }

    .notice-modal-content {
        width: 100%;
    }

    .step-d {
        display: none;
    }

    .notice_popup {
        padding: 4.8000vw 3.2000vw 4.8000vw;
    }

    .notice_popup .title {
        font-size: 7vw;
        margin: 5vw 0 2.4vw;
    }

    .notice_popup .sub {
        font-size: 3vw;
    }

    .notice_popup .title svg {
        top: -0.6vw;
        left: 78%;
        width: 4.8vw;
        height: 4.8vw;
    }

    .notice_popup .title .accent {
        margin-top: 0.0000vw;
    }

    .notice_popup .card {
        margin-top: 3.6000vw;
        margin-bottom: 4vw;
        padding: 4vw 0 4vw;
        border-radius: 4vw;
    }

    .notice_popup .card .lead {
        font-size: 3vw;
        margin-bottom: 1vw;
    }

    .notice_popup .point {
        font-size: 11.4000vw;
        margin-bottom: 2.6000vw;
        font-weight: 800;
    }

    .notice_popup .gift {
        font-size: 4vw;
        margin: 0.8000vw 0 3.6000vw;
    }

    .notice_popup .step-icon {
        width: 15.4vw;
        height: 15.4vw;
        margin: 0 5vw;
    }

    .notice_popup .arrow {
        width: 1.6000vw;
        height: 2.8000vw;
        margin-top: 6.2000vw;
    }

    .notice_popup .steps {
        gap: 0;
        padding: 0;
    }

    .notice_popup .step-n {
        font-size: 4vw;
        line-height: 1.4;
    }

    .notice_popup .step-icon {
        margin-bottom: 1.2000vw;
    }

    .notice_popup .step-d {
        margin-bottom: 1.6000vw;
    }

    .notice_popup .note {
        margin: 0.0000vw 0 3.2000vw;
        font-size: 3vw;
        line-height: 1.3;
    }

    .notice_popup .notice_popup_btn>span {
        padding: 3vw 0;
        font-size: max(2.4000vw, 3.7vw);
    }

    .notice_popup .notice_popup_btn>svg {
        width: 6.8000vw;
        height: 6.8000vw;
    }

    .notice-modal-close-v2 {
        top: 4.0000vw;
        right: 3.2000vw;
    }

    .notice_popup .step-t {
        font-size: 3vw;
        margin-bottom: 0;
        line-height: 1.4;
    }

    .notice_popup .notice-today {
        margin-top: 1.5vh;
        font-size: 3vw;
    }

}
