.collapsible-item{margin-bottom: 10.0}
.collapsible-item .title {
  padding: 8px;
  font-weight: bold;
  text-transform: uppercase;
  background-image: linear-gradient(to right, #075b87 , #0072ae);
  cursor: pointer;
  margin: 0;
  color: #fff;
  text-align: left;
  font-size: unset
}

.collapsible-item .title .icon {
  float: right;
  height: 20px;
  width: 20px;
  font-size: 19px !important;
  padding-right: 1px;
  display: none;
}

.collapsible-item .title .iconleft {
  float: left !important;
}

.collapsible-item .title.disabled {
  background: #eee;
  color: #999;
  cursor: text;
}

.collapsible-item > .body {
  position: relative;
  top: -4px;
  max-height: 0;
  overflow: hidden;
  border-top: 0;
  z-index: -1;
  -webkit-transition: max-height 0.5s ease;
  -moz-transition: max-height 0.5s ease;
  -o-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
}


.collapsible-item.open > .body {
  max-height: 5000px;
  z-index: 1;
}

