.linkGenContainer button.btn.btn-info.btn-block {
	font-family: "Nunito", Sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 30px;
 }

 :root {
 	--dark: #012d57;
 	--mid: #00ccff;
 	--cellpad: 1vw;
 }

 #paymentCalc {
 	font-family: Montserrat, sans-serif;
 	max-width: 720px;
 	margin: 0 auto;
 	border-radius: 25px;
 	overflow: hidden;
 }

 /*header ================================================*/
 .pc_header {
 	display: flex;
 	padding: 15px;
 	flex-wrap: wrap;
 }

 .pc_header h3 {
 	font-weight: 300;
 	font-size: clamp(1.2em, 7vw, 2em);
 }

 #patientName {
 	font-weight: 300;
 	font-size: clamp(0.9em, 2.3vw, 1.2em);
 	color: #97AABA;
 }

 .pc_header h3 span {
 	display: block;
 	color: var(--mid);
 	font-size: .65em;
 	text-transform: uppercase;
 	font-style: italic;
 	line-height: 1.1em;
 }

 .pc_header,
 .pc_footer {
 	background: var(--dark);
 	color: #fff;
 	display: flex;
 	padding: 15px;
 	justify-content: space-between;
 	align-items: center;
 }

 .pc_header h3 span,
 .pc_footer span {
 	color: var(--mid);
 }

 /*body ================================================*/

 .details {
 	font-size: clamp(1em, 2.5vw, 1.7em);
 }

 .details>div {
 	display: flex;
 	flex-wrap: wrap;
 	justify-content: space-between;
 	padding: var(--cellpad);
 }


 .pc_body .details>div:nth-child(even) {
 	background-color: #e8edf3;
 }

 .pc_body .details>div:nth-child(odd) {
 	background-color: #f4f7fa;
 }

 .dollars {
 	font-weight: 600;
 	color: var(--dark);
 }

 #paymentCalc .dollars:before {
 	content: "$";
 	font-size: .33em;
 	position: relative;
 	top: -1.33em;
 }

 #paymentCalc .percent:after {
 	content: "%";
 	font-size: .33em;
 	position: relative;
 	top: -1.33em;
 }

 /*slider controls =======================================*/
 .payment,
 .downPayment {
 	display: flex;
 	align-items: center;
 	justify-content: space-between;
 }

 .downPayment>div,
 .payment>div {
 	flex-basis: 80%;
 	padding: var(--cellpad);
 }

 .downPayment label,
 .payment label {
 	font-size: clamp(1em, 2.5vw, 1.7em);
 }

 #monthlyPayment,
 #downPayment {
 	font-size: clamp(1.9em, 3vw, 2.75em);
 	font-weight: 700;
 	flex-grow: 1;
 	text-align: center;
 }

 /*footer ================================================*/

 .pc_button {
 	background: #fff;
 	display: inline-block;
 	padding: 0.7em 1.5em;
 	border-radius: 2em;
 	text-decoration: none;
 	color: var(--dark);
 	font-size: 1.25em;
 }

 .pc_footer .stats {
 	display: flex;
 	flex-wrap: wrap;
 	justify-content: space-around;
 	flex-grow: 1;
 }

 .pc_footer>div {
 	text-align: center;
 }

 .pc_footer label {
 	display: block;
 	font-size: .85em;
 }

 .pc_footer span {
 	font-size: clamp(1em, 6vw, 2.2em);
 	font-weight: 400;
 }

 .pc_summary {
 	padding-left: 18px;
 	font-size: 15px;
 	display: none;
 }

 .elementor-kit-127 a:hover {
 	text-transform: unset;
 }



 @media(max-width:600px) {
 	.pc_footer .graphic {
 		display: none;
 	}

 	.pc_footer {
 		flex-direction: column;
 	}

 	.pc_footer .stats {
 		flex-direction: row;
 		grid-gap: 10px;
 	}

 	.details>div {
 		flex-direction: column;
 		text-align: center;
 	}

 	.payment,
 	.downPayment {
 		flex-direction: column;
 		text-align: center;
 	}

 	.downPayment label,
 	.payment label {
 		margin: 2.8vw 0;
 		display: inline-block;
 	}

 	.details .dollars {
 		font-size: 24px;
 	}
 }

 /*range slider styles ================================================*/
 .slider {
 	-webkit-appearance: none;
 	/* Override default CSS styles */
 	appearance: none;
 	width: 100%;
 	/* Full-width */
 	height: 10px;
 	/* Specified height */
 	background: #d3d3d3;
 	/* Grey background */
 	outline: none;
 	/* Remove outline */
 	opacity: 0.7;
 	/* Set transparency (for mouse-over effects on hover) */
 	-webkit-transition: .2s;
 	/* 0.2 seconds transition on hover */
 	transition: opacity .2s;
 }

 /* Mouse-over effects */
 .slider:hover {
 	opacity: 1;
 	/* Fully shown on mouse-over */
 }

 /* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
 .slider::-webkit-slider-thumb {
 	-webkit-appearance: none;
 	/* Override default look */
 	appearance: none;
 	width: 20px;
 	/* Set a specific slider handle width */
 	height: 20px;
 	/* Slider handle height */
 	background: var(--dark);
 	/* Green background */
 	border-radius: 50%;
 	cursor: pointer;
 	/* Cursor on hover */
 }

 .slider::-moz-range-thumb {
 	width: 20px;
 	/* Set a specific slider handle width */
 	height: 20px;
 	/* Slider handle height */
 	background: var(--dark);
 	/* Green background */
 	cursor: pointer;
 	/* Cursor on hover */
 }

 /* Fix sticky header overlap */
div#pageContent {
	margin-top: 115px;
}
/* ── Payment calculator: slider rows ───────────────────────────── */
.slider-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
}

.slider-row label {
    font-weight: 600;
    margin-bottom: 0;
}

/* ── Payment summary panel ─────────────────────────────────────── */
.payment-summary {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 16px 20px;
    margin-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.95rem;
}

.summary-row:last-of-type {
    border-bottom: none;
}

.summary-total {
    font-weight: 700;
    font-size: 1.05rem;
    margin-top: 4px;
    padding-top: 8px;
    border-top: 2px solid #dee2e6;
    border-bottom: none;
}
