﻿:root {
    --ls-logo:url(https://labcompaniondev.blob.core.windows.net/public/LabschoolLogo.png);
    --bg-fond-accueil:#F4EAB1;
    --bg-fond-zone-principal:#FDF8E5;
    --bg-fond-bare-laterale:#8CC8C8;
    --btn-ls:#32B4A5;
    --btn-ls-hover:#287873;
    --li-selected:#AFD7D7;
}

.aasModalWait {
    z-index: 10001 !important;
}

html {
    font-size: clamp(12px, 1vw, 16px) !important;
}

#MySidebar ul li a {
    display: block;
    width: 100%;
    height: 100%;
    margin: -0.5rem 0;
    padding: 0.5rem 0;
    transition: all 0.1s ease-in-out;
    user-select: none;
}

/* S'assurer que le contenu reste centré */
#MySidebar ul li {
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    /* Animation d'onde au clic */
    #MySidebar ul li a:active::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 5px;
        height: 5px;
        background: rgba(255, 255, 255, 0.5);
        opacity: 0;
        border-radius: 100%;
        transform: scale(1, 1) translate(-50%, -50%);
        transform-origin: 50% 50%;
        animation: ripple 0.6s ease-out;
    }

@keyframes ripple {
    0% {
        transform: scale(0, 0) translate(-50%, -50%);
        opacity: 0.5;
    }

    100% {
        transform: scale(20, 20) translate(-50%, -50%);
        opacity: 0;
    }
}

/* Légère animation de scale-down au clic */
#MySidebar ul li a:active {
    transform: scale(0.94);
}

/* Effet hover sur les liens (optionnel) */
#MySidebar ul li:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.table {
    --bs-body-bg:none !important;
}

.table-demande table {
    /* Force le tableau à répartir les colonnes selon des largeurs fixes */
    table-layout: fixed;
    /* Nécessaire pour que le tableau n'essaie pas de s'étendre au-delà */
    width: 100%;
}

.table-demande td:not(.gcDateDemande) {
    /* Largeur fixe (ou un pourcentage). Ajuste selon tes besoins */
    width: 100px;
    /* Pour le tronquage */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /* Optionnellement :
  border: 1px solid #ccc; 
  etc.
  */
}

.table-demande th.gcDateDemande {
    width: 95px;
}

.table-demande th.gcActeur {
    width: 10%;
}

.table-demande th.gcGenre {
    width: 7%;
}

    .table-demande th.gcGenre span.up {
        display: none;
    }

    .table-demande th.gcGenre span.down {
        display: none;
    }

.table-demande th.gcValidationAministrative {
    width: 8%;
}

    .table-demande th.gcValidationAministrative span.up {
        display: none;
    }

    .table-demande th.gcValidationAministrative span.down {
        display: none;
    }


.table-demande th.gcValidationFinanciere {
    width: 9%;
}

    .table-demande th.gcValidationFinanciere span.up {
        display: none;
    }

    .table-demande th.gcValidationFinanciere span.down {
        display: none;
    }


.table-demande th.gcClasseDemande {
    width: 10%;
}

.table-demande th.gcAnneeDemande {
    width: 10%;
}

/*.table-demande th.gcPhaseDemande{
    width: 90px;
}*/

/*#region button prenom grid enfant*/
td.btn-special div {
    display: inline-flex;
}

.btn-grid-enfant {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    /*padding-block: 0.5rem;*/
    /*padding-inline: 1.25rem;*/
    background-color: #8CC8D6;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    gap: 10px;
    font-weight: bold;
    border: 0px solid #ffffff4d;
    outline: none;
    overflow: hidden;
    font-size: 15px;
    cursor: pointer;
}

.table > tbody > tr:hover {
    cursor: pointer;
    background-color: #f5f5f5; /* Gris très clair */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Ombre très discrète */
    transform: translateY(-1px); /* Déplacement très léger */
}

/*#region CheckBoxesList filtre ecoles*/
/* ---------------------- */
/* Paramètres généraux    */
/* ---------------------- */
#ClassFlyOut-CheckBoxList {
    --background: #fff;
    --text: #414856;
    --check: #4f29f0;
    --disabled: #c3c8de;
    --border-radius: 10px;
    /* À vous de voir si vous souhaitez conserver ceci */
    background: var(--background);
    padding: 15px;
    padding-bottom: 5px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(65, 72, 86, 0.05);
}

    /* Chaque "div" qui contient un label + input */
    #ClassFlyOut-CheckBoxList > div {
        display: flex;
        align-items: center;
        margin-bottom: 8px; /* pour séparer un peu chaque option */
    }

    /* ---------------------- */
    /* Style du label         */
    /* ---------------------- */
    #ClassFlyOut-CheckBoxList label {
        color: var(--text);
        position: relative;
        cursor: pointer;
        display: inline-flex; /* le label contient l'input et le span */
        align-items: center;
        transition: color 0.3s ease;
    }

        /* On place les pseudo-éléments sur le span
   pour reproduire le comportement "avant" / "après" du texte */
        #ClassFlyOut-CheckBoxList label span {
            position: relative;
            transition: color 0.3s ease;
            padding-right: 4px; /* pour laisser la place à la petite animation si besoin */
        }

            /* L’équivalent du "label::before" de l'exemple original */
            #ClassFlyOut-CheckBoxList label span::before {
                content: "";
                position: absolute;
                height: 2px;
                width: 8px;
                left: -27px;
                top: 14px; /* ajustez selon la verticale que vous préférez */
                background: var(--check);
                border-radius: 2px;
                transition: background 0.3s ease;
            }

            /* L’équivalent du "label::after" de l'exemple original */
            #ClassFlyOut-CheckBoxList label span::after {
                content: "";
                position: absolute;
                height: 4px;
                width: 4px;
                left: -25px;
                top: 8px;
                border-radius: 50%;
            }

    /* ---------------------- */
    /* Style de l’input[type=checkbox] */
    /* ---------------------- */
    #ClassFlyOut-CheckBoxList input[type="checkbox"] {
        -webkit-appearance: none;
        -moz-appearance: none;
        position: relative;
        height: 15px;
        width: 15px;
        outline: none;
        margin: 0 10px 0 0;
        cursor: pointer;
        background: var(--background);
        display: grid;
        align-items: center;
        border: 0;
    }

        /* On reproduit les coches sur les pseudo-éléments de l’input */
        #ClassFlyOut-CheckBoxList input[type="checkbox"]::before,
        #ClassFlyOut-CheckBoxList input[type="checkbox"]::after {
            content: "";
            position: absolute;
            height: 2px;
            top: auto;
            background: var(--check);
            border-radius: 2px;
        }

        /* Les traits de la coche sont initialement à 0px de largeur */
        #ClassFlyOut-CheckBoxList input[type="checkbox"]::before {
            width: 0px;
            right: 60%;
            transform-origin: right bottom;
        }

        #ClassFlyOut-CheckBoxList input[type="checkbox"]::after {
            width: 0px;
            left: 40%;
            transform-origin: left bottom;
        }

        /* Lorsque la case est cochée, on lance les animations de la coche */
        #ClassFlyOut-CheckBoxList input[type="checkbox"]:checked::before {
            animation: check-01 0.4s ease forwards;
        }

        #ClassFlyOut-CheckBoxList input[type="checkbox"]:checked::after {
            animation: check-02 0.4s ease forwards;
        }

        /* ---------------------- */
        /* Gérer le texte quand la case est cochée */
        /* ---------------------- */
        /* Au lieu de griser et barrer le texte, on le met en gras et on garde la couleur normale */
        #ClassFlyOut-CheckBoxList input[type="checkbox"]:checked ~ span {
            font-weight: bold;
            color: var(--text);
            animation: none; /* on supprime l'animation "move" */
        }

            /* On garde la couleur du "before" et on supprime l'animation "slice" qui barrait le texte */
            #ClassFlyOut-CheckBoxList input[type="checkbox"]:checked ~ span::before {
                background: transparent;
                animation: none;
            }

            /* On peut conserver l’animation "feux d’artifice" si on veut */
            #ClassFlyOut-CheckBoxList input[type="checkbox"]:checked ~ span::after {
                animation: firework 0.5s ease forwards 0.1s;
            }

