/**
 * Styling top level items
 */
.nav {
  margin-top: 1.2rem;
}

.nav label {
  display: block;
  padding: 0.45rem 0.7rem;
  color: #909099;
  background-color: #fff;
  box-shadow: inset 0 0px #ccc;
  transition: all 0.25s ease-in;
}

.nav a {
  text-decoration: none;
  color: #878787;
  line-height: 1.7;
}

.nav a:focus,
.nav a:hover,
.nav label:focus,
.nav label:hover {
  color: #434343;
  background: #ededee;
}

.nav label {
  cursor: pointer;
}

/**
    * Styling first level lists items
    */
.group-list a,
.group-list label {
  margin-left: 2rem;
  background: #fff;
  box-shadow: inset 0 0px #ccc;
}

.group-list a:focus,
.group-list a:hover,
.group-list label:focus,
.group-list label:hover {
  background: #fff;
}

/**
    * Styling second level list items
    */
.sub-group-list a,
.sub-group-list label {
  margin-left: 4rem;
  background: #fff;
  box-shadow: inset 0 0px #ccc;
}

.sub-group-list a:focus,
.sub-group-list a:hover,
.sub-group-list label:focus,
.sub-group-list label:hover {
  background: #fff;
}

/**
    * Styling third level list items
    */
.sub-sub-group-list a,
.sub-sub-group-list label {
  margin-left: 5.3rem;
  background: #fff;
  box-shadow: inset 0 0px #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: #fff;
}

/**
    * 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 > span {
  float: right;
  transition: transform 0.65s ease;
}

.nav__list input[type=checkbox]:checked + label > span {
  transform: rotate(90deg);
}/*# sourceMappingURL=multilevel-menu.css.map */