@import "~@amber-engine/amber-content/lib/styles/variables";

.accordionItem {
  display: flex;
  flex-direction: column;
  background-color: $off-white;
  border: 1px solid $gray;
  border-radius: 2px;

  & + & {
    margin-top: 1rem;
  }
}

.accordionTitle {
  flex: 1;
  text-align: center;
  cursor: pointer;
  user-select: none;
  color: $medium-blackberry;
  h3 {
    font-size: 16px;
  }
}

.accordionBody {
  flex: 1;
  max-height: 999px;
  transition: max-height 0.5s;
}

.hide {
  max-height: 0px;
  overflow: hidden;
}

.bodyWrapper {
  padding: 1rem;
}
