/** Shopify CDN: Minification failed

Line 22:14 Expected identifier but found whitespace
Line 22:16 Unexpected "{"
Line 22:25 Expected ":"
Line 22:65 Expected ":"
Line 23:17 Expected identifier but found whitespace
Line 23:19 Unexpected "{"
Line 23:28 Expected ":"
Line 23:71 Expected ":"
Line 26:13 Expected identifier but found whitespace
Line 26:15 Unexpected "{"
... and 17 more hidden warnings

**/


/* CSS from section stylesheet tags */
.custom-faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding-top: {{ section.settings.padding_top | default: 40 }}px;
  padding-bottom: {{ section.settings.padding_bottom | default: 40 }}px;
}
.custom-faq-title {
  text-align: {{ section.settings.title_alignment }};
  color: {{ section.settings.title_color }};
  font-weight: bold;
  margin-bottom: 30px;
}
.custom-faq-item details {
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
}
.custom-faq-item summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: ;
  font-weight: bold;
  color: {{ section.settings.question_color }};
  list-style: none;
}
.custom-faq-item summary::-webkit-details-marker {
  display: none;
}
.custom-faq-item .icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid {{ section.settings.icon_color }};
  color: {{ section.settings.icon_color }};
  font-weight: bold;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.custom-faq-item details[open] .icon-circle {
  transform: rotate(45deg);
}
.custom-faq-item .answer {
  margin-top: 10px;
  color: {{ section.settings.answer_color }};
}