/* Breeze Keeper Instant Quote Estimator - v1.7.0 (Sun Software) */

.bke-wrap {
	--bke-accent: var(--e-global-color-accent, #0e7fd1);
	--bke-text: var(--e-global-color-text, #24384a);
	--bke-muted: var(--e-global-color-primary, #63758a);
	margin: 0 auto;
}

.bke-progress {
	height: 6px;
	background: #d9e4ee;
	border-radius: 0;
	overflow: hidden;
	margin-bottom: 100px;
}

.bke-progress-bar {
	height: 100%;
	background: linear-gradient(90deg, var(--bke-accent), #38b6ff);
	border-radius: 0;
	transition: width .4s ease;
}

.bke-card {
	position: relative;
	background: #ffffff;
	max-width: 1220px;
	margin: 0 auto;
}

@media (max-width: 560px) {
	.bke-card {
		padding: 24px 18px 22px;
	}
}

.bke-anim {
	animation: bkeFade .35s ease;
}

@keyframes bkeFade {
	from {
		opacity: 0;
		transform: translateY(14px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.bke-anim {
		animation: none;
	}

	.bke-progress-bar {
		transition: none;
	}
}

.bke-qnum {
	font-size: 13px;
	font-weight: 700;
	color: var(--bke-accent);
	margin-bottom: 6px;
	letter-spacing: .04em;
	display: flex;
	align-items: center;
	gap: 15px;
}

.bke-title {
	margin: 0;
	font-size: 26px;
	line-height: 1.25;
	font-weight: 700;
	color: var(--bke-text);
}

@media (max-width: 560px) {
	.bke-title {
		font-size: 21px;
	}
}

.bke-req {
	color: var(--bke-accent);
	margin-left: 3px;
}

.bke-help {
	margin: 0 0 22px !important;
	color: var(--bke-muted);
	font-size: 15px;
	line-height: 1.5;
}

/* Options */
.bke-options {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 12px;
	margin-top: 20px;
}

.bke-options-list {
	grid-template-columns: 1fr;
}

@media (max-width: 480px) {
	.bke-options {
		grid-template-columns: 1fr;
	}
}

.bke-opt {
	display: block;
	align-items: center;
	width: 100%;
	padding: 14px 16px;
	background: #f5f9fd;
	border: 2px solid #d9e4ee;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	color: var(--bke-text);
	cursor: pointer;
	text-align: left;
	transition: border-color .15s, background .15s, transform .1s;
}

.bke-icon .icon-img {
	width: 130px;
	max-width: 100%;
}

.bke-opt:focus,
.bke-opt:hover,
.bke-opt:focus,
.bke-opt:hover,
.bke-opt:focus,
.bke-opt:hover,
.bke-opt:hover {
	color: var(--bke-text);
	outline: 0px solid var(--bke-accent);
	outline-offset: 0px;
	border-color: var(--bke-accent);
	background: #eef6fd;
}

.bke-opt:focus-visible {
	outline: 0px solid var(--bke-accent);
	outline-offset: 0px;
}

.bke-opt:active {
	transform: scale(.985);
}

.bke-selected {
	border-color: var(--bke-accent);
	background: #e3f1fc;
	box-shadow: 0 0 0 1px var(--bke-accent) inset;
}

/* Ground vs Roof outdoor unit options get their own accent color */
.bke-opt-ground {
	border-color: #2e7d32;
}

.bke-opt-ground .bke-icon,
.bke-opt-ground .bke-key {
	color: #2e7d32;
	border-color: #2e7d32;
}

.bke-opt-ground:focus,
.bke-opt-ground:hover {
	border-color: #2e7d32;
	background: #eaf5ea;
}

.bke-opt-ground.bke-selected {
	border-color: #2e7d32;
	background: #e1f3e1;
	box-shadow: 0 0 0 1px #2e7d32 inset;
}

.bke-opt-roof {
	border-color: #1565c0;
}

.bke-opt-roof .bke-icon,
.bke-opt-roof .bke-key {
	color: #1565c0;
	border-color: #1565c0;
}

.bke-opt-roof:focus,
.bke-opt-roof:hover {
	border-color: #1565c0;
	background: #e8f1fb;
}

.bke-opt-roof.bke-selected {
	border-color: #1565c0;
	background: #dfedfa;
	box-shadow: 0 0 0 1px #1565c0 inset;
}

.bke-key {
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	border: 1px solid var(--bke-accent);
	color: var(--bke-accent);
	border-radius: 5px;
	background: #fff;
}

.bke-icon {
	color: var(--bke-accent);
	flex: 0 0 auto;
	display: block;
	margin: 0 auto;
	text-align: center;
}

.bke-opt-label {
	margin-left: 10px;
	display: inline-block;
	position: relative;
	top: 1px;
}

/* Inputs */
.bke-label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 6px;
	color: var(--bke-text);
}

.bke-input {
	width: 100%;
	padding: 13px 14px;
	font-size: 17px;
	border: 2px solid #d9e4ee;
	border-radius: 10px;
	color: var(--bke-text);
	background: #fff;
	box-sizing: border-box;
}

.bke-input:focus {
	outline: none;
	border-color: var(--bke-accent);
	box-shadow: 0 0 0 3px rgba(14, 127, 209, .15);
}

.bke-two {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

@media (max-width: 480px) {
	.bke-two {
		grid-template-columns: 1fr;
	}
}

.bke-error {
	min-height: 20px;
	margin-top: 8px;
	color: #c0392b;
	font-size: 14px;
	font-weight: 600;
}

/* Nav */
.bke-nav {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 18px;
	flex-wrap: wrap;
}

.bke-btn {
	display: inline-block;
	padding: 12px 22px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 10px;
	border: 2px solid #d9e4ee;
	background: #fff;
	color: var(--bke-text);
	cursor: pointer;
	text-decoration: none;
	transition: background .15s, border-color .15s;
}

.bke-btn:hover {
	border-color: var(--bke-accent);
	background: var(--bke-accent);
}

.bke-btn:focus-visible {
	outline: 3px solid var(--bke-accent);
	outline-offset: 2px;
}

.bke-primary {
	background: var(--bke-accent);
	border-color: var(--bke-accent);
	color: #fff;
}

.bke-primary:hover,
.bke-primary:focus {
	background: #fff;
	border-color: var(--bke-accent);
	color: var(--bke-accent);
}

.bke-primary:disabled {
	opacity: .6;
	cursor: wait;
}

.bke-hint {
	font-size: 13px;
	color: var(--bke-muted);
}

.bke-back-float {
	margin-top: 18px;
}

/* Results */
.bke-results {
	text-align: left;
}

.bke-ribbon {
	display: inline-block;
	background: var(--bke-accent);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 999px;
	margin-bottom: 12px;
}

.bke-quote-box {
	border: 2px solid var(--bke-accent);
	border-radius: 14px;
	padding: 20px;
	margin: 12px 0 20px;
	background: linear-gradient(180deg, #f2f9ff, #ffffff);
}

.bke-sys-name {
	font-size: 19px;
	font-weight: 800;
	color: var(--bke-text);
}

.bke-sys-specs {
	font-size: 13.5px;
	color: var(--bke-muted);
	margin: 5px 0 14px;
}

.bke-price {
	font-size: 34px;
	font-weight: 800;
	color: var(--bke-accent);
	letter-spacing: -.01em;
}

@media (max-width: 480px) {
	.bke-price {
		font-size: 27px;
	}
}

.bke-monthly {
	margin-top: 6px;
	font-size: 16px;
	color: var(--bke-text);
}

.bke-mrange {
	color: var(--bke-muted);
	font-size: 13px;
}

.bke-dial {
	margin: 18px 0 6px;
}

.bke-dial input[type="range"] {
	width: 100%;
	accent-color: var(--bke-accent);
	cursor: pointer;
}

.bke-dial-labels {
	display: flex;
	justify-content: space-between;
	font-size: 12.5px;
	color: var(--bke-muted);
	margin-top: 2px;
}

.bke-tier {
	margin: 14px 0 4px;
	max-width: 420px;
}

.bke-discount {
	margin: 18px 0 12px;
	padding: 12px 14px;
	background: #fff6ec;
	border: 1px dashed var(--bke-accent);
	border-radius: 10px;
	font-size: 15px;
}

.bke-warranty {
	list-style: none;
	margin: 0 0 12px;
	padding: 0;
	font-size: 14.5px;
	line-height: 1.9;
	color: var(--bke-text);
}

.bke-disclaimer {
	font-size: 12.5px;
	color: var(--bke-muted);
	margin: 0 0 18px;
	line-height: 1.5;
}

.bke-book {
	display: block;
	text-align: center;
	font-size: 18px;
	padding: 15px 22px;
	color: #fff !important;
	margin-top: 18px;
}

.bke-book:hover {
	color: var(--bke-muted) !important;
}

.bke-sent {
	margin-top: 12px;
	text-align: center;
	font-size: 13px;
	color: var(--bke-muted);
}

/* Saved quote and booking */
.bke-result-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin: 14px 0 4px;
}

.bke-save-status {
	font-size: 13px;
	color: var(--bke-muted);
}

.bke-secondary-link {
	display: inline-block;
	margin: 10px 14px 0 0;
	font-size: 14px;
	font-weight: 700;
	color: var(--bke-accent);
}

.bke-booking-box {
	margin-top: 24px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.bke-booking-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 14px 18px;
}

.bke-booking-full {
	grid-column: 1 / -1;
}

.bke-booking-box .bke-input {
	min-height: 64px;
	padding: 15px 18px;
	border: 1px solid #d5dbe1;
	border-radius: 10px;
	background: #fff;
	font-size: 18px;
	font-weight: 400;
	color: #30343a;
}

.bke-booking-box .bke-input::placeholder {
	color: #7d7f82;
	opacity: 1;
}

.bke-datetime-field label {
	display: block;
	margin: 0 0 7px;
	font-size: 14px;
	font-weight: 700;
	color: var(--bke-text);
}

.bke-book-submit {
	margin-top: 14px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 640px) {
	.bke-booking-grid {
		grid-template-columns: 1fr;
	}

	.bke-booking-full {
		grid-column: auto;
	}
}

.bke-booking-success {
	margin-top: 20px;
	padding: 16px;
	border: 1px solid #b7dfbd;
	border-radius: 12px;
	background: #edf8ef;
	color: #215c2a;
	font-weight: 700;
}

#bke-eff-value {
	margin-left: 6px;
	font-weight: 600;
	color: var(--bke-accent);
}

/* Personalized Elementor result heading shortcode */
.bke-result-heading {
    --bke-accent: var(--e-global-color-accent, #0e7fd1);
    --bke-text: var(--e-global-color-text, #24384a);
    --bke-muted: var(--e-global-color-primary, #63758a);
    text-align: center;
}

.bke-result-heading .bke-result-greeting, .bke-result-heading p {
    color: #fff;
    text-align: center;
}

.bke-result-greeting {
	margin: 0;
	font-size: clamp(28px, 4vw, 48px);
	line-height: 1.12;
	font-weight: 800;
	color: var(--bke-text);
}

.bke-result-subheading {
	margin: 10px 0 0;
	font-size: 17px;
	line-height: 1.5;
	color: var(--bke-muted);
}

.bke-result-error {
	padding: 14px 16px;
	border: 1px solid #efc2bd;
	border-radius: 10px;
	background: #fff3f1;
	color: #9b2c20;
	font-weight: 700;
}

/* Dynamic recommended-system card inside the result shortcode */
.bke-result-layout {
    display: grid;
    grid-template-columns: minmax(260px, .78fr) minmax(0, 1.70fr);
    gap: 35px;
    align-items: start;
}

.bke-result-system-column,
.bke-result-quote-column {
	min-width: 0;
}

.bke-recommended-card {
	height: 100%;
	overflow: hidden;
	border: 1px solid #e3e8ed;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(30, 55, 75, .08);
	color: var(--bke-text);
}

.bke-recommended-media {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 230px;
	padding: 22px;
	background: linear-gradient(180deg, #f7fafc, #ffffff);
	border-bottom: 1px solid #edf0f3;
}

.bke-recommended-media > img,
.bke-system-slide img {
	display: block;
	width: 100%;
	max-width: 360px;
	height: 210px;
	object-fit: contain;
}

.bke-system-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 278px;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    touch-action: pan-y;
}

.bke-system-slider-track {
	position: relative;
	width: 100%;
	height: 100%;
}

.bke-system-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transform: translateX(12px);
	transition: opacity .35s ease, transform .35s ease, visibility .35s ease;
	pointer-events: none;
}

.bke-system-slide.is-active {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
	pointer-events: auto;
}

.bke-system-slider-arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 1px solid rgba(11, 76, 122, .16);
	border-radius: 50%;
	background: rgba(255, 255, 255, .92);
	box-shadow: 0 4px 14px rgba(30, 55, 75, .14);
	color: var(--bke-accent);
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
}

.bke-system-slider-arrow:hover,
.bke-system-slider-arrow:focus-visible {
	background: #fff;
	border-color: var(--bke-accent);
	outline: none;
}

.bke-system-slider-prev { left: 8px; }
.bke-system-slider-next { right: 8px; }

.bke-system-slider-dots {
	position: absolute;
	left: 50%;
	bottom: 8px;
	z-index: 3;
	display: flex;
	gap: 6px;
	padding: 5px 7px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .86);
	transform: translateX(-50%);
}

.bke-system-slider-dot {
	width: 7px;
	height: 7px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #b7c6d2;
	cursor: pointer;
}

.bke-system-slider-dot.is-active {
	width: 18px;
	border-radius: 999px;
	background: var(--bke-accent);
}

.bke-recommended-media > img, .bke-system-slide img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 350px;
    object-fit: cover;
}

.bke-system-slider .bke-system-slider-arrow {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
	.bke-system-slide { transition: none; }
}

.bke-system-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: #eaf5fc;
	color: var(--bke-accent);
}

.bke-system-fallback svg {
	width: 104px;
	height: 104px;
}

.bke-recommended-content {
	padding: 22px;
}

.bke-recommended-eyebrow {
	display: block;
	margin-bottom: 7px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--bke-accent);
}

.bke-recommended-title {
	margin: 0;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 800;
	color: var(--bke-text);
}

.bke-recommended-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 13px;
}

.bke-recommended-badges span {
	display: inline-block;
	padding: 5px 9px;
	border-radius: 999px;
	background: #edf6fc;
	font-size: 12px;
	font-weight: 800;
	color: var(--bke-accent);
}

.bke-recommended-subtitle {
	margin: 14px 0 0;
	font-size: 14px;
	line-height: 1.55;
	color: var(--bke-muted);
}

.bke-recommended-features {
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
	font-size: 14px;
	line-height: 1.55;
	color: var(--bke-text);
}

.bke-recommended-features li {
	display: flex;
	gap: 8px;
	margin-top: 8px;
}

.bke-recommended-features li span {
	flex: 0 0 auto;
	font-weight: 900;
	color: var(--bke-accent);
}

.bke-recommended-home {
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid #edf0f3;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--bke-muted);
}

@media (max-width: 900px) {
	.bke-result-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.bke-result-layout {
		gap: 18px;
	}

	.bke-recommended-media {
		min-height: 190px;
	}

	.bke-recommended-media > img,
	.bke-system-slide img {
		height: 170px;
	}

	.bke-system-slider {
		height: 170px;
	}

	.bke-system-slider-arrow {
		width: 30px;
		height: 30px;
		font-size: 24px;
	}

	.bke-recommended-title {
		font-size: 21px;
	}
}

/* v1.7 result-page range selector and Elementor shortcodes */
.bke-wrap[data-bke-mode="result"] .bke-progress {
	display: none;
}

.bke-result-loading {
	max-width: 1220px;
	margin: 0 auto;
	padding: 28px 20px;
	font-size: 16px;
	font-weight: 700;
	color: var(--bke-text);
}

.bke-estimate-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(350px, .55fr);
    gap: 28px;
    align-items: end;
    padding-top: 8px;
}

