/* Center the loader */

#phpLoader {
  z-index: 1111111;
  top: 0;
  left: 0;
  position: fixed;
  /*background-image: linear-gradient(to right, #27251F 0%, #27251F 19%, #27251F 60%, #27251F 100%);*/
  background-color: rgba(0,0,0,0.8);
  height: 100vh;
  width: 100vw;
}

#phpLoaderLogo {
  width: 100px;
  height: 100px;
  background: black;
  margin-bottom: 10px;
  transition: .12s;
  -webkit-mask: url(/img/loader.svg) no-repeat top center;
  mask: url(/img/loader.svg) no-repeat top center;
  -webkit-animation: rengarenk 1.5s ease-in infinite;
  animation: rengarenk 1.5s ease-in infinite;
}

@keyframes rengarenk {
  0% {
    background: #27251F;
  }
  25% {
    background: #ECCE63;
  }
  50% {
    background: #ECCE63;
  }
  100% {
    background: #27251F;
  }
}

@-webkit-keyframes rengarenk {
  0% {
    background: #27251F;
  }
  25% {
    background: #ECCE63;
  }
  50% {
    background: #ECCE63;
  }
  100% {
    background: #27251F;
  }
}

#phpLoaderContainer {
  position: fixed;
  left: 50%;
  top: 50%;
  margin: -50px 0 0 -50px;
}

#phpLoaderSpin {
  width: 50px;
  height: 50px;
  border: 5px solid #ffffff;
  border-radius: 50%;
  border-top: 5px solid #27251F;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

#phpLoaderText {
  position: fixed;
  left: 10px;
  top: 10px;
  color: white;
}

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

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