/** Shopify CDN: Minification failed

Line 17:8 Unexpected "{"
Line 17:13 Expected ":"
Line 17:17 Unexpected "{"
Line 18:19 Expected identifier but found whitespace
Line 18:21 Unexpected "{"
Line 18:30 Expected ":"
Line 18:70 Expected identifier but found "!"
Line 21:2 Unexpected "{"
Line 21:3 Expected identifier but found "%"
Line 22:9 Expected identifier but found whitespace
... and 36 more hidden warnings

**/
/* General Section Styling */
#laber_{{ sid }} {
  background-color: {{ section.settings.cl_bg | default: "#f9f9f9" }} !important;
  width: 100% !important;
  box-sizing: border-box !important;
  {% if section.settings.mg != blank %}
  margin: {{ section.settings.mg }} !important;
  {% else %}
  margin: 0 auto !important;
  {% endif %}
  {% if section.settings.pd != blank %}
  padding: {{ section.settings.pd }} !important;
  {% else %}
  padding: 60px 20px !important;
  {% endif %}
}

/* Full Width Inner Wrapper */
#laber_{{ sid }} .wrap_title,
#laber_{{ sid }} .item-faq {
  width: 100% !important;
  max-width: 1200px !important; /* Optional: for desktop readability */
  margin: 0 auto !important;
  padding: 0 7px !important; /* Makes text stay away from screen edge */
  box-sizing: border-box !important;
}

/* FAQ Content Full Width */
#laber_{{ sid }} .content-faq {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 20px 20px !important;
  box-sizing: border-box !important;
}

.faq-section .item-faq .js-item-faq {
  background: #fff !important;
  border-radius: 10px !important;
  padding: 15px 15px !important;
  margin-bottom: 10px !important;
  width: 100% !important;
}

/* Title Styling */
#laber_{{ sid }} .wrap_title .section-title {
  font-size: 2.2rem !important;
  text-align: center !important;
  margin-bottom: 15px !important;
  color: var(--color-main) !important;
  font-weight: 500 !important;
  line-height: 40px !important;
  padding: 0 !important;
  margin-top: 15px !important;
}

#laber_{{ sid }} .wrap_title .section-subtitle {
  text-align: center !important;
  font-size: 1.2rem !important;
  color: #777 !important;
  margin-bottom: 25px !important;
}

.wrap_title.style2 .section-title {
    color: var(--color-main) !important;
    margin-bottom: 10px !important;
    font-weight: 500 !important;
    font-size: 30px !important;
    line-height: 40px !important;
    padding: 0 !important;
    margin-top: 15px !important;
}

.wrap_title.style2 .content {
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  gap: 0 !important;
  margin-bottom: 0px !important;
  background: none !important;
  display: flex !important;
  border: none !important;
}
.wrap_title.style2 {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0 !important;
    margin-bottom: 15px !important;
    background: none !important;
    display: flex !important;
    border: none !important;
}

/* Mobile Specific */
@media (max-width: 767px) {
  #laber_{{ sid }} {
    padding: 40px 15px !important;
  }
  #laber_{{ sid }} .wrap_title .section-title {
    font-size: 1.6rem !important;
  }
  #laber_{{ sid }} .wrap_title .section-subtitle {
    font-size: 1rem !important;
  }
  #laber_{{ sid }} .content-faq {
    padding: 15px 10px !important;
  }
}
