@charset "UTF-8";
/* Базовый стиль для анимации точек */
.loading-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.loading-dots .dot {
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background-color: #333;
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}

.loading-dots .dot:nth-child(1) {
  animation-delay: -0.32s;
}

.loading-dots .dot:nth-child(2) {
  animation-delay: -0.16s;
}

/* Варианты размеров */
.loading-dots.small .dot {
  width: 6px;
  height: 6px;
}

.loading-dots.large .dot {
  width: 10px;
  height: 10px;
}

/* Варианты цветов */
.loading-dots.primary .dot {
  background-color: #4285f4;
}

.loading-dots.white .dot {
  background-color: #fff;
}

.loading-dots.green .dot {
  background-color: #34a853;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.loader- {
  width: 300px;
  height: 48px;
  background: linear-gradient(45deg, #F2F2F2, #E0E0E0, #F8F8F8);
  background-size: 200% 200%;
  border-radius: 20px;
  animation: liquidFlow 3s ease infinite;
}

.loader-interest {
  width: 100px;
  height: 48px;
  background: linear-gradient(45deg, #F2F2F2, #E0E0E0, #F8F8F8);
  background-size: 200% 200%;
  border-radius: 20px;
  animation: liquidFlow 3s ease infinite;
}

.loader-name {
  width: 140px;
  height: 32px;
  background: linear-gradient(45deg, #F2F2F2, #E0E0E0, #F8F8F8);
  background-size: 200% 200%;
  border-radius: 20px;
  animation: liquidFlow 3s ease infinite;
}

.loader-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(45deg, #F2F2F2, #E0E0E0, #F8F8F8);
  background-size: 200% 200%;
  border-radius: 10px;
  animation: liquidFlow 3s ease infinite;
}

.loader-total {
  width: 70px;
  height: 32px;
  background: linear-gradient(45deg, #F2F2F2, #E0E0E0, #F8F8F8);
  background-size: 200% 200%;
  border-radius: 20px;
  animation: liquidFlow 3s ease infinite;
}

.loader-name-sector {
  margin: 0 auto;
  width: 140px;
  height: 62px;
  background: linear-gradient(45deg, #F2F2F2, #E0E0E0, #F8F8F8);
  background-size: 200% 200%;
  border-radius: 20px;
  animation: liquidFlow 3s ease infinite;
}

.loader-total-sector {
  width: 40px;
  height: 24px;
  background: linear-gradient(45deg, #F2F2F2, #E0E0E0, #F8F8F8);
  background-size: 200% 200%;
  border-radius: 20px;
  animation: liquidFlow 3s ease infinite;
}

@keyframes liquidFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.liquid-donut {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #f5f5f5;
}

.liquid-donut::before {
  content: "";
  position: absolute;
  width: 30%;
  height: 30%;
  top: 20%;
  left: 20%;
  border-radius: 50%;
  background: white;
  z-index: 2;
}

.liquid-donut {
  background: conic-gradient(from 0deg, #F2F2F2, #E0E0E0, #F8F8F8, #F2F2F2);
  animation: donutFlow 2s linear infinite;
  mask: radial-gradient(transparent 140px, #000 140px);
  -webkit-mask: radial-gradient(transparent 140px, #000 140px);
}

@keyframes donutFlow {
  0%, 100% {
    filter: hue-rotate(0deg) brightness(1);
  }
  25% {
    filter: hue-rotate(10deg) brightness(1.02);
  }
  50% {
    filter: hue-rotate(20deg) brightness(1.04);
  }
  75% {
    filter: hue-rotate(10deg) brightness(1.02);
  }
}/*# sourceMappingURL=loading.css.map */