#menu_burger_open {
    position: fixed;
    display: flex;
    z-index: 1100;
    top: 20px;
    right: 20px;
    display: none;

}

#menu_burger_close {
    position: absolute;
    display: flex;
    z-index: 1100;
    top: 20px;
    right: 20px;
    background-color: white;

}

.menu_burger {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 36px;
    height: 36px;
    min-height: 36px;
    min-width: 36px;
    border-radius: 100%;
    display: none;
}


.menu_burger svg {
    width: 24px;
    height: auto;
}


#menu_overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;

}

#menu {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-color: #023E84;
    z-index: 1005;
    width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transform: translateX(120%);
    transition: transform 0.3s ease-in-out;
    display: none;

}

#menu #menu-header {
    width: 165px;
    height: 48px;
    background-color: var(--white);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;

}

#menu #menu-header img {
    width: 100px;
    height: auto;
}

#menu #menu-footer {
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: space-between;
    padding: 9px;
    width: 100%;

}

#menu #menu-footer .container_footer_links_list {
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    gap: 5px;
}

#menu #menu-footer .container_footer_links_list a {
    color: white
}

#menu #menu-footer .container_footer_logo {
    min-width: 96px;
    min-height: 61px
}



#menu nav ul {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}

#menu nav ul li {
    width: 100%;
}

#menu nav ul li button {
    background-color: transparent;
    box-shadow: none;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    border-radius: 10px;
    width: 320px;
    padding: 8px 8px;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;

}

#menu nav ul li .button_wrapper {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    width: 320px;
}

#menu nav ul li .button_wrapper::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #000;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: -40px;
    z-index: 10;
    top: 50%;
}

#menu nav ul li .button_wrapper::after {
    content: "";
    width: 2px;
    height: calc(100% + 10px);
    background-color: #000;
    display: inline-block;
    position: absolute;
    left: -35px;
    top: 50%;
    z-index: 9;

}

/* Seul le bullet du bouton actif est blanc */
#menu nav ul li .button_wrapper.is-active::before {
    background-color: #fff;
}

/* Bullets et lignes des consultations passees (avant la courante) = blanc */
#menu nav ul li .button_wrapper.is-passed::before {
    background-color: #fff;
}

#menu nav ul li .button_wrapper.is-passed::after {
    background-color: #fff;
}

/* Bouton actif (en cours) : fond blanc + texte sombre */
#menu nav ul li button.is-active {
    background-color: #fff;
    color: #001632;
    opacity: 1;
}

/* Boutons cliquables (completed / in-progress) : pas de fond, texte blanc */
#menu nav ul li button.is-completed {
    cursor: pointer;
    opacity: 0.8;
}

#menu nav ul li button.is-in-progress {
    cursor: pointer;
    opacity: 0.6;
}

/* Bouton disabled : pas de fond, texte blanc tres attenue */
#menu nav ul li button.is-disabled {
    cursor: not-allowed;
    opacity: 0.2;
}

#menu nav ul li:last-child .button_wrapper:after {
    height: 0%;
}

#menu.isOpen {
    transform: translateX(0);
}

#menu-reference-container {
    color: #fff;
    font-size: 8px;
    text-align: center;
    position: absolute;
    top: 0;
    right: 10px;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    pointer-events: none;


}

#menu-reference-content {
    transform: translateX(50%) rotate(-90deg);

}

#cookies-settings-mobile {
    box-shadow: none !important;
    background: transparent !important;
    color: var(--white) !important;
    border: none !important;
    cursor: pointer;
    text-decoration: underline !important;
    font-size: 9px !important;
    font-weight: 600 !important;
}

.is-mobile .menu_burger,
.is-mobile #menu,
.is-mobile #menu_burger_open {
    display: flex;
}

.is-mobile #window_profils button{
    max-width: 100%;
}

.is-mobile .window_profils_content {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
}