* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;

}

body {
    height: 100vh;
}

.labelRed {
    color: red;
}

.labelGreen {
    color: green;
}


.chart {
    margin-right: 100px;
    border-radius: 15px;
    background-color: azure;
    box-shadow: 2cm;
    box-shadow: 5px 5px 5px 5px rgb(4, 60, 97);
}

.tabelaChart {

    text-align: center;
    font-size: large;
    column-span: 30px;
    column-width: 280px;

}


/* table{
    column-width: 50px;
    height: auto;
    column-fill: balance;
    column-span: 10px;
    size: auto;
} */

.divNome {
    color: white;
    font-size: large;
}


thead{
    font-size: medium;
    column-width: auto;
}


.conteudo {
    margin-left: 0px;
    margin-top: 50px;
    height: 100%;
    /* width: 95%; */
    color: rgb(19, 19, 53);
    padding-left: 150px;
    transition: .5s;
    font-size: small;
}

.index {
    /* position: relative;
    height: max-content;
    align-self: center; */

    /* top: 50px; */
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    /* width: 100vw; */
}

/* .child {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} */

.tabela {
    text-align: center;
    min-width: 140px;
}

.tabela2 {
    text-align: left;
    min-width: 140px;
}

.tabelaAçoes {
    text-align: center;
    min-width: 20px;
}

div.expandir {
    width: 70%;
    transition: .5s;
}

.cabecalho {

    /* margin-left: 250px; */
    width: 100%;
    padding: 10px;
    color: white;
    background-color: rgb(23, 110, 150);
    box-shadow: 0 5px 0 0 rgb(9, 145, 236);
    z-index: 1;

    position: fixed;
    left: 0;
    top: 0;
    overflow: hidden;


}

nav.menu-lateral {
    width: 250px;
    height: 100%;
    margin-top: 105px;
    background-color: rgb(23, 110, 150);
    padding: 40px 0 40px 1%;
    /* box-shadow: 5px 0 0 rgb(9, 145, 236); */
    font-size: small;


    position: fixed;
    top: 0;
    left: 0;

    /* overflow: hidden; */
    white-space: nowrap;
    transition: .5s;
}

nav::-webkit-scrollbar{
    color: transparent;
    width: 0;
}

.meuModal {
    padding: 30px 50px;
    position: inherit;
}

nav.menu-lateral.expandir {
    width: 250px;
    transition: .5s;
    font-size: small;
    overflow: auto;

}

.btn-expandir {
    width: 100%;
    padding-left: 10px;
}

.btn-expandir>i {
    color: white;
    font-size: 24px;
    cursor: pointer;
}


ul {
    height: 100%;
    list-style-type: none;
    padding: 0;
    font-size: small;
}


ul li.item-menu:hover {
    background: white;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}


ul li.item-menu {
    transition: .3s;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}


ul li.item-menu a.ativo {
    color: black;
    background-color: white;
}


ul li.item-menu a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    padding: 10px 4%;
    display: flex;
    margin-bottom: 10px;
    line-height: 30px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}


ul li.item-menu a:hover {
    color: black;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

ul li.item-menu a .txt-link {
    margin-left: 30px;
    transition: .5s;
    opacity: 0;
    font-size: small;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

nav.menu-lateral.expandir .txt-link {
    margin-left: 20px;
    opacity: 1;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

ul li.item-menu a .icon>i {
    font-size: 20px;
    /* margin-left: 5px; */
}

.home0{
    background-color: rgb(20, 139, 143);
    color: white;
    font-weight: bold;
    font-size: 28pt;
    height: 100px;
    /* width: 500px; */
    margin: 0 -15px 20px 40px;
    text-align: center;
    align-content: center;
    border-radius: 10px;
    float: left;
}


.home1{
    background-color: rgb(192, 49, 49);
    color: white;
    font-weight: bold;
    font-size: large;
    height: 150px;
    width: 300px;
    margin: 20px 40px;
    text-align: center;
    align-content: center;
    border-radius: 10px;
}

.home2{
    background-color: rgb(26, 99, 158);
    color: white;
    font-weight: bold;
    font-size: large;
    height: 150px;
    width: 300px;
    margin: 20px 40px;
    text-align: center;
    align-content: center;
    border-radius: 10px;
}


.form-control, .form-check-input{
    border-color: grey;
}

/* Esconder a div em telas menores */
@media (max-width: 767px) {
    .divEsconder {
        display: none;
    }
}