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;
}
.data_user{
    display: flex;
    flex-direction: column;
    background: cornflowerblue;
    color: aliceblue;
    padding: 9px;
    border-radius: 5px;
}
.menuBottom{
    height: calc(45px);
    width: -webkit-fill-available;
    background: rgb(255, 255, 255);
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 0 2px 0 #00000094;
}
.menuBottom button{
    background:#8686ff;
    border-radius: 50%;
    border: 3px solid rgb(195, 225, 252);
    padding: 5px;
    color: aliceblue;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    position: relative;
    margin-top: -2rem;
    scale: 1.4;
    flex-direction: column;
    width: 50px;
    height: 50px;
}
.menuBottom button:hover{
    color: aliceblue;
    text-shadow: 0 0 8px white;
    box-shadow: 0 0 5px 1px #8686ff;
    margin-top: -3rem;
    cursor: pointer;
}
.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: 45px;
    width: -webkit-fill-available;
    background: #ffffff;
    color: rgb(45, 45, 45);
}


.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;
    min-width: fit-content;
}
.contente_img img{
    width: 2rem;
}

.main{
    height: calc(100vh - 98px);
    padding: 4px;
    background: white;
    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;
}
.tp .material-symbols-outlined{
    margin-left: 5px;
}
.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;
}
.subBottom{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #8686ff;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    width: 56px;
}
.subBottom:hover{
    background: #8686ff;
    color: aliceblue;
}
@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;
    }
}
