/* Online calculator quiz block for hometest1 */

.hometest1-calc {
	padding: 48px 0 64px;
	background: linear-gradient(180deg, #f4f8fc 0%, #edf4fb 100%);
}

.hometest1-calc__intro {
	margin-bottom: 28px;
	text-align: center;
}

.hometest1-calc__title {
	margin-bottom: 10px;
	font-size: clamp(26px, 3vw, 36px);
	line-height: 1.12;
	font-weight: 800;
	color: #101828;
}

.hometest1-calc__subtitle {
	max-width: 720px;
	margin: 0 auto 22px;
	color: #475467;
	font-size: 16px;
	line-height: 1.55;
}

.hometest1-calc__benefits {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	max-width: 900px;
	margin: 0 auto;
}

.hometest1-calc__benefit {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	border: 1px solid #e4edf7;
	border-radius: 14px;
	background: #fff;
	color: #344054;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	text-align: left;
}

.hometest1-calc__benefit-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
}

.hometest1-calc__benefit-icon img {
	display: block;
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.hometest1-calc__benefit-icon-img--blue {
	filter: brightness(0) saturate(100%) invert(24%) sepia(98%) saturate(2476%) hue-rotate(196deg) brightness(96%) contrast(101%);
}

/* Stepper */
.hometest1-calc__stepper {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0;
	margin-bottom: 24px;
	padding: 0 8px;
}

.hometest1-calc__step {
	position: relative;
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.hometest1-calc__step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 17px;
	left: calc(50% + 18px);
	width: calc(100% - 36px);
	height: 2px;
	background: #d5e3f2;
	z-index: 0;
}

.hometest1-calc__step.is-done:not(:last-child)::after,
.hometest1-calc__step.is-active:not(:last-child)::after {
	background: #005ec4;
}

.hometest1-calc__step-dot {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 2px solid #d5e3f2;
	background: #fff;
	color: #98a2b3;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
}

.hometest1-calc__step.is-active .hometest1-calc__step-dot,
.hometest1-calc__step.is-done .hometest1-calc__step-dot {
	border-color: #005ec4;
	background: #005ec4;
	color: #fff;
}

.hometest1-calc__step-label {
	color: #667085;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
}

.hometest1-calc__step.is-active .hometest1-calc__step-label {
	color: #005ec4;
}

/* Main layout */
.hometest1-calc__main {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 20px;
	align-items: start;
}

.hometest1-calc__panel {
	border: 1px solid #e4edf7;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(5, 48, 99, 0.06);
	overflow: hidden;
}

.hometest1-calc__panel-body {
	padding: 24px;
}

.hometest1-calc__step-content {
	display: none;
	animation: hometest1CalcFade 0.22s ease-out;
}

.hometest1-calc__step-content.is-active {
	display: block;
}

@keyframes hometest1CalcFade {
	from { opacity: 0.25; transform: translateY(4px); }
	to { opacity: 1; transform: none; }
}

.hometest1-calc__step-heading {
	margin: 0 0 8px;
	font-size: 24px;
	line-height: 1.15;
	font-weight: 800;
	color: #101828;
}

.hometest1-calc__step-desc {
	margin: 0 0 18px;
	color: #667085;
	font-size: 14px;
	line-height: 1.5;
}

.hometest1-calc__system-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	padding: 8px 12px;
	border: 1px solid #cfe0f5;
	border-radius: 999px;
	background: #f3f8ff;
	color: #344054;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
}

.hometest1-calc__system-pill strong {
	color: #005ec4;
	font-weight: 800;
}

.hometest1-calc__system-pill--sticky {
	margin-bottom: 18px;
}

.hometest1-calc__system-pill--sticky[hidden] {
	display: none;
}

/* Cards */
.hometest1-calc__card-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.hometest1-calc__card-grid--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hometest1-calc__card-grid--5 {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hometest1-calc__type-groups {
	display: grid;
	gap: 28px;
}

.hometest1-calc__type-group {
	display: grid;
	gap: 14px;
}

.hometest1-calc__type-group-title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	color: #071d3d;
}

.hometest1-calc__type-more {
	display: none;
}

.hometest1-calc__card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 14px 12px 12px;
	border: 1px solid #dce8f5;
	border-radius: 14px;
	background: #fff;
	cursor: pointer;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
	user-select: none;
	text-align: center;
}

.hometest1-calc__card:hover {
	border-color: #9cc6f5;
	box-shadow: 0 8px 22px rgba(0, 77, 161, 0.08);
	transform: translateY(-1px);
}

