/* Lubrax+ System UI | Loader | v1.0.1 */
/* Animação de carregamento e processamento */

.loader {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    background-color: rgba(0, 0, 0, 0.8);
}

.loader .speaker {
    width: 50%;
    margin-top: 32px;
    color: #fff;
    text-align: center;
    font-size: 20px;
}

.loader .spinner {
    width: 160px;
    height: 160px;
    margin-bottom: 32px;
    border: 24px solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    box-shadow: 0px 0px 16px 8px rgba(255 ,255 ,255 ,0.25);
    animation: spin 1s infinite linear;
}

@keyframes spin {
    0%    { transform: rotate(0deg); }
    100%  { transform: rotate(360deg); }
}
