@keyframes loop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes loop-rtl {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(50%);
  }
}

html[dir="rtl"] .inner-wrap{
  animation-name: loop-rtl;
}

html[dir="rtl"] .symbol{
  text-align: right;
}

.live-prices-section {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}

.inner-wrap {
  display: flex;
  gap:12px;
  width: max-content;
  animation-name: loop;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}


.inner {
  display: flex;
  gap: 12px;
}

.price-card {
  flex-shrink: 0;
}

.priceRed{
  color: var(--primary);
}

.priceGreen{
  color: #07BC7B;
}
  