.ticker {
  position: relative;
  width: 100%;
  height: 30px;
  margin-bottom: 0;
  background: #01225E;
  color: #FFFFFF;
  overflow: hidden;
}
.ticker .ticker-viewport {
  overflow: hidden;
  height: 30px;
  padding: 0;
}
.ticker .ticker-track, .ticker .ticker-group {
  display: flex;
  align-items: center;
  height: 30px;
}
.ticker .ticker-track {
  justify-content: center;
  width: 100%;
}
.ticker .ticker-group {
  flex: none;
  width: max-content;
}
.ticker .ticker-item {
  flex: none;
  white-space: nowrap;
  font-family: "euclid_circular_aregular", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 30px;
  text-align: center;
  color: #FFFFFF;
}
.ticker.is-scrolling .ticker-track {
  justify-content: flex-start;
  width: max-content;
  animation: amplar-ticker var(--ticker-duration, 24s) linear infinite;
  will-change: transform;
}
.ticker.is-scrolling .ticker-group {
  padding-right: 50px;
}
.ticker a {
  color: #FFFFFF;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ticker .ticker-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 100%;
  border: 0;
  background: #01225E;
  color: #FFFFFF;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.ticker .ticker-close::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -28px;
  width: 28px;
  background: linear-gradient(90deg, rgba(1, 34, 94, 0), #01225E);
}
.ticker.is-dismissed {
  display: none;
}
@keyframes amplar-ticker {
  to {
    transform: translate3d(calc(-1 * var(--ticker-distance, 1000px)), 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ticker .ticker-track {
    animation: none;
  }
  .ticker .ticker-group[aria-hidden="true"] {
    display: none;
  }
}
