/*menu adjustments - ticket Sb-5588*/
@media (min-width: 992px) {
    .menu-tabbed__index {
        height: 90vh;
        overflow: scroll;    
    }
    .menu-tabbed__index::-webkit-scrollbar,
    .menu-tabbed__expanded-content div[data-tippy-root]::-webkit-scrollbar {
        width: 4px;
    }
    
    .menu-tabbed__index::-webkit-scrollbar-track,
    div[data-tippy-root]::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .menu-tabbed__index::-webkit-scrollbar-thumb,
    div[data-tippy-root]::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
    }
    
    .menu-tabbed__index,
    div[data-tippy-root] {
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
    }
    .header__menu-content--tabbed .menu-tabbed .menu-expanded {
        width: 100%;    
    }
}