/**
 * Clean up bottom mobile menu from desktop view
 */

@media (min-width: 768px) {
    /* Hide mobile footer navigation and mobile menu on desktop */
    .mobile-footer-nav,
    .mobile-menu-container {
        display: none !important;
    }
    
    /* Hide any bottom navigation links that might be showing */
    body > ul,
    body > nav,
    body > div#page + ul,
    body > div#page + nav,
    #colophon + ul,
    #colophon + nav,
    .footer-bottom + ul,
    .footer-bottom + nav {
        display: none !important;
    }
}
