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

#bgModalMenu.active{
    display: block;
}




#modalMenu{
    position: fixed;
    top: 0;
    min-width: 300px;
    left: calc(100% + 300px);
    /* width: 50%; */
    height: 100%;
    /* background-color: #00321a; */
    background-color: #00321ae8;
    
    z-index: 1001;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0px;
    transition: all ease .2s;
    display: flex;
    border-radius: 0;
}

@media (max-width: 500px){
    #modalMenu{
        width: 100%;
        left: 0px !important;
        border-radius: 0;
    }
}

#modalMenu.active{
    left: calc(100% - 300px);
}

#modalMenu header {
    padding: 12px 16px;
    display: flex;
    width: 100%;
    flex-direction: column;
    background-color: #00321a;

}

#nome_and_close_modal_menu{
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
}

#nome_and_close_modal_menu #identidade_visual_sidebar
{
    height: 55px;
}

#nome_and_close_modal_menu span{
    width: 36px;
    height: 36px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    
}

#nome_and_close_modal_menu span i 
{
    color: #00321a;
    font-size: 1rem;
}

#contentImagensMenu{
    width: 100%;
    display: flex;
    justify-content: center;
}

#contentImagensMenu img{
    margin: 10px;
}

#modalMenu nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 8px;
    padding-left: 0px;
    /* max-height: calc(100vh - 180px); */
    overflow-y: scroll;
}

/* Scrollbar para navegadores WebKit (Chrome, Edge, etc) */
#modalMenu nav::-webkit-scrollbar {
    width: 6px;               /* largura fina */
    background-color: transparent; /* sem fundo da barra */
}

#modalMenu nav::-webkit-scrollbar-thumb {
    background-color: white;   /* cor do mostrador da barra */
    border-radius: 3px;
    border: none;
}

#modalMenu nav::-webkit-scrollbar-button {
    display: none; /* remove as setas */
}

/* Scrollbar para Firefox */
#modalMenu nav {
    scrollbar-width: thin;          /* deixa fino */
    scrollbar-color: white transparent; /* mostrador branco, trilho transparente */
}


#modalMenu nav a{
    margin: 8px 0;
    padding: 10px 18px;

    /* color: var(--color-primary-darken-02); */
    color: white;
    display: inline-flex;
    align-items: center;
}
#modalMenu nav a:hover:before {
    content: '';
    position: absolute;
    display: none;
    width: 5px;
    height: 49px;
    background-color: var(--verde-claro);
    margin-top: 0px;
    margin-left: -22px;
    border-radius: 8px;
}


#modalMenu nav a i{
    margin-right: 12px;
}

#modalMenu nav a:hover {
    background-color: var(--verde-claro);
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
}
/* 
#modalMenu nav a:hover::before {
    content: '';
    position: absolute;
    display: block;
    width: 3px;
    height: 32px;
    background-color: var(--verde-claro);
    margin-top: -8px;
    margin-left: -12px;
} */
/* 
#modalMenu nav a.active::before
{
    content: '';
    position: absolute;
    display: block;
    width: 3px;
    height: 32px;
    background-color: var(--verde-claro);
    margin-top: -8px;
    margin-left: -12px;
} */

#modalMenu nav a.active 
{
    color: var(--verde-claro);

}

#content_botao_barra_lateral_para_sair
{
    height: 60px;
    width: 100%;
    padding: 12px 16px;

}
#encerrar_sessao, #botao_login_lateral, #botao_login_header
{
    width: 100%;
    height: 44px;
    
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid white;
    background-color: #00321a;
    color: #F2F2F2;
}

#botao_login_header.header
{
    width: 130px;
    background-color: transparent;
}

#encerrar_sessao:hover, #botao_login_header:hover, #botao_login_lateral:hover
{
    background-color: #F2F2F2;
    color: #00321a;
    
}

#encerrar_sessao p, #botao_login_header  p, #botao_login_lateral p
{
    margin-left: 8px;
    font-size: 16px;
    font-weight: 500;
}