/**
 * Add an arrow element
 *
 * Accepts:
 * - $direction: {String} Positioning method for element
 * - $size: {String}
 * - $stroke: {String}
 *
 * Usage:
 * .selector {
 *   @include visually-shown(relative);
 * }
 */
/**
 * Add an arrow element
 *
 * Accepts:
 * - $direction: {String} Positioning method for element
 * - $size: {String}
 * - $stroke: {String}
 *
 * Usage:
 * .selector {
 *   @include visually-shown(relative);
 * }
 */
.editor-styles-wrapper .block-editor-block-list__layout .section-faqs, body.frontend .section-faqs {
  position: relative;
  margin: 50px 0;
}
.editor-styles-wrapper .block-editor-block-list__layout .section-faqs__faqs, body.frontend .section-faqs__faqs {
  justify-content: center;
}
.editor-styles-wrapper .block-editor-block-list__layout .section-faqs__text, body.frontend .section-faqs__text {
  margin-bottom: 20px;
}
.editor-styles-wrapper .block-editor-block-list__layout .section-faqs__text *, body.frontend .section-faqs__text * {
  font-weight: 300;
  text-align: center;
  color: #53411C;
  font-size: 20px;
}
.editor-styles-wrapper .block-editor-block-list__layout .section-faqs__top, body.frontend .section-faqs__top {
  display: flex;
  justify-content: space-between;
  flex-flow: row;
  flex-wrap: nowrap;
  background-color: #f7f8f7;
  align-items: center;
  padding: 13px 20px;
  transition: all 0.4s ease;
}
.editor-styles-wrapper .block-editor-block-list__layout .section-faqs__content, body.frontend .section-faqs__content {
  height: 0;
  padding: 0 20px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}
.editor-styles-wrapper .block-editor-block-list__layout .section-faqs__content.open, body.frontend .section-faqs__content.open {
  padding: 13px 20px;
  visibility: visible;
  opacity: 1;
}
.editor-styles-wrapper .block-editor-block-list__layout .section-faqs__faq, body.frontend .section-faqs__faq {
  margin-bottom: 5px;
}
.editor-styles-wrapper .block-editor-block-list__layout .section-faqs__faq--question, body.frontend .section-faqs__faq--question {
  font-style: italic;
  font-family: "Georgia", sans-serif;
  font-weight: normal;
  margin-bottom: 30px;
  font-size: 30px;
}
@media only screen and (min-width: 992px) {
  .editor-styles-wrapper .block-editor-block-list__layout .section-faqs__faq--question, body.frontend .section-faqs__faq--question {
    font-size: 40px;
  }
}
.editor-styles-wrapper .block-editor-block-list__layout .section-faqs__faq--answer, body.frontend .section-faqs__faq--answer {
  margin-bottom: 20px;
}
.editor-styles-wrapper .block-editor-block-list__layout .section-faqs__faq--answer *:not(a), body.frontend .section-faqs__faq--answer *:not(a) {
  font-weight: 300;
  font-size: 15px;
  color: #53411C;
}
.editor-styles-wrapper .block-editor-block-list__layout .section-faqs__faq--inner, body.frontend .section-faqs__faq--inner {
  transition: all 0.4s ease;
  border: 1px solid transparent;
}
.editor-styles-wrapper .block-editor-block-list__layout .section-faqs__faq--inner.open, body.frontend .section-faqs__faq--inner.open {
  border-color: #a3d086;
}
.editor-styles-wrapper .block-editor-block-list__layout .section-faqs__faq--inner.open .section-faqs__top, body.frontend .section-faqs__faq--inner.open .section-faqs__top {
  background-color: transparent;
}
.editor-styles-wrapper .block-editor-block-list__layout .section-faqs .icon-dropdown, body.frontend .section-faqs .icon-dropdown {
  width: 26px;
  height: 26px;
  border: 2px solid #a3d086;
  border-radius: 50%;
  display: block;
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease;
}
.editor-styles-wrapper .block-editor-block-list__layout .section-faqs .icon-dropdown:before, body.frontend .section-faqs .icon-dropdown:before {
  content: "";
  width: 2px;
  height: 12px;
  background-color: #a3d086;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: visible;
  transition: all 0.4s ease;
  opacity: 1;
}
.editor-styles-wrapper .block-editor-block-list__layout .section-faqs .icon-dropdown:after, body.frontend .section-faqs .icon-dropdown:after {
  content: "";
  height: 2px;
  width: 12px;
  background-color: #a3d086;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.editor-styles-wrapper .block-editor-block-list__layout .section-faqs .icon-dropdown.open, body.frontend .section-faqs .icon-dropdown.open {
  border: 2px solid #fdbd3d;
}
.editor-styles-wrapper .block-editor-block-list__layout .section-faqs .icon-dropdown.open:before, body.frontend .section-faqs .icon-dropdown.open:before {
  visibility: hidden;
  opacity: 0;
}
.editor-styles-wrapper .block-editor-block-list__layout .section-faqs .icon-dropdown.open:after, body.frontend .section-faqs .icon-dropdown.open:after {
  background-color: #fdbd3d;
}

/*# sourceMappingURL=block.css.map*/