


input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}


/* Accordion styles */
/*.menutabs {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
}
*/
.menutab {
width: 100%;
color:#DDDDDD;
overflow: hidden;
font-family: 'London-Tube';
}
.menutab-label {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding: .3em;

  font-weight: normal;
    color: #DDDDDD;
  cursor: pointer;
  /* Icon */
}
.menutab-label:hover {
   font-weight: bold;
  color: #DDDDDD;

   
}

.menutab-label::after {
 content: "";
  width: 1em;
  height: 1em;
  text-align: center;
     font-weight: bold;
 
}

.menusubtab-label {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding: .3em;

  font-weight: normal;
    color: #DDDDDD;
  

}
.menusubtab-label:hover {
   font-weight: bold;
    color: #DDDDDD;
  
}

.menusubtab-label::after {
 content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
     font-weight: bold;
  
}
.menutab-content {
    position: relative;
  max-height: 0;
  padding: 0 1em;
  margin-left:2em;
  color: #999999;
  overflow: hidden;
     background-color: rgba(0,0,0,0.2);
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
 -webkit-transition: all .25s ease;
  transition: all .25s ease;
 
}
.menutab-close {
  display: -webkit-box;
  display: block;
  -webkit-box-pack: end;
          justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  color: #999999;
  cursor: pointer;
  
 
   
}
.menutab-close:hover {
  background: #DDDDDD;
}

input:checked + .menutab-label {
 font-weight: bold;
  color: #DDDDDD;
 
}
input:checked + .menusubtab-label::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
           
  
}
input:checked ~ .menutab-content {
  max-height: 100vh;
  padding: 1em;
    -webkit-transition: all .75s ease;
  transition: all .75s ease;
  
}