.page:not(.current-page) {
    display: none;
}

.quiz-wrapper {
    padding: 5rem;
    position: relative;
    color: white;
    background-color: #3155a4;
    border-radius: 12px;
    width: 100%;

}

.quiz-form,
.book,
.page {
    height: 100%;
}

#navigation-buttons {
    width: calc(100% - 10rem);
    position: absolute;
    bottom: 5rem;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.nav {
    cursor: pointer;
}

.answer-container {
    gap: 0.25rem;
    background-color: white;
    border-radius: 12px;
    padding: 10px;
    color: #3155a4;
    place-self: center;
    width: 75%;
    display: flex;
    align-self: stretch;
    align-items: start;
    font-size: 16px;
}

.quiz-separator {
    width: 10%;
    margin: 2rem 0;
    border-bottom: 2px solid #E9b32e;
}

.page-top-part {
    min-height: 60%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.question-number {
    background: white;
    color: #3155a4;
    padding: 0rem 1.5rem;
    font-size: 18px;
    font-weight: 700;
}

.quiz-title-separator,
.quiz-final-title-separator {
    width: 10%;
    margin: 5rem 0 2rem;
    border-bottom: 2px solid #E9b32e;
}

.btn-quiz {
    color: #3155a4;
    background-color: #E9b32e;
    border-radius: 4px;
}

.question-text {
    font-size: 24px;
}

.question-image {
    text-align: center;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-height: 20rem;
}

.question-image img {
    margin: auto;
    max-height: 20rem;
}

.quiz-title {
    font-size: 32px;
}

.quiz-description {
    font-size: 16px;
}

.final-page-body {
    display: flex;
    gap: 2rem;
}

.api-form {
    flex: 1;
}

.quiz-description {
    flex: 1;
}

.start-btn {
    color: #3155a4;
    text-transform: none;
    font-size: 18px !important;
    margin-top: 5rem;
}

.quiz-start-button {
    text-align: center;
    margin-top: 2rem;
}

.submit-button {
    text-align: center;
}

.quiz-final-title {
    font-size: 32px
}

@media screen and (max-width: 1200px) {}

@media screen and (max-width: 991px) {
    .quiz-title {
        font-size: 24px
    }

    .quiz-description {
        font-size: 14px;
    }

    #navigation-buttons {

        position: absolute;
        bottom: 2rem;
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
    }

    .final-page-body {
        flex-direction: column;
    }
}

@media screen and (max-width: 767px) {
    .quiz-final-title-separator {
        width: 10%;
        margin: 2rem 0;
        border-bottom: 2px solid #E9b32e;
    }

    .quiz-final-title {
        font-size: 24px
    }


}

@media screen and (max-width: 600px) {

    .answers-wrapper {
        grid-template-columns: 100% !important;
    }

    .answer-container {
        padding: 2px;
    }
}