/*main body of the display*/
.main-item{
    width : 80vw;
    height: 75vh;
    margin: 7vh auto 0;
}

/*the display of one consumption*/
.data-container{
    border-radius : 40px;
    padding : 10px;
    width : 100%;
    height : 100%;
    display : none;
}

/*class used to toggle display of one consumption*/
.data-container-shown{
    display: flex;
    flex-direction: column;
}

/*top bar
#top-bar{
    width : 100%;
    height : 8vh;
    max-height : 100px;
    background: aqua;
}
*/

/*main title in a consumption's display*/
.div-title{
    text-align: center;
}

/*All the data in a consumption's display*/
.data{
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items : center;
}

/*container of one chart*/
.chart-container{
    display:block;
    aspect-ratio: 1/1;
    width: 400px
}

.consumption-widget{
    font-size: 1.2em;
}

.important-info{
    font-size: 1.7em;
}

.widgets{
    height: 100%;
    max-width: 30%;
    display : flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
}

.tip > i{
    font-size: 1.5em;
}

.tip{
    font-size: 1.3em;
    text-align: center;
    padding-top: 30px ;
    padding-bottom: 30px ;
}


#top-bar{
    display: flex;
    justify-content: space-around;
    align-content: center;
}

#top-bar > div{
padding-top: 20px;
}