.hometest1-calc__card.is-active {
	border-color: #005ec4;
	background: #f3f8ff;
	box-shadow: 0 8px 22px rgba(0, 94, 196, 0.1);
}

.hometest1-calc__card.is-active::after {
	content: "✓";
	position: absolute;
	top: 10px;
	right: 10px;
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #005ec4;
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
}

.hometest1-calc__card-visual {
	display: grid;
	place-items: center;
	width: 100%;
	height: 72px;
	margin-bottom: 10px;
	border-radius: 10px;
	overflow: hidden;
	color: #005ec4;
}

.hometest1-calc__type-group .hometest1-calc__card-visual {
	height: 150px;
}

.hometest1-calc__card-visual svg {
	width: 36px;
	height: 36px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.hometest1-calc__card-visual img {
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	object-fit: cover;
	display: block;
}

.hometest1-calc__card-visual--icon img {
	width: 48px;
	height: 48px;
	max-width: 48px;
	max-height: 48px;
	object-fit: contain;
}

.hometest1-calc__card-title {
	display: block;
	margin-bottom: 4px;
	color: #101828;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.25;
}

.hometest1-calc__card-note {
	display: block;
	color: #667085;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.35;
}

/* Size mode */
.hometest1-calc__size-mode {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 18px;
}

.hometest1-calc__size-mode .hometest1-calc__card {
	flex-direction: row;
	align-items: flex-start;
	gap: 12px;
	padding: 16px;
	text-align: left;
}

.hometest1-calc__size-mode .hometest1-calc__card-visual {
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	margin-bottom: 0;
}

.hometest1-calc__size-mode .hometest1-calc__card-visual img {
	display: block;
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.hometest1-calc__size-mode .hometest1-calc__card-body {
	min-width: 0;
}

/* Form fields */
.hometest1-calc__form-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.hometest1-calc__form-grid--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-bottom: 16px;
}

.hometest1-calc__field {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.hometest1-calc__field label {
	color: #344054;
	font-size: 13px;
	font-weight: 700;
}

.hometest1-calc__field input,
.hometest1-calc__field select,
.hometest1-calc__field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d0d5dd;
	border-radius: 10px;
	background: #fff;
	color: #101828;
	font: 600 14px/1.2 "Gilroy", Arial, sans-serif;
	outline: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.hometest1-calc__field input:focus,
.hometest1-calc__field select:focus,
.hometest1-calc__field textarea:focus {
	border-color: #005ec4;
	box-shadow: 0 0 0 3px rgba(0, 94, 196, 0.12);
}

.hometest1-calc__field--full {
	grid-column: 1 / -1;
}

.hometest1-calc__field textarea {
	min-height: 92px;
	resize: vertical;
}

.hometest1-calc__dimensions.is-hidden {
	display: none;
}

/* Window shape */
.hometest1-calc__shape-group {
	margin-top: 18px;
}

.hometest1-calc__shape-label {
	display: block;
	margin-bottom: 10px;
	color: #344054;
	font-size: 14px;
	font-weight: 700;
}

.hometest1-calc__shape-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.hometest1-calc__shape-chip {
	padding: 10px 14px;
	border: 1px solid #d0d5dd;
	border-radius: 10px;
	background: #fff;
	color: #344054;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.hometest1-calc__shape-chip.is-active {
	border-color: #005ec4;
	background: #005ec4;
	color: #fff;
}

/* Subgroups */
.hometest1-calc__subgroup {
	margin-bottom: 18px;
	padding: 16px;
	border: 1px solid #e4edf7;
	border-radius: 16px;
	background: #fbfdff;
}

.hometest1-calc__subgroup-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}

.hometest1-calc__subgroup-head b {
	color: #101828;
	font-size: 15px;
	font-weight: 800;
}

.hometest1-calc__subgroup-head small {
	color: #667085;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.35;
	text-align: right;
}

/* RAL colors */
.hometest1-calc__ral-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 10px;
}

.hometest1-calc__ral-swatch {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 8px 6px;
	border: 1px solid #dce8f5;
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
	transition: border-color 0.15s ease;
}

.hometest1-calc__ral-swatch.is-active {
	border-color: #005ec4;
	box-shadow: 0 0 0 2px rgba(0, 94, 196, 0.15);
}

.hometest1-calc__ral-color {
	width: 100%;
	height: 32px;
	border-radius: 6px;
	border: 1px solid rgba(0, 0, 0, 0.08);
}

