/**
 * Height Calculator — compound-style 2-column layout + silhouette comparison chart.
 */

.sn-height-calc .sn-ci-calc__results,
.sn-height-calc .sn-height-calc__converter-results {
	flex: 1 1 auto;
	min-width: 0;
}

/* Form rows — label column + even spacing */
.sn-height-calc .sn-ci-calc__label {
	width: 108px;
	line-height: 1.3;
}

.sn-height-calc .sn-ci-calc__row {
	align-items: center;
	gap: 0.625rem;
	margin-bottom: 0.875rem;
}

.sn-height-calc .sn-ci-calc__panel {
	padding: 1rem 1.125rem;
}

.sn-height-calc .sn-ci-calc__form-control {
	padding: 0.5rem 0.625rem;
	font-size: 0.9375rem;
}

/* Equal-width ft / in fields — fixed addon column so inputs match */
.sn-height-calc .sn-ci-calc__control--split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 0.5rem;
	align-items: stretch;
}

.sn-height-calc .sn-ci-calc__control--split .sn-ci-calc__input-group--half {
	flex: none;
	min-width: 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 2.875rem;
	align-items: stretch;
}

.sn-height-calc .sn-ci-calc__control--split .sn-ci-calc__form-control {
	min-width: 0;
	padding: 0.5rem 0.35rem;
	text-align: center;
}

.sn-height-calc .sn-ci-calc__control--split .sn-ci-calc__form-control::-webkit-outer-spin-button,
.sn-height-calc .sn-ci-calc__control--split .sn-ci-calc__form-control::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.sn-height-calc .sn-ci-calc__control--split .sn-ci-calc__form-control[type='number'] {
	-moz-appearance: textfield;
	appearance: textfield;
}

.sn-height-calc .sn-ci-calc__control--split .sn-ci-calc__input-addon {
	justify-content: center;
	padding: 0.5rem 0.25rem;
	font-size: 0.8125rem;
	min-width: 0;
	width: 100%;
	border-right: none;
}

.sn-height-calc .sn-ci-calc__control--split .sn-ci-calc__input-addon--right {
	border-left: 1px solid var(--sn-ci-input-border, #ccc);
}

.sn-height-calc .sn-ci-calc__input-group:not(.sn-ci-calc__input-group--half) .sn-ci-calc__form-control {
	padding: 0.5rem 0.625rem;
}

.sn-height-calc .sn-ci-calc__input-group:not(.sn-ci-calc__input-group--half) .sn-ci-calc__input-addon {
	padding: 0.5rem 0.75rem;
	font-size: 0.8125rem;
}

.sn-height-calc__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
}

