/* Faq */
.faq__item {
  border: 1px solid var(--line-color);
  border-radius: 10px;
  margin-bottom: 10px;
}

.faq__item:hover {
  border-color: var(--main-color);
}

.faq__item.is-open {
  border-color: var(--light-grey-bg);
  background-color: var(--light-grey-bg);
}

.faq__header {
  position: relative;
  cursor: pointer;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  user-select: none;
  padding: 16px 30px 16px 53px;
}

.faq__header:before {
  content: '';
  position: absolute;
  left: 14px;
  top: 16px;
  width: 26px;
  height: 26px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%2353d48d' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round' d='M25.493 13c0 6.9-5.593 12.494-12.493 12.494C6.101 25.494.507 19.9.507 13 .507 6.1 6.101.507 13 .507 19.9.507 25.493 6.1 25.493 13ZM13 6.446v13.108M19.554 13H6.447'/%3E%3C/svg%3E");
}

.faq__item:hover .faq__header:before {
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23000' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round' d='M25.493 13c0 6.9-5.593 12.494-12.493 12.494C6.101 25.494.507 19.9.507 13 .507 6.1 6.101.507 13 .507 19.9.507 25.493 6.1 25.493 13ZM13 6.446v13.108M19.554 13H6.447'/%3E%3C/svg%3E");
}

.faq__item.is-open .faq__header:before {
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%2353d48d' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round' d='M25.493 13c0 6.9-5.593 12.494-12.493 12.494C6.101 25.494.507 19.9.507 13 .507 6.1 6.101.507 13 .507 19.9.507 25.493 6.1 25.493 13Zm-5.939 0H6.447'/%3E%3C/svg%3E");
}

.faq__item.is-open:hover .faq__header:before {
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23000' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round' d='M25.493 13c0 6.9-5.593 12.494-12.493 12.494C6.101 25.494.507 19.9.507 13 .507 6.1 6.101.507 13 .507 19.9.507 25.493 6.1 25.493 13Zm-5.939 0H6.447'/%3E%3C/svg%3E");
}

.faq__content {
  padding: 0 30px 19px 53px;
}

.faq__item:not(.is-open) .faq__content {
  display: none;
}

.faq__content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .faq__header {
    padding-right: 15px;
  }

  .faq__content {
    padding-right: 15px;
    padding-left: 15px;
  }
}
/* ! Faq */