/* Center the loader */

#pageLoader {
  z-index: 1111111;
  top: 0;
  left: 0;
  position: fixed;
  background-color: rgb(42,110,187);
  height: 100vh;
  width: 100vw;
}

#pageLoaderLogo {
  width: 100px;
  height: 100px;
  background: black;

  transition: .12s;
  -webkit-mask: url(/img/loader.svg) no-repeat top center;
  mask: url(/img/loader.svg) no-repeat top center;
  -webkit-animation: rengarenk 2s linear infinite;
  animation: rengarenk 2s linear infinite;
}


#pageLoaderLogoBG {
  border-radius: 100%;
  padding: 50px;
  /*background-color: rgba(0, 0, 0, 0.4);*/

}

@keyframes rengarenk {
  0% {
    background: #EBE6E4;
  }

  25% {
    background: #ECCE63;
  }

  50% {
    background: #EBE6E4;
  }

  100% {
    background: #ECCE63;
  }
}

@-webkit-keyframes rengarenk {
  0% {
    background-color: #F1B922;
  }

  25% {
    background-color: #ECCE63;
  }

  50% {
    background-color: #EBE6E4;
  }

  100% {
    background-color: #ECCE63;
  }
}

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

#pageLoaderSpin {
  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;
}

#pageLoaderText {
  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);
  }
}