
.collapsible {
  background-color: #fff;
  color: #858585;
  cursor: pointer;
  padding: 0px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 12px;
}

.active, .collapsible:hover {
  background-color: #acabaa;
  color: #6c6c6c;
}

.collapsible:after {
  content: 'Reviews... \002B';
  color: #6c6c6c;
  font-weight: normal;
  float: right;
  margin-left: 5px;
  padding: 5px;
}

.active:after {
  content: "Reviews... \2212";
  color: #6c6c6c;
}

.content {
  padding: 0 0px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  color: #858585;
  background-color: #f1f1f1;
}