.s-advertisement {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  overflow: hidden;
  white-space: nowrap;
  background-color: #001f3f;
  height: 50px;
  display: flex;
  align-items: center;
  direction: rtl;
  padding: 0 10px;
}

.s-advertisement .scroll-track {
  display: inline-block;
  white-space: nowrap;
  min-width: 100vw; /* ensure it's as wide as screen */
  animation: scroll-rtl 15s linear infinite;
}

.s-advertisement:hover .scroll-track {
  animation-play-state: paused;
}

.s-advertisement .scroll-track span {
  display: inline-block;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  margin: 0; /* remove spacing */
}

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