/* =========================================================
   SYMPHONY VENTICOOL
   COOLER RECOMMENDATION
   HOMEPAGE PREMIUM UI
   ========================================================= */

.svcr-section {
	--svcr-blue: #2f78bd;
	--svcr-blue-dark: #245f98;
	--svcr-blue-soft: #eef6fc;
	--svcr-lime: #c4d82e;
	--svcr-lime-dark: #afc21f;
	--svcr-charcoal: #242424;
	--svcr-text: #161616;
	--svcr-muted: #68717b;
	--svcr-border: #e7e9eb;
	--svcr-light: #f7f8f8;
	--svcr-white: #ffffff;

	width: 100%;
	box-sizing: border-box;
	/*padding: 82px 24px 88px;*/
	padding: 0px 12px 36px;
	background: #fff;
	color: var(--svcr-text);
	font-family: inherit;
}

.svcr-section *,
.svcr-section *::before,
.svcr-section *::after {
	box-sizing: border-box;
}

.svcr-section [hidden] {
	display: none !important;
}

.svcr-shell {
	width: min(1240px, 100%);
	margin: 0 auto;
}


/* =========================================================
   INTRO
   ========================================================= */

.svcr-intro {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 50px;
	margin-bottom: 34px;
}

.svcr-intro-copy {
	max-width: 850px;
}

.svcr-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 13px;
	color: var(--svcr-blue);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .14em;
	line-height: 1;
	text-transform: uppercase;
}

.svcr-eyebrow::before {
	content: "";
	width: 24px;
	height: 2px;
	background: var(--svcr-lime);
}

.svcr-intro h2 {
	margin: 0;
	color: var(--svcr-text);
	font-size: clamp(32px, 3.35vw, 48px);
	font-weight: 700;
	letter-spacing: -.045em;
	line-height: 1.08;
}

.svcr-intro p {
	max-width: 720px;
	margin: 13px 0 0;
	color: var(--svcr-muted);
	font-size: 14px;
	line-height: 1.7;
}

.svcr-intro-line {
	width: 105px;
	height: 4px;
	flex: 0 0 105px;
	margin-bottom: 7px;
	background: var(--svcr-lime);
}


/* =========================================================
   CONFIGURATOR
   ========================================================= */

.svcr-configurator {
	overflow: hidden;
	border: 1px solid #e2e5e8;
	border-radius: 22px;
	background: var(--svcr-white);
	box-shadow:
		0 18px 55px rgba(25, 48, 68, .075),
		0 3px 10px rgba(25, 48, 68, .035);
}

.svcr-configurator-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	padding: 21px 28px;
	border-bottom: 1px solid var(--svcr-border);
	background: #fafafa;
}

.svcr-configurator-title {
	display: flex;
	align-items: center;
	gap: 13px;
}

.svcr-step-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	border-radius: 50%;
	background: var(--svcr-blue);
	color: #fff;
	font-size: 10px;
	font-weight: 800;
}

.svcr-config-kicker {
	display: block;
	margin-bottom: 4px;
	color: var(--svcr-blue);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .13em;
	line-height: 1.2;
	text-transform: uppercase;
}

.svcr-configurator-title h3 {
	margin: 0;
	color: var(--svcr-text);
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: 1.2;
}

.svcr-live-status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 10px;
	border: 1px solid #e0e5e8;
	border-radius: 100px;
	background: #fff;
	color: #65717b;
	font-size: 9px;
	font-weight: 700;
	white-space: nowrap;
}

.svcr-status-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #75a91e;
	box-shadow: 0 0 0 4px rgba(196,216,46,.18);
}


/* =========================================================
   FORM
   ========================================================= */

.svcr-form {
	padding: 28px;
}

.svcr-form-row {
	display: grid;
	gap: 22px;
}

.svcr-form-row-primary {
	grid-template-columns: 1.12fr 1fr .9fr;
}

.svcr-field > label {
	display: block;
	margin-bottom: 9px;
	color: #303841;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
}

.svcr-field > label > span {
	color: #cc4242;
}