.hometest1-calc__ral-code {
	color: #475467;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.2;
}

/* Alert */
.hometest1-calc__alert {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-top: 16px;
	padding: 14px 16px;
	border: 1px solid #cfe3ff;
	border-radius: 14px;
	background: #f1f7ff;
	color: #345070;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.45;
}

.hometest1-calc__alert-icon {
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	color: #005ec4;
}

/* Photo upload */
.hometest1-calc__upload {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px;
	border: 1px dashed #bfd5f2;
	border-radius: 14px;
	background: #f8fbff;
	cursor: pointer;
}

.hometest1-calc__upload-icon {
	display: grid;
	place-items: center;
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: #eaf3ff;
	color: #005ec4;
}

.hometest1-calc__upload input {
	display: none;
}

.hometest1-calc__upload-title {
	display: block;
	margin-bottom: 2px;
	color: #101828;
	font-size: 14px;
	font-weight: 800;
}

.hometest1-calc__upload-note {
	color: #667085;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.35;
}

/* Sidebar */
.hometest1-calc__sidebar {
	position: sticky;
	top: 70px;
	border: 1px solid #e4edf7;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 12px 32px rgba(5, 48, 99, 0.08);
	overflow: hidden;
}

.hometest1-calc__sidebar-head {
	padding: 18px 20px 0;
}

.hometest1-calc__sidebar-title {
	margin: 0 0 14px;
	font-size: 18px;
	font-weight: 800;
	color: #101828;
}

.hometest1-calc__sidebar-preview {
	display: grid;
	place-items: center;
	margin-bottom: 14px;
	border-radius: 12px;
	background: #f5f8fc;
	overflow: hidden;
}

.hometest1-calc__sidebar-preview svg {
	width: 64px;
	height: 64px;
	stroke: #005ec4;
	fill: none;
	stroke-width: 1.5;
}

.hometest1-calc__sidebar-preview img {
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	object-fit: cover;
	display: block;
}

.hometest1-calc__sidebar-intro {
	padding: 0 20px 16px;
}

.hometest1-calc__sidebar-type {
	margin-bottom: 8px;
	color: #005ec4;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.35;
}

.hometest1-calc__sidebar-hint {
	margin: 0;
	color: #667085;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.45;
}

.hometest1-calc__summary {
	display: grid;
	gap: 10px;
	padding: 0 20px 16px;
}

.hometest1-calc__summary[hidden],
.hometest1-calc__summary-row[hidden],
.hometest1-calc__sidebar-intro[hidden],
.hometest1-calc__price-notice[hidden],
.hometest1-calc__price-box[hidden] {
	display: none;
}

.hometest1-calc__summary-row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid #edf2f7;
	font-size: 13px;
	line-height: 1.35;
}

.hometest1-calc__summary-row span:first-child {
	color: #667085;
	font-weight: 700;
}

.hometest1-calc__summary-row span:last-child {
	color: #005ec4;
	font-weight: 800;
	text-align: right;
}

.hometest1-calc__price-notice {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0 20px 16px;
	padding: 12px 14px;
	border-radius: 12px;
	background: #f1f7ff;
	border: 1px solid #cfe3ff;
	color: #344054;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
}

.hometest1-calc__price-notice-icon {
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	margin-top: 1px;
	color: #005ec4;
}

.hometest1-calc__price-box {
	margin: 0 20px 16px;
	padding: 14px;
	border-radius: 14px;
	background: #f1f7ff;
	border: 1px solid #cfe3ff;
}

.hometest1-calc__price-label {
	margin-bottom: 4px;
	color: #475467;
	font-size: 12px;
	font-weight: 700;
}

.hometest1-calc__price-value {
	color: #101828;
	font-size: 28px;
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: -0.5px;
}

.hometest1-calc__price-note {
	margin-top: 8px;
	color: #667085;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.4;
}

.hometest1-calc__sidebar-nav {
	display: grid;
	gap: 10px;
	padding: 0 20px 16px;
}

.hometest1-calc__panel-nav {
	display: none;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 20px;
}

.hometest1-calc__sidebar-nav .onviz-ui__button,
.hometest1-calc__panel-nav .onviz-ui__button {
	display: inline-flex;
	align-items: center;
	width: 100%;
	justify-content: center;
	gap: 8px;
	text-transform: none;
	font-weight: 700;
	white-space: nowrap;
}

.hometest1-calc__sidebar-nav .onviz-ui__svg-icon,
.hometest1-calc__panel-nav .onviz-ui__svg-icon {
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	max-width: 18px;
	max-height: 18px;
}

