.faq {
  /*padding: var(--size-space-14x) 0;*/
}
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.faq__info-title {
  max-width: 656px;
}
.faq__page-title {
  margin: 40px 0 20px 0;
}
.faq__content-list {
  background-color: #f7f7f7;
  padding: 48px;
}
.faq__content-item {
  position: relative;
  padding: 12px 0;
}
.faq__content-item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
  border-radius: 8px;
  background-color: #dfe1e2;
}
.faq__content-item:last-child::after {
  display: none;
}
.faq__content-item:last-child .faq__content-info {
  padding: 0 70px 0 40px;
}
.faq__content-item:last-child .faq__content-info.faq--active {
  padding: 16px 70px 0 40px;
}
.faq__content-item--hidden {
  display: none;
}
.faq__content-item.active .faq__content-btn::before {
  transform: translate(-50%) rotate(0deg);
}
.faq__content-item.active .faq__content-info {
  padding: 16px 70px 16px 40px;
  top: 0;
  opacity: 1;
  visibility: visible;
  max-height: 3000px;
}
.faq__content-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 16px;
  justify-content: space-between;
}
.faq__content-wrap::before {
  position: absolute;
  content: "";
  background-color: var(--color-base-primary-400);
  border-radius: 4px;
  width: 8px;
  height: 8px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.faq__content-subtitle {
  padding: 6px 0 6px 40px;
  margin: 0;
  align-self: center;
  font-weight: 600;
  cursor: pointer;
}
.faq__content-btn {
  width: 44px;
  height: 44px;
  background-color: #ebeced;
  position: relative;
  align-self: flex-start;
  cursor: pointer;
}
.faq__content-btn::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 2px;
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  background-color: var(--color-base-neutral-600);
}
.faq__content-btn::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 2px;
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transition: transform 0.3s;
  transform: translate(-50%) rotate(90deg);
  background-color: var(--color-base-neutral-600);
}
.faq__content-btn-showmore {
  margin-top: 32px;
}
.faq__content-info {
  padding: 0 70px 0 40px;
  position: relative;
  top: -1000%;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  transition: all 0.2s;
}
.faq__content-info ol {
  margin: 0 0 20px 0;
  padding: 0;
  list-style-type: none;
  counter-reset: number;
}
.faq__content-info ol li {
  padding-bottom: 16px;
  padding-left: 40px;
  border-bottom: 1px solid #E3E4E6;
  position: relative;
}
.faq__content-info ol li::before {
  position: absolute;
  counter-increment: number;
  content: "0" counter(number);
  width: unset;
  height: unset;
  font-size: 16px;
  font-weight: 600;
  background: unset;
  top: 0;
  left: 0;
}
.faq__content-info ol li:nth-child(n+10)::before {
  content: counter(number);
}
.faq__content-info ol li + li {
  margin-top: 16px;
}
.faq__content-info ol:last-child {
  margin: 0;
}
.faq__content-info ul {
  margin: 0 0 32px 0;
}
.faq__content-info ul li {
  position: relative;
  padding: 16px 0 16px 40px;
}
.faq__content-info ul li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #1CB5E3;
  top: 24px;
  left: 4px;
}
.faq__content-info ul li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #B4B7BA;
  bottom: 0;
  left: 0;
  opacity: 0.3;
}
.faq__content-info ul li:last-child {
  padding: 16px 0 0 40px;
}
.faq__content-info ul li:last-child::after {
  content: none;
}
.faq__content-info ul li:first-child {
  padding: 0 0 16px 40px;
}
.faq__content-info ul li:first-child::before {
  top: 8px;
}
.faq__content-info ul:last-child {
  margin: 0;
}

@media (max-width: 1201px) {
  .faq__inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 769px) {
  .faq__content-list {
    padding: 24px;
  }
  .faq__content-item:last-child .faq__content-info {
    padding: 0;
  }
  .faq__content-item:last-child .faq__content-info.faq--active {
    padding: 16px 0 16px 40px;
  }
}
@media (max-width: 450px) {
  .faq__inner {
    display: block;
  }
}
@media (max-width: 400px) {
  .faq__content-subtitle {
    padding: 6px 0 6px 25px;
  }
  .faq__content-item:last-child .faq__content-info.faq--active {
    padding: 16px 0 16px 25px;
  }
  .faq__content-item:last-child .faq__content-info .button {
    padding: 0 15px;
  }
}/*# sourceMappingURL=questions.css.map */