/** Shopify CDN: Minification failed

Line 17:19 Expected identifier but found whitespace
Line 17:21 Unexpected "{"
Line 17:30 Expected ":"
Line 18:8 Expected identifier but found whitespace
Line 18:10 Unexpected "{"
Line 18:19 Expected ":"
Line 19:12 Expected identifier but found whitespace
Line 19:14 Unexpected "{"
Line 19:23 Expected ":"
Line 19:47 Expected ":"

**/
.marquee-container {
  overflow: hidden;
  background-color: {{ section.settings.background_color }};
  color: {{ section.settings.text_color }};
  font-size: {{ section.settings.font_size }}px;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: marquee-scroll linear infinite;
  animation-duration: 25s;
}

.marquee-content span {
  display: inline-block;
  padding: 0 10px;
}

.marquee-content img {
  vertical-align: middle; /* Ensures the image aligns with the text */
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