.svcr-choice-row {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.svcr-choice {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 13px;
	border: 1px solid #e1e5e8;
	border-radius: 8px;
	background: #fff;
	color: #59636d;
	cursor: pointer;
	transition:
		border-color .2s ease,
		background .2s ease,
		color .2s ease,
		box-shadow .2s ease,
		transform .2s ease;
}

.svcr-choice:hover {
	border-color: #bdc8d1;
	transform: translateY(-1px);
}

.svcr-choice input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.svcr-choice span {
	font-size: 11px;
	font-weight: 650;
	white-space: nowrap;
}

.svcr-choice:has(input:checked) {
	border-color: var(--svcr-blue);
	background: var(--svcr-blue);
	color: #fff;
	box-shadow: 0 5px 14px rgba(47,120,189,.16);
}


/* =========================================================
   SPACE ROW
   ========================================================= */

.svcr-form-row-space {
	grid-template-columns: 185px minmax(0, 1fr) 135px;
	align-items: end;
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--svcr-border);
}

.svcr-space-heading {
	padding-bottom: 4px;
}

.svcr-space-heading strong,
.svcr-discharge-heading strong {
	display: block;
	color: #303841;
	font-size: 12px;
	font-weight: 600;
}

.svcr-dimension-fields {
	display: flex;
	align-items: end;
	gap: 8px;
}

.svcr-input-wrap {
	flex: 1;
	min-width: 0;
}

.svcr-input-wrap label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 6px;
	color: #747d86;
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
}

.svcr-input-wrap label small {
	color: #a2aab1;
	font-size: 10px;
	font-weight: 800;
}

.svcr-input-wrap input {
	display: block;
	width: 100%;
	height: 48px;
	padding: 0 13px;
	border: 1px solid #dfe4e7;
	border-radius: 8px;
	outline: none;
	background: #fff;
	color: var(--svcr-text);
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	transition:
		border-color .2s ease,
		box-shadow .2s ease;
}

.svcr-input-wrap input::placeholder {
	color: #a9b0b6;
	font-weight: 500;
}

.svcr-input-wrap input:focus {
	border-color: var(--svcr-blue);
	box-shadow: 0 0 0 3px rgba(47,120,189,.10);
}

.svcr-dimension-symbol {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 10px;
	height: 48px;
	color: #a1a8ae;
	font-size: 15px;
}

.svcr-space-live {
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	gap: 3px;
	padding-bottom: 5px;
	text-align: right;
}

.svcr-space-live span {
	color: #899199;
	font-size: 10px;
	font-weight: 600;
	text-transform: uppercase;
}

.svcr-space-live strong {
	color: var(--svcr-blue);
	font-size: 15px;
	font-weight: 800;
}


/* =========================================================
   DISCHARGE
   ========================================================= */

.svcr-form-row-discharge {
	grid-template-columns: 185px minmax(0, 1fr);
	align-items: center;
	margin-top: 23px;
	padding-top: 23px;
	border-top: 1px solid var(--svcr-border);
}

.svcr-discharge-options {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 7px;
}

.svcr-discharge {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	border: 1px solid #e0e4e7;
	border-radius: 8px;
	background: #fff;
	color: #5e6872;
	cursor: pointer;
	transition:
		border-color .2s ease,
		background .2s ease,
		color .2s ease;
}

.svcr-discharge input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.svcr-discharge span {
	font-size: 10px;
	font-weight: 700;
}

.svcr-discharge:hover {
	border-color: #bcc7cf;
}

.svcr-discharge:has(input:checked) {
	border-color: var(--svcr-blue);
	background: var(--svcr-blue);
	color: #fff;
}


/* =========================================================
   AIRFLOW STRIP
   ========================================================= */

.svcr-airflow-strip {
	display: grid;
	grid-template-columns: 180px 205px minmax(0, 1fr);
	align-items: center;
	margin-top: 24px;
	overflow: hidden;
	border: 1px solid #dfe5e8;
	border-radius: 11px;
	background: #f7f9fa;
}

.svcr-airflow-strip > div {
	min-height: 68px;
	padding: 13px 17px;
}

.svcr-airflow-strip > div + div {
	border-left: 1px solid #e2e6e9;
}

