.faqSection .content .list {
  display: flex;
  flex-direction: column;
}
.faqSection .content .list .item {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--silver-color);
  border-bottom: 1px solid var(--silver-color);
  cursor: pointer;
  padding: 20px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.faqSection .content .list .item .header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.faqSection .content .list .item .header p {
  font-weight: 700;
  width: calc(100% - 20px - 18px);
}
.faqSection .content .list .item .header button {
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
.faqSection .content .list .item .header button img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition-duration: 0.3s;
}
.faqSection .content .list .item .main {
  overflow: hidden;
  max-height: 0;
  transition-duration: 0.3s;
  padding-top: 0;
}
.faqSection .content .list .item.active .header button img {
  transform: rotateZ(-45deg);
  transition-duration: 0.3s;
}
.faqSection .content .list .item.active .main {
  transition-duration: 0.3s;
  padding-top: 10px;
}/*# sourceMappingURL=faqSection.css.map */