    #ltc_menu>ul>li:nth-child(7)>div>ul {
        width: 7.5vw;
    }

    #ltc_menu a {
        color: inherit;
        text-decoration: inherit;
    }

ul.ltc_menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    list-style: none;
    background: white;
    padding: 5px 0px 5px 0px;
    align-items: center;
    width: 90vw;
    align-self: center;
    justify-self: center;
}

    .ltc_submenu_wrapper {
        height: 0px;	
        overflow: visible !important;
        transition: height 0.3s ease-in;
        position: absolute;
        top: 0px;
        left: 0px;
        margin-top: calc(3rem);
        max-width: 10vw;
    }

    #ltc_menu ul.ltc_submenu {
        list-style: none;
        padding: 10px;
        background: white;
        width: 15vw;
        margin: 0px;
    }

    #ltc_menu li.ltc_menu_item {
        position: relative;
    }

    li.ltc_menu_item:hover .ltc_submenu_wrapper {
        height: 50vh;
    }

    #ltc_menu li.ltc_menu_item:hover .menu-item-icon {
        transform: rotate(180deg);
    }

    #ltc_menu li.ltc_menu_item>a {
        font-size: 1.5rem;
        color: rgb(70, 84, 95);
        font-weight: 400;
        line-height: 1rem;
        height: 3rem;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 5px;
    }

    #ltc_menu li.ltc_menu_item>a>svg {
        height: 1rem;
        width: 1rem;
        transition: transform 0.3s ease-in;
    }

    #ltc_menu li.ltc_submenu_item a {
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 2rem;
        color: rgb(70, 84, 95);
    }


    #ltc_menu li.ltc_menu_item.luxe {
        padding: 5px 15px 5px 15px;
        background: #B49753;
        border-radius: 10px;
    }

    #ltc_menu li.ltc_menu_item>a>svg.luxe-icon {
        width: 4rem;
        height: 2rem;
    }
    
    
    .ltc_submenu .ltc_submenu {
    position: absolute;
    right: -90%;
    /* padding: 10px !important; */
    top: 10px;
    background-color: #ffffff !important;
    /* border-left: 1px solid black; */
}

ul.ltc_submenu {
    height: 0%;
    overflow-x: hidden;
    padding: 0px !important;
}

li.ltc_menu_item:hover  .ltc_submenu_wrapper > ul.ltc_submenu {
    height: fit-content;
    padding: 10px !important;
}


li.ltc_submenu_item:hover{
    background-color: #e6e6e6;
}

li.ltc_submenu_item:hover   ul.ltc_submenu{
    height: fit-content;
    padding: 10px !important;
    background-color: #e6e6e6 !important;
}

span.sub-menu-icon svg {
    height: 1rem;
    width: 1rem;
    transform: rotate(270deg) !important;
}




