/** Shopify CDN: Minification failed

Line 19:18 Unexpected "{"
Line 19:27 Expected ":"
Line 23:18 Unexpected "{"
Line 23:27 Expected ":"
Line 39:18 Unexpected "{"
Line 39:27 Expected ":"
Line 44:18 Unexpected "{"
Line 44:27 Expected ":"
Line 57:18 Unexpected "{"
Line 57:27 Expected ":"
... and 16 more hidden warnings

**/


/* CSS from section stylesheet tags */
#shopify-section-{{ section.id }} .seo-section {
  margin-top: 24px;
}

#shopify-section-{{ section.id }} .seo-section .seo-text {
  --collapsed: 160px;
  font-size: 12px !important;
  color: #9ca3af !important;
  line-height: 1.4 !important;
  opacity: 0.7;
  max-height: var(--collapsed);
  overflow: hidden;
  transition: max-height .35s ease, opacity .35s ease;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-bottom: 8px;
}

#shopify-section-{{ section.id }} .seo-section .seo-text.is-expanded {
  max-height: none;
  opacity: 1;
}

#shopify-section-{{ section.id }} .seo-section .seo-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0), var(--light__ui_background-1, #fff));
  pointer-events: none;
  opacity: 1;
  transition: opacity .3s ease;
}

#shopify-section-{{ section.id }} .seo-section .seo-text.is-expanded::after {
  opacity: 0;
}

#shopify-section-{{ section.id }} .seo-section .seo-text h1,
#shopify-section-{{ section.id }} .seo-section .seo-text h2,
#shopify-section-{{ section.id }} .seo-section .seo-text h3 {
  font-size: 13px !important;
  text-transform: uppercase;
  color: #9ca3af !important;
  margin: 0 0 8px 0;
}

#shopify-section-{{ section.id }} .seo-section .seo-readmore {
  display: block;
  margin: 24px auto 0;
  font-family: inherit;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: #9ca3af;
  background: none;
  border: none;
  border-bottom: 1px solid #9ca3af;
  padding: 0 0 3px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

#shopify-section-{{ section.id }} .seo-section .seo-readmore:hover {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  #shopify-section-{{ section.id }} .seo-section .seo-text {
    --collapsed: 190px;
    font-size: 11px !important;
    line-height: 1.4 !important;
    max-width: 92%;
    text-align: left;
    margin: 0 auto;
    opacity: 0.8;
    padding-bottom: 10px;
  }

  #shopify-section-{{ section.id }} .seo-section .seo-text::after {
    height: 48px;
  }

  #shopify-section-{{ section.id }} .seo-section .seo-readmore {
    font-size: 11px;
    font-weight: 500;
    margin-top: 18px;
    border-bottom: 1px solid #9ca3af;
    padding-bottom: 2px;
    text-align: center;
  }
}