/* ---------------------- */
/* Animations             */
/* ---------------------- */
@keyframes check-01 {
    0% {
        width: 4px;
        transform: rotate(0);
    }

    50% {
        width: 0px;
        transform: rotate(0);
    }

    51% {
        width: 0px;
        top: 8px;
        transform: rotate(45deg);
    }

    100% {
        width: 5px;
        top: 8px;
        transform: rotate(45deg);
    }
}

@keyframes check-02 {
    0% {
        width: 4px;
        transform: rotate(0);
    }

    50% {
        width: 0px;
        transform: rotate(0);
    }

    51% {
        width: 0px;
        top: 8px;
        transform: rotate(-45deg);
    }

    100% {
        width: 10px;
        top: 8px;
        transform: rotate(-45deg);
    }
}

/* "feux d’artifice" */
@keyframes firework {
    0% {
        opacity: 1;
        box-shadow: 0 0 0 -2px var(--check), 0 0 0 -2px var(--check), 0 0 0 -2px var(--check), 0 0 0 -2px var(--check), 0 0 0 -2px var(--check), 0 0 0 -2px var(--check);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        box-shadow: 0 -15px 0 0px var(--check), 14px -8px 0 0px var(--check), 14px 8px 0 0px var(--check), 0 15px 0 0px var(--check), -14px 8px 0 0px var(--check), -14px -8px 0 0px var(--check);
    }
}
/*#endregion*/


.icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.btn-grid-enfant:hover {
    transform: scale(1.05);
    border-color: #fff9;
}

    .btn-grid-enfant:hover .icon {
        transform: translate(4px);
    }

    .btn-grid-enfant:hover::before {
        animation: shine 1.5s ease-out infinite;
    }

.btn-grid-enfant::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient( 120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70% );
    top: 0;
    left: -100px;
    opacity: 0.6;
}

@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}
/*#endregion*/


.btn-SendMessage {
    font-family: inherit;
    background: green;
    color: white;
    padding: 0.7em 1em;
    padding-left: 0.9em;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
}

    .btn-SendMessage span {
        display: block;
        margin-left: 0.3em;
        transition: all 0.3s ease-in-out;
    }

    .btn-SendMessage svg {
        display: block;
        transform-origin: center center;
        transition: transform 0.3s ease-in-out;
    }

    .btn-SendMessage:hover .svg-wrapper {
        animation: fly-1 0.6s ease-in-out infinite alternate;
    }

    .btn-SendMessage:hover svg {
        transform: translateX(1.2em) rotate(45deg) scale(1.1);
    }

    .btn-SendMessage:hover span {
        transform: translateX(5em);
    }

    .btn-SendMessage:active {
        transform: scale(0.95);
    }

@keyframes fly-1 {
    from {
        transform: translateY(0.1em);
    }

    to {
        transform: translateY(-0.1em);
    }
}

.button-archive {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 6px 10px;
    gap: 6px;
    border: none;
    background: #ffe58a; /* Jaune clair */
    border-radius: 20px;
    cursor: pointer;
}

.lable {
    font-size: 16px;
    line-height: 18px;
    color: black;
    letter-spacing: 0.5px;
}