.sn-height-calc__btn-clear {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.625rem 1.25rem;
	border: 1px solid var(--sn-ci-panel-border, #ced4da);
	border-radius: 6px;
	background: #fff;
	color: #334155;
	font-size: 0.9375rem;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.sn-height-calc__btn-clear:hover {
	background: #f8fafc;
	border-color: #94a3b8;
}

.sn-height-calc__parents-only-row {
	margin-bottom: 0;
	align-items: flex-start;
}

.sn-height-calc__parents-only-row .sn-height-calc__checkbox {
	margin-left: calc(108px + 0.625rem);
	max-width: calc(100% - 108px - 0.625rem);
}

.sn-height-calc__checkbox {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.875rem;
	line-height: 1.45;
	color: var(--color-text, #1e293b);
	cursor: pointer;
}

.sn-height-calc__checkbox input {
	margin-top: 0.2rem;
	flex-shrink: 0;
}

.sn-height-calc__summary {
	margin-bottom: 1rem;
	padding: 1rem 1.125rem;
	border: 1px solid var(--sn-ci-panel-border, #ced4da);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.sn-height-calc__summary .sn-ci-calc__metric {
	margin-bottom: 0;
}

.sn-height-calc__summary .sn-ci-calc__metric-value {
	overflow-wrap: anywhere;
	word-break: break-word;
}

.sn-height-calc__metric--parents .sn-ci-calc__metric-label {
	margin-bottom: 0.35rem;
}

.sn-height-calc__metric--parents .sn-ci-calc__metric-value {
	margin: 0.25rem 0 0;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.35;
	white-space: normal;
}

.sn-height-calc__metric--parents .sn-ci-calc__metric-value--blue,
.sn-height-calc__metric--parents .sn-ci-calc__metric-value--accent {
	font-size: 0.9375rem;
}

.sn-height-calc__metric--parents .sn-ci-calc__metric-value strong {
	display: inline;
	font-weight: 700;
	margin: 0;
}

.sn-height-calc__chart-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin: 0.5rem 0 0.5rem;
}

.sn-height-calc__chart-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
}

.sn-height-calc__chart-edit,
.sn-height-calc__chart-toggle {
	border: 0;
	background: transparent;
	color: var(--sn-ci-info, #2b7ddb);
	font-size: 0.875rem;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 2px;
	padding: 0;
}

.sn-height-calc__chart-edit:hover,
.sn-height-calc__chart-toggle:hover {
	color: #1d4ed8;
}

.sn-height-calc__chart-editor-wrap {
	margin-bottom: 0.5rem;
	padding: 0.625rem;
	border: 1px solid var(--sn-ci-panel-border, #ced4da);
	border-radius: 6px;
	background: #f8fafc;
}

.sn-height-calc__editor-done {
	display: block;
	width: 100%;
	margin-top: 0.5rem;
	padding: 0.45rem 0.75rem;
	border: 1px solid #2b7ddb;
	border-radius: 6px;
	background: #fff;
	color: #2b7ddb;
	font-size: 0.8125rem;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.sn-height-calc__editor-done:hover {
	background: #eff6ff;
}

.sn-height-calc__chart-label {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-text-muted, #64748b);
}

.sn-height-calc__chart-toggle:hover {
	color: #1d4ed8;
}

.sn-height-calc__chart-wrap {
	overflow: visible;
	border: 1px solid var(--sn-ci-panel-border, #ced4da);
	border-radius: 8px;
	background: #fff;
	padding: 0.5rem 0.5rem 0.65rem;
}

.sn-height-calc__chart-stage {
	position: relative;
	min-height: 260px;
	overflow-x: auto;
	overflow-y: visible;
}

.sn-height-calc__chart {
	position: relative;
	width: 100%;
	overflow: visible;
}

.sn-height-calc__chart-editor {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	max-height: 200px;
	overflow-y: auto;
}

.sn-height-calc__editor-flat {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.sn-height-calc__editor-flat-row {
	display: grid;
	grid-template-columns: auto minmax(64px, 1fr) auto auto;
	gap: 0.35rem 0.5rem;
	align-items: center;
	padding: 0.35rem 0.25rem;
	border-bottom: 1px solid #e2e8f0;
}

.sn-height-calc__editor-flat-row:last-child {
	border-bottom: 0;
}

.sn-height-calc__editor-flat-chip {
	display: inline-flex;
	align-items: center;
	padding: 0.2rem 0.45rem;
	border-radius: 4px;
	font-size: 0.6875rem;
	font-weight: 700;
	white-space: nowrap;
}

.sn-height-calc__editor-flat-row--father .sn-height-calc__editor-flat-chip {
	background: #2b5f9e;
	color: #fff;
}

.sn-height-calc__editor-flat-row--mother .sn-height-calc__editor-flat-chip {
	background: #e8a4b8;
	color: #4a2030;
}

.sn-height-calc__editor-flat-row--son .sn-height-calc__editor-flat-chip {
	background: #6b9e6b;
	color: #fff;
}

.sn-height-calc__editor-flat-row--daughter .sn-height-calc__editor-flat-chip {
	background: #3d8f8f;
	color: #fff;
}

.sn-height-calc__editor-input--name {
	min-width: 0;
	width: 100%;
	min-height: 30px;
	padding: 0.3rem 0.45rem;
	border: 1px solid #cbd5e1;
	border-radius: 4px;
	font-size: 0.8125rem;
	font-family: inherit;
}

.sn-height-calc__editor-flat-height {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem;
}

.sn-height-calc__editor-flat-remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: 0;
	border-radius: 4px;
	background: transparent;
	color: #dc2626;
	font-size: 1.125rem;
	line-height: 1;
	cursor: pointer;
}

.sn-height-calc__editor-flat-remove:hover {
	background: rgba(220, 38, 38, 0.1);
}

@media (max-width: 480px) {
	.sn-height-calc__editor-flat-row {
		grid-template-columns: 1fr;
	}
}

.sn-height-calc__editor-card {
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
	background: #fff;
}

.sn-height-calc__editor-head {
	display: flex;
	align-items: stretch;
	min-height: 36px;
}

.sn-height-calc__editor-toggle {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	padding: 0.4rem 0.65rem;
	border: 0;
	background: transparent;
	color: inherit;
	font-size: 0.8125rem;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	text-align: left;
}

.sn-height-calc__editor-chevron {
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.sn-height-calc__editor-card.is-open .sn-height-calc__editor-chevron {
	transform: rotate(180deg);
}

.sn-height-calc__editor-delete {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	border: 0;
	background: rgba(0, 0, 0, 0.08);
	color: #dc2626;
	cursor: pointer;
}

.sn-height-calc__editor-delete:hover {
	background: rgba(220, 38, 38, 0.12);
}

.sn-height-calc__editor-card--father .sn-height-calc__editor-head {
	background: #2b5f9e;
	color: #fff;
}

.sn-height-calc__editor-card--mother .sn-height-calc__editor-head {
	background: #e8a4b8;
	color: #4a2030;
}

.sn-height-calc__editor-card--son .sn-height-calc__editor-head {
	background: #6b9e6b;
	color: #fff;
}

.sn-height-calc__editor-card--daughter .sn-height-calc__editor-head {
	background: #3d8f8f;
	color: #fff;
}

.sn-height-calc__editor-body {
	padding: 0.5rem;
	border: 1px solid #e2e8f0;
	border-top: 0;
	background: #fff;
}

.sn-height-calc__editor-row {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 0.35rem;
	align-items: center;
	margin-bottom: 0.35rem;
}

.sn-height-calc__editor-row:last-child {
	margin-bottom: 0;
}

.sn-height-calc__editor-row--height {
	align-items: start;
}

.sn-height-calc__editor-label {
	padding: 0.35rem 0.5rem;
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 600;
	color: #475569;
}

.sn-height-calc__editor-input {
	width: 100%;
	min-height: 32px;
	padding: 0.35rem 0.5rem;
	border: 1px solid #cbd5e1;
	border-radius: 4px;
	font-size: 0.8125rem;
	font-family: inherit;
}

.sn-height-calc__editor-height {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.sn-height-calc__editor-unit {
	display: inline-flex;
	border: 1px solid #cbd5e1;
	border-radius: 4px;
	overflow: hidden;
	width: fit-content;
}

.sn-height-calc__editor-unit-btn {
	min-width: 40px;
	padding: 0.25rem 0.5rem;
	border: 0;
	background: #fff;
	font-size: 0.75rem;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	color: #334155;
}

.sn-height-calc__editor-unit-btn.is-active {
	background: #2b7ddb;
	color: #fff;
}

.sn-height-calc__editor-measures {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
}

.sn-height-calc__editor-measure {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.75rem;
	color: #64748b;
}

.sn-height-calc__editor-measure input {
	width: 52px;
	min-height: 32px;
	padding: 0.35rem 0.25rem;
	border: 1px solid #cbd5e1;
	border-radius: 4px;
	font-size: 0.8125rem;
	font-family: inherit;
	text-align: center;
}

.sn-height-calc__editor-measure--wide input {
	width: 100%;
	min-width: 120px;
}

.sn-height-chart__svg {
	display: block;
	width: 100%;
	min-width: 320px;
	height: auto;
	overflow: visible;
}

.sn-height-chart__silhouette {
	shape-rendering: geometricPrecision;
	overflow: visible;
}

.sn-height-chart__plot {
	fill: #fafbfc;
}

.sn-height-chart__grid {
	stroke: #e2e8f0;
	stroke-width: 1;
}

.sn-height-chart__baseline {
	stroke: #dc2626;
	stroke-width: 2;
}

.sn-height-chart__tick {
	font-size: 11px;
	fill: #64748b;
	font-family: var(--font-sans, Inter, system-ui, sans-serif);
}

.sn-height-chart__tick--ft {
	font-size: 10px;
}

.sn-height-chart__axis {
	font-size: 11px;
	font-weight: 700;
	fill: #334155;
	font-family: var(--font-sans, Inter, system-ui, sans-serif);
}

.sn-height-chart__axis--cm,
.sn-height-chart__axis--ft {
	font-size: 12px;
	letter-spacing: 0.02em;
	text-transform: lowercase;
}

.sn-height-chart__stem {
	stroke: #94a3b8;
	stroke-width: 1.5;
}

.sn-height-chart__stem--head {
	stroke: #334155;
	stroke-width: 2;
	stroke-dasharray: none;
}

.sn-height-chart__name {
	font-size: 15px;
	font-weight: 700;
	fill: #0f172a;
	font-family: var(--font-heading, Sora, Inter, system-ui, sans-serif);
}

.sn-height-chart__meta {
	font-size: 12px;
	font-weight: 600;
	fill: #1e293b;
	font-family: var(--font-sans, Inter, system-ui, sans-serif);
}

.sn-height-calc__chart-wrap--compact {
	padding: 0.2rem 0.3rem 0.4rem;
}

.sn-height-calc__chart-wrap--compact .sn-height-calc__chart-stage {
	min-height: 300px;
}

.sn-height-calc__results--parents .sn-ci-calc__result-title {
	margin-bottom: 1.25rem;
}

.sn-height-chart__svg--compact {
	min-width: 280px;
}

.sn-height-chart__stem--body {
	stroke-dasharray: none;
}

.sn-height-calc__legend {
	margin-top: 0.65rem;
	overflow: visible;
}

.sn-height-calc__legend-list {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.45rem;
	overflow-x: auto;
	padding-bottom: 0.1rem;
}

.sn-height-calc__legend-item {
	flex: 0 0 auto;
}

.sn-height-calc__legend-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.45rem 0.7rem;
	border: 0;
	border-radius: 8px;
	font-size: 0.8125rem;
	font-weight: 700;
	font-family: inherit;
	color: #fff;
	line-height: 1.2;
	white-space: nowrap;
	cursor: pointer;
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.sn-height-calc__legend-chip:hover {
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12);
}

.sn-height-calc__legend-chip.is-active {
	box-shadow: 0 0 0 2px #2b7ddb;
}

.sn-height-calc__legend-chip-text {
	pointer-events: none;
	max-width: 11rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sn-height-calc__legend-chip-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	opacity: 0.92;
	pointer-events: none;
}

.sn-height-calc__legend-chip--mother .sn-height-calc__legend-chip-icon {
	color: #4a2030;
}

.sn-height-calc__legend-editor-panel {
	margin-bottom: 0.65rem;
}

.sn-height-calc__legend-editor-panel[hidden] {
	display: none !important;
}

.sn-height-calc__legend-editor-card {
	--sn-height-editor-h: 36px;
	--sn-height-editor-label-w: 4.25rem;
	--sn-height-editor-input-w: 3.25rem;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	background: #f8fafc;
	overflow: hidden;
}

.sn-height-calc__legend-editor-card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.5rem 0.6rem;
	background: #fff;
	border-bottom: 1px solid #e2e8f0;
}

.sn-height-calc__legend-editor-chip {
	display: inline-flex;
	align-items: center;
	height: var(--sn-height-editor-h);
	max-width: 14rem;
	padding: 0 0.55rem;
	border-radius: 6px;
	font-size: 0.75rem;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	box-sizing: border-box;
}

.sn-height-calc__legend-editor-chip--father {
	background: #2b5f9e;
	color: #fff;
}

.sn-height-calc__legend-editor-chip--mother {
	background: #e8a4b8;
	color: #4a2030;
}

.sn-height-calc__legend-editor-chip--son {
	background: #6b9e6b;
	color: #fff;
}

.sn-height-calc__legend-editor-chip--daughter {
	background: #3d8f8f;
	color: #fff;
}

.sn-height-calc__legend-editor-card-body {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 0.55rem 0.6rem 0.6rem;
}

.sn-height-calc__legend-editor-field {
	display: grid;
	grid-template-columns: var(--sn-height-editor-label-w) 1fr;
	gap: 0.5rem;
	align-items: center;
}

.sn-height-calc__legend-editor-label {
	display: flex;
	align-items: center;
	justify-content: center;
	height: var(--sn-height-editor-h);
	margin: 0;
	padding: 0 0.35rem;
	box-sizing: border-box;
	font-size: 0.75rem;
	font-weight: 600;
	color: #64748b;
	background: #e2e8f0;
	border-radius: 6px;
	text-align: center;
}

.sn-height-calc__legend-editor-height-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: nowrap;
	min-height: var(--sn-height-editor-h);
}

.sn-height-calc__legend-editor-card .sn-height-calc__legend-editor-name,
.sn-height-calc__legend-editor-card .sn-height-calc__editor-measure input {
	width: 100%;
	height: var(--sn-height-editor-h);
	min-height: var(--sn-height-editor-h);
	padding: 0 0.55rem;
	box-sizing: border-box;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	font-size: 0.8125rem;
	font-family: inherit;
	background: #fff;
	line-height: 1.2;
}

.sn-height-calc__legend-editor-card .sn-height-calc__editor-measure input {
	width: var(--sn-height-editor-input-w);
	padding: 0 0.35rem;
	text-align: center;
}

.sn-height-calc__legend-editor-card .sn-height-calc__editor-measure--wide input {
	width: calc(var(--sn-height-editor-input-w) * 1.5);
}

.sn-height-calc__legend-editor-card .sn-height-calc__editor-unit {
	display: inline-flex;
	flex-shrink: 0;
	height: var(--sn-height-editor-h);
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	overflow: hidden;
	box-sizing: border-box;
}

.sn-height-calc__legend-editor-card .sn-height-calc__editor-unit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.75rem;
	height: 100%;
	padding: 0 0.55rem;
	border: 0;
	background: #fff;
	font-size: 0.8125rem;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	color: #334155;
	box-sizing: border-box;
}

.sn-height-calc__legend-editor-card .sn-height-calc__editor-unit-btn.is-active {
	background: #2b7ddb;
	color: #fff;
}

.sn-height-calc__legend-editor-card .sn-height-calc__editor-measures {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex: 1;
	min-width: 0;
}

.sn-height-calc__legend-editor-card .sn-height-calc__editor-measures[hidden] {
	display: none !important;
}

.sn-height-calc__legend-editor-card .sn-height-calc__editor-measure {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin: 0;
	font-size: 0.75rem;
	font-weight: 600;
	color: #64748b;
	white-space: nowrap;
}

.sn-height-calc__legend-editor-remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: var(--sn-height-editor-h);
	height: var(--sn-height-editor-h);
	border: 0;
	border-radius: 6px;
	background: #fef2f2;
	color: #dc2626;
	cursor: pointer;
	padding: 0;
	margin-left: auto;
	box-sizing: border-box;
}

.sn-height-calc__legend-editor-remove:hover {
	background: #fee2e2;
}

.sn-height-calc__legend-done {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: var(--sn-height-editor-h);
	min-width: 4.5rem;
	padding: 0 0.85rem;
	box-sizing: border-box;
	border: 1px solid #2b7ddb;
	border-radius: 6px;
	background: #fff;
	color: #2b7ddb;
	font-size: 0.8125rem;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	line-height: 1;
}

.sn-height-calc__legend-done:hover {
	background: #eff6ff;
}

.sn-height-calc__legend-editor-card input:focus {
	border-color: #2b7ddb;
	outline: 2px solid rgba(43, 125, 219, 0.25);
	outline-offset: 0;
}

@media (max-width: 420px) {
	.sn-height-calc__legend-editor-height-row {
		flex-wrap: wrap;
	}
}

.sn-height-calc__legend-chip--father {
	background: #2b5f9e;
}

.sn-height-calc__legend-chip--mother {
	background: #e8a4b8;
	color: #4a2030;
}

.sn-height-calc__legend-chip--son {
	background: #6b9e6b;
}

.sn-height-calc__legend-chip--daughter {
	background: #3d8f8f;
}

.sn-height-calc__form--parents .sn-ci-calc__panel-heading {
	margin-bottom: 0.875rem;
	font-size: 0.8125rem;
	line-height: 1.35;
}

.sn-height-calc__result-footer {
	margin-top: 1rem;
}
	margin-top: 1rem;
}

.sn-height-calc__btn-convert {
	width: 100%;
	margin-top: 0.25rem;
}

.sn-height-calc__converter-results .sn-height-calc__summary {
	margin-top: 0;
}

.sn-height-calc__convert-error {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: #b91c1c;
}

@media (min-width: 1024px) {
	.sn-height-calc__chart-wrap {
		padding: 0.35rem 0.5rem 0.65rem;
	}
}
