/** Shopify CDN: Minification failed

Line 19:0 Unexpected "#"
Line 19:2 Unexpected "{"
Line 19:11 Expected ":"
Line 23:0 Unexpected "#"
Line 23:2 Unexpected "{"
Line 23:11 Expected ":"
Line 27:0 Unexpected "#"
Line 27:2 Unexpected "{"
Line 27:11 Expected ":"
Line 31:0 Unexpected "#"
... and 29 more hidden warnings

**/


/* CSS from section stylesheet tags */
#{{ section.id }}.logo-grid-section {
  /* Padding is now controlled by the section-{{ section.id }}-padding class */
}

#{{ section.id }} .text-left {
  text-align: left;
}

#{{ section.id }} .text-center {
  text-align: center;
}

#{{ section.id }} .text-right {
  text-align: right;
}

#{{ section.id }} .logo-grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-desktop-items), 1fr);
  gap: 30px;
  align-items: center;
}

#{{ section.id }} .logo-grid__item {
  text-align: center;
}

#{{ section.id }} .logo-grid__image-container {
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#{{ section.id }} .logo-grid__image {
  max-width: 100%;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media screen and (max-width: 749px) {
  #{{ section.id }} .logo-grid {
    grid-template-columns: repeat(var(--grid-mobile-items), 1fr);
    gap: 20px;
  }

  #{{ section.id }} .logo-grid__image {
    max-height: 80px;
  }
  
  #{{ section.id }} .text-left-mobile {
    text-align: left;
  }
  
  #{{ section.id }} .text-center-mobile {
    text-align: center;
  }
  
  #{{ section.id }} .text-right-mobile {
    text-align: right;
  }
}