.accordion__wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.accordion__item {
  overflow: hidden;
  transition: all 0.2s ease-out;
}
.accordion__item[open] summary::before {
  transform: rotate(90deg);
}
.accordion__summary {
  padding: 8px 10px 10px 6px;
  background-color: #AA273E;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
  outline: none;
  font-family: "Dunbar Tall";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  user-select: none;
  gap: 8px;
}
@media screen and (min-width: 576px) {
  .accordion__summary {
    font-size: 16px;
    line-height: 22px;
  }
}
@media screen and (min-width: 768px) {
  .accordion__summary {
    font-size: 20px;
    line-height: 24px;
  }
}
.accordion__summary::-webkit-details-marker, .accordion__summary::marker {
  display: none;
}
.accordion__summary::before {
  content: "";
  display: inline-flex;
  width: 20px;
  height: 20px;
  mask: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='6' height='10' viewBox='0 0 6 10' fill='none'%3e%3cpath d='M1.736 0.666098L5.336 4.2401C5.514 4.4401 5.6 4.6701 5.6 4.9001C5.6 5.1301 5.512 5.3601 5.336 5.5361L1.736 9.1121C1.48 9.3941 1.092 9.4721 0.756 9.3321C0.422 9.1941 0.2 8.8641 0.2 8.5001L0.2 1.3261C0.2 0.962098 0.418 0.634098 0.756 0.494098C1.094 0.354097 1.48 0.406097 1.736 0.666098Z' fill='white'/%3e%3c/svg%3e");
  mask-size: 6px 10px;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  transition: all 0.2s ease-out;
}
.accordion__content {
  padding: 12px 20px 20px 20px;
}
.accordion__content h3 {
  color: #AA273E;
}

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