/**
 * Hide the automatic Salient search button
 * and enable custom search menu items
 */

/* Hide the automatic search button UL */
#header-outer ul.buttons#search-btn,
#header-outer ul.buttons li#search-btn {
    display: none !important;
}

/* Optional: Style your custom search menu item */
.menu-item.custom-search-trigger a {
    /* Add any custom styling here */
}

/* If you want to use an icon in your custom menu item */
.menu-item.custom-search-trigger a .icon-salient-search {
    font-family: 'font-icon-salient' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.menu-item.custom-search-trigger a .icon-salient-search:before {
    content: "\e601";
}

