/* App loader */
#app-loader {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--primary-dark) !important;
    box-sizing: border-box;
    transition: opacity 0.25s ease-out, visibility 0.25s ease-out;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    text-align: center;
}

.loader img {
    width: 50px; /* Define a largura da imagem */
    height: 50px; /* Define a altura da imagem */
  }

.loader-text {
    color: #fff;
    font-weight: 700;
    letter-spacing: .25px;
}
