/** Shopify CDN: Minification failed

Line 18:10 Expected identifier but found whitespace
Line 18:12 Unexpected "{"
Line 18:21 Expected ":"
Line 18:52 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:marquee-text-bar (INDEX:54) */
.marquee-section {
  background: #000000;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: {{ section.settings.padding_vertical }}px 0;
  overflow: hidden;
}

.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll linear infinite;
}

.marquee-section.pause-hover:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
}

.marquee-icon img,
.marquee-icon svg {
  width: 50px;
  height: 50px;
  display: block;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .marquee-item {
    font-size: 14px;
    padding: 0 16px;
  }
}
/* END_SECTION:marquee-text-bar */