/* =============================================================================
   Navigation Module Plain B/W Styling

   Do NOT edit this file. Rather, copy the file to a folder named 'it-mobilenav' 
   in your child theme folder, and change the styling in that stylesheet. 
   That way, your styling will be preserved when updating the plugin
   ============================================================================= */

/* hamburger menu header */
.builder-module-navigation .it-mobile-nav-menu-header {
    color: black;
    background-color: white;
}

/* hamburger menu header hover */
.builder-module-navigation .it-mobile-nav-menu-header:hover {}

/* reset font styling */
.builder-module-navigation.it-mobile-nav ul,
.builder-module-navigation.it-mobile-nav li,
.builder-module-navigation.it-mobile-nav li a,
.builder-module-navigation.it-mobile-nav li li a,
.builder-module-navigation.it-mobile-nav li li li a {
    border: none;
    margin: 0;
    font-weight: normal;
    text-decoration: none;
    text-shadow: none;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
}

/* all menu items */
.builder-module-navigation.it-mobile-nav li > a,
.builder-module-navigation.it-mobile-nav li li > a,
.builder-module-navigation.it-mobile-nav li li li > a {
    font-size: 1.125em;
    color: black;
    background: white;
}

/* all menu items hover */
.builder-module-navigation.it-mobile-nav li > a:hover,
.builder-module-navigation.it-mobile-nav li li > a:hover,
.builder-module-navigation.it-mobile-nav li li li > a:hover {
    color: white;
    background: black;
}

/* current page menu items */
.builder-module-navigation.it-mobile-nav li.current_page_item > a,
.builder-module-navigation.it-mobile-nav li.current-cat > a,
.builder-module-navigation.it-mobile-nav li.current-menu-item > a {
    color: white;
    background-color: black;
}

/* current page menu items hover */
.builder-module-navigation.it-mobile-nav li.current_page_item a:hover,
.builder-module-navigation.it-mobile-nav li.current-cat a:hover,
.builder-module-navigation.it-mobile-nav li.current-menu-item a:hover {
    color: black;
    background-color: white;
}

/* =====================
   All Styling available
   ===================== */

/* every menu item */
.builder-module-navigation.it-mobile-nav .menu-item {}

/* menu item which has sub-items */
.builder-module-navigation.it-mobile-nav .menu-item-has-children {}

/* menu items that correspond to a category */
.builder-module-navigation.it-mobile-nav .menu-item-object-category {}

/* menu items that correspond to a tag */
.builder-module-navigation.it-mobile-nav .menu-item-object-tag {}

 /* menu items that correspond to static pages */
.builder-module-navigation.it-mobile-nav .menu-item-object-page {}

/* menu items that correspond to post types: i.e. static pages or custom post types */
.builder-module-navigation.it-mobile-nav .menu-item-type-post_type {}

/* menu items that correspond to taxonomies: i.e. categories, tags, or custom taxonomies.  */
.builder-module-navigation.it-mobile-nav .menu-item-type-taxonomy {}

/* every menu item, where {object} is either a post type or a taxonomy */
/*.menu-item-object-{object} {}*/
/* menu items that correspond to a custom post type or a custom taxonomy */
/*.menu-item-object-{custom} {}*/
/* every menu item, where {type} is either "post_type" or "taxonomy" */
/*.menu-item-type-{type} {}*/

/* =======================
   Current-Page Menu Items
   ======================= */

/* menu items that correspond to the currently rendered page.  */
.builder-module-navigation.it-mobile-nav .current-menu-item  {}

/* ==============================
   Current-Page Parent Menu Items
   ============================== */

/* menu items that correspond to the hierarchical parent of the currently rendered page */
.builder-module-navigation.it-mobile-nav .current-menu-parent  {}

/* ================================
   Current-Page Ancestor Menu Items
   ================================ */

/* menu items that correspond to a hierarchical ancestor of the currently rendered page */
.builder-module-navigation.it-mobile-nav .current-menu-ancestor {}

/* menu items that correspond to the hierachical parent of the currently rendered object, where {object} corresponds to the value used for .menu-item-object-{object} */
/*.current-{object}-parent {}*/
/* menu items that correspond to the hierachical parent of the currently rendered type, where {type} corresponds to the value used for .menu-item-type-{type}.  */
/*.current-{type}-parent {}*/
/* menu items that correspond to a hierachical ancestor of the currently rendered type, where {type} corresponds to the value used for .menu-item-type-{type}.  */
/*.current-{type}-ancestor {}*/
/* menu items that correspond to a hierachical ancestor of the currently rendered object, where {object} corresponds to the value used for .menu-item-object-{object} */
/*.current-{object}-ancestor {}*/

/* ==========================
   Site Front Page Menu Items
   ========================== */
/* menu items that correspond to the site front page.  */
.builder-module-navigation.it-mobile-nav .menu-item-home {}

/* ========================================== 
   Backward Compatibility with wp_page_menu(): 
     These classes are added to maintain 
     backward compatibility with the 
     wp_page_menu() function output.
   ========================================== */

/* menu items that correspond to a static page */
.builder-module-navigation.it-mobile-nav .page_item {}

/* menu items that have sub pages to it */
.builder-module-navigation.it-mobile-nav .page_item_has_children {}

/* menu items that correspond to the currently rendered static page */
.builder-module-navigation.it-mobile-nav .current_page_item {}

/* menu items that correspond to the hierarchical parent of the currently rendered static page */
.builder-module-navigation.it-mobile-nav .current_page_parent {}

/* menu items that correspond to a hierarchical ancestor of the currently rendered static page */
.builder-module-navigation.it-mobile-nav .current_page_ancestor {}

/* menu items that correspond to a static page, where $ID is the static page ID */
/*.page-item-$ID {}*/