html, body {
}

#spinner {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}

#spinner.hiding {
  opacity: 0;
}

#spinner.hidden {
  display: none;
}

.three-bounce > div {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 5px;
  border-radius: 100%;
  background-color: #014C85;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out both;
  animation: bouncedelay 1.4s infinite ease-in-out both
}

.three-bounce .one {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s
}

.three-bounce .two {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s
}

@-webkit-keyframes bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0)
  }
  40% {
    -webkit-transform: scale(1)
  }
}

@keyframes bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0)
  }
  40% {
    transform: scale(1);
    -webkit-transform: scale(1)
  }
}
