/* style tick marks*/
.range-slider {
  flex: 1;
  margin-top:-30%;
  font-size: 17px;
}

.range-slider label {
  font-size: 1 rem;
	font-weight: 500;
	font-family: 'open sans';
	margin-top: -10px;
	margin-bottom: -5px;
	color: #000000;
}

.sliderticks {
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  line-height: 1.3;
  font-size: .95 rem;
}

.sliderticks span {
  display: flex;
  justify-content: center;
  width: 1px;
  height: 10px;
  /* background: #bcbcbc; */
  /* line-height: 40px; */

}

/* end ticks style*/


input[type="range"] {
  -webkit-appearance: none;
  appearance: none; 
  width: 100%;
  cursor: pointer;
  outline: none;
  border-radius: 15px;
  height: 6px;
  background: #dce1ff;
}

/* Thumb: webkit */
input[type="range"]::-webkit-slider-thumb {
  /* removing default appearance */
  -webkit-appearance: none;
  appearance: none; 
  /* creating a custom design */
  height: 15px;
  width: 15px;
  background-color: #0967ce;
  border-radius: 50%;
  border: none;
  transition: .2s ease-in-out;
}

/* Thumb: Firefox */
input[type="range"]::-moz-range-thumb {
  height: 15px;
  width: 15px;
  background-color: #0967ce;
  border-radius: 50%;
  transition: .2s ease-in-out;
}

/* slider contents */

.wrapper {
  max-width: 350px;
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.range {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  height: 6rem;
  width: 90%;
  padding: 10px 15px;
}



.sliderticks span {
  display: flex;
  justify-content: center;
  width: 45px;
  height: 10px;
  line-height: 1;
  padding-top: 2%;
  font-family: 'open sans';
  font-size: .95 rem;
}

/* net returns slider css */
/* style tick marks*/
.return-slider {
  flex: 1;
  margin-top:-30%;
  /* direction: rtl; */
}

.return-slider label {
  color: #1f1f1f;
  font-size:20px;
}

.sliderticks-return {
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}

.sliderticks-return span {
  display: flex;
  justify-content: center;
  width: 1px;
  height: 10px;
  /* background: #bcbcbc; */
  line-height: 40px;
}


.sliderticks-return span {
  display: flex;
  justify-content: center;
  width: 60px;
  height: 10px;
  line-height: 14px;
  padding-top: 2%;
}