@charset "UTF-8";
/**
needs bootstrap function str-replace()
 */
/**
* Метод дополняет svg-sprite.scss.
* Позволяет получить чистый урл элемента спрайта для использования в псевдоэлементах или background-image
* Example: content: url(get-svg-url('checkmark', $user-variables: (fill: 'tomato')));
* Example: background-image: url(get-svg-url('heart', $user-variables: (stroke: 'red', fill: 'pink')));
*/
/**
вертикальные отступы
для каждого цвета указываются в порядке как в $grid-breakpoints
 */
.faq-list-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.faq-list-wrap .faq-item {
  background-color: #fff;
  width: 100%;
  border-radius: 12px;
}
.faq-list-wrap .faq-item__question {
  display: flex;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: #2A2A2A;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 24px;
}
@media (max-width: 991.98px) {
  .faq-list-wrap .faq-item__question {
    padding: 20px;
  }
}
.faq-list-wrap .faq-item__question:after {
  content: "";
  width: 30px;
  height: 30px;
  transition: all ease 0.5s;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 17 17'%3e%3cg clip-path='url(%23chevron_svg__a)'%3e%3cpath d='m15.506 4.94-7.24 7-7.132-6.795' stroke='%23E44315'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='chevron_svg__a'%3e%3cpath fill='white' transform='translate(.333 .5)' d='M0 0h16v16H0z'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e") center no-repeat;
  transform: rotate(180deg);
}
.faq-list-wrap .faq-item__question:hover {
  cursor: pointer;
}
.faq-list-wrap .faq-item__question.collapsed:after {
  transform: scale(1, 1);
}
.faq-list-wrap .faq-item__answer {
  font-size: clamp(14px, 2vw, 18px);
  padding: 0 24px 24px 24px;
  color: #666666;
  max-width: var(--content-max-width);
}
.faq-list-wrap .faq-item__answer ol {
  display: block;
  width: 100%;
  max-width: var(--content-max-width);
  counter-reset: olCounter;
  padding: 0;
  margin: 40px 0;
  font-weight: 400;
  font-size: var(--fz-h6);
}
.faq-list-wrap .faq-item__answer ol ul, .faq-list-wrap .faq-item__answer ol ol {
  margin: 15px 0;
}
.faq-list-wrap .faq-item__answer ol li {
  display: block;
  position: relative;
  padding-left: 20px;
  font-weight: 400;
  font-size: var(--fz-h6);
  line-height: 1.6;
}
@media (min-width: 992px) {
  .faq-list-wrap .faq-item__answer ol li {
    padding-left: 30px;
  }
}
.faq-list-wrap .faq-item__answer ol li::before {
  counter-increment: olCounter;
  content: counter(olCounter) ". ";
  position: absolute;
  top: 0;
  left: 0;
  color: #666666;
}
.faq-list-wrap .faq-item__answer ol li:nth-child(n+10)::before {
  content: counters(olCounter, ".");
}
.faq-list-wrap .faq-item__answer ol li:not(:last-child) {
  margin-bottom: 12px;
}
.faq-list-wrap .faq-item__answer ol li li::before {
  color: #797979;
}
.faq-list-wrap .faq-item__answer ul {
  display: block;
  width: 100%;
  max-width: var(--content-max-width);
  padding: 0;
  margin: 40px 0;
  font-weight: 400;
  font-size: var(--fz-h6);
}
.faq-list-wrap .faq-item__answer ul ul, .faq-list-wrap .faq-item__answer ul ol {
  margin: 15px 0;
}
.faq-list-wrap .faq-item__answer ul li {
  display: block;
  position: relative;
  padding-left: 26px;
  font-weight: 400;
  font-size: var(--fz-h6);
  line-height: 1.6;
}
.faq-list-wrap .faq-item__answer ul li:not(:last-child) {
  margin-bottom: 12px;
}
.faq-list-wrap .faq-item__answer ul li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 16px;
  height: 1px;
  background-color: #E44315;
}
.faq-list-wrap .faq-item__answer ul li li::before {
  background-color: #797979;
}
@media (max-width: 991.98px) {
  .faq-list-wrap .faq-item__answer {
    padding: 0 20px 20px 20px;
  }
}
