.popup-wrap-background {
    position: fixed;
    background-color: #ffffff;
    opacity: 0;
    top: 0;
    z-index: 999;
    height: 100%;
    width: 100%;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.popup-wrap-background.is-open {
    opacity: 0.5;
    pointer-events: auto;
}
.popup-wrap-container {
    position: fixed;
    background-color: transparent;
    opacity: 0;
    top: 0;
    z-index: 999;
    height: 100%;
    width: 100%;
    padding: 80px 20px 135px 20px;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.popup-wrap-container.is-open {
    opacity: 1;
    pointer-events: auto;
}
.popup-wrap-content {
    position: relative;
    background-color: #ffffff;
    opacity: 1;
    top: 0;
    z-index: 1000;
    max-width: 429px;
    height: auto;
    width: 100%;
    padding: 33px 29px;
    margin: 125px auto 0;
    border: 1px solid #DBDBDB;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    transform: translateY(12px);
    transition: transform 0.25s ease;
}
.popup-wrap-container.is-open .popup-wrap-content {
    transform: translateY(0);
}
.popup-wrap-label {
    color: #000000;
    font-family: Stack Sans Headline;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 12px;
}
.popup-wrap-content .phone-number-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 5px;
    background-color: #FCFCFC;
    border: 1px solid #DBDBDB;
    margin-bottom: 22px;
}
.popup-wrap-content .phone-number-prefix-wrap {
    padding: 10px;
}
.popup-wrap-content .phone-number-prefix-wrap span {
    color: #363B64;
    font-family: Stack Sans Headline;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}
.popup-wrap-content input[type="tel"] {
    width: 100%;
    padding: 17px 50px 17px 22px;
    border-radius: 5px;
    border: none;
    outline: none;
    color: #363B64;
    font-family: Stack Sans Headline;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    box-sizing: border-box;
    background-color: #FCFCFC;
    border: 1px solid #DBDBDB;
}
.popup-wrap-content input[type="tel"]::placeholder {
    color: #C7C7C7;
}
.popup-checkbox-wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 25px;
}
.popup-checkbox-wrap label {
    color: #000000;
    font-family: Stack Sans Headline;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}
.popup-checkbox-wrap input[type="checkbox"],
.quiz-phone-wa-opt-wrap input[type="checkbox"] {
    width: 21px;
    height: 21px;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #DBDBDB;
    background-color: #FCFCFC;
    border-radius: 5px;
    display: inline-grid;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease-in-out;
}
.popup-checkbox-wrap input[type="checkbox"]::after,
.quiz-phone-wa-opt-wrap input[type="checkbox"]::after {
    content: '';
    width: 6px;
    height: 11px;
    border-right: 2px solid transparent;
    border-bottom: 2px solid transparent;
    transform: rotate(45deg);
    position: relative;
    top: -2px;
}
.popup-checkbox-wrap input[type="checkbox"]:checked,
.quiz-phone-wa-opt-wrap input[type="checkbox"]:checked {
    background-color: #1C3C32;
    border-color: #1C3C32;
}
.popup-checkbox-wrap input[type="checkbox"]:checked::after,
.quiz-phone-wa-opt-wrap input[type="checkbox"]:checked::after {
    border-right-color: #FFFFFF;
    border-bottom-color: #FFFFFF;
}
.popup-wrap-submit {
    background-color: #1C3C32;
    border-radius: 50px;
    width: 100%;
    padding: 13px;
    color: #FFFFFF;
    font-family: Stack Sans Headline;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    text-transform: capitalize;
    border: 0;
}
.popup-wrap-submit:hover,
.popup-wrap-submit:focus {
    background-color: #1C3C32;
}

@media screen and (max-width: 575px) {
    .popup-wrap-content input[type="tel"] {
        padding: 15px 10px;
    }
}