.hometest1-calc__sidebar-actions {
	display: grid;
	gap: 10px;
	padding: 0 20px 16px;
}

.hometest1-calc__sidebar-actions .onviz-ui__button {
	display: inline-flex;
	align-items: center;
	width: 100%;
	justify-content: center;
	gap: 8px;
	text-transform: none;
	font-weight: 700;
	white-space: nowrap;
}

.hometest1-calc__sidebar-actions .onviz-ui__button[hidden] {
	display: none;
}

.hometest1-calc__sidebar-actions .onviz-ui__svg-icon {
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	max-width: 18px;
	max-height: 18px;
}

.hometest1-calc__sidebar-actions .btn-bordered {
	display: inline-flex;
	align-items: center;
}

.hometest1-calc__sidebar-privacy {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding: 0 20px 18px;
	color: #98a2b3;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.4;
}

.hometest1-calc__sidebar-privacy svg {
	flex: 0 0 14px;
	width: 14px;
	height: 14px;
	max-width: 14px;
	max-height: 14px;
	margin-top: 1px;
	stroke: currentColor;
	fill: none;
}

.hometest1-calc__agree {
	margin-top: 14px;
	font-size: 12px;
	line-height: 1.35;
}

.hometest1-calc__toast {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 9999;
	max-width: 360px;
	padding: 14px 18px;
	border-radius: 14px;
	background: #071d3d;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
	opacity: 0;
	transform: translateY(14px);
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.hometest1-calc__toast.is-visible {
	opacity: 1;
	transform: none;
}

.hometest1-calc__estimate-sheet {
	display: none;
	position: absolute;
	left: -9999px;
	width: 794px;
	padding: 0;
	background: #fff;
	color: #17243d;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.45;
	box-sizing: border-box;
}

.hometest1-calc__estimate-sheet *,
.hometest1-calc__estimate-sheet *::before,
.hometest1-calc__estimate-sheet *::after {
	box-sizing: border-box;
}

.hometest1-estimate__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 28px 42px 0;
	background: #fff;
}

.hometest1-estimate__brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	min-width: 0;
}

.hometest1-estimate__logo {
	display: block;
	width: 156px;
	height: auto;
}

.hometest1-estimate__tagline {
	margin: 0;
	font-size: 14px;
	line-height: 1.3;
	font-weight: 400;
	color: #8a97a8;
}

.hometest1-estimate__contacts-card {
	flex: 0 0 auto;
	min-width: 220px;
	padding: 16px 22px;
	border: 1px solid #e3eaf3;
	border-radius: 16px;
	background: #fff;
	text-align: center;
}

.hometest1-estimate__contacts-title {
	margin-bottom: 8px;
	font-size: 13px;
	line-height: 1.35;
	color: #8a97a8;
}

.hometest1-estimate__contacts-phone {
	margin-bottom: 4px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.15;
	color: #1f2a3d;
	letter-spacing: -0.02em;
}

.hometest1-estimate__contacts-email {
	font-size: 14px;
	line-height: 1.35;
	font-weight: 500;
	color: #005ec4;
}

.hometest1-estimate__body {
	padding: 24px 42px 28px;
}

.hometest1-estimate__title-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 10px;
}

.hometest1-estimate__title {
	margin: 0;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.15;
	color: #071d3d;
}

.hometest1-estimate__meta {
	display: grid;
	gap: 4px;
	margin-bottom: 18px;
	font-size: 13px;
	color: #5b6b82;
}

.hometest1-estimate__meta strong {
	color: #071d3d;
	font-weight: 700;
}

.hometest1-estimate__intro {
	margin: 0 0 8px;
	color: #425268;
}

.hometest1-estimate__intro-note {
	margin: 0 0 24px;
	color: #667085;
	font-size: 13px;
}

.hometest1-estimate__main {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 220px;
	gap: 18px;
	margin-bottom: 28px;
}

.hometest1-estimate__params,
.hometest1-estimate__price-card {
	border: 1px solid #dce8f5;
	border-radius: 16px;
	background: #fff;
}

.hometest1-estimate__params {
	padding: 22px 24px;
}

.hometest1-estimate__section-title {
	margin: 0 0 4px;
	font-size: 18px;
	font-weight: 700;
	color: #071d3d;
}

.hometest1-estimate__section-subtitle {
	margin: 0 0 18px;
	font-size: 13px;
	color: #667085;
}

.hometest1-estimate__rows {
	display: grid;
	gap: 10px;
}

