/* ==========================================================================
   NESA CMS 3.3.0.1
   MOBILE LANGUAGE FLAG AND SUBMENU CARET HOTFIX
========================================================================== */

/*
 * Desktop navigation keeps the caret inside the menu link.
 * Mobile navigation uses the dedicated submenu button, so the caret inside
 * the link must be hidden to avoid displaying two arrows for the same item.
 */
@media (max-width: 1100px) {
    .mobile-nav .has-children > a > .menu-caret {
        display: none;
    }
}
