.help__btn {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  background: var(--greyBlue);
  padding: 0px 24px;
  border-radius: 15px;
  position: relative;
  z-index: 10;
  transition: all 0.3s ease;
}
.help__btn:first-child {
  margin-top: 40px;
}
.help__btn:not(:first-child) {
  margin-top: 20px;
}
.help__btn--arrow {
  transition: transform 0.35s ease;
}
.help__btn.active {
  border-radius: 15px 15px 0px 0px;
}
.help__btn.active .help__btn--arrow {
  transform: rotate(90deg);
}
.help__panel {
  width: 100%;
  background: var(--greyBlue);
  transition: all 0.3s ease;
  padding: 0px 24px;
  border-radius: 0px 0px 15px 15px;
  transform: translateY(-30px);
}
.help__panel.active {
  transform: none;
}
.help__panel--text {
  margin: 20px 0px;
  line-height: 1.4;
  font-weight: 400;
}

@media (max-width: 480px) {
  .help__btn {
    padding: 0px 16px;
    margin-top: 16px;
    height: 60px;
  }
  .help__btn--text {
    font-size: 14px;
  }
  .help__btn--arrow {
    width: 5px;
  }
  .help__panel {
    padding: 0px 16px;
  }
  .help__panel--text {
    font-size: 14px;
    margin: 10px 0px;
  }
  .help__btn:first-child {
    margin-top: 24px;
  }
}/*# sourceMappingURL=help.css.map */