.top-bar {
  position: relative;
  background: #000;
  padding: 3px 0;
  z-index: 1;
}
@media screen and (max-width: 576px) {
  .top-bar .marquee {
    padding-top: 8px;
  }
}
@media screen and (max-width: 576px) {
  .top-bar {
    border: none;
  }
}
.top-bar.blue {
  background: #eeb5fa;
  border-top: 2px solid #6d4076;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .top-bar.blue {
    position: relative;
  }
}
@media (min-width: 1300px) and (max-height: 515px) {
  .top-bar.blue {
    position: unset;
  }
}
.top-bar.blue2 {
  background: #a3e9f3;
  border-top: 2px solid #6d4076;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .top-bar.blue2 {
    position: relative;
  }
}
@media (min-width: 1300px) and (max-height: 515px) {
  .top-bar.blue2 {
    position: unset;
  }
}
.top-bar.light {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .top-bar.light {
    position: relative;
  }
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.marquee-content {
  display: inline-flex;
  animation: marquee 20s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
