.faq-accordion {
  background-color: transparent;
  color: var(--dark);
  cursor: pointer;
  width: 100%;
  text-align: left;
  outline: none;
  transition: 0.4s;
  border:none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-accordion:after {
  content: '';
  background: url("../arrow.svg");
  font-weight: bold;
  float: right;
  margin-left: 5px;
  width: 83px;
  height: 83px;
  transition: 0.4s;
  background-repeat: no-repeat;
  background-size: 40px;
  background-position: right center;
}

.active, .faq-accordion:hover{
  color: var(--primary-color-50);
      padding-left: 20px;
}
.active:after , .faq-accordion:hover:after {
  background: url("../arrowPink.svg");
  background-repeat: no-repeat;
  background-size: 40px;
  background-position: center center;
}
.active:after {
  background-position: center center;
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border-bottom: 2px var(--dark) solid;
}