.iqtdsr {
	--iqtdsr-red: #f50131;
	--iqtdsr-red-dark: #c80028;
	--iqtdsr-ink: #171719;
	--iqtdsr-muted: #65656d;
	--iqtdsr-line: #e4e2e3;
	--iqtdsr-soft: #f7f6f5;
	--iqtdsr-white: #fff;
	--iqtdsr-green: #13795b;
	--iqtdsr-amber: #a75f00;
	--iqtdsr-radius: 22px;
	max-width: 100%;
	margin: 36px auto;
	color: var(--iqtdsr-ink);
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

.iqtdsr *,
.iqtdsr *::before,
.iqtdsr *::after {
	box-sizing: border-box;
}

.iqtdsr,
.iqtdsr *,
.iqtdsr *::before,
.iqtdsr *::after {
	font-family: 'Poppins', sans-serif !important;
}

.iqtdsr [hidden] {
	display: none !important;
}

.iqtdsr__hero {
	position: relative;
	padding: 52px 48px 38px;
	overflow: hidden;
	border-radius: var(--iqtdsr-radius) var(--iqtdsr-radius) 0 0;
	background: var(--iqtdsr-white);
	color: var(--iqtdsr-ink);
}

.iqtdsr__hero::after {
	position: absolute;
	top: -84px;
	right: -28px;
	width: 200px;
	height: 200px;
	border: 36px solid rgba(245, 1, 49, 0.9);
	border-radius: 50%;
	content: "";
}

.iqtdsr__hero h2 {
	max-width: 720px;
	margin: 0;
	color: inherit;
	font-size: 30px;
	font-weight: 600;
	letter-spacing: -0.045em;
	line-height: 1.02;
}

.iqtdsr__hero > p:last-child {
	max-width: 680px;
	margin: 0;
	color: #65656d;
	font-size: 17px;
}

.iqtdsr__eyebrow,
.iqtdsr__result-kicker {
	margin: 0;
	color: var(--iqtdsr-red);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.iqtdsr__workspace {
	display: grid;
	grid-template-columns: minmax(0, 1.42fr) minmax(360px, 0.9fr);
	align-items: start;
	gap: 24px;
	padding: 24px;
	border: 1px solid var(--iqtdsr-line);
	border-top: 0;
	border-radius: 0 0 var(--iqtdsr-radius) var(--iqtdsr-radius);
	background: var(--iqtdsr-soft);
}

.iqtdsr__form,
.iqtdsr__results {
	min-width: 0;
}

.iqtdsr__section,
.iqtdsr__empty,
.iqtdsr__report {
	margin: 0 0 18px;
	padding: 30px;
	border: 1px solid var(--iqtdsr-line);
	border-radius: 18px;
	background: var(--iqtdsr-white);
	box-shadow: 0 10px 32px rgba(28, 23, 25, 0.045);
}

.iqtdsr__section-head {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 24px;
}

.iqtdsr__section-head h3,
.iqtdsr__result-section h3,
.iqtdsr__empty h3 {
	margin: 0;
	color: var(--iqtdsr-ink);
	font-size: 22px;
	font-weight: 600;
	letter-spacing: -0.025em;
	line-height: 1.2;
}

.iqtdsr__section-head p,
.iqtdsr__empty p {
	margin: 4px 0 0;
	color: var(--iqtdsr-muted);
	font-size: 14px;
}

.iqtdsr__step {
	display: inline-flex;
	flex: 0 0 34px;
	align-items: center;
	justify-content: center;
	height: 34px;
	border-radius: 50%;
	background: var(--iqtdsr-red);
	color: var(--iqtdsr-white);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.04em;
}

.iqtdsr__choice-group,
.iqtdsr__field {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.iqtdsr__choice-group {
	margin-bottom: 26px;
}

.iqtdsr__choice-group legend,
.iqtdsr__field > span:first-child,
.iqtdsr__field > legend {
	display: block;
	margin: 0 0 8px;
	color: #353438;
	font-size: 13px;
	font-style: normal;
	font-weight: 500;
}

.iqtdsr__field em {
	color: var(--iqtdsr-muted);
	font-size: 11px;
	font-style: normal;
	font-weight: 500;
	text-transform: uppercase;
}

.iqtdsr__segmented {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.iqtdsr__segmented label {
	position: relative;
	margin: 0;
	cursor: pointer;
}

.iqtdsr__segmented input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.iqtdsr__segmented span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 55px;
	padding: 10px 14px;
	border: 1px solid var(--iqtdsr-line);
	border-radius: 10px;
	background: var(--iqtdsr-white);
	color: var(--iqtdsr-muted);
	font-size: 13px;
	font-weight: 500;
	line-height: 16px;
	text-align: center;
	transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.iqtdsr__segmented input:checked + span {
	border-color: var(--iqtdsr-red);
	background: #fff0f3;
	color: var(--iqtdsr-red-dark);
}

.iqtdsr__segmented input:focus-visible + span {
	outline: 3px solid rgba(245, 1, 49, 0.2);
	outline-offset: 2px;
}

.iqtdsr__segmented--small span {
	min-height: 44px;
}

.iqtdsr__applicant + .iqtdsr__applicant {
	margin-top: 26px;
	padding-top: 26px;
	border-top: 1px solid var(--iqtdsr-line);
}

.iqtdsr__applicant h4 {
	margin: 0 0 16px;
	font-size: 14px;
	font-weight: 800;
}

.iqtdsr__grid {
	display: grid;
	gap: 19px 16px;
}

.iqtdsr__grid--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.iqtdsr__grid--1 {
	grid-template-columns: minmax(0, 1fr);
}

.iqtdsr__grid--1 > .iqtdsr__field,
.iqtdsr__grid--1 > .iqtdsr__conditional {
	width: 100%;
}

.iqtdsr__field--wide {
	grid-column: 1 / -1;
}

.iqtdsr input,
.iqtdsr select {
	width: 100%;
	height: 48px;
	margin: 0;
	padding: 0 13px;
	border: 1px solid #cbc9ca;
	border-radius: 10px;
	background: var(--iqtdsr-white);
	box-shadow: none;
	color: var(--iqtdsr-ink);
	font: inherit;
	font-size: 15px;
	line-height: normal;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.iqtdsr select {
	padding-right: 36px;
}

.iqtdsr input:focus,
.iqtdsr select:focus {
	border-color: var(--iqtdsr-red);
	outline: 0;
	box-shadow: 0 0 0 3px rgba(245, 1, 49, 0.13);
}

.iqtdsr input[aria-invalid="true"],
.iqtdsr select[aria-invalid="true"] {
	border-color: var(--iqtdsr-red);
	background: #fff8f9;
}

.iqtdsr__money,
.iqtdsr__suffix {
	display: flex !important;
	align-items: center;
	width: 100%;
	height: 48px;
	margin: 0 !important;
	border: 1px solid #cbc9ca;
	border-radius: 10px;
	background: var(--iqtdsr-white);
	overflow: hidden;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.iqtdsr__money:focus-within,
.iqtdsr__suffix:focus-within {
	border-color: var(--iqtdsr-red);
	box-shadow: 0 0 0 3px rgba(245, 1, 49, 0.13);
}

.iqtdsr__money b,
.iqtdsr__suffix b {
	flex: 0 0 auto;
	padding: 0 12px;
	color: var(--iqtdsr-muted);
	font-size: 13px;
	font-weight: 750;
}

.iqtdsr__money input,
.iqtdsr__suffix input {
	height: 46px;
	border: 0;
	border-radius: 0;
	box-shadow: none !important;
}

.iqtdsr__money input {
	padding-left: 0;
}

.iqtdsr__suffix input {
	padding-right: 0;
}

.iqtdsr__field small {
	display: block;
	margin-top: 7px;
	color: var(--iqtdsr-muted);
	font-size: 11px;
	line-height: 1.42;
}

.iqtdsr__errors {
	margin: 0 0 18px;
	padding: 15px 18px;
	border: 1px solid #f0a2b1;
	border-radius: 12px;
	background: #fff1f4;
	color: #86122a;
	font-size: 13px;
}

.iqtdsr__errors strong {
	display: block;
	margin-bottom: 5px;
}

.iqtdsr__errors ul {
	margin: 0;
	padding-left: 20px;
}

.iqtdsr__actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.iqtdsr .iqtdsr__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	margin: 0;
	padding: 13px 22px;
	border: 1px solid var(--iqtdsr-red);
	border-radius: 10px;
	background: #f50131;
	box-shadow: none;
	color: var(--iqtdsr-white);
	cursor: pointer;
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.iqtdsr .iqtdsr__button:hover {
	transform: translateY(-1px);
	text-decoration: none;
}

.iqtdsr .iqtdsr__button:focus-visible {
	outline: 3px solid rgba(245, 1, 49, 0.24);
	outline-offset: 3px;
}

.iqtdsr__button--primary {
	background: var(--iqtdsr-red);
	color: var(--iqtdsr-white);
}

.iqtdsr__button--primary:hover {
	background: var(--iqtdsr-red-dark);
	color: var(--iqtdsr-white);
}

.iqtdsr__button--secondary {
	border-color: var(--iqtdsr-red) !important;
	background: #f50131;
	color: var(--iqtdsr-white);
}

.iqtdsr__button--secondary:hover {
	background: var(--iqtdsr-red-dark);
	color: var(--iqtdsr-white);
}

.iqtdsr .iqtdsr__button:disabled {
	cursor: wait;
	opacity: 0.68;
	transform: none;
}

.iqtdsr__lead-cta {
	width: 100%;
	margin-top: 18px !important;
}

body.iqtdsr-modal-open {
	overflow: hidden;
}

.iqtdsr__modal {
	position: fixed;
	z-index: 999999;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(18, 16, 17, 0.68);
	opacity: 0;
	overflow-y: auto;
	transition: opacity 180ms ease;
}

.iqtdsr__modal.is-visible {
	opacity: 1;
}

.iqtdsr__dialog {
	position: relative;
	width: min(100%, 560px);
	margin: auto;
	padding: 36px;
	border-radius: 18px;
	background: var(--iqtdsr-white);
	box-shadow: 0 28px 80px rgba(18, 16, 17, 0.25);
	transform: translateY(10px) scale(0.985);
	transition: transform 180ms ease;
}

.iqtdsr__modal.is-visible .iqtdsr__dialog {
	transform: translateY(0) scale(1);
}

.iqtdsr__dialog h3 {
	margin: 7px 44px 8px 0;
	color: var(--iqtdsr-ink);
	font-size: 22px;
	font-weight: 600;
	letter-spacing: -0.04em;
	line-height: 1.08;
}

.iqtdsr__dialog-close {
	position: absolute;
	top: 18px;
	right: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	padding: 0;
	border: 1px solid var(--iqtdsr-line);
	border-radius: 50%;
	background: var(--iqtdsr-white);
	color: var(--iqtdsr-ink);
	cursor: pointer;
	font: inherit;
	font-size: 25px;
	line-height: 1;
}

.iqtdsr__dialog-close:hover,
.iqtdsr__dialog-close:focus-visible {
	border-color: var(--iqtdsr-red);
	color: var(--iqtdsr-red);
	outline: 0;
}

.iqtdsr__lead-form {
	display: grid;
	gap: 16px;
	margin-top: 24px;
}

.iqtdsr__lead-form .iqtdsr__button {
	width: 100%;
	margin-top: 4px;
}

.iqtdsr__honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.iqtdsr__lead-status {
	min-height: 20px;
	margin: 0;
	color: var(--iqtdsr-muted);
	font-size: 13px;
	font-weight: 650;
}

.iqtdsr__lead-status.is-error {
	color: var(--iqtdsr-red-dark);
}

.iqtdsr__lead-status.is-success {
	color: var(--iqtdsr-green);
}

.iqtdsr__results {
	position: sticky;
	top: 24px;
}

.iqtdsr__empty {
	min-height: 370px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.iqtdsr__empty-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin-bottom: 22px;
	border-radius: 50%;
	background: #fff0f3;
	color: var(--iqtdsr-red);
	font-size: 24px;
	font-weight: 850;
}

.iqtdsr__report {
	margin: 0;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 240ms ease, transform 240ms ease;
}

.iqtdsr__report.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.iqtdsr__status {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--iqtdsr-line);
}

.iqtdsr__status p {
	margin: 0 0 2px;
	color: var(--iqtdsr-muted);
	font-size: 12px;
	font-weight: 750;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.iqtdsr__status strong {
	display: block;
	font-size: clamp(38px, 5vw, 52px);
	font-weight: 780;
	letter-spacing: -0.055em;
	line-height: 1;
}

.iqtdsr__status-chip,
.iqtdsr__result-heading > span {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 5px 9px;
	border-radius: 999px;
	background: #e6f5ef;
	color: var(--iqtdsr-green);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.iqtdsr__status.is-close .iqtdsr__status-chip {
	background: #fff1dc;
	color: var(--iqtdsr-amber);
}

.iqtdsr__status.is-over .iqtdsr__status-chip,
.iqtdsr__msr-result.is-over .iqtdsr__status-chip,
.iqtdsr__result-heading > span.is-over {
	background: #fff0f3;
	color: var(--iqtdsr-red-dark);
}

.iqtdsr__status-note {
	margin: 14px 0 0;
	color: var(--iqtdsr-muted);
	font-size: 13px;
}

.iqtdsr__msr-result {
	margin-top: 24px;
	padding-top: 22px;
	border-top: 1px solid var(--iqtdsr-line);
}

.iqtdsr__msr-result[hidden] {
	display: none;
}

.iqtdsr__msr-status {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
}

.iqtdsr__msr-status p {
	margin: 0 0 3px;
	color: var(--iqtdsr-muted);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.iqtdsr__msr-status strong {
	display: block;
	font-size: clamp(28px, 4vw, 38px);
	font-weight: 780;
	letter-spacing: -0.045em;
	line-height: 1;
}

.iqtdsr__msr-result.is-over .iqtdsr__msr-status strong {
	color: var(--iqtdsr-red-dark);
}

.iqtdsr__meter-block--compact {
	margin-top: 16px;
}

.iqtdsr__meter-block {
	margin: 22px 0 0;
}

.iqtdsr__meter-labels {
	display: flex;
	justify-content: space-between;
	margin-bottom: 7px;
	color: var(--iqtdsr-muted);
	font-size: 10px;
	font-weight: 700;
}

.iqtdsr__meter {
	position: relative;
	height: 10px;
	border-radius: 99px;
	background: #ebe9ea;
	overflow: visible;
}

.iqtdsr__meter-fill {
	display: block;
	width: 0;
	height: 100%;
	border-radius: inherit;
	background: var(--iqtdsr-red);
	transition: width 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.iqtdsr__meter-fill.is-passed {
	background: #00fa9a;
}

.iqtdsr__meter-fill.is-failed {
	background: #f50131;
}

.iqtdsr__meter-limit {
	position: absolute;
	top: -4px;
	width: 2px;
	height: 18px;
	background: var(--iqtdsr-ink);
	transform: translateX(-1px);
}

.iqtdsr__result-section {
	margin-top: 24px;
	padding-top: 24px;
}

.iqtdsr__result-section--highlight {
	margin-right: -14px;
	margin-left: -14px;
	padding: 0px 14px 0px;
}

.iqtdsr__chart-scroll {
	min-width: 0;
	max-width: 100%;
	margin-top: 18px;
	overflow: visible;
}

.iqtdsr__affordability-chart {
	display: grid;
	grid-template-columns: clamp(48px, 14%, 72px) minmax(0, 1fr);
	width: 100%;
	min-width: 0;
	padding: 18px 0 4px;
}

.iqtdsr__chart-axis {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 280px;
	padding: 0 7px 0 0;
	color: #6c6870;
	font-size: clamp(8px, 1.2vw, 10px);
	font-style: italic;
	font-weight: 650;
	text-align: right;
}

.iqtdsr__chart-axis span {
	line-height: 1;
	transform: translateY(-50%);
}

.iqtdsr__chart-axis span:last-child {
	transform: translateY(50%);
}

.iqtdsr__chart-plot {
	--iqtdsr-chart-grid-step: 20%;
	position: relative;
	min-width: 0;
}

.iqtdsr__chart-grid {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 280px;
	border-bottom: 1px solid #bbb7bc;
	border-left: 1px solid #bbb7bc;
	background-image: linear-gradient(to top, #dfdde0 1px, transparent 1px);
	background-size: 100% var(--iqtdsr-chart-grid-step);
	pointer-events: none;
}

.iqtdsr__chart-bars {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
}

.iqtdsr__chart-item {
	--iqtdsr-chart-bar-height: 0%;
	min-width: 0;
	border-right: 1px solid rgba(187, 183, 188, 0.45);
	text-align: center;
}

.iqtdsr__chart-item:last-child {
	border-right: 0;
}

.iqtdsr__chart-stage {
	position: relative;
	height: 280px;
}

.iqtdsr__chart-stage i {
	position: absolute;
	right: 14%;
	bottom: 0;
	left: 14%;
	height: var(--iqtdsr-chart-bar-height);
	background: #f50131;
	transform-origin: bottom;
	transition: height 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.iqtdsr__chart-stage strong {
	position: absolute;
	right: 2px;
	bottom: calc(var(--iqtdsr-chart-bar-height) + 5px);
	left: 2px;
	z-index: 1;
	color: #656169;
	font-size: clamp(8px, 1.35vw, 12px);
	font-style: italic;
	font-weight: 750;
	letter-spacing: -0.025em;
	line-height: 1;
	white-space: nowrap;
	transition: bottom 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.iqtdsr__chart-item > span {
	display: block;
	min-height: 44px;
	padding: 8px 3px 0;
	color: #a50e27;
	font-size: clamp(9px, 1.25vw, 11px);
	font-weight: 700;
	line-height: 1.25;
}

.iqtdsr__chart-item--loan .iqtdsr__chart-stage i {
	background: #20b2aa;
}

.iqtdsr__chart-item--maximum-property .iqtdsr__chart-stage i {
	background: #ff3162;
}

.iqtdsr__chart-item--maximum-loan .iqtdsr__chart-stage i {
	background: #008b8b;
}

.iqtdsr__result-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
}

.iqtdsr__focus-value {
	margin-bottom: 16px;
	padding: 16px;
	border-radius: 12px;
	background: var(--iqtdsr-soft);
}

.iqtdsr__data-list {
	margin: 0;
}

.iqtdsr__data-list--primary {
	margin-top: 14px;
}

.iqtdsr__data-list--primary dd {
	font-size: 14px;
}

.iqtdsr__subheading {
	margin: 22px 0 5px;
	color: var(--iqtdsr-ink);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.iqtdsr__rate-caption {
	margin: 13px 0 0;
	color: var(--iqtdsr-muted);
	font-size: 11px;
}

.iqtdsr__data-list > div {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;
	padding: 10px 0;
	border-bottom: 1px solid #eeeced;
}

.iqtdsr__data-list > div:last-child {
	border-bottom: 0;
}

.iqtdsr__data-list dt {
	min-width: 0;
	color: var(--iqtdsr-muted);
	font-size: 12px;
	font-weight: 500;
	overflow-wrap: anywhere;
}

.iqtdsr__data-list dd {
	min-width: 0;
	margin: 0;
	color: var(--iqtdsr-ink);
	font-size: 14px;
	font-weight: 500;
	text-align: right;
	overflow-wrap: anywhere;
}

.iqtdsr__rate-note {
	padding: 20px;
	border: 0;
	border-radius: 13px;
	background: var(--iqtdsr-ink);
	color: var(--iqtdsr-white);
}

.iqtdsr__rate-note strong {
	display: block;
	margin-top: 7px;
	font-size: 26px;
	letter-spacing: -0.03em;
}

.iqtdsr__rate-note p:not(.iqtdsr__result-kicker),
.iqtdsr__rate-note small {
	display: block;
	margin: 6px 0 0;
	color: #c9c7c8;
	font-size: 11px;
}

.iqtdsr__cta {
	width: 100%;
	margin-top: 22px !important;
}

.iqtdsr__details {
	margin-top: 20px;
	border-top: 1px solid var(--iqtdsr-line);
}

.iqtdsr__details summary {
	padding: 16px 0;
	cursor: pointer;
	font-size: 13px;
	font-weight: 750;
}

.iqtdsr__details div {
	padding-bottom: 8px;
	color: var(--iqtdsr-muted);
	font-size: 12px;
}

.iqtdsr__details p {
	margin: 0 0 10px;
}

.iqtdsr__details a {
	color: var(--iqtdsr-red-dark);
	font-weight: 700;
}

.iqtdsr__disclaimer {
	margin: 18px 0 0;
	color: #858188;
	font-size: 10px;
	line-height: 1.5;
}

@media (max-width: 1000px) {
	.iqtdsr__workspace {
		grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
	}

	.iqtdsr__section,
	.iqtdsr__empty,
	.iqtdsr__report {
		padding: 24px;
	}
}

@media (max-width: 920px) {
	.iqtdsr__workspace {
		grid-template-columns: 1fr;
	}

	.iqtdsr__results {
		position: static;
		scroll-margin-top: 20px;
	}

	.iqtdsr__empty {
		min-height: 240px;
	}
}

@media (max-width: 620px) {
	.iqtdsr {
		margin: 18px auto;
		font-size: 15px;
	}

	.iqtdsr__hero {
		padding: 32px 24px 30px;
	}

	.iqtdsr__hero::after {
		top: -98px;
		right: -78px;
	}

	.iqtdsr__hero h2 {
		font-size: 30px;
	}

	.iqtdsr__hero > p:last-child {
		font-size: 14px;
	}

	.iqtdsr__modal {
		align-items: flex-end;
		padding: 12px;
	}

	.iqtdsr__dialog {
		max-height: calc(100vh - 24px);
		max-height: calc(100svh - 24px);
		padding: 30px 20px 22px;
		overflow-y: auto;
		border-radius: 16px;
	}

	.iqtdsr__workspace {
		gap: 18px;
		padding: 14px;
		overflow: hidden;
	}

	.iqtdsr__section,
	.iqtdsr__empty,
	.iqtdsr__report {
		padding: 21px 18px;
		border-radius: 14px;
	}

	.iqtdsr__grid--2 {
		grid-template-columns: 1fr;
	}

	.iqtdsr input,
	.iqtdsr select,
	.iqtdsr__money,
	.iqtdsr__suffix {
		max-width: 100%;
		font-size: 16px;
	}

	.iqtdsr__field--wide {
		grid-column: auto;
	}

	.iqtdsr__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.iqtdsr .iqtdsr__button {
		width: 100%;
	}

	.iqtdsr__status,
	.iqtdsr__result-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.iqtdsr__data-list > div {
		align-items: flex-start;
		flex-direction: column;
		gap: 2px;
	}

	.iqtdsr__data-list dd {
		text-align: left;
	}

	.iqtdsr__affordability-chart {
		grid-template-columns: 48px minmax(0, 1fr);
		width: 100%;
		min-width: 0;
	}

	.iqtdsr__chart-axis,
	.iqtdsr__chart-stage,
	.iqtdsr__chart-grid {
		height: 240px;
	}

	.iqtdsr__chart-stage strong {
		font-size: 9px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.iqtdsr *,
	.iqtdsr *::before,
	.iqtdsr *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

/* Decoupling extensions. The base rules above intentionally mirror the BUC
 * calculator so both tools share one visual language. */
.iqdec .iqtdsr__workspace {
	display: block;
}

.iqdec .iqtdsr__form {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.iqdec .iqtdsr__form .iqtdsr__section {
	margin: 0;
}

.iqdec .iqtdsr__actions,
.iqdec [data-validation-summary] {
	grid-column: 1 / -1;
}

.iqdec .iqtdsr__results {
	position: static;
	margin-top: 24px;
}

.iqdec .iqtdsr__empty {
	min-height: 180px;
}

.iqdec .iqtdsr__field--invalid > span:first-child,
.iqdec .iqtdsr__field--invalid > legend,
.iqdec .iqtdsr__error {
	color: var(--iqtdsr-red-dark);
}

.iqdec .iqtdsr__field--invalid input,
.iqdec .iqtdsr__field--invalid select,
.iqdec .iqtdsr__field--invalid .iqtdsr__money,
.iqdec .iqtdsr__field--invalid .iqdec__suffix {
	border-color: var(--iqtdsr-red);
}

.iqdec__suffix {
	display: flex;
	align-items: stretch;
	min-width: 0;
	border: 1px solid var(--iqtdsr-line);
	border-radius: 11px;
	background: var(--iqtdsr-white);
	overflow: hidden;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.iqdec__suffix:focus-within {
	border-color: var(--iqtdsr-red);
	box-shadow: 0 0 0 3px rgba(245, 1, 49, 0.1);
}

.iqdec__suffix input {
	min-width: 0;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

.iqdec__suffix b {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	padding: 0 14px;
	background: #f1efef;
	color: var(--iqtdsr-muted);
	font-size: 12px;
	font-weight: 600;
}

.iqdec__segmented--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.iqdec__report {
	display: grid;
	gap: 24px;
}

.iqdec__results-intro {
	padding: 4px 2px 0;
}

.iqdec__results-intro h3,
.iqdec__results-intro p {
	margin: 0;
}

.iqdec__results-intro h3 {
	margin-top: 4px;
	font-size: 25px;
	font-weight: 600;
	letter-spacing: -0.025em;
}

.iqdec__results-intro > p:last-child {
	max-width: 720px;
	margin-top: 7px;
	color: var(--iqtdsr-muted);
	font-size: 13px;
	line-height: 1.65;
}

.iqdec__perspectives {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: start;
	gap: 18px;
}

.iqdec__perspectives .iqdec__party {
	min-width: 0;
}

.iqdec__perspectives .iqdec__buyer-layout {
	grid-template-columns: 1fr;
}

.iqdec__report .iqtdsr__result-section {
	margin-top: 0;
}

.iqdec__summary {
	margin-right: 0;
	margin-left: 0;
	padding: 30px !important;
	border: 1px solid var(--iqtdsr-line);
	border-radius: 15px;
	background: var(--iqtdsr-white);
}

.iqdec__summary-copy {
	max-width: 720px;
	margin: 8px 0 0;
	color: var(--iqtdsr-muted);
	font-size: 13px;
	line-height: 1.65;
}

.iqdec__summary-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-top: 24px;
}

.iqdec__summary-card {
	position: relative;
	display: grid;
	align-content: space-between;
	min-height: 126px;
	padding: 19px 17px 17px;
	border: 1px solid #e8e5e6;
	border-radius: 13px;
	background: #fff;
	overflow: hidden;
}

.iqdec__summary-card::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 4px;
	background: #20b2aa;
	content: "";
}

.iqdec__summary-card--cash::before {
	background: #f50131;
}

.iqdec__summary-card--cpf::before {
	background: #0b6160;
}

.iqdec__summary-card--loan::before {
	background: #0080ff;
}

.iqdec__summary-card span {
	color: var(--iqtdsr-muted);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.45;
}

.iqdec__summary-card strong {
	margin-top: 18px;
	color: #20b2aa;
	font-size: clamp(21px, 2.4vw, 29px);
	font-weight: 650;
	letter-spacing: -0.035em;
}

.iqdec__summary-card--cash strong {
	color: #f50131;
}

.iqdec__summary-card--cpf strong {
	color: #0b6160;
}

.iqdec__summary-card--loan strong {
	color: #0080ff;
}

.iqdec__party {
	padding: 28px;
	border: 1px solid var(--iqtdsr-line);
	border-top: 4px solid #20b2aa;
	border-radius: 15px;
	background: var(--iqtdsr-white);
}

.iqdec__party--seller {
	border-top-color: #f50131;
}

.iqdec__party-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.iqdec__party-head h3,
.iqdec__party-head p {
	margin: 0;
}

.iqdec__party-badge {
	display: inline-flex;
	flex: 0 0 36px;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #20b2aa;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
}

.iqdec__party--seller .iqdec__party-badge {
	background: #f50131;
}

.iqdec__party--buyer .iqtdsr__eyebrow {
	color: #20b2aa;
}

.iqdec__party--seller .iqtdsr__eyebrow {
	color: #f50131;
}

.iqdec__headline-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 9px;
	margin-bottom: 20px;
}

.iqdec__headline-grid > div {
	display: grid;
	align-content: space-between;
	min-height: 104px;
	padding: 15px;
	border: 1px solid #cdece9;
	border-radius: 11px;
	background: #eef9f7;
}

.iqdec__party--seller .iqdec__headline-grid > div {
	border-color: #f5d0d7;
	background: #fff3f5;
}

.iqdec__headline-grid span {
	color: var(--iqtdsr-ink);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.35;
}

.iqdec__headline-grid span small {
	display: block;
	margin-top: 2px;
	color: var(--iqtdsr-muted);
	font-size: 11px;
	font-weight: 500;
}

.iqdec__headline-grid strong {
	display: block;
	margin-top: 14px;
	color: #20b2aa;
	font-size: clamp(20px, 2.25vw, 27px);
	font-weight: 650;
	letter-spacing: -0.035em;
	overflow-wrap: anywhere;
}

.iqdec__party--seller .iqdec__headline-grid strong:not(.iqdec__loan-text) {
	color: #f50131;
}

.iqdec__buyer-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: 18px;
}

.iqdec__buyer-plan {
	display: grid;
	align-content: start;
	gap: 18px;
}

.iqdec__funding-panel,
.iqdec__cpf-panel,
.iqdec__cash-breakdown {
	min-width: 0;
	padding: 20px;
	border: 1px solid #e7e4e5;
	border-radius: 13px;
	background: #faf9f9;
}

.iqdec__panel-label {
	margin: 0;
	color: var(--iqtdsr-muted);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.iqdec__funding-total {
	display: block;
	margin-top: 5px;
	color: var(--iqtdsr-ink);
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 650;
	letter-spacing: -0.04em;
}

.iqdec__funding-caption {
	display: block;
	margin-top: 13px;
	color: var(--iqtdsr-muted);
	font-size: 12px;
	font-weight: 500;
}

.iqdec__funding-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	margin-top: 20px;
}

.iqdec__funding-item {
	min-width: 0;
	padding: 12px 10px;
	border-top: 3px solid #f50131;
	border-radius: 8px;
	background: #fff;
}

.iqdec__funding-item--loan {
	border-top-color: #0080ff;
}

.iqdec__funding-item--cpf {
	border-top-color: #0b6160;
}

.iqdec__funding-item span,
.iqdec__funding-item strong {
	display: block;
}

.iqdec__funding-item span {
	min-height: 36px;
	color: var(--iqtdsr-muted);
	font-size: 10px;
	font-weight: 500;
	line-height: 1.4;
}

.iqdec__funding-item strong {
	margin-top: 8px;
	color: var(--iqtdsr-red);
	font-size: 14px;
	font-weight: 650;
	overflow-wrap: anywhere;
}

.iqdec__funding-item--loan strong {
	color: #0080ff;
}

.iqdec__funding-item--cpf strong {
	color: #0b6160;
}

.iqdec__cpf-panel {
	background: #eef9f7;
}

.iqdec__panel-head,
.iqdec__cash-breakdown-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
}

.iqdec__panel-head h4,
.iqdec__cash-breakdown-head h4 {
	margin: 4px 0 0;
	color: var(--iqtdsr-ink);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
}

.iqdec__panel-head > strong,
.iqdec__cash-breakdown-head > strong {
	color: #0b6160;
	font-size: clamp(21px, 2.5vw, 28px);
	font-weight: 650;
	letter-spacing: -0.035em;
	text-align: right;
}

.iqdec__cpf-panel .iqtdsr__data-list {
	margin-top: 13px;
}

.iqdec__cash-breakdown {
	border-color: #f2b4c0;
	background: #fff;
}

.iqdec__cash-breakdown-head > strong {
	color: #f50131;
}

.iqdec__cash-explainer {
	margin: 11px 0 8px;
	padding: 10px 12px;
	border-radius: 8px;
	background: #fff0f3;
	color: #7f2133;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.55;
}

.iqdec .iqtdsr__data-list > div {
	gap: 18px;
}

.iqdec .iqtdsr__data-list dt,
.iqdec .iqtdsr__data-list dd {
	font-size: 13px;
}

.iqdec .iqtdsr__data-list dd {
	font-weight: 600;
}

.iqdec .iqtdsr__data-list small {
	color: var(--iqtdsr-muted);
	font-size: 10px;
	font-weight: 500;
}

.iqdec .iqtdsr__data-list .iqdec__total {
	margin-top: 6px;
	padding-top: 15px;
}

.iqdec .iqtdsr__data-list .iqdec__total dt,
.iqdec .iqtdsr__data-list .iqdec__total dd {
	color: var(--iqtdsr-ink);
	font-size: 14px;
	font-weight: 700;
}

.iqdec__seller-breakdown-label {
	margin: 4px 0 8px;
}

.iqdec__seller-list {
	padding: 7px 16px 10px;
	border: 1px solid #eee8e9;
	border-radius: 12px;
	background: #faf9f9;
}

.iqdec__party--seller .iqdec__seller-list .iqdec__total {
	margin: 8px -8px -2px;
	padding: 14px 8px;
	border: 0;
	border-radius: 9px;
	background: #fff0f3;
}

.iqdec .iqtdsr__data-list .iqdec__cash-total {
	margin: 8px -10px -8px;
	padding: 14px 10px;
	border: 0;
	border-radius: 9px;
	background: #fff0f3;
}

.iqdec .iqtdsr__data-list .iqdec__cash-total dt,
.iqdec .iqtdsr__data-list .iqdec__cash-total dd {
	color: #c80028;
	font-size: 14px;
	font-weight: 700;
}

.iqdec__cpf-text {
	color: #0b6160 !important;
}

.iqdec__loan-text {
	color: #0080ff !important;
}

.iqdec__party--buyer dd.iqdec__loan-text {
	color: #0b9f55 !important;
}

.iqdec__financing {
	padding: 26px;
	border: 1px solid var(--iqtdsr-line);
	border-radius: 15px;
	background: var(--iqtdsr-white);
	box-shadow: 0 10px 32px rgba(28, 23, 25, 0.045);
}

.iqdec__financing h3 {
	margin-bottom: 18px;
}

.iqdec__financing .iqtdsr__data-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 30px;
}

.iqdec__notice {
	margin: 18px 0 0;
	padding: 13px 15px;
	border-radius: 10px;
	background: #eaf7f4;
	color: #0b6160;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.6;
}

.iqdec__notice--warning {
	background: #fff0f3;
	color: var(--iqtdsr-red-dark);
}

.iqdec__positive {
	color: #0b6160 !important;
}

.iqdec__negative {
	color: var(--iqtdsr-red) !important;
}

.iqdec__lead-cta {
	width: 100%;
}

@media (max-width: 920px) {
	.iqdec .iqtdsr__form,
	.iqdec__perspectives,
	.iqdec__buyer-layout {
		grid-template-columns: 1fr;
	}

	.iqdec__summary-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	.iqdec,
	.iqdec .iqtdsr__form,
	.iqdec .iqtdsr__section,
	.iqdec .iqtdsr__results,
	.iqdec__report,
	.iqdec__perspectives,
	.iqdec__party,
	.iqdec__buyer-layout,
	.iqdec__buyer-plan,
	.iqdec__funding-panel,
	.iqdec__cpf-panel,
	.iqdec__cash-breakdown,
	.iqdec__financing {
		min-width: 0;
		max-width: 100%;
	}

	.iqdec .iqtdsr__section-head > div {
		min-width: 0;
	}

	.iqdec .iqtdsr__money input,
	.iqdec .iqdec__suffix input {
		flex: 1 1 0;
		width: 0;
		min-width: 0;
	}

	.iqdec__segmented--3,
	.iqdec__summary-grid,
	.iqdec__funding-strip,
	.iqdec__headline-grid,
	.iqdec__financing .iqtdsr__data-list {
		grid-template-columns: 1fr;
	}

	.iqdec__summary,
	.iqdec__party,
	.iqdec__financing {
		padding: 20px !important;
	}

	.iqdec__summary-card {
		min-height: 104px;
	}

	.iqdec__panel-head,
	.iqdec__cash-breakdown-head {
		display: block;
	}

	.iqdec__panel-head > strong,
	.iqdec__cash-breakdown-head > strong {
		display: block;
		margin-top: 8px;
		text-align: left;
	}

	.iqdec__funding-item {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
	}

	.iqdec__funding-item span {
		min-height: 0;
	}

	.iqdec__funding-item strong {
		margin-top: 0;
		text-align: right;
	}

	.iqdec .iqtdsr__data-list > div {
		align-items: flex-start;
	}

	.iqdec .iqtdsr__data-list dt,
	.iqdec .iqtdsr__data-list dd {
		max-width: 100%;
		overflow-wrap: anywhere;
	}
}

/* Reference-aligned decoupling report. */
.iqdec__results-intro {
	padding-top: 2px;
	text-align: center;
}

.iqdec__results-intro h3 {
	font-size: 26px;
	line-height: 1.2;
}

.iqdec__results-intro > span {
	display: block;
	width: 58px;
	height: 3px;
	margin: 14px auto 0;
	border-radius: 3px;
	background: #20b2aa;
}

.iqdec__perspectives {
	align-items: stretch;
}

.iqdec__perspectives .iqdec__party {
	height: 100%;
	padding: 0;
	overflow: hidden;
	border-top-width: 4px;
}

.iqdec__perspectives .iqdec__party-head {
	margin: 0;
	padding: 20px 22px;
	border-bottom: 1px solid #dce9e8;
	background: #eef9f7;
}

.iqdec__perspectives .iqdec__party--seller .iqdec__party-head {
	border-bottom-color: #f2dadd;
	background: #fff3f5;
}

.iqdec__perspectives .iqdec__party-head .iqtdsr__eyebrow {
	display: none;
}

.iqdec__perspectives .iqdec__party-head h3 {
	font-size: 19px;
	font-weight: 600;
}

.iqdec__reference-rows {
	margin: 0;
}

.iqdec__reference-rows--overview {
	padding: 20px 22px;
}

.iqdec__reference-rows > div {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 18px;
	min-height: 54px;
	padding: 14px 0;
	border-bottom: 1px dashed #e3e0e1;
}

.iqdec__reference-rows > div:last-child {
	border-bottom: 0;
}

.iqdec__reference-rows dt,
.iqdec__reference-rows dd {
	min-width: 0;
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
}

.iqdec__reference-rows dt {
	color: #242326;
	font-weight: 500;
}

.iqdec__reference-rows dt strong {
	font-weight: 600;
}

.iqdec__reference-rows dt small {
	color: var(--iqtdsr-muted);
	font-size: 11px;
	font-weight: 400;
}

.iqdec__reference-rows dt > small {
	display: block;
	margin-top: 2px;
}

.iqdec__reference-rows--overview dt > small {
	display: inline;
	margin: 0 0 0 4px;
}

.iqdec__reference-rows dt em {
	display: block;
	margin-top: 2px;
	color: #0b6160;
	font-size: 11px;
	font-style: normal;
	font-weight: 500;
}

.iqdec__party--seller .iqdec__reference-rows dt em {
	color: #b10024;
}

.iqdec__reference-rows dd {
	color: var(--iqtdsr-ink);
	font-weight: 600;
	text-align: right;
	white-space: nowrap;
}

.iqdec__result-group {
	margin: 0;
	padding: 22px;
	border-top: 1px solid var(--iqtdsr-line);
}

.iqdec__result-group h4 {
	position: relative;
	margin: 0 0 13px;
	padding-left: 13px;
	color: #34444c;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.055em;
	line-height: 1.35;
	text-align: left;
	text-transform: uppercase;
}

.iqdec__result-group h4::before {
	position: absolute;
	top: 1px;
	bottom: 1px;
	left: 0;
	width: 4px;
	border-radius: 4px;
	background: #20b2aa;
	content: "";
}

.iqdec__party--seller .iqdec__result-group h4::before {
	background: #f50131;
}

.iqdec__reference-rows .iqdec__reference-row--highlight {
	margin: 0 -8px;
	padding: 15px 8px;
	border: 0;
	border-radius: 8px;
	background: #eef9f7;
}

.iqdec__party--seller .iqdec__reference-rows .iqdec__reference-row--highlight {
	background: #fff3f5;
}

.iqdec__reference-rows .iqdec__reference-row--positive dd {
	color: #0b9f55;
	font-size: 15px;
	font-weight: 700;
}

.iqdec__comparison {
	padding: 0 !important;
	overflow: hidden;
	border: 1px solid var(--iqtdsr-line);
	border-radius: 15px;
	background: var(--iqtdsr-white);
	box-shadow: 0 10px 32px rgba(28, 23, 25, 0.045);
}

.iqdec__comparison-head {
	padding: 22px;
	border-bottom: 1px solid var(--iqtdsr-line);
}

.iqdec__comparison-head .iqtdsr__eyebrow {
	margin: 0 0 4px;
	color: #0b6160;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.iqdec__comparison-head h3 {
	margin: 0;
	font-size: 19px;
	font-weight: 600;
}

.iqdec__comparison-table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
}

.iqdec__comparison-table col:first-child {
	width: 50%;
}

.iqdec__comparison-table col:nth-child(2),
.iqdec__comparison-table col:nth-child(3) {
	width: 25%;
}

.iqdec__comparison-table th,
.iqdec__comparison-table td {
	padding: 14px 22px;
	border-bottom: 1px dotted #d8d5d6;
	color: #242326;
	font-size: 13px;
	line-height: 1.45;
	text-align: right;
	vertical-align: middle;
}

.iqdec__comparison-table th:first-child {
	text-align: left;
}

.iqdec__comparison-table thead th {
	border-bottom-style: dotted;
	background: #f8f8f8;
	font-weight: 600;
}

.iqdec__comparison-table .iqdec__comparison-party--buyer {
	background: #eef9f7;
	color: #0b9f55;
}

.iqdec__comparison-table .iqdec__comparison-party--seller {
	background: #fff3f5;
	color: #f50131;
}

.iqdec__comparison-table tbody th {
	font-weight: 500;
}

.iqdec__comparison-table tbody td {
	font-weight: 600;
}

.iqdec__comparison-table tr:not(.iqdec__comparison-section) > :nth-child(2) {
	background: #eef9f7 !important;
}

.iqdec__comparison-table tr:not(.iqdec__comparison-section) > :nth-child(3) {
	background: #fff3f5 !important;
}

.iqdec__comparison-table .iqdec__comparison-section th {
	padding-top: 17px;
	padding-bottom: 10px;
	border-bottom-style: dotted;
	background: #fff;
	color: #34444c;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.055em;
	text-transform: uppercase;
}

.iqdec__comparison-table .iqdec__comparison-emphasis th,
.iqdec__comparison-table .iqdec__comparison-emphasis td {
	background: #f7fbfb;
	font-weight: 700;
}

.iqdec__comparison-table .iqdec__comparison-value--buyer {
	color: #0b9f55;
	font-size: 15px;
}

.iqdec__comparison-table .iqdec__comparison-value--seller {
	color: #f50131;
	font-size: 15px;
}

.iqdec__comparison-table tbody tr:last-child th,
.iqdec__comparison-table tbody tr:last-child td {
	border-bottom: 0;
}

@media (max-width: 620px) {
	.iqdec__perspectives .iqdec__party {
		padding: 0 !important;
	}

	.iqdec__perspectives .iqdec__party-head,
	.iqdec__reference-rows--overview,
	.iqdec__result-group,
	.iqdec__comparison-head {
		padding: 18px;
	}

	.iqdec__reference-rows > div {
		gap: 12px;
	}

	.iqdec__reference-rows--overview dt > small {
		display: block;
		margin: 2px 0 0;
	}

	.iqdec__comparison-table col:first-child {
		width: 46%;
	}

	.iqdec__comparison-table col:nth-child(2),
	.iqdec__comparison-table col:nth-child(3) {
		width: 27%;
	}

	.iqdec__comparison-table th,
	.iqdec__comparison-table td {
		padding: 12px 10px;
		font-size: 11px;
		overflow-wrap: anywhere;
	}

	.iqdec__comparison-table td {
		white-space: nowrap;
	}

	.iqdec__comparison-table .iqdec__comparison-section th {
		font-size: 11px;
	}

	.iqdec__comparison-table .iqdec__comparison-value--buyer,
	.iqdec__comparison-table .iqdec__comparison-value--seller {
		font-size: 12px;
	}
}
