/* ==== 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.
*/
.accordion-group__items {
  display: grid;
  gap: 16px;
}

.accordion-group__header {
  margin-bottom: 24px;
}

.accordion-group__heading {
  color: #444444;
  font-size: 2rem;
  margin-bottom: 8px;
}
@media (min-width: 783px) {
  .accordion-group__heading {
    font-size: 2.375rem;
  }
}

.accordion-group__description {
  color: #444444;
  font-size: 1.53125rem;
  line-height: 1.35;
}

.accordion {
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  cursor: default;
  overflow: hidden;
}

.accordion > .accordion__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  padding: 0;
}
.accordion > .accordion__summary::-webkit-details-marker {
  display: none;
}
.accordion > .accordion__summary::after {
  display: none;
}

.accordion__summary-main {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 16px;
}

.accordion__title {
  min-width: 0;
  line-height: 1.2;
}

.accordion__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.accordion__icon img {
  display: block;
  max-width: 1.75rem;
  max-height: 1.75rem;
}

.accordion__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.accordion__toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.accordion__toggle-icon svg {
  display: block;
  width: 0.75rem;
  height: 0.75rem;
}

.accordion__toggle-icon--close {
  display: none;
}

.accordion[open] .accordion__toggle-icon--open {
  display: none;
}
.accordion[open] .accordion__toggle-icon--close {
  display: inline-flex;
}

.accordion__content {
  padding: 24px;
}

.accordion__section + .accordion__section {
  margin-top: 24px;
}

.accordion__section-title {
  color: #444444;
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.625rem;
  text-transform: uppercase;
}

.accordion__text {
  color: #444444;
  font-size: 1.25rem;
  line-height: 1.5;
}
.accordion__text strong,
.accordion__text b {
  font-weight: 700;
}
.accordion__text ul {
  list-style: disc;
  margin-left: 24px;
}

.accordion__button {
  font-family: "Open Sans", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: left;
  text-wrap: auto;
  box-shadow: none;
  cursor: pointer;
  padding: 12px 16px;
  flex-grow: 0;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
  border-radius: 100px;
}
.accordion__button.disabled {
  pointer-events: none;
  cursor: not-allowed;
  background-color: #CCCCCC;
  border-color: #CCCCCC;
}
@media (min-width: 576px) {
  .accordion__button {
    width: fit-content;
  }
}
.accordion__button span {
  display: block;
}
.accordion__button svg {
  fill: #1C1B1F;
}
.accordion__button {
  color: #ffffff;
  background-color: #2E8500;
  border: none;
  border-radius: 0;
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  padding: 1rem 16px;
}
.accordion__button:hover, .accordion__button:focus-visible {
  color: #ffffff;
  background-color: #336A06;
  text-decoration: none;
}
.accordion__button {
  margin-top: 24px;
}

.accordion-group--benefit .accordion-group__items {
  gap: 16px;
}

.accordion--benefit {
  border: 3px solid #e6e6e6;
  border-radius: 0.5rem;
}
.accordion--benefit:last-of-type {
  border: 3px solid #e6e6e6;
}
.accordion--benefit .accordion__summary {
  min-height: 4.25rem;
  padding: 0.625rem 16px;
  color: #0075B6;
  background-color: #ffffff;
}
@media (min-width: 783px) {
  .accordion--benefit .accordion__summary {
    padding: 8px 16px;
  }
}
.accordion--benefit .accordion__title {
  color: #0075B6;
  font-size: 1.5rem;
  font-weight: 600;
}
@media (min-width: 783px) {
  .accordion--benefit .accordion__title {
    font-size: 1.875rem;
  }
}
.accordion--benefit .accordion__icon {
  width: 3rem;
  height: 3rem;
  color: #006E1B;
  background-color: #EBF8E8;
  border: 1px solid #EBF8E8;
  border-radius: 50%;
}
.accordion--benefit .accordion__toggle {
  color: #0075B6;
}
.accordion--benefit .accordion__content {
  border-top: 0;
}
.accordion--benefit[open] {
  border-color: #e6e6e6;
  border-radius: 0.5rem 0.5rem 0 0;
  overflow: visible;
}
.accordion--benefit[open] .accordion__summary {
  color: #ffffff;
  background-color: #0075B6;
  border: 3px solid #0075B6;
  border-bottom: 3px solid #0075B6;
  border-radius: 0.5rem 0.5rem 0 0;
  margin: -3px -3px 0;
}
.accordion--benefit[open] .accordion__title,
.accordion--benefit[open] .accordion__toggle {
  color: #ffffff;
}
.accordion--benefit[open] .accordion__icon {
  color: #ffffff;
  background-color: transparent;
  border: 1px solid #ffffff;
}
.accordion--benefit[open] .accordion__icon img {
  filter: brightness(0) invert(1);
}
.accordion--benefit[open] .accordion__content {
  border-top: 0;
}
/*# sourceMappingURL=accordion.css.map */