.statistics_container {
  display: flex;
  background: var(--card);
  border-radius: 16px;
  padding: 14px 20px;
  flex-direction: column;
  color: var(--text-custom);
  position: relative;
  overflow: hidden;
  justify-content: center;
  border: 1px solid var(--bottom-line-table);
}

.statistics_container {}

.statistics_number {
  font-family: "Unbounded";
  font-size: 26px;
  font-weight: 600;
  color: var(--span);
}

.statistics_icon {
  position: absolute;
  right: 16px;
  transition: all 0.2s ease;
}

.statistics_icon svg {
  width: 40px;
  height: auto;
  fill: var(--span);
  opacity: 1;
  transition: all 0.2s ease;
}

.statistics_name {
  color: var(--span);
  font-size: 15px;
  opacity: 0.7;
  font-weight: 700;
}

.statistic__premium .statistics_name {
  color: var(--orange);
}

.statistic__premium .statistics_number {
  color: var(--orange);
}

.statistic__premium .statistics_icon svg {
  fill: var(--orange);
}

.statistic__premium {
  outline: 2px solid var(--orange);
  transition: all 0.2s ease;
}

.statistic__premium:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to top left, var(--orange-low), transparent);
  opacity: 0.1;
  pointer-events: none;
  transition: all .25s ease;
}

.statistic__premium:hover:before {
  opacity: 1;
}

.pulse_prem {
  animation: pulse-prem 2s infinite;
}

@keyframes pulse-prem {
  0% {
    box-shadow: 0 0 0 0px var(--orange);
  }
  100% {
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0);
  }
}

.prem_icon {
  position: absolute;
  right: 48px;
  transition: all 0.2s ease;
}

.prem_icon svg {
  width: 20px;
  height: auto;
  fill: var(--orange);
  opacity: 0;
  transition: all 0.2s ease;
}

.statistic__premium:hover .prem_icon {
  right: 16px;
}

.statistic__premium:hover .prem_icon svg{
  opacity: 1;
}

.statistic__premium:hover .statistics_icon {
  right: 0;
}

.statistic__premium:hover .statistics_icon svg{
  opacity: 0;
}
/* Ð”Ð¾Ð±Ð°Ð²ÑŒÑ‚Ðµ ÑÑ‚Ð¸ ÑÑ‚Ð¸Ð»Ð¸ Ð² Ð²Ð°Ñˆ 1.css Ñ„Ð°Ð¹Ð» */

.statistics_number {
    font-family: "Unbounded";
    font-size: 26px;
    font-weight: 600;
    color: var(--span);
    position: relative;
    min-height: 40px;
    display: flex;
    align-items: center;
}

.loading-animation {
    display: flex;
    gap: 4px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loading-animation span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--span);
    animation: loading-bounce 1.4s infinite ease-in-out both;
}

.loading-animation span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-animation span:nth-child(2) {
    animation-delay: -0.16s;
}

.loading-animation span:nth-child(3) {
    animation-delay: 0s;
}

.number-value {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease-in-out;
}

.number-value.loaded {
    opacity: 1;
    transform: translateY(0);
}

@keyframes loading-bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}
/* ÐÐ½Ð¸Ð¼Ð°Ñ†Ð¸Ñ Ñ‡Ð¸ÑÐµÐ» */
.statistics_number {
    font-family: "Unbounded";
    font-size: 26px;
    font-weight: 600;
    color: var(--span);
    position: relative;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.number-value {
    display: inline-block;
}

.counter-animation {
    display: inline-block;
}

/* Ð”Ð»Ñ VIP Ð±Ð»Ð¾ÐºÐ° */
.statistic__premium .statistics_number {
    color: var(--orange);
}

/* === ПЕРЕКРАШИВАЕМ ТОЛЬКО ТЕКСТ/Иконки/точки ЗАГРУЗКИ в статистиках, КРОМЕ VIP === */
.statistics_container:not(.statistic__premium) .statistics_number,
.statistics_container:not(.statistic__premium) .statistics_name {
  color: #e3e3e3;
}

/* SVG-иконки (fill) */
.statistics_container:not(.statistic__premium) .statistics_icon svg {
  fill: #e3e3e3;
}

/* Точки загрузки анимации */
.statistics_container:not(.statistic__premium) .loading-animation span {
  background-color: #e3e3e3;
}
