.loading {
  display: block;
  font-weight: 300;
  letter-spacing: 0.25em;
  font-size: 1rem;
  font-family: sans-serif;
  padding-top: 12vh;
  color: #e3f6fc;
  opacity: 0.8;
  text-align: center;
}

.results-loading-container {
  width: 100%;
  padding: 30px 0px;
  margin: 0px auto;
  list-style: none;
  text-align: center;
  position: absolute;
  top: 15vh;
  transform: translateY(-50%);
}
.results-loading-container .bar {
  width: 35px;
  height: 3px;
  display: inline-block;
  margin: 5px auto;
  border-radius: 2px;
  background: #e2f6fc;
  animation: leftmove 1s infinite ease-in-out;
  animation: rightmove 1s infinite ease-in-out;
}
.results-loading-container .bar:nth-child(2) {
  animation-delay: 0.1s;
}
.results-loading-container .bar:nth-child(3) {
  animation-delay: 0.2s;
}
.results-loading-container .bar:nth-child(4) {
  animation-delay: 0.3s;
}
.results-loading-container .bar:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes leftmove {
  0% {
    transform: translate(30px);
    opacity: 0;
  }
  25% {
    transform: translate(0px);
    background: #e74c3c;
    opacity: 1;
  }
  100% {
    transform: translate(0px);
    opacity: 0;
  }
}
@keyframes softblink {
  0% {
    transform: translate(-5px);
  }
  50% {
    transform: translate(5px);
  }
  100% {
    transform: translate(-5px);
  }
}
@keyframes rightmove {
  0% {
    transform: translate(-30px);
    opacity: 0;
  }
  25% {
    transform: translate(0px);
    background: #49e8f2;
    opacity: 1;
  }
  100% {
    transform: translate(0px);
    opacity: 0;
  }
}/*# sourceMappingURL=loding.css.map */