@font-face {
	font-family: 'Mulish';
	font-display: swap;
	font-style: normal;
	font-weight: 100 900;
	src: url('../fonts/Mulish-VariableFont_wght.ttf') format('truetype');
}
:root {
	--font-body: 'Mulish';
	--font-headings: 'Mulish';
	--color-primary: #000;
	--color-secondary: #555;
	--color-border: #2f261f;
}
html,
body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background: transparent;
	font-size: 16px;
	line-height: 21px;
	color: #000;
}
h1,
h2,
h3,
h4,
h5,
h6,
select,
textarea,
input,
button {
	font-family: inherit;
	font-size: inherit;
}
textarea {
	width: 100%;
	min-height: 140px;
	field-sizing: content;
}
h1 {
	font-size: clamp(1.3rem, 0.6rem + 1vw, 3.9rem);
}
h2 {
	font-size: clamp(1.2rem, 0.6rem + 0.7vw, 3.4rem);
}
h3 {
	font-size: clamp(1.1rem, 0.6rem + 0.5vw, 2.9rem);
}
h4 {
	font-size: clamp(1rem, 0.6rem + 0.3vw, 2.6rem);
}
h5 {
	font-size: clamp(0.9rem, 0.6rem + 0.1vw, 2.4rem);
}
h6 {
	font-size: clamp(0.8rem, 0.6rem + 0.1vw, 1.7rem);
}
*:not(h1, h2, h3, h4, h5) {
	font-family: var(--font-body);
}
h1,
h2,
h3,
h4,
h5 {
	font-family: var(--font-headings);
	color: #000;
	margin: 0 0 8px;
	line-height: 1.3em;
	text-wrap: balance;
	font-weight: bold;
}
a,
a:hover,
a:focus,
label,
button,
p {
	-webkit-tap-highlight-color: transparent;
}
a{
	color: inherit;
	text-decoration: underline;
}
a:hover,
a:focus {
	color: #fb8b1e;
}
p:first-of-type {
	margin-block-start: 0;
}
p:empty {
	display: none;
}
img {
	max-width: 100%;
	display: block;
}
.info{
	position: relative;
}
	.info::before{
		content: 'ℹ️';
	}
	.info__content{
		position: absolute;
		left:50%;
		bottom: 100%;
		width: 200px;
		max-width: 90vw;
		border-radius: .5rem;
		padding:12px;
		background: #FFF;
		word-break: keep-all;
		translate: -50% 0;
		box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
		opacity: 0;
		pointer-events: none;
		transition: .25s;
	}
	.info:hover .info__content{
		bottom: calc(100% + 8px);
		opacity: 1;
	}
		.info__content::before{
			content:'';
			position: absolute;
			top:100%;
			left:50%;
			border-top: solid 8px #FFF;
			border-left:solid 8px transparent;
			border-right:solid 8px transparent;
			translate: -50% 0;
		}
