.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.loading-svg {
  width: 128px;
  height: 128px;
  color: var(--primary-color);
}
/* stylelint-disable-next-line selector-class-pattern */
.loading-spin__container {
  width: 56px;
  height: 56px;
  margin: 36px 0;
}
.loading-spin {
  position: relative;
  height: 100%;
  animation: loading-spin 1s linear infinite;
}
.left-0 {
  left: 0;
}
.right-0 {
  right: 0;
}
.top-0 {
  top: 0;
}
.bottom-0 {
  bottom: 0;
}
.loading-spin-item {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: var(--primary-color);
  border-radius: 8px;
  animation: loading-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes loading-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes loading-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}
.loading-delay-500 {
  animation-delay: 500ms;
}
.loading-delay-1000 {
  animation-delay: 1000ms;
}
.loading-delay-1500 {
  animation-delay: 1500ms;
}
.loading-title {
  font-size: 28px;
  font-weight: 500;
  color: #646464;
}
