.las-faq-widget {
  margin: 0 auto;
  font-family: "Play", sans-serif;
}

.las-faq-item {
  border-bottom: 1px solid #E0E0E0;
  margin: 10px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.las-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 21.78px;
  color: #181D27;
  font-weight: 400;
  padding-left: 11px;
  position: relative;
  background: transparent;
  border: none;
  font-family: "Play";
  font-style: normal;
  line-height: 100%;
}

.las-faq-question::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  height: 100%;
  width: 4px;
  background-color: #F37246;
}

.las-faq-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center;
  transition: transform 0.3s ease;
}

.las-faq-item.is-open .las-faq-icon {
  transform: rotate(180deg);
}

.las-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.2s ease, opacity 0.2s ease, padding 0.3s ease;
  background: rgba(243, 114, 70, 0.1);
  padding: 0 20px;
  overflow: hidden;
  font-family: "Play";
  font-style: normal;
  font-weight: 400;
  font-size: 17.6988px;
  line-height: 100%;
  color: #181D27;
  margin-bottom: 10px;
}

.las-faq-answer > * {
  overflow: hidden;
}

.las-faq-item.is-open .las-faq-answer {
  grid-template-rows: 1fr;
  padding: 16px 20px;
}
.las-faq-item.is-open .las-faq-answer p:last-of-type {
  margin-bottom: 0;
}/*# sourceMappingURL=faq-widget.css.map */