/** Shopify CDN: Minification failed

Line 22:14 Expected identifier but found whitespace
Line 22:16 Unexpected "{"
Line 22:25 Expected ":"
Line 22:51 Expected ":"
Line 24:15 Expected identifier but found whitespace
Line 24:17 Unexpected "{"
Line 24:26 Expected ":"
Line 24:61 Unexpected "{"
Line 24:70 Expected ":"
Line 25:2 Unexpected "{"
... and 27 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-product-quality (INDEX:23, SCOPED:FALSE) */
.custom-product-quality {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: 50px;
    border-top: {{ section.settings.border_width }}px solid {{ section.settings.border_color }};
  {% endif %}
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

.custom-product-quality__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: {{ section.settings.column_gap }}px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 0;
  box-sizing: border-box;
}

.custom-product-quality__item {
  display: flex;
  flex-direction: column;
}

.custom-product-quality__label {
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 {{ block.settings.label_margin_bottom }}px 0;
}

.custom-product-quality__heading {
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 {{ block.settings.heading_margin_bottom }}px 0;
}

.custom-product-quality__description {
  margin: 0;
}

.custom-product-quality__description p {
  margin: 0;
}

/* ================= MOBILE ================= */

@media screen and (max-width: 989px) {
  .custom-product-quality {
    padding-top: {{ section.settings.padding_top | divided_by: 1.5 }}px;
    padding-bottom: {{ section.settings.padding_bottom | divided_by: 1.5 }}px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .custom-product-quality__container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 24px 0;
  }

  .custom-product-quality__label {
    margin-bottom: 12px;
  }

  .custom-product-quality__heading {
    margin-bottom: 16px;
  }
}

/* ================= TABLET ================= */

@media screen and (min-width: 990px) and (max-width: 1200px) {
  .custom-product-quality__container {
    gap: {{ section.settings.column_gap | times: 0.75 }}px;
  }
}
/* END_SECTION:custom-product-quality */