﻿.panel-group {
  margin-bottom: 41.5px;
}
.accordion-wrapper .panel {
  -ms-border-radius: 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #CCC;
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}
.accordion-wrapper .panel:last-child {
  border-bottom: none;
}
.accordion-wrapper .panel .panel-heading {
  padding-left: 50px;
  background: transparent;
  text-transform: inherit;
  position: relative;
}
.accordion-wrapper .panel .panel-heading .panel-title {
  font-size: 20px;
  color: #3F4D5A;
}
.accordion-wrapper .panel .panel-heading .panel-title .arrow-decoration {
  width: 30px;
  height: 30px;
  margin-top: -15px;
  left: 0;
  background-color: #3F4D5A;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.accordion-wrapper .panel .panel-heading .panel-title .collapsed .arrow-decoration {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  background-color: #FC4C50;
}
.accordion-wrapper .panel .panel-collapse .panel-body {
  font-size: 16px;
  color: #666;
  border-top: none;
  text-align: justify;
}
.accordion-wrapper a:focus {
  outline: none;
}
.content .arrow-decoration {
  display: inline-block;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 50%;
  right: 14px;
  margin-top: -11px;
  background: #FC4C50;
  border-radius: 100%;
}
.content .arrow-decoration:after {
  top: 50%;
  left: 50%;
  margin-top: -5px;
  margin-left: -2px;
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #FFF;
  border-right: none;
}