/*!***************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[3].use[2]!../../node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[3].use[3]!./src/style.scss ***!
  \***************************************************************************************************************************************************************************************************************************************************/
.mx-faq__item {
  border-bottom: 1px solid #e6e6e6;
  padding: 1rem 0;
}

.mx-faq__question {
  cursor: pointer;
  font-weight: 600;
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mx-faq__caret {
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.mx-faq__item[open] .mx-faq__question .mx-faq__caret {
  transform: rotate(-180deg);
}

.mx-faq__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
  will-change: max-height, opacity;
}

.mx-faq__item[open] .mx-faq__answer {
  max-height: 2000px;
  opacity: 1;
  margin-top: 0.5rem;
}

.mx-faq__chevron {
  width: 30px;
  height: 30px;
  display: inline-block;
  transition: transform 0.3s ease;
  transform-origin: center;
}

.mx-faq__caret {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}

/* Hide the native details/summary marker so the SVG chevron is shown */
details.mx-faq__item > summary.mx-faq__question::-webkit-details-marker {
  display: none;
}

details.mx-faq__item > summary.mx-faq__question::marker {
  content: none;
}

details.mx-faq__item > summary.mx-faq__question {
  list-style: none;
}

/* Rotate the chevron when the item is open */
.mx-faq__item[open] .mx-faq__chevron,
.mx-faq__item[open] .mx-faq__caret {
  transform: rotate(0deg);
}

/*# sourceMappingURL=style-index.css.map*/