

/* Start:/local/components/um/filter/templates/.default/style.css?17653537965269*/
.filter_wrapper{
    width: 100%;
    height: 80px;
    background: #FAFAFA;
    border-radius: 15px;
    overflow: hidden;

}

.filter_head{
    display: flex;
    justify-content: space-between;
    padding: 20px 40px 20px 40px;
    align-items: flex-end;
}

.filter_btn{
    cursor: pointer;
}


.filter_title{
    font-weight: 400;
    font-size: 25px;
    line-height: 140%;
    font-feature-settings: 'tnum' on, 'lnum' on;
    color: #777777;
}

.ingredients_wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 70%;
    align-items: flex-start;
    align-self: flex-start;

}

.filter_content{
    display: flex;
}

.filter_body{
    padding:  0 0 35px 40px;
    opacity: 0;
}

.filter_wrapper.active{
    height: auto;
}

.filter_wrapper.active .filter_btn svg  rect:last-child{
    display: none;
}


.filter_wrapper.active .filter_body{
    opacity: 1;
}


.ingredient_filter_item{
    background: #FFFFFF;
    border: 1px solid #E2E2E2;
    border-radius: 70px;
    padding: 15px 12px;
    cursor: pointer;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    font-feature-settings: 'tnum' on, 'lnum' on;
    color: #777777;
}

.ingredient_filter_item svg{
    display: none;
}

.ingredient_filter_item.filter_item--active{
    display: flex;
    align-items: center;
    border: 1px solid #FF723B;
}

.ingredient_filter_item.filter_item--active svg{
    margin-left: 10px;
    display: block;
    pointer-events: none;
}





::selection{
    color: #fff;
    background: #17A2B8;
}
.price_wrapper{
    width: 30%;
    padding: 0 25px 40px;
    position: relative;
}

.price-input{
    width: 100%;
    display: flex;
    margin: 0 0 35px;
    position: relative;
}
.price-input .price-input_wrap{
    display: flex;
    width: 50%;

    align-items: baseline;
    flex-direction: column;
}

.line_range_wrapper{
    width: 90%;
    position: absolute;
    bottom: 0;
    left: 10%;
}

.price-input_wrap span{
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    font-feature-settings: 'tnum' on, 'lnum' on;
    color: #777777;
    padding-left: 20px;
    margin-bottom: 10px;
}

.price-input_wrap input{
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 19px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #999;
    -moz-appearance: textfield;

    height: 53px;
    background: #FFFFFF;
    border: 1px solid #E2E2E2;

}

.price-input_wrap .input-min{
    border-radius: 10px 0px 0px 10px;
}

.price-input_wrap .input-max{
    border-radius: 0px 10px 10px 0px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;

}
.price-input .separator{
    width: 130px;
    display: flex;
    font-size: 19px;
    align-items: center;
    justify-content: center;

}
.progress_wrapper{
    height: 0px;
    position: relative;
    background: #ddd;
    border-radius: 5px;

}
.progress_wrapper .progress{
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 5px;
    background: #17A2B8;
}
.range-input{
    position: relative;
    width: 90%;
}
.range-input input{
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
input[type="range"]::-webkit-slider-thumb{
    height: 26px;
    width: 26px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid #E2E2E2;
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0,0,0,0.05);
}
input[type="range"]::-moz-range-thumb{
    height: 26px;
    width: 26px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid #E2E2E2;
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0,0,0,0.05);
}


input[type="range"].range_active::-webkit-slider-thumb{
    border: 2px solid #FF723B;
}

input[type="range"].range_active::-moz-range-thumb{
    border: 2px solid #FF723B;
}

.del_bnt_wrapper{
    margin-top: 35px;
    text-align: end;
}

.del_filter_btn{
    font-family: 'Arial';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    font-feature-settings: 'tnum' on, 'lnum' on;
    color: #777777;
    cursor: pointer;
    text-decoration: none;
    display: none;
}

.del_filter_btn--active{
    display: block;
}


.link_ingredients{
    display: flex;
    align-items: center;
    text-decoration: none;
    margin: 0;
}



@media screen and (max-width: 769px) {

    .filter_body{
        padding: 0 35px 35px 40px;
    }

    .filter_content{
        flex-direction: column;
    }

    .price_wrapper{
        padding: 0 0 35px 0;
    }

    .ingredients_wrapper,
    .price_wrapper{
        width: 100%;
    }

    .ingredients_wrapper{
        margin-bottom: 40px;
    }

    .del_bnt_wrapper{
        text-align: start;
    }
}

@media screen and (max-width: 420px) {

    .filter_wrapper{
        width: 90%;
        margin: 0 auto;
        height: 67px;
    }

    .filter_title {
        font-size: 20px;
    }

    .filter_head {
        padding: 20px 15px 20px 15px;
    }

    .filter_body{
        padding: 0 15px 35px 15px;
    }
}
/* End */
/* /local/components/um/filter/templates/.default/style.css?17653537965269 */
