.ticker-container {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
  white-space: nowrap;
}

.ticker-wrapper {
  display: flex;
  width: max-content;
}

.ticker-track {
  display: flex;
  gap: 10px;
  will-change: transform;
  animation: ticker-scroll 140s linear infinite;
}

.ticker-item {
  display: inline-block;
  padding: 25px 15px;
  background: #18c88c;
  color: #000;
  border-radius: 12px;
  min-width: 220px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
/* Trade Button */
.btn-box a {
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: #000;
  /* background: white; */
  border: 2px solid white;
  padding: 8px 15px;
  border-radius: 30px;
  transition: 0.3s;
}

.btn-box a:hover {
  background: #27a067;
  color: white;
}

.btn-box i {
  margin-right: 8px;
}

.ticker-item .icon-box {
  background: white;
  border-radius: 50%;
  padding: 2px 9px 0px 9px;
}

.ticker-item .currency{font-weight:300;}
.ticker-item .currency-rate{font-weight:300;}
.ticker-item .sell{font-weight:300;}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


.ticker-left-col {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.ticker-right-col {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .ticker-item {
    width: 280px; 
  }
.ticker-left-col {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin:5px 0;
justify-content: center;
}

.ticker-right-col {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
 justify-content: center;
  margin:5px 0;
}
}

@media (max-width: 1199px) {
  .ticker-item {
    /* width: 50%; */
  }
}

@media (min-width: 1200px) {
  .ticker-item {
     width: 450px; 
  }
}
