﻿

/*PRELOADING------------ */
#overlayer {
    width: 500%;
    height: 500%;
    position: absolute;
    z-index: 11111;
    /*background:rgba(255, 255, 255,0.8);*/ /*EPS_UIMode_CSJob_SEP2024*/
}

.dark-skin #overlayer {
    background: rgb(73 73 73 / 80%);
}

.light-skin #overlayer {
    background: rgba(255, 255, 255,0.8);
}

.loader {
  display: inline-block;
  width: 100px;
  height: 100px;
  position: absolute;
  z-index:11112;
  /*border: 4px solid #48bc59;*/
  top: 40%;
  left:50%;
  /*animation: loader 2s infinite ease;*/
}
/*.loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  z-index:11112;
  border: 4px solid #48bc59;
  top: 50%;
  left:50%;
  animation: loader 2s infinite ease;
}*/

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #48bc59;
  animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  
  25% {
    transform: rotate(180deg);
  }
  
  50% {
    transform: rotate(180deg);
  }
  
  75% {
    transform: rotate(360deg);
  }
  
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }
  
  25% {
    height: 0%;
  }
  
  50% {
    height: 100%;
  }
  
  75% {
    height: 100%;
  }
  
  100% {
    height: 0%;
  }
}