

.range-slider {
  width: 240px;
  padding: 1em;
  background: rgba(238, 238, 238, 0.7);
  border-radius: 7px;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}

.price-range {
  display: flex;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 16px;
}

.value {
  font-size: 14px;
  width: 3em;
  border: 1px solid #999;
  text-align: center;
}
.value:focus {
  outline: none;
  border-color: yellowgreen;
  box-shadow: 0 0 2px yellowgreen;
}

.track {
  position: relative;
  width: inherit;
  height: 2px;
  background: #efefef;
}

.thumb {
  position: absolute;
  top: 0;
  left: 0;
  cursor: ew-resize;
}
.thumb::after {
  position: absolute;
  content: "";
  border-style: solid;
  border-width: 15px;
  border-left-width: 10px;
  border-right-width: 10px;
}

.thumb-min::after {
  border-top: none;
  border-color: transparent transparent black transparent;
  transform: translate(-50%, 2px);
}

.thumb-max::after {
  border-bottom: none;
  border-color: black transparent transparent transparent;
  transform: translate(-50%, -100%);
}

.selection {
  position: absolute;
  width: unset;
  height: 2px;
  background: #b8a78d;
  box-shadow: 0 0 10px rgb(184 167 141);
}

.thumb-max.active::after {
  border-color: #b8a78d transparent transparent transparent;
}

.thumb-min.active::after {
  border-color: transparent transparent #b8a78d transparent;
}

.hide {
  display: none;
}

