@charset "UTF-8";
/* CSS Document */

.range-slider-block {
	display: flex;
	align-items: center;
}

/**
 * Mortgage Balance
 */
.range {
  align: center;
	width: 100%;
	padding-top:2rem;
}

.range__slider {
  width: 100%;
}

.range__value {
  width: 100%;
  text-align: center;
	font-size: 1.5rem;
  color: #0080bf;
	font-weight: 700 !important;
}



.slider label {
  text-transform: uppercase;
  font-size: 1.25rem;
  color: #0d1623;
	font-weight: 700;
  margin-bottom: 5px;
}

.slider span {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0d1623;
}

.range__slider label {
  margin-bottom: 10px;
	font-size: 1.25rem;
  color: #0d1623;
	font-weight: 700;
}

.range__slider [type="range"] {
  width: 45rem;
  -webkit-appearance: none;
  height: 17px;
  border-radius: 6px;
  background: #0083c4;
	border: 1px solid #0083c4;
  outline: none;
  padding: 0;
  margin: 0;
}

.range__slider [type="range"].range__slider-property {
  width: 45rem;
  -webkit-appearance: none;
  height: 17px;
  border-radius: 6px;
  background: #0083c4;
	border: 1px solid #0083c4;
  outline: none;
  padding: 0;
  margin: 0;
}

/* custom thumb */
.range__slider [type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 35px;
  height: 35px;
  border-radius: 50px;
  background: #0083c4;
  border: #0083c4 1px 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: #beeef3;
}

.range__slider [type="range"]::-moz-range-thumb {
  width: 20px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: #0083c4;
  border: #0083c4 1px 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: #0083c4;
}

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


/**
 * Property Value
 */
