/*          LEFT MENU           */
#leftMenuExtendedSection {
    position: fixed;
    left: 0;
    height: 100%;
    width: 100%;
}
#leftMenuExtendedBackground {
    position: fixed;
    left: 250px;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: 0.5;
}
section#leftMenuExtended {
    position: fixed;
    left: 0;
    height: 100%;
    width: 250px;
    background-color: white;
    opacity: 1;
    z-index: 10;
}
section#leftMenuFixed {
    /*height: 90%;*/
    width: 70px;
    display: flex;
    margin: 100px 0 0 0;
    border-right: 1px solid lightgray;
}
:is(section#leftMenuFixed, section#leftMenuExtended) i.leftMenuIcon {
    padding: 10px;
    font-size: 2em;
    cursor: pointer;
    height: fit-content;
}
section#leftMenuFixed i.leftMenuIcon {
    margin: 0 auto 20px;
}
section#leftMenuExtended i.leftMenuIcon {
    margin: 100px auto 20px;
    padding-left: 20px;
}
.hidden {
    display: none;
}
section#leftMenuExtendedExtraOptions {
    position: fixed;
    bottom: 0;
    width: auto;
}
:is(section#leftMenuExtendedOptions, section#leftMenuExtendedExtraOptions) div {
    margin: 0;
    border-radius: initial;
    text-align: initial;
    align-items: center;
    cursor: pointer;
    display: flex;
}
:is(section#leftMenuExtendedOptions, section#leftMenuExtendedExtraOptions) i {
    font-size: 1.5em;
    width: fit-content;
    margin: auto 20px auto;
}
:is(section#leftMenuExtendedOptions, section#leftMenuExtendedExtraOptions) a {
    text-decoration: none !important;
}
