.search_text_change {
  color: black;
}
.search_text_change a {
  color: black;
}

.range-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 40px;
  margin: 20px auto;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-track {
  position: absolute;
  width: 100%;
  height: 6px;
  background: #ddd;
  border-radius: 3px;
  top: 50%;
  transform: translateY(-50%);
}

.slider-track-fill {
  position: absolute;
  height: 6px;
  background: #ff0000;
  border-radius: 3px;
  top: 50%;
  transform: translateY(-50%);
}

input[type=range] {
  position: absolute;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: none;
  pointer-events: none;
}

input[type=range]::-webkit-slider-thumb {
  pointer-events: auto;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  background: #ff0000;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

.range-values {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  max-width: 400px;
  color: #333;
  font-weight: 400;
}
.range-values input {
  width: 85px;
  border-radius: 6px;
  border: 1px solid #c5c5c5;
  margin-left: 5px;
  text-align: center;
}
.range-values label {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.get_years_inputs {
  width: 90%;
  margin: 10px auto 15px;
  display: block;
  border: none;
  border-radius: 5px;
  background-color: white;
  padding: 6px 0px;
  box-shadow: 0px 0px 6px 0 #b6b5b5;
  transition: 250ms;
}
.get_years_inputs:hover {
  background: #ff3300;
  color: white;
}

.price-ranges-mobile {
  display: none;
}

.product_name p {
  margin: 0;
  font-size: 12px;
}

@media screen and (max-width: 860px) {
  .price-ranges-mobile {
    display: block;
  }
  .price-ranges {
    display: none;
  }
}