

#preloader {

  height: 100%;

  left: 0;

  position: absolute;

  top: 0;

  width: 100%;

  z-index: 1000;

  /*background-color: #333;*/

}



#preloader #preloader-inner {

    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #000;
    border-left-color: #91ad30;
    animation: spin 2s linear infinite;
    border-right-color: #a31919;
    border-bottom-color: #000;

}



#preloader #preloader-inner:before {

 content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;    
    animation: spin 3s linear infinite;

}



#preloader #preloader-inner:after {

  content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;   
    animation: spin 1.5s linear infinite;

}

@keyframes 

spin { 0% {

transform:rotate(0deg)

}



to { transform: rotate(1turn) }

}





#change-loader {

  height: 100%;

  left: 0;

  position: absolute;

  top: 0;

  width: 100%;

  z-index: 1000;

  background-color: rgba(255,255,255,0.95);

}
#change-loader #change-loader-inner {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #000;
    border-left-color: #91ad30;
    animation: spin 2s linear infinite;
    border-right-color: #a31919;
    border-bottom-color: #000;
}
#change-loader #change-loader-inner:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;    
    animation: spin 3s linear infinite;
}
#change-loader #change-loader-inner:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;    
    animation: spin 1.5s linear infinite;
}




@keyframes 

spin { 0% {

transform:rotate(0deg)

}



to { transform: rotate(1turn) }

}

