#menu-hide-open {
    cursor: pointer;
    position: relative;
}
aside.scroll-menu-left {
    transition:
        width 0.3s ease,
        min-width 0.3s ease,
        max-width 0.3s ease;
    overflow: hidden;
}
div.logo-container {
    transition:
        width 0.3s ease,
        min-width 0.3s ease,
        max-width 0.3s ease;
    overflow: visible;
}
aside.scroll-menu-left.x-hide ul > li > a > span {
    display: none;
}
aside.scroll-menu-left.x-hide .al-icon-alert[data-alert]:after {
    left: 20px;
    top: 3px;
}
aside.scroll-menu-left.x-hide {
    max-width: 45px;
    min-width: 45px;
    width: 45px;
}
div.logo-container.x-hide {
    max-width: 45px;
    min-width: 45px;
    width: 45px;
}

div.logo-container.x-hide img {
    max-width: 25px;
}

/* Toggle button at the aside's right edge */
#menu-side-toggle {
    position: fixed;
    top: 100px;
    left: 175px;
    transform: translateX(-50%);
    z-index: 300;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #d0d0d0;
    background: #ffffff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #555;
    transition:
        left 0.3s ease,
        box-shadow 0.15s ease;
}
#menu-side-toggle:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
    background: #f5f5f5;
}
#menu-side-toggle svg {
    width: 8px;
    height: 12px;
    transition: transform 0.3s ease;
    display: block;
}
/* When aside is collapsed: move button left and flip chevron */
aside.scroll-menu-left.x-hide + #menu-side-toggle {
    left: 45px;
}
aside.scroll-menu-left.x-hide + #menu-side-toggle svg {
    transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
    button#menu-side-toggle {
        display: none;
    }
}
