/** Shopify CDN: Minification failed

Line 60:10 Expected identifier but found whitespace
Line 60:12 Unexpected "{"
Line 60:21 Expected ":"

**/


/* CSS from section stylesheet tags */
.as-seen-on-divider {
  display: flex;
  align-items: center;
  height: 1px;
  background: #000;
  flex: 1;
  min-width: 40px;
  opacity: 0.5;
}

.as-seen-on-divider span {
  width: 100%;
  height: 1px;
  background: #000;
  display: block;
}




  .as-seen-on-section {
    padding: 22px 0;
    border-bottom: 1px solid #F2F2F2;

  }

  .as-seen-on-inner {
    max-width: 790px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 20px;
  }

  /* Left: text + divider */
  .as-seen-on-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1 1 40%;
  }

  .as-seen-on-label {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    color: {{ section.settings.label_color }};
    white-space: nowrap;
  }

  .as-seen-on-divider {
    display: block;
    height: 1px;
    background: #000;
    flex: 1;
    min-width: 40px;
  }

  /* Right: logos */
  .as-seen-on-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    flex-wrap: wrap;
  }

  .as-seen-on-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.95;
  }
  .as-seen-on-label {
    color: #999999;
        font-size: 17px;

}

  .as-seen-on-logo img {
    display: block;
    object-fit: contain;
        max-height: 60px !important;
    max-width: 120px !important;
    height: auto;
    width: auto;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .as-seen-on-inner {
      flex-direction: column;
      gap: 16px;
    }
    .as-seen-on-left {
      justify-content: center;
    }
    .as-seen-on-right {
      justify-content: center;
      gap: 20px;
    }
  }