/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 04 2026 | 15:47:47 */
/* Ajouter votre code CSS ici.
                     
Par exemple:
.exemple {
    color: red;
}

Pour améliorer vos connaissances en CSS, visitez http://www.w3schools.com/css/css_syntax.asp

Fin du commentaire */ 

/* Style du Loader */
/* Style du loader plein écran */
#full-page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95); /* Fond blanc légèrement transparent */
    z-index: 9999; /* Par-dessus tout le reste */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #1B5E20; /* Votre vert */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin-full 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin-full {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Cacher le loader quand on ajoute la classe .loaded */
#full-page-loader.hidden {
    display: none;
}
