
/* Loan amount slider */
.range__slider {
	width: 100%;
	position: relative;
}

.range__value {
	width: auto;
	font-size: 1rem;
}

.range__value span {
	font-size: 1.4rem;
	font-weight: 700;
	color: #1c5296;
}

.range__emi {
	width: auto;
	font-size: 1.4rem;
}

.range__emi span {
	font-size: 1.4rem;
	font-weight: 700;
	color: #058a00;
}

.range__slider [type="range"] {
	width: 100%;
	-webkit-appearance: none;
	height: 11px;
	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: 20px;
	height: 20px;
	border-radius: 50%;
	background: #f0f8ff;
	border: rgb(76 184 72) 3px solid;
	cursor: pointer;
	-webkit-transition: background 0.15s ease-in-out;
	transition: background 0.15s ease-in-out;
}

.range__slider [type="range"]::-webkit-slider-thumb:hover {
	background: rgb(76 184 72);
}

.range__slider [type="range"]::-moz-range-thumb {
	width: 20px;
	height: 20px;
	border: 0;
	border-radius: 50%;
	background: #1c5296;
	border: #1c5296 5px solid;
	cursor: pointer;
	-webkit-transition: background 0.15s ease-in-out;
	transition: background 0.15s ease-in-out;
}

.range__tooltip {
	position: absolute;
	top: -45px;
	left: 50%;
	transform: translateX(-50%);
	background: #1c5296;
	color: white;
	padding: 5px 10px;
	border-radius: 6px;
	font-size: 16px;
	font-weight: bold;
	white-space: nowrap;
	z-index: 2;
	pointer-events: none;
}

.range__tooltip::after {
	content: "";
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%);
	border-width: 6px 6px 0 6px;
	border-style: solid;
	border-color: #1c5296 transparent transparent transparent;
}


.digi_range__slider input[type="range"]::-webkit-slider-thumb:hover {
	background: #d7382f !important;
}

/* Webkit Browsers (Chrome, Safari) */
.digi_range__slider input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: #1c5296;
	/* same as tooltip */
	border: 3px solid #fff;
	cursor: pointer;
	transition: background 0.15s ease-in-out;
	margin-top: -1px;
	/* Optional tweak for alignment */
}

.digi_range__slider input[type="range"]::-webkit-slider-thumb:hover {
	background: #d7382f;
}

/* Firefox */
.digi_range__slider input[type="range"]::-moz-range-thumb {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: #1c5296;
	/* same as tooltip */
	border: 3px solid #fff;
	cursor: pointer;
	transition: background 0.15s ease-in-out;
}

/* For Edge */
.digi_range__slider input[type="range"]::-ms-thumb {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: #1c5296;
	/* same as tooltip */
	border: 3px solid #fff;
	cursor: pointer;
}

/* Loan amount slider */
