﻿#menu {
    background-color: #343957;
    position: fixed;
    top: 0px;
    left: -248px;
    width: 250px;
    height: 100%;
    z-index: 9999;
    overflow-x: hidden;
    overflow-y: auto; /* Permite a rolagem vertical */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: left 400ms ease-in-out;
    transition: left 400ms ease-in-out;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.50);
    padding: 1em;/*
    background-image: url('/img/bg.jpg');
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;*/
    
}

/*definir o estilo da barra de scroll do #menu */
    #menu::-webkit-scrollbar {
        width: 1px;
    }

#menu.open {
    left: 0;
}

#menu li {
    padding: 0;
    display: block;
    text-align: left;
    justify-content: center;
}

    #menu li.label {
        margin-top: 1em;
    }

#menu li a {
    padding: 0.8em;
    display: block;
    margin: 0;
}

#menu li:hover:not(.label), #menu li.active {
    background: linear-gradient(to right, #5772FE, #6D85FB);
}

#menu li:hover:not(.label) > a, #menu li.active > a {
    color: #ffffff;
}

#menu i {
    padding-right: 1em;
}

#menu li a {
    text-decoration: none;
    color: #BDBDC7;
}

.header {
    margin-left:0px !important;
}

.content-wrap {
    overflow-x:hidden;
    overflow-y: auto; /* Permite a rolagem vertical na área de conteúdo */
    margin-left: 0px;
    width: -webkit-calc(100% - 4px);
    width: -moz-calc(100% - 4px);
    width: calc(100% - 4px);
    height: 100%;
}
