/* Hide the menu item only on non-mobile (e.g., tablets and desktops) */
@media screen and (min-width: 768px) {
  li[rel="data-children-318620"][data-menu-id="318620"],
    li[rel="data-children-318632"][data-menu-id="318632"]{
    display: none !important;
  }
}

/*Rendre les éléements level 1 du menu cliquables sur mobile*/
@media (max-width: 767px) {
    #mainMenu .menu-vertical-items > li {
        position: relative !important;
    }

    /* The page title remains clickable */
    #mainMenu .menu-vertical-items > li > a.child-link {
        position: relative !important;
        display: block !important;
        width: calc(100% - 55px) !important;
        padding-right: 10px !important;
        z-index: 10 !important;
        pointer-events: auto !important;
    }

    /* Only the arrow area opens the submenu */
    #mainMenu .menu-vertical-items > li > a.dropdown-toggle {
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        width: 55px !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        z-index: 11 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}