/** Shopify CDN: Minification failed

Line 16:19 Unexpected "{"
Line 16:28 Expected ":"
Line 27:20 Unexpected "{"
Line 27:29 Expected ":"
Line 35:20 Unexpected "{"
Line 35:29 Expected ":"
Line 40:20 Unexpected "{"
Line 40:29 Expected ":"
Line 44:20 Unexpected "{"
Line 44:29 Expected ":"
... and 8 more hidden warnings

**/
 #shopify-section-{{ section.id }} .scrolling-text{
    --gap: 2rem;
    background: var(--bg);
    color: var(--color);
    overflow: hidden;
    width: 100%;
    line-height: 1;
    padding: 10px 0;
    white-space: nowrap;
        margin-bottom: 20px;
  }
  #shopify-section-{{ section.id }} .scrolling-text__track{
    display: inline-flex;
    align-items: center;
    /* gap: var(--gap); */
    white-space: nowrap;
    will-change: transform;
    animation: marquee var(--speed) linear infinite;
  }
  #shopify-section-{{ section.id }} .scrolling-text__item{
    display: inline-block;
    font-size: 15px;
    letter-spacing: .3px;
  }
  #shopify-section-{{ section.id }} .scrolling-text__sep{
    margin: 0 1rem;
    opacity: .75;
  }
  #shopify-section-{{ section.id }} .scrolling-text:hover .scrolling-text__track{
    animation-play-state: paused;
  }
  @keyframes marquee{
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* duplicated content => seamless */
  }
  @media (max-width: 480px){
    #shopify-section-{{ section.id }} .scrolling-text{ --gap: 1.25rem; }
    #shopify-section-{{ section.id }} .scrolling-text__item{ font-size: 13px; }
  }

  #shopify-section-{{ section.id }} .scrolling-text__item { display:inline-flex; align-items:center; gap:6px; }
  #shopify-section-{{ section.id }} .scrolling-text__icon { width:18px; height:18px; object-fit:contain; }

  ul.list.list-payment{
    display: flex;
  }
  .footer__payment ul{
        margin: 4px 0 5px 10px;
  }