/* Calculator total highlight on public inquiry forms. */
.klima-contact-estimate-total {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 18px;
	margin: 2px 0 6px;
	padding: 18px 20px;
	border: 1px solid #246786;
	border-left: 5px solid #64d9d0;
	border-radius: 15px;
	background: linear-gradient(135deg, #102d45 0%, #123a55 100%);
	box-shadow: 0 14px 32px rgba(15, 45, 69, .16);
	color: #fff;
}

.klima-contact-estimate-total span,
.klima-contact-estimate-total small {
	display: block;
}

.klima-contact-estimate-total span {
	color: #8ce5df;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .09em;
	line-height: 1.3;
	text-transform: uppercase;
}

.klima-contact-estimate-total small {
	margin-top: 4px;
	color: #c7dce7;
	font-size: 11px;
	line-height: 1.4;
}

.klima-contact-estimate-total strong {
	color: #fff;
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 950;
	letter-spacing: -.03em;
	line-height: 1;
	white-space: nowrap;
}

@media (max-width: 540px) {
	.klima-contact-estimate-total {
		grid-template-columns: minmax(0, 1fr);
		gap: 12px;
		padding: 16px;
	}

	.klima-contact-estimate-total strong {
		font-size: 28px;
	}
}
