.custom-accordion .accordion-item {
  background: var(--bs-gray-400);
  border: 1px solid var(--bs-gray-500);
  border-radius: 1.6rem;
  overflow: hidden;
}

.custom-accordion .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 2rem 2.4rem;
  background: var(--bs-gray-400);
  color: var(--bs-purple);
  font-weight: 400;
  text-align: right;
  box-shadow: none;
}

.custom-accordion .accordion-button::after {
  display: none;
}

.custom-accordion .accordion-icon {
  order: -1;
  flex-shrink: 0;
  font-weight: 300;
  color: var(--bs-purple);
  line-height: 1;
  /* the literal +/- in the markup is hidden; ::before renders the real glyph */
  font-size: 0;
}

.custom-accordion .accordion-icon::before {
  content: "+";
  font-size: 2rem;
}

.custom-accordion .accordion-button:not(.collapsed) .accordion-icon::before {
  content: "\2212";
}

.custom-accordion .accordion-body {
  padding: 0 2rem 2.4rem;
  background: var(--bs-gray-400);
  color: var(--bs-gray-100);
  font-weight: 400;
  text-align: right;
}

.custom-accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
}
