/* ===== BEACON SURVEY SCROLLING TICKER ===== */

#beacon-ticker {
  width: 100%;
  background-color: #0077C8; /* ZERO blue */
  color: #ffffff;
  padding: 18px 24px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 999999;
  font-size: 1.05rem;
}

.beacon-ticker-inner {
  margin: 0 auto;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.beacon-ticker-viewport {
  overflow: hidden;
  width: 100%;
  padding-right: 48px; /* Prevents clipping under close button */
  box-sizing: border-box;
}

.beacon-ticker-track {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  animation: beacon-ticker-scroll 25s linear infinite;
  padding-left: 48px;
}

.beacon-ticker-item {
  display: inline-flex;
  padding-right: 4rem;
  align-items: center;
}

.beacon-ticker-link {
  color: inherit;
  text-decoration: none !important;
  display: inline-flex;
}

.beacon-ticker-link:hover,
.beacon-ticker-link:focus {
  color: inherit;
  text-decoration: none !important;
}

.beacon-ticker-text strong {
  font-weight: 700;
}

.beacon-ticker-light {
  font-weight: 300;
}

/* Close button */
.beacon-ticker-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

@keyframes beacon-ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33%);
  }
}