#offcanvas-menu.toggled {
	transform: translateX(0);
}

#offcanvas-menu {
	position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background: #000000e3;
    
    transform: translateX(280px);
    transition: .5s;
    z-index: 99999;
}

.menu-wrapper {
	height: 100%;
	overflow: auto;
    padding-top: 60px;
}

.menu-toggle i{
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 25px;
	text-align: center;
	background-color: #0a68ca;
	cursor: pointer;
	color: #ffffff;
}

.menu-toggle {
	position: fixed;
	top: 10px;
    right: 10px;
    transition: .1s;
    z-index: 9999;
}

.menu-toggle.sticky {
	position: fixed;
	width: 100%;
    top: 0;
    right: 0;
    text-align: right;
    padding: 10px 10px 10px 0;
	background-color: #0a68cad6;
    border-radius: 0;
}

.menu-toggle.sticky::before {
	content: "";
	position: absolute;
    width: 130px;
    height: 30px;
    left: 0;
    right: 0;
    top: 50%;
    margin: -15px 0;
	background: url(../images/sticky-logo.png) no-repeat;
}

#offcanvas-menu .close-menu {
    position: absolute;
    top: 15px;
	margin-left: -20px;
}

#offcanvas-menu .close-menu i {
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 20px;
	text-align: center;
	border-radius: 50%;
	cursor: pointer;
	color: #ffffff;
	background-color: #0a68ca;
}

#offcanvas-menu .menu-wrapper li a{
	font-size: 16px;
	font-weight: 500;
	color: #ffffff;
	border-bottom: 1px solid #b7becd;
    padding: 10px 30px;
    display: block;
}

#offcanvas-menu .menu-wrapper li ul {
	display: none;
}



#offcanvas-menu .menu-wrapper li .sub-menu a {
	padding-left: 40px;
}

#offcanvas-menu .menu-wrapper li ul{
	display: none;
}

#offcanvas-menu .menu-wrapper li a.active{
	color: #fff;
}
.dropDown.sub-Menu {
	display: none;
	position: absolute;
	left: 100%;
	top: 0;
	background: #fff;
	padding: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .sub-menu .sub-Menu {
	left: 100%;
	top: 0;
  }
  
  li:hover > .sub-Menu {
	display: block;
	position: absolute;
  }

  .sub-sub-menu {
	display: none ;
  }
  .sub-sub-menu li a{
	padding-left: 55px !important;
  }