.faq-widget {
    font-family: 'Inter', sans-serif;
/*     border-bottom: 1px solid #ccc;
 */
}

.faq-item {
    /*   padding: 4px 0; */
border-bottom: 1px solid #E6E6E6;

}

.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    color: #1D1C1C;
    padding: 22px 0;
}

.faq-icon img {
    width: 48px;
    height: 48px;
    transition: transform 0.6s ease;
}

.faq-item.active .faq-icon img {
    transform: rotate(405deg);
}

.faq-answer {
    display: none;
    padding-top: 8px;
    color: #474747;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    width: 85%;
    margin-block-start: 0em;
    margin-block-end: 0em;
	padding-bottom: 20px;
	margin-top:-22px;
}
.faq-answer p{
    margin-block-start: 0em;
    margin-block-end: 0em;
}
.faq-item.active .faq-answer {
    display: block;
}

@media screen and (max-width: 768px) {
  .faq-widget {
    font-size: 16px;
  }

  .faq-question {
    flex-direction: row;
    font-size: 16px;
	padding: 10px 0;

  }

  .faq-title {
    flex: 1;
  }


  .faq-answer {
    font-size: 14px;
    padding-top: 0px;
    width: 90%;
	margin-top:-8px;

  }

  .faq-item {
    padding: 0px 0;
  }
}
