@media (min-width: 850px) {
    header#header .nav-dropdown {
        display: block;
    }

    header#header .nav-dropdown ul.sub-menu {
        position: absolute;
        left: 100%;
        top: 0;
        background: #fff;
        width: 250px;
        padding: 0;
        display: none !important;
        /* border-radius: 5px; */
        -webkit-box-shadow: 1px 1px 15px rgb(0 0 0 / 15%);
        box-shadow: 1px 1px 15px rgb(0 0 0 / 15%);
    }

    header#header .nav-dropdown ul.sub-menu a {
        white-space: normal;
        margin: 0;
        padding: 10px 15px;
        border: 0;
        font-weight: 400;
    }

    header#header .nav-dropdown li:hover>ul.sub-menu {
        display: block !important;
    }

    header#header .nav-dropdown li {
        border-right: 0;
        white-space: normal;
        width: 100%;
        display: block;
        position: relative;
    }

    header#header .nav-dropdown li.menu-item-has-children>a {
        /* font-weight: 400;
        text-transform: none;
        color: rgba(102,102,102,.85); */
        font-weight: unset !important;
        position: relative;
		text-transform:unset;
        &::after {
            content: "";
            font-family: fl-icons !important;
            font-style: normal !important;
            font-variant: normal !important;
            font-weight: 400 !important;
            position: absolute;
            right:0;
            transform: rotate(270deg);
        }
    }

    header#header .nav-dropdown li.active>a {
        color:var(--fs-experimental-link-color-hover);
    }
}