.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_number {
  font-family: "Unbounded";
  font-size: 22px;
  font-weight: 600;
  color: #bebebe;
}

.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: #0aa6ff;
  font-size: 15px;
  opacity: 0.7;
}

.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-bg), 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;
}