.side-menu-toggle {
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Sidebar Panel */
.auto-side-menu-panel {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: 0.3s;
    overflow-y: auto;
    box-shadow: 3px 0 10px rgba(0, 0, 0, 0.2);
}

.auto-side-menu-panel.open {
    left: 0;
}

.side-menu-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 0px 1.5rem;
}

button#sideMenuClose {
    border: none;
    background: transparent;
    font-size: 28px;
    color: #000000;
    font-weight: 700;
}

/* Overlay */
#sideMenuOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9998;
}

/* Menu List */
.auto-side-menu {
    list-style: none;
    padding: 0;
    margin: 0 1.5rem;
}

.auto-side-menu li {
    border-bottom: 0px solid #eee;
}

.side-menu-logo img {
    max-height: 40px;
    width: auto;
}

.side-menu-logo a {
    display: inline-block;
}

.auto-side-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0px;
    text-decoration: none;
    font-size: 12px;
}

.menu-icon {
    width: 16px;
    margin-right: 10px;
}

.menu-title {
    flex: 1;
    margin-left: 0px;
}

.submenu-arrow {
    font-size: 18px;
    color: #999;
}

/* Divider */
.menu-divider hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 10px 0px;
}

/* Button Style */
.menu-button a {
    background: #ff6600;
    color: #fff !important;
    border-radius: 6px;
    margin: 10px 0px;
    justify-content: center;
    padding: 10px 20px;
}

.menu-panels {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.menu-panel {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: 0.35s ease;
    overflow-y: auto;
}

.menu-panel.active {
    left: 0;
}
.menu-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
}

.submenu-arrow {
    font-size: 18px;
    cursor: pointer;
    color: #999;
}

.submenu-header {
    display: flex;
    align-items: center;
    padding: 14px;
    border-bottom: 1px solid #eee;
    font-weight: bold;
}

.submenu-back {
    background: none;
    border: none;
    font-size: 18px;
    margin-right: 10px;
    cursor: pointer;
}


/* Root panel fix */
.menu-panel.root-panel {
    left: 0;
}

/* When parent goes left */
/* .menu-panel.shift-left {
    left: -100%;
} */

/* Submenu default hidden */
.menu-panel.submenu-panel {
    left: 100%;
}

/* Active submenu visible */
.menu-panel.submenu-panel.active {
    left: 0;
}

/* Smooth panel animation */
.menu-panel {
    transition: left 0.35s ease;
}