.svcr-airflow-strip span {
	display: block;
	margin-bottom: 4px;
	color: #8b949c;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .11em;
}

.svcr-airflow-strip strong {
	display: block;
	color: var(--svcr-text);
	font-size: 14px;
	font-weight: 800;
}

.svcr-airflow-strip small {
	display: block;
	margin-top: 2px;
	color: #a0a7ad;
	font-size: 10px;
}

.svcr-airflow-note {
	text-align: right;
}

.svcr-airflow-note strong {
	color: #67717a;
	font-size: 10px;
	font-weight: 700;
}


/* =========================================================
   ACTION
   ========================================================= */

.svcr-actions {
	display: flex;
	align-items: center;
	gap: 17px;
	margin-top: 23px;
}

.svcr-submit {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-width: 230px;
	height: 48px;
	padding: 0 15px 0 20px;
	border: 0;
	border-radius: 7px;
	background: var(--svcr-blue);
	color: #fff;
	cursor: pointer;
	font-family: inherit;
	font-size: 12px !important;
	font-weight: 800;
	letter-spacing: .01em;
	box-shadow: 0 8px 20px rgba(47,120,189,.18);
	transition:
		transform .2s ease,
		background .2s ease,
		box-shadow .2s ease;
}

.svcr-submit:hover {
	background: var(--svcr-blue-dark);
	transform: translateY(-1px);
	box-shadow: 0 11px 24px rgba(47,120,189,.24);
}

.svcr-submit:disabled {
	cursor: wait;
	opacity: .75;
	transform: none;
}

.svcr-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: rgba(255,255,255,.15);
	font-size: 14px;
}

.svcr-button-loader {
	display: none;
	width: 15px;
	height: 15px;
	border: 2px solid rgba(255,255,255,.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: svcr-spin .7s linear infinite;
}

.svcr-submit.is-loading .svcr-button-loader {
	display: block;
}

.svcr-submit.is-loading .svcr-arrow {
	display: none;
}

.svcr-action-note {
	color: #8a939b;
	font-size: 9px;
	line-height: 1.45;
}


/* =========================================================
   RESULTS WRAPPER
   ========================================================= */

.svcr-results-wrap {
	margin-top: 26px;
}

.svcr-result-placeholder {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 17px 20px;
	border: 1px solid #e5e8ea;
	border-radius: 12px;
	background: #fafafa;
}

.svcr-placeholder-mark {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	flex: 0 0 32px;
	border-radius: 50%;
	background: var(--svcr-lime);
	color: #273000;
	font-size: 9px;
	font-weight: 850;
}

.svcr-result-placeholder strong {
	display: block;
	color: #343b41;
	font-size: 11px;
	font-weight: 800;
}

.svcr-result-placeholder p {
	margin: 4px 0 0;
	color: #858e96;
	font-size: 9px;
	line-height: 1.5;
}

.svcr-placeholder-arrow {
	margin-left: auto;
	color: var(--svcr-blue);
	font-size: 15px;
}


/* =========================================================
   LOADING
   ========================================================= */

.svcr-loading {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 18px 20px;
	border: 1px solid #e0e5e8;
	border-radius: 12px;
	background: #fafafa;
}

.svcr-loading-spinner {
	width: 27px;
	height: 27px;
	flex: 0 0 27px;
	border: 3px solid #dfe7ec;
	border-top-color: var(--svcr-blue);
	border-radius: 50%;
	animation: svcr-spin .75s linear infinite;
}

.svcr-loading strong {
	display: block;
	color: #343b41;
	font-size: 11px;
	font-weight: 800;
}

.svcr-loading span {
	display: block;
	margin-top: 4px;
	color: #89929a;
	font-size: 9px;
}

@keyframes svcr-spin {
	to {
		transform: rotate(360deg);
	}
}


/* =========================================================
   ERROR
   ========================================================= */

.svcr-error {
	margin-bottom: 14px;
	padding: 12px 15px;
	border: 1px solid #f0d2d2;
	border-radius: 9px;
	background: #fff7f7;
	color: #a53e3e;
	font-size: 10px;
	font-weight: 650;
	line-height: 1.5;
}


/* =========================================================
   RESULTS
   ========================================================= */

.svcr-results {
	animation: svcr-result-in .35s ease both;
}

@keyframes svcr-result-in {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.svcr-results-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 25px;
	margin-bottom: 16px;
	padding: 0 2px;
}

.svcr-results-head > div {
	min-width: 0;
}

.svcr-results-kicker {
	display: block;
	margin-bottom: 5px;
	color: var(--svcr-blue);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.svcr-results-head h3 {
	margin: 0;
	color: var(--svcr-text);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -.035em;
	line-height: 1.15;
}

.svcr-results-head p {
	max-width: 490px;
	margin: 5px 0 0;
	color: #7c858d;
	font-size: 9px;
	line-height: 1.5;
}


/* =========================================================
   RESULT SUMMARY
   ========================================================= */

.svcr-result-summary {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 14px;
}

.svcr-summary-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 11px;
	border: 1px solid #e3e7e9;
	border-radius: 7px;
	background: #fafafa;
}

.svcr-summary-item span {
	color: #90989f;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .09em;
}

.svcr-summary-item strong {
	color: #343b41;
	font-size: 10px;
	font-weight: 800;
}


/* =========================================================
   PRODUCT LIST
   ========================================================= */

.svcr-product-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}


