/** Shopify CDN: Minification failed

Line 59:13 Unexpected "0.5×"

**/
HTML CSSResult Skip Results Iframe
body { margin: 0; }

.ticker-wrap {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
  height: 4rem;
  background-color: #D9D9D9; 
}
.ticker {
  display: inline-block;
  margin-top: 8px;
  animation: marquee 50s linear infinite;
}
.item-collection-1 {
  position: relative;
  left: 0%;
  animation: swap 60s linear infinite;
}

.item {
  display: inline-block;
  padding: 0 8rem;
  font-size: 16px;
  color: black;   
  font-weight: 400;
  letter-spacing: 4px;
}

/* Transition */
@keyframes marquee {
  0% {
    transform: translateX(0)
  }
  100% {
    transform: translateX(-100%)
  }
}

@keyframes swap {
  0%, 50% {
    left: 0%;
  }
  50.01%,
  100% {
    left: 100%;
  }
}



Resources1× 0.5× 0.25×Rerun