@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* @import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap'); */
.thx {
    margin-top: 30px;
}

.popup__quiz {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(160, 174, 210, .7);
    z-index: 123;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0);
    transition: all .5s ease;
}

.popup__quiz-active {
    transform: scale(1);
}

.quiz-close {
    position: absolute;
    right: 30px;
    top: 30px;
    z-index: 13;
    cursor: pointer;
}

.quiz-close span {
    position: relative;
    width: 30px;
    height: 30px;
    border: 1px solid #fff;
    border-radius: 5px;
    display: block;
}

.quiz-close span::after,
.quiz-close span::before {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -1px;
    left: 50%;
    margin-left: -10px;
    width: 20px;
    height: 2px;
    background-color: red;
}

.quiz-close span::after {
    transform: rotate(45deg);
}

.quiz-close span::before {
    transform: rotate(-45deg);
}

.quiz {
    border: 2px solid #fff;
    background: rgba(160, 174, 210, 1);
    border-radius: 10px;
    max-width: 600px;
    min-height: 100px;
    margin: 0 auto;
    padding: 30px;
    font-family: 'Roboto', sans-serif;
    display: flex !important;
    justify-content: center;

    flex-direction: column;
    align-items: center;
}

.quiz__questions {
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 20px;
    margin-bottom: 50px;
}

.quiz-question__answer-email {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.quiz-question__span {
    font-size: 14px;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

.last-title {
    margin-bottom: 0px !important;
}

input[type="text"] {
    padding-left: 5px;
}

.quiz-question__title {
    font-size: 25px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    /* font-family: 'Kaushan Script', cursive; */
}

.quiz-question {
    /* width: 380px; */
}

.quiz-question__answers {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.quiz-question__radio {
    position: relative;
    appearance: none;
    border: 1px solid #fff;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 10px;
    cursor: pointer;
}

.quiz-question__radio::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    display: none;
}

.quiz-question__radio:checked::after {
    display: block;
}

.quiz-question__label {
    margin-bottom: 20px;
}

.quiz-question__label-my {
    font-size: 18px;
    cursor: pointer;
    color: #fff;
}

.quiz-question__answers input[type="text"] {
    /* width: 200px;
    height: 40px;
    padding-left: 10px; */
}

.quiz-question__btn {
    width: 100%;
    height: 50px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 5px;
    background-color: transparent;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
}

.error {
    outline: 3px solid red !important;
}