.vinduer24-lead-form {
	--v24-leads-ink: #0e3452;
	--v24-leads-ink-deep: #08273f;
	--v24-leads-blue: #1b577e;
	--v24-leads-blue-soft: #eaf2f7;
	--v24-leads-red: #e30613;
	--v24-leads-paper: #fff;
	--v24-leads-mist: #f4f7f9;
	--v24-leads-line: #d7e1e7;
	--v24-leads-muted: #586d7d;
	--v24-leads-success: #0b6545;
	position: relative;
	color: var(--v24-leads-ink);
	font-size: 16px;
	line-height: 1.55;
}

.vinduer24-lead-form::before {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 56px;
	height: 4px;
	border-radius: 999px;
	background: var(--v24-leads-red);
	content: "";
}

.vinduer24-lead-form > * {
	position: relative;
	z-index: 1;
}

.vinduer24-lead-form__preview,
.vinduer24-lead-form__message {
	margin: 0 0 22px;
	padding: 15px 17px;
	border: 1px solid #d6b65a;
	border-radius: 12px;
	background: #fff9e8;
	color: #64430d;
	font-size: 14px;
	line-height: 1.55;
}

.vinduer24-lead-form__message {
	display: grid;
	gap: 3px;
	outline: 0;
}

.vinduer24-lead-form__message--success {
	border-color: #91c6af;
	background: #edf8f3;
	color: var(--v24-leads-success);
}

.vinduer24-lead-form__message--error {
	border-color: #e2aaaa;
	background: #fff1f0;
	color: #812828;
}

.vinduer24-lead-form__message ul {
	margin: 7px 0 0 19px;
}

.vinduer24-lead-form__section {
	margin: 0;
	padding: 28px 0;
	border-top: 1px solid var(--v24-leads-line);
}

.vinduer24-lead-form__section:first-of-type {
	padding-top: 22px;
	border-top: 0;
}

.vinduer24-lead-form__section-heading {
	display: grid;
	grid-template-columns: minmax(140px, .65fr) minmax(200px, 1fr);
	align-items: baseline;
	gap: 12px 24px;
	margin: 0 0 19px;
}

.vinduer24-lead-form__section-heading h3 {
	margin: 0 !important;
	color: var(--v24-leads-ink-deep) !important;
	font-size: clamp(18px, 1.8vw, 22px) !important;
	font-weight: 800 !important;
	letter-spacing: -.025em !important;
	line-height: 1.2 !important;
}

.vinduer24-lead-form__section-heading p {
	margin: 0;
	color: var(--v24-leads-muted);
	font-size: 13px;
	line-height: 1.5;
}

.vinduer24-lead-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px 20px;
}

.vinduer24-lead-form__field {
	min-width: 0;
}

.vinduer24-lead-form__field--radio,
.vinduer24-lead-form__field--checkbox,
.vinduer24-lead-form__field--textarea,
.vinduer24-lead-form__field--file-upload {
	grid-column: 1 / -1;
}

.vinduer24-lead-form label:not(.vinduer24-lead-form__privacy):not(.vinduer24-lead-form__choices label),
.vinduer24-lead-form legend {
	display: block;
	margin: 0 0 8px;
	padding: 0;
	color: var(--v24-leads-ink-deep);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .015em;
	line-height: 1.35;
}

.vinduer24-lead-form__required {
	color: var(--v24-leads-red);
}