.hometest1-estimate__row {
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr);
	gap: 12px;
	padding-bottom: 10px;
	border-bottom: 1px solid #edf3fa;
}

.hometest1-estimate__row:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.hometest1-estimate__row-label {
	color: #667085;
	font-size: 13px;
}

.hometest1-estimate__row-value {
	color: #071d3d;
	font-size: 14px;
	font-weight: 600;
}

.hometest1-estimate__price-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 24px 22px;
	background: linear-gradient(180deg, #f7fbff 0%, #eef5fc 100%);
}

.hometest1-estimate__price-label {
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 700;
	color: #071d3d;
}

.hometest1-estimate__price-value {
	margin-bottom: 6px;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.1;
	color: #005ec4;
}

.hometest1-estimate__price-note {
	font-size: 12px;
	color: #667085;
}

.hometest1-estimate__next {
	margin-bottom: 22px;
	padding: 20px 22px;
	border-radius: 14px;
	background: #f7fafc;
}

.hometest1-estimate__next-title {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 700;
	color: #071d3d;
}

.hometest1-estimate__next-text {
	margin: 0;
	color: #425268;
	font-size: 13px;
}

.hometest1-estimate__cta {
	padding: 22px 24px;
	border-radius: 16px;
	background: linear-gradient(135deg, #071d3d 0%, #0a2f5f 100%);
	color: #fff;
}

.hometest1-estimate__cta-title {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 700;
}

.hometest1-estimate__cta-text {
	margin: 0 0 14px;
	font-size: 13px;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.88);
}

.hometest1-estimate__cta-links {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	color: #fff;
}

.hometest1-estimate__footer {
	padding: 18px 42px 28px;
	border-top: 1px solid #edf3fa;
	font-size: 11px;
	line-height: 1.45;
	color: #8a97a8;
}

@media (max-width: 1100px) {
	.hometest1-calc__main {
		grid-template-columns: 1fr;
	}

	.hometest1-calc__sidebar {
		position: static;
	}

	.hometest1-calc__card-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.hometest1-calc__card-grid--5 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.hometest1-calc {
		padding: 32px 0 48px;
		scroll-margin-top: 70px;
	}

	.hometest1-calc__panel {
		scroll-margin-top: 70px;
	}

	.hometest1-calc__panel-nav {
		display: grid;
	}

	.hometest1-calc__toast {
		right: 12px;
		left: 12px;
		bottom: 16px;
		max-width: none;
	}

	.hometest1-calc__sidebar-nav {
		display: none;
	}

	.hometest1-calc__benefits {
		grid-template-columns: 1fr;
	}

	.hometest1-calc__stepper {
		overflow-x: auto;
		padding-bottom: 6px;
	}

	.hometest1-calc__step {
		flex: 0 0 72px;
	}

	.hometest1-calc__step-label {
		font-size: 10px;
	}

	.hometest1-calc__panel-body {
		padding: 18px;
	}

	.hometest1-calc__card-grid,
	.hometest1-calc__card-grid--3,
	.hometest1-calc__card-grid--5,
	.hometest1-calc__form-grid,
	.hometest1-calc__form-grid--2,
	.hometest1-calc__size-mode,
	.hometest1-calc__ral-grid {
		grid-template-columns: 1fr;
	}

	.hometest1-calc__size-mode .hometest1-calc__card {
		flex-direction: column;
	}

	.hometest1-calc__card-visual {
		height: auto;
	}

	.hometest1-calc__card-visual:not(.hometest1-calc__card-visual--icon) img {
		height: auto;
		object-fit: contain;
	}

	.hometest1-calc__size-mode .hometest1-calc__card-visual {
		height: 48px;
	}

	.hometest1-calc__type-more:not([hidden]) {
		display: block;
		width: 100%;
		margin-top: 4px;
		text-transform: none;
		font-weight: 700;
	}

	.hometest1-calc__type-more[hidden] {
		display: none;
	}

	#hometest1CalcTypeGrid.is-types-collapsed .hometest1-calc__type-group--more {
		display: none;
	}
}

@media print {
	body.hometest1-calc-print > *:not(#hometest1-estimate-sheet) {
		display: none !important;
	}

	body.hometest1-calc-print #hometest1-estimate-sheet {
		display: block !important;
		position: static;
		left: auto;
		width: 794px;
		min-height: auto;
		margin: 0 auto;
		padding: 0;
		opacity: 1 !important;
		pointer-events: auto;
		overflow: visible;
		z-index: auto;
	}
}