/* =========================================================
   PRODUCT CARD
   ========================================================= */

.svcr-product-card {
	position: relative;
	min-width: 0;
	overflow: hidden;
	border: 1px solid #e2e5e7;
	border-radius: 14px;
	background: #fff;
	transition:
		transform .25s ease,
		box-shadow .25s ease,
		border-color .25s ease;
}

.svcr-product-card:hover {
	transform: translateY(-3px);
	border-color: #cfd5d9;
	box-shadow: 0 14px 32px rgba(24,40,53,.10);
}


/* =========================================================
   PRIMARY RESULT
   ========================================================= */

.svcr-product-card.is-primary {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	min-height: 250px;
	border-color: #dce4e9;
	box-shadow: 0 8px 25px rgba(25,48,68,.055);
}

.svcr-product-card.is-primary:hover {
	box-shadow: 0 16px 35px rgba(25,48,68,.10);
}


/* =========================================================
   PRODUCT MEDIA
   ========================================================= */

.svcr-product-media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 185px;
	overflow: hidden;
	padding: 20px;
	background: #f5f6f6;
}

.svcr-product-media::after {
	content: "";
	position: absolute;
	right: 15px;
	bottom: 15px;
	width: 32px;
	height: 3px;
	background: var(--svcr-lime);
}

.svcr-product-media-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 165px;
}

.svcr-product-image {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 255px;
	max-height: 200px;
	object-fit: contain;
	object-position: center;
	filter: drop-shadow(0 12px 17px rgba(18,30,40,.10));
	transition:
		transform .35s ease,
		filter .35s ease;
}

.svcr-product-card:hover .svcr-product-image {
	transform: scale(1.035);
	filter: drop-shadow(0 16px 22px rgba(18,30,40,.13));
}

.svcr-product-media-empty {
	background: #f4f6f7;
}

.svcr-product-media-placeholder {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 7px;
	color: #8a949c;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.svcr-placeholder-mark {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: #fff;
	color: var(--svcr-blue);
	font-size: 11px;
	font-weight: 900;
	box-shadow: 0 7px 18px rgba(30,45,57,.07);
}


/* =========================================================
   PRODUCT CONTENT
   ========================================================= */

.svcr-product-content {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 20px;
}

.svcr-product-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
}

.svcr-product-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 5px 8px;
	border-radius: 100px;
	background: var(--svcr-lime);
	color: #293100;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: .08em;
	line-height: 1;
	text-transform: uppercase;
}

.svcr-badge-dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #556300;
}

.svcr-product-badge-alt {
	border: 1px solid #e2e5e7;
	background: #f7f8f8;
	color: #7c858d;
}

