.faq-three-block {
  background: var(--background-second);
}
.faq-three-block .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.faq-three-block .items__body {
  display: flex;
  justify-content: space-between;
}
.faq-three-block .items__wrapper {
  width: calc(50% - 15px);
}
.faq-three-block .items__wrapper .item {
  border: 1px solid var(--bg-primary-stroke);
  border-radius: 20px;
  margin-bottom: 20px;
  background: transparent;
  transition: background 0.3s ease;
}
.faq-three-block .items__wrapper .item:last-child {
  margin-bottom: 0px;
}
.faq-three-block .items__wrapper .item.active {
  background: var(--background);
}
.faq-three-block .items__wrapper .item.active .item__title {
  color: var(--second);
}
.faq-three-block .items__wrapper .item.active .item__header::before {
  opacity: 1;
}
.faq-three-block .items__wrapper .item.active .item__status {
  transform: rotateX(180deg);
}
.faq-three-block .items__wrapper .item__title {
  font-weight: 800;
  font-size: 16px;
  line-height: 120%;
  color: var(--head-primary);
  padding-right: 15px;
  transition: color 0.3s ease;
}
.faq-three-block .items__wrapper .item__status {
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: var(--colors-main);
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
	flex-shrink:0;
}
.faq-three-block .items__wrapper .item__status svg {
  width: 11px;
  height: 6px;
  transition: all 0.3s ease-in-out;
}
.faq-three-block .items__wrapper .item__header {
  padding: 8px;
  padding-left: clamp(1.25rem, 1.106rem + 0.64vw, 1.875rem);
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.faq-three-block .items__wrapper .item__header::before {
  content: "";
  position: absolute;
  left: 30px;
  bottom: 0px;
  width: calc(100% - 60px);
  height: 1px;
  background: var(--second);
  opacity: 0;
}
.faq-three-block .items__wrapper .item__content {
  padding: 20px 30px 30px 30px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--main-text-primary);
  display: none;
  border-top: 1px solid var(--bg-primary-stroke);
}
.faq-three-block .items__archive-btn {
  margin-top: 30px;
  margin-right: auto;
}

@media (max-width: 991px) {
  .faq-three-block .items__body {
    flex-direction: column;
  }
  .faq-three-block .items__wrapper {
    width: 100%;
  }
  .faq-three-block .items__wrapper.left {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .faq-three-block .items__wrapper .item {
    border-radius: 10px;
  }
  .faq-three-block .items__wrapper .item__content {
    padding: 15px;
  }
  .faq-three-block .items__wrapper .item__title {
    font-size: 14px;
  }
  .faq-three-block .items__wrapper .item__header {
    padding: 15px;
  }
  .faq-three-block .items__wrapper .item__header::before {
    left: 20px;
    width: calc(100% - 40px);
  }
}/*# sourceMappingURL=block.css.map */