/** Shopify CDN: Minification failed

Line 19:0 Unexpected "<"
Line 21:9 Expected identifier but found whitespace
Line 21:10 Unexpected "0"
Line 21:15 Unexpected "{"
Line 21:17 Expected identifier but found "100.0"
Line 21:83 Expected identifier but found "%"
Line 22:14 Expected identifier but found whitespace
Line 22:16 Unexpected "{"
Line 22:18 Expected identifier but found "100.0"
Line 22:84 Expected identifier but found "%"
... and 19 more hidden warnings

**/


/* CSS from section stylesheet blocks */
<style>
  .brand-grid li {
    flex: 0 0 {{ 100.0 | divided_by: section.settings.per_row_desktop | round: 3 }}%;
    max-width: {{ 100.0 | divided_by: section.settings.per_row_desktop | round: 3 }}%;
  }

  .brands-show-more span:last-child {
    display: none;
  }

  .brands-show-more.showLess span:first-child {
    display: none;
  }
  .brands-show-more.showLess span:last-child {
    display: block;
  }

  @media (max-width: 991px) {
    .brand-grid li {
      flex: 0 0 {{ 100.0 | divided_by: section.settings.per_row_tablet | round: 3 }}%;
      max-width: {{ 100.0 | divided_by: section.settings.per_row_tablet | round: 3 }}%;
    }
  }

  @media (max-width: 575px) {
    .brand-grid li {
      flex: 0 0 {{ 100.0 | divided_by: section.settings.per_row_mobile | round: 3 }}%;
      max-width: {{ 100.0 | divided_by: section.settings.per_row_mobile | round: 3 }}%;
    }
  }
</style>