.field-question {
    visibility: hidden;
}

.next-btn-quiz {
    display: none;
}

.topbar-quize-score {
    padding: 5px 0;
    position: sticky;
    top: 0;
    background-color: #FFF;
    border-bottom: 1px solid #EEE;
    margin-bottom: 30px;
    z-index: 99;
}

.label-of-chart {
    position: absolute;
    display: block;
    top: 90%;
    left: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#quiz-result {
    display: none;
}

@media (max-width: 575.98px) {
    .fa_a_button_container {
        position: relative !important;
    }

    .font-smaller {
        font-size: 20px !important;
    }
}


.c-pointer {
    cursor: pointer;
}

.box-questions {
    background-color: #EEE;
    border-radius: 5px;
    text-align: center;
    padding: 15px 0;
    margin: 5px 0;
    transition: 0.2s;
    border: 1px solid #EEE;
}

.box-questions:hover, .alreadyAnswered {
    position: relative;
    border-color: var(--color1);
}

.wrong-answer::after, .correct-answer::after {
    content: '';
    position: absolute;
    right: -13px;
    top: -19px;
    font-size: 1.9rem;
    font-family: FontAwesome;
}

.correct-answer::after {
    content: "\f046";
    color: #035f15;
}

.wrong-answer::after {
    content: "\f057";
    color: var(--color2);
}

.wrong-answer {
    background-color: #f26977;
    border-color: #f26977;
    color: #FFF;
}

.correct-answer {
    background-color: #088b23;
    border-color: #088b23;
    color: #FFF;
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .fa_a_button_container {
        position: relative !important;
    }
}