.mineral-ticker {
  overflow: hidden;
  background: #f8f9fa;
  padding: 0.5rem 0;
}

.mineral-ticker ul {
  display: flex;
  animation: ticker 30s linear infinite;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mineral-ticker li {
  flex: none;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  cursor: pointer;
}
.mineral-ticker:hover ul {
  
  animation-play-state: paused;
}

.mineral-ticker li:last-child {
  border-right: none;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.mineral-ticker {
  overflow: hidden;
  background: #f8f9fa;
  padding: 0.5rem 0;
}

.mineral-ticker ul {
  display: flex;
  animation: ticker 30s linear infinite;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mineral-ticker li {
  flex: none;
  padding: 0 1.81rem;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  display: flex;
  gap: .5rem;
  align-items: center;
}

.mineral-ticker li i {
  margin-top: 5px;

}


@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* New styles for the change percent classes */
.mineral-prices-ticker .positive {
  color: #00BC70;
  /* Bootstrap green */
}

.mineral-prices-ticker .negative {
  color: #DE4B4B;
  /* Bootstrap red */
}

.mineral-prices-ticker .neutral {
  color: #6c757d;
  /* Bootstrap gray */
}

.mineral-prices-ticker .change {
  margin-left: 6px;
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: .25rem;
}