/* Sticky top bar-BEGIN */
.top-menu-sticky-bar 
{
    position: sticky;
    top: 0;
    height: var(--top-bar-height);
    background-color: rgb(1,1,1);
    z-index: var(--z-base);
    display: flex;
    align-items: center;
    padding: 0 px;
}
/* Sticky top bar-END */


/* Overlay-BEGIN */
.mainmenu-overlay 
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: none;
    z-index: var(--z-overlay);
}
/* Overlay-END */


/* Side panel-BEGIN */
.mainmenu-side-panel 
{
    position: fixed;
    top: 0; /* changed from var(--top-bar-height) */
    left: 0;
    width: 300px;
    height: 100%; /* full height now */
    background-color: var(--dark-theme-teal-pleasing);
    display: none;
    z-index: var(--z-panel);
    padding: 0 px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.3);
    overflow-y: auto;

    transform: translateY(-10px);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
}

.mainmenu-side-panel[style*="block"] 
{
    transform: translateY(0);
    opacity: 1;
}
/* Side panel-END */


/* Logo sizing-BEGIN */
.pw-logo-mainmenu 
{
    max-width: 100%;
    height: auto;
}
/* Logo sizing-END */


/* Hamburger icon sizing-BEGIN */
.pw-icon-menu-hamburger 
{
    width: 50px;
    height: 50px;
}
/* Hamburger icon sizing-END */
