.loading-container {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.loading-text {
  color: #0076bf;
  font-size: 14px;
}
.loading-animation {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 30px 0 20px 0;
}
.loading-dot {
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: #0076bf;
  position: absolute;
  animation: loading linear 0.8s infinite;
  -webkit-animation: loading linear 0.8s infinite;
}
.loading-dot:nth-child(1) {
  left: 24px;
  top: 2px;
  animation-delay: 0s;
}
.loading-dot:nth-child(2) {
  left: 40px;
  top: 8px;
  animation-delay: 0.1s;
}
.loading-dot:nth-child(3) {
  left: 47px;
  top: 24px;
  animation-delay: 0.1s;
}
.loading-dot:nth-child(4) {
  left: 40px;
  top: 40px;
  animation-delay: 0.2s;
}
.loading-dot:nth-child(5) {
  left: 24px;
  top: 47px;
  animation-delay: 0.4s;
}
.loading-dot:nth-child(6) {
  left: 8px;
  top: 40px;
  animation-delay: 0.5s;
}
.loading-dot:nth-child(7) {
  left: 2px;
  top: 24px;
  animation-delay: 0.6s;
}
.loading-dot:nth-child(8) {
  left: 8px;
  top: 8px;
  animation-delay: 0.7s;
}
@keyframes loading {
  0%,
  40%,
  100% {
    transform: scale(1);
  }
  20% {
    transform: scale(3);
  }
}
@-webkit-keyframes loading {
  0%,
  40%,
  100% {
    transform: scale(1);
  }
  20% {
    transform: scale(3);
  }
}
