@charset "UTF-8";
.faq__item__answer {
  padding: 1rem;
  margin: 0;
  margin-left: 1rem;
  background-color: whitesmoke;
  font-size: 1.125rem;
  transition: max-height 0.4s, padding 0.4s, opacity 0.4s;
  transition-timing-function: ease-in-out;
  overflow: hidden;
}
.faq__item__answer[hidden] {
  display: block;
  max-height: 0;
  padding: 0 1rem;
  opacity: 0;
}
.faq__item__answer:not([hidden]) {
  max-height: 500px;
}
.faq__item__question {
  box-sizing: border-box;
  width: 100%;
  padding: 1rem;
  margin: 0;
  border: none;
  background-color: lightgray;
  font-family: inherit;
  font-size: 1.125rem;
  text-align: left;
}
.faq__item__question::after {
  content: "❮";
  float: right;
  transition: transform 0.4s ease-in-out;
}
.faq__item[open] > .faq__item__question::after {
  transform: rotate(-90deg);
}
@media (hover: hover) {
  .faq__item__question {
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
  }
  .faq__item__question:hover {
    background-color: gray;
    color: white;
  }
}
.faq__item {
  list-style: none;
}
.faq {
  display: block;
  padding: 0;
  box-shadow: 0 0 0.4rem gray;
  background-color: whitesmoke;
}
/*# sourceMappingURL=faq.css.map */