@font-face {
    font-family: 'racing';
    src: url('../webfonts/racingsansone-regular-webfont.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

:root {
	--fontSize: 20px;
	--fontFamily: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	interpolate-size: allow-keywords;
	
	--contentWidth: min(90vw, 1200px);
	
	--backgroundMenu: #222;
	--colorMenu: #fff;
	--colorMenuHover: #a4d659;
	
	--backgroundFooter: #222;
	--colorFooter: #fff;
	
	--colorSpecial: #a4d659;
    
    --buttonSubmitBG: #000;
}

* {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
	/* scroll-margin-top: 5rem; */
}

html, body {
	width: 100%;
	height: 100%;
	font-size: var(--fontSize);
	font-family: var(--fontFamily);
}

main {
    height: 100%;
    /* display: grid; */
	/* grid-template-rows: auto auto 1fr auto; */
	/* grid-template-rows: 200px repeat(auto-fill, 300px) 100px; */
	/* gap: 1rem; */
	display: flex;
	flex-direction: column;
    align-items: center;
}

img {
	display: inline-block;
}

.margintop {
	margin-top: 1rem;
}

main > :nth-last-child(-n + 2):not(.footer) {
    flex-grow: 1;
}

main.hideextras > :nth-last-child(-n + 3):not(.footer) {
    /* flex-grow: 1; */
}

h1, h2, h3 {
	font-family: 'racing';
	font-weight: 400;
	/* margin-bottom: 0.25em; */
	margin-block: 1em 0.25rem;
	word-break: break-word;
}

h1:first-child, h2:first-child, h3:first-child {
	margin-block: 0px 0.25rem;
}

ul {
    padding-inline: 1.25rem;
    list-style: square;
}

label {
	user-select: none;
}

a {
	color: #000;
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
	color: #444;
}

.content {
    width: var(--contentWidth);
}

.menu {
    /* position: absolute; */
    /* right: 0.5rem; */
    /* top: 2.5rem; */
    z-index: 10;
	padding-inline: 0.5rem;
}

.menuswitch {
	display: flex;
	width: 2rem;
	height: 2rem;
    align-items: center;
    justify-content: center;
    position: relative;
}

.menu input[type=checkbox] + label {
	width: 2rem;
	height: 2rem;
	display: flex;
    align-items: center;
	cursor: pointer;
}

.menu input[type=checkbox] + label div::before {
    content: '';
    width: 2rem;
    height: 0.3rem;
    position: absolute;
    background: #fff;
    border-radius: 0.15rem;
    top: -0.6rem;
	transition: 150ms top, 150ms rotate;
}

.menu input[type=checkbox] + label div::after {
    content: '';
    width: 2rem;
    height: 0.3rem;
    position: absolute;
    background: #fff;
    border-radius: 0.15rem;
    bottom: -0.6rem;
	transition: 150ms bottom, 150ms rotate;
}

.menu input[type=checkbox] + label div {
    position: relative;
    width: 2rem;
    height: 0.3rem;
    border-radius: 0.15rem;
    display: block;
    background: #fff;
	transition: 150ms background;
}

.menu input[type=checkbox]:checked + label div {
	background: #fff0;
}

.menu input[type=checkbox]:checked + label div::before {
    top: 0rem;
    rotate: 45deg;
}

.menu input[type=checkbox]:checked + label div::after {
	bottom: 0rem;
    rotate: -45deg;
}

nav {
    position: absolute;
    right: 0px;
    background: #000;
	transition: 150ms height;
	height: 0px;
	overflow: clip;
}

.menu:has(input[type=checkbox]:checked) nav {
	height: auto;
}

nav a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

nav a:hover {
	color: #ccc;
}

@media screen and (min-width: 600px) {
	.menu {
		top: 0px;
		position: static;
		width: 100%;
		padding-inline: 0px;
	}
	
	.menuswitch {
		display: none;
	}
	
	.menu nav {
		height: auto;
		position: static;
		background: #000a;
		text-align: center;
	}
	nav a {
		display: inline-block;
	}
}

.background {
    /* grid-column: 1 / -1; */
    /* grid-row: 1 / -1; */
    /* position: relative; */
	position: fixed;
	inset: 0px;
    isolation: isolate;
	z-index: -1;
}

.background-image::before {
    content: "";
    position: absolute;
    inset: 0px;
    background-image: var(--imageurl);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    z-index: -1;
}

.background-color::before {
    content: "";
    position: absolute;
    inset: 0px;
    background-color: var(--bgcolor);
    z-index: -1;
}

.background-raster::after {
    content: "";
    position: absolute;
    inset: 0px;
    background-image: url(../images/grid2.png);
    z-index: 1;
}

.background-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

@media screen and (min-width: 600px) {
	.background::after {
		background-image: url(../images/grid.png);
	}
}

header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
	justify-items: center;
	width: 100%;
}

@media screen and (min-width: 600px) {
	header {
		grid-template-columns: 1fr;
	}
}

.logo {
    /* grid-row: 1 / 2; */
    /* grid-column: 1 / -1; */
	/* padding: 1rem 1rem 0px 1rem; */
	padding: 1rem;
    display: flex;
    justify-content: center;
    /* filter: drop-shadow(0px 1px 0px #fff) drop-shadow(0px -1px 0px #fff) drop-shadow(1px 0px 0px #fff) drop-shadow(-1px 0px 0px #fff); */
	filter: drop-shadow(0px 0px 2px #000);
	white-space: nowrap;
	font-size: 1.5rem;
}

.logo a {
	display: inline-block;
}

.logo img {
	width: 100%;
    max-height: 5rem;
	height: 5rem;
    /* max-height: 8rem; */
}

@media screen and (min-width: 600px) {
	.logo img {
		max-height: 8rem;
		height: 8rem;
		/* filter: drop-shadow(0px 2px 0px #fff) drop-shadow(0px -2px 0px #fff) drop-shadow(2px 0px 0px #fff) drop-shadow(-2px 0px 0px #fff); */
	}
}

app {
    /* grid-row: 2 / 3; */
    /* grid-column: 1 / -1; */
	display: flex;
	flex-direction: column;
    align-items: center;
    justify-content: flex-start;
	gap: 1rem;
}

@media screen and (min-width: 600px) {
	app {
		margin-top: 1rem;
	}
}


main.hideextras .extra {
	display: none;
}

.extra {
    /* grid-row: 3 / 4; */
    /* grid-column: 1 / -1; */
	display: flex;
    justify-content: center;
}

.extra .content {
	display: flex;
    justify-content: center;
}

.footer {
    /* grid-row: 4 / 5; */
    /* grid-column: 1 / -1; */
	color: var(--colorFooter);
    text-align: center;
    font-weight: 500;
    font-size: 0.75rem;
	padding-block: 0.5rem;
}

.footer a {
	color: var(--colorFooter);
}
/* form { */
    /* display: grid; */
    /* gap: 1rem; */
/* } */
.window {
	position: relative;
    background: #fff;
    max-width: var(--contentWidth);
	border-radius: 0.5rem;
	padding: 0.5rem;
	border: 2px solid #000;
}

@media screen and (min-width: 600px) {
	.window {
		padding: 0.5rem 1rem;
	}
}

input[type=radio].hidden,
input[type=checkbox].hidden {
    position: absolute;
    width: 0px;
    height: 0px;
    opacity: 0;
    appearance: none;
}

.row {
    display: flex;
    justify-content: center;
    margin-block: 0.25rem;
	align-items: center;
}

.row.header {
	font-weight: 600;
}

.row.form {
	align-items: baseline;
    gap: 0.25rem;
	justify-content: unset;
	display: grid;
    grid-template-columns: auto 1fr;
}
.row2buttons {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
	gap: 1rem;
}

.row .extra_description {
    grid-column: 2 / 3;
    font-size: 0.75rem;
    color: #444;
}

.row .pagelink {
    grid-column: 2 / 3;
    font-size: 0.75rem;
}

.row .price {
    font-size: 0.75rem;
    font-weight: 600;
    color: #444;
}

.switch {
    width: fit-content;
}

.switch input + label {
    padding-inline: 0.5rem;
    background: deepskyblue;
	display: inline-block;
	border-radius: 0.25rem 0 0 0.25rem;
	border: 1px solid #0002;
	border-right: 1px solid #8882;
	vertical-align: bottom;
	color: #fff;
	cursor: pointer;
	padding-top: calc(0.5rem - 2px);
    padding-bottom: calc(0.5rem + 2px);
	transition: 0.1s padding, 0.1s box-shadow;
}

.switch input:not(:checked) + label:hover {
	filter: brightness(0.85);
}

.switch input + label + input + label {
	border-radius: 0 0.25rem 0.25rem 0;
	border-left: 1px solid #8882;
	border-right: 1px solid #0002;
}

.switch:has(input:checked) input + label {
	/* background: #bbb; */
	background: linear-gradient(180deg, #ddd, #aaa);
    color: #0004;
	box-shadow: 0px -2px 4px #fff8 inset;
}

.switch input:checked + label,
.switch:has(input:checked) input:checked + label {
    /* background: forestgreen; */
/*    background: linear-gradient(180deg, #1a6d1a, #228b22);*/
    background: var(--buttonSubmitBG);
	color: #fff;
	box-shadow: 0px 2px 4px #0004 inset;
	padding-top: calc(0.5rem + 1px);
    padding-bottom: calc(0.5rem - 1px);
}

button.submit,
a.submit {
    appearance: none;
    /* background: forestgreen; */
/*    background: linear-gradient(0deg, #1a6d1a, #228b22);*/
    background: var(--buttonSubmitBG);
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: var(--fontSize);
    border-radius: 0.25rem;
    cursor: pointer;
	border: 1px solid #0004;
	width: fit-content;
	position: relative;
	text-decoration: none;
}
a.submit {
	display: inline-block;
}

button.submit:hover,
a.submit:hover {
	filter: brightness(0.85);
}
button.submit:disabled,
button.submit:disabled:hover {
    background: linear-gradient(0deg, #ddd, #ccc);
    color: #aaa;
    cursor: default;
	filter: brightness(1);
}

button.submit.loading {
	filter: grayscale(0.5);
    color: #aaa;
}

button.submit.loading::after {
    background: linear-gradient(90deg, #0000, #afa) left -100px top 0 / 100px 100px no-repeat #afa0;
    animation: loader 1s infinite linear;
    position: absolute;
    content: "";
    inset: 0px;
    border-radius: 0.25rem;
}

button i {
	/* margin-left: 0.5rem; */
}

.infobuttons .content {
    display: flex;
    gap: 1rem;
    flex-direction: column;
	width: fit-content;
    align-items: center;
	justify-content: flex-start;
}

.button {
	display: grid;
    grid-template-columns: auto 1fr;
	justify-items: center;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    appearance: none;
    background: #fff;
    color: #3c3c3c;
    padding: 0.5rem 1rem;
    font-size: var(--fontSize);
    border-radius: 0.25rem;
    cursor: pointer;
	text-align: center;
	border: 1px solid #0008;
}

.button:hover {
    background: #ddd;
}

.kalender {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
	width: calc(100vw - 4rem);
	max-width: 20rem;
}

.kalender .daglabel {
    font-size: 0.75rem;
    text-align: center;
    color: #444;
}

.kalender .dag {
	background: #cfc;
	text-align: center;
}

.kalender .dag.deelsbezet {
    background: repeating-linear-gradient(45deg, #ccc 0%, #cfc 4%, #cfc 12%, #ccc 16%);
}

.kalender div.dag {
	background: #fff;
}

.kalender label.dag:hover {
	background: #8c8;
	cursor: pointer;
}

.kalender label.dag.deelsbezet:hover {
	background: repeating-linear-gradient(45deg, #ccc 0%, #8c8 4%, #8c8 12%, #ccc 16%);
}

.kalender input:disabled + .dag {
	background: #ccc;
    color: #aaa;
    cursor: default;
}

.kalender input:checked + .dag {
	background: #4a4;
    color: #fff;
}

.kalender input:checked + .dag.deelsbezet {
    background: repeating-linear-gradient(45deg, #ccc 0%, #4a4 4%, #4a4 12%, #ccc 16%);
}

.kalender .maand {
    grid-column: span 5;
    text-align: center;
}

.kalender .knopnav {
    text-align: center;
}

.kalender .dag {
    padding: 0.25rem;
    border: 1px solid #0004;
    border-radius: 0.25rem;
}

select {
	position: relative;
    font-size: 1rem;
    appearance: none;
    border: 1px solid #aaa;
    border-radius: 0.25rem;
    /* font-family: monospace; */
    background-color: #eee;
	background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='16' viewBox='0 0 448 512' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M244 7c-11.7-9.3-28.3-9.3-40 0L44 135c-13.8 11-16 31.2-5 45s31.2 16 45 5L224 73 364 185c13.8 11 33.9 8.8 45-5s8.8-33.9-5-45L244 7zM404 377c13.8-11 16-31.2 5-45s-31.2-16-45-5L224 439 84 327c-13.8-11-33.9-8.8-45 5s-8.8 33.9 5 45L204 505c11.7 9.3 28.3 9.3 40 0L404 377z'/></svg>");
	background-repeat: no-repeat;
	background-position-x: calc(100% - 0.25rem);
	background-position-y: calc(0.75rem - 8px);
    padding: 0.25rem 1.5rem 0.25rem 0.5rem;
    margin-inline: 0.5rem;
}

.backlink {
	background: transparent;
	appearance: none;
    color: #444;
    width: fit-content;
    text-underline-offset: 0.25rem;
	text-decoration: underline;
    font-size: 0.9rem;
    font-weight: 700;
	cursor: pointer;
}

.backlink:hover {
	text-decoration: none;
}

.loader {
	display: none;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #0000, green) left -100px top 0 / 100px 100px no-repeat #afa;
    animation: loader 1s infinite linear;
    border-radius: 0.4rem 0.4rem 0 0;
}

.window.loading .loader {
	display: block;
}

@keyframes loader {
	100% {
		background-position: right -100px top 0
	}
}

.knopnav button {
    appearance: none;
    background: transparent;
	color: #888;
	cursor: pointer;
	font-size: 1rem;
}

.knopnav button:hover {
	color: #000;
}

.knopnav button:disabled,
.knopnav button:disabled:hover {
	color: #ddd;
	cursor: default;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
    appearance: none;
    border-bottom: 2px solid #888;
    font-size: 1rem;
	padding: 0.5rem 0.5rem 0 0.5rem;
    margin-bottom: 0.5rem;
    outline: none;
	/* width: 20rem; */
	width: 100%;
	max-width: 100%;
	
	/* width: calc(100% - 1rem); */
	/* max-width: calc(100% - 1rem); */
}

label.likeinput {
	padding-inline: 0.5rem;
}

textarea {
    line-height: 1.25rem;
	overflow: clip;
	field-sizing: content;
}


input[type="text"]:disabled {
	background: #eee;
	border-bottom: none;
}

label.icon {
    width: 1.5rem;
	text-align: center;
}

input[type="checkbox"].checkbox {
	position: absolute;
	appearance: none;
	width: 0px;
	height: 0px;
	opacity: 0;
}

label.checkbox,
label.checkbox + label {
	position: relative;
	cursor: pointer;
}

label.checkbox:hover,
label.checkbox + label:hover {
	color: #444;
}

label.checkbox::after {
	font-weight: 400;
    font-family: "Font Awesome 6 Pro";
	content: "\f0c8";
}

input[type="checkbox"]:checked + label.checkbox::after {
	content: "\f14a";
}

/* .row.form:has([required].invalid) { */
.row.form[data-melding] {
    position: relative;
	box-shadow: 0px 0px 3px #f00, 0px 0px 2px #f00;
}

/* .row.form:has([required].invalid)::before { */
.row.form[data-melding]::before {
    position: absolute;
    content: attr(data-melding);
    background: #ff8;
    padding: 0.25rem 1rem;
    border-radius: 0.25rem;
    left: 50%;
    top: -1rem;
    filter: drop-shadow(0px 2px 1px #0008);
    translate: -50% -100%;
}

/* .row.form:has([required].invalid)::after { */
.row.form[data-melding]::after {
    position: absolute;
    content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 1rem 1rem 0 1rem;
    border-color: #ff8 transparent transparent transparent;
    top: -1rem;
    left: calc(50% - 1rem);
    filter: drop-shadow(0px 2px 1px #0008);
}



.textcontent {
    /* grid-row: 2 / 3; */
    /* grid-column: 1 / -1; */
    background: #fffe;
    color: #333;
    display: grid;
    justify-items: center;
    padding-block: 1rem;
	gap: 1rem;
	width: 100%;
	overflow-x: clip;
}

.textcontent img {
	max-width: 100%;
	max-height: 100%;
	display: block;
}

.textcontent .imgb {
	background: var(--image);
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
    width: 100%;
    height: calc(100% - 0.5rem);
    position: absolute;
    z-index: -1;
    rotate: 2deg;
    top: 0.5rem;
    left: 0px;
	transition: filter 100ms, rotate 100ms;
}

.textcontent .imgc {
	background: var(--image);
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
    width: 100%;
    height: calc(100% - 0.5rem);
    position: absolute;
    z-index: -2;
    rotate: 4deg;
    top: 0.5rem;
    left: 0px;
	transition: filter 100ms, rotate 100ms;
}

.image:hover .imgb {
    rotate: 5deg;
}

.image:hover .imgc {
    rotate: 10deg;
}

.banner {
    width: 100vw;
    height: 20rem;
}

.banner .image {
    width: 100%;
    height: 100%;
	position: relative;
}

.banner img {
	display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: 50% 50%;
	top: 0px;
    left: 0px;
    position: absolute;
    opacity: 0;
	transition: var(--transitionTime, 500ms) opacity;
}

.banner img.active {
	opacity: 1;
}

.imagehtml,
.htmlimage {
    width: var(--contentWidth);
	display: grid;
    gap: 1rem;
	grid-template-areas: "image" "html";
}

.htmlvideo {
    width: var(--contentWidth);
	display: grid;
    gap: 1rem;
	grid-template-areas: "html" "image";
}

.videohtml {
    width: var(--contentWidth);
	display: grid;
    gap: 1rem;
	grid-template-areas: "image" "html";
}

.imagehtml .image,
.htmlimage .image,
.videohtml .video,
.htmlvideo .video {
	grid-area: image;
	padding-top: 0.5rem;
	position: relative;
    isolation: isolate;
    height: fit-content;
}

.imagehtml .html,
.htmlimage .html, 
.videohtml .html,
.htmlvideo .html {
	grid-area: html;
}

.videohtml .video,
.htmlvideo .video {
	width: 100%;
	aspect-ratio: 16 / 9;
}

@media screen and (min-width: 600px) {
	.imagehtml {
		grid-template-columns: 1fr 2fr;
		grid-template-areas: "image html";
	}
	.htmlimage {
		grid-template-columns: 2fr 1fr;
		grid-template-areas: "html image";
	}
	.videohtml {
		grid-template-columns: 1fr 1fr;
		grid-template-areas: "image html";
	}
	.htmlvideo {
		grid-template-columns: 1fr 1fr;
		grid-template-areas: "html image";
	}
}



img[data-ov="false"] {
	cursor: pointer;
	transition: filter 100ms;
}

img[data-ov="false"]:hover,
img[data-ov="false"]:hover + .imgb,
img[data-ov="false"]:hover + .imgb + .imgc {
	filter: contrast(0.75) brightness(1.25) drop-shadow(0px 3px 2px #0008);
}

.viewer.open {
	display: grid;
}

.viewer {
    background: #0008;
    position: fixed;
    inset: 0px;
    z-index: 20;
    overscroll-behavior: none;
    display: none;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: calc(100cqh - 8rem) 8rem;
}

.viewer.nothumbs {
    grid-template-rows: 100cqh;
}


.viewer.nothumbs .viewerleft,
.viewer.nothumbs .viewerright {
	opacity: 0;
	pointer-events: none;
}

.viewer.nothumbs .viewerthumbs {
	display: none;
}

.viewerimage {
    align-content: center;
    justify-self: center;
	padding-block: 1rem;
	position: relative;
}
.viewerimagediv {
    position: relative;
	isolation: isolate;
}
.viewerimage img {
    max-width: 100%;
    max-height: calc(100cqh - 11rem);
    display: block;
    object-fit: contain;
    /* border: 1rem solid #fff; */
    border: 1px solid #fff;
	background: #fff;
}

.viewerimage iframe {
	width: 90vw;
    height: 80vh;
    max-height: calc(100cqh - 11rem);
    display: block;
    object-fit: contain;
    border: 1px solid #fff;
	background: #fff;
}

.viewerimagediv img:has(+ span) {
    /* border-bottom: 0.5rem solid #fff; */
    border-bottom: none;
}

.viewerimagediv span {
	display: block;
    background: #fff;
    text-align: center;
	/* border-bottom: 0.5rem solid #fff; */
	border-bottom: 1px solid #fff;
}

.viewerleft,
.viewerright {
    color: #fff;
    font-size: 2rem;
    align-content: center;
    padding-inline: 0.5rem;
	opacity: 0.5;
	cursor: pointer;
	transition: 150ms opacity;
}

.viewerleft i,
.viewerright i {
	pointer-events: none;
}

.viewerleft:hover,
.viewerright:hover {
	opacity: 1;
}

.viewerthumbs {
    grid-column: 1 / -1;
	display: flex;
    overflow: auto hidden;
    gap: 0.5rem;
    justify-content: space-evenly;
}

.viewerthumbs img {
    border: 0.25rem solid #fff;
    filter: brightness(0.65);
    transition: 150ms filter;
	cursor: pointer;
	height: 100%;
}

.viewerthumbs img.active,
.viewerthumbs img:hover {
    filter: brightness(1);
}

.closeviewer {
    position: absolute;
    right: -0.75rem;
    top: -0.75rem;
    background: #222;
    color: #fff;
    border: 2px solid #fff;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
	z-index: 10;
}
.closeviewer:hover {
    background: #444;
}



.linkimage_reserveren {
    display: grid;
    grid-template-columns: 1fr;
    width: fit-content;
    gap: 1rem;
    margin: 0 auto;
}

@media screen and (min-width: 600px) {
	.linkimage_reserveren {
		grid-template-columns: 1fr 1fr;
	}
}

.linkimage_reserveren img {
	width: 100%;
	display: block;
	max-width: 20rem;
	filter: brightness(0.85);
	transition: 150ms filter, 150ms scale;
}

.linkimage_reserveren a {
	position: relative;
	overflow: hidden;
}

.linkimage_reserveren a::after {
    content: attr(title);
    position: absolute;
    width: 100%;
    height: 100%;
	font-size: 1.25rem;
    background: #0008;
    color: #fff;
    bottom: 0px;
    /* text-align: center; */
    /* padding-block: 0.5rem; */
	transition: 150ms background, 150ms color;
	display: grid;
    align-items: center;
    justify-items: center;
}

.linkimage_reserveren a:hover img {
	filter: brightness(1);
	scale: 1.1;
}

.linkimage_reserveren a:hover::after {
    background: #0004;
	color: #fff0;
}



label.image.check {
    width: 8rem;
    /* height: 4.5rem; */
    grid-row: 1 / 4;
    position: relative;
	cursor: pointer;
}

label.image.check:hover img {
	filter: brightness(0.9);
}
	
label.image.check img {
    height: 100%;
    width: 100%;
    object-fit: cover;
	display: block;
}

input[type="checkbox"]:checked + label.image.check::after {
    content: '';
    font-weight: 400;
    font-family: "Font Awesome 6 Pro";
    content: "\f00c";
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    background: #0006;
    color: #fff;
    text-shadow: 0px 1px 3px #000;
    top: 0px;
    left: 0px;
	backdrop-filter: blur(2px);
}
.row.form.vcenter {
	align-items: center;
}
.row.form.bordertop {
    border-top: 1px solid #ccc;
}

.row.paddingbottom {
    padding-bottom: 1rem;
}