:root{
  --black: black;
}
.range_container {
  width: 100%;
  /*height: 100vh;*/
  /*display: flex;*/
  float:left;
margin-top: 12px;
align-items: center;
  justify-content: center;
}

.range {
  display: flex;
  /*width: 600px;*/
}

.range__slider {
  width: 50%;
}

.range__value {
  width: 45%;
  margin-left: 30px;
  text-align: center;
  border-left: var(--border) 1px solid;
}

.form-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-group label {
  text-transform: uppercase;
  font-size: .7rem;
  color: #222;
  margin-bottom: 5px;
}

.form-group span {
  font-size: 2rem;
  margin-left:12px;
  font-weight: 600;
  color: #3c3b3b;
  width:100%;
}

.range__slider label {
  margin-bottom: 10px;
}

.range__slider [type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 5px;
  border-radius: 6px;
  background: #f1f1f1;
  outline: none;
  padding: 0;
  margin: 0;
}

/* custom thumb */
.range__slider [type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #000;
  /*background: var(--color1);*/
  border: #fff 9px solid;
  cursor: pointer;
  -webkit-transition: background .15s ease-in-out;
  transition: background .15s ease-in-out;
}

.range__slider [type="range"]::-webkit-slider-thumb:hover {
  /*background: #f0932b;*/
}

.range__slider [type="range"]::-moz-range-thumb {
  width: 2px;
  height: 2px;
  border: 0;
  border-radius: 50%;
  background: #000;
  /*border: #f9ca24 5px solid; cursor: pointer;*/
  -webkit-transition: background .15s ease-in-out;
  transition: background .15s ease-in-out;
}

.range__slider [type="range"]::-moz-range-thumb:hover {
  /*background: #f9ca24;*/
}

/* remove border */
input::-moz-focus-inner, input::-moz-focus-outer {
  border: 0;
}