.button-archive:hover {
    background: #ffd966; /* Jaune légèrement plus foncé au survol */
}

    .button-archive:hover .svg-icon {
        animation: spin 1s linear infinite;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-8deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(8deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.Btn-edit {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100px;
    height: 40px;
    border: none;
    padding: 0px 20px;
    background-color: rgb(230, 127, 0);
    color: white;
    font-weight: 500;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 5px 5px 0px rgb(199, 112, 4);
    transition-duration: .3s;
}

    .Btn-edit .svg {
        width: 13px;
        position: absolute;
        right: 0;
        margin-right: 20px;
        fill: white;
        transition-duration: .3s;
    }

    .Btn-edit:hover {
        color: transparent;
    }

        .Btn-edit:hover svg {
            right: 43%;
            margin: 0;
            padding: 0;
            border: none;
            transition-duration: .3s;
        }

    .Btn-edit:active {
        transform: translate(3px, 3px);
        transition-duration: .3s;
        box-shadow: 2px 2px 0px rgb(140, 32, 212);
    }


td.pastille-notif {
    position: relative; /* Nécessaire pour positionner le ::before par rapport au td */
}

    td.pastille-notif::before {
        content: "\f0f3"; /* Code Unicode de l'icône "fa-bell" */
        font-family: "Font Awesome 5 Free"; /* Police Font Awesome */
        transform: scaleX(-1); /*Inverser horizontalement (effet miroir gauche-droite)*/
        font-weight: 900; /* Nécessaire pour les icônes "solid" */
        color: #cb1515; /* Couleur de l'icône */
        position: absolute;
        top: -5px; /* Ajuste la position verticale */
        left: 0px; /* Ajuste la position horizontale */
        z-index: 1; /* Met le ::before au-dessus du contenu */
    }


.search-container {
    position: relative;
    --size-button: 40px;
    color: white;
}

    .search-container .input {
        padding-left: var(--size-button);
        height: var(--size-button);
        font-size: 15px;
        border: none;
        color: #fff;
        outline: none;
        width: var(--size-button);
        transition: all ease 0.3s;
        background-color: #191A1E;
        box-shadow: 1.5px 1.5px 3px #0e0e0e, -1.5px -1.5px 3px rgb(95 94 94 / 25%), inset 0px 0px 0px #0e0e0e, inset 0px -0px 0px #5f5e5e;
        border-radius: 50px;
        cursor: pointer;
    }

        .search-container .input:focus,
        .search-container .input:not(:invalid) {
            width: 200px;
            cursor: text;
            box-shadow: 0px 0px 0px #0e0e0e, 0px 0px 0px rgb(95 94 94 / 25%), inset 1.5px 1.5px 3px #0e0e0e, inset -1.5px -1.5px 3px #5f5e5e;
        }

            .search-container .input:focus + .icon,
            .search-container .input:not(:invalid) + .icon {
                pointer-events: all;
                cursor: pointer;
            }

    .search-container .icon {
        position: absolute;
        width: var(--size-button);
        height: var(--size-button);
        top: 0;
        left: 0;
        padding: 8px;
        pointer-events: none;
    }

        .search-container .icon svg {
            width: 100%;
            height: 100%;
        }




.fa-bell-anim {
    position: relative;
    /* On évite de mettre font-size, font-family… ici 
     pour ne pas affecter le texte. */
}

    /* 2) La cloche Font Awesome en ::before */
    .fa-bell-anim::before {
        content: "\f0f3"; /* Icône cloche Font Awesome 5 (solid) */
        font-family: "Font Awesome 5 Free";
        font-weight: 900; /* solid */
        font-size: 20px; /* taille de la cloche */
        color: #333; /* couleur de la cloche */
        /* On isole cet élément pour pouvoir l’animer sans bouger le texte */
        position: absolute;
        left: 0; /* la cloche sera placée à gauche du td */
        top: 15%; /* on l’aligne verticalement au milieu */
        transform: translateY(-50%);
        /* Animation en continu + transform-origin si besoin */
        animation: ring 2.65s ease-out infinite;
        transform-origin: center bottom;
        /* => pivot en bas, ajustez si vous préférez (center top, etc.) */
    }

    /* 3) La pastille rouge en ::after (si besoin) */
    .fa-bell-anim::after {
        content: "1"; /* le chiffre à afficher */
        position: absolute;
        /* On place la pastille dans le coin supérieur droit de l’icône */
        /* Ici on la met un peu à droite et un peu au-dessus de la cloche */
        left: 12px; /* ajustez selon la taille de la cloche */
        top: calc(15% - 14px); /* décalé un peu vers le haut */
        width: 16px;
        height: 16px;
        font-size: 10px;
        background: red;
        color: white;
        border-radius: 50%;
        display: flex; /* pour centrer le chiffre dans la pastille */
        align-items: center;
        justify-content: center;
    }

/* 4) Keyframes d'animation (balancement + pause) */
@keyframes ring {
    /* On garde l’exemple : 0.65s de «secousse», puis ~2s de pause. */
    0%, 25% {
        transform: rotate(0deg) translateY(-50%);
    }

    5% {
        transform: rotate(15deg) translateY(-50%);
    }

    10% {
        transform: rotate(-15deg) scale(1.1) translateY(-50%);
    }

    15% {
        transform: rotate(10deg) scale(1.1) translateY(-50%);
    }

    20% {
        transform: rotate(-10deg) translateY(-50%);
    }

    100% {
        transform: rotate(0deg) translateY(-50%);
    }
}

/*.pastille-notif span {
    all: unset !important;
}*/

.aasNotActive {
    display: none !important;
}

/*fieldset.aasRadioButtons {
    border-width: inherit !important;
    border-style: inherit !important;
    border-color: inherit !important;
}*/

.formField {
    margin: 10px;
    position: relative;
}

    .formField input {
        padding: 10px 15px;
        width: 300px;
        outline: none;
        border: none;
        border-radius: 5px;
        background-color: #f1f1f1;
        color: #333;
        font-size: 16px;
        font-weight: 550;
        transition: 0.3s ease-in-out;
        box-shadow: 0 0 0 5px transparent;
    }

        .formField input:hover,
        .formField input:focus {
            box-shadow: 0 0 0 2px #333;
        }

    .formField span {
        position: absolute;
        left: 0;
        top: 0;
        padding: 8px 15px;
        color: #333;
        font-size: 16px;
        font-weight: 600;
        transition: 0.3s ease-in-out;
        pointer-events: none;
    }

    .formField input:focus + span,
    .formField input:valid + span {
        transform: translateY(-32px) translateX(-5px) scale(0.95);
        transition: 0.3s ease-in-out;
    }


.radio-inputs {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    border-radius: 1rem;
    background: linear-gradient(145deg, #e6e6e6, #ffffff);
    box-sizing: border-box;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15), -5px -5px 15px rgba(255, 255, 255, 0.8);
    padding: 0.5rem;
    width: 275px;
    font-size: 14px;
    gap: 0.5rem;
}

    .radio-inputs label {
        flex: 1 1 auto;
        text-align: center;
        position: relative;
    }

        .radio-inputs label input {
            display: none;
        }

        .radio-inputs label .name {
            display: flex;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            border-radius: 0.7rem;
            border: none;
            padding: 0.3rem 0;
            color: #2d3748;
            font-weight: 500;
            font-family: inherit;
            background: linear-gradient(145deg, #ffffff, #e6e6e6);
            box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1), -3px -3px 6px rgba(255, 255, 255, 0.7);
            transition: all 0.2s ease;
            overflow: hidden;
        }

        .radio-inputs label input:checked + .name {
            background: linear-gradient(145deg, #3b82f6, #2563eb);
            color: white;
            font-weight: 600;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
            box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2), inset -2px -2px 5px rgba(255, 255, 255, 0.1), 3px 3px 8px rgba(59, 130, 246, 0.3);
            transform: translateY(2px);
        }

    /* Hover effect */
    .radio-inputs .radio:hover .name {
        background: linear-gradient(145deg, #f0f0f0, #ffffff);
        transform: translateY(-1px);
        box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1), -4px -4px 8px rgba(255, 255, 255, 0.8);
    }

    .radio-inputs .radio:hover input:checked + .name {
        transform: translateY(1px);
    }

    /* Animation */
    .radio-inputs label input:checked + .name {
        animation: select 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Particles */
    .radio-inputs label .name::before,
    .radio-inputs label .name::after {
        content: "";
        position: absolute;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        opacity: 0;
        pointer-events: none;
    }

    .radio-inputs label input:checked + .name::before,
    .radio-inputs label input:checked + .name::after {
        animation: particles 0.8s ease-out forwards;
    }

    .radio-inputs label .name::before {
        background: #60a5fa;
        box-shadow: 0 0 6px #60a5fa;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .radio-inputs label .name::after {
        background: #93c5fd;
        box-shadow: 0 0 8px #93c5fd;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Sparkles */
    .radio-inputs label .name::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background: radial-gradient( circle at var(--x, 50%) var(--y, 50%), rgba(59, 130, 246, 0.3) 0%, transparent 50% );
        opacity: 0;
        transition: opacity 0.3s;
    }

    .radio-inputs label input:checked + .name::after {
        opacity: 1;
        animation: sparkle-bg 1s ease-out forwards;
    }

    /* Multiple particles */
    .radio-inputs label input:checked + .name {
        overflow: visible;
    }

        .radio-inputs label input:checked + .name::before {
            box-shadow: 0 0 6px #60a5fa, 10px -10px 0 #60a5fa, -10px -10px 0 #60a5fa;
            animation: multi-particles-top 0.8s ease-out forwards;
        }

        .radio-inputs label input:checked + .name::after {
            box-shadow: 0 0 8px #93c5fd, 10px 10px 0 #93c5fd, -10px 10px 0 #93c5fd;
            animation: multi-particles-bottom 0.8s ease-out forwards;
        }

@keyframes select {
    0% {
        transform: scale(0.95) translateY(2px);
    }

    50% {
        transform: scale(1.05) translateY(-1px);
    }

    100% {
        transform: scale(1) translateY(2px);
    }
}

@keyframes multi-particles-top {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }

    40% {
        opacity: 0.8;
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px) scale(0);
        box-shadow: 0 0 6px transparent, 20px -20px 0 transparent, -20px -20px 0 transparent;
    }
}

@keyframes multi-particles-bottom {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }

    40% {
        opacity: 0.8;
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px) scale(0);
        box-shadow: 0 0 8px transparent, 20px 20px 0 transparent, -20px 20px 0 transparent;
    }
}

@keyframes sparkle-bg {
    0% {
        opacity: 0;
        transform: scale(0.2);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(2);
    }
}

/* Ripple effect */
.radio-inputs label .name::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient( circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.5) 0%, transparent 50% );
    opacity: 0;
    transition: opacity 0.3s;
}

.radio-inputs label input:checked + .name::before {
    animation: ripple 0.8s ease-out;
}

