#loading-screen {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 42;
  opacity: 1;
  color: white;
}

#loading-screen p {
  font-family: Roboto Condensed, Helvetica, sans-serif;
  font-size: 27px;
}

#loading-screen .centered-container {
  margin: 0;
  position: absolute;
  width: 100%;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}

.wrapper {
  margin-top: 50px;
}

.circle {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #343e5f;
  border-radius: 0%;
  animation: loading 1.5s cubic-bezier(.8, .5, .2, 1.4) infinite;
  transform-origin: bottom center;
  position: relative;
  margin-right: 2px;
  margin-left: 2px;
}

@keyframes loading {
  0% {
    transform: translateY(0px);
    background-color: #343e5f;
  }

  50% {
    transform: translateY(50px);
    background-color: #6a77a3;
  }

  100% {
    transform: translateY(0px);
    background-color: #868da3;
  }
}

.circle-1 {
  animation-delay: 0.1s;
}

.circle-2 {
  animation-delay: 0.2s;
}

.circle-3 {
  animation-delay: 0.3s;
}

.circle-4 {
  animation-delay: 0.4s;
}

.circle-5 {
  animation-delay: 0.5s;
}
