/** Shopify CDN: Minification failed

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

**/


/* CSS from section stylesheet tags */
.csym-container-mf {
    overflow: hidden;
    background-color: {{section.settings.background_color}};
    padding: 16px 65px;
}

.csym-track-mf {
    display: flex;
      animation: scroll-left 15s linear infinite; /* fast */
    width: max-content;
    will-change: transform; /* Helps with smooth rendering */
}

.feature-icon-item-mf {
    display: flex;
    align-items: center;
    margin-right: 58px;
    white-space: nowrap;
}

.feature-icon-item-mf img {
    max-width: 32.4px;
    max-height: 32.4px;
    flex-shrink: 0;
    margin-right: 12px;
    width: 100%;
    height: 100%;
}

.feature-icon-item-mf span {
    font-family: Outfit;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #FFFFFF;
}


/* Keyframes for continuous scroll */
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* CSS from snippet stylesheet tags */
@media (prefers-reduced-motion: reduce) {
    video-background-component video {
      display: none;
    }
  }
.overlay {
    position: absolute;
    inset: 0;
    z-index: var(--overlay-layer);
    pointer-events: none;
    border-radius: var(--overlay-border-radius, 0);
  }

  .overlay--solid {
    background: var(--overlay-color);
  }

  .overlay--gradient {
    background: linear-gradient(var(--overlay-direction), var(--overlay-color), var(--overlay-color--end));
  }