
.wrapper{
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 900
}


.wrapper .menu-btn{
  position: absolute;
  right: 20px;
  top: 25px;
  background: #4e565a;
  color: #fff;
  height: 45px;
  width: 45px;
  z-index: 9999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
#btn:checked ~ .menu-btn{
  position: fixed;
}
.wrapper .menu-btn i{
  position: absolute;
  transform: ;
  font-size: 23px;
  transition: all 0.3s ease;
}
.wrapper .menu-btn i.fa-times{
  opacity: 0;
}
#btn:checked ~ .menu-btn i.fa-times{
  opacity: 1;
  transform: rotate(-180deg);
}
#btn:checked ~ .menu-btn i.fa-bars{
  opacity: 0;
  transform: rotate(180deg);
}
#sidebar{
  position: fixed;
  background: #4e565a;
  height: 100%;
  width: 370px;
  overflow: hidden;
  right: -370px;
  transition: all 0.3s ease;
}

.site-overlay {
	position: fixed;
   background: #4e565a;
  height: 100%;
  /*width: 100%;*/
  overflow: hidden;
  right: -100%;
  transition: all 0.3s ease;	
}

#btn:checked ~ #sidebar{
	padding-top: 100px;
	top: 0;
	right: 0;
}

#btn:checked ~ .site-overlay{
	top: 0;
	  right: 0;
}

#sidebar .title{
  line-height: 65px;
  text-align: center;
  background: #4e565a;
  font-size: 25px;
  font-weight: 600;
  color: #f2f2f2;
  border-bottom: 1px solid #222;
}
#sidebar .list-items{
  position: relative;
  background: #4e565a;
  width: 100%;
  height: 100%;
  list-style: none;
  /* padding: 30px; */
}
#sidebar .list-items li{
  padding-left: 40px;
  line-height: 50px;
  border-top: 1px solid #797e80;
  border-bottom: 1px solid #797e80;
  transition: all 0.3s ease;
}
#sidebar .list-items li:hover{
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
#sidebar .list-items li:first-child{
  border-top: none;
}
#sidebar .list-items li a{
  color: #f2f2f2;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  height: 100%;
  width: 100%;
  display: block;
}
#sidebar .list-items li a i{
  margin-right: 20px;
}
#sidebar .list-items .icons{
  width: 100%;
  height: 40px;
  text-align: center;
  position: absolute;
  bottom: 100px;
  line-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#sidebar .list-items .icons a{
  height: 100%;
  width: 40px;
  display: block;
  margin: 0 5px;
  font-size: 18px;
  color: #f2f2f2;
  background: #4a4a4a;
  border-radius: 5px;
  border: 1px solid #383838;
  transition: all 0.3s ease;
}
#sidebar .list-items .icons a:hover{
  background: #404040;
}
.list-items .icons a:first-child{
  margin-left: 0px;
}

@keyframes animate {
  100%{
    transform: scale(0.8);
  }
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: relative;
  background-color: #4e565a;
  width: 370px;
  z-index: 1;
}

.dropdown-content li a {
  color: black;
  text-decoration: none;
  display: block;
}

/* .dropdown-content li a:hover {background-color: #804c25; padding-left: 0px;} */

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: #4e565a;}

@media (max-weight: 668px) {
	#sidebar{
  width: 670px;
  right: 670px;
}

}