/* custom styles for UiSlider */

.noUi-target {
    cursor: pointer;
}

.noUi-target :focus {
    outline: none;
}

.noUi-horizontal {
    height: 5px;
    color: #5FB541;
    border: none;
}

.noUi-connect {
    background: #5FB541;
}

.noUi-base {
    background: #e6e6e6;
}

.noUi-horizontal .noUi-handle {
    top: -6px;
    right: -12px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    box-shadow: unset;
    cursor: pointer;
    border: 1px solid #5FB541;
    transition: transform 0.1s;
}

.noUi-horizontal .noUi-handle:before,
.noUi-horizontal .noUi-handle:after {
    content: none;
}

.noUi-horizontal .noUi-handle:hover {
    transform: scale(1.1);
}


/* styles for filter */

.filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 100%;
    padding: 4px 8px;
}

.filter__label {
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.filter__label:before {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #707070;
    font-size: 14px;
}

.filter__label:nth-child(1):before {
    content: "";
}

.filter__label:nth-child(2):before {
    content: "";
}

.filter__input {
    height: 25px;
    border: none;
    padding: 2px;
    cursor: pointer;
    max-width: 60px;
    color: #707070;
}

.filter__input:focus {
    background: transparent;
}

.filter__slider-price {
    width: 100%;
    margin: 0px 10px;
}