
     /* =========================================================
   SEARCH BAR
   ========================================================= */

.searchBar-deskN {
    width: 780px;
    
}


/* =========================================================
   SEARCH INPUT WRAPPER
   ========================================================= */

.searchInputWrap {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
    height: 42px;

    background: #fff;

    border: 1px solid #bbb;
    border-radius: 12px;

    box-sizing: border-box;
}


/* =========================================================
   SEARCH INPUT
   ========================================================= */

.searchInputWrap .form-control {
    flex: 1 1 auto;

    width: auto !important;
    min-width: 0;

    height: 40px;

    padding: 0 5px;

    border: 0 !important;

    background: transparent !important;

    outline: none !important;

    box-shadow: none !important;

    font-size: 14px;
    color: #222;

    box-sizing: border-box;
}

.searchInputWrap .form-control::placeholder {
    color: #888;
}


/* =========================================================
   SEARCH ICON / LOADER BUTTON
   ========================================================= */

.searchIconBtn {
    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    padding: 0;

    border: 0;

    background: transparent !important;

    color: #888;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    outline: none !important;
    box-shadow: none !important;

    font-size: 14px;
}

.searchIconBtn:hover {
    color: #555;
}


/* =========================================================
   CLEAR BUTTON
   ========================================================= */

.searchClearBtn {
    flex: 0 0 48px;

    width: 48px;
    height: 40px;

    padding: 0;

    border: 0;

    background: transparent !important;

    color: #777;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    outline: none !important;
    box-shadow: none !important;

    font-size: 12px;
}

.searchClearBtn:hover {
    color: #222;
}


/* =========================================================
   CLOSE BUTTON
   ========================================================= */

.searchCloseBtn {
    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    padding: 0;

    border: 0;

    background: transparent !important;

    color: #777;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    outline: none !important;
    box-shadow: none !important;

    font-size: 14px;
}

.searchCloseBtn:hover {
    color: #222;
}


/* =========================================================
   SUGGESTIONS DROPDOWN
   ========================================================= */

.searchSuggestions {
    position: absolute;

    top: calc(100% + 5px);
    left: 0;
    right: 0;

    width: 100%;
    height: 500px;

    background: #fff !important;

    border: 1px solid #ddd;
    border-radius: 8px;

    z-index: 99999;

    display: none;

    flex-direction: column;

    overflow: hidden;

    color: #222 !important;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);

    box-sizing: border-box;
}

.searchSuggestions.is-open {
    display: flex !important;
}


/* =========================================================
   SUGGESTION RESULTS SCROLL AREA
   ========================================================= */

.searchSuggestionResults {
    flex: 1 1 auto;

    min-height: 0;

    width: 100%;

    overflow-y: auto;
    overflow-x: hidden;
}


/* =========================================================
   SUGGESTION GROUP
   ========================================================= */

.searchSuggestionGroup {
    display: block;

    width: 100%;

    margin: 0;
    padding: 0;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.searchSuggestionHeading {
    display: block;

    width: 100%;

    padding: 9px 14px;

    background: #f7f7f7 !important;

    border-bottom: 1px solid #eee;

    color: #555 !important;

    font-size: 12px;
    line-height: 18px;

    font-weight: 700;

    text-transform: uppercase;

    box-sizing: border-box;
}


/* =========================================================
   SUGGESTION ITEM
   ========================================================= */

.searchSuggestionItem {
    display: block !important;

    width: 100%;

    height: auto !important;
    min-height: 0 !important;

    margin: 0 !important;

    padding: 10px 14px !important;

    background: #fff !important;

    border-bottom: 1px solid #eee;

    color: #222 !important;

    font-size: 14px;
    line-height: 20px;

    text-decoration: none !important;

    box-sizing: border-box;

    white-space: normal;
}

.searchSuggestionItem:hover {
    background: #f5f5f5 !important;

    color: #000 !important;

    text-decoration: none !important;
}


/* =========================================================
   NO RESULT
   ========================================================= */

.searchNoResult {
    display: block;

    width: 100%;

    padding: 15px 14px;

    background: #fff !important;

    color: #777 !important;

    font-size: 14px;

    line-height: 20px;

    box-sizing: border-box;
}


/* =========================================================
   VIEW ALL
   ========================================================= */

.searchSuggestionViewAll {
    flex: 0 0 auto;

    width: 100%;

    padding: 0;

    background: #f1f1f1 !important;

    border-top: 1px solid #ddd;

    box-sizing: border-box;
}

.searchSuggestionViewAll a {
    display: block;

    width: 100%;

    padding: 12px 14px;

    background: #f1f1f1 !important;

    color: #111 !important;

    font-size: 14px;

    line-height: 20px;

    font-weight: 600;

    text-align: center;

    text-decoration: none !important;

    box-sizing: border-box;
}

.searchSuggestionViewAll a:hover {
    background: #e5e5e5 !important;

    color: #000 !important;
}


/* =========================================================
   SCROLLBAR
   ========================================================= */

.searchSuggestionResults::-webkit-scrollbar {
    width: 7px;
}

.searchSuggestionResults::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.searchSuggestionResults::-webkit-scrollbar-thumb {
    background: #999;
}

.searchSuggestionResults::-webkit-scrollbar-thumb:hover {
    background: #777;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .searchBar-deskN {
        width: 100%;
    }

    .searchSuggestions {
        height: 400px;  
    }

}
     
     /*===Mobile ===*/
    
     
