/** Shopify CDN: Minification failed

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

**/


/* CSS from section stylesheet tags */
.csym-container-ann {
  overflow: hidden;
 
  padding: 5px;
}

.csym-track-ann {
  display: flex;
  width: max-content;
  animation: csym-scroll-ann 40s linear infinite;
  will-change: transform;
}

.feature-item-ann {
  display: flex;
  align-items: center;
  margin-right: 0px;
  white-space: nowrap;
  gap: 12px;
}

.feature-icon-ann img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.feature-dot-ann {
  display: flex;
  align-items: center;
}

.feature-text-ann {
    color: #ffff;
    font-family: Poppins;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 22.4px;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
}

/* Animation */
@keyframes csym-scroll-ann {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.csym-container-mf {
    overflow: hidden;
    background-color: {{section.settings.background_color}};
    padding: 18px 16px;
        border-top: 1.5px solid #B9B9B9;
    border-bottom: 1.5px solid #B9B9B9;
}

.csym-track-mf {
    display: flex;
    animation: scroll-left 40s linear infinite;
    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: 'Poppins';
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #000000;
}

/* Keyframes for continuous scroll */
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}