/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 1 giu 2023, 14:16:21
    Author     : marco
*/

/* Stile per l'animazione di caricamento */
#site-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff; /* Sostituisci con il colore di sfondo desiderato */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#site-loading-spinner {
    animation: spin 1s infinite linear; /* Durata e tipo di animazione */
    border: 4px solid #ccc; /* Sostituisci con il colore del bordo desiderato */
    border-top-color: #333; /* Sostituisci con il colore del bordo superiore desiderato */
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

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