@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

.breadcrumb li {
    font-weight: 600;
}

.breadcrumb a {
    text-decoration: none;
    color: green;
}

#div-chapters-quiz-count .btn {
    width: 5rem;
    background-color: #26a69a;
}

.btn-floating {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 0px;
    font-size: large;
}


.div-main-question {
    display: none;
}

.div-main-question.active {
    display: block;
}

.div-question {
    display: none;
}

.div-question.active {
    display: block;
}

.question-section {
    display: none;
}

.question-section.active {
    display: block;
}


.btn-floating {
    background-color: rgba(211, 211, 211, 0.318);
    border-color: rgba(211, 211, 211, 0.318);
    color: black;
}

.btn-floating.not_visited {
    background-color: rgba(211, 211, 211, 0.318);
    border-color: rgba(211, 211, 211, 0.318);
    color: black;
}

.btn-floating.answered {
    background-color: #1f890c;
    border-color: #1f890c;
    color: white;
}

.btn-floating.not_answered {
    background-color: #ca3606;
    border-color: #ca3606;
    color: white;
}

.div-question .list-group-item:hover {
    background-color: rgba(211, 211, 211, 0.288);
}

.list-group-item.correct {
    background-color: rgba(0, 128, 0, 0.5);
    color: white;
}

.list-group-item.incorrect {
    background-color: rgba(255, 0, 0, 0.5);
    color: white;
}

.btn-rounded {
    border-radius: 10rem !important;
    font-size: smaller;
    font-weight: bold;
    text-transform: capitalize;
}

/* Hide scrollbar for IE, Edge and Firefox */
.quiz-nav {
    max-height: 300px;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.quiz-nav::-webkit-scrollbar {
    display: none;
}

.MJXc-display {
    text-align: left !important;
    display: inline !important;
}

.span-quiz-percentage {
    font-size: 11px;
    color: white;
    background-color: grey;
}

.span-quiz-percentage-red {
    font-size: 11px;
    color: white;
    background-color: red;
}

.span-quiz-percentage-green {
    font-size: 11px;
    color: white;
    background-color: green;
}

.li-quiz-percentage {
    border: 1px solid lightgray !important;
    border-left: 5px solid grey !important;
    background-image: linear-gradient(#e1e1e1, #e1e1e1);
    background-repeat: repeat-y;
    /* color: white; */
}

.li-quiz-percentage-green {
    border: 1px solid lightgray !important;
    border-left: 5px solid green !important;
    background-image: linear-gradient(#ade5ad, #ade5ad);
    background-repeat: repeat-y;
    /* color: white; */
}

.li-quiz-percentage-red {
    border: 1px solid lightgray !important;
    border-left: 5px solid red !important;
    background-image: linear-gradient(#ffaaaa, #ffaaaa);
    background-repeat: repeat-y;
    /* color: white; */
}

.div-chapters {
    list-style-type: square
}

#question-main-setion .page-link {
    cursor: not-allowed;
    font-size: large;
    font-weight: bold;
    color: lightgray;
}

#question-main-setion .page-link.active {
    cursor: pointer;
    font-size: large;
    font-weight: bold;
    color: #0056b3;
}

.collapsible {
    background-color: white;
    color: black;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;

}

.collapsible:after {
    content: '\02795';
    /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: white;
    float: right;
    margin-left: 5px;
}

.actives:after {
    content: "\2796";
    /* Unicode character for "minus" sign (-) */
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.actives,
.collapsible:hover {
    background-color: white;
}

/* Style the collapsible content. Note: hidden by default */
.contents {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
}

@media only screen and (min-width: 768px) {
    .div-chapters {
        column-count: 2;
    }

    .btnSubmitAns {
        float: right;
    }
}

@media only screen and (max-width: 768px) {
    .text-small-mobile {
        font-size: small;
    }

    .btnSubmitAns {
        float: left;
    }
}