/** Shopify CDN: Minification failed

Line 14:10 Unexpected "{"
Line 14:19 Expected ":"
Line 19:14 Unexpected "{"
Line 19:23 Expected ":"
Line 26:14 Unexpected "{"
Line 26:23 Expected ":"

**/


/* CSS from section stylesheet tags */
#section-{{ section.id }} .infinite-carousel__wrapper {
      overflow: hidden;
      width: 100%;
    }

    #section-{{ section.id }} .infinite-carousel__track {
      display: flex;
      gap: 40px;
      width: max-content;
      animation: translateinfinite 18s linear infinite;
    }

    #section-{{ section.id }} .infinite-carousel__item {
      flex: 0 0 auto;
    }

    @keyframes translateinfinite {
      100% {
        transform: translateX(calc(-180px * 6));
      }
    }