.spoiler {
  margin-bottom: -300px;
}
.spoiler__content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 40px;
}
.spoiler__content p {
  margin-bottom: 1em;
}
.open .spoiler__content {
  max-height: 2000px;
}
.spoiler__header {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 1em;
}
.spoiler__action {
  display: flex;
  align-items: center;
  justify-content: center;
}
.spoiler__trigger {
  border: none;
  color: #22262f;
  text-align: center;
  display: flex;
  align-items: center;
  background-color: transparent;
}
.spoiler__trigger-text {
  padding-bottom: 2px;
  border-bottom: 1px solid #22262F;
}
.spoiler__trigger-icon {
  width: 16px;
  height: 16px;
  margin-left: 12px;
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.66699 5.99992L4.00032 4.66659L8.00032 8.66659L12.0003 4.66659L13.3337 5.99992L8.00032 11.3333L2.66699 5.99992Z' fill='%2322262F'/%3E%3C/svg%3E%0A") 50% no-repeat;
}
.open .spoiler__trigger-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}