/* Styles généraux pour tous les écrans */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'VinciSans', sans-serif;
}

/* === GRANDES RÉSOLUTIONS (1920px et au-delà) === */
@media screen and (min-width: 1920px) {
    .container {
        max-width: 1400px;
        margin: 0 auto;
    }

    header {
        height: 200px;
    }

    .login__section .login__wrapper .login__content h1 {
        font-size: 70px;
    }

    .login__section .login__wrapper .login__content h2 {
        font-size: 42px;
    }
}

/* === TABLETTES (768px à 1024px) === */
@media screen and (max-width: 1024px) {
    /* Header */
    header {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }

    header nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    header nav ul li {
        margin: 10px;
    }

    header .header__content .btn {
        font-size: 14px;
        padding: 0 15px;
    }

    /* Login Section */
    .login__section {
        flex-direction: column;
        padding: 30px;
    }

    .login__section .login__wrapper {
        width: 100%;
    }

    .login__section .box__img {
        display: none; /* Masquer les images pour optimiser l'affichage */
    }

    .login__section .login__wrapper .login__content h1 {
        font-size: 40px;
    }

    .login__section .login__wrapper .login__content h2 {
        font-size: 24px;
    }

    /* Tables */
    table.view thead tr th,
    table.view tbody tr td {
        font-size: 14px;
        padding: 5px;
    }
}

