/*
 * HTF Aanbod, front-end.
 * Sluit 1:1 aan op de huisstijl van hogeschoolvoortoegepastefilosofie.nl:
 * body Poppins #2d2d2f, titels Titillium Web 700 uppercase, blauw datumblok
 * #1e4fa3 (homepage-agenda), gele pill-badge #f8b400 (symposium-datum),
 * vierkante gele knoppen #ffb400 (ct-link-button).
 */

.htf-aanbod {
	font-family: 'Poppins', sans-serif;
	color: #2d2d2f;
}

/* ── Filterknoppen ─────────────────────────────────────────────────────── */
.htf-aanbod__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 30px;
}

.htf-aanbod__filter {
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #1e4fa3;
	background: transparent;
	border: 2px solid #1e4fa3;
	border-radius: 0;
	padding: 10px 18px;
	cursor: pointer;
	transition: background 0.3s ease, color 0.3s ease;
}

.htf-aanbod__filter:hover {
	background: rgba(30, 79, 163, 0.08);
}

.htf-aanbod__filter.is-actief {
	background: #1e4fa3;
	color: #fff;
}

/* ── Grid ──────────────────────────────────────────────────────────────── */
.htf-aanbod--grid .htf-aanbod__lijst {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 25px;
}

.htf-aanbod__kaart {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.htf-aanbod__kaart:hover {
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.18);
	transform: translateY(-3px);
}

.htf-aanbod__kaart.is-verborgen,
.htf-aanbod__agenda-item.is-verborgen {
	display: none;
}

/* Beeld + blauw datumblok (zoals de homepage-agenda) */
.htf-aanbod__beeld {
	position: relative;
	display: block;
	text-decoration: none;
}

.htf-aanbod__beeld img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
}

/* Grijze placeholder wanneer er (nog) geen afbeelding is */
.htf-aanbod__beeld--leeg {
	height: 180px;
	background: #ececee;
	display: flex;
	align-items: center;
	justify-content: center;
}

.htf-aanbod__beeld--leeg > i {
	font-size: 42px;
	color: #c4c4c9;
}

.htf-aanbod__datumblok {
	position: absolute;
	top: 15px;
	left: 15px;
	background: #1e4fa3;
	color: #fff;
	text-align: center;
	width: 75px;
	padding: 8px 0;
	line-height: 1.4;
}

.htf-aanbod__datumblok .day {
	display: block;
	font-size: 25px;
	font-weight: 700;
}

