/* ----- ui range ----- */
.ui-range {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear;
    margin-top: 15px;
}

.ui-range .ui-slider-handle {
    width: 18px;
    height: 18px;
    border: 4px solid #1E1D2B;
    border-radius: 50%;
    background-color: #fff;
    -webkit-box-shadow: 0 6px 10px rgba(8, 7, 7, 0.09);
    box-shadow: 0 6px 10px rgba(8, 7, 7, 0.09);
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    outline: none;
    top: 0;
    cursor: pointer;
}

.ui-range__col {
    width: calc(50% - 12px);
    height: 37px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 10px;
    border: 2px solid #e7e7e7;
    border-radius: 2px;
}

.ui-range__col:first-child {
    margin-right: 24px;
}

.ui-range__col span {
    color: #898989;
}

.ui-range__val {
    min-width: 1px;
    padding: 0 0px 0 5px;
    font-size: 14px;
    border: none;
    text-align: center;
    outline: none;
    color: #898989;
}

.ui-range__slider {
    width: calc(100% - 18px);
    height: 2px;
    margin-top: 20px;
    position: relative;
    color: #e7e7e7;
    background-color: currentColor;
}

.ui-range__slider::before {
    content: "";
    display: block;
    width: 18px;
    height: 100%;
    position: absolute;
    left: 100%;
    top: 0;
    background: currentColor;
}

.ui-range__slider .ui-slider-range {
    position: absolute;
    height: 4px;
    background: #1E1D2B;
}


.ui-radiobox_filter {
    font-weight: 300;
    font-size: 14px;
    color: #747474;
}

.ui-opt_filter {
    margin-top: 0 !important;
}

.catalog-sort_filter {
    padding: 0;
}

.btn--or {
    background: #1A9BE3;
    z-index: 60;
    position: relative;
    margin: 20px 0;
    padding: 7px;
    position: fixed;
    right: 0;
    top: 40%;
    border: none;
}

.btn--or .filtr {
    fill: #fff;
    width: 15px;
    height: 15px;
}

.myfilter {
    background: #fff;
    margin-top: 20px;
    margin-bottom: 20px;
}

.ic_filter {
    width: 20px;
    height: 20px;
    fill: #fff;
    margin: 0px;
}

.filter_title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #0B1F33;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    padding: 15px;
}

.filters__block {
    border-bottom: 1px solid #eee;
    padding: 15px;
    margin-bottom: 0;
    position: relative;
}

.filters__block .js-accordion-content .ui-range__col span {
    z-index: 10;
}

.checkbox-text {
    font-weight: 300;
    color: #747474;
}

.filters_btns {
    display: flex;
    justify-content: flex-start;
    padding: 20px 0;
    margin-left: 15px;
}

.filters_btns .filter_show {
    border: 1px solid #1A9BE3;
    background: #1A9BE3;
    transition: all 0.3s;
    color: #fff;
    font-size: 14px;
    padding: 15px 20px;
}

.filters_btns .filter_show:hover {
    border: 1px solid #1A9BE3;
    background: transparent;
    transition: all 0.3s;
    color: #1A9BE3;
    font-size: 14px;
    padding: 15px 20px;
}

.filters_btns .filter_reset {
    border: 1px solid #1A9BE3;
    background: transparent;
    transition: all 0.3s;
    color: #1A9BE3;
    font-size: 14px;
    padding: 15px 20px;
}

.filters_btns .filter_reset:hover {
    border: 1px solid #1A9BE3;
    background: #1A9BE3;
    transition: all 0.3s;
    color: #fff;
    font-size: 14px;
    padding: 15px 20px;
}

.filter_show {
    margin-right: 20px;
}

.filters .btn-close {
    display: none;
}

.filters__label {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
    /*   margin-bottom: 15px;*/

}

.filters-check {
    display: flex;
    /*    width: 100%;*/
    margin: 0;
    cursor: pointer;
    margin-right: 5px;
    flex-basis: 45%
}

.filters-check:not(:last-child) {
    margin-bottom: 15px;
}

.filters-check .checkbox-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    max-width: 20px;
    flex: 0 0 20px;
    height: 20px;
    border-radius: 2px;
    border: 2px solid #e7e7e7;
}

