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

.accordion {
  width: 100%;
  /* max-width: 360px; */
  margin: 10px auto 10px;
  background: #FFF;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  list-style-type: none;
  border: solid 1px #999;
}

.accordion .link {
  cursor: pointer;
  display: block;
  padding: 15px 15px 15px 22px;
  color: #4D4D4D;
  font-size: 16px;
  font-weight: 900;
  border-bottom: 1px solid #CCC;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.accordion .link:hover {
	background: #cc2222;
	color: #fff !important;
}
.accordion .link:hover a {
	color: #fff !important;
}

.accordion .link a {
  display: block;
  color: #cc2222;	 
  font-size: 16px !important;
  font-weight: 900;
  text-decoration: none;
  padding: 0px !important;
  margin: 0px;
}


.accordion li:last-child .link { border-bottom: 0; }

.accordion li i {
  position: absolute;
  top: 16px;
  left: 12px;
  font-size: 22px;
  color: #595959;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.accordion li i.fa-chevron-down {
  right: 12px;
  left: auto;
  font-size: 16px;
}

.accordion li.open .link { color: #b63b4d; }

.accordion li.open i { color: #b63b4d; }

.accordion li.open i.fa-chevron-down {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

/**
 * Submenu
 -----------------------------*/


.submenu {
  display: none;
  background: #ddd;
  font-size: 16px;
  list-style-type: none;
}

.submenu li { border-bottom: 1px solid #aaa; }

.submenu a {
  display: block;
  text-decoration: none;
  font-size: 16px !important;
  font-weight: 500;
  color: #111;
  padding: 16px;
  padding-left: 42px !important;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.submenu a:hover {
  background: #777;
  color: #FFF;
}