@charset "utf-8";
/* CSS Document */

.nav label {
  display: block;
  padding:20px 30px 20px 30px;
  color: #222;
  background-color: #ddd;
  transition: all 0.25s ease-in;
	font-weight: normal;font-size:18px;margin-bottom: 10px
}
.nav .group-list label {
  padding:15px 30px 15px 30px;
}
.nav label.active{ background: #1a66aa;}
.nav label.active a{ color:#fff}
.nav label.active a:hover{ color:#fd0}
.nav a:focus, .nav a:hover,
.nav label:focus,
.nav label:hover {
  color: rgba(255, 255, 255, 0.9);
  background: #1a66aa;
}
.nav label:hover a{ color:#fff}

.nav .sub-group-list a{
  padding:20px 30px 20px 30px;}

.nav label {
  cursor: pointer;
}
.group-list{width: 100%}
/**
 * Styling first level lists items
 */

.group-list a,
.group-list label {
 /* padding-left: 30px;
  background: #eee;*/
 font-size:14px;
}
.group-list a:focus, .group-list a:hover,
.group-list label:focus,
.group-list label:hover {
  background: #131313;
	font-size:14px
}

/**
 * Styling second level list items
 */
.sub-group-list a,
.sub-group-list label {
  padding-left: 4rem;
  background: #eee;
}
.sub-group-list a:focus, .sub-group-list a:hover,
.sub-group-list label:focus,
.sub-group-list label:hover {
  background: #232323;
}

/**
 * Styling third level list items
 */
.sub-sub-group-list a,
.sub-sub-group-list label {
  padding-left: 6rem;
  background: #454545;
  box-shadow: inset 0 -1px #575757;
}
.sub-sub-group-list a:focus, .sub-sub-group-list a:hover,
.sub-sub-group-list label:focus,
.sub-sub-group-list label:hover {
  background: #333333;
}

/**
 * Hide nested lists
 */
.group-list,
.sub-group-list,
.sub-sub-group-list {
  height: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}

.nav__list input[type=checkbox]:checked + label + ul {
  /* reset the height when checkbox is checked */
  max-height: 1000px;
}

/**
 * Rotating chevron icon
 */
label > i {
  float: right;
  transition: transform 0.65s ease;
}

.nav__list input[type=checkbox]:checked + label > span {
  transform: rotate(90deg);
}

.nav label.active{ color:#fff !important}