button {
	background: none;
	appearance: none;
	border: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
}
input:focus-visible {
	outline: none;
}
select,
input {
	line-height: 24px;
}
button,
label {
	user-select: none;
}
input[type='checkbox'],
input[type='radio'] {
	cursor: pointer;
}
span,
label {
	word-break: break-word;
}
div {
	box-sizing: border-box;
}
table {
	border-spacing: 0;
}
thead {
	margin-bottom: 10px;
}
th {
	background: var(--color-secondary);
	color: #fff;
	border-radius: 5px 5px 0 0;
	padding: 4px 0 6px;
}
th:first-child {
	padding-left: 5px;
}
td {
	padding: 0;
	vertical-align: text-bottom;
}
td:has(strong) {
	padding-top: 10px;
}
strong{
	color:#e5008e;
}
form {
	margin: auto;
}
.diptych__right::-webkit-scrollbar {
	width: 8px;
}
.diptych__right:hover::-webkit-scrollbar-thumb {
	background: #00000025;
}
.diptych__right::selection {
	color: #fff;
	background: var(--color-primary);
}
.diptych {
	display: grid;
	background: #fff;
}
.diptych__left {
	display: grid;
	align-items: center;
	justify-items: center;
	position: relative;
	background-position: top center;
	background-size: cover;
	overflow: hidden;
	background-repeat: no-repeat;
}
.diptych__right {
	padding: 4vw;
	overflow: auto;
	position: relative;
}
.overlay {
	max-height: 60%;
	max-width: 90%;
}
.diptych__right .logo {
	width: 100%;
	max-width: 250px;
	margin-bottom: 40px;
	display: flex;
}
.diptych__right .logo img {
	width: 20cqw;
	max-width: 240px;
	min-width: 100px;
	max-height: 170px;
	object-fit: contain;
	object-position: right;
}
.form-fields {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.form-field {
	position: relative;
	margin-bottom: 25px;
	user-select: none;
}
.form-field [disabled],
.form-field [readonly] {
	cursor: not-allowed;
}
.form-field [disabled] + span,
.form-field [readonly] + span {
	opacity: 0.75;
	cursor: not-allowed;
}
.form-field--text {
	overflow: hidden;
}
:is(.form-field--text, .form-field--email, .form-field--select, .form-field--textarea) .form-field__label {
	pointer-events: none;
}
.form-field__input {
	width: 100%;
	box-sizing: border-box;
	appearance: none;
	border-radius: 0;
	padding: 21px 12px 8px 12px;
	border: 1px solid #999;
	min-height: 55px;
	outline: none;
	background: transparent;
	color: #333;
	border-radius: 5px;
}
.form-field__input.error {
	border-color: red !important;
	background: #ffa4a4;
}
.form-field--textarea .form-field__input {
	min-height: 150px;
}
.form-field--select:after {
	position: absolute;
	content: '';
	border-style: solid;
	border-width: 0.1em 0.1em 0 0;
	display: inline-block;
	height: 0.4em;
	right: 17px;
	width: 0.4em;
	top: 22px;
	transform: rotate(135deg);
	pointer-events: none;
}
.form-field--select:invalid {
	border-color: red !important;
}
.form-field--checkbox {
	position: relative;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 25px;
	flex-direction: column;
	align-items: flex-start;
}
.form-field--checkbox {
	cursor: pointer;
}
.form-field--checkbox .form-field__label {
	position: static;
	padding-left: 25px;
}
.form-field--checkbox span {
	position: absolute;
	top: 2px;
}
.form-field--checkbox input {
	opacity: 0;
	position: absolute;
	left: 0;
	top: 1px;
	margin: 0;
}
.form-field--checkbox input + span:before {
	content: '';
	width: 15px;
	height: 15px;
	border: 1px solid var(--color-border);
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	background: #fff;
}
.form-field--checkbox input + span:after {
	left: 7px;
	color: #fff;
	position: absolute;
	content: '';
	border-style: solid;
	border-width: 0.02em 0.02em 0 0;
	display: inline-block;
	height: 0.025em;
	width: 0.045em;
	top: 6px;
	transform: rotate(100deg);
	transition: all 0.2s ease;
}
.form-field--checkbox input:checked + span:after {
	left: 3px;
	color: #fb8b1e;
	border-width: 0.2em 0.2em 0 0;
	height: 0.25em;
	width: 0.45em;
	top: 3px;
	transform: rotate(135deg);
}
.form-field__option {
	position: relative;
	cursor: pointer;
}
.form-field--radios {
	position: relative;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 25px;
	flex-direction: column;
	align-items: flex-start;
}
.form-field--radios .form-field__label {
	position: static;
	padding-left: 25px;
}
.form-field--radios span {
	position: absolute;
	top: 4px;
	left: 2px;
}
.form-field--radios input {
	position: absolute;
	left: 2px;
	top: 4px;
	margin: 0;
	width: 1px;
	height: 1px;
	opacity: 0;
}
.form-field--radios input + span:before {
	content: '';
	width: 15px;
	height: 15px;
	border: 1px solid var(--color-border);
	display: block;
	position: absolute;
	left: -2px;
	top: -1px;
	border-radius: 50%;
	background: #fff;
}
.form-field--radios input + span:after {
	left: 6px;
	background: #fff;
	position: absolute;
	content: '';
	display: inline-block;
	height: 0;
	width: 0;
	top: 5px;
	border-radius: 50%;
	transition: all 0.2s ease;
}
.form-field--radios input:checked + span:after {
	left: 1px;
	background: #fb8b1e;
	height: 11px;
	width: 11px;
	top: 2px;
}
.form-field__label:not(:is(.form-field--radios, .form-field--checkbox) .form-field__label) {
	/* color: #fff; */
}
.form-field__label {
	left: 15px;
	position: absolute;
	top: 16px;
	transition: all 0.2s ease-out;
	width: 100%;
	pointer-events: none;
}
:is(.form-field--textarea, .form-field--text, .form-field--select) .form-field__label {
	width: calc(100% - 29px);
}
.form-field__input:focus ~ .form-field__label,
.form-field__input:not(:placeholder-shown) ~ .form-field__label {
	font-size: 80%;
	top: 7px;
	left: 13px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.form-field__input::placeholder {
	color: transparent;
}
.form-field-header {
	display: block;
	font-weight: 600;
	margin-bottom: 10px;
}
.form-field-header:not(:first-child) {
	margin-top: 20px;
}
.form-field-header + div {
	margin-left: 10px;
}
.form-field--fullwidth {
	grid-column: 1/3;
}
.form-field--phone select,
.form-field--phone input {
	padding-top: 8px;
}
.form-field--display {
	margin-bottom: 30px;
}
.phone-number {
	display: flex;
	gap: 6px;
}
.pull-right {
	margin-left: auto;
}
.required-star {
	font-size: 80%;
}
.share {
	position: fixed;
	right: 25%;
	translate: 50% 0;
	top: 0;
	z-index: 2;
	background: var(--color-primary);
	color: #fff;
	display: flex;
	gap: 10px;
	border-radius: 0 0 8px 8px;
	padding: 5px 9px;
	align-items: center;
}
.share:hover {
	color: #fff;
	background: var(--color-secondary);
}
.introduce-question {
	margin-bottom: 25px;
}
.introduce-container {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 25px;
}
.introduce {
	width: 100%;
	position: relative;
}
.introduce + .introduce {
	margin-top: 25px;
}
.introduce .remove {
	position: absolute;
	right: -5px;
	top: -26px;
	z-index: 2;
	padding: 5px;
}
.button,
.button:focus {
	text-decoration: none;
	appearance: none;
	outline: none;
	box-shadow: none;
	touch-action: manipulation;
	cursor: pointer;
	display: inline-block;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	padding: 16px 24px;
	background-color: #fb8b1e;
	border: 1px solid #fb8b1e;
	border-radius: 9999px;
	color: #000;
	position: relative;
	transition: all 0.2s ease;
	z-index: 1;
	font-weight: 700;
	box-sizing: border-box;
	margin-left: 0;
	margin-right: 0;
	line-height: 1;
}
.button--small,
.button--small:focus {
	padding: 4px 6px;
	font-size: 95%;
}
.button:hover {
	color: #000;
	background-color: rgb(255, 174, 97);
}
.button.disabled {
	pointer-events: none;
	opacity: 0.2;
}
.button--secondary {
	background-color: transparent;
	border-color: #111;
}
.button--secondary:hover {
	background-color: #EEE;
}
.visitorcontrol,
.visitorcontrol svg {
	fill: #000;
	color: #000;
}
.visitorcontrol {
	display: flex;
	padding-top: 50px;
	margin-top: 0;
	gap: 5px;
	align-items: center;
	font-size: 10px;
	justify-content: center;
	align-content: center;
	font: 10px Arial;
	opacity: 0.5;
}
.visitorcontrol a {
	color: inherit;
	font: inherit;
}
.poweredby {
	display: flex;
	gap: 5px;
	font: inherit;
}
.poweredby svg {
	vertical-align: text-top;
}
.langswitch {
	position: absolute;
	right: 10px;
	top: 25px;
	display: flex;
	gap: 8px;
}
.tabs {
	box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 10px 0px;
	border-radius: .5rem;
	margin-bottom: 30px;
	background: #FFF;
}
.tab {
	display: flex;
	position: relative;
	padding: 16px 24px;
	white-space: nowrap;
	scroll-snap-align: start;
	scroll-margin: 0 0 -1px 10px;
	outline: none !important;
}
.tab::before {
	content:'';
	position: absolute;
	left:20px;
	right:20px;
	bottom: 11px;
	border-bottom: solid 2px transparent;
}
.tab:hover::before {
	border-bottom-color: #fb8b1e;
	opacity: .9;
}
.tab.active::before {
	border-bottom-color: #fb8b1e;
}
div .splide__arrow {
	opacity: 1;
	border-radius: 0;
	height: 100%;
	top: 0;
	transform: none;
	box-sizing: content-box;
	transition: opacity 0.5s;
	background: transparent;
	width: 12px;
}
div .splide__arrow:before {
	content: '';
	width: 30px;
	height: 100%;
	position: absolute;
}
div .splide__arrow--next:before {
	background: linear-gradient(90deg, #fff0 0%, #ffff 80%);
	left: -30px;
}
div .splide__arrow--prev:before {
	background: linear-gradient(-90deg, #fff0 0%, #ffff 80%);
	right: -30px;
}
div .splide__arrow:hover {
	opacity: 1 !important;
}
div .splide__arrow[disabled] {
	opacity: 0;
	pointer-events: none;
}
div .splide__arrow svg {
	fill: #000;
}
div .splide__arrow--next {
	right: -1px;
	translate: 100% 0;
}
div .splide__arrow--prev {
	left: -1px;
	translate: -100% 0;
}
div .splide:not(.is-overflow) .splide__arrows {
	display: none;
}
.message {
	position: fixed;
	pointer-events: none;
	top: 50%;
	left: 50%;
	padding: 8px;
	background: #0cb50c;
	z-index: 10;
	color: #fff;
	text-align: center;
	transform: translate(-50%, -50%);
	border-radius: 5px;
	transition: opacity 0.3s ease-in;
}
.message--fixed-to-top {
	top: 15px;
	left: 50%;
	transform: translateX(-50%);
}
.message--red {
	background: red;
}
.hidden {
	opacity: 0;
}
.video-container {
	position: relative;
	padding-bottom: 52.6%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	margin-bottom: 20px;
}
.video-container iframe,
.video-container object,
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.grid {
	display: grid;
	gap: 0 20px;
	grid-template-columns: repeat(12, 1fr);
}
.grid__cell--1-1,
.grid__cell--2-2,
.grid__cell--3-3 {
	grid-column: 12 span;
}
.grid__cell--1-2 {
	grid-column: 6 span;
}
.grid__cell--1-3 {
	grid-column: 4 span;
}
.grid__cell--2-3 {
	grid-column: 8 span;
}
/* .grid__cell:has([data-column="voornaam"],[data-column="tussenvoegsel"],[data-column="achternaam"]){grid-column:4 span} */
/* .introduce .grid__cell:has([data-column="introduce-0-voornaam"],[data-column="introduce-0-achternaam"]){grid-column:6 span} */
.grid__cell:has(.form-field--checkbox) {
	margin-bottom: 5px;
}
.grid__cell:has(.form-field--fullwidth) {
	grid-column: 12 span;
}
.phone-number {
	display: flex;
	gap: 7px;
	height: 100%;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	width: 100%;
}
.phone-number select,
.phone-number input {
	border: 1px solid #a2863f;
	border-radius: 0;
	box-sizing: border-box;
	appearance: none;
	padding: 8px 12px;
	outline: none;
	color: #fff;
	background: #231d17;
	height: 55px;
	border-radius: 5px;
}
.phone-number input {
	width: 100%;
}
.add_introduce,
.add_introduce:focus,
.add_introduce:hover {
	font-weight: 400;
	padding: 6px 10px;
}
.back {
	display: flex;
	gap: 6px;
	align-items: center;
}
.aanvulling-introduces {
	display: flex;
	gap: 15px;
	flex-direction: column;
	align-items: flex-start;
	margin: 20px 0;
}
.aanvulling-introduces input {
	width: 100px;
	padding: 12px;
}
.block {
	margin-bottom: 50px;
	display: flex;
	gap: 20px;
	align-items: flex-start;
}
.block img {
	width: 230px;
	margin-bottom: 20px;
}
.block p {
	margin-block-start: 0;
}
.block:has(p:empty:only-child) {
	display: none;
}
.block p:empty {
	display: none;
}
.details {
	padding: 20px;
	background: rgba(255, 255, 255, 0.8);
	margin-top: auto;
}
.intro {
	margin-bottom: 45px;
}
.intro em {
	font-size: 13px;
}
.grid:has(input[name='achternaam'][readonly='readonly']) [data-column='tussenvoegsel'] {
	opacity: 0.85;
	cursor: not-allowed;
}
.grid:has(input[name='achternaam'][readonly='readonly']) [data-column='tussenvoegsel'] * {
	opacity: 0.75;
	pointer-events: none;
}
.grid__cell:has([data-column='dieetwensen_geen'] :checked) ~ .grid__cell:has([data-column^='dieetwensen']) {
	display: none;
}
input[type='date']:required:invalid::-webkit-datetime-edit {
	color: transparent;
}
input[type='date']:focus::-webkit-datetime-edit {
	color: #000 !important;
}
input[type='date']::-webkit-datetime-edit {
	transition: 0.3s color ease;
}
.grid__cell:has(> [data-column*='dieetwens_geen'] :checked) ~ .grid__cell:has(> [data-column*='dieetwens']) {
	display: none;
}
[lang='ar'] {
	direction: rtl;
}
[lang='ar'] .form-field__label {
	left: auto;
	right: 15px;
}
[lang='ar'] .form-field--radios .form-field__label,
[lang='ar'] .form-field--checkbox .form-field__label {
	padding-right: 15px;
	padding-left: 0;
}
[lang='ar'] .form-field--select:after {
	right: auto;
	left: 17px;
}
.availability {
	color: green;
	font-size: 70%;
	font-weight: 600;
	text-align: right;
	line-height: 2.2em;
	min-width: 35px;
}
.availability.last-seats {
	color: orange;
}
.availability.no-seats {
	color: red;
}
.moment .form-field__option {
	width: 100%;
}
.moment .form-field__label {
	display: flex;
	gap: 10px;
}
.step {
	display: grid;
	transition: all 0.4s ease-in-out;
	grid-template-rows: 1fr;
}
.step__content {
	overflow: hidden;
}
.step--hidden {
	grid-template-rows: 0fr;
}
.form-buttons {
	display: flex;
	gap: 20px;
	width: 100%;
	justify-content: space-between;
	margin-bottom: 25px;
}
.diptych__left .title {
	width: 80%;
	z-index: 3;
}
.diptych__left .footer {
	position: absolute;
	left:0%;
	bottom:0%;
	width: 100%;
	z-index: 2;
}
.footer-image{
	text-align: right;
}
	.ahoy{
		display: inline-block;
		width: 60%;
		max-width: 240px;
	}
.ask-accompaniment-message{
	display: block;
	text-align: center;
	padding:16px 24px;
	border-radius: .5rem;
	background: #e5008e;
	color: #FFF;
}
.step--hidden {
	display: none;
}
.step-navigation {
	display: flex;
	justify-content: space-between;
}
.step-navigation:has(:only-child) {
	justify-content: flex-end;
}
.step-progress {
	position: relative;
	display: flex;
	margin-bottom: 20px;
	justify-content: space-between;
	display: none;
}
.step-progress__dot {
	position: relative;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #fff;
	z-index: 2;
	box-sizing: content-box;
}
.step-progress__dot--active {
	border: none;
	background: #9a8348;
}
.step-progress__bar {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 3px;
	background: #ffffff;
	z-index: 1;
	translate: 0 -50%;
}
.step-progress__bar__progress {
	height: 100%;
	background: #9a8348;
}
.field-error {
	position: relative;
	top: -20px;
	color: #cd0025;
	font-size: 90%;
}
.conditions {
	font-style: normal;
	color: #f10505;
	font-weight: 600;
	margin-bottom: 25px;
	display: block;
}
.family-buttons {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}
.family-buttons a:only-child {
	margin-left: auto;
}
.error-message {
	color: #cd0025;
	margin-bottom: 25px;
}
.grid__cell:has([data-column='dieetwensen']) {
	grid-column: 12 span;
}
.tab-title {
	display: block;
}
.tab-subtitle {
	display: block;
}

@media (max-width: 720px) {
	.diptych {
		grid-template-rows: 90cqw auto;
	}
	.diptych__right .logo {
		width: 100%;
		justify-content: center;
	}
	.visitorcontrol {
		flex-direction: column;
	}
	.faq-button {
		position: fixed;
		left: 25px;
		top: 0;
		right: auto;
		z-index: 4;
	}
	.button,
	.button:focus {
		width: 100%;
	}
}
@media (max-width: 1200px) {
	td {
		display: block;
		width: 100%;
	}
	th {
		display: none;
	}
	tr {
		margin-bottom: 30px;
		display: block;
	}
	td.nbsp {
		display: none;
	}
}
@media (min-width: 721px) {
	.diptych {
		grid-template-columns: 50% 50%;
		height: 100vh;
	}
	.poweredby:after {
		content: ' -';
	}
	.diptych__left {
		height: 100vh;
	}
	.diptych__right {
		overflow-y: auto;
		scrollbar-gutter: stable;
		height: 100vh;
	}
}
@media (max-width: 1200px) {
	.form-fields {
		display: flex;
		flex-direction: column;
	}
	.grid {
		display: flex;
		flex-direction: column;
	}
	.block {
		display: block;
		margin: 0 0 30px;
	}
}
