.price-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.filter-price {
  width: 100%;
}
.price-container {
  border: 1px solid var(--size-border);
  color: var(--bg);
  display: flex;
  justify-content: space-between;
  padding: 3px;
  width: 100%;
  margin: auto;
}
.price-field {
  position: relative;
  width: 100%;
  margin: auto;
  height: 24px;
  box-sizing: border-box;
  padding-left: 0px;
}
.price-field input[type="range"] {
  position: absolute;
  width: 100%;
  height: 6px;
  border: 1px solid var(--black);
  outline: 0;
  box-sizing: border-box;
  border-radius: 5px;
  pointer-events: none;
  -webkit-appearance: none;
  background-color: var(--pink2);
}
.price-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
}
.price-field input[type="range"]:active,
.price-field input[type="range"]:focus {
  outline: 0;
}
.price-field input[type="range"]::-ms-track {
  width: 188px;
  height: 2px;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  border-radius: 5px;
  pointer-events: none;
  background: transparent;
  border-color: transparent;
  background-color: var(--secondary);
  border-radius: 5px;
}
.price-field input[type="range"]::-webkit-slider-thumb {
  position: relative;
  -webkit-appearance: none;
  margin: 0;
  border: 0;
  outline: 0;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  margin-top: -6px;
  background-color: var(--secondary);
  cursor: pointer;
  pointer-events: all;
  z-index: 100;
}

.price-field input[type="range"]::-moz-range-thumb {
  position: absolute;
  appearance: none;
  margin: 0;
  border: 0;
  outline: 0;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  margin-top: -6px;
  background-color: var(--secondary);
  /* background-color: green; */
  cursor: pointer;
  pointer-events: all;
  z-index: 100000;
}
.price-field #lower[type="range"]{
    /* background-color: red !important;
      z-index: 100000 !important; */
      /* position: absolute !important; */
     /* height: 105px;
  width: 105px; */
}
.price-field input[type="range"]::-ms-thumb {
  position: relative;
  appearance: none;
  margin: 0;
  border: 0;
  outline: 0;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  margin-top: -6px;
  background-color: var(--secondary);
  cursor: pointer;
  pointer-events: all;
  z-index: 100;
}
.price-field input[type="range"]::-webkit-slider-runnable-track {
  width: 188px;
  height: 2px;
  cursor: pointer;
  /* background: #555; */
  border-radius: 5px;
}
.price-field input[type="range"]::-moz-range-track {
  width: 188px;
  height: 2px;
  cursor: pointer;
  /* background: #242424; */
  border-radius: 5px;
}
.price-field input[type="range"]::-ms-track {
  width: 188px;
  height: 2px;
  cursor: pointer;
  /* background: #242424; */
  border-radius: 5px;
}
.price-wrap {
  display: flex;
  color: var(--red);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
}
.price-wrap-1,
.price-wrap-2 {
  display: flex;
  margin-left: 0px;
}
.price-wrap_line {
  margin: 6px 0px 5px 5px;
}
.price-wrap #one, .price-wrap #one1,
.price-wrap #two, .price-wrap #two2 {
  width: 30px;
  text-align: right;
  margin: 0;
  padding: 0;
  margin-right: 2px;
  background: 0;
  border: 0;
  outline: 0;
  color: var(--bg);
  font-family: var(--second-family);
  font-size: 12px;
  font-weight: 400;
}
.price-wrap #two, .price-wrap #two2 {
  width: 33px;
}
.price-wrap label {
  text-align: right;
  margin-top: 4px;
  padding-left: 5px;
}
.price-field input[type="range"]:hover::-webkit-slider-thumb {
  transition-duration: 0.3s;
}
.price-field input[type="range"]:active::-webkit-slider-thumb {
  transition-duration: 0.3s;
}
