#flash {
  display: none;
}
#blackout {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 998;
  background-color: rgba(49, 37, 37, 0.5);
}
#loader {
  position: absolute;
  left: 50%;
  top: 45%;
  z-index: 9999;
  margin: -75px 0 0 -75px;
  border: 16px solid white;
  border-radius: 50% !important;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  box-sizing: border-box;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#loader-message {
  display: none;
  position: absolute;
  left: 41.5%;
  top: 51%;
  z-index: 9999;
  width: 300px;
  text-align: center;
  font-weight: bold;
}
