@charset "UTF-8";



#searchParam + span[role="status"],
.form.search > .input-group > span[role="status"]{
    display: none;
}

#elastic-suggester {
    position: absolute;
    width: 200%;
    z-index: 9999;
    top: 100%;
    left: -50%;

    /*background: white;
    box-shadow: 0 5px 8px 2px gray;*/
}

#elastic-suggester.open {
    background: white;
    box-shadow: 0 5px 8px 2px gray;
}

#elastic-suggester > ul {
    width: 100% !important;
    padding: 10px 20px; 
    left: 0 !important;
    list-style: none;
}

#elastic-suggester li[data-type] {
    
    padding: 1px 5px;
}

#elastic-suggester li.ui-autocomplete-category {
    font-weight: bold;
    font-size: 14px;
    margin-top: 10px;
}

#elastic-suggester li a {
    cursor: default;
    display: flex;
    text-decoration: none;
    align-items: center;
}

#elastic-suggester li[data-type="manufacturer"] a,
#elastic-suggester li[data-type="category"] a,
#elastic-suggester li[data-type="cms"] a,
#elastic-suggester li[data-type="product"] a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 50px;
    cursor: pointer;
}

#elastic-suggester li.ith-selected {
    background: #ec6105 url("../bg/svg/grad_orange.svg");
    background: -moz-linear-gradient(#ff8604, #ec6105);
    background: -ms-linear-gradient(#ff8604, #ec6105);
    background: -webkit-gradient(linear, left top, left bottom, from(#ff8604), to(#ec6105));
    background: -webkit-linear-gradient(#ff8604, #ec6105);
    background: -o-linear-gradient(#ff8604, #ec6105);
    background: linear-gradient(#ff8604, #ec6105);
    color: white;
}

#elastic-suggester li.ith-selected * {
    color: white;
}

#elastic-suggester li[data-type] .icon-holder {
    width: 50px;
    margin-right: 10px;
    display: flex;
}

#elastic-suggester li[data-type] img {
    max-width: 50px;
    max-height: 50px;
    margin: auto;
}

#elastic-suggester, #elastic-suggester * {
    box-sizing: border-box;
}

body > .container form.search .ui-helper-hidden-accessible {
    display: none;
}

body > .container #elastic-suggester > ul {
    list-style: none;
    padding-left: 0;
    padding-right: 0;
}

body > .container #elastic-suggester > ul > li {
    padding-left: 10px;
    padding-right: 10px;
}

#elastic-suggester mark {
    padding: 0 1px 0 1px !important;
    margin: 0 !important;
    background: #CCEBF5;
    color: black !important;
}
#elastic-suggester li.ith-selected mark {
    background: transparent;
}

.ith_oxelastic_cms_results h2 { border-bottom: 1px solid #eee; padding-bottom: 20px; }
.ith_oxelastic_cms_results ul { list-style: none; }
.ith_oxelastic_cms_results a { display: block; }
.ith_oxelastic_cms_results .ith_oxelastic_cms_results_title { font-weight: bolder; }

@media screen and (max-width: 991px) {
    body > .container #elastic-suggester {
        width: 100%;
        left: 0;
    }
}