/*
 * Axinar v0.24 account / Founder navigation.
 *
 * The menu is allowed to scroll vertically on short screens but never grows a
 * horizontal scrollbar. Nested groups inherit the menu width.
 */
#accountMenu{
    max-height:calc(100vh - 84px);
    overflow-y:auto;
    overflow-x:hidden;
    overscroll-behavior:contain;
    width:190px;
    max-width:calc(100vw - 16px);
}
#accountMenu,
#accountMenu *{
    min-width:0;
    box-sizing:border-box;
}
#accountMenu .account-submenu,
#accountMenu details,
#accountMenu summary,
#accountMenu button{
    width:100%;
    max-width:100%;
}
#accountMenu summary,
#accountMenu button{
    white-space:normal;
    overflow-wrap:anywhere;
}
.axinar-nav-group{
    margin:.2rem 0;
    border-top:1px solid rgba(255,255,255,.08);
}
.axinar-nav-group>summary{
    padding:.55rem .7rem;
    cursor:pointer;
    font-weight:700;
}
.axinar-nav-group>button{
    text-align:left;
}
@media(max-height:700px){
    #accountMenu{max-height:calc(100vh - 48px)}
}

#mobileNavBtn>span{
    display:flex;
    align-items:center;
    justify-content:center;
    line-height:1;
    width:1.1em;
    height:1.1em;
    transform:translateY(-1px);
}
