:root {
	/* Colors */
	--primary: #ff6600;
	--primary-bg: #565859;
	--primary-dark: #973d00;
	--primary-light: #f7b990;

	--secondary: #fe0000;
	--secondary-bg: #e4f1f7;
	--secondary-dark: #840000;
	--secondary-light: #f68181;

	--tertiary: #070707;
	--tertiary-bg: #ecedef;
	--tertiary-dark: #000000;
	--tertiary-light: #8e8e8e;

	/* Fonts */
	--font-family-heading: "Alumni Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
		"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--font-family-sans-serif: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
		Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
		"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--line-height: 1.5;

	/* Borders */
	--button-border: 2px;
	--dropdown-border: 1px;
	--input-border: 2px;
	--panel-border: 1px;

	/* Radii */
	--button-radius: 0;
	--dropdown-radius: 0.25rem;
	--input-radius: 0.25rem;
	--panel-radius: 0.5rem;

	/* Padding */
	--button-padding: 1rem;
	--dropdown-padding: 1rem;
	--input-padding: 1rem;
	--panel-padding: 1rem;

	--navigation-height: 6rem;
}

/* Scroll smooth naar anchors op de pagina. */
html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion) {
	html {
		scroll-behavior: unset;
	}
}

/* Zorg dat er niet buiten de pagina gescrolt kan worden. */
body {
	overscroll-behavior-y: none;
	background-color: var(--tertiary);
	color: #fff;
}

hr {
	background-color: currentColor;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {}

b,
strong,
.strong {}

p,
.p {}

p,
.p,
label,
.label,
legend,
.legend {}

input {
	accent-color: var(--primary-dark);
}

small,
.small {}

/* Navigatie balk mee laten scrollen. */
.nav-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background-color: var(--tertiary);
}

/* Header & Footer */

.nav-header a,
.nav-footer a {
	color: #fff;
}

.nav-header a:hover,
.nav-footer a:hover,
.nav-header a:focus,
.nav-footer a:focus {
	color: var(--primary);
}

.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link.active {
	color: #fff;
}

@media screen and (min-width: 992px) {
	#adminbar+* .nav-header {
		top: 3.5rem;
	}
}

.nav-footer {
	background-color: var(--tertiary);
	color: #fff;
}

.nav-footer .top {
	padding: 2rem 0;
}

.nav-footer .contactinfo {
	margin-top: 2rem;
	border-top: 3px solid var(--primary);
}

/* Footer */

/* Navigatie toggler met open en sluit animatie. */
.navbar-toggler {
	border: none;
	display: none;
}

.navbar-toggler-icon {
	position: relative;
	background-image: none !important;
}

.navbar-toggler-icon i {
	display: block;
	position: absolute;
	height: 0.1em;
	width: 100%;
	left: 0;

	background-color: black;
	transition-property: left, top, transform, width;
	transition-duration: 250ms;
}

.navbar-toggler-icon i:nth-child(1) {
	top: calc(20% - 0.05em);
}

.navbar-toggler-icon i:nth-child(2) {
	top: calc(50% - 0.05em);
}

