.quiz-container {
    width: 100%;
    padding: 85px 0;
    text-align: center;
    background-color: #C10A36;
}

.quiz-progress-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    position: relative;
}

.quiz-progress-wrapper .progress-digit {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 32px;
    color: #fff;
    font-weight: 600;
}

.quiz-progress-wrapper > svg {
    width: 100%;
    height: 100%;
}

.quiz-progress-wrapper > svg > .progress-ring__circle {
    transition: 0.5s stroke-dashoffset;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

.quiz-steps-container {
    display: flex;
    transform: translateX(0%);
    transition: .5s;
}

.quiz-step {
    width: 100vw;
    display: flex;
    align-items: center;
}

.quiz-step .uk-container {
    width: calc(100% - 30px);
}

.quiz-question { .uk-grid-margin, .uk-grid + .uk-grid, .uk-grid > .uk-grid-margin
    font-size: 34px;
    line-height: 39px;
    font-weight: bold;
    margin-bottom: 80px;
    color: #fff;
}

.quiz-answers-container {
    display: flex;
    flex-wrap: wrap;
    margin-left: -30px;
    justify-content: center;
}

.quiz-answer {
    width: 25%;
    padding-left: 30px;
    box-sizing: border-box;
}



.quiz-answer-inner {
    padding: 20px 30px;
    background-color: #fff;
    color: #000;
    cursor: pointer;
    position: relative;
}

.quiz-answer-for-display-result {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    display: flex;

    opacity: 0;
    pointer-events: none;
    transition: .3s;
}

.quiz-answer-for-display-result.success {
    opacity: 1;
    background-color: #09b709;
}

.quiz-answer-for-display-result.danger {
    opacity: 1;
    background-color: #c10a36;
}

.quiz-answer-for-display-result > span > svg {
    opacity: 1;
}

.quiz-container .free_consultation {
    margin: 40px auto 0;

}

.quiz-container .free_consultation label {
    text-align: left;
    opacity: 1;
    color: #fff;
}

.quiz-container .free_consultation .pr_black_c {
    color: #fff !important;
}

.quiz-container .free_consultation .custom-success-message {
    border-color: #fff;
    color: #fff;
}

.correct-to-all-holder {
    font-size: 34px;
    color: #fff;
}

.correct-to-all-count-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    align-items: center;
}

.correct-to-all-correct-count {
    font-size: 40px;
    width: 70px;
    height: 70px;
    border: 3px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.correct-to-all-correct-divider {
    line-height: 70px;
    padding: 0px 20px;
}

.correct-to-all-correct-total {
    font-size: 40px;
    width: 70px;
    height: 70px;
    border: 3px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #fff;
    color: #c10a36;
}

@media (max-width: 959px) {
    .quiz-answer {
        width: 50%;
        margin-bottom: 30px;
    }
    .main_third-section li:last-of-type {
        margin-top: 0;
    }
    .contact_form_main, .russian_levels {
        margin: 30px 0;
    }
    .about_country_main_part {
        margin: 0;
        padding-top: 120px;
    }
    #thanks {
        padding-top: 45px;
        margin-bottom: 10px;

    }
    .main_content h2 {
        padding-bottom: 45px;

    }
    .quiz-container {
        padding: 60px 0;
    }
    .content-video {
        padding-top: 43px !important;
        margin: 0;
    }

}

@media (max-width: 479px) {
    .quiz-answer {
        width: 100%;
        margin-bottom: 20px;
    }

    .quiz-question {
        font-size: 24px;
        line-height: 29px;
        margin-bottom: 40px;
        margin-top: 20px;
    }

}

