.accordionLight .accordionLight__header {
  padding: 17px 0;
  cursor: pointer;
}
.accordionLight .accordionLight__header button {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: transparent;
  border: 0;
  gap: 20px;
  text-align: left;
  width: 100%;
}
.accordionLight .accordionLight__header button .accordionLight__header__arrow {
  border: solid #004494;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(45deg);
  border-color: #666666;
  margin: 3px 0 0 0;
}
.accordionLight .accordionLight__header button h3 {
  color: #666666;
  margin: 0;
}
.accordionLight .accordionLight__header.accordionLight__header--arrowLeft button {
  justify-content: flex-start;
  align-items: center;
}
.accordionLight .accordionLight__header.accordionLight__header--arrowLeft button .accordionLight__header__arrow {
  margin: 0 0 5px 20px;
}
.accordionLight .accordionLight__header.accordionLight__header--arrowLeft button[aria-expanded="true"] .accordionLight__header__arrow {
  margin-bottom: 0;
}
.accordionLight .accordionLight__content {
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.65, 0.05, 0.36, 1);
  height: 0;
  border-bottom: solid 1px #f0f0f0;
}
.accordionLight.accordionLight--editMode .accordionLight__content {
  max-height: none;
  height: auto;
  overflow: visible;
}
.accordionLight .is-active .accordionLight__content,
.accordionLight.is-active .accordionLight__content {
  padding-bottom: 15px;
}
.accordionLight .is-active .accordionLight__header button .accordionLight__header__arrow,
.accordionLight.is-active .accordionLight__header button .accordionLight__header__arrow {
  transform: rotate(225deg);
}
