.list-faq {
  margin-bottom: 48px;
}
.list-faq .item-faq {
  margin-bottom: 24px;
  background: #FFFFFF;
  box-shadow: 10px 12px 20px rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  padding: 20px;
}
.list-faq .item-faq button {
  border: none;
  outline: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  background: none;
  color: rgba(0, 0, 0, 0.87);
  padding: 0;
  transition: 0.3s ease-in-out;
}
.list-faq .item-faq button i {
  transition: 0.3s ease-in-out;
}
.list-faq .item-faq button[aria-expanded=true] {
  color: #C60024;
}
.list-faq .item-faq button[aria-expanded=true] i {
  transform: rotate(90deg);
}
.list-faq .item-faq .content-faq {
  font-size: 16px;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #EEEEEE;
}
.list-faq .item-faq .content-faq p:last-child {
  margin-bottom: 0;
}
.list-faq .item-faq:last-child {
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .list-faq .item-faq {
    padding: 10px;
  }
  .list-faq .item-faq button {
    font-size: 14px;
    display: grid;
    grid-template-columns: auto auto;
    text-align: left;
    justify-content: space-between;
    grid-gap: 20px;
  }
  .list-faq .item-faq .content-faq {
    font-size: 14px;
    padding-top: 10px;
    margin-top: 10px;
  }
}/*# sourceMappingURL=detail.css.map */