.svcr-product-name {
	margin: 9px 0 0;
	color: #191919;
	font-size: 19px;
	font-weight: 800;
	letter-spacing: -.035em;
	line-height: 1.12;
}

.svcr-product-description {
	max-width: 640px;
	margin: 7px 0 0;
	color: #747e87;
	font-size: 10px;
	line-height: 1.55;
}

.svcr-product-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 7px;
	margin-top: auto;
	padding-top: 15px;
}

.svcr-product-stat {
	min-width: 0;
	padding: 9px 10px;
	border-radius: 7px;
	background: #f7f8f8;
}

.svcr-product-stat span {
	display: block;
	margin-bottom: 4px;
	overflow: hidden;
	color: #959da4;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .08em;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.svcr-product-stat strong {
	display: block;
	overflow: hidden;
	color: #30373d;
	font-size: 12px;
	font-weight: 500;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.svcr-product-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 12px;
	padding-top: 10px;
	border-top: 1px solid #eceeef;
}

.svcr-product-fit {
	color: #858e95;
	font-size: 10px;
	line-height: 1.35;
}

.svcr-product-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-width: 112px;
	height: 36px;
	padding: 0 12px;
	border-radius: 5px;
	background: var(--svcr-blue);
	color: #fff !important;
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
	transition:
		background .2s ease,
		transform .2s ease;
}

.svcr-product-link:hover {
	background: var(--svcr-blue-dark);
	color: #fff;
	text-decoration: none;
	transform: translateX(1px);
}

.svcr-product-link-arrow {
	font-size: 16px;
	line-height: 1;
}


/* =========================================================
   ALTERNATIVE CARDS
   ========================================================= */

.svcr-product-card.is-alternative {
	display: flex;
	flex-direction: column;
}

.svcr-product-card.is-alternative .svcr-product-media {
	min-height: 160px;
	border-bottom: 1px solid #e6e8ea;
}

.svcr-product-card.is-alternative .svcr-product-media-inner {
	min-height: 135px;
}

.svcr-product-card.is-alternative .svcr-product-image {
	max-width: 205px;
	max-height: 140px;
}

.svcr-product-card.is-alternative .svcr-product-content {
	padding: 16px;
}

.svcr-product-card.is-alternative .svcr-product-name {
	font-size: 15px;
}

