/*
 * Ecomotic Core
 * Opmaak voor header, footer, widgets en formulieren.
 */

:root {
	--eco-green: #00a03c;
	--eco-green-dark: #007c2e;
	--eco-orange: #f0a500;
	--eco-orange-dark: #d18f00;
	--eco-grey: #58595b;
	--eco-grey-light: #e6e7e8;
	--eco-dark: #2b2b2b;
	--eco-text: #333;
	--eco-radius: 0;
	--eco-container: 1200px;
	--eco-tel-icoon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.eco-container {
	width: 100%;
	max-width: var(--eco-container);
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

/* ---------------------------------------------------------------
   Knoppen
   --------------------------------------------------------------- */

.eco-btn,
.eco-btn:visited {
	display: inline-block;
	padding: 13px 28px;
	background: var(--eco-green);
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: .5px;
	text-transform: uppercase;
	text-decoration: none;
	border: 0;
	cursor: pointer;
	border-radius: var(--eco-radius);
	transition: background .2s ease;
}

.eco-btn:hover,
.eco-btn:focus {
	background: var(--eco-green-dark);
	color: #fff;
}

.eco-btn--accent {
	background: var(--eco-orange);
}

.eco-btn--accent:hover,
.eco-btn--accent:focus {
	background: var(--eco-orange-dark);
}

.eco-btn--small {
	padding: 8px 16px;
	font-size: 13px;
}

/* ---------------------------------------------------------------
   Header
   --------------------------------------------------------------- */

.eco-header {
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, .08);
	position: sticky;
	top: 0;
	z-index: 500;
}

.admin-bar .eco-header {
	top: 32px;
}

.eco-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 72px;
}

.eco-header__merk img {
	display: block;
	max-height: 42px;
	width: auto;
}

.eco-header__sitename {
	font-size: 22px;
	font-weight: 700;
	color: var(--eco-green);
	text-decoration: none;
}

.eco-header__rechts {
	display: flex;
	align-items: center;
	gap: 26px;
}

.eco-header__acties {
	display: flex;
	align-items: center;
	gap: 16px;
}

.eco-header__tel {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border: 1px solid #d4dad6;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	color: var(--eco-text);
	text-decoration: none;
	white-space: nowrap;
	transition: border-color .18s ease, color .18s ease, background .18s ease;
}

.eco-header__tel::before {
	content: "";
	width: 15px;
	height: 15px;
	flex: 0 0 15px;
	background: currentColor;
	-webkit-mask: var(--eco-tel-icoon) center / contain no-repeat;
	mask: var(--eco-tel-icoon) center / contain no-repeat;
	color: var(--eco-green);
}

.eco-header__tel:hover {
	border-color: var(--eco-green);
	color: var(--eco-green);
	background: #f2f7f4;
}

.eco-btn--pil {
	border-radius: 999px;
	padding: 11px 22px;
	font-size: 14px;
	text-transform: none;
	letter-spacing: 0;
	white-space: nowrap;
}

/* ---------------------------------------------------------------
   Navigatie
   --------------------------------------------------------------- */

.eco-nav__list {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.eco-nav__list > li {
	position: relative;
}

.eco-nav__list a {
	display: block;
	padding: 10px 14px;
	color: var(--eco-text);
	font-weight: 400;
	font-size: 15px;
	text-decoration: none;
	border-radius: 6px;
	transition: color .18s ease, background .18s ease;
}

.eco-nav__list a:hover,
.eco-nav__list .current-menu-item > a,
.eco-nav__list .current-menu-ancestor > a {
	color: var(--eco-green);
	background: #f2f7f4;
}

.eco-nav__list .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-left: 8px;
	vertical-align: 2px;
	border-right: 1.5px solid #9aa19d;
	border-bottom: 1.5px solid #9aa19d;
	transform: rotate(45deg);
}

.eco-nav__list ul {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	z-index: 200;
	min-width: 250px;
	margin: 0;
	padding: 8px;
	list-style: none;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 10px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, .1);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.eco-nav__list li:hover > ul,
.eco-nav__list li:focus-within > ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.eco-nav__list ul a {
	padding: 10px 14px;
	font-size: 14px;
}

.eco-nav__list ul ul {
	top: -8px;
	left: 100%;
}

.eco-header__toggle {
	display: none;
	position: relative;
	width: 44px;
	height: 44px;
	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 0;
}

.eco-header__toggle-bar,
.eco-header__toggle-bar::before,
.eco-header__toggle-bar::after {
	position: absolute;
	left: 11px;
	width: 22px;
	height: 2px;
	background: var(--eco-text);
	border-radius: 2px;
	transition: transform .2s ease, opacity .2s ease;
}

.eco-header__toggle-bar {
	top: 21px;
}

