[v-cloak] { display: none; }
.container-wrap {
    width: 100%;
    margin: 0 auto;
    min-height: 100dvh;
    max-width: 600px;
    height: 100%;
    background-color: #FFEADB;
    box-shadow: 10px 10px 100px rgba(189, 64, 17, 0.1);
}
.wrapper {
    width: 100%;
    padding: 0 16px;
}

.quiz-haed {
    position: fixed;
    width: 100%;
    max-width: 600px;
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 16px;
}
.quiz-haed .close-btn {
    display: block;
    width: 30px;
    height: 30px;
}
.quiz-haed .close-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}



.bottom-wrap {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 600px;
    padding: 10px 16px 30px 16px;
    background-color: #fff;
    box-shadow: 0 0 8px rgba(75, 75, 75, 0.15);
    display: flex;
    align-items: flex-start;
}

.bottom-wrap button,
.bottom-wrap a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    width: 100%;
    height: 48px;
    border-radius: 10px;
    color: #fff;
    background-color: var(--orange03);
}
.bottom-wrap button:disabled {
    opacity: 1 !important;
    background-color: #D0D0D0;
}


.sub-title {
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 100px;
    color: #fff;
    background-color: #FA8E49;
}

.modal-wrap {
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    overflow-y: auto;
}
.modal-wrap .modal-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% - 60px);
    max-width: 440px;
    padding: 27px 10px 15px 10px;
    border-radius: 20px;
    background-color: #fff;
}
.modal-wrap .modal-box .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 22px;
}
.modal-wrap .modal-box .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.modal-wrap .modal-box .contents-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 28px;
}
.modal-wrap .modal-box .contents-wrap span {
    font-size: 19px;
    text-align: center;
    color: #373737;
}
.modal-wrap .modal-box .contents-wrap p {
    font-size: 16px;
    text-align: center;
    color: #494949;
}
.modal-wrap .modal-box .btn-wrap {
    display: flex;
    align-items: center;
    gap: 7px;
    width: 100%;
}
.modal-wrap .modal-box .btn-wrap button {
    font-size: 18px;
    width: calc(50% - 3.5px);
    height: 44px;
    border-radius: 10px;
    background-color: #EEEEEE;
    color: #494949;
}
.modal-wrap .modal-box .btn-wrap button.confirm-btn {
    background-color: #f37321;
    color: #fff;
}

.checkbox-input {
    position: relative;
    width: 24px;
    height: 24px;
    visibility: hidden;
    cursor: pointer;
}
.checkbox-input::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../../src/img/icon/checkbox_off.svg) no-repeat center center /
      contain;
    content: "";
    visibility: visible;
}
.checkbox-input:checked:after {
    background: url(../../src/img/icon/checkbox_on.svg) no-repeat center center /
      contain;
}