.stx-infinite-scroll-wrapper {
  font-family: "Montserrat", sans-serif;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 7px 0 0.2rem 0;
  
  /* Break out of parent container to center perfectly on screen */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  
  clear: both;
}

.stx-infinite-scroll-wrapper header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 1rem 0;
  text-align: center;
}
.stx-infinite-scroll-wrapper header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.stx-heading-line1 {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  top: -8px;
}
.stx-heading-line2 {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 200;
  line-height: 1;
  margin-top: -0.2em;
}
@media (min-width: 768px) {
  .stx-infinite-scroll-wrapper header h1 {
    font-size: 3rem;
  }
}
.stx-infinite-scroll-wrapper header p {
  color: #94a3b8;
}

.stx-infinite-scroll-wrapper .tag-list {
  width: 120rem;
  max-width: 90vw;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 1rem 0;
  position: relative;
  padding: 1.5rem 0;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.stx-infinite-scroll-wrapper .loop-slider .inner {
  display: flex;
  width: fit-content;
  animation-name: loop;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: var(--direction);
  animation-duration: var(--duration);
}

.stx-infinite-scroll-wrapper a.tag,
.stx-infinite-scroll-wrapper a.tag:visited,
.stx-infinite-scroll-wrapper a.tag:hover,
.stx-infinite-scroll-wrapper a.tag:active {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 0 0.2rem;
  color: #ffffff !important;
  font-size: 1.3rem;
  background-color: #334155;
  border-radius: 0.4rem;
  padding: 0.7rem 1.1rem;
  margin-right: 1rem;
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.2), 0 0.1rem 0.5rem rgba(0, 0, 0, 0.3), 0 0.2rem 1.5rem rgba(0, 0, 0, 0.4);
}
.stx-infinite-scroll-wrapper .tag span {
  font-size: 1.75rem;
  color: #64748b;
}

.stx-infinite-scroll-wrapper .fade {
  display: none;
}

@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
