.wrap {
  border: #ccc solid 1px;
  border-radius:0px;
}

.panel {
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: #ccc;
  background: none;
  box-shadow: none;
}

.panel:last-child {
  border-bottom: none;
}

.panel-group>.panel:first-child .panel-heading {
  border-radius: 4px 4px 0 0;
}

.panel-group .panel {
  border-radius: 0;
}

.panel-group .panel+.panel {
  margin-top: 0;
}

.panel-heading {
  border-radius: 0;
  border: none;
  padding: 0;
}

.panel-heading.active h4 a{
  color:#0b4198;
}

.panel-title a {
  display: block;
  padding:8px 20px;
  position: relative;
  font-size: 16px;
  font-weight: bold;
}

.panel-body {
  background: #fff;
}
.panel-body ol,
.panel-body ul{
  padding-left: 30px;
}
.panel-body ol li,
.panel-body ul li{
  white-space: normal !important;
  padding-left: 5px;
}

.panel:last-child .panel-body {
  border-radius: 0 0 4px 4px;
}

.panel:last-child .panel-heading {
  border-radius: 0 0 4px 4px;
  -webkit-transition: border-radius 0.3s linear 0.2s;
  transition: border-radius 0.3s linear 0.2s;
}

.panel:last-child .panel-heading.active {
  border-radius: 0;
  -webkit-transition: border-radius linear 0s;
  transition: border-radius linear 0s;
}

/* #bs-collapse icon scale option */

.panel-heading a:before {
  content: '\e867';
  width: 1em;
  display: inline-block;
  position: absolute;
  right: 8px;
  top: 10px;
  font-family: "mfn-icons";
  font-style: normal;
  font-weight: 400;
  speak: none;  
  text-decoration: none !important;  
  margin-right: .2em;
  text-align: center;
}

.panel-heading.active a:before {
  content: ' ';
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(0);
  transform: scale(0);
}

#bs-collapse .panel-heading a:after {
  content: ' ';
  width: 1em;
  display: inline-block;
  position: absolute;
  right: 5px;
  top: 10px;
  font-family: "mfn-icons";
  font-style: normal;
  font-weight: 400;
  speak: none;  
  text-decoration: none !important;  
  margin-right: .2em;
  text-align: center;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

#bs-collapse .panel-heading.active a:after {
  content: '\e945';
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

/* #accordion rotate icon option */

#accordion .panel-heading a:before {
  content: '\e316';
  font-size: 24px;
  position: absolute;
  font-family: 'Material Icons';
  right: 5px;
  top: 10px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

#accordion .panel-heading.active a:before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}