﻿body {
    font-family: 'Archivo', sans-serif;
}

    body:before {
        content: "";
        position: absolute;
        bottom: 9%;
        left: 0;
        width: 100%;
        height: 64%;
        background-image: url(/css/img/full-icon.svg);
        background-position: 6% 0;
        background-size: contain;
        overflow: hidden;
        opacity: 0.05;
        z-index: -1;
    }

.quiz {
    background-color: #01163d;
}

    .quiz + .quiz {
        margin-top: 10px;
    }

.title-quiz {
    font-size: 40px;
    font-weight: 700;
}

.question-text {
    color: rgb(255 255 255 / 50%);
    font-weight: 300;
    letter-spacing: 1px;
}

.list-questions .question {
    font-size: 18px;
    letter-spacing: 0.8px;
    background-color: rgb(244 244 244 / 15%);
    color: #ffffff;
    /*background-color: #f4f4f4;
    color: #212529;*/
    cursor: pointer;
    padding: 10px 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

    .list-questions .question:hover {
        color: #fff;
        background-color: #009cde;
    }

    .list-questions .question:last-child {
        margin-bottom: 0;
    }

    .list-questions .question .nr-question {
        background: #dbdbdb;
        color: #212529;
        letter-spacing: -0.5px;
        text-transform: lowercase;
    }

.zoom {
    transition: transform .3s;
    transition: all 0.3s ease;
}

    .zoom:hover {
        transform: scale(1.025);
    }

.pagination .nav-item {
    margin-right: 5px;
}

    .pagination .nav-item:last-child {
        margin-right: 0;
    }

.pagination .nav-link {
    color: rgb(255 255 255 / 80%);
    border: 1px solid rgb(255 255 255 / 10%);
}

.number-questions {
    color: #adadad;
}

.classification {
    border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.number-classification {
    font-size: 55px;
    font-weight: 700;
    letter-spacing: 2px;
}

div:where(.swal2-container) div:where(.swal2-actions) {
    margin-top: 0 !important;
}