/* Center the loader */
.status {
  color: rgb(245,240,249);
  font-size:0.8rem;
  line-height:1;
  text-align: center;
}

#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(30, 30, 30, 1);
  height: 100vh;
  width: 100vw;
}

#phpLoaderLogo {
  width: 100px;
  height: 100px;
  background: rgba(0, 0, 0, 0.9);
  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;
}

#phpLoaderLogoBG {
  border-radius: 30px;
  padding: 40px;
  /*background-color: rgba(0, 0, 0, 0.4);*/

}



@keyframes rengarenk {
  0% {
    background: white;
  }

  25% {
    background: #ECCE63;
  }

  50% {
    background: #ECCE63;
  }

  100% {
    background: white;
  }
}

@-webkit-keyframes rengarenk {
  0% {
    background: white;
  }

  25% {
    background: #ECCE63;
  }

  50% {
    background: #ECCE63;
  }

  100% {
    background: white;
  }
}

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

#phpLoaderSpin {
  width: 50px;
  height: 50px;
  border: 5px solid #ffffff;
  border-radius: 50%;
  border-top: 5px solid rgba(0, 0, 0, 0.9);
  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);
  }
}