
/*  
/*  /*  -------- début de style ---------    
/*                 loader GIF
/*      ==================================    */
/*  #preloader{
/*  background: rgba(0,0,0,0) url(../../Image/loader_gris_fondu.gif) no-repeat center center;
/*  background-size: 50%;
/*  height: 100vh;
/*  width: 100%;
/*  position: fixed;
/*  z-index: 10
/*  }
/*  

/*  -------- début de style ---------    
               loader pure CSS
https://codepen.io/WebSonata/pen/bRaONB
    ==================================    */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999999999;
    cursor: wait;
    background-color: rgba(0, 0, 0, 1); /* Ajoute un fond semi-transparent */
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 6px solid transparent;
    border-top-color: rgb(74,85,79);
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    z-index: 999999999999999;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 6px solid transparent;
    border-top-color: rgb(1,150,66);
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
    z-index: 999999999999999;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 6px solid transparent;
    border-top-color: rgb(15,70,49);
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
    z-index: 999999999999999;
}

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

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

