/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}
.accordion:not(.active){
  margin-bottom: 30px;
}
.accordion > i.fa-chevron-up{
  display: none;
}
.accordion > i.fa-chevron-down{
  display: initial;
}
.accordion.active > i.fa-chevron-up{
  display: initial;
}
.accordion.active > i.fa-chevron-down{
  display: none;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordion.active, .accordion:hover, .accordion:focus {
  background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.accordion_panel {
  padding: 0 5px;
  background-color: white;
  display: none;
  overflow: hidden;
  border: solid 1px lightgrey;
  margin-bottom: 30px;
}

.accordion_panel > ul{
  margin-left: 0 !important;
  list-style: none;
}
.accordion_panel > ul li {
    font-size: 13px;
}
.accordion_panel > ul li i{
    font-size: 16px;
}