﻿

.accordion, .accordion * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.accordion {
  overflow: hidden;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  background: #fff;
  color: #fff;
  margin: 20px;
  width: 100%;
}

.accordion-section-header {
  width: 100%;
  padding: 15px;
  display: inline-block;
  border-bottom: 1px solid #ccc;
  background: #4b4a89;
  transition: all linear 0.15s;
  font-size: 1.200em;
  color: #fff;
  cursor:pointer;
  text-align:left;
}

.accordion-section-header span{ text-align:right; float:right;}

.accordion-section-header.active, .accordion-section-header:hover {
  background: #282763;
  text-decoration: none;
  color:#f1f1f1;
}

.accordion-section:last-child .accordion-section-header { border-bottom: none; }

.accordion-section-content {
  padding: 15px;
  display: none;
}
