@charset "UTF-8";

.ith-filter-box {    
    margin-bottom: 15px;
}

.ith-filter-box > h5 {
    color: #fff;
    text-transform: uppercase;
    padding: 5px 10px;
    font-size: 12px;
    position: relative;
    z-index: 2;
    margin: 0;
    text-shadow: 0 -1px 1px #397f90;
    line-height: 18px;

    background: #389cb4 url(../bg/svg/grad_blue.svg);
    background: -moz-linear-gradient(#adefff, #389cb4, #18778e);
    background: -ms-linear-gradient(#adefff, #389cb4, #18778e);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #adefff), color-stop(50%, #389cb4), color-stop(100%, #18778e));
    background: -webkit-linear-gradient(#adefff, #389cb4, #18778e);
    background: -o-linear-gradient(#adefff, #389cb4, #18778e);
    background: linear-gradient(#adefff, #389cb4, #18778e);
}

.ith-filter-box > .material, .ith-filter-box .filter, #ith-elastic-price-form > .range, .ith-filter-box .list {
    border: 2px solid #58b3ca;
    border-top: none;
    margin: 0;
    margin-top: -2px;
    text-shadow: 0 1px 1px #fff;
    padding: 15px;
}

.ith-filter-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ith-filter-box ul > li {
    list-style: none;
}

.ith-filter-box a.ith-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ith-filter-box a.ith-flex * {
    cursor: pointer;
}

.ith-filter-box .check {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ith-filter-box .check input {
    flex-basis: 25px;
    margin: 0 4px 0 0;
}

#ith-elastic-price-form span.label {
    display: flex;
    max-width: 100%;
    justify-content: space-between;
    margin-bottom: 5px;
    align-items: center;
}

#ith-elastic-price-form input {
    width: 60%;
    padding: 2px 5px;
}

#ith-elastic-price-form button {
    width: 100%;
    font-size: 11px;
    text-transform: uppercase;
    text-shadow: 0 -1px 0 #000;
    padding: 0 10px 1px 10px;
    height: 19px;
    line-height: 18px;
    cursor: pointer;
    overflow: visible;
    font-weight: bold;
    color: white;
    background: #5fb7cc url(../bg/svg/grad_blue-dark.svg);
    background: -moz-linear-gradient(#5fb7cc, #1a7990);
    background: -ms-linear-gradient(#5fb7cc, #1a7990);
    background: -webkit-gradient(linear, left top, left bottom, from(#5fb7cc), to(#1a7990));
    background: -webkit-linear-gradient(#5fb7cc, #1a7990);
    background: -o-linear-gradient(#5fb7cc, #1a7990);
    background: linear-gradient(#5fb7cc, #1a7990);
}

.ith-filter-box a.remove {
    margin-top: 15px;
    position: relative;
    display: inline-block;
}

.ith-filter-box ul.active-filter a {
    position: relative;
    display: block;
    text-decoration: none;
}

.ith-filter-box ul.active-filter span {
    color: white;
    background: #5fb7cc url(../bg/svg/grad_blue-dark.svg);
    background: -moz-linear-gradient(#5fb7cc, #1a7990);
    background: -ms-linear-gradient(#5fb7cc, #1a7990);
    background: -webkit-gradient(linear, left top, left bottom, from(#5fb7cc), to(#1a7990));
    background: -webkit-linear-gradient(#5fb7cc, #1a7990);
    background: -o-linear-gradient(#5fb7cc, #1a7990);
    background: linear-gradient(#5fb7cc, #1a7990);

    text-shadow: 0 -1px 0 #000;
    padding: 0 5px;
}

.ith-filter-box ul.active-filter i {
    position: absolute;
    right: -8px;
    color: #5fb7cc;
    opacity: 0;
    transition: opacity 200ms ease;
}

.ith-filter-box ul.active-filter i:after {
    content: "❌";
}

.ith-filter-box ul.active-filter a:hover {
    text-decoration: none;
    color: #5fb7cc;
}

.ith-filter-box ul.active-filter a:hover i {
    opacity: 1;
    transition: opacity 400ms ease;
}

.ith-filter-box ul.ith-attribute-filters li:not(.ith-display) {
    display: none;
}

.ith-filter-box .material > h6 {
    cursor: default;
    position: relative;
}

.ith-filter-box .material > h6:after {
    content: "▼";
    color: #5fb7cc;
    position: absolute;
    right: 0;
    line-height: 15px;
    font-size: 10px;
    transition: transform 400ms ease;
}

.ith-filter-box .material > h6:hover:after {
    content: "▽";
    color: #000;
}

.ith-filter-box .material > h6.open:after {
    transform: scale(-1);
    line-height: 12px;
    transition: transform 400ms ease;
}

.ith-filter-box .material > h6 + ul.ith-attribute-filters {
    display: none;
}

.ith-filter-box .material > h6.open + ul.ith-attribute-filters {
    display: block;
}

#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;
    }
}