/* ===========================================================================
   Verfahrensdokumentations-Generator - Styles (intercon-systems Designsystem)
   =========================================================================== */
:root {
	--ic-navy: #14374E;
	--ic-navy-700: #0e2838;
	--ic-orange: #FC974E;
	--ic-grey: #798488;
	--ic-mint: #4EFCD1;
	--ic-bg: #f4f6f7;
	--ic-card: #fff;
	--ic-line: #e3e8ea;
	--ic-line-soft: #eef1f2;
	--ic-text: #1d2b33;
	--ic-text-soft: #5c6b72;
	--ic-ok: #1f9d76;
	--ic-warn: #d98324;
	--ic-r: 14px;
	--ic-r-sm: 9px;
}

.ic-vd * {
	box-sizing: border-box
}

.ic-vd {
	font-family: 'DM Sans', system-ui, sans-serif;
	color: var(--ic-text);
	line-height: 1.55;
	background: var(--ic-bg)
}

.ic-vd button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none
}

.ic-vd input,
.ic-vd select,
.ic-vd textarea {
	font-family: inherit;
	font-size: 15px;
	color: var(--ic-text)
}

.ic-vd h1,
.ic-vd h2,
.ic-vd h3 {
	font-family: 'Outfit', system-ui, sans-serif;
	font-weight: 700;
	line-height: 1.2;
	margin: 0
}

.ic-vd-shell {
	display: grid;
	grid-template-columns: 248px minmax(0, 1fr) minmax(0, 1fr);
	min-height: 100vh
}

@media(max-width:1180px) {
	.ic-vd-shell {
		grid-template-columns: 220px minmax(0, 1fr)
	}

	.ic-vd-preview {
		display: none
	}
}

@media(max-width:760px) {
	.ic-vd-shell {
		grid-template-columns: 1fr
	}

	.ic-vd-rail {
		display: none
	}
}

/* Rail */
.ic-vd-rail {
	border-right: 1px solid var(--ic-line);
	background: #fbfcfc;
	padding: 22px 14px;
	position: sticky;
	top: 0;
	align-self: start;
	max-height: 100vh;
	overflow: auto
}

.ic-vd-rail h2 {
	font-size: 12px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--ic-grey);
	margin: 4px 8px 14px;
	font-weight: 600;
	font-family: 'DM Sans'
}

.ic-vd-step {
	display: flex;
	align-items: center;
	gap: 11px;
	width: 100%;
	text-align: left;
	padding: 10px 11px;
	border-radius: 10px;
	color: var(--ic-text-soft);
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 2px;
	transition: .14s
}

.ic-vd-step:hover {
	background: #eef2f3
}

.ic-vd-step.active {
	background: var(--ic-navy);
	color: #fff
}

.ic-vd-num {
	width: 24px;
	height: 24px;
	border-radius: 7px;
	flex: none;
	display: grid;
	place-items: center;
	background: #e7edef;
	color: var(--ic-text-soft);
	font-size: 12.5px;
	font-weight: 700;
	font-family: 'Outfit'
}

.ic-vd-step.active .ic-vd-num {
	background: rgba(255, 255, 255, .18);
	color: #fff
}

.ic-vd-step.done .ic-vd-num {
	background: var(--ic-mint);
	color: var(--ic-navy-700)
}

/* Form */
.ic-vd-form {
	padding: 30px 34px 120px;
	overflow: auto;
	max-height: 100vh
}

@media(max-width:760px) {
	.ic-vd-form {
		max-height: none;
		padding: 22px 16px 60px
	}
}

.ic-vd-eyebrow {
	display: flex;
	align-items: center;
	gap: 9px;
	color: var(--ic-orange);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	margin-bottom: 9px
}

.ic-vd-eyebrow .dot {
	width: 6px;
	height: 6px;
	border-radius: 99px;
	background: var(--ic-orange)
}

.ic-vd-form h1 {
	font-size: 26px;
	letter-spacing: -.4px;
	margin-bottom: 8px
}

.ic-vd-lede {
	color: var(--ic-text-soft);
	font-size: 15px;
	max-width: 54ch;
	margin-bottom: 24px
}

.ic-vd-field {
	margin-bottom: 18px
}

.ic-vd-field label.lab {
	display: block;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 7px
}

.ic-vd-field .hint {
	font-weight: 400;
	color: var(--ic-grey);
	font-size: 12.5px
}

