/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 63:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.announcement-ticker {
  width: 100%;
  overflow: hidden;
  background-color: #000;
  height: 40px;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
}

.ticker-inner {
  display: flex;
  width: max-content;
  animation-name: scroll;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.announcement-item {
  display: inline-block;
  padding: 0 2rem;
  white-space: nowrap;
  font-size: 16px;
  line-height: 40px;
  color: white;
}

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

/* Fix horizontal scroll issue on mobile */
@media screen and (max-width: 749px) {
  body {
    overflow-x: hidden;
  }

  .announcement-ticker {
    max-width: 100vw;
  }

  .ticker-inner {
    max-width: 200vw;
  }
}

</style>