/* === SMARTPHONES (360px à 767px) === */
@media screen and (max-width: 767px) {
    /* General Styles */
    body {
        font-size: 14px;
    }

    header {
        padding: 15px;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
    }

    header nav ul li a {
        font-size: 14px;
        padding: 10px;
    }

    /* Login Section */
    .login__section {
        padding: 20px;
        background: linear-gradient(90deg, #80B4FF, #014489);
    }

    .login__section .login__wrapper {
        width: 100%;
    }

    .login__section .login__wrapper .login__content h1 {
        font-size: 30px;
    }

    .login__section .login__wrapper .login__content h2 {
        font-size: 18px;
    }

    .login__section .box__img {
        display: none; /* Masquer les images sur petits écrans */
    }

    /* Home Section */
    .home__container {
        flex-direction: column;
        padding: 20px;
    }

    .home__container .box__img {
        display: none;
    }

    .home__container .home__wrapper .home__content h1 {
        font-size: 36px;
    }

    .home__container .home__wrapper .home__content h2 {
        font-size: 24px;
    }

    /* Buttons */
    .btn__blue,
    .session__section button,
    .session__section a {
        font-size: 16px;
        padding: 0 20px;
    }

    /* Tables */
    table.view,
    table.detail {
        font-size: 12px;
    }

    table.view thead tr th,
    table.view tbody tr td {
        padding: 5px;
    }

    /* Forms */
    form .form__wrapper {
        gap: 15px;
    }

    textarea,
    input[type=text] {
        font-size: 14px;
        padding: 5px;
    }
}

/* === PETITS SMARTPHONES (<360px) === */
@media screen and (max-width: 360px) {
    header {
        flex-direction: column;
    }

    header nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    header nav ul li a {
        font-size: 12px;
    }

    /* Login Section */
    .login__section .login__wrapper .login__content h1 {
        font-size: 24px;
    }

    .login__section .login__wrapper .login__content h2 {
        font-size: 16px;
    }

    .login__section .btn {
        font-size: 14px;
        padding: 0 15px;
    }

    /* General Adjustments */
    body {
        font-size: 12px;
    }
}


@font-face {
    font-family: 'VinciSans';
    src: url('../fonts/VinciSans.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'VinciSans-Medium';
    src: url('../fonts/VinciSans-Medium.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'VinciSans-Bold';
    src: url('../fonts/VinciSans-Bold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'VinciRounded-Bold';
    src: url('../fonts/VinciRounded-Bold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* LOGIN PART */

.login__section  {
    width: 100%;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 45px 5%;

    background: linear-gradient(90deg, #80B4FF, #014489);
}

.login__section .login__container {
    max-width: 1300px;
}

.login__section .box__img {
    width: 40%;
    height: 50%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.login__section .box__img .img__character {
    height: 100%;
    min-height: 545px;
}

.login__section .login__wrapper {
    width: 60%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.login__section .login__wrapper .login__header {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 30px 0;
}

.login__section .login__wrapper .login__header .img__icon {
    height: 60px;
}

.login__section .login__wrapper .login__header h3 {
    font-family: 'VinciSans';
    font-weight: 400;
    font-size: 21px;

    color: #FFFFFF;
}

.login__section .login__wrapper .login__content {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.login__section .login__wrapper .login__content .img__icon {
    height: 230px;
}

.login__section .login__wrapper .login__content h1 {
    font-family: 'VinciRounded-Bold';
    font-weight: 700;
    font-size: 60px;
    color: #FFFFFF;

    margin: 40px 0 0 0;
}

.login__section .login__wrapper .login__content h2 {
    font-family: 'VinciSans';
    font-weight: 400;
    font-size: 36px;
    color: #FFFFFF;

    text-transform: capitalize;

    margin: 20px 0 0 0;
}

.login__section .login__wrapper .login__content .btn {
    height: 60px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: 'VinciSans-Medium';
    font-size: 23px;

    text-decoration: none;

    color: #FFFFFF;
    background-color: #E20025;

    margin: 40px 0 0 0;
    padding: 0 60px;

    border: none;
    border-radius: 60px;

    cursor: pointer;

    transition: 0.2s;
}

.login__section .login__wrapper .login__content a:hover {
    color: #E20025;
    background-color: #FFFFFF;
}


.login__section .login__wrapper .login__footer {
    width: 100%;
    text-align: end;
}

.login__section .login__wrapper .login__footer .img__icon {
    width: 70px;
    height: 70px;
}

/* HOME PART */

/* HOME PART - HEADER PART & NAV PART */

header {
    position: fixed;
    top: 0;

    width: 100%;
    height: 170px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background-color: #FFFFFF;

    padding: 25px 5% 0 5%;
}

header .header__wrapper {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .header__content {
    display: flex;
    gap: 0 30px;
}

header .header__wrapper .header__content .user {
    display: flex;
    align-items: center;
    gap: 0 15px;
}

header .header__wrapper .header__content .user img {
    width: 30px;
}

header .header__wrapper .header__content .user .user__email {
    font-family: 'VinciSans';
    font-weight: 400;
    font-size: 16px;
    color: hsl(210, 100%, 27%);
}

header .header__content .btn {
    height: 34px;

    font-family: 'VinciSans';
    font-size: 16px;

    color: hsl(210, 100%, 27%);
    background-color: #FFFFFF;

    padding: 0 20px;

    border: 1px solid hsl(210, 100%, 27%);
    border-radius: 34px;

    cursor: pointer;
}

header .header__content .btn:hover {
    background-color: hsl(210, 100%, 27%);
    color: #FFFFFF;
}

header .header__content .btn.btn__primary {
    font-weight: 400;
}

header .header__content .btn.btn__secondary {
    font-family: 'VinciSans-Bold';
}


header .header__content {

}

header  .header__wrapper .img__icon {
    width: 90px;
    height: 90px;
}

header nav {
    width: 100%;

    display: flex;
    border-bottom: 1px solid hsl(210, 100%, 27%);
    padding: 0 0 10px 0;
}

header nav ul {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    list-style: none;
}

header nav ul li {

}

header nav ul li a {
    font-family: 'VinciSans';
    font-weight: 400;
    font-size: 20px;
    color: hsl(210, 100%, 27%);

    text-decoration: none;

    transition: 0.2s;
}

header nav ul li a:hover {
    color: #E20025;
}

header nav ul li a.active {
    color: #E20025;
}

header nav ul li a.btn.btn__secondary {
    display: flex;
    align-items: center;

    height: 36px;

    font-family: 'VinciSans-Bold';
    font-size: 16px;
    font-weight: 600;

    color: hsl(210, 100%, 27%);
    background-color: #FFFFFF;

    padding: 0 20px;

    border: 1px solid hsl(210, 100%, 27%);
    border-radius: 34px;

    cursor: pointer;

    transition: 0.2s;
}

header nav ul li a.btn.btn__secondary:hover {
    background-color: hsl(210, 100%, 27%);
    color: #FFFFFF;
}

.home__container {
    width: 100%;
    height: calc(100vh - 170px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 45px 5%;
    margin: 170px 0 0 0;
}

.home__container .box__img {
    width: 50%;
    height: 50%;

    display: flex;
    justify-content: left;
    align-items: center;

    padding: 0 0 0 20px;
}

.home__container .box__img .img__character {
    min-height: 50%;
    height: 500px;
}

.home__container .home__wrapper {
    width: 60%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home__container .home__wrapper .home__content {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.home__container .home__wrapper .home__content .img__icon {
    height: 250px;
}

.home__container .home__wrapper .home__content h1 {
    font-family: 'VinciRounded-Bold';
    font-weight: 700;
    font-size: 60px;
    color: hsl(210, 100%, 27%);

    margin: 40px 0 0 0;
}

.home__container .home__wrapper .home__content h2 {
    font-family: 'VinciSans';
    font-weight: 400;
    font-size: 36px;
    color: hsl(210, 100%, 27%);

    text-transform: capitalize;

    margin: 20px 0 0 0;
}

/* VIEW LIST PART */

.view__container {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 20px 0;

    padding: 45px 5%;
    margin: 170px 0 0 0;
}

.edit__container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    padding: 45px 5%;
    margin: 281px 0 0 0;
}

.view__section__header {
    display: flex;
    align-items: center;
    gap: 0 20px;
}

.view__section__header h1 {
    font-family: 'VinciSans-Medium';
    font-weight: 400;
    font-size: 30px;
    color: hsl(210, 100%, 27%);
}

.view__section__header a {
    display: flex;
    align-items: center;

    height: 36px;

    font-family: 'VinciSans';
    font-size: 16px;
    font-weight: 600;

    text-decoration: none;

    color: hsl(210, 100%, 27%);
    background-color: #FFFFFF;

    padding: 0 20px;

    border: 1px solid hsl(210, 100%, 27%);
    border-radius: 34px;

    cursor: pointer;

    transition: 0.2s;
}

.view__section__header a:hover {
    color: #FFFFFF;
    background-color: hsl(210, 100%, 27%);
}

/* TABLE PART */

table {
    width: 100%;
    border-collapse: collapse;
}

table.view thead {
    background-color: hsl(210, 100%, 27%);
    height: 40px;
}

table.view thead tr th {
    font-family: 'VinciSans-Bold';
    font-size: 16px;
    color: #FFFFFF;

    text-align: left;

    padding: 0 0 0 20px;
}

table.view tbody tr {
    height: 50px;
}

table.view tbody tr:nth-child(even) {
    background-color: #FFFFFF; 
}

table.view tbody tr:nth-child(odd) {
    background-color: #e5ecf4;
    border-top: 1px solid #014489;
    border-bottom: 1px solid #014489;
}
th {
    cursor: pointer !important;
}

.step__1 th:nth-child(1), .step__1 td:nth-child(1) {
    width: 10%;
}

.step__1 th:nth-child(2), .step__1 td:nth-child(2) {
    width: 20%;
}

.step__1 th:nth-child(3), .step__1 td:nth-child(3) {
    width: 60%;
}

.step__2 th:nth-child(1), .step__2 td:nth-child(1) {
    width: 20%;
}

.step__2 th:nth-child(2), .step__2 td:nth-child(2) {
    width: 70%;
}

.gaming-sessions th:nth-child(1), .gaming-sessions td:nth-child(1) {
    width: 10%;
}

.gaming-sessions th:nth-child(2), .gaming-sessions td:nth-child(2) {
    width: 40%;
}

.gaming-sessions th:nth-child(3), .gaming-sessions td:nth-child(3) {
    width: 40%;
}

table.view tbody tr td {
    font-family: 'VinciSans';
    font-size: 16px;
    font-weight: 400;

    color: hsl(210, 100%, 27%);

    text-align: left;

    padding: 0 0 0 20px;
}

table.view tbody tr td.action-icons {
    width: 100%;
    height: 50px;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0 30px;

    padding: 0 20px;
}

table.view tbody tr td.action-icons .box__icon {
    width: 30px;
    height: 30px;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #014489;

    border-radius: 4px;

    cursor: pointer;
}

table.view tbody tr td.action-icons .box__icon img {
    width: 20px;
}


table.detail thead tr:first-child {
    background-color: #e5ecf4;
    height: 40px;

    border-top: 1px solid #014489;
}

table.detail thead tr:first-child th {
    width: 100%;

    font-family: 'VinciSans-Bold';
    font-size: 20px;
    font-weight: 400;

    color: #014489;
}

table.detail thead tr:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsl(210, 100%, 27%);
    height: 40px;
}

table.detail thead tr:last-child th {
    width: 50%;

    font-family: 'VinciSans-Bold';
    font-size: 18px;

    color: #FFFFFF;
}

table.detail tbody tr {
    display: flex;
}

table.detail tbody td {
    width: 50%;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'VinciSans';
    font-size: 18px;
    font-weight: 400;

    color: #014489;

    border-bottom: 1px solid #014489;
}

/* HANDLE VIEW LIST */

.handle__view__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 8px;
}

.handle__view__list .box__icon {
    width: 30px;
    height: 30px;

    display: flex;
    justify-content: center;
    align-items: center;

    border: 1px solid #014489;
    border-radius: 4px;
}

.handle__view__list .box__icon.disabled {
    opacity: 0.5;
}

.handle__view__list .box__icon img {
    height: 16px;
}

.handle__view__list span {
    font-family: 'VinciSans';
    font-size: 16px;
    font-weight: 400;
    color: #014489;

    padding: 0 20px;
}


/* DETAIL GAMING SESSIONS */

.detail__wrapper {
    width: 100%;

    display: flex;
    justify-content: space-between;
    gap: 0 60px;
}

.detail__wrapper .sidemenu__info {
    width: 300px;

    display: flex;
    flex-direction: column;
    gap: 30px 0;
}

.detail__wrapper .sidemenu__info .card {
    display: flex;
    flex-direction: column;
    gap: 5px 0;

    padding: 0 0 10px 0;
    border-bottom: 1px solid #014489;
}

.detail__wrapper .sidemenu__info .card h3 {
    font-family: 'VinciSans-Bold';
    font-size: 15px;
    color: #014489;
}

.detail__wrapper .sidemenu__info .card p {
    font-family: 'VinciSans';
    font-size: 18px;
    font-weight: 400;
    color: #014489;
}


.detail__wrapper .teams__content {
    width: 66%;
    display: flex;
    flex-direction: column;
    gap: 60px 0;
}

/* FORM */

/* Formulaire principal */
form {
    display: flex;
    flex-direction: column;
    gap: 30px 0;
}

/* En-tête du formulaire */
form .form__header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 45px 0 30px 0;
    width: calc(100% - 10%);
    position: fixed;
    top: 170px;
    background: #FFFFFF;
}

form .form__header h1 {
    font-family: 'VinciSans-Medium';
    font-weight: 400;
    font-size: 30px;
    color: hsl(210, 100%, 27%);
}

/* Wrapper du formulaire */
form .form__wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 30px 20px;
}

form .form__wrapper.background {
    background-color: #f2f6f9;
}


.animator__template form .form__wrapper.background-alt {
    background-color: #FFFFFF;
    padding: 20px 30px !important;
    border-radius: 16px;
    border: 1px solid #e0e7ed;
}

.animator__template form .form__wrapper h2 {
    display: flex;
    align-items: center;
    gap: 0 5px;
}

.animator__template form .form__wrapper h2.justify-center {
    justify-content: center;
}

.animator__template form .form__wrapper h2.border-none {
    border: none;
}

.animator__template form .form__wrapper h2.red {
    color: #E20025;
}

.animator__template form .form__wrapper h2.rounded {
    font-family: 'VinciRounded-Bold';
}

.animator__template form .form__wrapper h2 span {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    font-size: 22px;
    background-color: #E20025;
    border-radius: 100%;

}

.animator__template form .form__wrapper h2 p {
    font-size: 17px;
}


/* Espacement et direction du wrapper */
form .form__wrapper.g-20 {
    gap: 20px;
}

form .form__wrapper.fd-column {
    flex-direction: column;
}

/* Styles pour les titres dans le wrapper */
form .form__wrapper h2 {
    width: 100%;
    font-family: 'VinciSans-Medium';
    font-weight: 400;
    font-size: 30px;
    color: hsl(210, 100%, 27%);
    padding: 0 0 5px 0;
    border-bottom: 2px solid hsl(210, 100%, 27%);
}

/* Wrapper pour les cases à cocher */
form .form__wrapper .wrapper__checkboxes {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
}

/* Styles pour chaque groupe de cases à cocher */
form .form__wrapper .wrapper__checkboxes .group__checkbox {
    width: calc((100% - 40px) / 3);
    display: flex;
    align-items: center;
    gap: 0 10px;
}


form .form__wrapper .wrapper__checkboxes__all {
    display: flex;
    align-items: flex-start;
}

form .form__wrapper .wrapper__checkboxes__all .group__checkbox__all {
    width: calc((100% - 40px) / 4);
    display: flex;
    align-items: center;
    gap: 0 10px;
}

form .form__wrapper .wrapper__checkboxes.alt .group__checkbox {
    width: calc((100% - 80px) / 5);
}

/* Styles pour les boutons radio */
form .group__radio {
    display: flex;
    align-items: center;
    gap: 0 10px;
}

/* Styles pour le contenu d'image */
form .form__wrapper .content__image {
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}

form .form__wrapper .content__image .box__image {
    width: 100%;
    height: 200px;
    border: 1px solid #014489;
}

/* Styles pour le contenu principal */
form .form__wrapper .content {
    width: calc(100% - 250px);
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}

/* Styles pour les lignes de contenu */
form .form__wrapper .content .row {
    width: 100%;
    display: flex;
    gap: 0 30px;
}
form .form__wrapper .content .row {
    width: 100%;
    display: flex;
    gap: 0 30px;
}

/* Styles pour chaque groupe d'entrée dans les lignes */
form .form__wrapper .buttons__container button {
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}

form .form__wrapper .content .row .group__input:first-child {
    width: 160px;
}

/* Styles pour le préfixe de groupe d'entrée */
form .form__wrapper .content .row .group__input .group__prefix {
    display: flex;
    align-items: center;
    gap: 0 10px;
}

form .form__wrapper .content .row .group__input .group__prefix span {
    font-family: 'VinciSans-Medium';
    font-weight: 400;
    font-size: 18px;
    color: hsl(210, 100%, 27%);
}

/* Styles pour les réponses */
form .form__wrapper .content .wrapper__answers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 20px;
    background-color: #FFFFFF;
}

form .form__wrapper .content .wrapper__answers .group__input {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}

.animator__template form .form__wrapper .wrapper__checkboxes.padding-10-30 {
    padding: 10px 30px;
}

/* Styles pour les champs de texte et les textareas */
textarea {
    width: 100%;
    height: unset;
    padding: 5px 10px;
    border: 1px solid #014489;
    font-family: 'VinciSans';
    font-size: 16px;
    color: hsl(210, 100%, 27%);
    overflow: hidden;
    resize: none;
}

select {
    width: 100%;
    height: 40px;
    padding: 5px 10px;
    border: 1px solid #014489;
    font-family: 'VinciSans';
    font-size: 16px;
    color: hsl(210, 100%, 27%);
    overflow: hidden;
}

select {
    appearance: none;
    -webkit-appearance: none; 
    -moz-appearance: none;
    background-color: #fff;
    cursor: pointer;
}

.custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none; 
}


.custom-select::after {
    content: url(../images/icons/arrow-drop-down.svg);
    position: absolute;
    top: 50%;
    right: 10px;

    width: 25px;
    height: 25px;

    transform: translateY(-50%);
    pointer-events: none; 
    transition: transform 0.3s ease;
}

.custom-select select {
    padding-right: 40px;
}

.custom-select.rotate::after  {
    transform: translateY(-50%) rotate(180deg);
}


input[type=text] {
    width: 100%;
    height: 50px;
    padding: 5px 10px;
    border: 1px solid #014489;
    font-family: 'VinciSans';
    font-size: 16px;
    color: hsl(210, 100%, 27%);
    overflow: hidden;
}

input::placeholder {
    color: #c7d4e5;
}

/* Styles pour les cases à cocher */
input[type="checkbox"] {
    all: unset;
    width: 16px;
    height: 16px;
    background-color: #FFFFFF;
    border: 1px solid #014489;
    cursor: pointer;
}

input[type="checkbox"].large {
    width: 24px;
    height: 24px;
}

input[type="checkbox"]:checked {
    background-image: url(../images/icons/close-line.svg);
}

/* Styles pour les boutons radio */
input[type="radio"] {
    all: unset;
    position: relative;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    background-color: #FFFFFF;
    border: 1px solid #014489;
    border-radius: 32px;
    cursor: pointer;
}

input[type="radio"]::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 6px;
    width: 16px;
    height: 16px;
    background-color: #014489;
    border-radius: 20px;
}

input[type="radio"]:checked::after {
    display: block;
}

/* Tailles spécifiques pour textarea et input */
textarea.h-50,
input.h-50 {
    height: 50px;
}

textarea.h-90 {
    height: 90px;
}

/* Styles pour la boîte du formulaire */
.form__box {
    width: 100%;
    padding: 20px;
    border: 1px solid #014489;
    background-color: #FFFFFF;
}

.form__box.fd-column {
    flex-direction: column;
}

.form__box.g-x-10{
    gap: 10px 0;
}

.form__box.g-y-40{
    gap: 0 40px;
}

.inputs__wrapper {
    width: 100%;
    display: flex;
    gap: 0 30px;
}

/* Wrapper pour les entrées */
.input__wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px 0;
}

.input__wrapper.w-50 {
    width: calc((100% - 30px) / 2);
}

/* Styles pour les labels et les légendes */
label,
legend {
    width: fit-content;
    font-weight: 400;
    font-size: unset;
    color: hsl(210, 100%, 27%);
}

label.regular,
legend.regular {
    font-family: 'VinciSans';
}

label.medium,
legend.medium {
    font-family: 'VinciSans-Medium';
}

label.fs-16,
legend.fs-16 {
    font-size: 16px;
}


label.fs-16,
legend.fs-16 {
    font-size: 16px;
}

label.fs-17,
legend.fs-17 {
    font-size: 17px;
}

label.fs-18,
legend.fs-18 {
    font-size: 18px;
}

label.uppercase,
legend.uppercase {
    text-transform: uppercase;
}



/* BUTTON */

.btn__blue {
    height: 34px;

    font-family: 'VinciSans';
    font-size: 16px;

    color: #FFFFFF;
    background-color: hsl(210, 100%, 27%);

    padding: 0 20px;

    border: none;
    border-radius: 34px;

    cursor: pointer;

    transition: 0.2s;
}

.btn__blue:hover {
    color: hsl(210, 100%, 27%);
    background-color: #FFFFFF; 
    border: 1px solid hsl(210, 100%, 27%);
}

/* SESSION PAGES */

.session__section {
    position: relative;
    width: 100%;
    height: 100vh;

    display: flex;
    justify-content: center;

    padding: 45px 5%;

    background: linear-gradient(90deg, #80B4FF, #014489);

    overflow: hidden;
}

.session__section a {
    height: 60px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: 'VinciSans-Medium';
    font-size: 23px;

    text-decoration: none;

    color: #FFFFFF;
    background-color: #E20025;

    padding: 0 60px;

    border: none;
    border-radius: 60px;

    cursor: pointer;

    transition: 0.2s;
}

.session__section button {
    height: 60px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: 'VinciSans-Medium';
    font-size: 23px;

    text-decoration: none;

    color: #FFFFFF;
    background-color: #E20025;

    padding: 0 60px;

    border: none;
    border-radius: 60px;

    cursor: pointer;

    transition: 0.2s;
}

.session__section a.report {
    position: absolute;
    bottom: 45px;
    right: 5%;
}

.session__section a:hover {
    color: #E20025;
    background-color: #FFFFFF;
}

.session__section button:hover {
    color: #E20025;
    background-color: #FFFFFF;
}

.session__section .session__content {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.session__section .session__content.w-50 {
    width: 50%;
}

.session__section .session__content.justify-center {
    justify-content: center;
}

.session__section .session__content.justify-space-between {
    justify-content: space-between;
}

.session__section .session__content .teams__score {
    display: flex;
    justify-content: center;
    gap: 0 100px;
}

.session__section .session__content .teams__score .team {
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}

.session__section .session__content .teams__score .team h3 {
    font-family: 'VinciSans';
    font-weight: bold;
    font-size: 45px;
    color: #FFFFFF;
}

.session__section .session__content .teams__score .team span {
    font-family: 'VinciSans-Bold';
    font-size: 88px;
    color: #FFFFFF;
}

.session__section .session__content .titles {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px 0;
}

.session__section .session__content .titles.showcase h1 {
    font-family: 'VinciRounded-Bold';
    font-size: 63px;

    color: #FFFFFF;
}

.session__section .session__content .titles.showcase h2 {
    width: 635px;
    font-family: 'VinciSans';
    font-weight: 400;
    font-size: 45px;
    line-height: 1;

    color: #FFFFFF;
}

.session__section .session__content .titles.launch h1 {
    font-family: 'VinciRounded-Bold';
    font-size: 80px;

    color: #FFFFFF;
}

.session__section .session__content .titles.launch h2 {
    width: 635px;
    font-family: 'VinciSans';
    font-weight: 400;
    font-size: 40px;

    color: #FFFFFF;
}

.session__section .session__content .titles.launch p {
    width: 298px;

    font-family: 'VinciSans';
    font-size: 31px;
    line-height: 1.1;

    color: #FFFFFF;
}

.session__section .session__content .titles.launch p.w-298 {
    width: 298px;
}

.session__section .session__content .titles.launch p.w-358 {
    width: 358px;
}


.session__section .session__content .titles.congratulations h1 {
    font-family: 'VinciRounded-Bold';
    font-size: 85px;

    color: #FFFFFF;
}

.session__section .session__content .titles.congratulations h2 {
    font-family: 'VinciRounded-Bold';
    font-size: 51px;

    color: #FFFFFF;
}

.session__section .session__content .img__box.icon__large img {
    height: 210px;
}

.session__section .session__content .video__container {
    position: relative;
    height: 326px;
}

.session__section .session__content .video__container .play-button {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;

    background-color: rgba(0, 0, 0, 0.5);

}

.session__section .session__content .video__container .play-button img {
    width: 90px;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);

    cursor: pointer;
}

.session__section .session__content .video__container .play-button p {

    position: absolute;
    top: 66%;
    left: 50%;
    transform: translateX(-50%);

    font-family: 'VinciRounded-Bold';
    font-size: 20px;

    color: #FFFFFF;
}

.session__section .img__box.launch__character {
    width: 50%;

    display: flex;
    justify-content: center;
}

.session__section .img__box.launch__character img {
    position: absolute;
    bottom: 0;
    height: 900px;
}

.session__section .img__box.launch__character img.edit {
    bottom: -45px;
}

.session__section .session__content .img__box.characters {
    margin: 50px 0 0 0;
}

.session__section .session__content .img__box.characters img {
    height: 500px;
}

/* SESSION SECTION STEP  */

.session__section__step {
    position: relative;
    width: 100%;
    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px 0;

    padding: 45px 5%;

    background: linear-gradient(90deg, #80B4FF, #014489);

    overflow: hidden;
}

.session__section__step.row {
    flex-direction: row;
}

.session__section__step .session__header__step {
    width: 100%;
    height: fit-content;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 30px;
}

.session__section__step .session__header__step .img__box {
    width: 27%;
    height: fit-content;

    border-right: 3px solid #014489;
}

.session__section__step .session__header__step .img__box img {
    height: 140px;
}

.session__section__step .session__header__step .text {
    width: 53%;
    padding: 0 25px 0 0;
}

.session__section__step .session__header__step .text h1 {
    font-family: 'VinciRounded-Bold';
    font-size: 30px;

    color: #FFFFFF;
}

.session__section__step .session__header__step .text h2 {
    font-family: 'VinciRounded-Bold';
    font-size: 22px;

    color: #FFFFFF;
}


.session__section__step .session__header__step .ref {
    width: 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    gap: 20px 0;
}

.session__section__step .session__header__step .ref span {
    width: fit-content;
    font-family: 'VinciSans';
    font-size: 19px;

    color: #FFFFFF;
    background-color: #00458a;

    border: 1px solid #FFFFFF;
    border-radius: 4px;

    padding: 5px 20px;
}

.session__section__step .session__header__step .ref .step {
    display: flex;
    flex-direction: column;
}

.session__section__step .session__header__step .ref .step p {
    font-family: 'VinciSans';
    font-size: 25px;

    color: #FFFFFF;
}

/* TOOLS  */

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.g-y-30 {
    gap: 30px 0;
}

.g-y-20 {
    gap: 0 20px;
}

.p-0-0-0-30 {
    padding: 0 0 0 30px;
}

.m-t-74 {
    margin: 74px 0 0 0;
}

.session__content__step {
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 12px 0;

}

.session__content__step.row {
    flex-direction: row;
}

.session__content__step.g-x-60 {
    gap: 0 60px;
}

.session__content__step .flip-card {
    width: 100%;
    height: 56px;
}

.session__content__step .flip-card .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.session__content__step .flip-card .flip-card-inner .flip-card-front, .session__content__step .flip-card .flip-card-inner .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 8px;
}

.session__content__step .flip-card .flip-card-inner .flip-card-front {
    background-color: #FFFFFF;
}

.session__content__step .flip-card .flip-card-inner .flip-card-front button {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'VinciSans-Bold';
    font-size: 28px;

    color: #014489;

    border: none;
    border-radius: 8px;

    background-color: #FFFFFF;

    cursor: pointer;
}

.session__content__step .flip-card .flip-card-inner .flip-card-back {
    background-color: #FFFFFF;
    transform: rotateX(180deg);
}

.session__content__step .flip-card .flip-card-inner .flip-card-back p {
    font-family: 'VinciSans';
    font-size: 22px;

    color: #014489;
}

.flipped .flip-card-inner {
    transform: rotateX(180deg); 
}

.session__footer__step {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.session__footer__step .teams {
    display: flex;
    gap: 0 60px;
}

.session__footer__step .teams .team {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px 0;

    text-align: center;
}

.session__footer__step .teams .team button {
    font-family: 'VinciSans';
    font-size: 22px;

    color: #FFFFFF;
    background-color: #014489;
    border: 2px solid #FFFFFF;
    border-radius: 8px;
    padding: 10px 20px;
}

.session__footer__step .teams .team span {
    height: 70px;

    font-family: 'VinciSans-Bold';
    font-size: 67px;

    color: #E20025;
    background-color: #FFFFFF;
    border-radius: 8px;

}

.session__footer__step .teams .stops {
    display: flex;
    align-items: center;
    gap: 0 80px;
}

.session__footer__step .teams .stops .img__box {
    height: 80px;
    cursor: pointer;
}

.session__footer__step .teams .stops .img__box img {
    width: 80px;
    transition: transform 0.4s ease-in-out;
    opacity: 0.5;
}

.session__footer__step .teams .stops .img__box.scale-up img {
    transform: scale(1.3);
    opacity: 1;
}

.session__footer__step a {
    height: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background-color: #E20025;
    border-radius: 100%;
    transition: 0.2s;
}

.session__footer__step a svg {
    width: 40px;
    fill: #FFFFFF;
}

.session__footer__step a:hover {
    background-color: #FFFFFF;
}

.session__footer__step a:hover svg {
    fill: #E20025;
}

.session__footer__step a img {
    width: 40px;
}

.session__footer__step .btn {
    height: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background-color: #E20025;
    border-radius: 100%;
    transition: 0.2s;
}

.session__footer__step .btn svg {
    width: 40px;
    fill: #FFFFFF;
}

.session__footer__step .btn button:hover {
    background-color: #FFFFFF;
}

.session__footer__step .btn button:hover svg {
    fill: #E20025;
}

.session__footer__step .btn img {
    width: 40px;
}

.illus-n-chrono {
    width: 324px;
    height: 100%;

    display: flex;
    flex-direction: column;
    gap: 60px 0;

    padding: 100px 0 0 0;
}

.illus-n-chrono .img__box {
    width: 100%;
}

.illus-n-chrono .img__box img {
    width: 100%;
}

.illus-n-chrono .chrono {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px 0;
}

.illus-n-chrono .chrono .chrono__box {
    width: 155px;
    height: 180px;
    background: url(../images/game-session/chrono.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: flex-end;

}

.illus-n-chrono .chrono .chrono__box img {
    height: 180px;
}

.illus-n-chrono .chrono .chrono__box span {
    height: 155px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: 'VinciRounded-Bold';
    font-size: 60px;
    color: #014489;
    transition: transform 0.2s ease;

}

.illus-n-chrono .chrono .chrono__box span.grow {
    transform: scale(1.5);
}

.illus-n-chrono .chrono .chrono__box span.red {
    color: #E20025;
}

.illus-n-chrono .chrono button {
    width: 235px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'VinciSans-Medium';
    font-size: 23px;
    text-decoration: none;
    color: #FFFFFF;
    background-color: #E20025;
    padding: 0 60px;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: 0.2s;
}

.illus-n-chrono .chrono button:hover {
    color: #E20025;
    background-color: #FFFFFF;
}


.question {
    width: calc(100% - 384px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px 0;
    padding: 100px 60px 0 0;
}

.question .category {
    width: 100%;

    font-family: 'VinciSans-Medium';
    font-size: 23px;

    text-align: center;
    padding: 10px 140px;

    border-radius: 12px;

    color: #FFFFFF;
    background-color: #E20025;
}

.question .section {
    color: #014489;
    background-color: #FFFFFF;

    font-family: 'VinciSans-Medium';
    font-size: 27px;

    text-align: center;

    padding: 25px 40px;

    border-radius: 12px;
}

.question .true__or__false {
    display: flex;
    gap: 0 30px;
}

.question .true__or__false .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    cursor: pointer;
}

.question .true__or__false .box.correct-style .box__icon, .question .true__or__false .box.correct-style span {
    background-color: #39ff38;
}

.question .true__or__false .box.pushed .box__icon, .question .true__or__false .box.pushed span {
    background-color: lightgrey;
}


.question .true__or__false .box.incorrect-style .box__icon, .question .true__or__false .box.incorrect-style span {
    background-color: #E20025;
}

.question .true__or__false .box .box__icon {
    width: 100px;

    display: flex;
    flex-direction: column;

    text-align: center;

    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 100%;
}

.question .true__or__false .box .box__icon img {
    width: 60px;
    height: 60px;
}

.question .true__or__false .box span {
    position: relative;
    bottom: 12px;

    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'VinciSans-Medium';
    font-size: 28px;

    color: #014489;
    background-color: #FFFFFF;

    padding: 0 50px;
    border-radius: 50px;
}

.result {
    display: flex;
    flex-direction: column;
}

.result .correct, .result .incorrect {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px 0;

    text-align: center;
}

.result .correct.show {
    display: flex;
}

.result .incorrect.show {
    display: flex;
}

.result .correct h3, .result .incorrect h3 {
    width: 60%;
    font-family: 'VinciSans-Medium';
    font-size: 28px;
    font-weight: 500;

    padding: 10px 50px;

    color: #014489;
    border-radius: 16px;
}

.result .correct h3 {
background-color: #39ff38;
}

.result .incorrect h3 {
    background-color: #E20025;
}


.result .correct p, .result .incorrect p {
    font-family: 'VinciSans-Medium';
    font-size: 28px;

    
    padding: 20px 50px;
    border-radius: 16px;

    color: #014489;
    background-color: #FFFFFF;

}

.session__side__step {
    width: 200px;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    text-align: center;

    border-left: 1px solid #FFFFFF;

    padding: 0 0 0 40px;
}

.session__side__step .step {
    display: flex;
    flex-direction: column;

    margin: 25px 0 0 0;
}

.session__side__step .step p {
    font-family: 'VinciSans';
    font-size: 37px;
    color: #FFFFFF;
}

.session__side__step .step span {
    font-family: 'VinciSans-Medium';
    font-size: 46px;
    color: #FFFFFF;
}

.session__side__step .step p {
    
}

.session__side__step .teams {
    display: flex;
    flex-direction: column;
    gap: 40px 0;
}

.session__side__step .teams .team {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px 0;

    text-align: center;
}

.session__side__step .teams .team button {
    font-family: 'VinciSans';
    font-size: 22px;

    color: #FFFFFF;
    background-color: #014489;
    border: 2px solid #FFFFFF;
    border-radius: 8px;
    padding: 10px 20px;
}

.session__side__step .teams .team span {
    height: 70px;

    font-family: 'VinciSans-Bold';
    font-size: 67px;

    color: #E20025;
    background-color: #FFFFFF;
    border-radius: 8px;

}

.session__side__step .teams .img__box {

}

.session__side__step .teams .img__box img {
    height: 110px;
}

.session__side__step a {
    height: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E20025;
    border-radius: 100%;
    transition: 0.2s;
}

.session__side__step a svg {
    width: 40px;
    fill: #FFFFFF;
}

.session__side__step a:hover {
    background-color: #FFFFFF;
}

.session__side__step a:hover svg {
    fill: #E20025;
}

.session__side__step .btn {
    height: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E20025;
    border-radius: 100%;
    transition: 0.2s;
}

.session__side__step .btn svg {
    width: 40px;
    fill: #FFFFFF;
}

.session__side__step .btn:hover {
    background-color: #FFFFFF;
}

.session__side__step .btn:hover svg {
    fill: #E20025;
}


/* MOBILE VERSION */

.mobile__section {
    width: 100%;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 45px 0;

    background-color: #FFFFFF;
}

.mobile__section .mobile__wrapper {
    width: 100%;

    display: flex;
    flex-direction: column;
    text-align: center;

    gap: 40px 0;
}

.mobile__section .mobile__wrapper .mobile__header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px 0;
}

.mobile__section .mobile__wrapper .mobile__header .img__icon {
   width: 300px;
}

.mobile__section .mobile__wrapper .mobile__header h2 {
    font-family: 'VinciSans';
    font-weight: 400;
    font-size: 26px;
    line-height: 1.1;
    color: #014489;
}

.mobile__section .mobile__wrapper .mobile__content {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 20px 0;
}

.mobile__section .mobile__wrapper .mobile__content .img__icon {
    height: 160px;
}

.mobile__section .mobile__wrapper .mobile__content h1 {
    font-family: 'VinciSans';
    font-weight: 400;
    font-size: 31px;
    color: #014489;
}

.mobile__section .mobile__wrapper .mobile__content .mobile__banner {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #014489;

    padding: 20px;
}

.mobile__section .mobile__wrapper .mobile__content .mobile__banner a {
    width: 290px;
    color: #FFFFFF;
    background-color: #E20025;
    border: 2px solid #FFFFFF;
    border-radius: 16px;
    font-family: 'VinciSans';
    font-weight: 400;
    font-size: 29px;
    text-decoration: none;
    padding: 10px 30px;

}

.mobile__section__alt {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 45px 25px;

    background-color: #FFFFFF;
}

.mobile__section__alt .mobile__wrapper__alt {
    width: 100%;

    display: flex;
    flex-direction: column;
    text-align: center;

    gap: 10px 0;
}

.mobile__section__alt .mobile__wrapper__alt .mobile__header__alt {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px 0;
    padding: 0 0 25px 0;

    border-bottom: 2px solid #014489;
}

.mobile__section__alt .mobile__wrapper__alt .mobile__header__alt .img__icon {
    height: 80px;
}

.mobile__section__alt .mobile__wrapper__alt .mobile__header__alt .img__icon__alt {
    height: 50px;
}

.mobile__section__alt .mobile__wrapper__alt .mobile__content__alt {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 20px 0;
}

.mobile__section__alt .mobile__wrapper__alt .mobile__content__alt  h1 {
    font-family: 'VinciSans';
    font-weight: 400;
    font-size: 29px;
    color: #014489;
}

.mobile__section__alt .mobile__wrapper__alt .mobile__content__alt .wrapper__links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 28px;
}

.mobile__section__alt .mobile__wrapper__alt .mobile__content__alt .wrapper__links button {
    display: block;

    color: #FFFFFF;
    background-color: #E20025; 
    border: 2px solid #E20025;


    font-family: 'VinciSans';
    font-weight: 400;
    font-size: 20px;

    text-align: center;
    text-decoration: none;

    padding: 10px;

    border-radius: 10px;

    transition: 0.2s;
}

.mobile__section__alt .mobile__wrapper__alt .mobile__content__alt .wrapper__links button:hover {
    color: #E20025;
    background-color: #FFFFFF;
    border: 2px solid #E20025;
}


.mobile__section__detail {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 45px 0;

    background-color: #FFFFFF;
}

.mobile__section__detail .mobile__wrapper__detail {
    width: 100%;

    display: flex;
    flex-direction: column;
    text-align: center;

    gap: 10px 0;
}

.mobile__section__detail .mobile__wrapper__detail .mobile__header__detail {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px 0;

    padding: 0 25px;
}

.mobile__section__detail .mobile__wrapper__detail .mobile__header__detail .img__icon {
    height: 80px;
}

.mobile__section__detail .mobile__wrapper__detail .mobile__header__detail .img__icon__alt {
    height: 50px;
}


.mobile__section__detail .mobile__wrapper__detail .mobile__content__detail .banner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #014489;

    padding: 25px 0;
}

.mobile__section__detail .mobile__wrapper__detail .mobile__content__detail .banner span {
    color: #FFFFFF;
    background-color: #E20025; 
    border: 2px solid #E20025;

    font-family: 'VinciSans';
    font-weight: 400;
    font-size: 20px;

    text-align: center;
    text-decoration: none;

    padding: 10px;

    border-radius: 10px;
}

.mobile__section__detail .mobile__wrapper__detail .mobile__content__detail .wrapper__answers {

}

.mobile__section__detail .mobile__wrapper__detail .mobile__content__detail .wrapper__answers .row__answer {
    display: flex;
    align-items: center;

    padding: 15px 25px;

    gap: 0 20px;
}

.wrapper__answers:nth-child(odd) {
    background-color: #FFFFFF;
}

.wrapper__answers:nth-child(even) {
    background-color: #e7ecf3;
}

.mobile__section__detail .mobile__wrapper__detail .mobile__content__detail .wrapper__answers .row__answer span {
    width: 36px;
    height: 36px;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #E20025;
    background-color: #FFFFFF; 
    border: 2px solid #E20025;

    font-family: 'VinciSans-Bold';
    font-weight: 400;
    font-size: 22px;

    border-radius: 10px;
}

.mobile__section__detail .mobile__wrapper__detail .mobile__content__detail .wrapper__answers .row__answer p {
    width: calc(100% - 56px);
    font-family: 'VinciSans';
    font-weight: 400;
    font-size: 24px;

    line-height: 1.15;

    color: #014489;

    text-align: left;

}

.animator__template {
    width: 100%;
    height: 100vh;

    display: flex;
    justify-content: center;

    background-image: url(../images/background/bg-vinci.jpg);
    background-size: cover;

    padding: 45px 5%;
}

.animator__template__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.animator__template .animator__template__footer .buttons__container {
    width: fit-content;
}

.qr__code {
    width: 50%;
    display: flex;
    align-items: center;
    gap: 0 40px;
}

.qr__code .box {
    width: 100px;
    height: 100px;
    background-color: #FFFFFF;
}


.qr__code p {
    width: 50%;
    font-family: 'VinciSans-Medium';
    font-weight: 400;
    font-size: 18px;
    color: hsl(210, 100%, 27%);
    line-height: 1;
}

.animator__template form {
    width: 100%;
}

.animator__template form .img__box {
    display: flex;
    justify-content: center;
}

.animator__template form .img__box img {
    height: 120px;
}

.animator__template form .form__wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px 0;
    padding: 0;
}

.animator__template form .form__wrapper .inputs__wrapper {
    display: flex;
    justify-content: space-between;
}

.animator__template form .form__wrapper .inputs__wrapper .input__wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px 0;
}

.animator__template form .form__wrapper .inputs__wrapper .input__wrapper.align-items-center {
    align-items: center;
}

.animator__template form .form__wrapper .inputs__wrapper .input__wrapper input.h-40 {
    height: 40px;
}

.animator__template form .form__wrapper .inputs__wrapper .input__wrapper input.h-30 {
    height: 30px;
}

.animator__template form .form__wrapper .inputs__wrapper .input__wrapper label, .animator__template form .form__wrapper .inputs__wrapper .d-flex legend {
    font-family: 'VinciSans';
    font-size: 24px;
}

.animator__template .buttons__container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 0 10px;

}

.animator__template .buttons__container button {
    width: fit-content;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'VinciSans-Medium';
    font-size: 20px;
    text-decoration: none;
    color: #FFFFFF;
    background-color: #E20025;
    padding: 0 30px;
    border: 2px solid #E20025;
    border-radius: 60px;
    cursor: pointer;
    transition: 0.2s;
}

.animator__template .buttons__container button:hover {
    color: #E20025;
    background-color: #FFFFFF;
}

.teams__wrapper {
    display: flex;
    gap: 0 70px;

}

.teams__wrapper .team__wrapper {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px 0;
    
}

.teams__wrapper .team__wrapper h2 {
    font-family: 'VinciSans-Bold';
    font-weight: 400;
    font-size: 30px;

    color: #014489;

    text-transform: uppercase;
    text-align: center;

    border-bottom: 1px solid #014489;
}

.w-70 {
    width: 70%;
}

.w-20 {
    width: 20%;
}

.w-25 {
    width: 25%;
}

.animator__template form .form__wrapper .inputs__wrapper .input__wrapper label.fs-15 {
    font-size: 15px;
}

.animator__template form .form__wrapper .inputs__wrapper .input__wrapper label.medium, .animator__template form .form__wrapper .inputs__wrapper legend.medium {
    font-family: 'VinciSans-Medium';
}

.fd-column {
    flex-direction: column;
}

.align-items-center {
    align-items: center;
}

.g-y-10 {
    gap: 10px 0;
}