@charset "utf-8";
.event-dim.quest2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 9998;
}

.event-popup.quest2 {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(var(--vp-scale, 1));
    z-index: 9999;
    width: 600px;
    max-width: calc(100% - 40px);
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.event-popup.quest2 img {
    filter: none !important;
}

.event-popup.quest2 .popup-cnt {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 40px 30px;
    background-color: transparent;
}

.event-popup.quest2 .popup-cnt > img {
    max-width: 80%;
}

.event-popup.quest2 .popup-cnt .messege {
    text-align: center;
    line-height: 1.4;
    font-size: 26px;
    color: #003366;
    font-weight: 600;
}

.event-popup.quest2 .popup-cnt .messege strong {
    color: #3B70E2;
}

/*
 * 후기 작성까지의 순서 안내.
 * 번호는 CSS counter 로 붙인다 (프로젝트 공통 리셋이 list-style 을 지워도 영향받지 않는다).
 */
.event-popup.quest2 .popup-cnt .notice {
    align-self: stretch;
    margin: 0;
    padding: 16px;
    background-color: #EDF2FE;
    border-radius: 16px;
    text-align: left;
    line-height: 1.45;
    font-size: 20px;
    font-weight: 500;
    color: #003366;
    word-break: keep-all;
}

.event-popup.quest2 .popup-cnt .notice .steps {
    counter-reset: notice-step;
    margin: 0;
    padding: 0;
    list-style: none;
}

.event-popup.quest2 .popup-cnt .notice .steps > li {
    position: relative;
    padding-left: 70px;
    min-height: 30px;
    font-size: 20px;
    line-height: 30px;
}

.event-popup.quest2 .popup-cnt .notice .steps > li + li {
    margin-top: 8px;
}

.event-popup.quest2 .popup-cnt .notice .steps > li:before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);

    counter-increment: notice-step;
    content: "안내 " counter(notice-step);

    display: inline-flex;
    justify-content: center;
    align-items: center;

    height: 30px;
    padding: 0 12px;

    border-radius: 20px;
    background-color: #FF8A3D;

    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

/* .event-popup.quest2 .popup-cnt .notice .steps > li:before {
    position: absolute;
    left: 0;
    top: 0;
    counter-increment: notice-step;
    font-weight: 700;
    content: counter(notice-step) ".";
} */

.event-popup.quest2 .popup-cnt .notice strong {
    font-weight: 700;
    color: #3B70E2;
}

.event-popup.quest2 .popup-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;
    border-top: 1px solid #d9d9d9;
}

.event-popup.quest2 .popup-btn button {
    position: relative;
    min-width: 100px;
    height: 50px;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    line-height: 50px;
    padding: 0 30px;
    font-size: 20px;
    color: #fff;
    background-color: #3d3a3a;
    border-radius: 44px;
    cursor: pointer;
}

.event-popup.quest2 .popup-btn button:hover {
    box-shadow: inset -9999px -9999px rgba(0, 0, 0, 0.5);
}

.event-popup.quest2:focus {
    outline: none;
}

.event-popup.quest2 .popup-btn button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: -5px;
    box-shadow: 0 0 0 2px #003366;
}

.event-popup.quest2 .popup-btn button.ok {
    background-color: transparent;
    background: linear-gradient(90deg, #6092FF 0%, #356ADD 100%);
}

@media screen and (max-width: 640px) {
    .event-popup.quest2 .popup-cnt {
        padding: 30px 20px;
        gap: 14px;
    }

    .event-popup.quest2 .popup-cnt .messege {
        font-size: 18px;
    }

    .event-popup.quest2 .popup-cnt .notice {
        padding: 12px 14px;
        border-radius: 12px;
        font-size: 13px;
    }

    .event-popup.quest2 .popup-btn {
        padding: 20px;
        gap: 10px;
    }

    .event-popup.quest2 .popup-btn button {
        flex: 1;
        min-width: 0;
        padding: 0 10px;
        font-size: 16px;
    }
}
