#offcanvas-menu.toggled {
  transform: translateX(0);
}
#offcanvas-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(45deg, #80070a, #d40206);
  transform: translateX(580px);
  transition: 0.5s;
  z-index: 99999;
  display: none;
}
.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: #20264b;
  cursor: pointer;
  color: #fff;
}
.menu-toggle {
  position: fixed;
  top: 20px;
  transition: 0.1s;
  z-index: 9999;
  right: 55px;
  background: #fff;
  box-shadow: 0 0 10px #0003;
  display: none;
  padding: 9px;
}
.menu-toggle.sticky {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  text-align: left;
  padding: 10px 10px 10px 0;
  border-radius: 0;
}
#offcanvas-menu .close-menu {
  position: absolute;
  top: 25px;
  margin-left: -20px;
  right: 26px;
  width: 50px;
  height: 50px;
}

#offcanvas-menu .close-menu i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  background-color: #cf1f2a;
}
#offcanvas-menu .menu-wrapper li a {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid #b7becd;
  padding: 22px 17px;
  display: block;
}
#offcanvas-menu .menu-wrapper .sub-menu {
  background: #070a1da1;
}
#offcanvas-menu .menu-wrapper li ul {
  display: none;
}
#offcanvas-menu .menu-wrapper li .sub-menu a {
  padding-left: 32px;
}
#offcanvas-menu .menu-wrapper li ul {
  display: none;
}
#offcanvas-menu .menu-wrapper li a.active {
  color: #48c7ec;
}


@media (max-width:575px) {
  #offcanvas-menu, .menu-toggle{
    display: block;
  }
}