:root {
    --color: #008C99;
    --text-color: #505050;
}

.acf {
    display: none;
}

.text-xs {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

.text-sm {
    font-size: 16px;
    line-height: 24px;
}

.text-sm-b {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.text-md {
    font-size: 16px;
    line-height: 30px;
}

.text-l {
    font-size: 20px;
    line-height: 30px;
}

.text-l-b {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}

.text-xl {
    font-size: 28px;
    line-height: 30px;
    font-weight: 600;
}

.text-xxl {
    font-size: 40px;
    line-height: 46px;
    font-weight: 600;
}

@media (max-width: 750px) {
    .link span.text-sm-b {
        font-size: 14px;
        line-height: 16px;
        font-weight: 700;
    }

    .text-l {
        font-size: 20px;
        line-height: 26px;
    }

    .text-l-b {
        font-size: 20px;
        line-height: 26px;
        font-weight: 600;
    }

    .text-xl {
        font-size: 24px;
        line-height: 26px;
        font-weight: 600;
    }

    .text-xxl {
        font-size: 32px;
        line-height: 34px;
        font-weight: 600;
    }
}

.quizz {
    max-width: 1300px;
    margin-inline: auto;
}

.quizz-title,
.correct-count {
    color: var(--text-color);
    margin-bottom: 30px;
    padding-bottom: 0px;
}

.correct-count {
    display: none;
}

.submitted .quizz-title {
    display: none;
}

.submitted .correct-count {
    display: block;
}

.quizz-description {
    color: var(--text-color);
    margin-bottom: 30px;
}

.submitted .quizz-description {
    display: none;
}

.not-completed-text {
    display: none;
    font-family: Arial, Helvetica, sans-serif;
    flex-basis: 100%;
    color: #E21F1F;
    padding-bottom: 15px;

}

.not-completed .not-completed-text {
    display: block;
}

.question {
    padding: 50px 30px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    border: 2px solid var(--text-color);
}

.question.not-completed {
    border: 2px solid #E21F1F;
}

.question .index {
    color: var(--color);
    flex-basis: 50px;
    margin-right: 10px;
}

.question .content {
    flex-basis: calc(100% - 70px);
}

@media (max-width: 750px) {
    .question {
        padding: 30px 15px;
    }

    .question .content {
        flex-basis: 100%;
        margin-top: 15px;
    }
}

.question .question-text {
    color: var(--text-color);
    margin-bottom: 15px;
    padding-bottom: 0 !important;
}

.question .question-subtitle {
    color: var(--text-color);
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 15px;
    padding-bottom: 0 !important;
}

.variants {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.variant {
    font-family: Arial, Helvetica, sans-serif;
    padding: 16px 24px;
    color: var(--color);
    border: 2px solid var(--color);
    border-radius: 8px;
    height: minmax(50px, fit-content);
    /* display: flex;
    justify-content: center;
    align-items: center; */
    user-select: none;
    cursor: pointer;
}

@media (max-width: 750px) {
    .variant {
        width: 100%;
        text-align: center;
    }
}

.variants .incorrect-variant {
    color: #E21F1F;
    border: 2px solid #E21F1F;
}

.variants .selected {
    background-color: var(--color) !important;
    color: #fff !important;
}

.correct .correct-text,
.incorrect .incorrect-text {
    display: flex;
}

.correct-text,
.incorrect-text {
    display: none;
    align-items: center;
    margin-top: 30px;
}

.correct-text p,
.incorrect-text p,
.explanation p {
    color: var(--text-color);
    font-family: Arial, Helvetica, sans-serif;
    padding-bottom: 0 !important;
}

.explanation p {
    margin-top: 25px;
}

.correct-text svg,
.incorrect-text svg {
    align-items: center;
    margin-right: 15px;
    min-width: 24px;
    min-height: 24px;
}

.explanation {
    display: none;
}

.submitted .explanation {
    display: block;
}

.submit-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.submit-block button {
    width: 100%;
    padding: 16px 24px;
    height: 56px;
    color: #fff;
    background-color: var(--color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.submit-block .link {
    width: fit-content;
    margin-bottom: 20px;
    display: none;
}

.submit-block .links {
    padding-top: 14px;
}

.submit-block .link span {
    color: black;
    text-decoration: underline;
    max-width: 420px;
}

.submit-block .link svg {
    margin-right: 15px;
    height: 14px;
    width: 14px;
}

.links .rotate-180 {
    transform: rotate(180deg) !important;
}

.submitted .submit-block button {
    width: 400px;
}

.submitted .submit-block .link {
    display: flex;
    align-items: center;
}

@media (max-width: 1025px) {

    .submit-block .link span {
        max-width: unset;
    }

    .submit-block {
        flex-wrap: wrap;
    }

    .submit-block .link {
        margin-bottom: 0;
    }

    .submit-block .links {
        padding-top: 0;
    }

    .submitted .submit-block button {
        width: 100%;
    }

    .submitted .submit-block .link {
        width: 100%;
        margin-top: 24px;
        justify-content: start;
    }
}