/*
.offcanvas-multilevel-body {
  display: flex;
  overflow-x: hidden;
  padding: 0;
  width: 100%;
}
.offcanvas-panel {
  flex-shrink: 0;
  width: 100%;
  background-color: #fff;
  transition: transform 0.3s ease-in-out;
}
.offcanvas-panel .offcanvas-panel {
  position: absolute;
  top: 0;
  left: 100%;
}
.offcanvas-panel.active > .offcanvas-panel {
  transform: translateX(-100%);
}
.main-menu,
.sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-item {
  display: flex;
  align-items: center;
  margin-bottom: 0 !important;
}
.nav-link {
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding: 15px;
  text-decoration: none;
  color: #333;
}
.nav-item .submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 100%;
  cursor: pointer;
  background-color: transparent;
  border: none;
  transition: background-color 0.2s;
  position: relative;
  right: 0;
}
.nav-item.parent-active > .nav-link {
  background-color: #f0f8ff;
}
.menu-item-icon {
  margin-right: 15px;
  font-size: 1.2em;
  color: #888;
}
.offcanvas {
  overflow-x: visible !important;
}
.offcanvas-multilevel-body {
  overflow: visible !important;
}
.offcanvas-panel .offcanvas-panel {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  background: #fff;
  z-index: 1000;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(20px);
  transition: all 0.3s ease-in-out;
}
.offcanvas-panel .offcanvas-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}
.nav-item.parent-active .submenu-toggle .fa-angle-right {
  display: none;
}
.nav-item.parent-active .submenu-toggle .fa-times {
  display: inline-block;
}
.menu-item-thumbnail {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  object-fit: cover;
}
.offcanvas-submenu-header {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  position: relative;
}
.offcanvas-submenu-header .submenu-close {
  background: #fff;
  border: none;
  position: absolute;
  right: 12px;
}
.offcanvas-panel .sub-menu {
  height: 100%;
}
.offcanvas-panel .menu-item.open {
  background-color: rgba(14, 180, 178, 0.1);
}
.offcanvas-panel .menu-item.open a {
  font-weight: 700 !important;
}
.offcanvas .menu-item-has-children.open > .nav-link .menu-item-text {
  font-weight: 700 !important;
}
@media (max-width: 767px) {
  .offcanvas-panel .offcanvas-panel {
    left: 0;
  }
  .offcanvas-multilevel-body {
    position: relative;
  }
}
*/
