* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter";
    font-weight: 600;
}

.nav {
    width: 100%;
    height: 90px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 25px;
    gap: 10px;
    position: fixed;
    top: 0;
    z-index: 10;
    background: #f7f7f7;
}

.nav i {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: .5s;
}

.nav i:hover {
    background: rgba(108, 117, 125, .2);
}

#main__section {
    margin-top: 90px;
    height: auto;
    padding-bottom: 15px;
    min-height: 800px;
    padding-top: 25px;
    padding-left: 25px;
}

#quizz__sections__list {
    height: auto;
    padding: 25px;
    min-height: 350px;
}

#quizz__sections__list__header {
    height: 70px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.quizz_section {
    height: auto;
    min-height: 100px;
    background: #f7f7f7;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding-top: 15px;
    padding-bottom: 15px;
    gap: 20px;
    margin-bottom: 15px;
    padding-left: 15px;
    padding-right: 10px;
    cursor: pointer;
    transition: 0.4s;
}

.quizz_section i {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    background: #323232;
    color: #f7f7f7;
    transition: 0.4s;
}

.quizz_section p {
    font-size: 18px;
    width: fit-content;
    font-weight: 700;
    color: #323232;
    flex-grow: 1;
    transition: 0.4s;
}

.quizz_section_active, .quizz_section:hover {
    background: #323232;
}

.quizz_section_active p, .quizz_section:hover p {
    color: #f7f7f7
}

.quizz_section_active i, .quizz_section:hover i {
    background: #f7f7f7;
    color: #323232;
}

#quizz__question__section {
    height: auto;
    min-height: 500px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border-radius: 35px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}

#main__section .row {
    gap: 50px;
}

#quizz__question__section__image {
    width: 300px;
}

#quizz__question__section h3 {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

#quizz__question__form {
    width: 100%;
    height: auto;
    padding: 15px;
}

.quizz__section__inputGroup {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 50px;
}

.quizz__section__inputGroup label {
    width: auto;
    height: auto;
    display: flex;
    padding: 15px;
    justify-content: center;
    align-items: center;
    border-radius: 0px;
    transition: .3s;
    font-size: 20px;
    font-weight: 700;
    color: #323232;
    cursor: pointer;
    border: 2px solid #fff;
}

.quizz__section__inputGroup input {
    width: 80%;
    height: 45px;
    outline: none;
    padding-left: 15px;
    border-radius: 10px;
    border: none;
    background: #dad8d8;
}

.quizz__section__inputGroup label::selection {
    background: none;
}

.quizz__section__p {
    width: 80%;
    padding: 15px;
    height: auto;
    font-size: 15px;
    display: flex;
    flex-direction: column;
}

.quizz__section__p li {
    list-style-type: circle;
    margin-bottom: 10px;
    border: 1px solid red;
}

.quizz__section__checkbox {
    display: none;
}

.quizz__section__checkbox:checked ~ label {
    border: 2px solid #323232;
}

#quizz__section__submit {
    border: 3px solid #4447eb;
    width: 100%;
    padding: 15px 30px;
    border-radius: 13px;
    font-size: 16px;
    background: #4447eb;
    color: #fff;
    cursor: pointer;
    transition: 0.6s;
}

#quizz__section__submit:hover {
    background: transparent;
    color: #4447eb;
}

.mandatory_field{
    color: #c0c0c0 ;
    margin-bottom: 15px;
    font-size: 15px;
}

.asterix_color {
    color : red;
}

.input-wrapper {
    display: flex;
    flex-direction:column;
    position:relative;
    justify-content:center;
}


.input-wrapper .asterix_color {
    position: absolute;
    margin-left: 75%;
}

.error-message {
    color: red;
    margin-top: 10px;
    font-size: 14px;
    display: none; /* Caché par défaut */
}

