.collapsible {
  font-family: 'Source Sans Pro'!important;
  font-size: 20px!important;
  background-color: #ffffff;
  color: #005b36;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  /*border: solid 1px lightgray;*/
  /*border-bottom: 2px solid #005b36;*/
  border: none;
  text-align: left;
  outline: none;
  font-size: 17px;
  transition: 0.5s;
}

.collapsible-border {
  border-bottom: 1px solid #005b36;
}

.active, .collapsible:hover {
  background-color: #ffffff;
}

/* Adding font awesome icones in CSS code */

.collapsible:after {
  font-family: "Font Awesome 5 Free";
  content: "\f13a";
  font-weight: 900;
  float: right;
  margin-right: 10px;
}

.active:after {
  font-family: "Font Awesome 5 Free";
  content: "\f139";
  font-weight: 900;
  float: right;
  margin-right: 10px;
  color: #e07634;
}

.panel {
  padding: 0px 18px;
  /*background-color: rgb(236, 236, 236);*/
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  border-bottom: 1px solid #005b36;
}

button i {
  margin-right: 6px;
  font-size: 20px;
}

