@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    line-height:initial;
}

:root {
    --sombra: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    --clarinho: #f2f2f2;
    --cor-principal: #6691b9;
    --cor-principal-hover: #4072a0;
    --marrom: #644b37;
}

#main-site,
#main-app {
    min-height: 460px;
}

.show-sidebar {
    left: 0!important;
}

#main-app {
    position: relative;
}

.bg-principal {
    background: var(--cor-principal)!important;
}

.bg-clarinho {
    background: var(--clarinho)!important;
}

.bg-primary {
    background-color: var(--cor-principal)!important;
}

.list-group-item.active{
    background-color: var(--cor-principal)!important;
    border-color: var(--cor-principal)!important;
}

.texto-branco, .texto-branco a {
    color: #fff!important;
}

.icone-cinza {
    fill: #9ca3af;
}

.icone-branco {
    fill: #fff;
}

.font-bold {
    font-weight: bold;
}

.btn-primary {
    background: var(--cor-principal)!important;   
    border-color: var(--cor-principal)!important;   
}

.btn-primary:hover {
    background: var(--cor-principal-hover)!important;   
}

h1, h2, h3, h4, h5, h6 {
    margin: 0!important;
}

header a {
    color: #9ca3af;
}

footer li {
    list-style-type: none;
}

footer ul {
    padding-left: 0;
}

footer a, header a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.rounded-md {
    border-radius: 0.375rem;
}

.no-wrap-btn {
    white-space: nowrap!important;
}

.nav-link {
    font-weight: 500!important;
}

.nav-link.active {
    background-color: #dddfe4!important;
}

.nav-link:hover {
    background-color: #dddfe4!important;
}

.bg-light {
    background: #eeeff3!important;
}

#header-site {
    border-bottom: 1px solid #dfdfdf ;
}

.menu-item-box {
    border-radius: 5px;
    padding: 1rem;
    margin: 0.3rem;
    background-color: #f2f2f2;
    height: 10rem;
    text-decoration: none;
    color: #000;
    cursor: pointer;
    width: 47%;
}

.menu-item-box:hover
{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.menu-item-box span {
    font-size: 0.8em;
    color: #d15418;
    text-decoration: none;
}

.titulo-menu {
    font-size: 1.1rem;
    font-weight: bold;
}

.icone-home {
    width: 3rem;
    height: 3rem;
}

.menu-item-box:hover .icone-home {
    transition: ease all .3s;
    width: 3.3rem;
    height: 3.3rem;
}

.cursor-pointer {
    cursor: pointer!important;
}

#sidebar-app {
    margin: 0;
    padding: 0;
    width: 250px;
    height: 100%;
    background-color: #eeeff3;
    position: fixed;
    height: 100%;
    overflow: auto;
    top: 0;
    left: -280px;
    z-index: 999;
    transition: left 0.3s ease;
}

.tabela {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.tabela thead tr th{
    background-color: var(--cor-principal)!important;
    color: #fff;
}

.tabela tbody {
    font-size: 0.9rem;
}

.item-basico {
    border-radius: 0.5rem;
    background: var(--clarinho);
    text-align: center;
    padding: 1rem 2rem;
    color: #000;
}

.link-conteudo {
    text-decoration: none;
}

.item-conteudo {
    border-radius: 0.5rem;
    background: var(--clarinho);
    text-align: center;
    height: 100%;
    width: 100%;
}

.item-conteudo:hover, .item-basico:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.item-conteudo h3, .item-basico h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.4rem!important;
}

.item-conteudo span, .item-basico span {
    font-size: 0.7rem;
    color: rgb(234, 88, 12);
}

@media (min-width: 767px) {
    .padding-left-250 {
        padding-left: 250px;
    }

    .menu-item-box {
        width: auto;
    }

    #sidebar-app {
        position: absolute;
        left: 0;
    }
}