@keyframes ripple {
    0% {
        opacity: 1;
        transform: scale(0.2);
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}

/* Glowing border */
.radio-inputs label input:checked + .name {
    position: relative;
}

    .radio-inputs label input:checked + .name::after {
        content: "";
        position: absolute;
        inset: -2px;
        border-radius: inherit;
        background: linear-gradient( 45deg, rgba(59, 130, 246, 0.5), rgba(37, 99, 235, 0.5) );
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        animation: border-glow 1.5s ease-in-out infinite alternate;
    }

@keyframes border-glow {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.btn-grid {
    cursor: pointer;
    position: relative;
    color: darkblue;
    border: 2px solid darkblue;
    border-radius: 34px;
    background-color: transparent;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
}

    .btn-grid::before {
        content: '';
        position: absolute;
        inset: 0;
        margin: auto;
        width: 50px;
        height: 50px;
        border-radius: inherit;
        scale: 0;
        z-index: -1;
        background-color: beige;
        transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    }

    .btn-grid:hover::before {
        scale: 3;
    }

    .btn-grid:hover {
        color: darkblue;
        scale: 1.1;
        box-shadow: 0 0px 20px rgba(193, 163, 98,0.4);
    }

    .btn-grid:active {
        scale: 1;
    }


.btn-back {
    display: flex;
    height: 2em;
    width: 100px;
    align-items: center;
    justify-content: center;
    background-color: #eeeeee4b;
    border-radius: 3px;
    letter-spacing: 1px;
    transition: all 0.2s linear;
    cursor: pointer;
    border: none;
    background: #fff;
}

    .btn-back > svg {
        margin-right: 5px;
        margin-left: 5px;
        font-size: 20px;
        transition: all 0.4s ease-in;
    }

    .btn-back:hover > svg {
        font-size: 1.2em;
        transform: translateX(-5px);
    }

    .btn-back:hover {
        box-shadow: 9px 9px 33px #d1d1d1, -9px -9px 33px #ffffff;
        transform: translateY(-2px);
    }


body {
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(https://labcompaniondev.blob.core.windows.net/public/LabCompanionBackground.png);
    background-color: var(--bg-fond-accueil);
}


th {
    cursor: pointer;
}

.ZonePrincipal {
    background-color: var(--bg-fond-zone-principal);
}

.bg-BareLaterale {
    background-color: var(--bg-fond-bare-laterale);
}

.bg-Accueil {
    background-color: var(--bg-fond-accueil);
}

.bg-TypeTexte {
    background-color: #D9ECEC;
}

.btn-PrevNext {
    padding: .25rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    background-color: powderblue !important;
    border-radius: var(--bs-border-radius) !important;
    color: rgba(var(--bs-dark-rgb)) !important;
}

div.ponctuel {
    background-color: red !important;
}

a.tard-garderie-parent {
    background-color: orange !important;
    color: white !important;
}

a.tot-garderie-parent {
    background-color: cornflowerblue !important;
    color: white !important;
}

a.event-garderie {
    background-color: #FFF3CD !important; /* jaune clair */
    color: black !important;
    position: relative;
}

    /* Si payé : vert */
    a.event-garderie.event-paye {
        background-color: #D4EDDA !important; /* vert clair */
    }

    a.event-garderie::after {
        content: "";
        position: absolute;
        top: 4px;
        right: 4px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #FFC107; /* jaune */
    }

    /* Si payé : pastille verte */
    a.event-garderie.event-paye::after {
        background-color: #28A745; /* vert */
    }

    a.event-garderie.event-paye i.fa-trash {
        display: none !important;
    }

.Affichage-Titre-Garderie {
    font-family: 'Arial', sans-serif; /* Police de caractères */
    color: black; /* Couleur du texte */
    background-color: #E8F4FD; /* Arrière-plan */
    padding: 5px 10px; /* Espacement interne */
    border-radius: 5px; /* Coins arrondis */
    display: inline-flex; /* Alignement des éléments */
    align-items: center; /* Centrage vertical */
    gap: 5px; /* Espace entre l'icône et le texte */
}

    .Affichage-Titre-Garderie > span {
        font-weight: bold; /* Texte en gras */
        font-size: 16px; /* Taille du texte */
    }

tr.Row-Ponctuel {
    background-color: yellow;
}

tr.Row-Exceptionnel {
    background-color: burlywood;
}


.radio-readonly {
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
}

/*******************Formulaire enfant inscrit*************************/

.form-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colonnes de taille égale */
    gap: 0.5rem; /* espace entre les éléments, ajustable */
    width: 480px; /* largeur max si souhaité */
    /*margin: 0 auto;*/ /* centrer le bloc global */
    background-color: #FEFDF7;
}

.form-group-enfant-inscrit {
    display: flex;
    flex-direction: column;
}

    .form-group-enfant-inscrit label {
        font-size: 0.9rem;
    }

.form-title {
    grid-column: 1 / -1; /* Le titre occupe toutes les colonnes */
    font-size: 1rem;
    font-weight: bold;
}

/*****************************************************************************************/

/*#region Messagerie Desactivé*/

/* Style pour le div normal */
.divMsg {
    transition: all 0.6s ease; /* Transition douce pour les changements */
}

    /* Style pour le div désactivé */
    .divMsg.disabled {
        pointer-events: none; /* Désactive les interactions */
        background-color: #f0f0f0 !important; /* Couleur de fond gris plus sombre */
        color: #888888; /* Couleur du texte plus grisée */
        border-color: #d0d0d0; /* Bordure grisée plus foncée */
        box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2); /* Ombre intérieure plus prononcée */
        transition: all 0.6s ease; /* Transition douce pour les changements */
    }

    /* Style pour les inputs */
    .divMsg textarea {
        transition: all 0.6s ease; /* Transition douce pour les inputs */
        transform: translateY(0); /* Position initiale */
    }

    .divMsg button {
        transition: all 0.6s ease; /* Transition douce pour les inputs */
        transform: translateY(0); /* Position initiale */
    }

    /* Désactive les inputs à l'intérieur du div désactivé */
    .divMsg.disabled textarea {
        background-color: #b0b0b0; /* Fond gris pour les inputs */
        color: #888888; /* Texte des inputs grisé */
        border: 1px solid #d0d0d0; /* Bordure des inputs grisée */
        cursor: not-allowed; /* Curseur non autorisé */
        transform: translateY(5px); /* Légère translation pour l'effet de mouvement */
    }

    .divMsg.disabled button {
        background-color: #b0b0b0; /* Fond gris pour les inputs */
        color: #888888; /* Texte des inputs grisé */
        border: 1px solid #d0d0d0; /* Bordure des inputs grisée */
        cursor: not-allowed; /* Curseur non autorisé */
        transform: translateY(5px); /* Légère translation pour l'effet de mouvement */
    }


/* Animation de rebondissement */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.bounce {
    animation: bounce 0.6s ease;
}

/*#endregion*/

/*****************************************************************************************/
.tooltip {
    position: absolute;
    background-color: #333;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
    top: 100%; /* Positionne le tooltip en dessous du bouton */
    left: 50%;
    transform: translateX(-50%);
    margin-top: 5px; /* Espace entre le bouton et le tooltip */
    white-space: nowrap;
}



.error-tooltip {
    background-color: #f44336; /* Red background */
    color: white; /* White text */
    padding: 5px;
    border-radius: 5px;
    width: max-content;
}

.checkbox-jours {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    user-select: none;
}

    .checkbox-jours label {
        display: flex;
        align-items: center;
        font-size: 16px;
        font-weight: bold;
        color: #333;
    }

    .checkbox-jours input[type="checkbox"] {
        margin-right: 10px;
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

        .checkbox-jours input[type="checkbox"]:disabled {
            cursor: not-allowed;
        }

            .checkbox-jours input[type="checkbox"]:disabled + span {
                color: #8a8a8a;
                text-decoration: line-through;
            }


.radio-buttons-jours {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

    .radio-buttons-jours label {
        display: flex;
        align-items: center;
        font-size: 16px;
        font-weight: bold;
        color: #333;
    }

    .radio-buttons-jours input[type="radio"] {
        margin-right: 10px;
        width: 20px;
        height: 20px;
        cursor: pointer;
    }


/*****************************************************************************************/



/*************************************Inscription Parent********************************************/



#InscriptionParent h4 {
    color: #333;
}

#InscriptionParent h5 {
    color: #555;
}

#InscriptionParent p {
    color: #666;
    line-height: 1.6;
}

#InscriptionParent ul {
    color: #666;
    line-height: 1.6;
    list-style-type: disc;
}

#InscriptionParent .highlight {
    font-weight: bold;
    color: #333;
}


#InscriptionParent .input-field {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}



/******************************************************************************************************/

.bg-etape.aasSelected {
    background-color: #32B4A5;
}


.btn-etape {
    /*padding: 10px 20px;
    border: none;
    border-radius: 5px;*/
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.5s ease;
}



.morph {
    transition: all 1s ease;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.btn-success.morph .btn-validerPhaseTexte {
    display: none !important;
}

.btn-success.morph .btn-validerPhaseCheck {
    display: inline-block !important;
}


@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}





