#menuGauche {
    --buttonHeight: 60px;
    position: fixed;
    left: 0px;
    top: calc(var(--tailleMenuTop) + 10px);
    z-index: 600 !important;
    background-color: var(--couleurGris);
    box-shadow: none;
    overflow: hidden;
    width: var(--tailleMenuLeft);
    transition: 0.3s;
    text-align: left;
    transition: 0.3s linear;
    border-top-right-radius: var(--borderRadius);
    border-bottom-right-radius: var(--borderRadius);
    color: var(--couleurAppli);
    max-height: calc(100% - var(--tailleMenuTop) - 20px);
    overflow-y: auto;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox, Safari 18.2+, Chromium 121+ */
}

#menuGauche::-webkit-scrollbar { 
    display: none;  /* Older Safari and Chromium */
}
#menuGauche.open,
#menuGauche:hover {
    width: 300px;
}


#menuGauche table {
    width: 100%;
}

.menu_gauche {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    height: var(--buttonHeight);
    line-height: var(--buttonHeight);
    transition: 0.3s;
    border-top-right-radius: var(--borderRadius);
    border-bottom-right-radius: var(--borderRadius);
    align-items: center;
    text-decoration: none;
}

#menuGauche .menu_gauche_div
{
    cursor: pointer;
}

#menuGauche tr.menu_gauche_div .menu_gauche::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 56px;
    height: 1px;
    background: #000;
    transform: translateX(7px);
}
#menuGauche tr.menu_gauche_div:nth-last-of-type(1) .menu_gauche::after {
    content: unset;
    display: none;
}

.menu_gauche.selected {
    background: var(--couleurHighlight);
    color: white;
}
.menu_gauche.selected .picto::after {
    background: white;
    color: var(--couleurHighlight);
}
.menu_gauche:hover {
    background: var(--couleurHighlightClair);
    border-radius: 0px;
}

.menu_gauche .picto
{
    width: var(--tailleMenuLeft);
    height: 100%;;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}
.menu_gauche .picto[class*="lien"]
{
    width: var(--tailleMenuLeft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    opacity: .5;
}
.menu_gauche.selected .picto,
.menu_gauche:hover .picto {
    opacity: 1
}

.menu_gauche .lien {
    width: 225px;
    text-align: left;
    text-decoration: none !important;
    display: none;
    line-height: 1em;
}

#menuGauche.open .lien,
#menuGauche:hover .lien {
    display: block;
}
.menu_gauche:hover {
    text-decoration: none;
}

/* Menu 2 étages */
.menu_container .menu_content {
    display: none;
    box-shadow:  inset 0px 11px 8px -10px rgba(0,0,0,.2), inset 0px -11px 8px -10px rgba(0,0,0,.2); 
}
.menu_gauche .lien {
    padding-right: 20px;
}
.menu_gauche .caret_down_categorie {
    display: none;
    position: absolute;
    right: 10px;
    transition: all .3s ease-in-out;
    transform: scaleY(1);
}
#menuGauche.open .menu_gauche .caret_down_categorie,
#menuGauche:hover .menu_gauche .caret_down_categorie {
    display: block;
}