body.no-scroll {
     overflow: hidden;
}
 .burger-button {
     z-index: 10000;
     width: 30px;
     height: 25px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     cursor: pointer;
}
 .burger-button span {
     display: block;
     height: 5px;
     background-color: #000;
     border-radius: 2px;
}
 .burger-menu {
     position: fixed;
     top: 0;
     left: 0;
     width: 100vw;
     height: 100vh;
     background: #fff;
     z-index: 10001;
     transform: translateX(100%);
     transition: transform 0.3s ease;
     display: flex;
     flex-direction: column;
}
 .burger-menu.open {
     transform: translateX(0);
}
 .burger-menu-header {
     display: flex;
     justify-content: flex-end;
     padding: 1rem;
}
 .burger-close {
     background: none;
     border: none;
     font-size: 3rem;
     cursor: pointer;
     color: #000;
}
 .burger-nav {
     overflow-y: auto;
     flex-grow: 1;
     max-height: calc(100vh - 4rem);
}
 .burger-level {
     padding: 1rem 1.5rem;
     list-style: none;
     margin: 0;
     display: none;
}
 .burger-level-1 {
     display: block;
}
 .burger-item {
     border-bottom: 1px solid gray;
}
 .burger-title {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 10px 0;
     font-size: 0.95rem;
}
 .burger-link {
     flex-grow: 1;
     text-align: left;
     text-decoration: none;
     color: #000 !important;
     padding: 10px 16px;
     display: block;
     font-size: 1.5rem;
}
 .burger-link:hover {
     color: gray;
}
 .arrow-toggle {
     background: none;
     border: none;
     cursor: pointer;
     font-size: 0.9rem;
     transform: rotate(0deg);
     transition: transform 0.3s ease;
     color: gray;
     margin-left: 0.5rem;
}
 .arrow-toggle:focus{
     outline:none;
}
 .arrow-toggle.open {
     transform: rotate(180deg);
}
 .burger-level-2, .burger-level-3, .burger-level-4 {
     padding-left: 0.75rem;
     border-left: 2px solid white;
     background: rgba(0, 0, 0, 0.05);
}
 @media (max-height: 600px) {
     .burger-title {
         padding: 8px 0;
         font-size: 0.9rem;
    }
     .burger-link {
         padding: 8px 16px;
    }
}

.cse-mobile {
    padding: 1rem 1.5rem;
    position: absolute;
    text-align: center;
    bottom: 15px;
    width: 100%;
}
.cse-mobile a {
    background: #000;
    color: #fff !important;
    padding: 10px;
    width: 100%;
    display: block;
}

#burger-button {
    display: none;
}

@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
    /* Styles pour cette Media Queries */

    #burger-button {
        display: flex;
    }

}
