#crypto-ticker {
  width: 100%;
  background: #f8f8f8;
  color: #000;
  padding: 6px 0;
  font-family: sans-serif;
  font-size: 14px;
  border-bottom: 1px solid #ddd;
  overflow: hidden;
  position: relative;
  z-index: 1000;
}

#ticker-wrapper {
  white-space: nowrap;
  overflow: hidden;
  display: flex;
}

#ticker-content {
  display: inline-flex;
  white-space: nowrap;
}

.ticker-item {
  display: inline-block;
  margin-right: 15px;
  color: #000;
}
.ticker-item .up {
  color: green;
}
.ticker-item .down {
  color: red;
}
