.loading-box{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.loading{
    width: 152px;
    height: 120px;
    background-image: url('../imagens/loading.png');
    background-size: contain;
    background-repeat: no-repeat;
    transform: none;
}

.loading-status{
    font-weight: 400; 
    font-size: 21px;
    margin-top: 65px;
}

.spinner{
    width: 120px;
    height: 120px;
    display: block;
    margin: 0 auto;
    animation: girarEmPassos 2.4s steps(12) infinite;
    transform-origin: center center;
    backface-visibility: hidden;
    will-change: transform;
}

@keyframes girarEmPassos {
  to { transform: rotate(360deg); }
}