.bke-recommended-media img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 283px;
    object-fit: cover;
    border-radius: 6px;
}

.bke-main-estimate,
.bke-range-summary {
	min-width: 0;
}

.bke-estimate-label {
	display: block;
	margin-bottom: 4px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--bke-muted);
}

.bke-main-payment {
	font-size: 46px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: -.03em;
	color: var(--bke-text);
}

.bke-main-payment small {
	margin-left: 4px;
	font-size: 16px;
	letter-spacing: 0;
}

.bke-payment-terms {
	margin-top: 7px;
	font-size: 13px;
	color: var(--bke-muted);
}

.bke-range-summary {
	padding-left: 24px;
	border-left: 1px solid #d9e4ee;
}

.bke-eff-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 10px;
}

.bke-eff-head .bke-label {
	margin-bottom: 2px;
	font-size: 16px;
}

.bke-eff-head p {
	margin: 0;
	font-size: 13px;
	color: var(--bke-muted);
}

#bke-eff-value {
	flex: 0 0 auto;
	margin-left: 0;
	padding: 7px 10px;
	border-radius: 7px;
	background: var(--bke-accent);
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
}

.bke-dial input[type="range"]:disabled {
	opacity: .55;
	cursor: not-allowed;
}

.bke-dial-disabled .bke-dial-labels {
	justify-content: flex-start;
}

@media (max-width: 700px) {
	.bke-estimate-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.bke-range-summary {
		padding-left: 0;
		padding-top: 16px;
		border-left: 0;
		border-top: 1px solid #d9e4ee;
	}

	.bke-main-payment {
		font-size: 38px;
	}
}

@media (max-width: 480px) {
	.bke-eff-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}
}

