.shop__sidebar__price {
    padding-top: 4px;
    padding-bottom: 16px;
    display: block;
}

.shop__sidebar__price span {
    color: #111;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    width: 100%;
    display: block;
    padding-bottom: 8px;
}

.shop__sidebar__price input {
    display: block;
    width: 100%;
}

.shop__sidebar__price .shop__sidebar__price--value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
}

.shop__sidebar__price .shop__sidebar__price--value .max-value {
    text-align: right;
}

.shop__sidebar__price .shop__sidebar__price--value .max-value,
.shop__sidebar__price .shop__sidebar__price--value .min-value
{
    color: #111;

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    opacity: 0.5;
}

.shop__sidebar__price input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 2px !important;
    /*background-color: #111;*/
    background: linear-gradient(to right, transparent 0px, transparent 5px, #111 5px, #111 calc(100% - 5px), transparent calc(100% - 5px), transparent 100%);
    margin: 10px 0;
}

.shop__sidebar__price input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 15 15" fill="none"><circle cx="7.49972" cy="7.49997" r="5.35714" fill="%23111"/></svg>') no-repeat center;
    background-size: contain;
    cursor: pointer;
}

.shop__sidebar__price input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 15 15" fill="none"><circle cx="7.49972" cy="7.49997" r="5.35714" fill="%23111"/></svg>') no-repeat center;
    background-size: contain;
    cursor: pointer;
}

.shop__sidebar__price input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
}

.shop__sidebar__price input[type="range"]::-moz-range-track {
    width: 100%;
}

.double-range__control {
    position: relative;
}

.woocommerce .double-range__control input[type=range] {
    padding: 0 !important;
    border: none !important;
}

.double-range__control input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: all;
}

.double-range__control input[type=range]::-moz-range-thumb {
    -webkit-appearance: none;
    pointer-events: all;
}

.double-range__control input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 1px;
    width: 100%;
    position: absolute;
    pointer-events: none;
}

.double-range__control {
    height: 20px;
}

.double-range__control #min_price {
    height: 0;
    z-index: 1;
}

.double-range__control #max_price {
    height: 1px;
    z-index: 2;
}

.shop__sidebar__price--value .min-value span,
.shop__sidebar__price--value .max-value span
{
    display: inline-block;
    width: max-content;
}

.shop__sidebar__price--apply
{
    width: max-content;
    opacity: .5;
    cursor: pointer;

    transition: opacity .3s;
}

.shop__sidebar__price--apply:hover
{
    opacity: 1;
}