.ic-vd-in,
.ic-vd-sel,
.ic-vd-ta {
	width: 100%;
	padding: 11px 13px;
	border: 1.5px solid var(--ic-line);
	border-radius: var(--ic-r-sm);
	background: #fff;
	outline: none;
	transition: .14s
}

.ic-vd-ta {
	resize: vertical;
	min-height: 84px;
	line-height: 1.5
}

.ic-vd-in:focus,
.ic-vd-sel:focus,
.ic-vd-ta:focus {
	border-color: var(--ic-navy);
	box-shadow: 0 0 0 3px rgba(20, 55, 78, .1)
}

.ic-vd-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px
}

@media(max-width:520px) {
	.ic-vd-row {
		grid-template-columns: 1fr
	}
}

.ic-vd-gt {
	font-size: 12.5px;
	font-weight: 700;
	color: var(--ic-navy);
	letter-spacing: .03em;
	text-transform: uppercase;
	margin: 18px 0 9px
}

.ic-vd-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 9px
}

.ic-vd-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 14px;
	border-radius: 99px;
	border: 1.5px solid var(--ic-line);
	background: #fff;
	font-size: 13.5px;
	font-weight: 500;
	transition: .14s
}

.ic-vd-chip:hover {
	border-color: var(--ic-grey)
}

.ic-vd-chip.on {
	background: var(--ic-navy);
	border-color: var(--ic-navy);
	color: #fff
}

.ic-vd-checks {
	display: grid;
	gap: 9px
}

.ic-vd-check {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 13px 15px;
	border: 1.5px solid var(--ic-line);
	border-radius: var(--ic-r-sm);
	background: #fff;
	text-align: left;
	width: 100%;
	transition: .14s
}

.ic-vd-check:hover {
	border-color: var(--ic-grey)
}

.ic-vd-check.on {
	border-color: var(--ic-navy);
	background: #f6fafb
}

/* hoehere Spezifitaet als ".ic-vd-check span", sonst wird display:grid ueberschrieben */
.ic-vd-check .ic-vd-box {
	width: 22px;
	height: 22px;
	border-radius: 6px;
	border: 2px solid rgba(121, 132, 136, 0.55);
	flex: none;
	display: grid;
	place-items: center;
	margin-top: 1px;
	font-size: 0;
	background: #fff;
	transition: background .18s ease, border-color .18s ease
}

/* Haken wird per CSS gezeichnet und nur im angeklickten Zustand eingeblendet */
.ic-vd-check .ic-vd-box::after {
	content: "";
	width: 11px;
	height: 6px;
	border-left: 2.5px solid var(--ic-navy);
	border-bottom: 2.5px solid var(--ic-navy);
	transform: rotate(-45deg) scale(0);
	transition: transform .18s ease;
	margin-top: -2px
}

.ic-vd-check.on .ic-vd-box {
	background: var(--ic-mint);
	border-color: var(--ic-mint)
}

.ic-vd-check.on .ic-vd-box::after {
	transform: rotate(-45deg) scale(1)
}

.ic-vd-check b {
	display: block;
	font-size: 14px
}

.ic-vd-check span {
	display: block;
	font-size: 12.5px;
	color: var(--ic-text-soft);
	margin-top: 2px
}

.ic-vd-callout {
	display: flex;
	gap: 11px;
	padding: 14px 16px;
	border-radius: var(--ic-r-sm);
	background: #eefbf5;
	border: 1px solid #c5eedd;
	font-size: 13.5px;
	color: #0f6e51;
	margin: 6px 0 20px
}

.ic-vd-callout.amber {
	background: #fff6ec;
	border-color: #fadcb8;
	color: #9a5d12
}

.ic-vd-cond {
	margin-top: 10px;
	padding-left: 16px;
	border-left: 3px solid var(--ic-line-soft)
}

/* Nav */
.ic-vd-nav {
	position: relative;
	bottom: 0;
	background: rgba(255, 255, 255, .94);
	backdrop-filter: blur(8px);
	border-top: 1px solid var(--ic-line);
	padding: 13px 34px;
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 20px -34px 0 -34px;
}

.ic-vd-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: var(--ic-r-sm);
	font-weight: 600;
	font-size: 14.5px;
	transition: .15s
}

.ic-vd-btn.ghost {
	color: var(--ic-text-soft);
	border: 1.5px solid var(--ic-line)
}

