button:hover,
button:focus {
  outline: none;
}
.accordion-container {
  width: 80%;
  max-width: 600px;
}
.accordion-container button:hover,
.accordion-container button:focus {
  color: inherit;
  background-color: transparent;
  outline: none;
}
.accordion-item {
  margin-bottom: 10px;
  font-family: Open Sans;
  font-size: 18px;
  font-weight: 300;
  text-align: left;
}
.accordion-header {
  color: #000;
  padding: 15px;
  font-family: Poppins;
  font-weight: 400;
  letter-spacing: 0em;
  text-align: left;
  border: none;
  width: 100%;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  font-size: 18px;
  white-space: normal;
}
.accordion-content {
  overflow: hidden;
  padding: 3px 15px;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.accordion-content p {
  margin: 15px 0;
}
.icon {
  color: #F7AB1E;
  font-size: 32px;
  transition: transform 0.3s ease;
}
.active .icon {
  transform: rotate(45deg);
}
/*# sourceMappingURL=questions.css.map */