/** Shopify CDN: Minification failed

Line 13:21 Expected identifier but found whitespace
Line 13:23 Unexpected "{"
Line 13:32 Expected ":"

**/


/* CSS from section stylesheet tags */
.icon-carousel-wrapper {
    overflow: hidden;
    background-color: {{ section.settings.bg_color }};
    padding: 20px 0;
    width: 100vw;
  }

  .icon-carousel-track {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    width: fit-content;
    min-width: 200vw; /* ensures double space to loop */
    animation: scroll-carousel linear infinite;
    animation-duration: 18s;
  }

  @media (max-width: 768px) {
    .icon-carousel-track {
      animation-duration: 20s;
    }
  }

  .icon-carousel-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .icon-box {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .icon-carousel-item img {
    max-width: 100%;
    max-height: 100%;
    display: block;
  }

  .icon-carousel-item span {
    margin-top: var(--icon-text-gap, 10px);
    display: block;
    text-align: center;
    white-space: nowrap;
  }

  @keyframes scroll-carousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }