/* ============================================
   ACCORDION - NetApp Storage LP
   ============================================ */

.ac {
  border: none !important;
}

.ac .ac-header {
  max-width: 100% !important;
}

.ac .ac-trigger {
  display: flex !important;
  padding-left: 0 !important;
  align-items: center;
  gap: 20px;
  color: #de241b !important;
  font-weight: 700 !important;
  font-family: var(--font-gotham-bold) !important;
  width: 100% !important;
}

.ac .ac-trigger svg {
  transition: all 200ms ease;
  transform: rotate(-90deg);
}

.ac .ac-trigger::after {
  display: none;
}

.ac.is-active svg {
  transition: all 200ms ease;
  transform: rotate(0deg);
}

.ac .ac-panel .ac-text {
  padding-left: 0 !important;
  max-width: 58ch !important;
  font-family: var(--font-gotham-book);
}

