/* Style the button that is used to open and close the collapsible content */
.collapsible {
  background: linear-gradient(to bottom, rgba(30,87,153,1) 0%,rgba(41,137,216,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%);
  color: #444;
  cursor: pointer;
  padding: 5px 5px;
  width: 100%;
  height: 37px;
  border-radius: 3px;
  text-align: center;
  outline: none;
}

/* 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: linear-gradient(to bottom, rgba(30,87,153,1) 0%,rgba(41,137,216,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%);
}

/* Style the collapsible content. Note: hidden by default */
.CollapseContent {
  padding: 5px 5px;
  display: none;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(30,87,153,1) 0%,rgba(41,137,216,1) 50%,rgba(32,124,202,1) 51%,rgba(125,185,232,1) 100%);
}