.coverForRangeInput {
  width: 255px;
  border-radius: 10px;
  position: relative;
  border: 1px solid #E2E2E2;
  padding: 43px 21px 11px;
  margin: 30px 0px 33px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.coverForRangeInput::before{
  content: '';
  position: absolute;
  bottom: -2px;
  right: 9px;
  display: block;
  height: 3px;
  width: 55px;
  background: #3CA9E8;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  }

  .coverForRangeInput::after{
    content: '';
  position: absolute;
  bottom: 12px;
    right: 2px;
  background: url(../img/priceMark.png) no-repeat;
  width:125px;
  height: 104px;
  z-index: -1;
  }


.range {
  padding: 15px 0 15px 19px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  border-bottom: 1px solid #FFFFFF;
  background: #F6F6F6;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.price-input {
  width: 100%;
  display: flex;
  justify-content: space-between;
  column-gap: 75px;
  padding: 2px 10px 0 7px;
}
.input-min,
.input-max{
  padding-top: 2px;
}

.price-input .field {
  display: flex;
  /* width: 100%; */
  height: 45px;
  align-items: center;
}

.field {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}

.field input {
  width: 45px;
  height: 100%;
  outline: none;
  /* margin-left: -3px; */
  border-radius: 5px;
  text-align: center;
  -moz-appearance: textfield;
  background: none;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #000000;

}

.field .ddd {
  padding-top: 1px;
}

.dmax {
  margin-right: 4px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.price-input .separator {
  width: 130px;
  display: flex;
  font-size: 19px;
  align-items: center;
  justify-content: center;
}

.slider {
  width: 217px;
  margin-top: 25px;
  height: 11px;
  position: relative;
  background: #FFFFFF;
  border: 1px solid #DFDFDF;
  border-radius: 10px;
  margin-left: -2px;
}

.slider .progress {
  height: 100%;
  left: 25%;
  right: 25%;
  position: absolute;
  border-radius: 5px;
  background: #419EF4;
}

.range-input {
  position: relative;
}

.range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -8px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: #419EF4;
  pointer-events: auto;
  -webkit-appearance: none;
  border: 1.5px solid #FFFFFF;
}

input[type="range"]::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: #419EF4;
  pointer-events: auto;
  -moz-appearance: none;
  border: 1.5px solid #FFFFFF;
}