/** * Dropdown submenu styles
 * This will ensure that the submenu appears correctly on larger screens
 * and does not interfere with the main dropdown menu.
 */
@media all and (min-width: 1024px) {

    .dropdown-submenu {
        position: relative;
    }

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-left: 0.1rem;
        margin-right: 0.1rem;
    }
}