 /* Style the button that is used to open and close the collapsible content */
.collapsible {
  background-color: #746f64;

  cursor: pointer;
  padding: 18px;

  border: none;
  border-radius: 10px 10px 0 0;
  text-align: left;
  outline: none;
  font-size: 15px;
  
}
#content .collapsible {
  color: #f0fff0;
}
#content h2.collapsible {
  margin-bottom: 0;
}
ul.content, ul.content p {
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}

#content ul.content p {
  margin-left: 0;
}
/* 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) */
.active, .collapsible:hover {
  background-color: #5c433c;
  color: #EEDEB9;
}

/* Style the collapsible content. Note: hidden by default */
.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
} 
.collapsible:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #f0fff0;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
  color: #f0fff0;
}