td.check-box-validation input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    td.check-box-validation input[type="checkbox"]:checked {
        background-color: #4CAF50;
        border-color: #4CAF50;
    }

    td.check-box-validation input[type="checkbox"]:hover {
        border-color: #999;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    }




.paiement-nonOk::before {
    content: '\2757'; /* Icône de point d'exclamation */
    color: #ffffff; /* Blanc */
    margin-right: 10px;
    font-size: 24px;
}

.paiement-nonOk {
    background-color: #ffa500; /* Orange */
    border: 1px solid #e0e0e0; /* Bordure grise claire */
    text-align: center;
    color: #ffffff; /* Blanc pour le texte */
    font-size: 16px; /* Taille de police plus grande */
    font-weight: bold; /* Texte en gras */
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInScale 1s ease-in-out;
}

.confimation-validerPhase::before {
    content: '\2714'; /* Icône de coche */
    color: #4caf50; /* Vert */
    margin-right: 10px;
    font-size: 24px;
}


.confimation-validerPhase {
    background-color: #fffacd; /* Jaune pâle */
    border: 1px solid #e0e0e0; /* Bordure grise claire */
    text-align: center;
    color: #333;
    font-size: 16px; /* Taille de police plus grande */
    font-weight: bold; /* Texte en gras */
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInScale 1s ease-in-out;
}


.texte-ValiderPhaseAdmin {
    background-color: #fffacd; /* Jaune pâle */
    border: 1px solid #e0e0e0; /* Bordure grise claire */
    text-align: center;
    color: #333;
    font-size: 16px; /* Taille de police plus grande */
    font-weight: bold; /* Texte en gras */
    display: flex;
    align-items: center;
    justify-content: center;
}




@keyframes showAndHide {
    0% {
        opacity: 0;
        transform: translate(-50%, 100%);
    }

    10% {
        opacity: 1;
        transform: translate(-50%, -60%);
    }

    20% {
        opacity: 1;
        transform: translate(-50%, -45%);
    }

    30% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }

    90% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -150%);
    }
}


.show-notification {
    opacity: 1;
}

.notif-mail.active {
    visibility: visible;
    position: fixed;
    top: 18%;
    left: 50%;
    transform: translate(-50%, 100%);
    padding: 15px 20px;
    background-color: #4caf50; /* Vert pour succès */
    color: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    animation: showAndHide 8s forwards;
}

.notif-mail {
    visibility: hidden;
}


.acteur-labschool {
    background-color: red !important;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

    .acteur-labschool:hover {
        background-color: red !important;
        color: #ffdddd;
        transform: scale(1.05);
    }


.acteur-parent {
    background-color: orange !important;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

    .acteur-parent:hover {
        background-color: orange !important;
        color: #ddffdd;
        transform: scale(1.05);
    }



.btn-etape .fa-circle-check {
    position: absolute;
    top: -12px;
    right: 3px;
    font-size: 1.2em;
    z-index: 10;
}

.btn-etape .fa-clock {
    position: absolute;
    top: -12px;
    right: 3px;
    font-size: 1.2em;
    z-index: 10;
}


tr.active {
    background-color: #d0e7ff !important; /* Bleu clair plus foncé */
    color: #000080; /* Bleu marine */
    font-weight: bold;
    border-left: 4px solid #000080; /* Bordure gauche en bleu marine */
    transition: background-color 0.3s, color 0.3s;
}

.demandeParent.aasSelected {
    background-color: gray !important;
    color: white !important;
}

td.gcPrenom a {
    color: blue !important;
    text-decoration: underline !important;
}

/*#region navbar*/
#Cadre > nav li {
    margin: 5px;
    padding-right: 0;
}

    #Cadre > nav li:hover {
        background-color: var(--li-hover); /* définir dans tes variables */
        color: #0a3d62;
        cursor: pointer;
    }

    #Cadre > nav li.selected {
        background-color: var(--li-selected);
        font-weight: bold;
        color: #0a3d62; /* ou une couleur qui ressort bien */
        border-left: 4px solid #1e3799;
        box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

        #Cadre > nav li.selected i {
            color: #1e3799;
        }

#Cadre > nav.bg-BareLaterale {
    position: relative;
    flex: 0 0 12%;
    transition: flex-basis 0.3s; /* animation de la largeur */
}

    #Cadre > nav.bg-BareLaterale.collapsed {
        flex-basis: 4%;
    }

        #Cadre > nav.bg-BareLaterale.collapsed img[name="Logo"] {
            display: none;
        }

        /* (4) En mode collapsed, on masque tous les <span> */
        #Cadre > nav.bg-BareLaterale.collapsed span {
            display: none;
        }

.btn-Sidebar {
    position: absolute;
    top: 10px;
    right: 10px;
    border: 1px solid #ccc;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    /* Transition de couleur au hover */
    transition: background-color 0.3s;
}
/*#endregion*/


#Cadre ul {
    padding-left: 0;
}


/*.form-control {
    width: 450px;
    margin: 2px;
}*/


a.noLink {
    text-decoration: none !important;
    color: inherit;
}


/*#region === Scrollbar foncée – LabSchool === */
:root {
    --scrollbar-size: 10px;
    --scrollbar-track: #E7EAEE;
    /* plus foncé qu'avant */
    --scrollbar-thumb: #1e5a56; /* default */
    --scrollbar-thumb-hover: #164846; /* hover */
    --scrollbar-thumb-active: #0f3a37; /* active */
    --scrollbar-arrow-bg: #1e5a56; /* fond des boutons */
    --scrollbar-arrow-icon: #ffffff; /* couleur des flèches */
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

    /* WebKit (Chrome/Edge/Safari) */
    *::-webkit-scrollbar {
        width: var(--scrollbar-size);
        height: var(--scrollbar-size);
    }

    *::-webkit-scrollbar-track {
        background: var(--scrollbar-track);
        border-radius: 999px;
    }

    *::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, rgba(255,255,255,.25), rgba(0,0,0,.10)), var(--scrollbar-thumb);
        border: 2px solid var(--scrollbar-track);
        border-radius: 999px;
    }

        *::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, rgba(255,255,255,.25), rgba(0,0,0,.10)), var(--scrollbar-thumb-hover);
        }

        *::-webkit-scrollbar-thumb:active {
            background: linear-gradient(180deg, rgba(255,255,255,.25), rgba(0,0,0,.10)), var(--scrollbar-thumb-active);
        }

    *::-webkit-scrollbar-corner {
        background: transparent;
    }

    /* === Boutons / flèches (WebKit) ===
   NB: beaucoup de systèmes les masquent par défaut, mais si présents,
   on les fonce et on dessine l’icône en SVG inline. */
    *::-webkit-scrollbar-button {
        width: var(--scrollbar-size);
        height: var(--scrollbar-size);
        background-color: var(--scrollbar-arrow-bg);
        border: 2px solid var(--scrollbar-track);
        border-radius: 8px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 60% 60%;
    }

        /* Up */
        *::-webkit-scrollbar-button:single-button:vertical:decrement {
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><polygon fill='%23ffffff' points='12,6 5,13 19,13'/></svg>");
        }
        /* Down */
        *::-webkit-scrollbar-button:single-button:vertical:increment {
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><polygon fill='%23ffffff' points='5,11 19,11 12,18'/></svg>");
        }
        /* Left */
        *::-webkit-scrollbar-button:single-button:horizontal:decrement {
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><polygon fill='%23ffffff' points='6,12 13,5 13,19'/></svg>");
        }
        /* Right */
        *::-webkit-scrollbar-button:single-button:horizontal:increment {
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><polygon fill='%23ffffff' points='18,12 11,19 11,5'/></svg>");
        }

/* (option) dark mode OS */
@media (prefers-color-scheme: dark) {
    :root {
        --scrollbar-track:#111827;
    }
}
/*#endregion*/