.vinduer24-lead-form fieldset {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.vinduer24-lead-form input[type="text"],
.vinduer24-lead-form input[type="tel"],
.vinduer24-lead-form input[type="email"],
.vinduer24-lead-form input[type="number"],
.vinduer24-lead-form select,
.vinduer24-lead-form textarea {
	width: 100%;
	min-height: 52px;
	box-sizing: border-box;
	margin: 0;
	padding: 12px 14px;
	border: 1px solid var(--v24-leads-line);
	border-radius: 12px;
	background: var(--v24-leads-paper);
	box-shadow: 0 1px 0 rgba(8, 39, 63, .025);
	color: var(--v24-leads-ink-deep);
	font: inherit;
	line-height: 1.4;
	transition:
		border-color .16s ease,
		box-shadow .16s ease,
		background-color .16s ease,
		transform .16s ease;
}

.vinduer24-lead-form textarea {
	min-height: 138px;
	resize: vertical;
}

.vinduer24-lead-form input::placeholder,
.vinduer24-lead-form textarea::placeholder {
	color: #7f909c;
	opacity: 1;
}

.vinduer24-lead-form input:hover,
.vinduer24-lead-form select:hover,
.vinduer24-lead-form textarea:hover {
	border-color: #b5c7d2;
}

.vinduer24-lead-form input:focus,
.vinduer24-lead-form select:focus,
.vinduer24-lead-form textarea:focus {
	border-color: #397b9f;
	outline: 0;
	box-shadow: 0 0 0 4px rgba(44, 112, 151, .13);
	transform: translateY(-1px);
}

.vinduer24-lead-form input:user-invalid,
.vinduer24-lead-form select:user-invalid,
.vinduer24-lead-form textarea:user-invalid,
.vinduer24-lead-form__field.has-error input {
	border-color: #c84c4c;
	box-shadow: 0 0 0 3px rgba(200, 76, 76, .1);
}

.vinduer24-lead-form__choices {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 9px;
}

.vinduer24-lead-form__field--window_types .vinduer24-lead-form__choices {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vinduer24-lead-form__choices label {
	display: flex !important;
	position: relative;
	align-items: center;
	gap: 10px;
	min-height: 48px;
	box-sizing: border-box;
	margin: 0 !important;
	padding: 11px 12px;
	border: 1px solid #dce5ea;
	border-radius: 11px;
	background: var(--v24-leads-mist);
	color: #29485e;
	font-size: 13px;
	font-weight: 700 !important;
	line-height: 1.35;
	cursor: pointer;
	transition:
		border-color .16s ease,
		background-color .16s ease,
		box-shadow .16s ease,
		transform .16s ease;
}

.vinduer24-lead-form__choices label:hover {
	border-color: #b7cad6;
	background: #fff;
	transform: translateY(-1px);
}

.vinduer24-lead-form__choices label:has(input:checked) {
	border-color: #5b8eab;
	background: var(--v24-leads-blue-soft);
	box-shadow: inset 0 0 0 1px rgba(27, 87, 126, .08);
	color: var(--v24-leads-ink-deep);
}

.vinduer24-lead-form__choices input,
.vinduer24-lead-form__privacy input {
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: var(--v24-leads-blue);
}

.vinduer24-lead-form__choices input:focus-visible,
.vinduer24-lead-form__privacy input:focus-visible {
	outline: 3px solid rgba(227, 6, 19, .22);
	outline-offset: 3px;
}

.vinduer24-lead-form__field-error {
	display: block;
	margin-top: 7px;
	color: #a12f2f;
	font-size: 12px;
	font-weight: 700;
}

.vinduer24-lead-form small,
.vinduer24-lead-form__footnote {
	display: block;
	color: var(--v24-leads-muted);
	font-size: 12px;
	line-height: 1.5;
}

.vinduer24-lead-form small {
	margin-top: 7px;
}

.vinduer24-lead-form__file {
	display: grid;
	position: relative;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	min-height: 58px;
	padding: 8px 12px 8px 8px;
	border: 1px dashed #b8cbd6;
	border-radius: 12px;
	background: linear-gradient(135deg, #f8fafb, #f2f6f8);
	overflow: hidden;
}

.vinduer24-lead-form__file input {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: pointer;
}

.vinduer24-lead-form__file:focus-within {
	border-color: #397b9f;
	box-shadow: 0 0 0 4px rgba(44, 112, 151, .13);
}

.vinduer24-lead-form__file-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 15px;
	border-radius: 9px;
	background: var(--v24-leads-ink);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
}

.vinduer24-lead-form__file-name {
	min-width: 0;
	overflow: hidden;
	color: var(--v24-leads-muted);
	font-size: 13px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.vinduer24-lead-form__privacy {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	margin: 5px 0 0;
	padding: 17px 18px;
	border-radius: 12px;
	background: #f3f7f9;
	color: #405767;
	font-size: 12px;
	line-height: 1.55;
}

.vinduer24-lead-form__privacy a {
	color: var(--v24-leads-ink);
	font-weight: 800;
	text-decoration: underline;
	text-decoration-color: #9dafba;
	text-underline-offset: 3px;
}

.vinduer24-lead-form__actions {
	display: grid;
	grid-template-columns: auto minmax(180px, 1fr);
	align-items: center;
	gap: 16px;
	margin-top: 20px;
}

.vinduer24-lead-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	margin: 0;
	padding: 0 22px;
	border: 0;
	border-radius: 11px;
	background: var(--v24-leads-ink);
	box-shadow: 0 13px 26px -18px rgba(8, 39, 63, .75);
	color: #fff;
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	transition:
		background-color .16s ease,
		box-shadow .16s ease,
		transform .16s ease;
}

.vinduer24-lead-form__submit:hover {
	background: var(--v24-leads-blue);
	box-shadow: 0 17px 30px -17px rgba(8, 39, 63, .8);
	transform: translateY(-2px);
}

.vinduer24-lead-form__submit:active {
	transform: translateY(0);
}

.vinduer24-lead-form__submit:focus-visible {
	outline: 3px solid rgba(227, 6, 19, .3);
	outline-offset: 3px;
}

.vinduer24-lead-form__submit:disabled {
	cursor: wait;
	opacity: .72;
	transform: none;
}

.vinduer24-lead-form__submit svg {
	transition: transform .16s ease;
}

.vinduer24-lead-form__submit:hover svg {
	transform: translate(2px, -1px);
}

.vinduer24-lead-form__footnote {
	margin: 0;
}

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

.contact-page-v2 .vinduer24-lead-form {
	padding-top: 18px;
}

.contact-page-v2 .vinduer24-lead-form__section--contact:only-of-type {
	padding-bottom: 21px;
}

.page.vinduer24-pristilbud-template {
	background: #eef3f7;
	color: #12324a;
}

.page.vinduer24-pristilbud-template .content-area,
.page.vinduer24-pristilbud-template .site-main {
	margin: 0;
	padding: 0;
}

.page.vinduer24-pristilbud-template .content-container.site-container {
	display: block;
	max-width: none;
	padding: 0;
}

.page.vinduer24-pristilbud-template .entry-content-wrap,
.page.vinduer24-pristilbud-template .content-bg {
	padding: 0;
	background: transparent;
}

.vinduer24-quote-page {
	--v24-quote-ink: #0b2d46;
	--v24-quote-navy: #0b314d;
	--v24-quote-navy-deep: #07253a;
	--v24-quote-blue: #1c5b82;
	--v24-quote-red: #e30613;
	--v24-quote-paper: #fff;
	--v24-quote-mist: #eef3f7;
	--v24-quote-line: #d6e1e8;
	overflow: clip;
	background: var(--v24-quote-mist);
	color: var(--v24-quote-ink);
}

.vinduer24-quote-shell {
	width: min(100% - clamp(2rem, 6vw, 4rem), 1180px);
	margin-inline: auto;
}

.vinduer24-quote-shell--form {
	max-width: 1060px;
}

.vinduer24-quote-hero {
	position: relative;
	padding: clamp(3rem, 6vw, 5.4rem) 0 0;
	background:
		radial-gradient(circle at 12% 0%, rgba(67, 134, 174, .3), transparent 31rem),
		linear-gradient(135deg, var(--v24-quote-navy) 0%, var(--v24-quote-navy-deep) 100%);
	color: #fff;
}

.vinduer24-quote-hero::after {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px),
		linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px);
	background-size: 56px 56px;
	content: "";
	mask-image: linear-gradient(to bottom, #000, transparent 88%);
	pointer-events: none;
}

.vinduer24-quote-hero-grid,
.vinduer24-quote-trust {
	position: relative;
	z-index: 1;
}

.vinduer24-quote-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
	align-items: end;
	gap: clamp(2rem, 5vw, 5rem);
}

