html, body{font-family: "Open Sans",sans-serif;}
/* panel module */
.panel {
  display: table;
  width: 100%;
}

/* heading */
.panel.heading {
  padding-top: 4px;
  font-size: 14px;
  color: #ffffff;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.panel.heading.title {
  background-color: #cb1350;
  height: 36px;
  font-weight: normal;
}

/* body */
.panel.body {
  display: none;
  box-shadow: 2px 0px rgba(0,0,0,0.1);
  font-size: 13px;
  background-color: #ffffff;
  border-bottom: solid #e6e6e6 1px;
  font-weight: normal;
}

/* states */
.panel.body.is-open {
  display: table;
  box-sizing: border-box;
}