.widget_price_filter .price_slider {
  margin-bottom: 20px;
}
.widget_price_filter #min_price,
.widget_price_filter #max_price {
  display: none;
}
.widget_price_filter .price_slider_amount {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -10px;
}
.widget_price_filter .price_slider_amount .button {
  order: 2;
  margin-bottom: 10px;
  padding: 10px 14px;
  font-size: 12px;
  line-height: 16px;
  border-radius: var(--btn-default-brd-radius);
  color: var(--btn-default-color);
  box-shadow: var(--btn-default-box-shadow);
  background-color: var(--btn-default-bgcolor);
}
.widget_price_filter .price_slider_amount .button:hover {
  color: var(--btn-default-color-hover);
  box-shadow: var(--btn-default-box-shadow-hover);
  background-color: var(--btn-default-bgcolor-hover);
}
.widget_price_filter .price_slider_amount .button:active {
  box-shadow: var(--btn-default-box-shadow-active);
  bottom: var(--btn-default-bottom-active);
}
.widget_price_filter .price_slider_amount .price_label {
  order: 1;
  margin-bottom: 10px;
  color: #717171;
}
.widget_price_filter .price_slider_amount .price_label > span {
  color: #2d2a2a;
  font-weight: 600;
}
.widget_price_filter .price_slider_amount .clear {
  display: none;
}
.widget_price_filter .ui-slider {
  position: relative;
}
.widget_price_filter .ui-slider-horizontal {
  height: 20px;
  border: none;
  background: none;
  cursor: pointer;
}
.widget_price_filter .ui-slider-horizontal:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin-top: -1px;
  height: 2px;
  background-color: #e7e7e7;
}
.widget_price_filter .ui-slider .ui-slider-range {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: block;
  margin-top: -1px;
  height: 2px;
  border: 0;
  border-radius: 0;
  background-image: none;
  background-color: var(--wd-primary-color);
}
.widget_price_filter .ui-slider .ui-slider-handle {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-top: -15px;
  margin-left: -15px;
  width: 30px;
  height: 30px;
  outline: none;
  border: none;
  border-radius: 0;
  background: none;
  background-color: transparent !important;
  cursor: ew-resize;
}
.widget_price_filter .ui-slider .ui-slider-handle:after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 15px;
  background-color: var(--wd-primary-color);
}
.widget_price_filter .ui-slider-range-min {
  left: -1px;
}
.widget_price_filter .ui-slider-range-max {
  right: -1px;
}
.login-see-prices .widget_price_filter {
  display: none;
}
[class*="color-scheme-light"]
  .widget_price_filter
  .price_slider_amount
  .price_label {
  color: rgba(255, 255, 255, 0.8);
}
[class*="color-scheme-light"]
  .widget_price_filter
  .price_slider_amount
  .price_label
  > span {
  color: #fff;
}
[class*="color-scheme-light"]
  .widget_price_filter
  .ui-slider-horizontal:before {
  background-color: rgba(255, 255, 255, 0.4);
}