.vinduer24-quote-eyebrow,
.vinduer24-quote-section-label {
	margin: 0 0 .75rem;
	font-size: .75rem;
	font-weight: 800;
	letter-spacing: .15em;
	line-height: 1.3;
	text-transform: uppercase;
}

.vinduer24-quote-eyebrow {
	color: #bed7e7;
}

.vinduer24-quote-section-label {
	color: var(--v24-quote-blue);
}

.vinduer24-quote-hero h1 {
	max-width: 12ch;
	margin: 0;
	color: #fff;
	font-size: clamp(2.7rem, 5.8vw, 5rem);
	font-weight: 850;
	letter-spacing: -.055em;
	line-height: .98;
	text-wrap: balance;
}

.vinduer24-quote-lead {
	max-width: 39rem;
	margin: 1.35rem 0 0;
	color: rgba(231, 240, 246, .9);
	font-size: clamp(1.02rem, 1.8vw, 1.18rem);
	line-height: 1.65;
}

.vinduer24-quote-paths {
	display: grid;
	gap: .7rem;
	padding-bottom: .35rem;
}

.vinduer24-quote-paths a {
	display: grid;
	grid-template-columns: 2.4rem 1fr auto;
	grid-template-rows: auto auto;
	align-items: center;
	column-gap: .85rem;
	min-height: 74px;
	padding: .9rem 1rem;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 1rem;
	background: rgba(255, 255, 255, .07);
	color: #fff;
	text-decoration: none;
	backdrop-filter: blur(10px);
	transition:
		background-color .18s ease,
		border-color .18s ease,
		transform .18s ease;
}

