@charset "utf-8";
/* CSS Document */

/* Accordion side menu
---------------------------------------------------- */
.accordion dt  {
	display: inline-block;
	padding: 15px 15px;
	width: 100%;
	/*font-size: 15px;*/
	/*font-weight: 700;*/
	color: #fff;
	background:#2c7b47;
	cursor:pointer;
}
.accordion dt h3{ 
  display: inline-block; 
  font-weight: bold; 
  font-size: 110%;
}
@media print, screen and (min-width: 992px){
  .accordion dt{
    text-align: center;
  }
}

.accordion dd{ display:none; font-size: 0.9em;}
.accordion dd ul {
	list-style: none;
	padding: 0px;
	margin:0px;
}
.accordion dd li {
	border-bottom: 1px solid #ddd;
	background-color: #f3f3f3;
}
.accordion dd li a {
	display: block;
	padding: 10px 15px;
	color: #333;
	font-size: 14px;
}

.hamburgerMenu,
.hamburgerMenu span{display: inline-block;
  transition: all .4s;
  box-sizing: border-box;}

.hamburgerMenu {
  position: relative;
  width: 24px;
  height: 24px;
  float: right;
  display: block;
  background: none;
  border: none;
}
.hamburgerMenu:focus{ outline: none;}
.hamburgerMenu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
}
.hamburgerMenu span:nth-of-type(1) {
  top: 0;
}
.hamburgerMenu span:nth-of-type(2) {
  top: 11px;
}
.hamburgerMenu span:nth-of-type(3) {
  bottom: 0;
}
.active .hamburgerMenu span:nth-of-type(1) {
  -webkit-transform: translateY(11px) rotate(-315deg);
  transform: translateY(11px) rotate(-315deg);
}
.active .hamburgerMenu span:nth-of-type(2) {
  opacity: 0;
}
.active .hamburgerMenu span:nth-of-type(3) {
  -webkit-transform: translateY(-11px) rotate(315deg);
  transform: translateY(-11px) rotate(315deg);
}

 @media (min-width: 992px) {
	 .accordion dt  {background-image:none; cursor:default;}
	 .accordion dt.active  { background-image:none;}
	 .accordion dd{ display: block}
   .hamburgerMenu { display: none;}
}

/*   ===   END   ===   */


