#sidebar{
  position: fixed;
  height: 100%;
  width: 100%;
  max-width: 375px;
  background: white;
  z-index: 9999;
  right: -100%;
  transition: 0.4s;

  -webkit-box-shadow: -20px 0px 17px -10px rgba(0,0,0,0.26);
  -moz-box-shadow: -20px 0px 17px -10px rgba(0,0,0,0.26);
  box-shadow: -20px 0px 17px -10px rgba(0,0,0,0.26);
}

#sidebar.show{
  right: 0;
}


#sidebar .head{
  display: flex;
  justify-content: end;
  padding: 0 10px;
  padding-top: 15px;
}

#sidebar ul{
  padding: 50px 0;
  list-style-type: none;

}

#sidebar li{
  background-color: #33302E;
  height: 96px;
  margin-bottom: 14px;
}

#sidebar li a,
#sidebar li button{
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'OpenSans', sans-serif !important;
  text-align: center;
  color: white;
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  width: 100%;
  height: 100%;
}

#sidebar li a:hover,
#sidebar li button:hover{
  text-decoration: none;
}

#sidebar li button{
  background-color: #D9192B;
}


.side-bar-overlay{
  display: none;
  position: fixed;
  background: #00000035;
  z-index: 9998;

  width: 100%;
  height: 100%;
}
.side-bar-overlay.show{
  display: block;
}
.close-sidebar{
  background-color: transparent;
  border: none;
  outline: none;
}