.emi_calc .sub-container {
	display: flex;
	width: 100%;
	gap: 50px;
	height: max-content;
}

.emi_calc .header {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}

.emi_calc .header button {
	height: max-content;
	width: max-content;
	padding: 10px;
	border: none;
	background-color: transparent;
	font-size: 35px;
	color: #F15A22;
}

.emi_calc .header button:hover {
	cursor: pointer;
}

.emi_calc .view,
.emi_calc .breakup {
	width: 50%;
}
.emi_calc .details input {
	width: 100%;
}

.emi_calc .detail {
	display: flex;
	justify-content: space-between;
}

.emi_calc .footer {
	display: flex;
	justify-content: space-between;
}

/*----- Styling the sliders ----*/
.emi_calc input[type="range"] {
	-webkit-appearance: none;
	margin: 10px 0;
	width: 100%;
}

.emi_calc input[type="range"]:focus {
	outline: none;
}

.emi_calc input[type="range"]::-webkit-slider-runnable-track {
	width: 100%;
	height: 6px;
	cursor: pointer;
	background: #F15A22;
	border-radius: 10px;
}

.emi_calc input[type="range"]::-webkit-slider-thumb {
	box-shadow: 2px 2px 5px #b3b3b3, -1px -1px 3px grey;
	border: 5px solid #ffffff;
	height: 20px;
	width: 20px;
	border-radius: 50%;
	background: #F15A22;
	cursor: pointer;
	margin-top: -6px;
	-webkit-appearance: none;
}

.emi_calc input[type="range"]:focus::-webkit-slider-runnable-track {
	background: #b3b3b3;
}

.emi_calc input[type="range"]::-moz-range-track {
	width: 100%;
	height: 6px;
	cursor: pointer;
	background: #9088d2;
	border-color: transparent;
	border-width: 16px 0;
	color: transparent;
	border-radius: 10px;
}

.emi_calc input[type="range"]::-moz-range-thumb {
	box-shadow: 2px 2px 5px #b3b3b3, -1px -1px 3px grey;
	border: 5px solid #ffffff;
	height: 20px;
	width: 20px;
	border-radius: 50%;
	background: #9088d2;
	cursor: pointer;
	margin-top: -6px;
}

.emi_calc input[type="range"]::-ms-track {
	width: 100%;
	height: 6px;
	cursor: pointer;
	background: #9088d2;
	border-color: transparent;
	border-width: 16px 0;
	color: transparent;
	border-radius: 10px;
}

.emi_calc input[type="range"]::-ms-fill-lower {
	background: #9088d2;
	border-radius: 5px;
}

.emi_calc input[type="range"]::-ms-fill-upper {
	background: #9088d2;
	border-radius: 5px;
}

.emi_calc input[type="range"]::-ms-thumb {
	box-shadow: 2px 2px 5px #b3b3b3, -1px -1px 3px grey;
	border: 5px solid #ffffff;
	height: 20px;
	width: 20px;
	border-radius: 50%;
	background: #9088d2;
	cursor: pointer;
	margin-top: -6px;
}

.emi_calc input[type="range"]:focus::-ms-fill-lower {
	background: #9088d2;
}

.emi_calc input[type="range"]:focus::-ms-fill-upper {
	background: #9088d2;
}

/*-------------------------------------*/
.emi_calc #price {
	color: #130f31;
	font-size: 25px;
}

.emi_calc .loan-details {
	width: 90%;
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

.emi_calc #price-container {
	margin-top: 50px;
}

.emi_calc #price-container::before {
	content: "Monthly Payable:";
	font-size: 12px;
	display: block;
}
