/* ==== SCSS Utils ==== */
/* ========== Layout & Grid ========== */
/* ========== Fonts ========== */
/* ========== Elderplan Color Palette ========== */
/* Based on Figma designs - 2026-05-18 */
/* ========== Semantic Color Aliases ========== */
/* ========== Spacing ========== */
/* ========== Borders ========== */
/* ========== Z-Index ========== */
/* ========== SVGS ========== */
/* ==== SCSS Utils ==== */
/* ========== Font Weights ========== */
/* ========== Font Sizes ========== */
/* ==== SCSS Utils ==== */
/* ========== Breakpoints for Mixins ========== */
/* ======= Media Queries ======= */
/* Mobile */
/* Tablet */
/* Desktop */
/* Desktop XL */
/* Desktop XXL */
/* Custom media queries */
/* ==== SCSS Utils ==== */
/* ==== SCSS Utils ==== */
/* ======= Media ======= */
/* ======= SVG ======= */
/* ======= Typography ======= */
/* ======= Storybook Goodies ======= */
/* ======= Form Spacing ======= */
/* ======= Input Styles ======= */
/* ==== SCSS Utils ==== */
/* ======= Buttons ======= */
/* Base button styles */
/* Primary button styles */
/* Secondary button styles */
/* Blue button styles */
/* Green button styles */
/* Link button styles */
/* Button Icon styles */
/* Button Icon styles */
/* ==== SCSS Utils ==== */
/* ======= Layout ======= */
/* ======= FLEXBOX MIXINS ======= */
/* ======= GRID MIXINS ======= */
/* ==== SCSS Utils ==== */
/* MJ 7.17.24: Only call utilites like variable definitions and mixins.
* ! Do not add any class or ID selects, or it will render output into EVERY .css file.
* Add styles to global.scss instead to add styles globally.
*/
.faq {
  display: block;
}
@media (min-width: 992px) {
  .faq {
    padding-left: 80px;
    padding-right: 80px;
  }
}

.faq__heading {
  margin-bottom: 24px;
  padding-left: 24px;
}

.faq__items {
  border: 1px solid #999999;
  border-radius: 0 8px 0 0;
  margin-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
}

.faq__item {
  border: none;
}
.faq__item:last-of-type {
  border-bottom: none;
}

.faq__question {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  margin-left: -24px;
  padding: 0;
}
.faq__question::before {
  content: "";
  display: block;
  grid-column: 1;
  grid-row: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #2E8500;
}
.faq__question::after {
  content: "";
  display: block;
  position: static;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: center;
  width: 50%;
  height: 50%;
  transform: none;
  background-color: #ffffff;
  background-image: none;
  -webkit-mask: url("../../assets/icons/accordion-open.svg") center/contain no-repeat;
  mask: url("../../assets/icons/accordion-open.svg") center/contain no-repeat;
}

.faq__question-text {
  font-weight: 400;
}

.faq__item[open] .faq__question::after {
  transform: none;
  -webkit-mask-image: url("../../assets/icons/accordion-close.svg");
  mask-image: url("../../assets/icons/accordion-close.svg");
}

.faq__answer {
  margin-left: 40px;
  margin-bottom: 16px;
}
/*# sourceMappingURL=faq.css.map */