.pac-container {
    z-index: 1060 !important;
}


.btn-enfant {
    appearance: none;
    background-color: white;
    border: inherit;
    box-sizing: border-box;
    color: #253A34;
    cursor: pointer;
    display: inline-block;
    font-family: Roobert,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    min-width: 0;
    outline: none;
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    will-change: transform;
    box-shadow: rgba(0, 0, 0, 0.25) 0 4px 7px;
}

    .btn-enfant:disabled {
        pointer-events: none;
    }

    .btn-enfant:hover {
        box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
        transform: translateY(-2px);
    }

    .btn-enfant:active {
        box-shadow: none;
        transform: translateY(0);
    }

    .btn-enfant.aasSelected {
        background-color: #8ED7CA;
    }

.enfantRepete.aasSelected .btn-enfant {
    background-color: #8CC8C8;
}

.btn-ls {
    appearance: none;
    background-color: #287873;
    border: inherit;
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    font-family: Roobert,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    min-width: 0;
    outline: none;
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    will-change: transform;
}

    .btn-ls:disabled {
        pointer-events: none;
    }

    .btn-ls:hover {
        box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
        transform: translateY(-2px);
        color: white;
    }

    .btn-ls:active {
        box-shadow: none;
        transform: translateY(0);
    }



@keyframes flash {
    0% {
        background-color: yellow;
    }

    100% {
        background-color: transparent;
    }
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fade {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#price {
    transition: all 0.5s ease-in-out;
    display: inline-block;
}

    #price.changed {
        color: green;
        font-size: larger;
        animation: flash 0.5s;
        animation: zoom 0.5s;
        animation: fade 0.5s;
        display: inline-block;
    }




/************************************  SunEditor *********************/

.sun-editor-editable {
    font-size: 16px !important;
    font-family: inherit !important;
}


/******************************************************************************/


/************************************  Missing from Bootstrap *********************/

.order-6 {
    order: 6;
}

.order-7 {
    order: 7;
}

.order-8 {
    order: 8;
}

.order-9 {
    order: 9;
}

.order-10 {
    order: 10;
}



.w-5 {
    width: 5% !important;
}

.w-10 {
    width: 10% !important;
}

.w-15 {
    width: 15% !important;
}

.w-20 {
    width: 20% !important;
}

.w-30 {
    width: 30% !important;
}

.w-35 {
    width: 35% !important;
}

.w-40 {
    width: 40% !important;
}

.w-45 {
    width: 45% !important;
}

.w-55 {
    width: 55% !important;
}

.w-60 {
    width: 60% !important;
}

.w-65 {
    width: 65% !important;
}

.w-70 {
    width: 70% !important;
}

.w-80 {
    width: 80% !important;
}

.w-85 {
    width: 85% !important;
}

.w-90 {
    width: 90% !important;
}

.w-95 {
    width: 95% !important;
}

.h-5 {
    height: 5% !important;
}

.h-10 {
    height: 10% !important;
}

.h-15 {
    height: 15% !important;
}

.h-20 {
    height: 20% !important;
}

.h-30 {
    height: 30% !important;
}

.h-35 {
    height: 35% !important;
}

.h-40 {
    height: 40% !important;
}

.h-45 {
    height: 45% !important;
}

.h-55 {
    height: 55% !important;
}

.h-60 {
    height: 60% !important;
}

.h-65 {
    height: 65% !important;
}

.h-70 {
    height: 70% !important;
}

.h-80 {
    height: 80% !important;
}

.h-85 {
    height: 85% !important;
}

.h-90 {
    height: 90% !important;
}

.h-95 {
    height: 95% !important;
}

.mh-10 {
    max-height: 10% !important;
}

.mh-10 {
    max-height: 10% !important;
}

.mh-20 {
    max-height: 20% !important;
}

.mh-25 {
    max-height: 25% !important;
}

.mh-30 {
    max-height: 30% !important;
}

.mh-35 {
    max-height: 35% !important;
}

.mh-40 {
    max-height: 40% !important;
}

.mh-45 {
    max-height: 45% !important;
}

.mh-50 {
    max-height: 50% !important;
}

.mh-55 {
    max-height: 55% !important;
}

.mh-60 {
    max-height: 60% !important;
}

.mh-65 {
    max-height: 65% !important;
}

.mh-70 {
    max-height: 70% !important;
}

.mh-75 {
    max-height: 75% !important;
}

.mh-80 {
    max-height: 80% !important;
}

.mh-85 {
    max-height: 85% !important;
}

.mh-90 {
    max-height: 90% !important;
}

.mh-95 {
    max-height: 95% !important;
}

.mw-10 {
    max-width: 10% !important;
}

.mw-10 {
    max-width: 10% !important;
}

.mw-20 {
    max-width: 20% !important;
}

.mw-25 {
    max-width: 25% !important;
}

.mw-30 {
    max-width: 30% !important;
}

.mw-35 {
    max-width: 35% !important;
}

.mw-40 {
    max-width: 40% !important;
}

.mw-45 {
    max-width: 45% !important;
}

.mw-50 {
    max-width: 50% !important;
}

.mw-55 {
    max-width: 55% !important;
}

.mw-60 {
    max-width: 60% !important;
}

.mw-65 {
    max-width: 65% !important;
}

.mw-70 {
    max-width: 70% !important;
}

.mw-75 {
    max-width: 75% !important;
}

.mw-80 {
    max-width: 80% !important;
}

.mw-85 {
    max-width: 85% !important;
}

.mw-90 {
    max-width: 90% !important;
}

.mw-95 {
    max-width: 95% !important;
}



.t-a {
    height: 100% !important;
    width: 100% !important;
}
/* take all space avalaible */


.ml-0 {
    margin-left: 0 !important;
}

.ml-1 {
    margin-left: 1rem !important;
}

.ml-2 {
    margin-left: 2rem !important;
}

.ml-3 {
    margin-left: 3rem !important;
}

.ml-4 {
    margin-left: 4rem !important;
}

.ml-5 {
    margin-left: 5rem !important;
}

.ml-6 {
    margin-left: 6rem !important;
}

.ml-7 {
    margin-left: 7rem !important;
}

.ml-8 {
    margin-left: 8rem !important;
}

.ml-9 {
    margin-left: 9rem !important;
}

.ml-10 {
    margin-left: 10rem !important;
}

.mr-0 {
    margin-right: 0 !important;
}

.mr-1 {
    margin-right: 1rem !important;
}

.mr-2 {
    margin-right: 2rem !important;
}

.mr-3 {
    margin-right: 3rem !important;
}

.mr-4 {
    margin-right: 4rem !important;
}

.mr-5 {
    margin-right: 5rem !important;
}

.mr-6 {
    margin-right: 6rem !important;
}

.mr-7 {
    margin-right: 7rem !important;
}

.mr-8 {
    margin-right: 8rem !important;
}

.mr-9 {
    margin-right: 9rem !important;
}

.mr-10 {
    margin-right: 10rem !important;
}


.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 1rem !important;
}

.mt-2 {
    margin-top: 2rem !important;
}

.mt-3 {
    margin-top: 3rem !important;
}

.mt-4 {
    margin-top: 4rem !important;
}

.mt-5 {
    margin-top: 5rem !important;
}

.mt-6 {
    margin-top: 6rem !important;
}

.mt-7 {
    margin-top: 7rem !important;
}

.mt-8 {
    margin-top: 8rem !important;
}

.mt-9 {
    margin-top: 9rem !important;
}

.mt-10 {
    margin-top: 10rem !important;
}

.mt-11 {
    margin-top: 11rem !important;
}

.mt-12 {
    margin-top: 12rem !important;
}

.mt-13 {
    margin-top: 13rem !important;
}

.mt-14 {
    margin-top: 14rem !important;
}

.mt-15 {
    margin-top: 15rem !important;
}

.mt-16 {
    margin-top: 16rem !important;
}

