/*** Accordions ***/
.faq-container .accordion-block-container .accordion-toggle {
  background-color: white;
}

.accordion-toggle {
  display: flex;
  flex-direction: column;
  background-color: white;
}

.accordion-label {
  position: relative;
  color: black;
  font-size: 1.75rem;
  font-family: var(--primary-font);
  font-weight: 700;
  cursor: pointer;
  padding: 1.5rem 0;
  margin: 0;
  display: flex;
  border-top: 1px solid black;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.accordion-label:after {
  content: "";
  width: 1rem;
  height: 0.64581rem;
  background-color: black;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 11"><path d="M7.15474 9.98062L0.35261 3.17849C-0.117537 2.70835 -0.117537 1.94811 0.35261 1.48296L1.48296 0.35261C1.95311 -0.117537 2.71335 -0.117537 3.17849 0.35261L8 5.17412L12.8215 0.35261C13.2917 -0.117537 14.0519 -0.117537 14.517 0.35261L15.6474 1.48296C16.1175 1.95311 16.1175 2.71335 15.6474 3.17849L8.84526 9.98062C8.38512 10.4508 7.62488 10.4508 7.15474 9.98062Z"/></svg>');
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  transition: 0.3s;
}

.accordion-label.active:before {
  transform: rotate(-180deg);
}

.accordion-content {
  display: none;
  padding: 0 1.5rem 1.5rem 0;
}

.accordion-content > :first-child {
  margin-top: 0;
}

.accordion-content > :last-child {
  margin-bottom: 0;
}

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