/* Big Quiz */
#bq ul, #bq li, #answer-details {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none;
}
#bq li {
    clear: both;
}
#big-quiz-form, #answer-details {
    width: 100%;
}
.question {
    border: none;
}
.quiz-nav {
    width: auto;
    clear: both;
}
.q-back, .q-page, .q-next {
    float: left;
    text-align: center;
    overflow: hidden;
    height: 80px;
}
.q-back, .q-next {
    width: 20%;
}
.q-page {
    width: 60%;
}
.options button {
    padding: 10px;
    min-height: 50px;
    display: block;
    margin-bottom: 0;
    flex-basis: 100%;
    flex-grow: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    background-color: #E7E7E7;
    border: 1px solid #c0c0c0;
    border-radius: 35px;
    text-align: center;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    font-size: 1.2em;
    -webkit-tap-highlight-color: transparent;
}
.q-next .submit-button {
    background-image: url("../img/arrow-right-white.png");
}
.q-back .submit-button {
    background-image: url("../img/arrow-left-white.png");
}
.q-next .submit-button, .q-back .submit-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-indent: -999em;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
}
#results, #answer-details, #total-score {
    display: none;
}
#answer-details li {
    margin-right: 30px;
}
#percent {
    text-align: center;
    font-size: 750%;
    font-weight: 700;
    color: #4e2aa5;
}
/* Responsive */
@media (max-width: 768px) {
    /* Quiz */
    .options {
        flex-direction: row;
        gap: 10px;
    }
    .q-back, .q-page, .q-next {
        float: left;
        text-align: center;
        overflow: hidden;
        height: 80px;
    }
    .q-back, .q-next {
        width: 35%;
    }
    .q-page {
        width: 30%;
    }
}