.wrapper-container {
    margin: 0 auto;
    position: relative;
    /* min-height: calc(100vh); */
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  /* header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-bottom: 1px solid #eee;
  } */
  
  .burger-menu {
    width: 30px;
    height: 20px;
    /* display: flex; */
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 150;
    position: relative;
  }
  /*
  @media(min-width: 1140px) {
    .burger-menu {
      display: none !important;
    }
  }
  */
  .burger-menu span {
    width: 100%;
    height: 3px;
    background: goldenrod;
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  
  .burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  

  
  .slide-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
  }
  

  
  .sidebar {
    position: fixed;
    width: 340px;
    height: 100%;
    background: #fff;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    overflow-y: auto;
    top: 0;
  }
  
  .sidebar[data-position="right"] {
    right: -340px;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  }
  
  .sidebar[data-position="right"].active {
    right: 0;
  }
  
  .sidebar-header {
    padding: 25px 20px;
    color: white;
    font-weight: bold;
    font-size: 20px;
  }
  
  .menu-items {
    padding: 0 0 15px ;
    margin: 0;

  }
  
  .menu-item {
    position: relative;
    list-style: none;
  }
  
  .menu-item > a {
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 20px;
    border-left: 1px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
  }
  

 .smaller .menu-item > a {
display: block;
    text-decoration: none;
    color: #e1e1e1;
    font-size: 16px;
    font-weight: 300;
    padding: 6px 20px;
    border-left: 1px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: none;
  }


  .sidebar[data-position="right"] .menu-item > a {
    border-left: 1px solid transparent;
  }
  
  .menu-item > a:hover {
    background: transparent;
    color: white;
  }
  
  .sidebar[data-position="left"] .menu-item > a:hover {
    border-left-color: #6e8efb;
  }
  
  .sidebar[data-position="right"] .menu-item > a:hover {
    border-left: 10px solid #fff;
  }
  .sidebar[data-position="right"] .menu-item.highlight > a {
    margin: 18px;
  }
  
  .sidebar[data-position="right"] .menu-item.highlight > a:hover {
    border-left: none;
  }
  
  .menu-item > a i {
    transition: transform 0.3s ease;
  }
  
  .menu-item.active > a i {
    transform: rotate(90deg);
  }
  
  .submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f9f9f9;
  }
  
  .menu-item.active .submenu {
    max-height: 1000px;
  }
  
  .submenu-item {
    padding-left: 20px;
  }
  
  .sidebar[data-position="right"] .submenu-item {
    padding-left: 0;
    padding-right: 20px;
  }
  
  .submenu-item a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #fff;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    transform: translateX(-20px);
    opacity: 0;
  }
  
  .sidebar[data-position="right"] .submenu-item a {
    border-left: none;
    border-right: 3px solid transparent;
    transform: translateX(20px);
  }
  
  .menu-item.active .submenu-item a {
    transform: translateX(0);
    opacity: 1;
    transition: all 0.3s ease;
  }
  
  .submenu-item a:hover {
    color: #6e8efb;
  }
  
  .sidebar[data-position="left"] .submenu-item a:hover {
    border-left-color: #6e8efb;
  }
  
  .sidebar[data-position="right"] .submenu-item a:hover {
    border-right-color: #6e8efb;
  }
  
  .submenu-item:nth-child(1) a {
    transition-delay: 0.1s;
  }
  
  .submenu-item:nth-child(2) a {
    transition-delay: 0.15s;
  }
  
  .submenu-item:nth-child(3) a {
    transition-delay: 0.2s;
  }
  
  .submenu-item:nth-child(4) a {
    transition-delay: 0.25s;
  }
  
  .body-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 50;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .body-overlay.active {
    visibility: visible;
    opacity: 1;
  }
  
  /* Nested submenus */
  .nested-submenu-container {
    position: relative;
  }
  
  .nested-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f0f0f0;
  }
  
  .submenu-item.active .nested-submenu {
    max-height: 1000px;
  }
  
  .nested-submenu-item a {
    padding: 10px 20px 10px 35px;
    color: #777;
    transform: translateX(-20px);
    opacity: 0;
  }
  
  .sidebar[data-position="right"] .nested-submenu-item a {
    padding: 10px 35px 10px 20px;
    transform: translateX(20px);
  }
  
  .submenu-item.active .nested-submenu-item a {
    transform: translateX(0);
    opacity: 1;
    transition: all 0.3s ease;
  }
  
  .nested-submenu-item:nth-child(1) a {
    transition-delay: 0.15s;
  }
  
  .nested-submenu-item:nth-child(2) a {
    transition-delay: 0.2s;
  }
  
  .nested-submenu-item:nth-child(3) a {
    transition-delay: 0.25s;
  }
  
  .toggle-arrow {
    transition: transform 0.3s ease;
  }
  
  .submenu-item.active .toggle-arrow {
    transform: rotate(90deg);
  }