.mt-17 {
    margin-top: 17rem !important;
}

.mt-18 {
    margin-top: 18rem !important;
}

.mt-19 {
    margin-top: 19rem !important;
}

.mt-20 {
    margin-top: 20rem !important;
}


.mx-6 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
}

.mx-7 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
}

.mx-8 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
}

.mx-9 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
}

.mx-10 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
}



.modal-xxl {
    --bs-modal-width: 1560px;
}


/******************************************************************************/

/*************************** Aspectize Flex Helpers ********************************/
.aasFlexContainer {
    display: flex;
    height: 100vh;
    width: 100vw;
}

.aasFlexRow {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
}

.aasFlexCol {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fxf-10 {
    flex: 0 0 10% !important;
}

.fxf-15 {
    flex: 0 0 15% !important;
}

.fxf-20 {
    flex: 0 0 20% !important;
}

.fxf-25 {
    flex: 0 0 25% !important;
}

.fxf-30 {
    flex: 0 0 30%;
}

.fxf-35 {
    flex: 0 0 35%;
}

.fxf-40 {
    flex: 0 0 40%;
}

.fxf-45 {
    flex: 0 0 45%;
}

.fxf-50 {
    flex: 0 0 50%;
}

.fxf-55 {
    flex: 0 0 55%;
}

.fxf-60 {
    flex: 0 0 60%;
}

.fxg-0 {
    flex-grow: 0 !important;
}

.fxg-1 {
    flex-grow: 1 !important;
}

.fxg-2 {
    flex-grow: 2 !important;
}

.fxg-3 {
    flex-grow: 3 !important;
}

.fxg-4 {
    flex-grow: 4 !important;
}

.fxg-5 {
    flex-grow: 5 !important;
}

.fxg-6 {
    flex-grow: 6 !important;
}

.fxg-7 {
    flex-grow: 7 !important;
}

.fxg-8 {
    flex-grow: 8 !important;
}

.fxg-9 {
    flex-grow: 9 !important;
}

.fxg-10 {
    flex-grow: 10 !important;
}

.fxg-11 {
    flex-grow: 11 !important;
}

.fxg-12 {
    flex-grow: 12 !important;
}

.fxg-13 {
    flex-grow: 13 !important;
}

.fxg-14 {
    flex-grow: 14 !important;
}

.fxg-15 {
    flex-grow: 15 !important;
}

.fxg-16 {
    flex-grow: 16 !important;
}

.fxg-17 {
    flex-grow: 17 !important;
}

.fxg-18 {
    flex-grow: 18 !important;
}

.fxg-19 {
    flex-grow: 19 !important;
}

.fxg-20 {
    flex-grow: 20 !important;
}


.jcs {
    justify-content: flex-start;
}

.jce {
    justify-content: flex-end;
}

.jcb {
    justify-content: space-between;
}

.jca {
    justify-content: space-around;
}

.jcc {
    justify-content: center;
}

.jcse {
    justify-content: space-evenly;
}

.acs {
    align-content: flex-start;
}

.ace {
    align-content: flex-end;
}

.acb {
    align-content: space-between;
}

.aca {
    align-content: space-around;
}

.acc {
    align-content: center;
}

.ais {
    align-items: flex-start;
}

.aie {
    align-items: flex-end;
}

.aib {
    align-items: baseline;
}

.aic {
    align-items: center;
}


.gap-1 {
    gap: 1em !important;
}

/******************************************************************************/



/*************************** Aspectize Rotate viewer ********************************/


.image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .image-container img {
        max-width: 100%;
        max-height: 100%;
        transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
    }

.R0 {
    transform: rotate(0deg);
}

.R1 {
    transform: rotate(90deg);
    width: auto;
    height: 100%;
}

.R2 {
    transform: rotate(180deg);
}

.R3 {
    transform: rotate(270deg);
    width: auto;
    height: 100%;
}


/******************************************************************************/


.PdforImg img, .PdforImg iframe {
    display: none;
}

.PdforImg.pdf iframe {
    display: block;
}

.PdforImg.pdf .image-container {
    display: none;
}

.PdforImg.img img {
    display: block;
}


.ws {
    white-space: nowrap;
}

.aasFileUpload > div.content {
    line-height: unset;
    padding: unset;
    margin: unset;
    background: none;
}


.NewVersion {
    width: 100%;
    top: -51px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #F0EFF0;
    margin: 0;
    padding: 0;
    box-shadow: 0 0 4px #888;
    font-size: 15px;
    font-weight: 400;
    position: fixed;
    z-index: 1010;
    color: #fff;
    background-color: #9C0F17;
    text-align: center;
}


/************************************* UiVerse.io *****************************************/

/*#region cartBtn*/
.button-cart {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    gap: 15px;
    background-color: #FFD700; /* jaune */
    outline: 3px #FFD700 solid;
    outline-offset: -3px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: 400ms;
}

    .button-cart .text {
        color: #000;
        font-weight: 700;
        font-size: 1em;
        transition: 400ms;
        margin: 0;
    }

    .button-cart svg path {
        transition: 400ms;
        fill: #000;
    }

    .button-cart:hover {
        background-color: #2ecc71; /* vert */
        outline-color: #2ecc71;
    }

        .button-cart:hover .text {
            color: #fff;
        }

        .button-cart:hover svg path {
            fill: #fff;
        }
/*#endregion*/

/*#region panier*/

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(-8px);
    }

    35% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-4px);
    }

    65% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(0); /* pause jusqu'à la fin */
    }
}

.btn-panier-fixe.alert-panier {
    z-index: 1050;
    background-color: #e74c3c; /* rouge vif */
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
    cursor: pointer;
    transition: background-color 300ms, box-shadow 300ms;
}

    .btn-panier-fixe.alert-panier:hover {
        background-color: #c0392b;
        box-shadow: 0 4px 16px rgba(192, 57, 43, 0.5);
    }

.icon-bounce {
    display: inline-block;
    animation: bounce 1.7s infinite;
    margin-right: 8px;
}

/*#endregion*/

/*#region cardPaiement*/
button.container-btnPay {
    all: unset; /* Reset tous les styles natifs */
    display: flex; /* Redéfinit ce qu’on avait */
    background-color: #ffffff;
    height: 60px;
    position: relative;
    border-radius: 6px;
    transition: 0.3s ease-in-out;
    width: fit-content;
    max-width: 100%;
    cursor: pointer; /* Important pour l’interaction */
}

.container-btnPay {
    background-color: #ffffff;
    display: flex;
    height: 60px;
    position: relative;
    border-radius: 6px;
    transition: 0.3s ease-in-out;
    width: fit-content;
    max-width: 100%;
}

    .container-btnPay:hover {
        transform: scale(1.03);
    }

        .container-btnPay:hover .left-side {
            /*width: 100%;*/ /*effet d'agrandissement à activé ou désavtiver*/
            transform: scale(1.05);
        }

.left-side {
    background-color: #5de2a3;
    width: 80px;
    height: 60px;
    border-radius: 4px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
    flex-shrink: 0;
    overflow: hidden;
}

.right-side {
    display: flex;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    padding-right: 12px;
}

    .right-side:hover {
        background-color: #f9f7f9;
    }

.new {
    font-family: "Lexend Deca", sans-serif;
    margin-left: 12px;
}

.card-garderie {
    width: 40px;
    height: 25px;
    background-color: #c7ffbc;
    border-radius: 4px;
    position: absolute;
    display: flex;
    z-index: 10;
    flex-direction: column;
    align-items: center;
    box-shadow: 5px 5px 5px -2px rgba(77, 200, 143, 0.72);
}

.card-line {
    width: 35px;
    height: 6px;
    background-color: #80ea69;
    border-radius: 2px;
    margin-top: 4px;
}

