.accordion {
  color: #444;
  cursor: pointer;
  padding: 20px 0px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none !important;
  transition: 0.4s;
  background-color: white;
  line-height: 50px;
}

.accordion::before {
    content: '\002B';
    font-weight: bold;
    margin-right: 20px;
    border: 2px solid;
    border-radius: 50px;
    padding: 0px 25px;
}

.accordion.text-pink-dark::before {
  color: #B51A8A;
}

.accordion.text-green-1::before {
  color: #70BE1E;
}

.active::before {
  content: "\2212";
}

.panel {
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  font-size: 17px;
}

.panel ul li::before {
  top: 10px;
}

.panel ul li {
  margin-bottom: 5px !important;
}

@media only screen and (max-width: 768px){
  .accordion {
    font-size: 25px;
    line-height: 30px;
  }
  .panel{
    font-size: 14px;
  }
}