.navbar-toggler-icon i:nth-child(3) {
	top: calc(80% - 0.05em);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon i:nth-child(1) {
	top: calc(50% - 0.1em);
	transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon i:nth-child(2) {
	width: 0;
	left: 50%;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon i:nth-child(3) {
	top: calc(50% - 0.1em);
	transform: rotate(-45deg);
}

/* Buttons */
.btn.btn-primary:not(.btn-admin),
.btn.btn-secondary:not(.btn-admin),
.btn.btn-tertiary:not(.btn-admin),
.btn.btn-link:not(.btn-admin) {}

.btn.btn-primary:not(.btn-admin):active,
.btn.btn-primary:not(.btn-admin):focus,
.btn.btn-primary:not(.btn-admin):hover,
.btn.btn-secondary:not(.btn-admin):active,
.btn.btn-secondary:not(.btn-admin):focus,
.btn.btn-secondary:not(.btn-admin):hover,
.btn.btn-tertiary:not(.btn-admin):active,
.btn.btn-tertiary:not(.btn-admin):focus,
.btn.btn-tertiary:not(.btn-admin):hover,
.btn.btn-link:not(.btn-admin):active,
.btn.btn-link:not(.btn-admin):focus,
.btn.btn-link:not(.btn-admin):hover {}

.content-subtemplate-landing .carousel-inner:not(:has(>.carousel-item:nth-child(2))) + .carousel-indicators {
	display: none;
}

.content-subtemplate-landing .carousel-inner img {
	filter: brightness(0.7);
	min-height: 300px;
	max-height: calc(100vh - var(--navigation-height));
	object-fit: cover;
}

.content-subtemplate-landing .carousel-caption p:not(p:has(.btn)) {
	font-size: 2.5rem;
	font-family: var(--font-family-heading);
	line-height: 1;
}

@media screen and (min-width: 992px) {
	.content-subtemplate-landing .carousel-caption p:not(p:has(.btn)) {
		font-size: 5rem;
	}
}

.content-subtemplate-landing .form-right-module .form-card {
	padding: 3rem;
	background-color: white;
	color: black !important;
	border-radius: 1rem;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.content-subtemplate-landing .form-right-module .form-card p {
	color: black !important;
}

.content-subtemplate-landing .form-right-module .image-left-form picture .img-fluid {
	margin-top: -3rem;
}

@media only screen and (min-width: 768px) {
	.content-subtemplate-landing .form-right-module .form-card-absolute {
		position: absolute;
		width: 100%;
		top: 5rem;
	}

	.content-subtemplate-landing .form-right-module.min-height {
		min-height: 900px;
	}
}

/* CSS for Main Text Left. | Image with border on the right */

.content-subtemplate-landing .image-background-index .panel {
	z-index: 5;
}

@media only screen and (min-width: 768px) {
	.content-subtemplate-landing .image-background-index .image-left {
		margin-left: -5rem;
		z-index: 1;
	}
}

/* CSS for Keuzelijst 50% | Tekst blok 40% */

.content-subtemplate-landing .text-block-40-content .usp-content {
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	color: #000;
}

.content-subtemplate-landing .text-block-40-content .usp-content p {
	margin: 0;
}

.content-subtemplate-landing .text-block-40-content .usp-content ul {
	padding-inline-start: 0;
}

.content-subtemplate-landing .text-block-40-content .usp-content ul li {
	margin: 1rem 0;
	list-style: none;
}

.content-subtemplate-landing .text-block-40-content .usp-content ul li::before {
	display: inline-block;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	/* (--fa-font is de lettertype-stijl die is geselecteerd in de configuratie) */
	font: var(--fa-font);
	/* Zet de icooncode als inhoud. Zie de Font Awesome Gallery voor alle icooncodes. */
	content: "\f058";
	margin-right: 1rem;
	color: var(--primary);
}

/* CSS for Veel gestelde vragen */

.content-subtemplate-landing .faq-content .tekst-accordeon-plus .collapsible-text-title::before {
	display: none;
}

.content-subtemplate-landing .faq-content .tekst-accordeon-plus button.collapsible-text-title {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin: 0.5rem 0;
	padding-left: 0;
}

.content-subtemplate-landing .faq-content .collapsible-text .collapsible-text-title[aria-expanded="false"]::after {
	/* Zorg dat icons overal hetzelfde zullen renderen. */
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	/* (--fa-font is de font style die geselecteerd is in de config.) */
	font: var(--fa-font);
	/* Verbergt de pijl voor ingeklapte teksttitels */
	content: "\2b";
	/* Voegt een overgangseffect toe voor de draaiende animatie */
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;

}

.content-subtemplate-landing .faq-content .collapsible-text .collapsible-text-title[aria-expanded="true"]::after {
	/* Zorg dat icons overal hetzelfde zullen renderen. */
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	/* (--fa-font is de font style die geselecteerd is in de config.) */
	font: var(--fa-font);
	/* Toont de min teken voor uitgeklapte teksttitels */
	content: "\f068";
	/* Voegt een overgangseffect toe voor de draaiende animatie */
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	/* Draait de pijl met 360 graden voor een draai-effect */
	transform: rotate(360deg);
}

.content-subtemplate-landing .faq-content .collapsible-text .collapsible-text-title::after {
	background-color: var(--primary);
	border: 5px solid var(--primary);
	border-radius: 100%;
	width: 50px;
	height: 50px;
	min-width: 50px;
	margin-left: 15px;
	font-size: 1.5rem !important;
	font-weight: 500;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
}

.content-subtemplate-landing .faq-content .collapsible-text .collapsible-text-title[aria-expanded="true"]::after {
	border: 3px solid var(--primary);
	background-color: transparent;
	color: black;
}

.content-subtemplate-landing .faq-content .collapsible-text-title {
	border: 0;
	font-size: 1.3rem;
}

.content-subtemplate-landing .faq-content .collapsible-text-title:focus,
.content-subtemplate-landing .faq-content .collapsible-text-title:hover,
.content-subtemplate-landing .faq-content .collapsible-text-title:active,
.content-subtemplate-landing .faq-content .collapsible-text-content {
	border: 0;
	box-shadow: none;
}

/* CSS for Recensieoverzicht */
.content-subtemplate-landing .review-item-preview-rating i {
	font-size: 1.375em;
	color: gold;
}

/* CSS for Keuzelijst 40% | Recensie formulier 50% */
.content-subtemplate-landing [data-partial="review-form"] .input-rating i {
	font-size: 1.375em;
	color: gold;
}

/* CSS for Keuzelijst 66% | 33% Recensie rating */
.content-subtemplate-landing [data-partial="review-rating"] i {
	font-size: 1.375em;
	color: gold;
}

/* CSS for Recensie rating 33% | Keuzelijst 66% */
.content-subtemplate-landing [data-partial="review-rating"] i {
	font-size: 1.375em;
	color: gold;
}

/* CSS for Drievoudige USP balk met iconen */
.content-subtemplate-landing .triple-icon-bar-content .triple-icon-bar-section {
	padding: 3rem 0;
}

.content-subtemplate-landing .triple-icon-bar-content .triple-icon-bar-section .triple-icon-bar-icon p {
	align-items: center;
	display: flex;
	font-size: 2rem;
}

.content-subtemplate-landing .triple-icon-bar-content .triple-icon-bar-section .triple-icon-bar-icon p span.fa-fw:first-child {
	font-size: 2rem !important;
}

/* CSS for Viervoudige USP balk met iconen */

.content-subtemplate-landing .four-icon-bar-content {
	padding: 3rem 0;
}

.content-subtemplate-landing .four-icon-bar-content .four-icon-bar-icon p {
	align-items: center;
	display: flex;
	font-size: 1.3rem;
}

.content-subtemplate-landing .four-icon-bar-content .four-icon-bar-icon p span.fa-fw:first-child {
	font-size: 1.3rem !important;
}

/* CSS for triple content blocks */

.content-subtemplate-landing .triple-content-blocks-content .contentblok {
	padding: 2rem;
	border-radius: 25px;
}

.content-subtemplate-landing .triple-content-blocks-content .usp-content .btn-secondary {
	display: block;
}

.content-subtemplate-landing .triple-content-blocks-content .scale {
	transform: scale(1.1);
}

/* CSS for Drievoudige meest populair blokken */
.content-subtemplate-landing .triple-most-popular-blocks-content .pricing-block {
	padding: 2rem;
	border-radius: 25px;
	color: #fff !important;
	background: var(--black);
}

.content-subtemplate-landing .triple-most-popular-blocks-content .pricing-block h3,
.content-subtemplate-landing .triple-most-popular-blocks-content .pricing-block .h3,
.content-subtemplate-landing .triple-most-popular-blocks-content .pricing-block h4,
.content-subtemplate-landing .triple-most-popular-blocks-content .pricing-block .h4 {
	color: #fff;
}

.content-subtemplate-landing .triple-most-popular-blocks-content .pricing-block p em {
	font-style: normal;
	font-size: 1.4rem;
}

.content-subtemplate-landing .triple-most-popular-blocks-content .usp-content .btn-secondary {
	display: block;
}

.content-subtemplate-landing .triple-most-popular-blocks-content .pricing-block {
	color: #fff;
}

.content-subtemplate-landing .triple-most-popular-blocks-content .scale {
	transform: scale(1.1);
}

.content-subtemplate-landing .triple-most-popular-blocks-content .populair {
	position: absolute;
	color: #fff;
	z-index: 2;
	border-radius: 25px;
	padding: 1rem;
	left: 27%;
	top: -14%;
}

.content-subtemplate-landing .triple-most-popular-blocks-content .populair p {
	color: #fff !important;
	margin: 0;
}

.content-subtemplate-landing .triple-most-popular-blocks-content .populair+[data-partial="element"]+p:empty {
	display: none;
}

/* CSS for Foto album met rand */
.content-subtemplate-landing .photo-album-with-border-content .brands-border {
	border-top: 2px solid black;
	border-bottom: 2px solid black;
	padding: 2rem;
}

.content-subtemplate-landing .photo-album-with-border-content .brands-border .image-album-item {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* CSS for Slider animated */

.content-subtemplate-landing .slider-animated-content .image-album-slider-animated .flex-slider {
	animation-duration: 30000ms;
	align-items: center;
	display: flex;
}

.content-subtemplate-landing .slider-animated-content .image-album-slider-animated>* img {
	padding-left: 1rem;
	padding-right: 1rem;
}

.content-subtemplate-landing .slider-animated-content .image-album-slider-animated>*::before {
	background: linear-gradient(270deg, transparent 0%, white 100%);
}

.content-subtemplate-landing .slider-animated-content .image-album-slider-animated>*::after {
	background: linear-gradient(90deg, transparent 0%, white 100%);
}

/* CSS for Foto album */
.content-subtemplate-landing .photo-album-with-border-content .brands .image-album-item {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* CSS om beheerbaarheid te verbeteren */

[data-editor-mode=layout] [data-partial] .image-empty {
	min-height: 2rem;
}

[data-editor-mode=layout] .modal-body {
	overscroll-behavior: contain;
	max-height: calc(100vh - 400px);
	overflow-y: auto;
	-webkit-overflow-scrolling: auto;
}

[data-editor-mode=layout] .layout-data-div {
	display: flex !important;
	align-items: center;
	justify-content: center;
	padding: 2rem 2rem 0rem 2rem;
}

body[data-editor-mode="content"] [data-partial="text"] {
	min-width: 30px;
	min-height: 50px;
}

/* Customizable css */
.content-subtemplate-landing .bg-primary p,
.content-subtemplate-landing .bg-primary h1,
.content-subtemplate-landing .bg-primary h2 {
	color: white;
}

.content-subtemplate-landing .bg-secondary p,
.content-subtemplate-landing .bg-tertiary p {
	color: black;
}

.content-subtemplate-landing .bg-primary p .fa-icons,
.content-subtemplate-landing .bg-secondary p .fa-icons,
.content-subtemplate-landing .bg-tertiary p .fa-icons {
	color: var(--white) !important;
}

/* vergeet niet om !important er achter te zetten */
.content-subtemplate-landing .bg-primary,
.content-subtemplate-landing .bg-secondary,
.content-subtemplate-landing .bg-tertiary {}

.marquee-single-wrapper .flex-marquee {
	align-items: center;
	gap: 15px;
}

.marquee-single-wrapper .flex-marquee>* {
	min-width: 480px !important;
}