.ic-vd-btn.ghost:hover {
	border-color: var(--ic-grey)
}

.ic-vd-btn.next {
	background: var(--ic-navy);
	color: #fff
}

.ic-vd-btn.next:hover {
	background: var(--ic-navy-700)
}

.ic-vd-sp {
	flex: 1
}

/* Preview */
.ic-vd-preview {
	background: #dfe5e8;
	padding: 22px;
	overflow: auto;
	max-height: 100vh;
	position: sticky;
	top: 0;
	align-self: start
}

.ic-vd-phead {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 13px
}

.ic-vd-phead span {
	font-size: 12px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #6a787f;
	font-weight: 600
}

.ic-vd-doc {
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 10px 40px rgba(20, 55, 78, .14);
	padding: 44px 48px;
	font-size: 12.5px;
	line-height: 1.6;
	color: #22323b
}

.ic-vd-doc h1 {
	font-size: 21px;
	color: var(--ic-navy);
	margin-bottom: 4px
}

.ic-vd-doc h2 {
	font-size: 15px;
	color: var(--ic-navy);
	margin: 24px 0 9px;
	padding-bottom: 6px;
	border-bottom: 2px solid var(--ic-navy)
}

.ic-vd-doc h3 {
	font-size: 13px;
	color: var(--ic-navy-700);
	margin: 15px 0 5px
}

.ic-vd-doc p {
	margin: 0 0 9px
}

.ic-vd-doc ul {
	margin: 0 0 9px;
	padding-left: 18px
}

.ic-vd-doc table {
	width: 100%;
	border-collapse: collapse;
	margin: 8px 0 12px;
	font-size: 11.5px
}

.ic-vd-doc th,
.ic-vd-doc td {
	border: 1px solid #d6dde0;
	padding: 6px 8px;
	text-align: left;
	vertical-align: top
}

.ic-vd-doc th {
	background: #f1f5f6;
	font-weight: 600
}

.ic-vd-doc .vd-muted {
	color: #8b979d;
	font-style: italic
}

.ic-vd-doc .vd-cover {
	border-bottom: 3px solid var(--ic-orange);
	padding-bottom: 16px
}

.ic-vd-doc .vd-eyebrow {
	color: var(--ic-orange);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase
}

.ic-vd-doc .vd-meta {
	margin-top: 12px;
	font-size: 12px;
	color: #5c6b72
}

.ic-vd-doc .vd-toc div {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px dotted #cdd6da;
	padding: 3px 0
}

.ic-vd-doc table.vd-sign {
	margin-top: 26px;
	border-collapse: collapse
}

.ic-vd-doc table.vd-sign td {
	border: none;
	padding: 6px 0 0;
	font-size: 11px;
	color: #5c6b72
}

.ic-vd-doc table.vd-sign td.vd-sign-line {
	border-top: 1px solid #4a5a62;
	width: 44%
}

.ic-vd-doc table.vd-sign td.vd-sign-gap {
	width: 12%
}

.ic-vd-doc .vd-disclaimer {
	margin-top: 22px;
	padding: 11px 13px;
	background: #f6f8f9;
	border-radius: 6px;
	font-size: 10.5px;
	color: #8b979d
}

.ic-vd-doc .vd-locked {
	padding: 18px;
	text-align: center;
	background: repeating-linear-gradient(45deg, #f4f6f7, #f4f6f7 10px, #eef1f2 10px, #eef1f2 20px);
	border-radius: 6px;
	margin-bottom: 10px
}

.ic-vd-doc .vd-lock {
	font-size: 11.5px;
	color: #8b979d;
	font-weight: 600
}

/* Meter */
.ic-vd-meter {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: auto
}

.ic-vd-mtrack {
	width: 110px;
	height: 7px;
	border-radius: 99px;
	background: #e3e8ea;
	overflow: hidden
}

.ic-vd-mfill {
	height: 100%;
	width: 0;
	border-radius: 99px;
	background: linear-gradient(90deg, var(--ic-mint), #37d3b0);
	transition: width .4s
}

.ic-vd-mlabel {
	font-size: 12px;
	color: var(--ic-text-soft);
}

.ic-vd-hidden {
	display: none !important;
}

.ic-vd-checkout {
	margin-top: 18px;
}

.ic-vd-price {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 6px;
}

.ic-vd-price b {
	color: var(--ic-navy);
	font-size: 20px;
	font-family: 'Outfit';
}