/********************
BASE +/- STYLES
********************/
.mwd-accordion-content {
  font-size: 18px;
  color: #5D5D5D;
  display: block;
  padding: 20px 20px 0px 20px;
  margin: 0px 0px 15px 0px;
  background: #f2f2f2;
  overflow: hidden;
  max-height: 100%;
  transition: all 0.3s ease-in-out;
}

.mwd-accordion-title > :first-child {
  font-size: 26px;
  color: #1E2D3B;
  text-transform: uppercase;
  max-width: 90%;
}

.mwd-accordion-title {
  position: relative;
  background: white;
  padding: 10px 20px;
}
.mwd-accordion-title .mwd-accordion-icon {
  position: absolute;
  background: #1E2D3B;
  width: 20px;
  height: 3px;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.mwd-accordion-title .mwd-accordion-icon:after {
  content: "";
  position: absolute;
  background: #1E2D3B;
  width: 3px;
  height: 20px;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

.active .mwd-accordion-icon:after {
  transform: translateY(-50%) rotate(90deg);
}