.hcc-configurator {
	--hcc-ink: #111b2a;
	--hcc-muted: #637083;
	--hcc-line: #dfe4ea;
	--hcc-soft: #f5f7f9;
	--hcc-white: #ffffff;
	--hcc-accent: #0d6b57;
	--hcc-accent-dark: #085344;
	--hcc-accent-soft: #e9f5f1;
	--hcc-blue: #1e5eff;
	--hcc-warning: #9b5c00;
	--hcc-radius: 18px;
	color: var(--hcc-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", sans-serif;
	font-size: 15px;
	line-height: 1.55;
	margin: 24px auto;
	max-width: 1440px;
}

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

.hcc-configurator [hidden],
.hcc-configurator .is-hidden {
	display: none !important;
}

.hcc-configurator button,
.hcc-configurator input,
.hcc-configurator select,
.hcc-configurator textarea {
	font: inherit;
}

.hcc-hero {
	align-items: flex-end;
	background:
		radial-gradient(circle at 87% 20%, rgba(255, 255, 255, .14), transparent 24%),
		linear-gradient(125deg, #111d2c 0%, #162c38 58%, #0c6655 120%);
	border-radius: 26px 26px 0 0;
	color: #fff;
	display: flex;
	justify-content: space-between;
	min-height: 260px;
	overflow: hidden;
	padding: 52px 56px;
	position: relative;
}

.hcc-hero::after {
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 999px;
	content: "";
	height: 310px;
	position: absolute;
	right: -76px;
	top: -130px;
	width: 310px;
}

.hcc-hero__copy {
	max-width: 800px;
	position: relative;
	z-index: 1;
}

.hcc-eyebrow {
	color: #a6d9cd;
	display: block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .16em;
	margin-bottom: 14px;
	text-transform: uppercase;
}

.hcc-hero h2 {
	color: #fff;
	font-size: clamp(32px, 4.1vw, 54px);
	font-weight: 650;
	letter-spacing: -.035em;
	line-height: 1.12;
	margin: 0 0 14px;
}

.hcc-hero p {
	color: inherit;
	margin: 0;
}

.hcc-hero__subtitle {
	font-size: 19px;
	opacity: .9;
}

.hcc-hero__support {
	font-size: 13px;
	margin-top: 10px !important;
	opacity: .62;
}

.hcc-hero__badge {
	align-items: flex-end;
	border-left: 1px solid rgba(255, 255, 255, .2);
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 160px;
	padding-left: 30px;
	position: relative;
	z-index: 1;
}

.hcc-hero__badge span {
	font-size: 12px;
	letter-spacing: .12em;
	opacity: .65;
}

.hcc-hero__badge strong {
	font-size: 18px;
	font-weight: 600;
}

.hcc-stepper {
	background: var(--hcc-white);
	border: 1px solid var(--hcc-line);
	border-top: 0;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	margin-bottom: 22px;
	padding: 0 34px;
	position: sticky;
	top: 32px;
	z-index: 20;
}

.hcc-stepper button {
	align-items: center;
	background: transparent;
	border: 0;
	border-bottom: 3px solid transparent;
	color: var(--hcc-muted);
	cursor: pointer;
	display: grid;
	gap: 0 10px;
	grid-template-columns: 34px auto;
	grid-template-rows: 1fr 1fr;
	min-height: 82px;
	padding: 13px 12px 11px;
	text-align: left;
	transition: color .2s, border-color .2s, background .2s;
}

.hcc-stepper button:hover {
	background: #fafbfc;
	color: var(--hcc-ink);
}

.hcc-stepper button:focus-visible {
	box-shadow: inset 0 0 0 2px var(--hcc-blue);
	outline: none;
}

.hcc-stepper button > span {
	align-items: center;
	background: var(--hcc-soft);
	border-radius: 50%;
	display: flex;
	font-size: 11px;
	font-weight: 700;
	grid-row: 1 / 3;
	height: 34px;
	justify-content: center;
	letter-spacing: .06em;
	width: 34px;
}

.hcc-stepper button b {
	align-self: end;
	font-size: 14px;
	font-weight: 650;
}

.hcc-stepper button small {
	align-self: start;
	font-size: 11px;
	opacity: .72;
}

.hcc-stepper button.is-active {
	border-bottom-color: var(--hcc-accent);
	color: var(--hcc-accent);
}

.hcc-stepper button.is-active > span,
.hcc-stepper button.is-complete > span {
	background: var(--hcc-accent);
	color: #fff;
}

.hcc-layout {
	align-items: start;
	display: grid;
	gap: 22px;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 390px);
}

.hcc-form,
.hcc-preview__sticky {
	background: var(--hcc-white);
	border: 1px solid var(--hcc-line);
	border-radius: var(--hcc-radius);
	box-shadow: 0 10px 40px rgba(17, 27, 42, .045);
}

.hcc-step {
	animation: hcc-step-in .24s ease;
	padding: 38px;
}

@keyframes hcc-step-in {
	from { opacity: 0; transform: translateY(5px); }
	to { opacity: 1; transform: translateY(0); }
}

.hcc-step__heading {
	align-items: flex-start;
	border-bottom: 1px solid var(--hcc-line);
	display: flex;
	gap: 18px;
	margin-bottom: 30px;
	padding-bottom: 24px;
}

.hcc-step__heading > span {
	background: var(--hcc-ink);
	border-radius: 999px;
	color: #fff;
	flex: none;
	font-size: 11px;
	font-weight: 650;
	letter-spacing: .08em;
	padding: 6px 10px;
}

.hcc-step__heading h3 {
	color: var(--hcc-ink);
	font-size: 26px;
	font-weight: 650;
	letter-spacing: -.02em;
	line-height: 1.2;
	margin: 0 0 5px;
}

.hcc-step__heading p,
.hcc-fieldset__hint {
	color: var(--hcc-muted);
	font-size: 13px;
	margin: 0;
}

.hcc-fieldset {
	border: 0;
	margin: 0 0 32px;
	min-width: 0;
	padding: 0;
}

.hcc-fieldset legend {
	color: var(--hcc-ink);
	font-size: 15px;
	font-weight: 650;
	margin: 0 0 13px;
	padding: 0;
}

.hcc-fieldset__hint {
	margin: -8px 0 14px;
}

.hcc-image-options {
	display: grid;
	gap: 13px;
}

.hcc-image-options--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hcc-image-options--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hcc-image-options--five {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hcc-option-card {
	cursor: pointer;
	min-width: 0;
}

.hcc-option-card > input,
.hcc-choice-pills input,
.hcc-segmented input,
.hcc-color-options input,
.hcc-quantity-options input {
	height: 1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.hcc-option-card__surface {
	background: var(--hcc-white);
	border: 1px solid var(--hcc-line);
	border-radius: 14px;
	display: block;
	height: 100%;
	overflow: hidden;
	transition: border-color .18s, box-shadow .18s, transform .18s;
}

.hcc-option-card:hover .hcc-option-card__surface {
	border-color: #aeb8c4;
	transform: translateY(-2px);
}

.hcc-option-card > input:focus-visible + .hcc-option-card__surface {
	box-shadow: 0 0 0 3px rgba(30, 94, 255, .22);
	outline: none;
}

.hcc-option-card > input:checked + .hcc-option-card__surface {
	border-color: var(--hcc-accent);
	box-shadow: 0 0 0 1px var(--hcc-accent), 0 8px 24px rgba(13, 107, 87, .1);
}

.hcc-option-card__image {
	aspect-ratio: 4 / 2.7;
	background: var(--hcc-soft);
	display: block;
	overflow: hidden;
	position: relative;
}

.hcc-option-card__image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.hcc-option-card__image i {
	align-items: center;
	background: var(--hcc-accent);
	border: 2px solid #fff;
	border-radius: 50%;
	color: #fff;
	display: flex;
	font-size: 11px;
	font-style: normal;
	height: 24px;
	justify-content: center;
	opacity: 0;
	position: absolute;
	right: 9px;
	top: 9px;
	transform: scale(.6);
	transition: opacity .18s, transform .18s;
	width: 24px;
}

.hcc-option-card > input:checked + .hcc-option-card__surface .hcc-option-card__image i {
	opacity: 1;
	transform: scale(1);
}

.hcc-option-card__content {
	display: flex;
	flex-direction: column;
	min-height: 122px;
	padding: 16px;
}

.hcc-option-card__content b {
	color: var(--hcc-ink);
	font-size: 14px;
	font-weight: 650;
	line-height: 1.35;
}

.hcc-option-card__content small {
	color: var(--hcc-muted);
	font-size: 12px;
	line-height: 1.55;
	margin-top: 6px;
}

.hcc-option-card__content em {
	color: var(--hcc-accent);
	font-size: 12px;
	font-style: normal;
	font-weight: 650;
	margin-top: auto;
	padding-top: 12px;
}

.hcc-option-card--compact .hcc-option-card__content {
	min-height: 54px;
	padding: 13px;
}

.hcc-option-card--compact .hcc-option-card__content em {
	padding-top: 7px;
}

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

.hcc-choice-pills,
.hcc-segmented {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.hcc-choice-pills label,
.hcc-segmented label {
	cursor: pointer;
}

.hcc-choice-pills span,
.hcc-segmented span {
	align-items: center;
	background: var(--hcc-white);
	border: 1px solid var(--hcc-line);
	border-radius: 9px;
	color: #465365;
	display: flex;
	font-size: 13px;
	justify-content: center;
	min-height: 42px;
	padding: 8px 14px;
	transition: border-color .18s, background .18s, color .18s;
}

.hcc-choice-pills label:hover span,
.hcc-segmented label:hover span {
	border-color: #aeb8c4;
}

.hcc-choice-pills input:focus-visible + span,
.hcc-segmented input:focus-visible + span,
.hcc-color-options input:focus-visible + span,
.hcc-quantity-options input:focus-visible + span {
	box-shadow: 0 0 0 3px rgba(30, 94, 255, .2);
}

.hcc-choice-pills input:checked + span,
.hcc-segmented input:checked + span {
	background: var(--hcc-ink);
	border-color: var(--hcc-ink);
	color: #fff;
}

.hcc-custom-input {
	display: block;
	margin-top: 14px;
	max-width: 280px;
}

.hcc-custom-input > span:first-child,
.hcc-select-field > span {
	color: var(--hcc-ink);
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 7px;
}

.hcc-input-with-unit {
	align-items: center;
	background: #fff;
	border: 1px solid var(--hcc-line);
	border-radius: 10px;
	display: flex;
	overflow: hidden;
}

.hcc-input-with-unit input {
	border: 0 !important;
	box-shadow: none !important;
	min-height: 44px;
	min-width: 0;
	padding: 8px 12px !important;
	width: 100%;
}

.hcc-input-with-unit b {
	border-left: 1px solid var(--hcc-line);
	color: var(--hcc-muted);
	font-size: 12px;
	padding: 11px 13px;
}

.hcc-current-product {
	align-items: center;
	background: linear-gradient(100deg, var(--hcc-accent-soft), #f3f8f7);
	border: 1px solid #cee7df;
	border-radius: 13px;
	display: flex;
	justify-content: space-between;
	margin: 2px 0 20px;
	padding: 18px 20px;
}

.hcc-current-product span {
	color: var(--hcc-accent);
	font-size: 12px;
	font-weight: 650;
}

.hcc-current-product strong {
	color: var(--hcc-accent-dark);
	font-size: 16px;
}

.hcc-advanced {
	border: 1px solid var(--hcc-line);
	border-radius: 13px;
	margin-top: 20px;
	overflow: hidden;
}

.hcc-advanced summary {
	align-items: center;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	list-style: none;
	padding: 17px 19px;
	user-select: none;
}

.hcc-advanced summary::-webkit-details-marker {
	display: none;
}

.hcc-advanced summary span {
	display: flex;
	flex-direction: column;
}

.hcc-advanced summary b {
	color: var(--hcc-ink);
	font-size: 14px;
}

.hcc-advanced summary small {
	color: var(--hcc-muted);
	font-size: 11px;
	margin-top: 2px;
}

.hcc-advanced summary i {
	color: var(--hcc-muted);
	font-size: 20px;
	font-style: normal;
	transition: transform .18s;
}

.hcc-advanced[open] summary i {
	transform: rotate(180deg);
}

.hcc-advanced__body {
	background: #fafbfc;
	border-top: 1px solid var(--hcc-line);
	padding: 22px 20px 2px;
}

.hcc-select-field {
	display: block;
	margin-bottom: 20px;
}

.hcc-select-field select,
.hcc-select-field input,
.hcc-modal input,
.hcc-modal textarea {
	background: #fff;
	border: 1px solid var(--hcc-line);
	border-radius: 9px;
	box-shadow: none;
	color: var(--hcc-ink);
	min-height: 44px;
	outline: none;
	padding: 8px 12px;
	width: 100%;
}

.hcc-select-field select:focus,
.hcc-select-field input:focus,
.hcc-modal input:focus,
.hcc-modal textarea:focus {
	border-color: var(--hcc-blue);
	box-shadow: 0 0 0 3px rgba(30, 94, 255, .12);
}

.hcc-select-field small {
	color: var(--hcc-muted);
	display: block;
	font-size: 11px;
	margin-top: 6px;
}

.hcc-select-field small.is-required {
	color: var(--hcc-accent);
	font-weight: 650;
}

.hcc-select-field input {
	margin-top: 8px;
}

.hcc-color-options {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.hcc-color-options label {
	cursor: pointer;
}

.hcc-color-options label[hidden] {
	display: none;
}

.hcc-color-options label > span {
	align-items: center;
	border: 1px solid var(--hcc-line);
	border-radius: 999px;
	color: #465365;
	display: flex;
	font-size: 12px;
	gap: 8px;
	min-height: 40px;
	padding: 7px 13px 7px 8px;
}

.hcc-color-options input:checked + span {
	border-color: var(--hcc-ink);
	box-shadow: inset 0 0 0 1px var(--hcc-ink);
	color: var(--hcc-ink);
	font-weight: 600;
}

.hcc-swatch {
	background: #202124;
	border: 1px solid rgba(17, 27, 42, .14);
	border-radius: 50%;
	display: block;
	height: 24px;
	width: 24px;
}

.hcc-swatch--white { background: #fff; }
.hcc-swatch--gray { background: #b7bdc5; }
.hcc-swatch--silver { background: linear-gradient(135deg, #eef0f2, #aeb5bd); }
.hcc-swatch--space-gray { background: #59616b; }
.hcc-swatch--blue { background: #245fc4; }
.hcc-swatch--red { background: #b22b32; }
.hcc-swatch--custom-color { background: conic-gradient(#d94a4a, #e5c542, #49a862, #3a77ca, #a64eb8, #d94a4a); }
.hcc-swatch--pantone-custom { background: linear-gradient(135deg, #f35 0 25%, #fc3 25% 50%, #36b37e 50% 75%, #36c 75%); }

.hcc-mold-notice {
	align-items: center;
	background: #fff7e9;
	border: 1px solid #f0d6a5;
	border-radius: 12px;
	display: none;
	justify-content: space-between;
	margin-top: -10px;
	padding: 15px 18px;
}

.hcc-mold-notice.is-visible {
	display: flex;
}

.hcc-mold-notice.is-free {
	background: var(--hcc-accent-soft);
	border-color: #bee0d5;
}

.hcc-mold-notice div {
	display: flex;
	flex-direction: column;
}

.hcc-mold-notice span {
	color: var(--hcc-muted);
	font-size: 11px;
}

.hcc-mold-notice strong {
	color: var(--hcc-ink);
	font-size: 14px;
}

.hcc-mold-notice > b {
	color: var(--hcc-warning);
	font-size: 12px;
}

.hcc-mold-notice.is-free > b {
	color: var(--hcc-accent);
}

.hcc-quantity-options {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hcc-quantity-options label {
	cursor: pointer;
}

.hcc-quantity-options label > span {
	border: 1px solid var(--hcc-line);
	border-radius: 11px;
	display: flex;
	flex-direction: column;
	min-height: 74px;
	padding: 13px;
	transition: border-color .18s, background .18s;
}

.hcc-quantity-options b {
	color: var(--hcc-ink);
	font-size: 14px;
}

.hcc-quantity-options small {
	color: var(--hcc-muted);
	font-size: 10px;
	margin-top: 3px;
}

.hcc-quantity-options input:checked + span {
	background: var(--hcc-accent-soft);
	border-color: var(--hcc-accent);
}

.hcc-final-callout {
	background: var(--hcc-soft);
	border-radius: 13px;
	margin-bottom: 10px;
	padding: 22px;
}

.hcc-final-callout span {
	color: var(--hcc-accent);
	font-size: 11px;
	font-weight: 650;
}

.hcc-final-callout strong {
	display: block;
	font-size: 20px;
	margin: 3px 0;
}

.hcc-final-callout p {
	color: var(--hcc-muted);
	font-size: 12px;
	margin: 0;
}

.hcc-step__actions {
	align-items: center;
	border-top: 1px solid var(--hcc-line);
	display: flex;
	justify-content: space-between;
	margin-top: 34px;
	padding-top: 24px;
}

.hcc-step__actions--end {
	justify-content: flex-end;
}

.hcc-button {
	align-items: center;
	border: 0;
	border-radius: 9px;
	cursor: pointer;
	display: inline-flex;
	font-size: 13px;
	font-weight: 650;
	justify-content: center;
	min-height: 46px;
	padding: 10px 19px;
	text-decoration: none;
	transition: background .18s, box-shadow .18s, transform .18s;
}

.hcc-button:focus-visible {
	box-shadow: 0 0 0 3px rgba(30, 94, 255, .28);
	outline: none;
}

.hcc-button--primary {
	background: var(--hcc-ink);
	color: #fff;
}

.hcc-button--primary:hover {
	background: #263447;
	transform: translateY(-1px);
}

.hcc-button--secondary {
	background: var(--hcc-soft);
	color: var(--hcc-ink);
}

.hcc-button--secondary:hover {
	background: #e8ecf0;
}

.hcc-preview {
	min-width: 0;
}

.hcc-preview__sticky {
	overflow: hidden;
	position: sticky;
	top: 136px;
}

.hcc-preview__heading {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding: 24px 24px 16px;
}

.hcc-preview__heading span {
	color: var(--hcc-accent);
	display: block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
}

.hcc-preview__heading h3 {
	color: var(--hcc-ink);
	font-size: 19px;
	margin: 2px 0 0;
}

.hcc-preview__heading > i {
	color: #2bb38d;
	font-size: 16px;
	font-style: normal;
	text-shadow: 0 0 0 rgba(43, 179, 141, .7);
	animation: hcc-live 2s infinite;
}

@keyframes hcc-live {
	50% { text-shadow: 0 0 0 8px rgba(43, 179, 141, 0); }
}

.hcc-product-visual {
	align-items: center;
	background:
		radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .95), rgba(245, 247, 249, .55) 55%, transparent 75%),
		linear-gradient(145deg, #f5f7f9, #e9edf1);
	display: flex;
	height: 176px;
	justify-content: center;
	overflow: hidden;
	padding: 28px 22px;
	position: relative;
}

.hcc-product-visual::before {
	background-image: radial-gradient(#b8c0c9 1px, transparent 1px);
	background-size: 14px 14px;
	content: "";
	inset: 0;
	opacity: .2;
	position: absolute;
}

.hcc-product-visual__terminal {
	background: #202b38;
	border: 2px solid #3b4857;
	border-radius: 7px;
	box-shadow: 0 5px 14px rgba(17, 27, 42, .2);
	color: #fff;
	flex: none;
	font-size: 9px;
	font-weight: 650;
	min-width: 58px;
	padding: 11px 7px;
	position: relative;
	text-align: center;
	z-index: 2;
}

.hcc-product-visual__cable {
	align-items: center;
	display: flex;
	flex: 1;
	max-width: 210px;
	position: relative;
	z-index: 1;
}

.hcc-product-visual__cable b {
	background: #202b38;
	display: block;
	height: 10px;
	width: 100%;
}

.hcc-product-visual__cable i {
	background: #15202d;
	border-radius: 2px;
	display: block;
	height: 22px;
	width: 18px;
}

.hcc-preview__product {
	border-bottom: 1px solid var(--hcc-line);
	padding: 18px 24px;
}

.hcc-preview__product span {
	color: var(--hcc-muted);
	display: block;
	font-size: 10px;
	margin-bottom: 2px;
}

.hcc-preview__product strong {
	color: var(--hcc-ink);
	font-size: 15px;
}

.hcc-preview__section {
	border-bottom: 1px solid var(--hcc-line);
	padding: 20px 24px 16px;
}

.hcc-preview__section h4 {
	color: var(--hcc-ink);
	font-size: 12px;
	letter-spacing: .04em;
	margin: 0 0 11px;
}

.hcc-summary-list {
	margin: 0;
}

.hcc-summary-list > div {
	align-items: baseline;
	display: flex;
	gap: 12px;
	justify-content: space-between;
	padding: 3px 0;
}

.hcc-summary-list dt {
	color: var(--hcc-muted);
	font-size: 11px;
}

.hcc-summary-list dd {
	color: #2d3948;
	font-size: 11px;
	font-weight: 550;
	margin: 0;
	text-align: right;
}

.hcc-pricing {
	padding: 18px 24px 15px;
}

.hcc-pricing > div {
	align-items: baseline;
	display: flex;
	justify-content: space-between;
	padding: 4px 0;
}

.hcc-pricing span {
	color: var(--hcc-muted);
	font-size: 11px;
}

.hcc-pricing b,
.hcc-pricing strong {
	color: var(--hcc-ink);
	font-size: 12px;
}

.hcc-pricing > div:first-child {
	padding: 0 0 9px;
}

.hcc-pricing > div:first-child strong {
	color: var(--hcc-accent);
	font-size: 20px;
}

.hcc-pricing .hcc-pricing__waiver {
	align-items: flex-end;
	background: var(--hcc-accent-soft);
	border-radius: 8px;
	display: grid;
	grid-template-columns: 1fr auto;
	margin: 5px 0;
	padding: 8px 10px;
}

.hcc-pricing__waiver b {
	color: var(--hcc-accent);
}

.hcc-pricing__waiver del {
	color: var(--hcc-muted);
	font-weight: 400;
	margin-right: 5px;
}

.hcc-pricing__waiver small {
	color: var(--hcc-accent);
	font-size: 9px;
	grid-column: 1 / 3;
}

.hcc-pricing .hcc-pricing__total {
	border-top: 1px solid var(--hcc-line);
	margin-top: 10px;
	padding-top: 12px;
}

.hcc-pricing__total strong {
	font-size: 18px;
}

.hcc-disclaimer {
	color: #8a94a2;
	font-size: 9px;
	line-height: 1.55;
	margin: 0;
	padding: 0 24px 15px;
}

.hcc-button--quote {
	background: var(--hcc-accent);
	color: #fff;
	margin: 0 24px;
	width: calc(100% - 48px);
}

.hcc-button--quote:hover {
	background: var(--hcc-accent-dark);
	transform: translateY(-1px);
}

.hcc-quote-hint {
	color: var(--hcc-muted);
	font-size: 9px;
	margin: 8px 24px 20px;
	text-align: center;
}

.hcc-modal {
	inset: 0;
	position: fixed;
	z-index: 999999;
}

.hcc-modal__backdrop {
	background: rgba(8, 15, 24, .72);
	inset: 0;
	opacity: 0;
	position: absolute;
	transition: opacity .18s;
}

.hcc-modal__dialog {
	background: #fff;
	border-radius: 20px;
	left: 50%;
	max-height: calc(100vh - 40px);
	max-width: 660px;
	overflow: auto;
	padding: 34px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -47%);
	transition: opacity .18s, transform .18s;
	width: calc(100% - 32px);
	opacity: 0;
}

.hcc-modal.is-open .hcc-modal__backdrop {
	opacity: 1;
}

.hcc-modal.is-open .hcc-modal__dialog {
	opacity: 1;
	transform: translate(-50%, -50%);
}

.hcc-modal__close {
	background: var(--hcc-soft);
	border: 0;
	border-radius: 50%;
	color: var(--hcc-ink);
	cursor: pointer;
	font-size: 22px;
	height: 34px;
	line-height: 1;
	position: absolute;
	right: 20px;
	top: 20px;
	width: 34px;
}

.hcc-modal__header {
	margin-bottom: 24px;
	padding-right: 30px;
}

.hcc-modal__header > span {
	color: var(--hcc-accent);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
}

.hcc-modal__header h3 {
	color: var(--hcc-ink);
	font-size: 28px;
	margin: 3px 0 5px;
}

.hcc-modal__header p {
	color: var(--hcc-muted);
	font-size: 12px;
	margin: 0;
}

.hcc-modal__grid {
	display: grid;
	gap: 15px;
	grid-template-columns: 1fr 1fr;
}

.hcc-modal label > span {
	color: var(--hcc-ink);
	display: block;
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 6px;
}

.hcc-modal textarea {
	min-height: 100px;
	resize: vertical;
}

.hcc-modal__wide {
	grid-column: 1 / 3;
}

.hcc-modal .hcc-button--quote {
	margin: 20px 0 0;
	width: 100%;
}

.hcc-modal__demo {
	background: #fff7e9;
	border: 1px solid #f0d6a5;
	border-radius: 9px;
	color: #80510b;
	font-size: 11px;
	margin-top: 15px;
	padding: 10px 12px;
}

.hcc-modal-open {
	overflow: hidden;
}

@media (max-width: 1180px) {
	.hcc-layout {
		grid-template-columns: minmax(0, 1fr) 330px;
	}

	.hcc-step {
		padding: 30px;
	}

	.hcc-image-options--five {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.hcc-image-options--four {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.hcc-configurator {
		margin: 0 auto;
	}

	.hcc-hero {
		border-radius: 20px 20px 0 0;
		min-height: 230px;
		padding: 38px 32px;
	}

	.hcc-hero__badge {
		display: none;
	}

	.hcc-stepper {
		overflow-x: auto;
		padding: 0 10px;
		position: sticky;
		top: 0;
	}

	.hcc-stepper button {
		grid-template-columns: 30px auto;
		min-width: 130px;
	}

	.hcc-layout {
		display: flex;
		flex-direction: column;
	}

	.hcc-form,
	.hcc-preview {
		width: 100%;
	}

	.hcc-preview__sticky {
		position: static;
	}
}

@media (max-width: 620px) {
	.hcc-hero {
		min-height: 210px;
		padding: 32px 22px;
	}

	.hcc-hero h2 {
		font-size: 34px;
	}

	.hcc-hero__subtitle {
		font-size: 16px;
	}

	.hcc-step {
		padding: 24px 18px;
	}

	.hcc-step__heading {
		gap: 12px;
	}

	.hcc-step__heading h3 {
		font-size: 22px;
	}

	.hcc-image-options--three,
	.hcc-image-options--four,
	.hcc-image-options--five,
	.hcc-two-columns {
		grid-template-columns: 1fr 1fr;
	}

	.hcc-option-card__content {
		min-height: 118px;
		padding: 13px;
	}

	.hcc-option-card__content b {
		font-size: 13px;
	}

	.hcc-option-card__content small {
		font-size: 10px;
	}

	.hcc-current-product {
		align-items: flex-start;
		flex-direction: column;
		gap: 3px;
	}

	.hcc-current-product strong {
		font-size: 14px;
	}

	.hcc-advanced__body .hcc-two-columns {
		grid-template-columns: 1fr;
	}

	.hcc-quantity-options {
		grid-template-columns: 1fr 1fr;
	}

	.hcc-mold-notice {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.hcc-step__actions {
		gap: 9px;
	}

	.hcc-step__actions .hcc-button {
		flex: 1;
		padding-left: 10px;
		padding-right: 10px;
	}

	.hcc-modal__dialog {
		border-radius: 16px;
		padding: 26px 20px;
	}

	.hcc-modal__grid {
		grid-template-columns: 1fr;
	}

	.hcc-modal__wide {
		grid-column: auto;
	}
}

@media (max-width: 400px) {
	.hcc-image-options--three,
	.hcc-image-options--four,
	.hcc-image-options--five,
	.hcc-two-columns {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hcc-configurator *,
	.hcc-configurator *::before,
	.hcc-configurator *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}