.htf-aanbod__datumblok .month {
	display: block;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Tekstvariant, bijv. opleidingen: SEP / 2026 */
.htf-aanbod__datumblok .day--tekst {
	font-size: 21px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Inhoud */
.htf-aanbod__inhoud {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.htf-aanbod__labels {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}

/* Gele pill zoals .symposium-date op de homepage */
.htf-aanbod__type {
	background: #f8b400;
	color: #000;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 5px 12px;
	border-radius: 20px;
}

.htf-aanbod__status {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 5px 12px;
	border-radius: 20px;
	background: #eee;
	color: #666;
}

.htf-aanbod__status--bijna_vol {
	background: #fdecc8;
	color: #9a6b00;
}

.htf-aanbod__status--vol,
.htf-aanbod__status--gesloten {
	background: #fbe3e3;
	color: #a33;
}

/* Titel zoals .htf-news-title / .htf-agenda-title.
   Bewust niet onder .htf-aanbod genest: de slider en de itempagina gebruiken
   dezelfde klassen buiten die wrapper. De klasse-specificiteit wint het van de
   h1-h6-regels van het thema. */
.htf-aanbod__titel {
	font-family: 'Titillium Web', sans-serif;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.3;
	color: #2d2d2f;
	margin: 0 0 8px;
}

.htf-aanbod__titel a {
	color: inherit;
	text-decoration: none;
}

.htf-aanbod__titel a:hover {
	color: #1e4fa3;
}

.htf-aanbod__subtitel {
	font-size: 15px;
	color: #444;
	line-height: 1.5;
	margin: 0 0 15px;
}

.htf-aanbod__meta {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
	font-size: 14px;
	color: #444;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.htf-aanbod__meta i {
	color: #1e4fa3;
	width: 18px;
	text-align: center;
}

.htf-aanbod__voet {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.htf-aanbod__prijs {
	font-family: 'Titillium Web', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #2d2d2f;
}

/* Vierkante gele knop zoals .ct-link-button.
   Ook hier geen .htf-aanbod-wrapper: geldt net zo goed in de slider en op de
   itempagina. */
.htf-aanbod__knop {
	display: inline-block;
	background: #ffb400;
	border: none;
	border-radius: 0;
	color: #000;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-align: center;
	text-decoration: none;
	padding: 12px 24px;
	white-space: nowrap;
	transition: background 0.3s ease, color 0.3s ease;
}

a.htf-aanbod__knop,
a.htf-aanbod__knop:visited {
	color: #000;
	text-decoration: none;
}

a.htf-aanbod__knop:hover {
	background: #2d2d2f;
	color: #fff;
}

.htf-aanbod__knop--uit {
	background: #ececec;
	color: #999;
	cursor: not-allowed;
}

.htf-aanbod__infolink {
	display: inline-block;
	margin-top: 12px;
	font-size: 14px;
	font-weight: 600;
	color: #3763ac;
	text-decoration: none;
}

.htf-aanbod__infolink:hover {
	text-decoration: underline;
}

/* ── Agenda-weergave (zoals .htf-agenda-item op de homepage) ───────────── */
.htf-aanbod--agenda .htf-aanbod__lijst {
	display: flex;
	flex-direction: column;
}

.htf-aanbod__agenda-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 15px 0;
	border-bottom: 1px solid #eee;
	transition: all 0.3s ease;
}

.htf-aanbod__agenda-item:last-child {
	border-bottom: none;
}

.htf-aanbod__datumblok--agenda {
	position: static;
	min-width: 75px;
}

.htf-aanbod__agenda-tekst {
	flex: 1;
}

.htf-aanbod__agenda-meta {
	margin: 3px 0 5px;
	font-size: 14px;
	color: #444;
}

.htf-aanbod--agenda .htf-aanbod__subtitel {
	margin: 0;
}

.htf-aanbod__agenda-actie {
	align-self: center;
}

.htf-aanbod-leeg {
	font-family: 'Poppins', sans-serif;
	color: #444;
}

/* ── Mobiel ────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
	.htf-aanbod__agenda-item {
		flex-wrap: wrap;
	}

	.htf-aanbod__agenda-actie {
		width: 100%;
	}

	.htf-aanbod__agenda-actie .htf-aanbod__knop {
		width: 100%;
	}
}

/* ── Smalle CTA-balk ([htf_aanbod_cta]) ────────────────────────────────── */
.htf-cta {
	font-family: 'Poppins', sans-serif;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14px;
	background: #1e4fa3;
	color: #fff;
	padding: 14px 22px;
	margin-bottom: 25px;
}

.htf-cta__tekst {
	font-size: 15px;
	font-weight: 600;
}

.htf-cta--donker {
	background: #2d2d2f;
}

.htf-cta--geel {
	background: #f8b400;
	color: #2d2d2f;
}

.htf-cta--geel .htf-aanbod__knop {
	background: #2d2d2f;
	color: #fff;
}

/* ── Aanbod-hub ([htf_aanbod_hub]) ─────────────────────────────────────── */
.htf-hub {
	font-family: 'Poppins', sans-serif;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-auto-rows: 240px;
	gap: 20px;
}

.htf-hub__blok {
	position: relative;
	display: flex;
	align-items: flex-end;
	padding: 28px;
	text-decoration: none;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	transition: all 0.3s ease;
}

.htf-hub__blok:hover {
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
	transform: translateY(-2px);
}

.htf-hub__blok--groot {
	grid-row: span 2;
}

.htf-hub__blok--1 { background-color: #1e4fa3; }
.htf-hub__blok--2 { background-color: #2d2d2f; }
.htf-hub__blok--3 { background-color: #f8b400; }

/* Doorzichtige gekleurde overloop over de achtergrondfoto.
   Standaard: blok 1 blauw, blok 2 grijs, blok 3 geel (instelbaar via
   overlay_1/2/3 in de shortcode). */
.htf-hub__blok--foto::before {
	content: "";
	position: absolute;
	inset: 0;
}

.htf-hub__blok--overlay-blauw::before {
	background: linear-gradient(180deg, rgba(30, 79, 163, 0.25) 20%, rgba(30, 79, 163, 0.82));
}

.htf-hub__blok--overlay-grijs::before {
	background: linear-gradient(180deg, rgba(45, 45, 47, 0.25) 20%, rgba(45, 45, 47, 0.82));
}

.htf-hub__blok--overlay-donker::before {
	background: linear-gradient(180deg, rgba(20, 26, 40, 0.3) 20%, rgba(20, 26, 40, 0.85));
}

.htf-hub__blok--overlay-geel::before {
	background: linear-gradient(180deg, rgba(248, 180, 0, 0.2) 20%, rgba(248, 180, 0, 0.88));
}

/* Gele overlay: donkere tekst voor leesbaarheid */
.htf-hub__blok--overlay-geel .htf-hub__titel { color: #2d2d2f; }
.htf-hub__blok--overlay-geel .htf-hub__tekst { color: rgba(45, 45, 47, 0.9); }
.htf-hub__blok--overlay-geel .htf-hub__knop { color: #2d2d2f; }

.htf-hub__binnen {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 6px;
	max-width: 92%;
}

.htf-hub__titel {
	font-family: 'Titillium Web', sans-serif;
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.2;
	color: #fff;
}

.htf-hub__blok--groot .htf-hub__titel {
	font-size: 32px;
}

.htf-hub__tekst {
	font-size: 14px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.88);
}

.htf-hub__knop {
	margin-top: 10px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #f8b400;
}

.htf-hub__knop i,
.htf-hub__knop .htf-hub__pijl {
	transition: transform 0.3s ease;
}

.htf-hub__blok:hover .htf-hub__knop i,
.htf-hub__blok:hover .htf-hub__knop .htf-hub__pijl {
	transform: translateX(4px);
}

/* Geel blok: donkere tekst (behalve met foto-overlay) */
.htf-hub__blok--3:not(.htf-hub__blok--foto) .htf-hub__titel { color: #2d2d2f; }
.htf-hub__blok--3:not(.htf-hub__blok--foto) .htf-hub__tekst { color: rgba(45, 45, 47, 0.85); }
.htf-hub__blok--3:not(.htf-hub__blok--foto) .htf-hub__knop { color: #2d2d2f; }

@media (max-width: 768px) {
	.htf-hub {
		grid-template-columns: 1fr;
		grid-auto-rows: 200px;
	}

	.htf-hub__blok--groot {
		grid-row: span 1;
	}
}

/* ── Single-pagina ([htf_aanbod_single]) ───────────────────────────────── */
.htf-single {
	font-family: 'Poppins', sans-serif;
	color: #2d2d2f;
}

.htf-single__hero {
	background: #1e4fa3;
	color: #fff;
	padding: 50px 40px;
}

.htf-single__titel {
	font-family: 'Titillium Web', sans-serif;
	font-size: 34px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.2;
	color: #fff;
	margin: 12px 0 16px;
}

.htf-single__meta {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 26px;
	font-size: 15px;
}

.htf-single__meta i {
	color: #f8b400;
	margin-right: 8px;
}

.htf-single__body {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 40px;
	align-items: start;
	padding: 40px 0;
}

.htf-single__content {
	font-size: 15px;
	line-height: 1.7;
	color: #444;
}

.htf-single__content .htf-single__beeld {
	width: 100%;
	height: auto;
	border-radius: 10px;
	margin-bottom: 25px;
}

.htf-single__content h2,
.htf-single__content h3 {
	font-family: 'Titillium Web', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	color: #2d2d2f;
	margin: 25px 0 10px;
}

.htf-single__kaart {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 25px;
	position: sticky;
	top: 20px;
}

.htf-single__prijs {
	font-family: 'Titillium Web', sans-serif;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 15px;
}

.htf-single__kaart .htf-aanbod__knop {
	display: block;
	width: 100%;
}

.htf-single__kaart .htf-aanbod__meta {
	margin: 20px 0 0;
}

.htf-single__kaart .htf-aanbod__infolink {
	margin-top: 16px;
}

.htf-single-wrap {
	max-width: 1180px;
	margin: 0 auto;
	padding: 30px 24px 60px;
}

@media (max-width: 900px) {
	.htf-single__body {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.htf-single__hero {
		padding: 35px 24px;
	}

	.htf-single__titel {
		font-size: 26px;
	}

	.htf-single__kaart {
		position: static;
	}
}

/* ── Eigen label + outline-knop ────────────────────────────────────────── */
.htf-aanbod__status--eigen {
	background: #fdecc8;
	color: #9a6b00;
}

.htf-aanbod__knop--outline {
	background: transparent;
	border: 2px solid #1e4fa3;
	color: #1e4fa3;
	padding: 10px 22px;
}

a.htf-aanbod__knop--outline,
a.htf-aanbod__knop--outline:visited {
	color: #1e4fa3;
}

a.htf-aanbod__knop--outline:hover {
	background: #1e4fa3;
	color: #fff;
}

/* ── Aanbod-slider ([htf_aanbod_slider]) ───────────────────────────────── */
.htf-slider {
	font-family: 'Poppins', sans-serif;
	color: #2d2d2f;
	position: relative;
}

.htf-slider__baan {
	display: flex;
	gap: 22px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 4px 4px 14px;
	scrollbar-width: none;
}

.htf-slider__baan::-webkit-scrollbar {
	display: none;
}

.htf-slider__item {
	flex: 0 0 320px;
	scroll-snap-align: start;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.htf-slider__item:hover {
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.18);
}

.htf-slider__item .htf-aanbod__beeld img,
.htf-slider__item .htf-aanbod__beeld--leeg {
	height: 150px;
}

.htf-slider__inhoud {
	padding: 18px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.htf-slider__inhoud .htf-aanbod__subtitel {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.htf-slider__knoppen {
	margin-top: auto;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.htf-slider__knoppen .htf-aanbod__knop {
	flex: 1;
	padding-left: 12px;
	padding-right: 12px;
}

/* Pijlen: vierkant geel, zoals de sitekleuren. Verticaal gecentreerd op de
   beeldstrook (150px hoog), zodat ze nooit over de titel of tekst vallen. */
.htf-slider__pijl {
	position: absolute;
	top: 75px;
	transform: translateY(-50%);
	z-index: 2;
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 0;
	background: #ffb400;
	color: #000;
	font-size: 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
	transition: background 0.3s ease, color 0.3s ease;
}

.htf-slider__pijl:hover {
	background: #2d2d2f;
	color: #fff;
}

.htf-slider__pijl--links { left: -14px; }
.htf-slider__pijl--rechts { right: -14px; }

@media (max-width: 768px) {
	.htf-slider__item {
		flex-basis: 280px;
	}

	.htf-slider__pijl--links { left: 4px; }
	.htf-slider__pijl--rechts { right: 4px; }
}

/* ── Iconen op de filterknoppen ────────────────────────────────────────── */
.htf-aanbod__filter i {
	margin-right: 7px;
}

/* ── Hub-balk (blok 4, bijv. de webshop) ───────────────────────────────── */
.htf-hub__balk {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 20px;
	padding: 24px 28px;
	text-decoration: none;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	transition: all 0.3s ease;
}

.htf-hub__balk:hover {
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
	transform: translateY(-2px);
}

/* Effen achtergrond wanneer er geen foto is */
.htf-hub__balk--donker { background-color: #2d2d2f; }
.htf-hub__balk--blauw { background-color: #1e4fa3; }
.htf-hub__balk--grijs { background-color: #4a4a4e; }
.htf-hub__balk--geel { background-color: #f8b400; }

.htf-hub__binnen--balk {
	max-width: 100%;
	gap: 2px;
}

.htf-hub__titel--balk {
	font-size: 20px;
}

/* Knop op de balk: vierkant geel, zoals de sitestijl */
.htf-hub__balk-knop {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #ffb400;
	color: #000;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 12px 24px;
	white-space: nowrap;
	transition: background 0.3s ease, color 0.3s ease;
}

.htf-hub__balk:hover .htf-hub__balk-knop {
	background: #2d2d2f;
	color: #fff;
}

/* Gele balk: donkere tekst + donkere knop voor contrast */
.htf-hub__balk--geel .htf-hub__titel,
.htf-hub__balk--geel .htf-hub__tekst { color: #2d2d2f; }
.htf-hub__balk--geel .htf-hub__tekst { color: rgba(45, 45, 47, 0.85); }
.htf-hub__balk--geel .htf-hub__balk-knop,
.htf-hub__balk--geel:hover .htf-hub__balk-knop { background: #2d2d2f; color: #fff; }

@media (max-width: 768px) {
	.htf-hub__balk {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ── Losse aanmeldknop ([htf_aanbod_knop]) ─────────────────────────────── */
.htf-aanbod__knopblok {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

/* ── Aanmeld-pop-up (Mailblue) ─────────────────────────────────────────── */
.htf-popup {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	font-family: 'Poppins', sans-serif;
}

/* display:flex hierboven zou het hidden-attribuut overrulen; dicht = écht weg. */
.htf-popup[hidden] {
	display: none;
}

body.htf-popup-open {
	overflow: hidden;
}

.htf-popup__overlay {
	position: absolute;
	inset: 0;
	background: rgba(45, 45, 47, 0.65);
}

.htf-popup__venster {
	position: relative;
	width: 100%;
	max-width: 440px;
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
	animation: htf-popup-in 0.25s ease;
}

@keyframes htf-popup-in {
	from { opacity: 0; transform: translateY(14px); }
	to   { opacity: 1; transform: none; }
}

.htf-popup__kop {
	position: relative;
	background: #1e4fa3;
	color: #fff;
	padding: 22px 56px 20px 26px;
	border-radius: 10px 10px 0 0;
}

.htf-popup__kicker {
	margin: 0 0 2px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #f8b400;
}

.htf-popup__titel {
	margin: 0;
	font-family: 'Titillium Web', sans-serif;
	font-size: 21px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.25;
	color: #fff;
}

.htf-popup__sluit {
	position: absolute;
	top: 14px;
	right: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	background: rgba(255, 255, 255, 0.12);
	border: 0;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	transition: background 0.3s ease;
}

.htf-popup__sluit:hover {
	background: rgba(255, 255, 255, 0.28);
}

.htf-popup__form {
	padding: 22px 26px 26px;
}

.htf-popup__intro {
	margin: 0 0 18px;
	font-size: 14px;
	line-height: 1.6;
	color: #2d2d2f;
}

.htf-popup__honing {
	position: absolute;
	left: -9999px;
	top: auto;
}

.htf-popup__veld {
	margin: 0 0 14px;
}

.htf-popup__veld label {
	display: block;
	margin-bottom: 5px;
	font-size: 13px;
	font-weight: 600;
	color: #2d2d2f;
}

.htf-popup__veld input {
	width: 100%;
	box-sizing: border-box;
	padding: 11px 14px;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	color: #2d2d2f;
	background: #fff;
	border: 2px solid #d9dce3;
	border-radius: 0;
	transition: border-color 0.3s ease;
}

.htf-popup__veld input:focus {
	outline: none;
	border-color: #1e4fa3;
}

.htf-popup__foutmelding {
	margin: 0 0 14px;
	font-size: 13px;
	font-weight: 600;
	color: #c0392b;
}

.htf-popup__verzend {
	width: 100%;
	border: 0;
	cursor: pointer;
	font-size: 15px;
}

.htf-popup__verzend:disabled {
	opacity: 0.7;
	cursor: wait;
}

.htf-popup__privacy {
	margin: 14px 0 0;
	font-size: 12px;
	line-height: 1.5;
	color: #6b6b6e;
}

.htf-popup__privacy a {
	color: #1e4fa3;
}

.htf-popup__succes {
	padding: 34px 26px 38px;
	text-align: center;
	color: #1e4fa3;
}

.htf-popup__succes p {
	margin: 14px 0 0;
	font-size: 15px;
	line-height: 1.6;
	color: #2d2d2f;
}
