.accordion {
  background-color: #0DB867;
  color: #FFFFFF;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  border: none;
  border-bottom: 1px solid #FFFFFF;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #EA3A97;
}

.panel {
  padding: 0 5px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}