.space{
    margin-left: 35px;
}

.aba_inicial{
    position: relative;
    margin-top: 48px;
    text-align: center;
}

.aba_space{
    position: relative;
    margin-top: 35px;
    text-align: center;
}

.card_cima{
    margin-left: 50%;
    width: 50%;
    height: 50%;
    position: absolute;
}

.card_baixo{
    margin-left: 50%;
    top: 50%;
    bottom: 0%;
    width: 50%;
    position: absolute;
    overflow: scroll;
}

.card_grafico{
    margin-left: 50%;
    width: 50%;
    height: 55%;
    position: absolute;
}

.card_tabela{
    margin-left: 50%;
    top: 55%;
    bottom: 0%;
    width: 50%;
    position: absolute;
    overflow: scroll;
}

.viewer{
    height: 100%;
    width: 50%;
    position: relative;
}

.legenda{
    position: absolute;
    bottom: 0;
}

.tabela_consumo{
    overflow-x: auto;
    overflow-y: auto;
}

#tabela{
    cursor: pointer;
}

.caixa_selecao{
    text-align: center;
    text-align-last: center;
}

#card_titulo{
    height: 27px;
}

#div_canvas{
    overflow-x: auto;
    overflow-y: auto;
    height: 100%;
    width: 100%;
}

.card_login, .card_mudarSenha{
	align-items: center;
    justify-content: center;
    position: absolute;
    margin-top: 30px;
    margin-left: 25%;
}
.card_login__content, .card_mudarSenha__content {
	padding: 24px;
	flex: none;
}

.tirar_maiusculas {
    text-transform: none;
}

#inputLoja::-webkit-calendar-picker-indicator {
    display: none;  /*Remove a setinha padrao do datalist*/
}

#barra_carregou{
    margin-top: 11px;
    width: 100%; 
    height: 4px;
    border-style: solid;
    border-color: red;
    background-color: red;
    position: absolute;
}

.animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
}
  
@-webkit-keyframes animatezoom {
    from {-webkit-transform: scale(0)}
    to {-webkit-transform: scale(1)}
}
  
@keyframes animatezoom {
    from {transform: scale(0)}
    to {transform: scale(1)}
}

#materialLoading{
    font-family:roboto;
    color: #1e88e5;
    position:fixed;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    display:table;
    z-index:1000;
}
#materialLoadingCentered{
    display:table-cell;
    vertical-align:middle;
    padding: 20px;
}
#materialLoadingContent{
    text-align: center;
}
#materialLoading.hide{
    opacity:0;
    transition:opacity 0.2s ease-out;
    pointer-events:none;
}
#materialLoading.hide #materialLoadingCentered{
    transform:scale(0.8);
    transition:transform 0.2s ease-out;
}
#materialLoading.show{
    opacity:1;
    transition:opacity 0.2s ease-in;
}
#materialLoading.show #materialLoadingCentered{
    transform:scale(1);
    transition:transform 0.2s ease-in;
}