.vinduer24-quote-paths a::after {
	grid-column: 3;
	grid-row: 1 / span 2;
	color: #bed7e7;
	font-size: 1.15rem;
	content: "↘";
}

.vinduer24-quote-paths a:hover,
.vinduer24-quote-paths a:focus-visible {
	border-color: rgba(255, 255, 255, .33);
	background: rgba(255, 255, 255, .13);
	transform: translateY(-2px);
}

.vinduer24-quote-paths a:focus-visible {
	outline: 3px solid rgba(255, 255, 255, .72);
	outline-offset: 3px;
}

.vinduer24-quote-paths span {
	grid-row: 1 / span 2;
	color: #9fc5dc;
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .12em;
}

.vinduer24-quote-paths strong {
	align-self: end;
	font-size: .98rem;
	line-height: 1.25;
}

.vinduer24-quote-paths small {
	align-self: start;
	color: rgba(222, 235, 243, .74);
	font-size: .76rem;
	line-height: 1.4;
}

.vinduer24-quote-trust {
	display: flex;
	flex-wrap: wrap;
	gap: .8rem 2rem;
	margin: clamp(2.5rem, 5vw, 4.4rem) 0 0;
	padding: 1.15rem 0;
	border-top: 1px solid rgba(255, 255, 255, .12);
	list-style: none;
}

.vinduer24-quote-trust li {
	display: inline-flex;
	align-items: center;
	gap: .55rem;
	margin: 0;
	color: rgba(231, 240, 246, .82);
	font-size: .82rem;
	font-weight: 700;
}

