/* Center the loader */
#pageLoader{
  z-index: 1111111;
  top:0;
  left:0;
  position: absolute;
  background-color:rgba(0,0,0,0.95);
  height:100vh;
  width: 100vw;
}
#pageLoaderSpin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -59px 0 0 -59px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #283945;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
#pageLoaderText {
  position: absolute;
  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); }
}
