@charset "utf-8";
/* CSS Document */

/* =========================
TICKER WRAPPER
========================= */
.ticker-wrapper {
  width: 100%;
  overflow: hidden;
  background: #BCD4C2;
  padding: 12px 0;
  position: relative;
}

/* =========================
MOVING TRACK
========================= */
.ticker-track {
  display: flex;
  width: max-content;
  gap: 40px;
  animation: scrollTicker 36s linear infinite;
  align-items: center;
}

/* pause on hover */
.ticker-wrapper:hover .ticker-track {
  animation-play-state: paused;
}

/* =========================
ITEM STYLE
========================= */
.ticker-item {
  white-space: nowrap;
  font-size: 16px;
  color: #1f3b2c;
  font-weight: 500;
}

.ticker-item strong {
  font-size: 18px;
  margin-left: 6px;
}

/* =========================
ANIMATION
========================= */
@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