/*==========================================================================================================MOBILE===================================================*/

         /* =========================================
   MOBILE SEARCH
========================================= */

.searchHeader-mobile {
    /*position: relative;*/
}


/* Search form */

.searchHeader-mobileForm {
    display: none;
    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;

    z-index: 99999;
}


/* =========================================
   INPUT WRAPPER
========================================= */

.mobileSearchInputWrap {
    display: flex;
    align-items: center;

    width: 100%;
    height: 44px;

    background: #fff;

    border: 1px solid #bbb;
    border-radius: 10px;

    box-sizing: border-box;
}


/* =========================================
   SEARCH ICON
========================================= */

.mobileSearchIconBtn {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;
    background: transparent;

    color: #222;

    cursor: pointer;
}


/* =========================================
   INPUT
========================================= */

.mobileSearchInputWrap .form-control {
    flex: 1 1 auto;

    width: auto !important;
    min-width: 0;

    height: 42px;

    padding: 0 5px;

    border: 0 !important;

    outline: none !important;
    box-shadow: none !important;

    background: transparent !important;

    font-size: 14px;
    color: #222;
}


/* =========================================
   CLEAR
========================================= */

.mobileSearchClear {
    width: 48px;
    height: 42px;

    flex: 0 0 48px;

    padding: 0;

    border: 0;
    background: transparent;

    color: #555;

    font-size: 12px;

    cursor: pointer;
}


/* =========================================
   CLOSE
========================================= */

.mobileSearchClose {
    width: 40px;
    height: 42px;

    flex: 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;
    background: transparent;

    color: #222;

    cursor: pointer;
}


/* =========================================
   SUGGESTIONS
========================================= */

.mobileSearchSuggestions {
    display: none;

    width: 100%;

    margin-top: 5px;

    background: #fff;

    border: 1px solid #ddd;
    border-radius: 8px;

    box-shadow: 0 5px 20px rgba(0,0,0,.12);

    overflow: hidden;
}


/* Results */

.mobileSearchResults {
    max-height: 350px;

    overflow-y: auto;
}


/* Section */

.mobileSearchSection {
    padding: 8px 12px 4px;
}


/* Heading */

.mobileSearchHeading {
    margin-bottom: 5px;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;

    color: #777;
}


/* Result item */

.mobileSearchItem {
    display: block;

    padding: 9px 5px;

    border-bottom: 1px solid #eee;

    color: #222;

    font-size: 13px;
    line-height: 1.4;

    text-decoration: none;
}


.mobileSearchItem:hover {
    background: #f7f7f7;

    color: #222;

    text-decoration: none;
}


/* No result */

.mobileSearchNoResult {
    padding: 20px 12px;

    text-align: center;

    font-size: 13px;

    color: #777;
}


/* View all */

.mobileSearchViewAll {
    display: none;

    border-top: 1px solid #eee;

    background: #fafafa;
}


.mobileSearchViewAll a {
    display: block;

    padding: 11px 12px;

    text-align: center;

    font-size: 13px;
    font-weight: 600;

    color: #222;

    text-decoration: none;
}


.mobileSearchViewAll a:hover {
    background: #f1f1f1;
}
 

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .searchHeader-mobileForm {
        left: 0;
        right: 0;

        width: 100%;
    }
    .searchHeader-mobile i{color:#000 !important;}
    .header-loginCart-sec li a{
        color: #1a1a1a !important;
        padding: 7px 0 !important;
        font-size: 13px !important;
        font-weight: normal !important;
    }

}
