/* Style the buttons that are used to open and close the accordion panel */
.resultlist div.reference div.accordion {
  cursor: pointer;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

/* 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) */
.resultlist div.reference .active, .resultlist div.reference div.accordion:hover {
  background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.resultlist div.reference div.accordionpanel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  width:100%;
  margin: 0px 0px 0px 30px;
  background-color: #ffffff;

}

.resultlist div.reference div.exports,
.resultlist div.reference div.additionalinfo {
  padding: 10px;
  border: 1px solid #cccccc;
}

.resultlist div.reference div.exports {
  margin: 0;
}

.resultlist div.reference div.accordion:before {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.resultlist div.reference div.active:before {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}
