.nav a, .nav label {
  display: block;
  padding: 5px;
  color: #767676;
  background-color: white;
  -webkit-transition: all .25s ease-in;
  transition: all .25s ease-in;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}
.nav a:focus, .nav a:hover, .nav label:focus, .nav label:hover {
  color: #f0750f;
  background: white;
}
.nav label { cursor: pointer; margin-bottom:0px!important; padding: 15px;}

/* Styling first level lists items*/
.group-list a, .group-list label {
  padding-left: 1rem;
  background: white;
}
.group-list label{padding:12px 15px; color: #4f4f4f;}
.group-list a:focus, .group-list a:hover, .group-list label:focus, .group-list label:hover { background:white; }

/* Styling second level list items*/
.sub-group-list a, .sub-group-list label {
  padding-left: 1.5rem;
  background: white;
  color: #4e4e4e;
}
.sub-group-list a:focus, .sub-group-list a:hover, .sub-group-list label:focus, .sub-group-list label:hover { background:white;}

/* Styling third level list items*/
.sub-sub-group-list a, .sub-sub-group-list label {
  padding-left: 2rem;
  background: white;
}
.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: white;}

/* Hide nested lists*/
.group-list, .sub-group-list, .sub-sub-group-list {
  height: 100%;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height .5s ease-in-out;
  transition: max-height .5s ease-in-out;
}
.nav__list input[type=checkbox]:checked + label + ul { /* reset the height when checkbox is checked */ max-height: 1000px; }
label > span {
  float: right;
  -webkit-transition: -webkit-transform .65s ease;
  transition: transform .65s ease;
  position:relative;
  top:6px;
}
.nav__list input[type=checkbox]:checked + label > span {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
[checked] {
  display: block !important;
  overflow: visible;
}
.sub-group-list label{padding:0!important;}