/** Shopify CDN: Minification failed

Line 16:6 Unexpected "{"
Line 16:15 Expected ":"
Line 25:16 Expected identifier but found "{"
Line 25:17 Unexpected "{"
Line 25:26 Expected ":"
Line 25:51 Expected ":"
Line 26:19 Expected identifier but found "{"
Line 26:20 Unexpected "{"
Line 26:29 Expected ":"
Line 26:58 Expected ":"
... and 35 more hidden warnings

**/
 #id-{{ section.id }}.marquee-text-wrapper {
    --space: 2rem;
    display: grid;
    align-content: center;
    overflow: hidden;
    gap: var(--space);
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.5;
    padding-top:{{ section.settings.padding_top}}px;
    padding-bottom:{{ section.settings.padding_bottom }}px;
    background-color: {{ section.settings.bg_color }};
  }

  #id-{{ section.id }} .marquee {
    --duration: 10s;
    --gap: var(--space);
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
  }

  #id-{{ section.id }} .marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll var(--duration) linear infinite;
  }
  #id-{{ section.id }} .marquee__group p{
    margin-top: 0;
    margin-bottom: 0;
  }
  #id-{{ section.id }} .marquee__group p {
    color: {{ section.settings.font_color }};
    font-size: {{ section.settings.font_size}}px;
  }

  #id-{{ section.id }} .marquee--reverse .marquee__group {
    animation-direction: reverse;
    animation-delay: calc(var(--duration) / -2);
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-100% - var(--gap)));
    }
  }
  #id-{{ section.id }} .marquee:hover .marquee__group {
    animation-play-state: {{ section.settings.pause_text }};
  }
  @media (max-width: 600px) {
  #id-{{ section.id }}.marquee-text-wrapper {
    padding-top:{{ section.settings.m_padding_top}}px;
    padding-bottom:{{ section.settings.m_padding_bottom }}px;
  }
  }