/* PUBLIC/ASSETS/CSS/COMPONENTS/REFRESH-SPLASH.CSS */
/*====== Splash que representa o efeito de um Refresh de tempo de carregamento ======= */

.refresh-splash-overlay {
    position:fixed;
    inset:0;
    background:rgba(255,255,255,.20);
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:center;
}

.refresh-splash-overlay.d-none {
    display: none !important;
}

.refresh-splash-box {
    width:64px;
    height:64px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity: 0.8;
}

.refresh-splash-spin {
    font-size:1.8rem;
    color:#0d6efd;
    animation:refreshSpin .7s linear infinite;
}

@keyframes refreshSpin{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

/*===================================================================== */
