.help-questions {
  padding: 12px 16px 0 16px;
  margin-bottom: 80px;
}

.help-questions__title {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 120%;
  color: var(--text-primary);
}

.help-questions__questions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top: 1px solid var(--bg-border-light);
}

.help-question {
  border-bottom: 1px solid var(--bg-border-light);
}

.help-question__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
}
.help-question__top img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.help-question__top.open img {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.help-question__title {
  font-size: 14px;
  line-height: 120%;
}

.help-question__content {
  font-size: 12px;
  line-height: 120%;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.help-question__content.open {
  visibility: visible;
  max-height: 350px;
  padding-bottom: 16px;
}