/** Shopify CDN: Minification failed

Line 98:18 Unexpected "{"
Line 98:27 Expected ":"
Line 104:22 Unexpected "{"
Line 104:31 Expected ":"

**/
* {
  box-sizing: border-box;
}

.scrolling-text5 {
  overflow: hidden;
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  line-height: normal;
}

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

.marquee:hover .marquee__item {
  animation-play-state: var(--pause_on_hover);
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  will-change: transform;
  animation: marquee var(--speed_marquee) linear infinite;
}

.marquee__content5 {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.marquee__content5 span,
.marquee__content5 a {
  display: inline;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.marquee__content5 a:hover {
  opacity: 0.8;
}

.marquee-image-wrapper {
  display: inline-flex;
  align-items: center;
  margin-left: 1em;
}

.marquee-image-wrapper img {
  display: block;
  object-fit: cover;
}

/* Desktop styles */
@media screen and (min-width: 768px) {
  .marquee__content5 span,
  .marquee__content5 a {
    font-size: var(--font_size_desktop);
    font-weight: var(--font_weight_desktop);
  }
}

/* Mobile styles */
@media screen and (max-width: 767px) {
  .marquee__content5 span,
  .marquee__content5 a {
    font-size: var(--font_size_mobile);
    font-weight: var(--font_weight_mobile);
  }
  
  .marquee__content5 {
    margin: 0;
  }
  
  .marquee-image-wrapper {
    margin-left: 0.75em;
    margin-right: 0.75em;
  }
}
#shopify-section-{{ section.id }} .marquee-icon {
    height: var(--img-height-mobile, 30px);
    width: auto;
}

@media (min-width: 767px) {
    #shopify-section-{{ section.id }} .marquee-icon {
        height: var(--img-height-desktop, 40px);
    }
}