**
 * Styling top level items
 */
.nav a,
.nav label {
  display: block;
  padding: 0.85rem;
  color: #fff;
  background-color: #151515;
  box-shadow: inset 0 -1px #1d1d1d;
  transition: all 0.25s ease-in;
}
.nav a:focus, .nav a:hover,
.nav label:focus,
.nav label:hover {
  color: #000;
  background:transparent;

    border-left: #19232c 2px solid;
    padding-left: 25px;
 
}
 
.nav label {
  cursor: pointer;
  display: block;
  letter-spacing: 1px;
}

/**
 * Styling first level lists items
 */
.group-list a,
.group-list label {
  padding-left: 1rem;
  /* background: #252525; */
  /* box-shadow: inset 0 -1px #373737; */
}
.group-list a:focus, .group-list a:hover,
.group-list label:focus,
.group-list label:hover {
  /* background: #131313; */
}

/**
 * Styling second level list items
 */
.sub-group-list a,
.sub-group-list label {
  padding-left: 4rem;
  /* background: #353535; */
  /* box-shadow: inset 0 -1px #474747; */
}
.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;
}
 
.nav__list li a, .nav__list li label{
    padding:5px 10px;
    text-decoration: none;
    font-size: 18px;
    color: #19232c;
    display: block;
    transition: 0.3s;
    margin:0;
    position: relative;
    text-transform: uppercase;
	letter-spacing: 1px;
}
.nav__list li label span{
	margin-top: 5px;
}
.group-list li label{
	font-size: 14px;
	border-bottom: 1px dotted #ccc;
	letter-spacing: 1px;
}
.group-list li a{
	font-size: 14px;
	border-bottom: 1px dotted #ccc;
	letter-spacing: 1px;
}
/**
 * Rotating chevron icon
 */
label > span {
  float: right;
  transition: transform 0.65s ease;
}

.nav__list input[type=checkbox]:checked + label > span {
  transform: rotate(90deg);
}
ul.sub-group-list li a {
	background: transparent;
	font-size: 14px;
}