.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-container .b {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loading-container .b div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #00204a;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.loading-container .b div:nth-child(1) {
  left: 8px;
  animation: b1 0.6s infinite;
}
.loading-container .b div:nth-child(2) {
  left: 8px;
  animation: b2 0.6s infinite;
}
.loading-container .b div:nth-child(3) {
  left: 32px;
  animation: b2 0.6s infinite;
}
.loading-container .b div:nth-child(4) {
  left: 56px;
  animation: b3 0.6s infinite;
}
@keyframes b1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes b3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes b2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}/*# sourceMappingURL=loading.css.map */