.filters-check .checkbox-wrap::after {
    content: "";
    display: block;
    width: 12px;
    height: 10px;
    background: url("../img/svg-check-ic.svg") no-repeat 0 0;
    background-size: 100%;
    will-change: transform;
    transform: scale(0);
    opacity: 0;
    transition: all 0.1s linear;
}

.filters-check .checkbox-text {
    display: inline-block;
    margin-top: 1px;
    margin-left: 14px;
    font-size: 14px;
}

.filters-check input:checked + .checkbox-wrap::after {
    transform: scale(1);
    opacity: 1;
}

.filters-row {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
    justify-content: space-between;
}

.filters-row-col2 .filters-check {
    width: 50%;
    padding-right: 15px;
}

.filters__btns .btn {
    display: flex;
    width: 100%;
}

.filters__btns .btn:not(:last-child) {
    margin-bottom: 12px;
}

.filters__reset {
    font-size: 14px;
    border-color: #e7e7e7;
}

.filters__reset:hover {
    opacity: 0.8;
    border-color: #c5c5c5;
}

.filters-modal__title {
    display: none;
}

.filter-tooltip {
    position: absolute;
    left: 100%;
    top: 50%;
    min-width: 288px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    padding: 15px 25px;
    background-color: #fff;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.07);
    z-index: 2;
}

.filter-tooltip::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    left: -5px;
    top: 50%;
    margin-top: -7px;
    background: #fff;
    transform: rotate(45deg);
}

.filter-tooltip .btn {
    width: 133px;
    height: 54px;
}

.filter-tooltip__txt {
    display: flex;
    font-size: 15px;
    font-weight: 700;
    margin-right: 25px;
}

.filter-tooltip__num {
    display: inline-block;
    margin-left: 4px;
}

.js-accordion-btn {
    cursor: pointer;
    position: relative;
    padding-left: 20px;
}

.js-accordion-btn::before {
    content: "";
    display: block;
    width: 5px;
    height: 9px;
    position: absolute;
    left: 2px;
    top: 50%;
    margin-top: -4px;
    z-index: 0;
    background: url("../img/ic-arrow.svg") no-repeat;
    background-size: 100%;
    transform: rotate(90deg);
    transition: all 0.1s linear;
}

.js-accordion-btn.active::before {
    transform: rotate(-90deg);
}

.js-accordion-content {
    display: none;
}

.js-accordion-content-price {
    display: block;
}

.input-block {
    position: relative;
}

.input-block:not(:last-of-type) {
    margin-bottom: 16px;
}

.input-block:not(.input-search) .input:focus {
    padding: 19px 15px 6px;
}

.input-block:not(.input-search) .input:focus + .input-placeholder {
    opacity: 1;
    top: 7px;
}

.input-block:not(.input-search) .input.populated {
    padding: 19px 15px 6px;
}

.input-block:not(.input-search) .input.populated + .input-placeholder {
    opacity: 1;
    top: 7px;
}

.checkbox {
    display: flex;
    cursor: pointer;
    margin-bottom: 0;
}

.checkbox .checkbox-wrap {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    background-color: #f7f7f7;
}

.checkbox .checkbox-wrap::before {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    background: #2dc964;
    transform: scale(0);
    transition: all 0.1s;
}

.checkbox .checkbox-text {
    display: inline-block;
    margin-left: 8px;
    opacity: 0.5;
}

.checkbox input:checked + .checkbox-wrap::before {
    transform: scale(1);
}

.checkbox-hidden {
    display: none;
}

.catalog-controls {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.catalog-controls__filters {
    display: none;
    margin-right: 30px;
}

.catalog-controls__filters .btn {
    padding: 0 0.5em;
    height: 44px;
}

.catalog-controls__filters .btn::before {
    content: "";
    display: block;
    width: 22px;
    height: 22px;
    margin-right: 4px;
    background: url("/img/ic-filters.svg") no-repeat 0 0;
    background-size: 100%;
}

.catalog-controls__filters .filters-quantity {
    display: inline-block;
    margin: 0 5px 0 8px;
    color: #000;
}

.sticky-top {
    top: 150px;
    z-index: 10;
}
