.accordion-section.active .accordion-button_arrow:after {
  transform: rotate(-90deg);
}

.accordion-button {
  cursor: pointer;
}

.accordion-button_arrow:after {
  content: "";
  background: url("/static/semyanich/assets/arrow-right--gray.DHz00V8q.svg");
  font-size: 13px;
  color: #777;
  position: absolute;
  right: 15px;
  width: 8px;
  height: 15px;
  transform: rotate(90deg);
  transition: all 0.3s linear 0s;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}