/* Varamedia Notes — frontend popups. Scoped under .vn-root to avoid theme clashes. */
.vn-root, .vn-root * { box-sizing: border-box; }

.vn-root {
	--vn-accent: #d31842;
	--vn-bg: #ffffff;
	--vn-text: #333333;
	--vn-btntext: #ffffff;
	--vn-radius: 8px;
	--vn-overlay: rgba(0,0,0,0.55);
	position: fixed;
	z-index: 2147483000;
	font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.5;
	color: var(--vn-text);
}

/* ---- overlay (modal + fullscreen) ---- */
.vn-root.vn-has-overlay {
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--vn-overlay);
	padding: 20px;
	animation: vn-fade .25s ease;
}
@keyframes vn-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes vn-pop { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes vn-slide { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes vn-dinac-rise { from { opacity: 0; transform: translateY(100vh); } to { opacity: 1; transform: none; } }
/* The Vlotweg note is anchored to a corner, so it travels its own height rather than the viewport. */
@keyframes vn-vlotweg-rise { from { opacity: 0; transform: translateY(130%); } to { opacity: 1; transform: none; } }

/* ---- the card ---- */
.vn-card-el {
	position: relative;
	background: var(--vn-bg);
	border-radius: var(--vn-radius);
	box-shadow: 0 20px 60px rgba(0,0,0,0.28);
	overflow: hidden;
	width: 100%;
	/* --vn-width / --vn-height are set per campaign; the fallbacks are the defaults. */
	max-width: var(--vn-width, 720px);
	max-height: var(--vn-height, calc(100vh - 40px));
	display: flex;
	animation: vn-pop .3s ease;
}
.vn-root.vn-type-modal .vn-card-el { max-width: var(--vn-width, 720px); }
.vn-root.vn-type-fullscreen { padding: 0; }
.vn-root.vn-type-fullscreen .vn-card-el { max-width: 100%; width: 100%; height: 100%; max-height: 100vh; border-radius: 0; }

/* layout: image beside content */
.vn-layout-image-left .vn-card-el { flex-direction: row; }
.vn-layout-image-right .vn-card-el { flex-direction: row-reverse; }
.vn-layout-image-top .vn-card-el,
.vn-layout-background .vn-card-el,
.vn-layout-text-only .vn-card-el { flex-direction: column; }

.vn-media-el {
	flex: 0 0 42%;
	background-size: cover;
	background-position: center;
	min-height: 220px;
}
.vn-layout-image-top .vn-media-el { flex-basis: auto; height: 200px; width: 100%; }
.vn-layout-text-only .vn-media-el { display: none; }

.vn-content-el {
	flex: 1 1 auto;
	padding: 28px 30px;
	overflow-y: auto;
}

/* background-image layout: image behind, content on top */
.vn-layout-background .vn-card-el { background-size: cover; background-position: center; }
.vn-layout-background .vn-media-el { display: none; }
.vn-layout-background .vn-content-el { background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.55)); }
.vn-layout-background.vn-inverted .vn-content-el { color: #fff; }
.vn-layout-background.vn-inverted .vn-headline, .vn-layout-background.vn-inverted .vn-subheading { color: #fff; }
.vn-feature-image { display: block; max-width: 100%; height: auto; object-fit: contain; }

.vn-headline { font-size: 22px; font-weight: 800; margin: 0 0 10px; color: var(--vn-text); line-height: 1.25; }
.vn-body { font-size: 15px; margin: 0 0 14px; }
.vn-subheading { font-size: 15px; font-weight: 700; margin: 0 0 12px; }
.vn-smallprint { font-size: 12px; opacity: .7; text-align: center; margin: 8px 0 0; }

.vn-field { margin: 0 0 10px; }
.vn-field label { display: block; font-size: 13px; margin-bottom: 3px; }
.vn-field .vn-req { color: var(--vn-accent); }
.vn-input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d5d5d5;
	border-radius: 6px;
	font-size: 15px;
	font-family: inherit;
	background: #fff;
	color: #222;
}
.vn-input:focus { outline: none; border-color: var(--vn-accent); box-shadow: 0 0 0 3px rgba(0,0,0,.06); }
textarea.vn-input { min-height: 84px; resize: vertical; }

.vn-consent { display: flex; gap: 8px; align-items: flex-start; font-size: 12px; margin: 6px 0 12px; }
.vn-consent input { margin-top: 3px; }

.vn-button {
	width: 100%;
	border: 0;
	cursor: pointer;
	padding: 14px 18px;
	border-radius: 6px;
	background: var(--vn-accent);
	color: var(--vn-btntext);
	font-size: 16px;
	font-weight: 700;
	/* Themes like to capitalise or uppercase every button. The label is written
	   the way it should read, so refuse the transform. */
	text-transform: none;
	transition: filter .15s ease;
}
.vn-button:hover { filter: brightness(.92); }
.vn-button[disabled] { opacity: .6; cursor: default; }

.vn-error { color: #b00020; font-size: 12px; margin-top: 3px; }
.vn-form-error { color: #b00020; font-size: 13px; margin: 6px 0; }

/* A theme button style (padding, min-height, box-shadow) would push the hover
   circle off-centre and out of round, so pin every box property here. */
.vn-close {
	position: absolute; top: 10px; right: 12px;
	width: 30px; height: 30px; min-width: 0; min-height: 0;
	padding: 0; margin: 0; line-height: 30px; text-align: center;
	border: 0; background: transparent; cursor: pointer;
	font-size: 22px; color: #777; z-index: 3; border-radius: 50%;
	box-shadow: none; -webkit-appearance: none; appearance: none;
}
.vn-close:hover { background: rgba(0,0,0,.06); color: #222; box-shadow: none; }

/* Theme guard. A single-class rule loses to a theme selector like
   ".ast-container button", so restate the contested properties at a
   specificity a theme is unlikely to reach. */
.vn-root .vn-button { text-transform: none; }
.vn-root .vn-close {
	width: 30px; height: 30px; min-width: 0; min-height: 0;
	padding: 0; margin: 0; box-shadow: none; border-radius: 50%;
}
.vn-layout-background .vn-close, .vn-type-fullscreen .vn-close { color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,.5); }

.vn-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.vn-success { text-align: center; padding: 20px 6px; }
.vn-success .vn-check { font-size: 42px; color: var(--vn-accent); line-height: 1; margin-bottom: 8px; }

/* ---- optional click-to-open launcher ---- */
.vn-launcher {
	position: fixed; z-index: 2147482999; bottom: 4px;
	border: 0; border-radius: 0; padding: 14px 16px;
	background: var(--vn-accent); color: var(--vn-btntext);
	font: 800 12px/1 -apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
	letter-spacing: .01em; text-transform: uppercase; cursor: pointer;
	box-shadow: 0 5px 18px rgba(0,0,0,.13);
}
.vn-launcher-bottom-left { left: 4px; right: auto; }
.vn-launcher-bottom-right { right: 4px; left: auto; }

/* ---- Groep Wouters inspiratiemagazine preset ---- */
.vn-root.vn-preset-wouters-magazine.vn-type-slidein {
	left: 4px; right: auto; top: auto; bottom: 4px;
	width: min(410px, calc(100vw - 8px)); max-width: 410px;
}
.vn-root.vn-preset-wouters-magazine .vn-card-el {
	width: 100%; height: var(--vn-height, 555px); max-height: calc(100vh - 8px);
	border-radius: 0; background-position: center; background-size: cover;
	box-shadow: 0 12px 35px rgba(0,0,0,.24); isolation: isolate;
}
.vn-root.vn-preset-wouters-magazine .vn-card-el:before {
	content: ""; position: absolute; z-index: -1; inset: 0;
	background: linear-gradient(180deg,rgba(15,20,22,.68) 0,rgba(15,20,22,.34) 25%,rgba(12,12,12,.12) 48%,rgba(12,12,12,.42) 100%);
}
.vn-root.vn-preset-wouters-magazine .vn-content-el {
	display: flex; flex-direction: column; height: 100%;
	padding: 35px 40px 28px; overflow-y: auto; text-align: center;
	background: transparent; color: #fff;
}
.vn-root.vn-preset-wouters-magazine .vn-headline {
	margin: 0 0 7px; color: #fff; font-size: 24px; line-height: 1.12;
	font-weight: 800; text-shadow: 0 1px 4px rgba(0,0,0,.25);
}
.vn-root.vn-preset-wouters-magazine .vn-body {
	max-width: 260px; margin: 0 auto; color: #fff; font-size: 17px;
	line-height: 1.2; font-weight: 800; letter-spacing: .035em;
	text-shadow: 0 1px 4px rgba(0,0,0,.25);
}
.vn-root.vn-preset-wouters-magazine .vn-body span { display:inline-block; margin-top:8px; font-size:13px; font-weight:500; letter-spacing:0; }
.vn-root.vn-preset-wouters-magazine .vn-feature-image {
	width: 350px; height: 250px; margin: 4px auto -12px; object-fit: contain;
	transform: scale(1.18); transform-origin: center center;
	filter: drop-shadow(0 10px 8px rgba(0,0,0,.2));
}
.vn-root.vn-preset-wouters-magazine .vn-form { margin-top: auto; }
.vn-root.vn-preset-wouters-magazine .vn-field { margin: 0 0 8px; }
.vn-root.vn-preset-wouters-magazine .vn-input {
	height: 31px; padding: 6px 9px; border: 1px solid #ddd; border-radius: 0;
	background: rgba(255,255,255,.96); color: #333; font-size: 12px; line-height: 1.2;
}
.vn-root.vn-preset-wouters-magazine textarea.vn-input { min-height: 60px; height: auto; }
.vn-root.vn-preset-wouters-magazine .vn-button {
	height: 35px; padding: 8px 12px; border-radius: 0; font-size: 14px; line-height: 1;
}
.vn-root.vn-preset-wouters-magazine .vn-close {
	top: 8px; right: 9px; color: #263238; text-shadow: none; font-size: 29px; font-weight: 300;
}
.vn-root.vn-preset-wouters-magazine .vn-error { margin-top: 1px; padding: 2px 4px; background: rgba(255,255,255,.92); }
.vn-launcher-preset-wouters-magazine { background: var(--vn-accent); }

/* ---- optional second-step form after the first conversion ---- */
.vn-root.vn-preset-wouters-magazine.vn-followup-active.vn-type-slidein {
	width: min(960px, calc(100vw - 16px)); max-width: 960px;
}
.vn-root.vn-preset-wouters-magazine.vn-followup-active .vn-card-el {
	width: 100%; max-width: 960px; height: 700px; max-height: calc(100vh - 16px);
}
.vn-root.vn-preset-wouters-magazine.vn-followup-active .vn-followup-media {
	flex: 0 0 45%; min-width: 0; background-position: center center;
}
.vn-root.vn-preset-wouters-magazine.vn-followup-active .vn-followup-content {
	flex: 1 1 55%; min-width: 0; padding: 34px 40px 36px; overflow: hidden;
}
.vn-root.vn-preset-wouters-magazine.vn-followup-active .vn-followup-headline {
	max-width: none; padding-right: 28px; margin-bottom: 18px; font-size: 28px; line-height: 1.14;
}
.vn-root.vn-preset-wouters-magazine.vn-followup-active .vn-followup-body {
	margin-bottom: 22px; font-size: 15px; line-height: 1.48;
}
.vn-root.vn-preset-wouters-magazine.vn-followup-active .vn-followup-body p { margin-bottom: 10px; }
.vn-root.vn-preset-wouters-magazine.vn-followup-active .vn-followup-form .vn-field { margin-bottom: 10px; }
.vn-root.vn-preset-wouters-magazine.vn-followup-active .vn-followup-form,
.vn-root.vn-preset-wouters-magazine.vn-followup-active .vn-followup-form .vn-field,
.vn-root.vn-preset-wouters-magazine.vn-followup-active .vn-followup-form .vn-input,
.vn-root.vn-preset-wouters-magazine.vn-followup-active .vn-followup-form .vn-button {
	display: block; width: 100%; max-width: none;
}
.vn-root.vn-preset-wouters-magazine.vn-followup-active .vn-followup-form .vn-followup-label {
	font-size: 14px; line-height: 1.35; white-space: normal;
}
.vn-root.vn-preset-wouters-magazine.vn-followup-active .vn-followup-form .vn-input {
	height: 42px; padding: 9px 12px; font-size: 14px;
}
.vn-root.vn-preset-wouters-magazine.vn-followup-active .vn-followup-form textarea.vn-input {
	height: 88px; min-height: 88px;
}
.vn-root.vn-preset-wouters-magazine.vn-followup-active .vn-followup-form .vn-button {
	height: 46px; font-size: 16px;
}
.vn-root.vn-followup-active .vn-card-el {
	display: flex; flex-direction: row; width: 100%; height: 740px; max-height: calc(100vh - 8px);
	background: #fff; color: #222; border-radius: 0;
}
.vn-followup-media { flex: 0 0 42%; min-width: 0; background-size: cover; background-position: 50% center; }
.vn-followup-content { flex: 1 1 58%; min-width: 0; padding: 30px 40px 32px; overflow: hidden; color: #222; background: #fff; }
.vn-followup-headline { max-width: none; padding-right: 24px; margin: 0 0 14px; font-size: 30px; line-height: 1.1; font-weight: 800; color: #222; }
.vn-followup-body { margin: 0 0 18px; font-size: 14px; line-height: 1.34; color: #111; }
.vn-followup-body p { margin: 0 0 8px; }
.vn-followup-body p:last-child { margin-bottom: 0; }
.vn-followup-form .vn-field { margin-bottom: 8px; }
.vn-followup-form .vn-followup-label { margin: 0 0 5px; font-size: 14px; color: #111; white-space: nowrap; }
.vn-followup-form .vn-input { height: 38px; padding: 8px 11px; border: 1px solid #cfd3d7; border-radius: 0; font-size: 13px; }
.vn-followup-form textarea.vn-input { height: 82px; min-height: 82px; resize: vertical; }
.vn-followup-form .vn-button { height: 44px; padding: 10px 14px; border-radius: 2px; font-size: 15px; text-transform: uppercase; }
.vn-root.vn-followup-active .vn-close { top: 9px; right: 10px; color: #222; text-shadow: none; font-size: 29px; }

/* ---- Dinac Smart Repair: three vertically transitioning screens ---- */
.vn-root.vn-preset-dinac-smart-repair {
	z-index: 999999;
	--iti-path-flags-1x: url("../vendor/intl-tel-input/flags.webp");
	--iti-path-flags-2x: url("../vendor/intl-tel-input/flags@2x.webp");
	--iti-path-globe-1x: url("../vendor/intl-tel-input/globe.webp");
	--iti-path-globe-2x: url("../vendor/intl-tel-input/globe@2x.webp");
}
.vn-root.vn-preset-dinac-smart-repair.vn-has-overlay {
	align-items: flex-end; justify-content: flex-start; padding: 4px;
	background: transparent; pointer-events: none;
}
.vn-root.vn-preset-dinac-smart-repair.vn-has-overlay .vn-card-el {
	pointer-events: auto;
}
.vn-root.vn-preset-dinac-smart-repair .vn-card-el {
	max-width: 780px; min-height: 398px; border-radius: 0; overflow: visible; animation: vn-dinac-rise .42s cubic-bezier(.22,.75,.28,1);
	transition: transform .33s cubic-bezier(.4,0,.2,1), opacity .25s ease, max-width .25s ease, min-height .25s ease;
}
.vn-root.vn-preset-dinac-smart-repair .vn-card-el.vn-stage-out {
	animation: none;
	transform: translateY(110vh); opacity: 0;
}
.vn-root.vn-preset-dinac-smart-repair .vn-card-el.vn-stage-start {
	transition: none !important; transform: translateY(110vh); opacity: 0;
}
.vn-root.vn-preset-dinac-smart-repair .vn-card-el.vn-stage-in {
	animation: vn-dinac-rise .42s cubic-bezier(.22,.75,.28,1) !important;
}
.vn-root.vn-preset-dinac-smart-repair .vn-media-el {
	position: relative; flex: 0 0 42%; min-height: 398px;
	background-position: 58% center;
}
.vn-root.vn-preset-dinac-smart-repair .vn-media-el::after {
	content: "STUKKEN\A GOEDKOPER"; white-space: pre; position: absolute; top: 11px; right: 20px;
	width: 108px; height: 108px; display: flex; align-items: center; justify-content: center;
	border-radius: 50%; background: #ffdd4f; color: #111; font-size: 15px; line-height: 1.25;
	font-weight: 800; font-style: italic; text-align: center; transform: rotate(7deg);
}
.vn-root.vn-preset-dinac-smart-repair .vn-content-el { padding: 29px 24px 25px 30px; overflow: visible; }
.vn-root.vn-preset-dinac-smart-repair .vn-body { margin-bottom: 14px; font-size: 16px; line-height: 1.35; }
.vn-root.vn-preset-dinac-smart-repair .vn-body p { margin: 0 0 11px; }
.vn-root.vn-preset-dinac-smart-repair .vn-body p:first-child { font-size: 24px; line-height: 1.28; }
.vn-root.vn-preset-dinac-smart-repair .vn-subheading { margin-bottom: 17px; font-size: 18px; }
.vn-root.vn-preset-dinac-smart-repair .vn-form { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.vn-root.vn-preset-dinac-smart-repair .vn-form > .vn-field { margin: 0; }
.vn-root.vn-preset-dinac-smart-repair .vn-form > .vn-field:nth-child(n+3),
.vn-root.vn-preset-dinac-smart-repair .vn-form > .vn-button,
.vn-root.vn-preset-dinac-smart-repair .vn-form > .vn-form-error,
.vn-root.vn-preset-dinac-smart-repair .vn-form > .vn-smallprint { grid-column: 1 / -1; }
.vn-root.vn-preset-dinac-smart-repair .vn-input { height: 42px; padding: 9px 11px; border-radius: 0; border-color: #ccd3dc; font-size: 16px; }
.vn-root.vn-preset-dinac-smart-repair .iti { width: 100%; }
.vn-root.vn-preset-dinac-smart-repair .iti__country-container { z-index: 8; }
.iti--container {
	z-index: 1000000;
	--iti-path-flags-1x: url("../vendor/intl-tel-input/flags.webp");
	--iti-path-flags-2x: url("../vendor/intl-tel-input/flags@2x.webp");
	--iti-path-globe-1x: url("../vendor/intl-tel-input/globe.webp");
	--iti-path-globe-2x: url("../vendor/intl-tel-input/globe@2x.webp");
}
.vn-root.vn-preset-dinac-smart-repair .iti__flag,
.vn-root.vn-preset-dinac-smart-repair .iti__globe,
.iti--container .iti__flag,
.iti--container .iti__globe { display: none; width: 0; margin: 0; box-shadow: none; }
.vn-root.vn-preset-dinac-smart-repair .iti__dropdown-content { min-width: 370px; max-width: min(520px, calc(100vw - 48px)); }
.vn-root.vn-preset-dinac-smart-repair .iti__country-list { max-height: min(440px, calc(100vh - 100px)); }
.vn-root.vn-preset-dinac-smart-repair .vn-button { height: 44px; padding: 8px 16px; border-radius: 2px; font-size: 19px; }
.vn-root.vn-preset-dinac-smart-repair .vn-close { top: 7px; right: 7px; color: #202832; font-size: 31px; }

.vn-root.vn-preset-dinac-smart-repair.vn-followup-active .vn-card-el {
	width: 100%; max-width: 620px; min-height: 300px; height: auto; flex-direction: column; animation: none;
}
.vn-root.vn-preset-dinac-smart-repair .vn-followup-content { padding: 25px 26px 29px; overflow: visible; }
.vn-root.vn-preset-dinac-smart-repair .vn-followup-headline { margin: 0 36px 12px 0; padding: 0; font-size: 22px; line-height: 1.2; }
.vn-root.vn-preset-dinac-smart-repair .vn-followup-form { display: block; }
.vn-root.vn-preset-dinac-smart-repair .vn-followup-form .vn-field { margin: 0 0 10px; }
.vn-root.vn-preset-dinac-smart-repair .vn-followup-form .vn-input { height: 41px; padding: 9px 10px; font-size: 16px; }
.vn-root.vn-preset-dinac-smart-repair .vn-followup-form textarea.vn-input { height: 100px; min-height: 100px; }
.vn-root.vn-preset-dinac-smart-repair .vn-followup-form .vn-button { height: 44px; font-size: 19px; text-transform: none; }
.vn-root.vn-preset-dinac-smart-repair.vn-success-active .vn-card-el {
	max-width: 620px; min-height: 176px; height: auto; flex-direction: column;
	border-radius: 10px; overflow: hidden;
}
.vn-root.vn-preset-dinac-smart-repair.vn-success-active .vn-followup-content,
.vn-root.vn-preset-dinac-smart-repair.vn-success-active .vn-content-el {
	width: 100%; padding: 32px 58px 30px; overflow: visible;
}
.vn-root.vn-preset-dinac-smart-repair .vn-success-dinac { padding: 0 24px; }
.vn-root.vn-preset-dinac-smart-repair .vn-success-title { max-width: 510px; margin: 0 auto 20px; font-size: 24px; font-weight: 800; line-height: 1.28; }
.vn-root.vn-preset-dinac-smart-repair .vn-success-dinac p { margin: 0; font-size: 16px; }
.vn-launcher-preset-dinac-smart-repair {
	min-width: 258px; min-height: 43px; padding: 13px 24px; border-radius: 2px;
	background: #df123e; font-size: 15px; line-height: 1.1; text-align: left; text-transform: none;
}

/* ---- Vlotweg gratis waardebepaling preset ---- */
.vn-root.vn-preset-vlotweg-waardebepaling .vn-card-el {
	box-shadow: 0 14px 44px rgba(11,40,36,.22);
	transition: transform .33s cubic-bezier(.4,0,.2,1), opacity .25s ease, min-height .25s ease;
}
.vn-root.vn-preset-vlotweg-waardebepaling .vn-card-el.vn-stage-out {
	animation: none;
	transform: translateY(130%); opacity: 0;
}
.vn-root.vn-preset-vlotweg-waardebepaling .vn-card-el.vn-stage-start {
	transition: none !important; transform: translateY(130%); opacity: 0;
}
.vn-root.vn-preset-vlotweg-waardebepaling .vn-card-el.vn-stage-in {
	animation: vn-vlotweg-rise .42s cubic-bezier(.22,.75,.28,1) !important;
}
/* "contain" keeps the whole panel visible whatever height the form ends up at —
   "cover" would crop the wordmark. The fill colour matches the art, so the
   letterboxing it leaves above and below reads as part of the panel. */
.vn-root.vn-preset-vlotweg-waardebepaling .vn-media-el {
	flex: 0 0 40%; min-height: 430px;
	background-color: #0e4a47;
	background-size: contain; background-repeat: no-repeat; background-position: center;
}
/* The green eyebrow sits above the headline; the renderer emits it after the body. */
.vn-root.vn-preset-vlotweg-waardebepaling .vn-content-el {
	display: flex; flex-direction: column; justify-content: center; padding: 34px 38px;
}
.vn-root.vn-preset-vlotweg-waardebepaling .vn-subheading {
	order: 1; margin: 0 0 6px; color: #52b86a; font-size: 15px; font-weight: 700;
}
.vn-root.vn-preset-vlotweg-waardebepaling .vn-headline {
	order: 2; margin: 0 34px 20px 0; color: #333333; font-size: 30px; line-height: 1.16; font-weight: 800;
}
.vn-root.vn-preset-vlotweg-waardebepaling .vn-body { order: 3; margin: 0 0 14px; color: #5b6f6b; font-size: 14px; line-height: 1.55; }
.vn-root.vn-preset-vlotweg-waardebepaling .vn-form { order: 4; }
.vn-root.vn-preset-vlotweg-waardebepaling .vn-field { margin: 0 0 11px; }
.vn-root.vn-preset-vlotweg-waardebepaling .vn-input {
	height: 52px; padding: 14px 18px; border: 1px solid #e6e6df; border-radius: 8px;
	background: #ffffff; color: #333333; font-size: 15px;
}
.vn-root.vn-preset-vlotweg-waardebepaling .vn-input::placeholder { color: #8b8b84; }
.vn-root.vn-preset-vlotweg-waardebepaling .vn-input:focus {
	border-color: #52b86a; box-shadow: 0 0 0 3px rgba(82,184,106,.18);
}
.vn-root.vn-preset-vlotweg-waardebepaling .vn-button {
	height: 56px; margin-top: 5px; border-radius: 30px; font-size: 16px; font-weight: 600; letter-spacing: .01em;
}
.vn-root.vn-preset-vlotweg-waardebepaling .vn-close { top: 10px; right: 12px; color: #333333; font-size: 28px; font-weight: 300; }

.vn-root.vn-preset-vlotweg-waardebepaling.vn-success-active { max-width: 420px; }
.vn-root.vn-preset-vlotweg-waardebepaling.vn-success-active .vn-media-el { display: none; }
.vn-root.vn-preset-vlotweg-waardebepaling.vn-success-active .vn-card-el { min-height: 168px; background: #ffffff; }
.vn-root.vn-preset-vlotweg-waardebepaling.vn-success-active .vn-content-el {
	align-items: center; justify-content: center; padding: 34px 28px;
}
.vn-root.vn-preset-vlotweg-waardebepaling .vn-success-vlotweg { padding: 0; text-align: center; }
.vn-root.vn-preset-vlotweg-waardebepaling .vn-success-title {
	margin: 0 0 10px; color: #0e4a47; font-size: 26px; font-weight: 800; line-height: 1.2;
}
.vn-root.vn-preset-vlotweg-waardebepaling .vn-success-vlotweg p { margin: 0; color: #2f7d5d; font-size: 14px; line-height: 1.55; }

.vn-launcher-preset-vlotweg-waardebepaling {
	bottom: 0; padding: 16px 30px; border-radius: 26px 26px 0 0;
	background: #123b34; color: #ffffff;
	font-size: 15px; font-weight: 700; line-height: 1.1; text-transform: none; letter-spacing: 0;
	box-shadow: 0 -4px 22px rgba(11,40,36,.20);
}
.vn-launcher-preset-vlotweg-waardebepaling.vn-launcher-bottom-right { right: 0; left: auto; }
.vn-launcher-preset-vlotweg-waardebepaling.vn-launcher-bottom-left { left: 0; right: auto; }
.vn-launcher-preset-vlotweg-waardebepaling:hover { background: #1b5348; }

/* ---- where the card sits inside an overlay (modal / fullscreen) ---- */
.vn-root.vn-has-overlay.vn-pos-top          { align-items: flex-start; }
.vn-root.vn-has-overlay.vn-pos-bottom       { align-items: flex-end; }
.vn-root.vn-has-overlay.vn-pos-top-left     { align-items: flex-start; justify-content: flex-start; }
.vn-root.vn-has-overlay.vn-pos-top-right    { align-items: flex-start; justify-content: flex-end; }
.vn-root.vn-has-overlay.vn-pos-bottom-left  { align-items: flex-end; justify-content: flex-start; }
.vn-root.vn-has-overlay.vn-pos-bottom-right { align-items: flex-end; justify-content: flex-end; }
.vn-root.vn-has-overlay.vn-pos-center-left  { justify-content: flex-start; }
.vn-root.vn-has-overlay.vn-pos-center-right { justify-content: flex-end; }

/* ---- slide-in ---- */
.vn-root.vn-type-slidein { max-width: var(--vn-width, 380px); width: calc(100% - 32px); }
.vn-root.vn-type-slidein.vn-pos-bottom-right { right: 20px; bottom: 20px; left: auto; top: auto; }
.vn-root.vn-type-slidein.vn-pos-bottom-left  { left: 20px; bottom: 20px; right: auto; top: auto; }
.vn-root.vn-type-slidein.vn-pos-top-right    { right: 20px; top: 20px; left: auto; bottom: auto; }
.vn-root.vn-type-slidein.vn-pos-top-left     { left: 20px; top: 20px; right: auto; bottom: auto; }
.vn-root.vn-type-slidein.vn-pos-center-right { right: 20px; top: 50%; left: auto; transform: translateY(-50%); }
.vn-root.vn-type-slidein.vn-pos-center-left  { left: 20px; top: 50%; right: auto; transform: translateY(-50%); }
.vn-root.vn-type-slidein.vn-pos-center       { left: 50%; top: 50%; transform: translate(-50%, -50%); }
.vn-root.vn-type-slidein.vn-pos-top          { left: 50%; top: 20px; transform: translateX(-50%); }
.vn-root.vn-type-slidein.vn-pos-bottom       { left: 50%; bottom: 20px; transform: translateX(-50%); }
.vn-root.vn-type-slidein .vn-card-el { animation: vn-slide .35s ease; max-height: var(--vn-height, calc(100vh - 40px)); }
.vn-root.vn-type-slidein .vn-media-el { min-height: 140px; }

/* ---- bar ---- */
.vn-root.vn-type-bar { left: 0; right: 0; width: 100%; }
.vn-root.vn-type-bar.vn-pos-top { top: 0; bottom: auto; }
.vn-root.vn-type-bar.vn-pos-top-left,
.vn-root.vn-type-bar.vn-pos-top-right { top: 0; bottom: auto; }
.vn-root.vn-type-bar.vn-pos-bottom,
.vn-root.vn-type-bar.vn-pos-bottom-left,
.vn-root.vn-type-bar.vn-pos-bottom-right,
.vn-root.vn-type-bar.vn-pos-center { bottom: 0; top: auto; }
.vn-root.vn-type-bar .vn-card-el {
	max-width: 100%; border-radius: 0; flex-direction: row; align-items: center;
	gap: 16px; padding: 10px 46px 10px 20px; box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}
.vn-root.vn-type-bar .vn-media-el { display: none; }
.vn-root.vn-type-bar .vn-content-el { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding: 4px 0; overflow: visible; }
.vn-root.vn-type-bar .vn-headline { font-size: 16px; margin: 0; }
.vn-root.vn-type-bar .vn-body, .vn-root.vn-type-bar .vn-subheading, .vn-root.vn-type-bar .vn-smallprint { display: none; }
.vn-root.vn-type-bar form { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.vn-root.vn-type-bar .vn-field { margin: 0; }
.vn-root.vn-type-bar .vn-field label { display: none; }
.vn-root.vn-type-bar .vn-button { width: auto; padding: 10px 18px; }

/* ---- responsive: stack on small screens ---- */
@media (max-width: 640px) {
	.vn-layout-image-left .vn-card-el,
	.vn-layout-image-right .vn-card-el { flex-direction: column; }
	.vn-media-el { flex-basis: auto; width: 100%; min-height: 170px; }
	.vn-content-el { padding: 22px 20px; }
	.vn-headline { font-size: 20px; }
	.vn-root.vn-type-slidein { left: 8px; right: 8px; width: auto; }
	.vn-root.vn-type-bar .vn-card-el { flex-direction: column; align-items: stretch; padding: 12px 40px 12px 16px; }
	.vn-root.vn-type-bar form { flex-direction: column; align-items: stretch; }
	.vn-root.vn-type-bar .vn-button { width: 100%; }
	/* The Vlotweg panel is a wide graphic; cropped to a phone-width strip it reads as noise. */
	.vn-root.vn-preset-vlotweg-waardebepaling.vn-type-slidein { left: 8px; right: 8px; bottom: 8px; width: auto; max-width: none; }
	.vn-root.vn-preset-vlotweg-waardebepaling .vn-media-el { display: none; }
	.vn-root.vn-preset-vlotweg-waardebepaling .vn-content-el { padding: 26px 22px; }
	.vn-root.vn-preset-vlotweg-waardebepaling .vn-headline { font-size: 24px; margin-right: 26px; }
	.vn-root.vn-preset-vlotweg-waardebepaling .vn-input { height: 46px; }
	.vn-root.vn-preset-vlotweg-waardebepaling .vn-button { height: 50px; font-size: 15px; }
	.vn-root.vn-preset-vlotweg-waardebepaling.vn-success-active { max-width: none; }
	.vn-launcher-preset-vlotweg-waardebepaling { padding: 13px 20px; font-size: 14px; }

	.vn-root.vn-preset-wouters-magazine.vn-type-slidein { left: 8px; right: 8px; bottom: 8px; width: auto; max-width: none; }
	.vn-root.vn-preset-wouters-magazine .vn-content-el { padding: 32px 28px 24px; }
	.vn-root.vn-preset-wouters-magazine .vn-feature-image { width: 285px; height: 220px; transform: scale(1.08); }
	.vn-root.vn-preset-wouters-magazine .vn-headline { font-size: 22px; }
	.vn-root.vn-preset-wouters-magazine .vn-body { font-size: 15px; }
	.vn-root.vn-preset-wouters-magazine.vn-followup-active.vn-type-slidein { left: 8px; right: 8px; bottom: 8px; width: auto; max-width: none; }
	.vn-root.vn-preset-wouters-magazine.vn-followup-active .vn-card-el {
		max-width: none; height: auto; max-height: calc(100vh - 16px); flex-direction: column;
	}
	.vn-root.vn-preset-wouters-magazine.vn-followup-active .vn-followup-media {
		flex: 0 0 180px; min-height: 180px; background-position: center 35%;
	}
	.vn-root.vn-preset-wouters-magazine.vn-followup-active .vn-followup-content {
		padding: 22px 22px 24px; overflow-y: auto; overflow-x: hidden;
	}
	.vn-root.vn-preset-wouters-magazine.vn-followup-active .vn-followup-headline {
		padding-right: 24px; margin-bottom: 14px; font-size: 23px;
	}
	.vn-root.vn-preset-wouters-magazine.vn-followup-active .vn-followup-body {
		margin-bottom: 17px; font-size: 14px;
	}
	.vn-root.vn-followup-active .vn-card-el { flex-direction: column; height: auto; max-height: calc(100vh - 16px); }
	.vn-followup-media { flex: 0 0 165px; min-height: 165px; background-position: center 35%; }
	.vn-followup-content { padding: 22px 22px 24px; overflow-y: auto; overflow-x: hidden; }
	.vn-followup-headline { max-width: none; padding-right: 22px; font-size: 23px; }
	.vn-followup-body { margin-bottom: 17px; }
	.vn-followup-form .vn-followup-label { white-space: normal; }
	.vn-root.vn-preset-dinac-smart-repair .vn-card-el { min-height: 0; max-height: calc(100vh - 16px); overflow-y: auto; }
	.vn-root.vn-preset-dinac-smart-repair .vn-media-el { min-height: 165px; flex-basis: 165px; background-position: center 48%; }
	.vn-root.vn-preset-dinac-smart-repair .vn-media-el::after { width: 82px; height: 82px; top: 9px; right: 14px; font-size: 12px; }
	.vn-root.vn-preset-dinac-smart-repair .vn-content-el { padding: 20px 18px; }
	.vn-root.vn-preset-dinac-smart-repair .vn-body p:first-child { font-size: 20px; }
	.vn-root.vn-preset-dinac-smart-repair .vn-form { grid-template-columns: 1fr; }
	.vn-root.vn-preset-dinac-smart-repair .vn-form > .vn-field,
	.vn-root.vn-preset-dinac-smart-repair .vn-form > .vn-button,
	.vn-root.vn-preset-dinac-smart-repair .vn-form > .vn-form-error { grid-column: 1; }
	.vn-root.vn-preset-dinac-smart-repair .iti__dropdown-content { min-width: min(360px, calc(100vw - 52px)); }
	.vn-root.vn-preset-dinac-smart-repair.vn-followup-active .vn-card-el,
	.vn-root.vn-preset-dinac-smart-repair.vn-success-active .vn-card-el { min-height: 0; }
}

/* preview stage forces the fixed elements to sit inside the panel */
.vn-preview-stage .vn-root { position: absolute; }
