/** Shopify CDN: Minification failed

Line 10:0 Unexpected "{"
Line 10:1 Expected identifier but found "%"
Line 56:0 Unexpected "{"
Line 56:1 Expected identifier but found "%"

**/

{% stylesheet %}
.marquee-section {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.marquee-outline,
.marquee-solid {
  font-size: 58px;
  font-weight: 700;
  color:white;
  text-transform: uppercase;
  font-family: sans-serif;
  padding: 0 15px; /* Space between words */
  line-height: 1.2;
}

.marquee-outline {
  color: transparent;
  -webkit-text-stroke: 2px white; /* Theme color use karega automatically */
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .marquee-outline, .marquee-solid {
    font-size: 32px;
    padding: 0 15px;
    -webkit-text-stroke: 1px white;
  }
}
{% endstylesheet %}