
.collapse-card {
  background-color: #fff;
  border-bottom: 0px solid #eee;
  cursor: pointer;
  color: #333;
  padding: 1rem;
  /*-webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s*/
}

.collapse-card .title {
  font-size: 1rem;
  line-height: 1.8rem
}

.collapse-card .title:before,
.collapse-card .title:after {
  content: " ";
  display: table
}

.collapse-card .title:after { clear: both }

.collapse-card .title i { float: left }

.collapse-card .title span {
  float: right;
  margin-left: 1rem
}

.collapse-card .title strong {
  display: block;
  margin-left: 4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.collapse-card .title strong::after {
  color: #404040;
  font-family: 'FontAwesome';
padding-left:.4rem;
  font-size: 1rem;
  line-height: 1.49rem
}

.collapse-card .body {
  padding: 1rem;
  display: none
}

.collapse-card * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

.collapse-card.active {
  -moz-box-shadow: 0 0px 0px 0 rgba(0,0,0,0.2), 0 0px 6px 0 rgba(0,0,0,0.18824);
  -webkit-box-shadow: 0 0px 0px 0 rgba(0,0,0,0.2), 0 0px 6px 0 rgba(0,0,0,0.18824);
  box-shadow: 0 0px 0px 0 rgba(0,0,0,0.2), 0 0px 6px 0 rgba(0,0,0,0.18824);
  z-index: 200;
  margin: 1rem -1rem;
}

.collapse-card.active:hover .title strong::after { content: "\f066" }

.collapse-card:hover .title strong::after { content: "\f065" }
