/* 3E GLOBAL TOP CAMPAIGN BAR START */

.three-top-campaign-bar {
  position: relative;
  z-index: 100;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  background: #0b57b7;
  color: #ffffff;
}

.three-top-campaign-marquee {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: threeTopCampaignFlow 38s linear infinite;
}

.three-top-campaign-bar:hover
.three-top-campaign-marquee {
  animation-play-state: paused;
}

.three-top-campaign-track {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  padding: 9px 12px;
}

.three-top-campaign-item {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .09);
  color: #ffffff;
  font-family: Manrope, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.three-top-campaign-item:hover,
.three-top-campaign-item:focus-visible {
  border-color: rgba(255, 255, 255, .55);
  background: rgba(255, 255, 255, .18);
  color: #ffffff;
}

.three-top-campaign-item strong {
  font-weight: 800;
}

.three-top-campaign-sep {
  display: block;
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  background: rgba(255, 255, 255, .72);
}

@keyframes threeTopCampaignFlow {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 700px) {
  .three-top-campaign-track {
    gap: 9px;
    padding: 7px 9px;
  }

  .three-top-campaign-item {
    min-height: 33px;
    padding: 0 12px;
    font-size: 12px;
  }

  .three-top-campaign-marquee {
    animation-duration: 31s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .three-top-campaign-marquee {
    width: 100%;
    animation: none;
  }

  .three-top-campaign-track {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .three-top-campaign-track[aria-hidden="true"] {
    display: none;
  }
}

/* 3E GLOBAL TOP CAMPAIGN BAR END */
