/* https://bbbootstrap.com/snippets/bootstrap-5-sidebar-menu-toggle-button-34132202# */

@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");
:root {
    --header-height: 5rem;
    --header-color: #3D5879;
    --nav-width: 68px;
    --menu-color: #193069;
    --menu-color-light: #AFA5D9;
    --white-color: #F7F6FB;
    --body-font: 'Nunito', sans-serif;
    --normal-font-size: 1rem;
    --z-fixed: 100
}

*,
::before,
::after {
    box-sizing: border-box
}

a {
    text-decoration: none
}

.header {
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background-color: var(--white-color);
    z-index: var(--z-fixed);
    transition: .5s;
    /* border-bottom: .15rem solid #E3E3E7; */
}

.header:before {
    content: "";
    position: absolute;
    /* left    : calc(var(--nav-width) + 2rem); */
    bottom: 0;
    height: 1px;
    width: calc( 100vw - calc( 2 * var(--nav-width)) - 1rem);
    /*calc( calc(100vw - (2*var(--nav-width)rem))         );   ;  /* or 100px */
    border-bottom: .15rem solid #E3E3E7;
    transition: .5s;
}

.header_toggle {
    color: var(--menu-color);
    font-size: 1.5rem;
    cursor: pointer
}

.header_img {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden
}

.header_img img {
    width: 40px
}

.header_logo {
    width: 152px;
    height: 40px;
}

.l-navbar {
    position: fixed;
    top: 0;
    left: -30%;
    width: var(--nav-width);
    height: 100%;
    padding: .5rem 1rem 0 0;
    transition: .5s;
    z-index: var(--z-fixed)
}

.fundoMenuLateral {
    background-color: #e63211;
}

.l-navbar .nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    width: 107%;
}

.nav_logo,
.nav_link {
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    column-gap: 1rem;
    padding: .5rem 0 .5rem 1rem;
    font-size: 0.9rem;
}

.nav_logo {
    margin-bottom: 0.9rem;
    cursor: pointer
}

.nav_logo-icon {
    font-size: 1.25rem;
    color: var(--white-color) !important;
}

.nav_logo-name {
    color: var(--white-color);
    font-weight: 700
}

.nav_link {
    position: relative;
    color: #ffffff;
    margin-bottom: 0.75rem;
    transition: .3s
}

ol,
ul {
    padding-left: 0rem!important;
    margin-bottom: 0rem!important;
}

.nav_list li {
    list-style-type: none;
}

.nav_link:hover {
    color: var(--white-color)
}

.nav_icon {
    font-size: 1.25rem
}

.l-navbar.show {
    left: 0
}

.body-pd {
    padding-left: calc(var(--nav-width) + 1rem)
}

.nav_list .fundoMenuLateralActive {
    color: var(--white-color);
    font-weight: 600;
    background-color: #c92a0d;
}

.nav_list .activemicrolins {
    color: var(--white-color);
    font-weight: 600;
    background-color: #051848;
}

.nav_list .activeensinamais {
    color: var(--white-color);
    font-weight: 600;
    background-color: #0186c2;
}

.nav_list .activepeople {
    color: var(--white-color);
    font-weight: 600;
    background-color: #35025a;
}

.nav_list .activesos {
    color: var(--white-color);
    font-weight: 600;
    background-color: #319a48;
}

.nav_list .activeprepara::before {
    content: '';
    position: absolute;
    left: 0;
    width: 2px;
    height: 32px;
    background-color: var(--white-color)
}

.nav_list .activemicrolins::before {
    content: '';
    position: absolute;
    left: 0;
    width: 2px;
    height: 32px;
    background-color: var(--white-color)
}

.nav_list .activepeople::before {
    content: '';
    position: absolute;
    left: 0;
    width: 2px;
    height: 32px;
    background-color: var(--white-color)
}

.nav_list .activesos::before {
    content: '';
    position: absolute;
    left: 0;
    width: 2px;
    height: 32px;
    background-color: var(--white-color)
}

.nav_list .activeensinamais::before {
    content: '';
    position: absolute;
    left: 0;
    width: 2px;
    height: 32px;
    background-color: var(--white-color)
}

.height-100 {
    height: 100vh
}

@media screen and (min-width: 768px) {
    body {
        /* margin: calc(var(--header-height) + 0rem) 0 0 0;
        padding-left: calc(var(--nav-width) + 2rem) */
    }
    .header {
        height: calc(var(--header-height) + 0rem);
        padding: 0 2rem 0 calc(var(--nav-width) + 2rem)
    }
    .header_img {
        width: 40px;
        height: 40px
    }
    .header_img img {
        width: 45px
    }
    .l-navbar {
        left: 0;
        padding: 1rem 1.5rem 0 0
    }
    .l-navbar.show {
        width: calc(var(--nav-width) + 156px)
    }
    .body-pd {
        padding-left: calc(var(--nav-width) + 150px)
    }
}

@media screen and (max-width: 768px) {
    .header_toggle {
        float: left;
    }
    .header_logo {
        width: 200px;
        margin: auto;
        padding-left: 30px;
    }
}

.nav_list i {
    font-size: 1.5rem;
    /* color: #4976EE */
}

.microlinsFundo i {
    color: #4976EE;
}

.preparaFundo i {
    /* color: #C7051C; */
}

.ensinaFundo i {
    /* color: #6fff8f; */
}

.peopleFundo i {
    color: #c26dff;
}

.microlinsFundo .nav_link {
    color: #e1e1e1;
}

.preparaFundo .nav_link {
    color: #e1e1e1;
}

.ensinaFundo .nav_link {
    color: #e1e1e1;
}

.peopleFundo .nav_link {
    color: #e1e1e1;
}

.preparaFundo .nav_link:hover {
    color: var(--white-color)
}

.microlinsFundo .nav_link:hover {
    color: var(--white-color)
}

.peopleFundo .nav_link:hover {
    color: var(--white-color)
}

.ensinaFundo .nav_link:hover {
    color: var(--white-color)
}

.header a {
    color: var(--header-color)
}

.header .dropdown a span {
    font-size: 1.2rem;
}

@media screen and (min-width: 1500px) {
    .header_menu {
        padding-left: 120px;
    }
}

.dropdown-menu {
    border-radius: 10px;
    padding: 0px !important;
}

.dropdown-menu li a {
    padding: 15px;
    color: #343434;
}

.dropdown-menu li a:hover,
.dropdown-menu li a.ativo {
    font-weight: bolder;
    background-color: #FAFBFC;
    border-left: 4px solid #6A8DEB;
    padding-left: 11px;
}

.dropdown-menu li:first-child a:hover {
    border-top-left-radius: 5px;
    border-top-right-radius: 10px;
}

.dropdown-menu li:last-child a:hover {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 10px;
}

.dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid #CFD1DC;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888888d6;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}