.range-slider {
  height: 41px;
  width: 267px;
  display: flex;
}
.range-slider__rate {
  width: 163px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.range-slider__stars {
  height: 20px;
  width: 145px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  position: relative;
}
.range-slider__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 70.5%;
  background-color: #bd9e4c;
  z-index: 1;
}
.range-slider__star {
  width: 29px;
  position: relative;
  z-index: 2;
}
.range-slider__img {
  margin: 0 auto;
  width: 100%;
  height: 20px;
}
.range-slider__range {
  height: 14px;
  width: 100%;
  padding: 0 5px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  background-color: #dedede;
  position: relative;
}
.range-slider__input {
  width: 100%;
  margin: 0 auto;
  direction: ltr;
  appearance: none;
  background: #000;
  border-radius: 20px;
  height: 7px;
  position: relative;
  z-index: 99;
  cursor: pointer;
}
.range-slider__input::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  background-image: url("assets/images/icons/thumb.png");
  background-position: 0 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.range-slider__input::-moz-range-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  background-image: url("assets/images/icons/thumb.png");
  background-position: 0 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.range-slider__out {
  height: 100%;
  width: 92px;
  margin-left: 10px;
  border: 1px solid #dedede;
  border-radius: 12px;
  text-align: center;
  color: gray;
}
.range-slider__text {
  font-size: 12px;
  margin-bottom: 2px;
}
.range-slider__number {
  font-size: 33px;
  font-weight: 400;
  line-height: 0;
}
@media (max-width: 540px) {
  .range-slider {
    margin: 0 auto;
    margin-bottom: 15px;
  }
}