#appLoader {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 10001;
    opacity: 1;

    transition: opacity 600ms ease-out;
    background-color: #1F2123;


    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#appLoader .loader-msg {
    color: #FFFFFF;
}

@keyframes hideshow {
    0% { opacity: 1; }
    50% { opacity: 0.9; }
    80% {opacity: 0.1}
    100% { opacity: 0; }
}

#appLoader .uno {
    animation: hideshow 1s ease-out infinite;
}

#appLoader .dos {
    opacity: 0;
    animation: hideshow 1s 0.2s ease-out infinite;
}

#appLoader .tres {
    opacity: 0;
    animation: hideshow 1s 0.4s ease-out infinite;
}
