.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
}

.quiz {
    background: #053C4F;
    padding: 40px;
    margin-bottom: 50px;
}

.quiz-title {
    color: #FFF;
    font-family: Oswald;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 56px;
    margin-bottom: 40px;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.quiz-options button {
    border-radius: 4px;
    background: #00A3D2;
    box-shadow: -1px -1px 1px 0 rgba(0, 0, 0, 0.09);
    border: none;
    min-height: 52px;
    color: #FFF;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
    cursor: pointer;
}

.quiz-options button.is-selected {
    background: #EE4D29;
}

.quiz-nav button {
    border-radius: 4px;
    background: #EE4D29;
    box-shadow: -1px -1px 1px 0 rgba(0, 0, 0, 0.09);
    border: none;
    height: 52px;
    color: #FFF;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0 30px;
}

.quiz__progress {
    height: 6px;
    background: #e5e5e5;
    margin-bottom: 20px;
}

.quiz__progress-bar {
    width: 0;
    height: 100%;
    background: #009fe3;
    transition: .3s;
}

#quizPrev {
    display: none;
    float: left;
}

#quizNext {
    float: right;
}

.quiz-options--multi button.is-selected {
    background: #d63a20;
    /* чуть темнее, чтобы отличать */
}

.date-flex {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.date-flex span {
    color: #fff;
    font-size: 50px;
}

.quiz-step.active[data-step="phone"]+.quiz-nav #quizNext {
    display: none;
}

#dscons-form {
    padding: 0px !important;
}

#dscons-form .dskons-row div[class^="field-"]:not(.buttonform, .dscons-check) {
    width: auto;
}

.quiz-subtitle {
    color: #fff;
    margin-bottom: 10px;
}

.quiz-step1-flex {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.quiz-step1-flex .quiz-options {
    grid-template-columns: repeat(1, 1fr);
    width: 60%;
    margin-bottom: 0px;
}

.quiz-step1-flex img {
    margin-top: 0px;
    width: 34%;
}

#quiz-form {
    padding: 0px;
    background: #053C4F;
    margin-bottom: 50px;
    border: none;
}

.quiz-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

#quiz-form .quiz-row>* {
    margin-bottom: 0px;
}

input.quiz_phone {
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    background: linear-gradient(0deg, #FFF 0%, #FFF 100%), rgba(0, 0, 0, 0.04);
    height: 52px;
}

.quiz_send {
    border-radius: 4px;
    background: #00A3D2;
    box-shadow: -1px -1px 1px 0 rgba(0, 0, 0, 0.09);
    border: none;
    height: 52px;
    color: #FFF;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
    cursor: pointer;
}

#quiz-form .dscons-check {
    margin-top: 15px;
    display: flex !important;
    gap: 10px;
    align-items: flex-start;
    width: 100% !important;
}

#quiz-form .dscons-check input[type=checkbox] {
    margin: 0px;
    border-radius: 2.5px;
    background: #FFF;
    width: 13px;
    height: 13px;
}

#quiz-form .dscons-check span {
    color: #FFF;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 11px;
    opacity: 1;
}


@media(max-width: 980px) {
    .quiz-options {
        grid-template-columns: repeat(1, 1fr);
    }

    .quiz-step1-flex {
        flex-direction: column;
    }

    .quiz-step1-flex .quiz-options,
    .quiz-step1-flex img {
        width: 100%;
    }

    .quiz-title {
        font-size: 38px;
        line-height: 46px;
        margin-bottom: 30px;
    }
}