.svcr-product-card.is-alternative .svcr-product-description {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.svcr-product-card.is-alternative .svcr-product-stats {
	margin-top: auto;
	padding-top: 13px;
}

.svcr-product-card.is-alternative .svcr-product-stat:nth-child(3) {
	display: none;
}

.svcr-product-card.is-alternative .svcr-product-stats {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}


/* =========================================================
   ASSUMPTIONS
   ========================================================= */

.svcr-assumptions {
	margin-top: 20px;
	padding: 13px 1px 0;
	border-top: 1px solid #e5e8ea;
}

.svcr-assumptions-title {
	margin-bottom: 6px;
	color: #747d85;
	font-size: 7px;
	font-weight: 850;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.svcr-assumptions ul {
	margin: 0;
	padding-left: 14px;
}

.svcr-assumptions li {
	margin: 3px 0;
	color: #899198;
	font-size: 10px;
	line-height: 1.45;
}


/* =========================================================
   DISCHARGE OPTIONAL STATE
   ========================================================= */

.svcr-discharge-block,
.svcr-discharge-options {
	transition: opacity .2s ease;
}

.svcr-discharge-optional .svcr-discharge-options {
	opacity: .72;
}


/* =========================================================
   RESPONSIVE — 1050
   ========================================================= */

@media (max-width: 1050px) {

	.svcr-form-row-primary {
		grid-template-columns: 1fr 1fr;
	}

	.svcr-form-row-primary .svcr-field:last-child {
		grid-column: 1 / -1;
	}

	.svcr-form-row-space {
		grid-template-columns: 165px minmax(0, 1fr);
	}

	.svcr-space-live {
		display: none;
	}

	.svcr-form-row-discharge {
		grid-template-columns: 165px minmax(0, 1fr);
	}

	.svcr-airflow-strip {
		grid-template-columns: 1fr 1fr;
	}

	.svcr-airflow-note {
		display: none;
	}

	.svcr-product-card.is-primary {
		grid-template-columns: 260px minmax(0, 1fr);
	}
}


/* =========================================================
   RESPONSIVE — 820
   ========================================================= */

@media (max-width: 820px) {

	.svcr-section {
		padding: 60px 18px 65px;
	}

	.svcr-intro {
		align-items: flex-start;
		flex-direction: column;
		gap: 15px;
		margin-bottom: 27px;
	}

	.svcr-intro-line {
		width: 55px;
		flex-basis: 3px;
		margin-bottom: 0;
	}

	.svcr-configurator-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.svcr-form-row-primary,
	.svcr-form-row-space,
	.svcr-form-row-discharge {
		grid-template-columns: 1fr;
	}

	.svcr-form-row-primary .svcr-field:last-child {
		grid-column: auto;
	}

	.svcr-space-live {
		display: none;
	}

	.svcr-discharge-options {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.svcr-product-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.svcr-product-card.is-primary {
		grid-column: 1 / -1;
	}
}


/* =========================================================
   RESPONSIVE — 640
   ========================================================= */

@media (max-width: 640px) {

	.svcr-section {
		padding: 48px 14px 55px;
	}

	.svcr-intro h2 {
		font-size: 32px;
	}

	.svcr-intro p {
		font-size: 13px;
	}

	.svcr-configurator {
		border-radius: 17px;
	}

	.svcr-configurator-head {
		padding: 17px;
	}

	.svcr-form {
		padding: 17px;
	}

	.svcr-choice-row {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.svcr-choice {
		width: 100%;
	}

	.svcr-dimension-fields {
		gap: 5px;
	}

	.svcr-input-wrap input {
		height: 45px;
	}

	.svcr-dimension-symbol {
		height: 45px;
	}

	.svcr-discharge-options {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.svcr-airflow-strip {
		grid-template-columns: 1fr;
	}

	.svcr-airflow-strip > div {
		min-height: auto;
	}

	.svcr-airflow-strip > div + div {
		border-top: 1px solid #e2e6e9;
		border-left: 0;
	}

	.svcr-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.svcr-submit {
		width: 100%;
	}

	.svcr-action-note {
		text-align: center;
	}

	.svcr-results-head {
		align-items: flex-start;
		flex-direction: column;
		gap: 7px;
	}

	.svcr-product-list {
		grid-template-columns: 1fr;
	}

	.svcr-product-card.is-primary {
		display: flex;
		grid-column: auto;
		flex-direction: column;
	}

	.svcr-product-card.is-primary .svcr-product-media {
		min-height: 205px;
		border-bottom: 1px solid #e6e8ea;
	}

	.svcr-product-card.is-primary .svcr-product-media-inner {
		min-height: 170px;
	}

	.svcr-product-card.is-primary .svcr-product-image {
		max-width: 245px;
		max-height: 175px;
	}

	.svcr-result-summary {
		flex-wrap: wrap;
	}
}


/* =========================================================
   RESPONSIVE — 430
   ========================================================= */

@media (max-width: 430px) {

	.svcr-section {
		padding-left: 10px;
		padding-right: 10px;
	}

	.svcr-intro h2 {
		font-size: 29px;
	}

	.svcr-configurator-head {
		padding: 15px;
	}

	.svcr-form {
		padding: 15px;
	}

	.svcr-choice-row {
		grid-template-columns: 1fr;
	}

	.svcr-dimension-fields {
		display: grid;
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.svcr-dimension-symbol {
		display: none;
	}

	.svcr-product-stats {
		grid-template-columns: 1fr;
	}

	.svcr-product-card.is-alternative .svcr-product-stats {
		grid-template-columns: 1fr 1fr;
	}

	.svcr-product-footer {
		align-items: stretch;
		flex-direction: column;
	}

	.svcr-product-link {
		width: 100%;
	}

	.svcr-result-placeholder {
		align-items: flex-start;
		padding: 14px;
	}
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

	.svcr-section *,
	.svcr-section *::before,
	.svcr-section *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}

.home .svcr-intro {
    display: none;
}