.eco-header__toggle-bar::before,
.eco-header__toggle-bar::after {
	content: "";
	left: 0;
}

.eco-header__toggle-bar::before {
	top: -7px;
}

.eco-header__toggle-bar::after {
	top: 7px;
}

.eco-header__toggle[aria-expanded="true"] .eco-header__toggle-bar {
	background: transparent;
}

.eco-header__toggle[aria-expanded="true"] .eco-header__toggle-bar::before {
	transform: translateY(7px) rotate(45deg);
}

.eco-header__toggle[aria-expanded="true"] .eco-header__toggle-bar::after {
	transform: translateY(-7px) rotate(-45deg);
}

/* ---------------------------------------------------------------
   Sociale iconen
   --------------------------------------------------------------- */

.eco-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-right: 8px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 50%;
	transition: border-color .2s ease, background .2s ease;
}

.eco-social:hover {
	border-color: var(--eco-green);
	background: rgba(0, 160, 60, .15);
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

/* ---------------------------------------------------------------
   Footer
   --------------------------------------------------------------- */

.eco-footer {
	background: #12211a;
	color: #93a19a;
	padding: 66px 0 0;
	font-size: 15px;
}

.eco-footer__kolommen {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
	gap: 44px;
}

.eco-footer__logo {
	max-width: 170px;
	height: auto;
	margin-bottom: 16px;
	display: block;
}

.eco-footer__sitename {
	display: block;
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 16px;
}

.eco-footer__tekst {
	font-size: 14px;
	line-height: 1.75;
	margin: 0 0 20px;
	max-width: 280px;
}

.eco-footer__kop {
	font-size: 13px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: #5e7268;
	font-weight: 500;
	margin: 0 0 18px;
}

.eco-footer__menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.eco-footer__menu li {
	margin-bottom: 12px;
}

.eco-footer__menu a {
	color: #d3ddd8;
	font-size: 15px;
	text-decoration: none;
	transition: color .18s ease;
}

.eco-footer__menu a:hover {
	color: #3ec46f;
}

.eco-footer__adres {
	font-style: normal;
	display: flex;
	flex-direction: column;
	gap: 8px;
	color: #d3ddd8;
	font-size: 15px;
}

.eco-footer__nadruk {
	color: #3ec46f;
	text-decoration: none;
}

.eco-footer__nadruk:hover {
	text-decoration: underline;
}

.eco-footer__storing {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-top: 10px;
	padding-top: 12px;
	border-top: 1px solid #23372c;
}

.eco-footer__storing-label {
	font-size: 12px;
	letter-spacing: .6px;
	text-transform: uppercase;
	color: #6d7f76;
}

.eco-footer__klein {
	font-size: 13px;
	color: #6d7f76;
	margin-top: 4px;
}

.eco-footer__onder {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 52px;
	padding: 20px 0 26px;
	border-top: 1px solid #23372c;
	font-size: 13px;
	color: #6d7f76;
}

.eco-footer__menu-klein {
	display: flex;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.eco-footer__menu-klein a {
	color: #6d7f76;
	text-decoration: none;
	font-size: 13px;
}

.eco-footer__menu-klein a:hover {
	color: #d3ddd8;
}

/* ---------------------------------------------------------------
   Badge
   --------------------------------------------------------------- */

.eco-badge {
	padding: 28px 24px;
	color: #fff;
	background: var(--eco-green);
}

.eco-badge--grijs {
	background: var(--eco-grey);
}

.eco-badge--accent {
	background: var(--eco-orange);
}

.eco-badge__kop {
	display: block;
	font-size: 26px;
	line-height: 1.2;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.eco-badge__tekst {
	display: block;
	font-size: 16px;
	line-height: 1.4;
}

/* ---------------------------------------------------------------
   Kaartgrid
   --------------------------------------------------------------- */

.eco-kaartgrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.eco-kaart {
	display: block;
	text-decoration: none;
	background: #fff;
	overflow: hidden;
}

.eco-kaart__beeld {
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.eco-kaart__beeld img {
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	display: block;
	transition: transform .3s ease;
}

.eco-kaart:hover .eco-kaart__beeld img {
	transform: scale(1.05);
}

.eco-kaart__titel {
	display: block;
	padding: 14px 12px;
	background: var(--eco-green);
	color: #fff;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
}

/* ---------------------------------------------------------------
   Oproepstrook
   --------------------------------------------------------------- */

.eco-cta {
	position: relative;
	background-color: var(--eco-green);
	background-size: cover;
	background-position: center;
	padding: 56px 0;
	overflow: hidden;
}

.eco-cta__overlay {
	position: absolute;
	inset: 0;
	background: transparent;
}

.eco-cta[style*="background-image"] .eco-cta__overlay {
	background: rgba(18, 33, 26, .55);
}

.eco-cta .eco-btn {
	background: #fff;
	color: #00702a;
	border-radius: 999px;
	padding: 13px 26px;
	text-transform: none;
	letter-spacing: 0;
	font-size: 15px;
}

.eco-cta .eco-btn:hover,
.eco-cta .eco-btn:focus {
	background: #eafaf0;
	color: #00702a;
}

.eco-cta__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}

.eco-cta__tekst {
	color: #fff;
}

.eco-cta__regel {
	display: block;
	font-size: 25px;
	font-weight: 600;
	text-transform: none;
	line-height: 1.35;
}

.eco-cta__regel + .eco-cta__regel {
	font-size: 16px;
	font-weight: 400;
	opacity: .88;
	margin-top: 4px;
}

/* ---------------------------------------------------------------
   Formulier
   --------------------------------------------------------------- */

.eco-form {
	max-width: 720px;
}

.eco-form__titel {
	margin: 0 0 20px;
}

.eco-form__rij {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.eco-form__veld {
	display: block;
	margin-bottom: 18px;
}

.eco-form__label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	font-size: 15px;
	color: var(--eco-text);
}

.eco-form input[type="text"],
.eco-form input[type="email"],
.eco-form input[type="tel"],
.eco-form select,
.eco-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #ccc;
	background: #fff;
	font-size: 15px;
	font-family: inherit;
	box-sizing: border-box;
	border-radius: var(--eco-radius);
}

.eco-form input:focus,
.eco-form select:focus,
.eco-form textarea:focus {
	outline: 2px solid var(--eco-green);
	outline-offset: 1px;
	border-color: var(--eco-green);
}

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

.eco-form__acties {
	margin-top: 10px;
}

.eco-form button[type="submit"],
.eco-form .eco-btn {
	background: #00a03c;
	color: #fff;
	border: 0;
	border-radius: 999px;
	padding: 13px 28px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	text-transform: none;
	letter-spacing: 0;
	box-shadow: none;
	cursor: pointer;
}

.eco-form button[type="submit"]:hover,
.eco-form button[type="submit"]:focus {
	background: #007c2e;
	color: #fff;
}

.eco-form__melding {
	margin-top: 16px;
	padding: 0;
	font-size: 15px;
}

.eco-form__melding.is-goed {
	padding: 14px 16px;
	background: #e8f6ed;
	border-left: 4px solid var(--eco-green);
	color: #14532d;
}

.eco-form__melding.is-fout {
	padding: 14px 16px;
	background: #fdecec;
	border-left: 4px solid #c0392b;
	color: #7f1d1d;
}

.eco-form.is-bezig button[type="submit"] {
	opacity: .6;
	pointer-events: none;
}

/* ---------------------------------------------------------------
   Kleinere schermen
   --------------------------------------------------------------- */

@media (max-width: 1024px) {
	.eco-footer__kolommen {
		grid-template-columns: 1fr 1fr;
		gap: 34px;
	}
}

@media (max-width: 900px) {
	.eco-header__toggle {
		display: block;
		margin-left: auto;
	}

	.eco-header__inner {
		flex-wrap: wrap;
		min-height: 64px;
	}

	.eco-header__rechts {
		display: none;
		width: 100%;
		order: 3;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding-bottom: 16px;
	}

	.eco-header__rechts.is-open {
		display: flex;
	}

	.eco-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.eco-nav__list li {
		border-bottom: 1px solid rgba(0, 0, 0, .07);
	}

	.eco-nav__list a {
		padding: 14px 4px;
		border-radius: 0;
	}

	.eco-nav__list ul {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 0;
		min-width: 0;
		padding: 0 0 0 18px;
		display: none;
	}

	.eco-nav__list li.is-open > ul {
		display: block;
	}

	.eco-header__acties {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		margin-top: 16px;
	}

	.eco-btn--pil {
		text-align: center;
	}

	.eco-header__tel {
		text-align: center;
		padding: 8px 0;
	}
}

@media (max-width: 767px) {
	.eco-footer__kolommen {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.eco-footer {
		padding-top: 46px;
	}

	.eco-form__rij {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.eco-badge__kop {
		font-size: 21px;
	}

	.eco-cta__regel {
		font-size: 20px;
	}

	.eco-kaartgrid {
		grid-template-columns: 1fr 1fr;
	}
}

/* ---------------------------------------------------------------
   Hero
   --------------------------------------------------------------- */

.eco-hero {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	background: #f4f6f4;
	align-items: stretch;
}

.eco-hero > * {
	min-height: 0;
}

.eco-hero__tekst {
	padding: 70px 60px;
	max-width: 620px;
	margin-left: auto;
}

.eco-hero__bovenkop {
	display: block;
	font-size: 13px;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--eco-green);
	margin-bottom: 14px;
}

.eco-hero__kop {
	font-size: 44px;
	line-height: 1.2;
	margin: 0 0 18px;
	color: var(--eco-dark);
}

.eco-hero__intro {
	font-size: 17px;
	line-height: 1.7;
	color: var(--eco-grey);
	max-width: 460px;
	margin: 0 0 28px;
}

.eco-hero__knoppen {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.eco-hero__knoppen .eco-btn {
	border-radius: 999px;
	padding: 13px 26px;
	font-size: 15px;
	text-transform: none;
	letter-spacing: 0;
	font-weight: 600;
}

.eco-btn--lijn {
	background: transparent;
	border: 1px solid #c9cdc9;
	color: var(--eco-dark);
	border-radius: 999px;
}

.eco-btn--lijn:hover,
.eco-btn--lijn:focus {
	background: #fff;
	border-color: var(--eco-green);
	color: var(--eco-green);
}

.eco-hero__punten {
	display: flex;
	gap: 28px;
	flex-wrap: wrap;
	list-style: none;
	margin: 34px 0 0;
	padding: 0;
	font-size: 14px;
	color: var(--eco-grey);
}

.eco-hero__punten li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.eco-hero__punten svg,
.eco-hero__punten i {
	color: var(--eco-green);
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.eco-hero__beeld {
	background: #dfe5e0;
	min-height: 420px;
	position: relative;
	align-self: stretch;
}

.eco-hero .eco-hero__beeld img,
.eco-hero__beeld > img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	min-height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	margin: 0;
}

/* ---------------------------------------------------------------
   Dienstkaarten
   --------------------------------------------------------------- */

.eco-diensten {
	padding: 70px 0;
}

.eco-diensten__kop {
	font-size: 30px;
	margin: 0 0 6px;
	color: var(--eco-dark);
}

.eco-diensten__subkop {
	font-size: 16px;
	color: var(--eco-grey);
	margin: 0 0 34px;
}

.eco-diensten__lijst {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 26px;
}

.eco-dienst {
	border: 1px solid rgba(0, 0, 0, .12);
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	transition: border-color .2s ease;
}

.eco-dienst:hover {
	border-color: var(--eco-green);
}

.eco-dienst__beeld {
	aspect-ratio: 16 / 7;
	background: #e4eae5;
	overflow: hidden;
}

.eco-dienst__beeld img {
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	display: block;
}

.eco-dienst__body {
	padding: 24px 26px 28px;
}

.eco-dienst__titel {
	font-size: 21px;
	margin: 0 0 8px;
	color: var(--eco-dark);
}

.eco-dienst__tekst {
	font-size: 15px;
	line-height: 1.7;
	color: var(--eco-grey);
	margin: 0 0 16px;
}

.eco-dienst__link {
	font-size: 15px;
	font-weight: 600;
	color: var(--eco-green);
	text-decoration: none;
	display: inline-flex;
	gap: 8px;
	align-items: center;
}

.eco-dienst__link:hover {
	gap: 12px;
}

/* ---------------------------------------------------------------
   Stappen
   --------------------------------------------------------------- */

.eco-stappen {
	padding: 70px 0;
}

.eco-stappen__kop {
	font-size: 30px;
	margin: 0 0 40px;
	color: var(--eco-dark);
}

.eco-stappen__lijst {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.eco-stap {
	position: relative;
	padding-top: 26px;
}

/* Doorlopende lijn met een stip per stap */

.eco-stap::before {
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	right: -30px;
	height: 1px;
	background: #dfe3df;
}

.eco-stap:last-child::before {
	right: 0;
}

.eco-stap::after {
	content: "";
	position: absolute;
	left: 0;
	top: 1px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--eco-green);
}

.eco-stap__nummer {
	display: block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .6px;
	color: var(--eco-green);
	margin-bottom: 8px;
}

.eco-stap__titel {
	display: block;
	font-size: 18px;
	font-weight: 600;
	color: var(--eco-dark);
	margin-bottom: 7px;
}

.eco-stap__tekst {
	display: block;
	font-size: 15px;
	line-height: 1.65;
	color: var(--eco-grey);
	max-width: 230px;
}

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

	.eco-hero__tekst {
		padding: 46px 24px;
		margin-left: 0;
		max-width: none;
	}

	.eco-hero__kop {
		font-size: 32px;
	}

	.eco-hero__beeld {
		min-height: 260px;
		height: 260px;
	}

	.eco-diensten__lijst,
	.eco-stappen__lijst {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 600px) {
	.eco-diensten__lijst,
	.eco-stappen__lijst {
		grid-template-columns: 1fr;
	}

	.eco-stap::before {
		right: 0;
	}

	.eco-stap__tekst {
		max-width: none;
	}
}

/* ---------------------------------------------------------------
   Keuzehulp
   --------------------------------------------------------------- */

.eco-keuzehulp {
	position: relative;
	background: #dfe3dd right center / cover no-repeat;
	overflow: hidden;
	isolation: isolate;
	min-height: 560px;
	display: flex;
	align-items: center;
}

.eco-keuzehulp__sluier {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(
		90deg,
		#f2f4f1 0%,
		#f2f4f1 40%,
		rgba(242, 244, 241, .94) 50%,
		rgba(242, 244, 241, .55) 62%,
		rgba(242, 244, 241, 0) 76%
	);
}

.eco-keuzehulp__inner {
	position: relative;
	z-index: 1;
	padding-top: 56px;
	padding-bottom: 56px;
	max-width: var(--eco-container);
	width: 100%;
}

.eco-keuzehulp__tekst {
	max-width: 540px;
}

.eco-keuzehulp__bovenkop {
	display: block;
	font-size: 13px;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--eco-green);
	margin-bottom: 12px;
}

.eco-keuzehulp__kop {
	font-size: 40px;
	line-height: 1.18;
	margin: 0 0 12px;
	color: var(--eco-dark);
}

.eco-keuzehulp__intro {
	font-size: 16px;
	line-height: 1.6;
	color: var(--eco-grey);
	margin: 0 0 24px;
}

/* De kaart met de stappen */

.eco-wizard {
	position: relative;
	background: #fff;
	border-radius: 14px;
	padding: 24px 26px 22px;
	box-shadow: 0 16px 44px rgba(20, 40, 28, .13);
	max-width: 520px;
}

.eco-wizard__balk {
	display: flex;
	gap: 7px;
	margin-bottom: 20px;
}

.eco-wizard__balk span {
	flex: 1;
	height: 3px;
	background: #e0e4e0;
	border-radius: 2px;
	transition: background .25s ease;
}

.eco-wizard__balk span.is-actief {
	background: var(--eco-green);
}

.eco-wizard__balk span.is-buiten {
	display: none;
}

.eco-wizard__stap {
	display: none;
}

.eco-wizard__stap.is-actief {
	display: block;
}

.eco-wizard__vraag {
	font-size: 16px;
	color: var(--eco-dark);
	margin: 0 0 14px;
	font-weight: 500;
}

.eco-wizard__opties {
	display: grid;
	gap: 10px;
}

.eco-wizard__opties--drie {
	grid-template-columns: repeat(3, 1fr);
}

.eco-wizard__opties--vier {
	grid-template-columns: repeat(4, 1fr);
}

.eco-wizard button.eco-optie,
.eco-wizard .eco-optie {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 7px;
	padding: 14px 8px;
	background: #fff;
	border: 1px solid #dfe3df;
	border-radius: 9px;
	cursor: pointer;
	font-family: inherit;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.3;
	color: #58595b;
	text-align: center;
	text-transform: none;
	letter-spacing: 0;
	box-shadow: none;
	transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.eco-wizard button.eco-optie:hover,
.eco-wizard button.eco-optie:focus {
	border-color: #b7c3bb;
	background: #fbfcfb;
	color: #58595b;
}

.eco-wizard button.eco-optie.is-gekozen {
	border-color: #00a03c;
	border-width: 1.5px;
	background: #f2f9f5;
	color: #2b2b2b;
}

.eco-wizard .eco-optie__icoon {
	font-size: 20px;
	line-height: 1;
	color: #8a938a;
}

.eco-optie__icoon svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.eco-wizard .eco-optie.is-gekozen .eco-optie__icoon {
	color: #00a03c;
}

/* Contactvelden */

.eco-wizard__velden {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 12px;
}

.eco-wizard__veld {
	grid-column: span 3;
}

.eco-wizard__veld--breed {
	grid-column: span 4;
}

.eco-wizard__veld--kort {
	grid-column: span 2;
}

.eco-wizard__veld {
	display: block;
}

.eco-wizard__veld span {
	display: block;
	font-size: 13px;
	color: var(--eco-grey);
	margin-bottom: 5px;
}

.eco-wizard__veld input {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #dfe3df;
	border-radius: 8px;
	font-size: 14px;
	font-family: inherit;
	box-sizing: border-box;
	background: #fff;
}

.eco-wizard__veld input:focus {
	outline: 2px solid var(--eco-green);
	outline-offset: 1px;
	border-color: var(--eco-green);
}

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

/* Voetregel met knoppen */

.eco-wizard__voet {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 18px;
}

.eco-wizard__terug {
	background: none;
	border: 0;
	padding: 8px 0;
	font-family: inherit;
	font-size: 13px;
	color: var(--eco-grey);
	cursor: pointer;
	text-decoration: underline;
	visibility: hidden;
}

.eco-wizard.is-verder .eco-wizard__terug {
	visibility: visible;
}

.eco-wizard__terug:hover {
	color: var(--eco-green);
}

.eco-wizard__teller {
	font-size: 12px;
	color: #8a938a;
	margin-left: auto;
	margin-right: 4px;
}

.eco-wizard button.eco-wizard__door {
	border: 0;
	cursor: pointer;
	font-family: inherit;
	background: #00a03c;
	color: #fff;
	border-radius: 999px;
	padding: 11px 24px;
	font-size: 14px;
	font-weight: 600;
	text-transform: none;
	letter-spacing: 0;
	box-shadow: none;
}

.eco-wizard button.eco-wizard__door:hover,
.eco-wizard button.eco-wizard__door:focus {
	background: #007c2e;
	color: #fff;
}

.eco-wizard button.eco-wizard__terug {
	background: none;
	border: 0;
	box-shadow: none;
	color: #58595b;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0;
	padding: 8px 0;
	font-size: 13px;
}

.eco-wizard.is-bezig .eco-wizard__door {
	opacity: .6;
	pointer-events: none;
}

/* Bedankscherm */

.eco-wizard__klaar {
	display: none;
	text-align: center;
	padding: 12px 0 6px;
}

.eco-wizard.is-klaar .eco-wizard__klaar {
	display: block;
}

.eco-wizard.is-klaar .eco-wizard__stap,
.eco-wizard.is-klaar .eco-wizard__voet,
.eco-wizard.is-klaar .eco-wizard__balk {
	display: none;
}

.eco-wizard__vink {
	display: block;
	width: 46px;
	height: 46px;
	margin: 0 auto 14px;
	border-radius: 50%;
	background: #f2f9f5;
	position: relative;
}

.eco-wizard__vink::after {
	content: "";
	position: absolute;
	left: 17px;
	top: 13px;
	width: 10px;
	height: 18px;
	border-right: 2.5px solid var(--eco-green);
	border-bottom: 2.5px solid var(--eco-green);
	transform: rotate(45deg);
}

.eco-wizard__klaar p {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: var(--eco-dark);
}

.eco-wizard__melding {
	margin: 12px 0 0;
	font-size: 13px;
	color: #c0392b;
	display: none;
}

.eco-wizard__melding.is-zichtbaar {
	display: block;
}

/* Pluspunten onder de kaart */

.eco-keuzehulp__punten {
	display: flex;
	gap: 26px;
	flex-wrap: wrap;
	list-style: none;
	margin: 20px 0 0;
	padding: 0;
	font-size: 14px;
	color: var(--eco-grey);
}

.eco-keuzehulp__punten li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.eco-keuzehulp__punten li::before {
	content: "";
	width: 7px;
	height: 12px;
	border-right: 2px solid var(--eco-green);
	border-bottom: 2px solid var(--eco-green);
	transform: rotate(45deg);
	margin-bottom: 3px;
}

@media (max-width: 900px) {
	.eco-keuzehulp {
		min-height: 0;
	}

	.eco-keuzehulp__sluier {
		background: linear-gradient(
			180deg,
			rgba(245, 246, 243, .95) 0%,
			rgba(245, 246, 243, .95) 100%
		);
	}

	.eco-keuzehulp__kop {
		font-size: 29px;
	}

	.eco-wizard {
		max-width: none;
	}
}

@media (max-width: 600px) {
	.eco-keuzehulp__inner {
		padding-top: 36px;
		padding-bottom: 36px;
	}

	.eco-wizard {
		padding: 20px 18px 18px;
	}

	.eco-wizard__opties--drie,
	.eco-wizard__opties--vier {
		grid-template-columns: 1fr 1fr;
	}

	.eco-wizard__velden {
		grid-template-columns: 1fr 1fr;
	}

	.eco-wizard__veld,
	.eco-wizard__veld--breed,
	.eco-wizard__veld--kort {
		grid-column: span 2;
	}

	.eco-keuzehulp__kop {
		font-size: 25px;
	}
}

/* ---------------------------------------------------------------
   Voordelen
   --------------------------------------------------------------- */

.eco-voordelen {
	padding: 70px 0;
}

.eco-voordelen__kop {
	font-size: 30px;
	margin: 0 0 8px;
	color: var(--eco-dark);
}

.eco-voordelen__intro {
	font-size: 16px;
	line-height: 1.7;
	color: var(--eco-grey);
	margin: 0 0 34px;
	max-width: 620px;
}

.eco-voordelen__body {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.eco-voordelen--omgekeerd .eco-voordelen__beeld {
	order: 2;
}

.eco-voordelen__beeld {
	border-radius: 12px;
	overflow: hidden;
	background: #eef1ee;
	aspect-ratio: 4 / 3;
}

.eco-voordelen__beeld img {
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	display: block;
}

.eco-voordelen__lijst {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.eco-voordeel {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.eco-voordeel__icoon {
	flex: 0 0 40px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #f2f9f5;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--eco-green);
	font-size: 17px;
}

.eco-voordeel__icoon svg {
	width: 17px;
	height: 17px;
	fill: currentColor;
}

.eco-voordeel__titel {
	display: block;
	font-size: 17px;
	font-weight: 600;
	color: var(--eco-dark);
	margin-bottom: 5px;
}

.eco-voordeel__tekst {
	display: block;
	font-size: 15px;
	line-height: 1.7;
	color: var(--eco-grey);
}

/* ---------------------------------------------------------------
   Merken
   --------------------------------------------------------------- */

.eco-merken {
	padding: 60px 0;
	text-align: center;
}

.eco-merken__kop {
	font-size: 26px;
	margin: 0 0 8px;
	color: var(--eco-dark);
}

.eco-merken__intro {
	font-size: 15px;
	color: var(--eco-grey);
	margin: 0 auto 34px;
	max-width: 620px;
}

.eco-merken__lijst {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 18px;
	align-items: center;
}

.eco-merk {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px 14px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 10px;
	min-height: 84px;
}

.eco-merk img {
	max-width: 100%;
	max-height: 46px;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: filter .2s ease, opacity .2s ease;
}

.eco-merken--grijs .eco-merk img {
	filter: grayscale(1);
	opacity: .72;
}

.eco-merken--grijs .eco-merk:hover img {
	filter: none;
	opacity: 1;
}

.eco-merk__naam {
	font-size: 14px;
	font-weight: 600;
	color: var(--eco-grey);
}

/* ---------------------------------------------------------------
   Veelgestelde vragen
   --------------------------------------------------------------- */

.eco-vragen {
	padding: 60px 0;
}

.eco-vragen__kop {
	font-size: 30px;
	margin: 0 0 28px;
	color: var(--eco-dark);
}

.eco-vragen__lijst {
	max-width: 820px;
	border-top: 1px solid #e3e7e3;
}

.eco-vraag {
	border-bottom: 1px solid #e3e7e3;
}

.eco-vraag__kop {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 0;
	cursor: pointer;
	list-style: none;
	font-size: 17px;
	font-weight: 500;
	color: var(--eco-dark);
}

.eco-vraag__kop::-webkit-details-marker {
	display: none;
}

.eco-vraag__kop:hover {
	color: var(--eco-green);
}

.eco-vraag__teken {
	position: relative;
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
}

.eco-vraag__teken::before,
.eco-vraag__teken::after {
	content: "";
	position: absolute;
	background: var(--eco-green);
	transition: transform .2s ease, opacity .2s ease;
}

.eco-vraag__teken::before {
	left: 0;
	top: 8px;
	width: 18px;
	height: 2px;
}

.eco-vraag__teken::after {
	left: 8px;
	top: 0;
	width: 2px;
	height: 18px;
}

.eco-vraag[open] .eco-vraag__teken::after {
	transform: rotate(90deg);
	opacity: 0;
}

.eco-vraag__antwoord {
	padding: 0 0 20px;
	font-size: 15px;
	line-height: 1.75;
	color: var(--eco-grey);
	max-width: 700px;
}

.eco-vraag__antwoord p {
	margin: 0 0 12px;
}

.eco-vraag__antwoord p:last-child {
	margin-bottom: 0;
}

@media (max-width: 900px) {
	.eco-voordelen__body {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.eco-voordelen--omgekeerd .eco-voordelen__beeld {
		order: 0;
	}

	.eco-merken__lijst {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 600px) {
	.eco-merken__lijst {
		grid-template-columns: repeat(2, 1fr);
	}

	.eco-voordelen,
	.eco-vragen,
	.eco-merken {
		padding: 44px 0;
	}
}


/* ---------------------------------------------------------------
   Leesblok
   --------------------------------------------------------------- */

.eco-leesblok {
	padding: 66px 0 10px;
}

.eco-leesblok h2 {
	font-size: 30px;
	line-height: 1.25;
	margin: 0 0 18px;
	color: var(--eco-dark);
}

.eco-leesblok p {
	font-size: 17px;
	line-height: 1.8;
	color: var(--eco-grey);
	margin: 0 0 18px;
	max-width: 720px;
}

.eco-leesblok p:last-child {
	margin-bottom: 0;
}


/* ---------------------------------------------------------------
   Contactblok
   --------------------------------------------------------------- */

.eco-contactblok {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	align-items: start;
}

.eco-contactblok h2 {
	font-size: 26px;
	margin: 0 0 16px;
	color: var(--eco-dark);
}

.eco-contactblok p {
	font-size: 16px;
	line-height: 1.75;
	color: var(--eco-grey);
	margin: 0 0 16px;
}

.eco-contactblok .eco-form {
	max-width: none;
}

@media (max-width: 900px) {
	.eco-contactblok {
		grid-template-columns: 1fr;
		gap: 34px;
	}
}

/* ---------------------------------------------------------------
   Archieven
   --------------------------------------------------------------- */

.eco-archief {
	padding: 60px 0 70px;
}

.eco-archief__kop {
	font-size: 34px;
	margin: 0 0 10px;
	color: var(--eco-dark);
}

.eco-archief__intro {
	font-size: 17px;
	line-height: 1.75;
	color: var(--eco-grey);
	max-width: 700px;
	margin: 0 0 40px;
}

.eco-archief__lijst {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}

.eco-kaartje {
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(0, 0, 0, .12);
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	transition: border-color .2s ease, transform .2s ease;
}

.eco-kaartje:hover {
	border-color: var(--eco-green);
	transform: translateY(-2px);
}

.eco-kaartje__beeld {
	aspect-ratio: 16 / 9;
	background: #e9ede9;
	overflow: hidden;
}

.eco-kaartje__beeld img {
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	display: block;
}

.eco-kaartje__body {
	padding: 22px 24px 26px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.eco-kaartje__datum {
	font-size: 13px;
	color: #8a938a;
	margin-bottom: 8px;
}

.eco-kaartje__titel {
	font-size: 20px;
	line-height: 1.35;
	margin: 0 0 10px;
}

.eco-kaartje__titel a {
	color: var(--eco-dark);
	text-decoration: none;
}

.eco-kaartje__titel a:hover {
	color: var(--eco-green);
}

.eco-kaartje__tekst {
	font-size: 15px;
	line-height: 1.7;
	color: var(--eco-grey);
	margin: 0 0 16px;
}

.eco-kaartje__link {
	margin-top: auto;
	font-size: 15px;
	font-weight: 600;
	color: var(--eco-green);
	text-decoration: none;
	display: inline-flex;
	gap: 8px;
	align-items: center;
}

.eco-kaartje__link:hover {
	gap: 12px;
}

.eco-paginering {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 40px;
}

.eco-paginering .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid #dfe3df;
	border-radius: 8px;
	color: var(--eco-text);
	text-decoration: none;
	font-size: 15px;
}

.eco-paginering .page-numbers:hover,
.eco-paginering .page-numbers.current {
	border-color: var(--eco-green);
	color: var(--eco-green);
	background: #f2f9f5;
}

/* Detailpagina */

.eco-detail {
	padding: 50px 0 70px;
}

.eco-detail__kruimels {
	font-size: 14px;
	color: #8a938a;
	margin-bottom: 18px;
}

.eco-detail__kruimels a {
	color: var(--eco-grey);
	text-decoration: none;
}

.eco-detail__kruimels a:hover {
	color: var(--eco-green);
}

.eco-detail__kop {
	font-size: 38px;
	line-height: 1.2;
	margin: 0 0 14px;
	color: var(--eco-dark);
}

.eco-detail__meta {
	font-size: 14px;
	color: #8a938a;
	margin-bottom: 26px;
}

.eco-detail__beeld {
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 32px;
}

.eco-detail__beeld img {
	width: 100%;
	height: auto;
	display: block;
}

.eco-detail__inhoud {
	max-width: 760px;
	font-size: 17px;
	line-height: 1.8;
	color: var(--eco-grey);
}

.eco-detail__inhoud h2 {
	font-size: 27px;
	color: var(--eco-dark);
	margin: 34px 0 14px;
}

.eco-detail__inhoud h3 {
	font-size: 21px;
	color: var(--eco-dark);
	margin: 28px 0 12px;
}

.eco-detail__inhoud p {
	margin: 0 0 18px;
}

.eco-detail__inhoud ul,
.eco-detail__inhoud ol {
	margin: 0 0 18px;
	padding-left: 22px;
}

.eco-detail__inhoud li {
	margin-bottom: 8px;
}

.eco-detail__inhoud img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

.eco-detail__voet {
	margin-top: 40px;
	padding-top: 26px;
	border-top: 1px solid #e3e7e3;
}

@media (max-width: 900px) {
	.eco-archief__lijst {
		grid-template-columns: 1fr 1fr;
	}

	.eco-detail__kop {
		font-size: 28px;
	}
}

@media (max-width: 600px) {
	.eco-archief__lijst {
		grid-template-columns: 1fr;
	}
}

.eco-form__rij--adres {
	grid-template-columns: 2fr 1fr 1fr;
}

@media (max-width: 767px) {
	.eco-form__rij--adres {
		grid-template-columns: 1fr;
	}
}
