#loading-screen {
  background-color: rgba(58, 25, 93, 0.1);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
}

#wait-screen {
  bottom: 0;
  display: none;
  height: 100px;
  position: fixed;
  right: 0;
  width: 100px;
}

.loader {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 auto;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 25%;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

/**
 *
 * All animations must live in their own file
 * in the animations directory and be included
 * here.
 *
 */
/**
 * Styles shared by multiple animations
 */
/**
 * Dots
 */
@keyframes ball-scale-multiple {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.ball-scale-multiple {
  position: relative;
  transform: translateY(-30px);
}
.ball-scale-multiple > div:nth-child(2) {
  animation-delay: -0.4s;
}
.ball-scale-multiple > div:nth-child(3) {
  animation-delay: -0.2s;
}
.ball-scale-multiple > div {
  background-color: #3a195d;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 2px;
  animation-fill-mode: both;
  position: absolute;
  left: -30px;
  top: 0px;
  opacity: 0;
  margin: 0;
  width: 60px;
  height: 60px;
  animation: ball-scale-multiple 1s 0s linear infinite;
}

#wait-message {
    display: none;
    font-size: 20px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.warp-error {
    border-top: 5px solid #564f76;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    margin: 0;
}

.warp-error #error-report {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

    .warp-error #error-report img {
        max-width: 150px;
    }

@media only screen and (max-width: 600px) {
    .warp-error #error-report img {
        max-width: 100px;
    }
}

.warp-error h1 {
    color: #3a195d !important;
    font-size: 35px !important;
    font-weight: 300 !important;
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

@media only screen and (max-width: 600px) {
    .warp-error h1 {
        font-size: 1.8em !important;
    }
}

.warp-error h2 {
    color: #746e95 !important;
    font-weight: 500 !important;
    font-size: 20px !important;
    margin-bottom: 20px !important;
}

.warp-error p {
    font-size: 20px !important;
    font-weight: 300 !important;
    color: #212121 !important;
}

@media only screen and (max-width: 600px) {
    .warp-error p {
        font-size: 16px !important;
    }
}

.warp-error .hidden {
    display: none;
}

.warp-error .text-center {
    text-align: center;
}

.testBlock {
    background-color: azure;
    height: 560px;
}