section.quiz-form {
    background: #002B30;
    /* min-height: 720px; */
    display: flex;

    padding: 50px 20px;

    flex-direction: column;
    align-items: center;
    background-position: -110px;
    background-repeat: no-repeat;
    background-size: 730px;

    h3.quiz-form-title {
        color: white !important;
        font-family: Alike;
        font-size: 32px !important;
        font-weight: 400;
        line-height: 66px;
        text-align: center;
        text-wrap: balance;
    }
}




.quiz-form-items {
    max-width: 1200px;

    .quiz-form-item {
        display: none;

        &.is-active {
            display: block;
        }
    }
}



.quiz-questions-wrapper {
    margin-top: 20px;

    .quiz-question-wrapper {

        /* display:none; */
        &.active {
            display: block;
        }
    }

}


.quiz-question {
    font-family: Lato;
    font-size: 17px !important;
    font-weight: 400;
    line-height: 21.25px;
    text-align: center;
    color: white;
}

.quiz-answers {
    display: flex;
    justify-content: space-around;
    margin: 31px auto;
    flex-direction: column;
    gap: 17px;

    button {
        background: none;
        color: white;
        border: solid 1px;
        border-radius: 5px;
        padding: 5px 10px;
        min-width: 70px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
        outline: none;
        font-size: 1rem;
        text-wrap: balance;

        &:hover {
            background: #006C7B;
            opacity: .9;
        }

        .answer-icon {
            display: inline-block;
            width: 20px;
            height: 20px;
            background-image: url(/wp-content/themes/Avada-child/images/check-mark-white.svg);
            background-size: cover;
            background-repeat: no-repeat;
            opacity: 0;
        }

        &.active {
            background: #006C7B;

            .answer-icon {
                opacity: 1;
            }
        }

    }
}





.next-question-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 20px;

    button {
        border: none;
        width: 90px;
        cursor: pointer;

        &:disabled {
            opacity: .7;
            cursor: not-allowed;
        }
    }
}





.quiz-results {
    margin-top: 30px;


    .result-answer {
        padding-bottom: 5px;
        margin-bottom: 30px;
        display: none;

        &.active {
            display: block;
        }


        .result-answer-title {
            background: none;
            color: white;
            border-radius: 5px;
            padding: 5px 10px;
            margin-bottom: 5px;
            min-width: 70px;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5px;
            background: #006C7B;
            margin-bottom: 10px;

            span.answer-icon {
                opacity: 1;
            }

        }

        .result-answer-description {
            font-family: Lato;
            font-size: 15px;
            font-weight: 400;
            line-height: 18px;
            text-align: left;
            color: white;
        }


    }

}

.results-form {
    background: white;
    padding: 20px;
    border-radius: 7px;


    .result-form-subtitle {
        font-family: Lato;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        text-align: center;
        color: #002B30;
        margin-bottom: 20px;
    }


    .results-form-title {

        font-size: 27px;
        font-weight: 400;
        line-height: 27px;
        color: #A99768;
        text-align: center;
        margin-bottom: 20px;
    }

    .results-form-description {
        font-family: Lato;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        text-align: center;
        color: #A99768;
    }



}



@media screen and (min-width:800px) {
    .quiz-answers {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .quiz-results-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* display: flex; */
        gap: 40px;
    }

    .results-form {
        margin-top: 30px;
    }
}