.vinduer24-quote-trust li::before {
	width: .5rem;
	height: .5rem;
	border-radius: 999px;
	background: #5dc391;
	box-shadow: 0 0 0 .22rem rgba(93, 195, 145, .13);
	content: "";
}

.vinduer24-quote-trust a {
	color: #fff;
	text-underline-offset: 3px;
}

.vinduer24-quote-section {
	padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.vinduer24-quote-section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 1.45rem;
}

.vinduer24-quote-section-head h2,
.vinduer24-quote-contact-copy h2 {
	margin: 0;
	color: var(--v24-quote-ink);
	font-size: clamp(2rem, 4vw, 3.35rem);
	font-weight: 850;
	letter-spacing: -.045em;
	line-height: 1.03;
	text-wrap: balance;
}

.vinduer24-quote-section-head p:not(.vinduer24-quote-section-label),
.vinduer24-quote-contact-copy > p:not(.vinduer24-quote-section-label) {
	margin: .7rem 0 0;
	color: #5b7181;
	line-height: 1.6;
}

.vinduer24-quote-section-head > span {
	flex: 0 0 auto;
	margin-bottom: .2rem;
	padding: .6rem .85rem;
	border: 1px solid #cfdee7;
	border-radius: 999px;
	background: rgba(255, 255, 255, .68);
	color: #4e687a;
	font-size: .75rem;
	font-weight: 750;
}

.vinduer24-quote-form-card,
.vinduer24-quote-contact-card {
	border: 1px solid rgba(12, 49, 76, .09);
	border-radius: clamp(1.25rem, 3vw, 2rem);
	background: var(--v24-quote-paper);
	box-shadow: 0 30px 70px -54px rgba(7, 37, 58, .48);
}

.vinduer24-quote-form-card {
	padding: clamp(1.35rem, 4vw, 3.3rem);
}

.vinduer24-quote-page .vinduer24-lead-form {
	padding: 0;
}

.vinduer24-quote-page .vinduer24-lead-form::before {
	display: none;
}

.vinduer24-quote-page .vinduer24-lead-form__section:first-of-type {
	padding-top: 0;
}

.vinduer24-quote-contact {
	position: relative;
	padding: clamp(3.5rem, 7vw, 6.5rem) 0;
	background:
		radial-gradient(circle at 0% 100%, rgba(52, 116, 156, .34), transparent 31rem),
		linear-gradient(135deg, var(--v24-quote-navy-deep), var(--v24-quote-navy));
	color: #fff;
}

.vinduer24-quote-contact::before {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
		linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px);
	background-size: 56px 56px;
	content: "";
	pointer-events: none;
}

.vinduer24-quote-contact-grid {
	display: grid;
	position: relative;
	z-index: 1;
	grid-template-columns: minmax(240px, .72fr) minmax(500px, 1.28fr);
	align-items: start;
	gap: clamp(2rem, 7vw, 6.5rem);
}

.vinduer24-quote-contact-copy {
	padding-top: clamp(.4rem, 2vw, 1.2rem);
}

.vinduer24-quote-contact-copy .vinduer24-quote-section-label {
	color: #a9cce1;
}

.vinduer24-quote-contact-copy h2 {
	color: #fff;
}

.vinduer24-quote-contact-copy > p:not(.vinduer24-quote-section-label) {
	max-width: 30rem;
	color: rgba(224, 236, 244, .84);
}

.vinduer24-quote-contact-copy > a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	margin-top: 1.35rem;
	color: #fff;
	font-size: .88rem;
	font-weight: 800;
	text-underline-offset: 4px;
}

.vinduer24-quote-contact-card {
	padding: clamp(1.25rem, 3.5vw, 2.6rem);
}

.vinduer24-quote-contact-card .vinduer24-lead-form__section-heading {
	grid-template-columns: 1fr;
	gap: .35rem;
}

.vinduer24-quote-contact-card .vinduer24-lead-form__section--contact:only-of-type {
	padding-bottom: 1.35rem;
}

