.menu-vertical-wrapper {
    position: relative;
}

.menu-vertical-wrapper .menu-vertical-button {
    
}

.menu-vertical-wrapper .menu-vertical-button a {
    background: var(--primary-bg);
    color: #fff;
    line-height: 40px;
    display: block;
    padding: 0 15px;
}

.menu-vertical-wrapper .menu-vertical-content {
    position: absolute;
    background: #fff;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
}

.menu-vertical-wrapper:hover .menu-vertical-content {
    opacity: 1;
    height: auto;
    visibility: visible;
}

.menu-vertical-wrapper .menu-vertical-content .nav:hover::-webkit-scrollbar-thumb {
    background: #c1c1c1;
}

.menu-vertical-wrapper .menu-vertical-content .nav::-webkit-scrollbar {
    width: 5px;
}

.menu-vertical-wrapper .menu-vertical-content .nav::-webkit-scrollbar-thumb {
    border-radius: 1px;
    background: none;
}

.menu-vertical-wrapper .menu-vertical-content .nav {
    position: unset;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 400px;
    border: 1px solid #ececec;
    padding-bottom: 30px;
}

.menu-vertical-wrapper .menu-vertical-content .nav::after {
    height: 30px;
    position: absolute;
    bottom: 1px;
    left: 1px;
    right: 1px;
    content: " ";
    background: -moz-linear-gradient(top,rgba(255,255,255,0) 0%,rgba(255,255,255,.7) 17%,rgba(255,255,255,.98) 52%,rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(top,rgba(255,255,255,0) 0%,rgba(255,255,255,.7) 17%,rgba(255,255,255,.98) 52%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom,rgba(255,255,255,0) 0%,rgba(255,255,255,.7) 17%,rgba(255,255,255,.98) 52%,rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff',endColorstr='#ffffff',GradientType=0);
    /* display: block; */
}

.menu-vertical-wrapper .menu-vertical-content .nav>li {
    position: unset;
}

.menu-vertical-wrapper .menu-vertical-content .nav>li>a {
    padding: 10px 15px;
}

.menu-vertical-wrapper .menu-vertical-content .has-dropdown .icon-angle-down {
    float: right;
}

.menu-vertical-wrapper .menu-vertical-content li.current-dropdown>.nav-dropdown, .menu-vertical-wrapper .menu-vertical-content .next-prev-thumbs li.has-dropdown:hover>.nav-dropdown, .no-js .menu-vertical-wrapper .menu-vertical-content li.has-dropdown:hover>.nav-dropdown {
    top: 0;
    right: 0;
    left: 100%;
    border: 0;
    max-width: calc( 100vw - 260px);
    width: calc( var(--container-width) - 280px);
}

.menu-vertical-wrapper .menu-vertical-content .nav>li>.nav-dropdown li {
    text-indent: 0;
    padding: 0;
}

.menu-vertical-wrapper .menu-vertical-content .nav>li>.nav-dropdown li a {
    float: left;
}