.buttons-card {
    width: 6px;
    height: 6px;
    background-color: #379e1f;
    box-shadow: 0 -8px 0 0 #26850e, 0 8px 0 0 #56be3e;
    border-radius: 50%;
    margin-top: 2px;
    transform: rotate(90deg);
    margin: 5px 0 0 -10px;
}

.post {
    width: 35px;
    height: 45px;
    background-color: #dddde0;
    position: absolute;
    z-index: 11;
    bottom: 10px;
    top: 60px;
    border-radius: 4px;
    overflow: hidden;
}

.post-line {
    width: 28px;
    height: 6px;
    background-color: #545354;
    position: absolute;
    border-radius: 0 0 2px 2px;
    right: 4px;
    top: 4px;
}

    .post-line:before {
        content: "";
        position: absolute;
        width: 28px;
        height: 6px;
        background-color: #757375;
        top: -6px;
    }

.screen {
    width: 28px;
    height: 14px;
    background-color: #ffffff;
    position: absolute;
    top: 12px;
    right: 4px;
    border-radius: 2px;
}

.numbers,
.numbers-line2 {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    position: absolute;
    transform: rotate(90deg);
    left: 15px;
}

.numbers {
    background-color: #838183;
    box-shadow: 0 -12px 0 0 #838183, 0 12px 0 0 #838183;
    top: 28px;
}

.numbers-line2 {
    background-color: #aaa9ab;
    box-shadow: 0 -12px 0 0 #aaa9ab, 0 12px 0 0 #aaa9ab;
    top: 40px;
}

.dollar {
    position: absolute;
    font-size: 12px;
    font-family: "Lexend Deca", sans-serif;
    width: 100%;
    left: 0;
    top: 0;
    color: #4b953b;
    text-align: center;
}

.container-btnPay:hover .card-garderie {
    animation: slide-top 1.2s cubic-bezier(0.645, 0.045, 0.355, 1) both;
}

.container-btnPay:hover .post {
    animation: slide-post 1s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

@keyframes slide-top {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-40px) rotate(90deg);
    }

    60% {
        transform: translateY(-40px) rotate(90deg);
    }

    100% {
        transform: translateY(-5px) rotate(90deg);
    }
}

@keyframes slide-post {
    50% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-40px);
    }
}

.container-btnPay:hover .dollar {
    animation: fade-in-fwd 0.3s 1s backwards;
}

@keyframes fade-in-fwd {
    0% {
        opacity: 0;
        transform: translateY(-5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media only screen and (max-width: 480px) {
    .container-btnPay {
        transform: scale(0.9);
    }

        .container-btnPay:hover {
            transform: scale(0.94);
        }

    .new {
        font-size: 13px;
    }
}
/*#endregion*/

/*#region GridFraisGarderie*/
/* Style pour la colonne des cases à cocher dans les CELLULES (pas l'en-tête) */
tbody .gcSelectFrais {
    width: 60px; /* Largeur fixe de la colonne */
    text-align: center;
    position: relative;
    padding: 0 !important;
    background-color: #f9f9f9;
}

    /* Style pour le conteneur span dans la cellule */
    tbody .gcSelectFrais span {
        display: block;
        width: 100%;
        height: 100%;
        padding: 10px 0;
        position: relative;
    }

    /* Style pour les cases à cocher */
    tbody .gcSelectFrais input[type="checkbox"] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 24px;
        height: 24px;
        margin: 0 auto;
        background-color: white;
        border: 2px solid #aaa;
        border-radius: 4px;
        position: relative;
        cursor: pointer;
        transition: all 0.2s ease;
    }

        /* Style quand la case est cochée */
        tbody .gcSelectFrais input[type="checkbox"]:checked {
            background-color: #4CAF50;
            border-color: #4CAF50;
        }

            /* Icône de coche quand la case est cochée */
            tbody .gcSelectFrais input[type="checkbox"]:checked:after {
                content: '✓';
                position: absolute;
                color: white;
                font-size: 16px;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }

        /* Effet de survol pour la case à cocher */
        tbody .gcSelectFrais input[type="checkbox"]:hover {
            border-color: #777;
        }

    /* Effet visuel pour indiquer que toute la cellule est cliquable */
    tbody .gcSelectFrais:hover {
        background-color: #eef3ff;
        cursor: pointer;
    }

/* Réinitialiser les styles actifs par défaut pour cette grille */
#PanierGarderie-GridFraisGarderie tr.active {
    background-color: inherit !important;
    color: inherit;
    font-weight: normal;
    border-left: none;
    transition: none;
}

/* Style pour les lignes dont la case à cocher est cochée */
#PanierGarderie-GridFraisGarderie tr.row-checked {
    background-color: #f0faf0 !important; /* Vert très pâle */
    position: relative;
    border-left: 3px solid #4CAF50; /* Bordure verte à gauche */
    transition: background-color 0.2s ease;
}

    /* Ajouter un effet léger de survol sur les lignes cochées */
    #PanierGarderie-GridFraisGarderie tr.row-checked:hover {
        background-color: #e7f6e7 !important; /* Vert légèrement plus foncé au survol */
    }

    /* Style pour les cases à cocher dans les lignes cochées */
    #PanierGarderie-GridFraisGarderie tr.row-checked .gcSelectFrais input[type="checkbox"] {
        border-color: #4CAF50;
        background-color: #4CAF50;
    }

        /* Ajouter une icône de coche pour les cases cochées */
        #PanierGarderie-GridFraisGarderie tr.row-checked .gcSelectFrais input[type="checkbox"]:after {
            content: '✓';
            position: absolute;
            color: white;
            font-size: 16px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

/* Léger effet d'ombre pour faire ressortir les lignes cochées */
#PanierGarderie-GridFraisGarderie tr.row-checked {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Style pour la colonne des montants - version légère */
#PanierGarderie-GridFraisGarderie .gcMontant span {
    color: #2E7D32; /* Vert foncé pour les montants */
    font-weight: 500; /* Légèrement en gras */
    font-family: inherit; /* Garde la police par défaut */
    background-color: rgba(46, 125, 50, 0.05); /* Fond très léger */
    border-radius: 4px;
    padding: 3px 6px;
    display: inline; /* Ne change pas le mode d'affichage */
}

/* Style pour l'en-tête de la colonne Montant */
#PanierGarderie-GridFraisGarderie th.gcMontant span {
    font-weight: inherit; /* Garde le style d'origine */
    padding: 0; /* Pas de padding supplémentaire */
}

@keyframes buttonPressEffect {
    0% {
        transform: scale(0.998); /* Encore plus subtil */
        box-shadow: 0 0 0 rgba(76, 175, 80, 0);
    }

    50% {
        transform: scale(0.995); /* Presque imperceptible */
        box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.03); /* Ombre à peine visible */
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(76, 175, 80, 0);
    }
}

/* Animation plus rapide */
#PanierGarderie-GridFraisGarderie tr.row-checked {
    animation: buttonPressEffect 0.2s ease-out;
    font-weight: 500;
}

/*#endregion*/

/*#region btn extraction demande*/
.Documents-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    border: none;
    padding: 0px 15px;
    border-radius: 5px;
    background-color: rgb(49, 49, 83);
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.folderContainer {
    width: 40px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.fileBack {
    z-index: 1;
    width: 80%;
    height: auto;
}

.filePage {
    width: 50%;
    height: auto;
    position: absolute;
    z-index: 2;
    transition: all 0.3s ease-out;
}

.fileFront {
    width: 85%;
    height: auto;
    position: absolute;
    z-index: 3;
    opacity: 0.95;
    transform-origin: bottom;
    transition: all 0.3s ease-out;
}

.Documents-btn .text {
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.Documents-btn:hover .filePage {
    transform: translateY(-5px);
}

.Documents-btn:hover {
    background-color: rgb(58, 58, 94);
}

.Documents-btn:active {
    transform: scale(0.95);
}

.Documents-btn:hover .fileFront {
    transform: rotateX(30deg);
}
/*#endregion*/

/******************************************************************************************/