.vinduer24-quote-contact-card .vinduer24-lead-form__privacy {
	margin-top: 0;
}

@media (max-width: 900px) {
	.vinduer24-quote-hero-grid,
	.vinduer24-quote-contact-grid {
		grid-template-columns: 1fr;
	}

	.vinduer24-quote-hero h1 {
		max-width: 13ch;
	}

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

	.vinduer24-quote-contact-grid {
		gap: 2rem;
	}

	.vinduer24-quote-contact-copy {
		padding-top: 0;
	}
}

@media (max-width: 620px) {
	.vinduer24-quote-shell {
		width: min(100% - 2rem, 1180px);
	}

	.vinduer24-quote-hero {
		padding-top: 2.6rem;
	}

	.vinduer24-quote-hero h1 {
		font-size: clamp(2.45rem, 13vw, 3.45rem);
	}

	.vinduer24-quote-paths {
		grid-template-columns: 1fr;
	}

	.vinduer24-quote-trust {
		display: grid;
		grid-template-columns: 1fr;
		gap: .75rem;
		margin-top: 2.5rem;
	}

	.vinduer24-quote-section-head {
		display: block;
	}

	.vinduer24-quote-section-head > span {
		display: inline-flex;
		margin-top: 1rem;
	}

	.vinduer24-quote-form-card,
	.vinduer24-quote-contact-card {
		border-radius: 1.25rem;
	}
}

.vinduer24-special-size-form .vinduer24-lead-form {
	padding-top: 13px;
}

.vinduer24-special-size-form .vinduer24-lead-form::before {
	width: 42px;
	height: 3px;
}

.vinduer24-special-size-form .vinduer24-lead-form__section {
	padding: 20px 0;
}

.vinduer24-special-size-form .vinduer24-lead-form__section-heading {
	grid-template-columns: 1fr;
	gap: 5px;
	margin-bottom: 14px;
}

.vinduer24-special-size-form .vinduer24-lead-form__section-heading h3 {
	font-size: 17px !important;
}

.vinduer24-special-size-form .vinduer24-lead-form__grid {
	gap: 14px;
}

.vinduer24-special-size-form .vinduer24-lead-form__privacy {
	padding: 14px;
}

.vinduer24-special-size-form .vinduer24-lead-form__actions {
	grid-template-columns: 1fr;
	gap: 10px;
}

.vinduer24-special-size-form .vinduer24-lead-form__submit {
	width: 100%;
	background: var(--v24-leads-red);
	box-shadow: 0 16px 28px -20px rgba(227, 6, 19, .85);
}

.vinduer24-special-size-form .vinduer24-lead-form__submit:hover {
	background: #bd0711;
}

.vinduer24-lead-preview-extra {
	padding: 64px 24px;
	background: #f3f6f8;
}

.vinduer24-lead-preview-extra > div {
	max-width: 760px;
	margin: 0 auto;
	padding: 30px;
	border: 1px solid var(--v24-leads-line);
	border-radius: 18px;
	background: #fff;
}

@media (max-width: 782px) {
	.vinduer24-lead-form__section {
		padding: 24px 0;
	}

	.vinduer24-lead-form__section-heading {
		grid-template-columns: 1fr;
		gap: 5px;
	}

	.vinduer24-lead-form__grid,
	.vinduer24-lead-form__choices,
	.vinduer24-lead-form__field--window_types .vinduer24-lead-form__choices {
		grid-template-columns: 1fr;
	}

	.vinduer24-lead-form__actions {
		grid-template-columns: 1fr;
	}

	.vinduer24-lead-form__submit {
		width: 100%;
	}

	.vinduer24-lead-form__footnote {
		text-align: center;
	}

	.vinduer24-lead-preview-extra {
		padding: 36px 16px;
	}

	.vinduer24-lead-preview-extra > div {
		padding: 21px;
	}
}

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