/* Collapse-O-Matic Light Style */
.collapseomatic {
  cursor: pointer;
  display: block;
  padding: 10px 15px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
  position: relative;
}
.collapseomatic:hover {
  background: #e8e8e8;
}
.collapseomatic:before {
  content: "\25B6";
  display: inline-block;
  margin-right: 8px;
  transition: transform 0.2s;
  font-size: 0.8em;
}
.collapseomatic.colomat-close:before {
  transform: rotate(90deg);
}
.collapseomatic_content {
  padding: 15px;
  border: 1px solid #ddd;
  border-top: none;
  margin-bottom: 10px;
  background: #fff;
}
