.helper-wrap {
  width: 100%;
  min-height: 100vh;
  height: auto;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding: 85px 0 5.25rem;
}

.accordion-header {
  border-bottom: 1px solid rgba(255, 255, 249, 0.2705882353);
}

.help-container .accordion-item {
  background-color: transparent;
  border: none;
}
.help-container .accordion-button {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
}
.help-container .accordion-button:after {
  background-image: url(../img/ic-arrow.webp);
  background-size: 70%;
  background-position: center;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.help-container .accordion-button:not(.collapsed)::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.help-container .accordion-button:before {
  background-image: url(../img/ic-help.png);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 5px;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
}
.help-container .accordion-body {
  background-color: #f8f9fa;
  padding: 0;
  color: var(--primary-color);
}
.help-container .accordion-body p {
  padding: 10px 0;
  line-height: 1.5rem;
}

#helper1 button, #helper2 button, #helper3 button, #helper4 button {
  color: var(--primary-color);
}
#helper1 .accordion-button:before, #helper2 .accordion-button:before, #helper3 .accordion-button:before, #helper4 .accordion-button:before {
  background-image: none;
  margin: 0;
}
#helper1 .accordion-body, #helper2 .accordion-body, #helper3 .accordion-body, #helper4 .accordion-body {
  padding: 1rem 1.25rem;
}