/* Style the button that is used to open and close the collapsible content */
.ant_collapsibleH1 {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.ant_collapsibleH2 {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.ant_collapsibleExpandAll {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

/* 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) */
.ant_active {
  background-color: #eee;
}
.ant_collapsibleH2:hover {
  background-color: #ccc;
}
.ant_collapsibleExpandAll:hover {
  background-color: #ccc;
}

/* Style the collapsible content. Note: hidden by default */
.ant_content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  text-align: left;
}

/* Style the collapsible content. Note: shown by default */
.ant_contentAll {
  padding: 0 18px;
  display: block;
  overflow: hidden;
  text-align: left;
}
