html{
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    overflow: hidden;
    font-family: sans-serif;
}
.logo_portal{
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo_portal strong{
    font-size: x-large;
    margin: 1rem;
    color: #00c2c8;
    padding: 10px;
    display: flex;
    align-items: center;
    margin-top: 4rem;
}
#chartdivTr{
    width: -webkit-fill-available;
    height: 239px;
}
.myFlex .material-symbols-outlined:hover{
    cursor: pointer;
}
#loadLogin {
    margin-left: 4px;
    width: 16px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid #5256ac52;
    border-top: 3px solid;
    animation: rotation 0.4s infinite linear;
}
.warp{
    display: flex;
    width: -webkit-fill-available;
}
@keyframes rotation{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}
.myFlex{
    display: flex;
    align-items: center;
}

.top_bar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3rem;
    width: -webkit-fill-available;
    background: #8686ff;
    color: rgb(255, 255, 255);
}


.contente_img{
    width: 2rem;
    height: 2rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 1rem;
    margin-right: 1rem;
}
.contente_img img{
    width: 2rem;
}

.main{
    height: calc(100vh - 3rem);
    padding: 4px;
    background: aliceblue;
    overflow: auto;
}
.slide{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: calc(100vw - 1rem);
    overflow: auto;
    justify-content: center;
}

.tp {
    display: flex;
    align-items: center;
}
.no_data {
    display: flex;
    align-items: center;
    flex-direction: column;
    background: #5f5f5f4a;
    color: aliceblue;
    border-radius: 10px;
    padding: 1vh;
    margin: 1vh;
    width: -webkit-fill-available;
}

.form {
    margin: 1vh;
    display: flex;
    box-shadow: 0 0 3px 0 #00000052;
    width: auto;
    padding: 1rem;
    background: whitesmoke;
    animation: aumentar 0.4s;
    flex-wrap: wrap;
    flex-direction: column;
}
#chartdivDay{
    width:-webkit-fill-available;
    height: 300px;
}
#chartdivDR{
    width:-webkit-fill-available;
    height: 300px;
}
.money{
    background: #00c800;
    color: aliceblue;
    height: 78px;
    width: -webkit-fill-available;
    border-right: 10px solid gold;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 4px;
    padding-left: 2rem;
}
select{
    background: #8686ff;
    border: none;
    color: aliceblue;
    outline: none;
    font-family: 'Roboto Condensed', sans-serif;
}
@media (max-width: 800px){
    .form {
        width: -webkit-fill-available;
    }
    .slide {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    .warp {
        display: flex;
        width: -webkit-fill-available;
        flex-direction: column;
    }
    .top_bar {
        font-size: 0.6rem;
    }
}
