/* menu mobile responsive */
#RootGridBg_dbec6268a735712d008631f1a37b2bf76 { 
    display: none;
}

@media screen and (max-width:1100px) {
    #RootGridCell_dbec6268a735712d008631f1a37b2bf73>.grid_content {
        overflow: hidden;
    }
    #RootGridBg_dbec6268a735712d008631f1a37b2bf76 { 
        display: block;
    }
    #NavMobile2304_ad206a007f7035ebe15b9be109be08fa12 {
        margin-top: 16px;
        margin-Bottom: 5px;
        margin-Left: 0%;
        margin-Right: 0%;
    }
    #NavMobile2304_ad206a007f7035ebe15b9be109be08fa12 .mobile-nav, #NavMobile2304_ad206a007f7035ebe15b9be109be08fa12 .navbar-sub {
        background-color: rgba(255, 255, 255, 1);
    }
    #NavMobile2304_ad206a007f7035ebe15b9be109be08fa12 .mobile-nav {
        text-align: right;
    }
    #NavMobile2304_ad206a007f7035ebe15b9be109be08fa12 .navIcon svg {
        display: inline-block;
        width: 24px;
        height: 24px;
    }
    #Grid1148_header {
        margin-top: 0px;
        margin-Bottom: 0px;
        margin-Left: 0%;
        margin-Right: 0%;
        background-color: rgb(255, 255, 255)
    }
}

.mobile-nav.mobile-nav-expand {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
}

.NavMobile2v304 .navbar-header {
    padding: 10px 20px;
    overflow: hidden;
}

.NavMobile2v304 .navbar-content {
    padding: 10px 20px;
}

@media screen and (max-width: 1100px) {
    #NavMobile2304_ad206a007f7035ebe15b9be109be08fa12 .mobile-nav {
        text-align: right;
    }
}

/* Container global */
.mobile-nav-default,
.mobile-nav-expand {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

/* Icône burger par défaut */
.mobile-nav-default svg {
    width: 24px;
    height: 24px;
    color: #333;
}

/* Style général du menu quand il est affiché */
.mobile-nav-expand .navbar {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: slideIn 0.3s ease forwards;
}

/* Animation slide-in */
@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Header du menu avec croix */
.navbar-header {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.navbar-right svg {
    width: 23px;
    height: 23px;
    cursor: pointer;
    color: #333;
    transition: transform 0.2s ease;
}

.navbar-right svg:hover {
    transform: rotate(90deg);
}

/* Liste principale */
.navbar-content {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Entrée principale */
.navbar-main {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.navbar-main__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.navbar-main__title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.navbar-main__arrow svg {
    transition: transform 0.3s ease;
}

/* Sous-menu */
.navbar-sub {
    margin-top: 10px;
    padding-left: 15px;
}

.navbar-sub__item {
    margin: 8px 0;
}

.navbar-sub__item a {
    color: #555;
    text-decoration: none;
    font-size: 16px;
}

.navbar-sub__item a:hover {
    text-decoration: underline;
}