@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root,
:host {
	--bg-color: white;
	--primary-color: #ac5e5e;
	--secondary-color: lightgrey;
	--hover-color: var(--secondary-color);
	--text-color: black;
	--fancybox-content-color: var(--text-color);
	--theme-color: lightblue;
	--odd-color: lightgrey;
	--footer-bg-color: #ac5e5e;
	--footer-text-color: white;
	--swiper-navigation-size: 3em;
	--swiper-theme-color: white;
	--header-height: 0px;

	--content-width: 90em;
	--content-padding: 2rem;
	--content-padding-vertical: calc(var(--content-padding) * 2);
	--content-padding-horizontal: var(--content-padding);

	--status-color-available: darkgreen;
	--status-color-unknown: darkorange;
	--status-color-unavailable: darkred;
}

body {
	color: var(--text-color);
	background-color: var(--bg-color);
	font-family: 'Outfit', sans-serif;
	margin: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	display: flex;
	flex-direction: column;
	min-height: 100vh;
	min-height: 100dvh;
}

body.toggled {
	overflow: hidden;
}

body.toggled header {
	overflow: auto;
	height: 100vh;
	background-color: #BDC9B5;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover:not(footer nav a, .contactForm a) {
	color: var(--hover-color);
}

.selectables a {
	text-decoration: underline;
}

h1 {
	margin: .6em 0;
	color: var(--primary-color);
	font-size: clamp(1.5em, 3vw, 2.5em);
	font-weight: 600;
	line-height: 1.1;
}

h2,
button.primary,
button.secondary {
	font-size: clamp(1em, 3vw, 1.2em);
}

h2 small {
	font-weight: normal;
	white-space: nowrap;
}

.colored-tile {
	position: absolute;
	top: 0;
	z-index: -1;
}

.colored-tile.left {
	left: 0;
	background-color: #AD5E5E;
	height: calc(var(--intro-height) + var(--box1-height));
	width: 50%;
}

.colored-tile.right {
	right: 0;
	background-color: #BDC9B5;	
	height: calc(var(--intro-height) + var(--box2-height));
	width: 50%;
}

header {
	position: sticky;
	background-color: transparent;
	top: 0;
	z-index: 100;
	height: 0;
}

header>.wrapper,
footer>.wrapper {
	margin: auto;
	max-width: var(--content-width);
	padding: var(--content-padding-vertical) var(--content-padding-horizontal);
	display: grid;
	grid-template-columns: auto auto;
	align-items: center;
	gap: 1.5em;
	transition: all .5s ease-in-out;
	position: relative;
	box-sizing: border-box;
}

header .items {
	display: flex;
	justify-content: end;
	align-items: center;
}

header .logo {
	display: none;
}

header .logo img {
	display: block;
	transition: all .5s ease-in-out;
	width: 100%;
	max-height: 4em;
	position: relative;
	left: 0;
}

header nav,
footer nav {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
}

header nav {
	gap: .25em;
	justify-self: end;
	align-self: center;
	flex-wrap: wrap;
	justify-content: end;
}

header nav a,
footer nav a {
	display: block;
	padding: .5em .25em;
}

header nav a {
	font-size: clamp(.7em, 1.5vw, 1em);
	color: var(--text-color);
	text-decoration: none;
	font-weight: 500;
	letter-spacing: 0.05em;
}

.toggled header nav a {
	color: white;
}

header nav a.active,
header nav a:hover {
	color: var(--hover-color);
}

header .nav-toggle {
	display: none;
	width: 3em;
	height: 3em;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.15);
}

header .nav-toggle::after {
	content: "\f0c9";
	font: var(--fa-font-thin);
	font-size: 2em;
	font-weight: bold;
}

.toggled header .nav-toggle::after {
	content: "\f00d";
}

header .language {
	position: absolute;
	top: 0;
	right: 2em;
	transition: all .2s ease-in-out;
}

header .language a {
	color: black;
	outline: 1px solid black;
	text-transform: uppercase;
	padding: .2em .5em;
}

header .language a.active {
	background-color: gray;
	color: white;
}

.desktopBurger header nav {
	display: none;
}

.desktopBurger.toggled header nav {
	justify-self: center;
	text-align: center;
	width: 100%;
	flex-wrap: nowrap;
}

.desktopBurger.toggled header nav {
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: all .5s ease-in-out;
}

.desktopBurger header .nav-toggle {
	display: flex;
	background-color: #AD5E5E;
	border-radius: 1px;
	pointer-events: all;
}

.desktopBurger header .wrapper {
	grid-template-columns: auto;
	gap: .5em;
	pointer-events: none;
}

.desktopBurger header nav a:first-child {
	border-top: 1px solid white;
}

.desktopBurger header nav a {
	padding: 1.5em 2.5em;
	border-bottom: 1px solid white;
}

.desktopBurger header nav {
	gap: 0;
	margin-top: 1em;
	pointer-events: all;
}

.scrolled header .language {
	opacity: 0;
}

.scrolled header .logo img {
	transition: all .5s ease-in-out;
	width: 50%;
}

main {
	flex-grow: 1;
}

main>.group>.wrapper,
main>section>.group>.wrapper,
.box>.wrapper>.group>.wrapper {
	max-width: 65em;
	margin: auto;
}

.group:not(.group-nopad)>.wrapper {
	padding: var(--content-padding-vertical) var(--content-padding-horizontal);
}

.group>.wrapper>.element {
	margin: 1em 0;
}

.group:not(.group-noclip)>.wrapper>.element:first-child,
.group:not(.group-noclip)>.wrapper>.element.title:first-child>.wrapper>h1,
.group:not(.group-noclip)>.wrapper>.element.subtitle:first-child>.wrapper>h2 {
	margin-top: 0;
}

.group:not(.group-noclip)>.wrapper>.element:last-child,
.group:not(.group-noclip)>.wrapper>.element.title:last-child>.wrapper>h1,
.group:not(.group-noclip)>.wrapper>.element.subtitle:last-child>.wrapper>h2 {
	margin-bottom: 0;
}

.group:not(.group-nopad) > .wrapper:has(> .images.element),
.group:not(.group-nopad) > .wrapper:has(> .image-link.element) {
	max-width: 80em;
}

main section:first-child .group .wrapper .slideshow:first-child {
	margin-top: -4em;
}

.consent-settings .group>.wrapper .links button.primary,
.consent-settings .group>.wrapper .links button.secondary {
	font-size: clamp(.6em, 3vw, 1em);
}

section {
	scroll-margin-top: 0;
}

.typo,
.legend,
.consent-dialog .consent-message,
footer nav a {
	font-size: clamp(.8em, 1.5vw, 1em);
	line-height: 1.6;
	letter-spacing: .5px;
}

/* elements */
.intro.element {
	max-width: var(--content-width);
	margin: auto;
}

.intro .wrapper {
	position: relative;
}

.intro .wrapper > .image {
	display: block;
	width: 100%;
	max-width: 60em;
}

.intro .logo,
.intro .bubble {
	position: absolute;
}

.intro .logo {
	width: clamp(150px, 20vw, 300px);
	top: 4em;
	left: 50%;
	transform: translateX(-135%);
}

.intro .bubble {
	bottom: 0;
	right: 10%;
	width: clamp(120px, 14vw, 200px);
	transition: transform .25s ease-in-out;
}

.intro .bubble:hover {
	transform: scale(1.1);
}

.image img,
.images img {
	display: block;
	width: 100%;
}

.image h2,
.images .legend {
	display: none;
}

.image-link .link {
	display: block;
	position: relative;
}

.image-link img {
	display: block;
	width: 100%;
}

.image.circle img {
	border-radius: 50%;
	width: clamp(200px, 24vw, 300px);
}

/*Fix Grid fr unit*/
.slideshow .swiper-slide {
	width: 100% !important;
}

.slideshow .swiper-slide>img {
	display: block;
	width: 100%;
}

.slideshow .swiper-slide>.legend {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	color: white;
	text-align: center;
	z-index: 1;
	pointer-events: none;
	text-shadow: 0px 0px 15px #333;
	padding: 2em;
}

.gallery .items {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1em;
}

.gallery img {
	display: block;
	width: 100%;
}

.gallery .items a {
	width: calc(32.5% - 0.3333333333em);
}

.viewport-animated.viewport-visible {
	opacity: 1;
	transform: translateY(0);
}

.box {
	background-color: var(--bg-color);
	color: var(--text-color);
}

.buttons {
	position: relative;
}

.buttons .wrapper {
	position: absolute;
	right: -2em;
	top: calc(clamp(80px, 20vw, 300px) * -1);
	z-index: 1;
	display: flex;
	gap: 1em;
}

.buttons .wrapper div img {
	width: clamp(90px, 24vw, 350px);
}

.columns:has(.distances) .items-2 .item:first-child {
	align-self: center;
	justify-self: center;
}

.columns:has(.distances) .items-2 .item:nth-child(2) > .group > .wrapper {
	padding-left: 0;
}

.distances table {
	width: 100%;
	border-spacing: 1px;
	border-collapse: collapse;
}

.distances table thead td {
	color: var(--text-color);
	background: none;
	font-size: 3em;
	padding: 0;
}

.distances table tbody tr {
	border-bottom: 1px solid var(--text-color);
}

.distances table td,
.distances table th {
	padding: .25em;
	text-align: center;
	min-width: 2em;
}

.distances table th {
	text-align: left;
	font-weight: normal;
}

.distances table td {
	white-space: nowrap;
}

.distances .walk::before {
	font-family: "Font Awesome 7 Pro";
	content: "\f554";
}

.distances .bike::before {
	font-family: "Font Awesome 7 Pro";
	content: "\f206";
}

.distances .car::before {
	font-family: "Font Awesome 7 Pro";
	content: "\f1b9";
}

.distances .public::before {
	font-family: "Font Awesome 7 Pro";
	content: "\f238";
}

.swiper {
	overflow-y: initial;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	display: none;
}

.image-link .legend,
.slideshow .swiper-slide>.legend {
	position: absolute;
	color: black;
	text-align: start;
	text-shadow: none;
	left: 0;
	bottom: 0;
	text-align: center;
	padding: .5em 1em;
	width: fit-content;
	background-color: var(--primary-color);
	color: white;
}

.button-links .items {
	display: flex;
	gap: 1em 3em;
	flex-wrap: wrap;
	justify-content: center;
}

.button-links span {
	font-size: .9em;
	align-self: start;
}

.button-links .items .icon {
	display: grid;
	grid-template-columns: auto;
	grid-template-rows: minmax(0, 1fr) .3fr;
	font-weight: 400;
	max-width: 10em;
	width: 100%;
}

.button-links .items .icon:hover {
	color: black;
}

.button-links .items .icon:hover>img {
	transform: scale(1.1);
}

.button-links .items .icon img {
	width: 100%;
	padding-bottom: 1em;
	transition: all .2s ease-in-out;
}

.links .items {
	display: flex;
	gap: .5em;
	flex-wrap: wrap;
}

[data-slider] .slider-input {
	padding: 0 8px;
	margin: 8px 0;
	height: 10px;
}

[data-slider] .slider-value {
	font-size: smaller;
}

[data-slider] .slider-value span {
	white-space: nowrap;
}

[data-slider] .slider-input,
[data-slider] .slider-input .noUi-handle {
	box-shadow: none;
}

/* Hide markers on slider handles */
[data-slider] .slider-input .noUi-handle::before,
[data-slider] .slider-input .noUi-handle::after {
	display: none;
}

[data-slider] .slider-input .noUi-connect {
	background: var(--offer-list-active-color);
}

[data-slider] .slider-input .noUi-handle {
	height: 18px;
	width: 18px;
	top: -5px;
	right: -9px;
	/* half the width */
	border-radius: 9px;
}

/* MODEL */
[data-iso] {
	position: relative;
	aspect-ratio: var(--is-iso-aspect-ratio, 16 / 9);
}

[data-iso] canvas {
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	background: transparent;
	bottom: 0;
	width: 100% !important;
	height: 100% !important;
	outline: none;
}

[data-iso] img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.model {
	background: var(--model-background-color, transparent);
}

.model:fullscreen {
	background: var(--model-background-color, white);
}

.model:fullscreen [data-model] {
	width: 100%;
	height: 100vh;
}

.model>.wrapper {
	position: relative;
}

.model-toolbar {
	position: absolute;
	display: flex;
	z-index: 1;
	gap: 1em;
}

.model-toolbar.model-toolbar-vertical {
	flex-direction: column;
}

.model-toolbar.model-toolbar-nw {
	top: 0;
	left: 0;
}

.model-toolbar.model-toolbar-ne {
	top: 0;
	right: 0;
}

.model-toolbar.model-toolbar-sw {
	bottom: 0;
	left: 0;
}

.model-toolbar.model-toolbar-se {
	bottom: 0;
	right: 0;
}

.model-toolbar.model-toolbar-navigation {
	bottom: 0;
	right: 4em;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, 1fr);
}

.model-toolbar.model-toolbar-navigation:not(.toggled) {
	display: none;
}

.model-logo svg {
	height: 1.1em;
}

.model-logo-small {
	display: none;
}

.model-logo svg {
	transition: opacity .5s ease;
	opacity: .7;
}

.model-logo:hover svg {
	opacity: 1;
}

@media(max-width: 1000px) {
	.model-logo-small {
		display: block;
	}

	.model-logo-large {
		display: none;
	}
}

.model-overlay,
.model-loading {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	box-sizing: border-box;
	z-index: 1;
	pointer-events: none;
}

.model-overlay {
	display: none;
}

.model-overlay.model-overlay-mouse,
.model-overlay.model-overlay-touch {
	/*display:grid;*/
	color: white;
	font-size: clamp(1em, 3vw, 1.5em);
	padding: 2em;
	text-align: center;
}

.model-overlay.model-overlay-mouse>div,
.model-overlay.model-overlay-touch>div {
	background: rgba(0, 0, 0, .3);
	padding: .5em 1em;
}

.model-overlay.model-overlay-mouse .model-info-touch,
.model-overlay.model-overlay-touch .model-info-mouse {
	display: none;
}

.model-loading,
.model-poster {
	transition-property: opacity, display;
	transition-duration: 0.25s;
	transition-behavior: allow-discrete;
}

.model-loading-done .model-loading,
.model-loading-done .model-poster {
	opacity: 0;
	display: none;
}

.model-toolbar-button {
	background: white;
}

button.model-toolbar-button {
	font: inherit;
	border: none;
	margin: 0;
	padding: 0;
	touch-action: manipulation;
}

.model-toolbar-button,
.model-toolbar-entry {
	display: none;
	box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
	border-radius: 50%;
}

.model-toolbar-button.model-control-enabled,
.model-toolbar-entry.model-control-enabled {
	display: block;
}

.model-toolbar-button::after,
.model-direction::after {
	display: block;
	font: var(--fa-font-regular);
	cursor: pointer;
	width: 1em;
	height: 1em;
	padding: 1em;
	margin: auto;
	text-align: center;
}

.model-poster {
	background-size: cover;
	background-position: center center;
}

.model-poster video {

	object-fit: cover;
	width: 100%;
	height: 100%;
}

.model-loading .model-toolbar-button {
	font-size: 2em;
}

.model-progress.model-control-enabled {
	display: grid;
	place-items: center;
}

.model-progress .model-progress-percent {
	font-size: .4em;
	grid-area: 1 / 1;
}

.model-progress::after {
	grid-area: 1 / 1;
	content: "\f110";
	animation-name: fa-spin;
	animation-duration: var(--fa-animation-duration, 2s);
	animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	animation-timing-function: var(--fa-animation-timing, linear);
}

.model-play {
	pointer-events: auto;
	cursor: pointer;
}

.model-play::after {
	content: "\f04b";
}

.model-ui button:not([disabled]),
.model-ui select:not([disabled]) {
	color: var(--text-color);
	/* ios safari input */
}

.model-toolbar .model-home::after {
	content: "\f015";
}

.model-toolbar .model-prev {
	grid-row: 2;
	grid-column: 1;
}

.model-toolbar .model-prev::after {
	content: "\f104";
}

.model-toolbar .model-next {
	grid-row: 2;
	grid-column: 3;
}

.model-toolbar .model-next::after {
	content: "\f105";
}

.model-toolbar .model-up {
	grid-row: 1;
	grid-column: 2;
}

.model-toolbar .model-up::after {
	content: "\f106";
}

.model-toolbar .model-down {
	grid-row: 3;
	grid-column: 2;
}

.model-toolbar .model-down::after {
	content: "\f107";
}

.model-toolbar .model-zoom-in {
	grid-row: 1;
	grid-column: 3;
}

.model-toolbar .model-zoom-in::after {
	content: "\f00e";
}

.model-toolbar .model-zoom-out {
	grid-row: 3;
	grid-column: 3;
}

.model-toolbar .model-zoom-out::after {
	content: "\f010";
}

.model-toolbar .model-fullscreen::after {
	content: "\f065";
}

.model-toolbar .model-maximize::after {
	content: "\f31e";
}

.model-toolbar .model-settings::after {
	content: "\f013";
}

.model-toolbar .model-controls-toggle::after {
	content: "\f047";
}

.model-menue-settings {
	border: none;
	inset: unset;
	position-area: top span-x-start;
	margin: 0 0 .5em 0;
	box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
	border-radius: .25em;
	padding: .5em;
}

.model-menue-settings select[data-setting-input] {
	appearance: none;
	background: white;
	font: inherit;
	display: block;
	width: 100%;
	border: none;
	text-align: right;
	margin-right: 1em;
	outline: none;
}

.model-menue-entry-content {
	overflow: hidden;
}

.model-menue-entry-content:has(select[data-setting-input]) {
	display: flex;
	align-items: baseline;
}

.model-menue-entry-content:has(select[data-setting-input])::after {
	content: "\f054";
	width: 1em;
	font: var(--fa-font-regular);
	font-size: smaller;
	margin-left: -1em;
	text-align: right;
	pointer-events: none;
}

.model-menue-entry {
	display: none;
	grid-template-columns: auto auto;
	gap: 1em;
	align-items: center;
	padding: .5em .25em;
}

.model-menue-entry.model-control-enabled {
	display: grid;
}

.model-direction {
	cursor: pointer;
	place-items: center;
}

/* good enough for now */
@media (orientation: landscape) and (max-height: 380px) {

	.model-direction,
	.model-direction.model-control-enabled {
		display: none;
	}
}

@media (orientation: portrait) and (max-height: 550px) {

	.model-direction,
	.model-direction.model-control-enabled {
		display: none;
	}
}

.model-direction svg {
	width: 3em;
	box-sizing: border-box;
	display: block;
	aspect-ratio: 1;
	padding: .25em;
	border-radius: 50%;
	background: rgba(255, 255, 255, .5);
	transform-style: preserve-3d;
	transform: rotate(var(--model-direction))
}

.model-tooltips,
.model-ui {
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	box-sizing: border-box;
}

.model-toolbars>* {
	pointer-events: auto;
}

.model-toolbars {
	margin: 1em;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.model-tooltip {
	--model-tooltip-padding: 1em;
	--model-tooltip-background: white;

	display: none;
	transform-style: preserve-3d;
	position: absolute;
	transform: translateX(-50%);
	pointer-events: none;
	padding-bottom: var(--model-tooltip-padding);
	transition: opacity .5s;
	z-index: var(--model-tooltip-z);
	cursor: pointer;
	transform: translate(calc(-50% + var(--model-tooltip-x)), calc(-100% + var(--model-tooltip-y)));
}

.model-tooltip::after {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	height: var(--model-tooltip-padding);
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	border-left: 1px solid var(--model-tooltip-background);
	border-right: 1px solid var(--model-tooltip-background);
}

.model-tooltip:not(:empty).model-tooltip-visible {
	display: block;
	pointer-events: auto;
}

/* DLV */
.dlv .dlv-title {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 1.25em;
}

.dlv .dlv-title h1 {
	margin: 0;
}

.dlv-popup table {
	width: 100%;
	border-collapse: collapse;
}

.dlv-popup table td,
.dlv-popup table th {
	padding: .25em .5em;
	white-space: nowrap;
}

.dlv-entry-body[data-dlv-popup]:hover {
	cursor: pointer;
}

.dlv .dlv-list .odd,
.dlv-popup tr:nth-child(odd) {
	background: var(--odd-color);
}

.dlv .dlv-list .even {
	background: white;
}

.dlv .dlv-group h2 {
	margin-top: 2em;
	margin-bottom: .5em;
}

.dlv [data-reference]:hover,
.dlv [data-reference].active {
	background: var(--hover-color);
}

.dlv .dlv-entry-header,
.dlv .dlv-entry-body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) minmax(0, 1fr);
	grid-template-areas: "dlv-title dlv-title dlv-title";
}

.dlv .dlv-entry-header:has(.dlv-entry-primary),
.dlv .dlv-entry-body:has(.dlv-entry-primary) {
	grid-template-areas: "dlv-title dlv-title dlv-primary";
}

.dlv .dlv-entry-header:has(.dlv-entry-facts),
.dlv .dlv-entry-body:has(.dlv-entry-facts) {
	grid-template-areas: "dlv-title dlv-facts dlv-primary";
}

@container (max-width: 35em) {

	.dlv .dlv-entry-header,
	.dlv .dlv-entry-body {
		grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
		grid-template-areas: "dlv-title dlv-title";
	}

	.dlv .dlv-entry-header:has(.dlv-entry-primary),
	.dlv .dlv-entry-body:has(.dlv-entry-primary) {
		grid-template-areas: "dlv-title dlv-primary";
	}

	.dlv .dlv-entry-header:has(.dlv-entry-facts),
	.dlv .dlv-entry-body:has(.dlv-entry-facts) {
		grid-template-areas: "dlv-title dlv-title"
			"dlv-facts dlv-primary";
	}

	.dlv .dlv-entry-header:has(.dlv-entry-facts) .dlv-entry-title,
	.dlv .dlv-entry-body:has(.dlv-entry-facts) .dlv-entry-title {
		border-bottom: 1px solid var(--odd-color);
	}

	.dlv .dlv-entry-body.odd:has(.dlv-entry-facts) .dlv-entry-title {
		border-bottom: 1px solid white;
	}
}

@container (max-width: 25em) {

	.dlv .dlv-entry-header:has(.dlv-entry-facts),
	.dlv .dlv-entry-body:has(.dlv-entry-facts) {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		grid-template-areas: "dlv-title dlv-primary"
			"dlv-facts dlv-facts";
	}

	.dlv .dlv-entry-body:has(.dlv-entry-facts) .dlv-entry-primary {
		border-bottom: 1px solid var(--odd-color);
	}

	.dlv .dlv-entry-body.odd:has(.dlv-entry-facts) .dlv-entry-primary {
		border-bottom: 1px solid white;
	}

	.dlv .dlv-entry-header .dlv-entry-primary {
		display: none;
	}
}

.dlv .dlv-list .dlv-entry-container {
	display: flex;
	flex-direction: column;
	container-type: inline-size;
}

.dlv .dlv-list .dlv-entry-body {
	padding: .5rem;
}

.dlv .dlv-list [data-reference] {
	cursor: pointer;
}

.dlv .dlv-list .dlv-entry-header {
	padding: 0 .5rem;
}

.dlv .dlv_reference,
.dlv-popup .dlv_reference {
	display: none;
}

.dlv .filter-button {
	display: grid;
	align-items: center;
	grid-template-columns: auto 1fr auto;
	gap: .5em;
	background: none;
	padding: .5em 0;
}

.dlv .filters {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	padding: .5rem 0;
	margin-top: 1px;
}

.dlv .filter-disabled,
.dlv .filters-disabled {
	display: none;
}

@container (max-width:40em) {
	.dlv .filters {
		flex-direction: column;
	}
}

.dlv .toggled .filters,
.dlv .filter-button:not(.active) .fa-angle-up,
.dlv .filter-button .fa-angle-down {
	display: none;
}

.dlv .filters .filter[data-filter-type=slider] {
	flex: 1 0 auto;
	min-width: 8em;
}

.dlv .filters .checkbox {
	display: block;
	margin: 5px 0;
	white-space: nowrap;
}

.dlv .filtered {
	display: none;
}

.dlv .dlv-list .dlv-entry-header {
	padding: 0 .5rem;
}

.dlv .dlv-entry-header .dlv-entry-field {
	text-transform: uppercase;
	font-size: .6em;
}

.dlv .dlv-entry-title,
.dlv-tooltip-title {
	grid-area: dlv-title;
}

.dlv .dlv-entry-facts,
.dlv-tooltip-facts {
	grid-area: dlv-facts;
}

.dlv .dlv-entry-facts {
	display: grid;
	grid-template-columns: var(--dlv-entry-column-sizes-secondary);
}

.dlv .dlv-entry-primary,
.dlv-tooltip-primary {
	grid-area: dlv-primary;
}

.dlv .dlv-entry-field,
.dlv-popup table td {
	padding: .5rem;
}

.dlv .dlv-entry-field {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	box-sizing: border-box;
}

.dlv .dlv-entry-field.dlv-entry-field-title,
.dlv-tooltip .dlv-entry-field.dlv-entry-field-title {
	font-weight: bold;
}

.dlv-tooltip {
	display: grid;
	grid-template-areas: "dlv-title"
		"dlv-primary";
}

.dlv-tooltip:has(.dlv-tooltip-facts) {
	grid-template-areas: "dlv-title dlv-primary"
		"dlv-facts dlv-facts";
}

.dlv-tooltip .dlv-tooltip-facts {
	display: flex;
	justify-content: space-between;
}

.dlv-tooltip:has(.dlv-tooltip-facts) .dlv-tooltip-primary {
	text-align: right;
}

.dlv-tooltip .dlv-entry-field {
	padding: .5em;
}

.dlv-tooltip {
	padding: .5em;
	box-shadow: 3px 3px 10px 0px rgba(50, 50, 50, .5);
	background-color: var(--model-tooltip-background);
	border-radius: .25em;
}

.model-tooltip:not(.active, .selected) .dlv-tooltip :is(.dlv-tooltip-title, .dlv-tooltip-facts, .dlv-tooltip-primary),
.model-tooltip:is(.active, .selected) .dlv-tooltip :is(.dlv-tooltip-icon) {
	display: none;
}

.model-tooltip:is(.active) {
	z-index: 1000;
}

.dlv-tooltip .dlv-tooltip-facts,
.dlv-tooltip:not(:has(.dlv-tooltip-facts)) .dlv-tooltip-primary {
	border-top: 1px solid var(--odd-color);
}


@container (max-width: 60em) {
	.dlv .dlv-entry-field {
		display: none;
	}

	.dlv .dlv-entry-field.required {
		display: block;
	}

	.dlv .dlv-entry-facts {
		grid-template-columns: var(--dlv-entry-column-sizes-required);
	}
}

/* offer*/
.offer .filters .filter[data-filter-type=slider][data-filter-field=rentalprice_incl],
.offer .filters .filter[data-filter-type=slider][data-filter-field=sellingprice],
.offer .filters .filter[data-filter-type=slider][data-filter-field=rentalpriceexcl_m2y] {
	flex: 2 0 auto;
}

.offer .filters .filter[data-filter-type=checkbox][data-filter-field=availability_status] label:not(:has(input[value=free])) {
	display: none;
}

.offer .dlv-entry-header .dlv-entry-title {
	display: none;
}

[data-dlv-context=offer] [data-reference]:not([data-availability_status="free"]) .primary,
[data-dlv-tooltip=offer]:not([data-availability_status="free"]) .primary {
	color: var(--status-color-unavailable);
}

[data-dlv-context=offer] [data-reference][data-availability_status="reserved"] .primary,
[data-dlv-tooltip=offer][data-availability_status="reserved"] .primary {
	color: var(--status-color-unknown);
}

[data-dlv-context=offer] [data-reference][data-availability_status="free"] .primary,
[data-dlv-tooltip=offer][data-availability_status="free"] .primary {
	color: var(--status-color-available);
	font-weight: bold;
}

.offer .dlv_reference,
.offer-popup .dlv_reference {
	display: initial;
}

.dlv-popup .dlv-popup-close {
	display: none;
}

/* prevent flash of icon for offer state change */
.model-tooltip:has([data-dlv-tooltip=offer]):not(.active, .selected) {
	display: none;
}

/* location*/
.model-tooltip.filter:has([data-dlv-tooltip=location]) {
	display: none;
}

[data-dlv-tooltip=location] .dlv_reference {
	display: none;
}

.property_status.tag-pill {
	font-size: .5em;
	vertical-align: middle;
	border-color: var(--contrast-color);
	color: var(--contrast-color);
}

:not([data-availability_status="free"]) .property_status.tag-pill {
	--contrast-color: var(--status-color-unavailable);
}

[data-availability_status="reserved"] .property_status.tag-pill {
	--contrast-color: var(--status-color-unknown);
}

[data-availability_status="free"] .property_status.tag-pill {
	--contrast-color: var(--status-color-available);
}

/* interactive */
.interactive {
	--interactive-height: calc(100lvh - var(--header-height));
}

.interactive:fullscreen {
	--header-height: 0px;
	background: white;
}

.interactive>.wrapper>.items {
	display: grid;
}

.interactive.interactive-size-medium {
	max-width: 100em;
	margin: auto;
	/* scroll innerhalb vom angebot/offer */
	height: 100dvh;
	overflow: auto;
}

.interactive .interactive-model,
.interactive .interactive-model .model,
.interactive .interactive-model .model>.wrapper,
.interactive .interactive-model .model .model-iso,
.interactive .interactive-model .model .model-poster {
	grid-area: iso;
}

.interactive [data-model] {
	width: 100%;
	height: var(--interactive-height);
}

.interactive .interactive-model,
.interactive .interactive-model .model,
.interactive .interactive-model .model>.wrapper {
	display: grid;
	grid-template-rows: subgrid;
	grid-template-columns: subgrid;
}

.interactive .interactive-model .model .model-ui {
	position: relative;
	grid-area: iso;
}

.interactive .interactive-model .model .model-toolbars {
	margin: var(--interactive-sidebar-margin, 1em);
}

.interactive .interactive-model .model .model-iso,
.interactive .interactive-model .model .model-ui,
.interactive .interactive-model .model .model-poster {
	position: sticky;
	top: var(--header-height);
	overflow: hidden;
	height: var(--interactive-height)
}

.interactive .interactive-sidebar {
	position: relative;
	container-type: inline-size;
	grid-area: sidebar;
	margin: var(--interactive-sidebar-margin, 0px);
}

.interactive .interactive-sidebar,
.interactive .dlv-popup,
.interactive .dlv-popup .dlv-popup-header {
	background: white;
}

.interactive .interactive-sidebar-popup {
	position: sticky;
	bottom: 0;
	width: 100%;
	height: 0;
	transition: all .5s;
	transform: translateY(100%);
	opacity: 0;
	pointer-events: none;
	z-index: 1;
}

.interactive.interactive-state-popup .interactive-sidebar-popup {
	transform: translateY(0%);
	height: var(--interactive-height);
	opacity: 1;
	pointer-events: auto;
}

.interactive .interactive-sidebar-popup .dlv-popup-header {
	position: sticky;
	top: 0;
}

.interactive .interactive-sidebar-popup .dlv-popup-header .title h1 {
	display: flex;
	justify-content: space-between;
	gap: .25em;
}

.interactive .interactive-sidebar-popup .dlv-popup-header .title .dlv-popup-title {
	overflow: hidden;
	text-overflow: ellipsis;
}

.dlv-popup .dlv-popup-header>.wrapper {
	padding-bottom: calc(var(--content-padding-vertical) / 2);
}

.dlv-popup .dlv-popup-body>.wrapper {
	padding-top: calc(var(--content-padding-vertical) / 2);
}

.interactive .dlv-popup .dlv-popup-close {
	display: initial;
	cursor: pointer;
}

.interactive .interactive-sidebar .interactive-sidebar-toggle {
	position: absolute;
	top: 0;
	right: 0;
	border: 1px solid black;
	z-index: 101;
	background: white;
	cursor: pointer;

}

@keyframes fade-in {
	0% {
		transform: translateY(100%);
		opacity: 0;
	}

	100% {
		transform: translateY(0%);
		opacity: 1;
	}
}

@keyframes fade-out {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

.interactive .dlv-popup.toggled {
	display: block;
	overflow: auto;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	animation: fade-in 250ms forwards;
}

.interactive .dlv-popup.closing {
	animation: fade-out 250ms forwards;
}

@media(orientation: landscape) {
	.interactive {
		--interactive-sidebar-width: 40em;
	}

	.interactive.interactive-model-background {
		--interactive-sidebar-margin: 2em;
	}

	.interactive.interactive-sidebar-toggled {
		--interactive-sidebar-width: 5em;
	}

	.interactive.interactive-sidebar-right>.wrapper>.items {
		grid-template-areas: "iso sidebar";
		grid-template-columns: 1fr minmax(0, min(var(--interactive-sidebar-width) + var(--interactive-sidebar-margin, 0px), 40%));
	}

	.interactive.interactive-sidebar-left>.wrapper>.items {
		grid-template-areas: "sidebar iso";
		grid-template-columns: minmax(0, min(var(--interactive-sidebar-width) + var(--interactive-sidebar-margin, 0px), 40%)) 1fr;
	}

	.interactive.interactive-sidebar-right.interactive-model-background .interactive-model,
	.interactive.interactive-sidebar-right.interactive-model-background .interactive-model .model,
	.interactive.interactive-sidebar-right.interactive-model-background .interactive-model .model>.wrapper,
	.interactive.interactive-sidebar-right.interactive-model-background .interactive-model .model .model-iso,
	.interactive.interactive-sidebar-right.interactive-model-background .interactive-model .model .model-poster {
		grid-area: iso / iso / sidebar / sidebar;
	}

	.interactive.interactive-model-background .interactive-sidebar-content,
	.interactive.interactive-model-background .interactive-sidebar-popup {
		border-radius: .25em;
	}

	.interactive.interactive-sidebar-right.interactive-model-background .interactive-sidebar {
		margin-left: 0;
	}

	.interactive.interactive-sidebar-left.interactive-model-background .interactive-sidebar {
		margin-right: 0;
	}

	.interactive.interactive-sidebar-left.interactive-model-background .interactive-model,
	.interactive.interactive-sidebar-left.interactive-model-background .interactive-model .model,
	.interactive.interactive-sidebar-left.interactive-model-background .interactive-model .model>.wrapper,
	.interactive.interactive-sidebar-left.interactive-model-background .interactive-model .model .model-iso {
		grid-area: sidebar / sidebar / iso / iso;
	}

	.interactive.interactive-sidebar-scroll .interactive-sidebar,
	.interactive.interactive-sidebar-scroll .interactive-sidebar-content,
	.interactive:fullscreen .interactive-sidebar,
	.interactive:fullscreen .interactive-sidebar-content {
		max-height: calc(var(--interactive-height) - var(--interactive-sidebar-margin, 0px) * 2);
	}

	.interactive.interactive-sidebar-scroll .interactive-sidebar,
	.interactive:fullscreen .interactive-sidebar {
		overflow: hidden;
	}

	.interactive.interactive-sidebar-scroll .interactive-sidebar-content,
	.interactive:fullscreen .interactive-sidebar-content {
		overflow: auto;
	}
}

@media(orientation: landscape) and (max-width: 1000px) {
	.interactive.interactive-model-background {
		--interactive-sidebar-margin: 1em;
	}
}

@media(max-width: 400px) {
	.model-ui {
		font-size: smaller;
	}
}

@media(orientation: portrait) {
	.interactive {
		--interactive-sidebar-height: 50svh;
	}

	.interactive.interactive-sidebar-toggled {
		--interactive-sidebar-height: 75svh;
	}

	.interactive>.wrapper>.items {
		grid-template-columns: none;
		grid-template-areas: "iso"
			"sidebar";
	}

	/* required to make sticky work */
	.interactive .interactive-model,
	.interactive .interactive-model .model,
	.interactive .interactive-model .model>.wrapper,
	.interactive .interactive-model .model .model-iso,
	.interactive .interactive-model .model .model-poster {
		grid-area: iso / iso / sidebar / sidebar;
	}


	.interactive .interactive-model .model .model-iso,
	.interactive .interactive-model .model .model-ui,
	.interactive .interactive-model .model .model-poster {
		grid-area: iso;
		z-index: 2;
	}

	.interactive .interactive-model .model .model-iso,
	.interactive .interactive-model .model .model-ui,
	.interactive .interactive-model .model .model-poster,
	.interactive [data-model] {
		height: calc(var(--interactive-sidebar-height) - var(--header-height) / 2);
	}

	.interactive .model-iso {
		background: var(--model-background-color, var(--offer-bg-color));
	}

	.interactive.interactive-state-popup .interactive-sidebar-popup {
		height: calc((100dvh - var(--header-height)) - (var(--interactive-sidebar-height) - var(--header-height) / 2));
	}

	.interactive .interactive-sidebar {
		margin: 0;
		display: block;
	}

	.interactive:fullscreen .interactive-sidebar,
	.interactive:fullscreen .interactive-sidebar-content {
		max-height: var(--interactive-sidebar-height);
	}

	.interactive:fullscreen .interactive-sidebar {
		overflow: hidden;
	}

	.interactive:fullscreen .interactive-sidebar-content {
		overflow: auto;
	}
}

/* rau offer custom styles */

.interactive .dlv-popup {
	box-shadow: gray 0px 0px 10px 0px;
}

.model-toolbar-button:not([disabled]),
.model-ui button:not([disabled]),
.model-ui select:not([disabled]) {
	color: black;
}

[data-slider] .slider-input .noUi-connect {
	background: var(--offer-list-active-color);
}

.noUi-target {
	border-color: var(--offer-list-active-color);
}

.interactive>.wrapper,
.interactive .model-iso {
	background-color: var(--offer-bg-color, white);
}

.model-tooltip {
	color: black;
}

.dlv [data-reference]:hover,
.dlv [data-reference].active {
	background: var(--offer-list-active-color);
}

.dlv .dlv-entry-header,
.dlv .dlv-entry-body {
	border-bottom: 1px solid var(--offer-list-border-color, black);
}

.dlv .dlv-list .odd,
.dlv .dlv-list .even {
	background-color: transparent;
}

.dlv .dlv-list .dlv-entry-header {
	color: var(--offer-list-text-th-color, var(--offer-list-text-color), var(--text-color));
}

.dlv .dlv-list .odd,
.dlv-popup tr:nth-child(2n+1) {
	background-color: var(--offer-list-row-odd-color, transparent);
}

.dlv .dlv-list .even,
.dlv-popup tr:nth-child(2n) {
	background-color: var(--offer-list-row-even-color, transparent);
}

.dlv [data-reference]:hover,
.dlv [data-reference].active {
	background-color: var(--offer-list-active-color, var(--primary-color));
}

.dlv-tooltip .dlv-tooltip-facts,
.dlv-tooltip:not(:has(.dlv-tooltip-facts)) .dlv-tooltip-primary {
	border-top: 1px solid lightgrey;
}

.offer-color-wrapper {
	background-color: var(--offer-bg-color);
}

.interactive .interactive-sidebar-content,
.interactive .interactive-sidebar,
.interactive .dlv-popup,
.interactive .dlv-popup .dlv-popup-header {
	color: var(--offer-list-text-color);
	background-color: var(--offer-list-bg-color, var(--offer-bg-color, white));
}

.interactive .dlv-popup {
	background-color: var(--offer-popup-bg-color, var(--offer-bg-color));
	color: var(--offer-popup-text-color, var(--offer-list-text-color), var(--text-color));
}

.interactive .dlv-popup .typo {
	color: var(--offer-popup-text-color, var(--offer-list-text-color), var(--text-color));
}

.interactive .typo,
.interactive .interactive-sidebar-content .title h1 {
	color: var(--offer-list-text-color, var(--text-color));
}

.interactive .dlv-popup,
.interactive .dlv-popup .dlv-popup-header,
.dlv-popup-header,
.dlv-popup-body {
	background-color: var(--offer-popup-bg-color, var(--offer-list-bg-color, white));
}

.dlv .f-html .title h1,
.dlv-popup-header .title h1 {
	color: var(--offer-popup-text-color, var(--offer-list-text-color, --text-color));
}

.dlv-popup .facts table tr {
	border-bottom: 1px solid var(--offer-list-border-color, black);
}

.dlv-popup .facts tr:first-child {
	border-top: 1px solid var(--offer-list-border-color, black);
}

.model-logo {
	display: none;
}

.plan img {
	display: block;
	width: 100%;
	box-shadow: 0 0 2px 1px #ddd;
}

[data-toggle] {
	cursor: pointer;
	user-select: none;
}

.property_status.tag-pill {
	font-size: .5em;
	vertical-align: middle;
	border-color: var(--contrast-color);
	color: var(--contrast-color);
}

:not([data-availability_status="free"]) .property_status.tag-pill {
	--contrast-color: var(--status-color-unavailable);
}

[data-availability_status="reserved"] .property_status.tag-pill {
	--contrast-color: var(--status-color-unknown);
}

[data-availability_status="free"] .property_status.tag-pill {
	--contrast-color: var(--status-color-available);
}

.plan img {
	display: block;
	width: 100%;
	box-shadow: 0 0 2px 1px #ddd;
}

.video video {
	display: block;
	width: 100%;
}

.accordion .accordion-header h3 {
	margin: 0;
	font-size: clamp(.8em, 2.5vw, 1.2em);
	display: flex;
	align-items: baseline;
	gap: .5em;
	transition: all .1s ease-in-out;
}

.accordion .accordion-header h3:before {
	flex-shrink: 0;
	text-align: center;
	content: "\f054";
	font: var(--fa-font-regular);
	width: 1em;
	transition: all .1s ease-in-out;
}

.accordion .accordion-item {
	margin: 2em 0;
}

.accordion .accordion-item h3:hover {
	cursor: pointer;
}

.accordion .accordion-item.toggled .accordion-header h3:before {
	transform: rotate(90deg);
}

.accordion .accordion-item:not(.toggled) .accordion-body {
	display: none;
}

.columns.element > .wrapper {
	max-width: var(--content-width);
	margin: auto;
}

.columns.element .item > .group > .wrapper:not(:has(.box)) {
	padding: var(--content-padding-vertical) var(--content-padding-horizontal);
}

.columns.element .box > .wrapper > .group > .wrapper {
	max-width: 35em;
}

.columns.element .item:nth-child(2) .box > .wrapper > .group > .wrapper {
	margin: 0;
	padding-left: 0;
}

.columns.element .box.element {
	margin-bottom: 0;
}

.columns.element .items {
	display: grid;
	gap: var(--content-padding);
}

.columns.element .items-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
}

.columns.element .items-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

section > .columns:first-of-type .images {
	background-color: #BDC9B5;
}

section > .columns:first-of-type .images img {
	padding-top: 8em;
}

.columns.element .items-2 .image-link .item {
	text-align: center;
}

.columns.element .items-2 .image-link .legend {
	position: static;
}

input,
select {
	margin: 0;
}

input[type=text],
input[type=email],
input[type=tel],
textarea,
button,
select {
	box-sizing: border-box;
	font: inherit;
	color: inherit;
}

input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
	display: block;
	width: 100%;
	border: 1px solid var(--theme-color);
	padding: .5em;
	border-radius: 0;
	background-color: white;
	border: 1px solid black;
	padding: .3em;
}

input::placeholder {
	color: #1D140B;
	opacity: 1;
	font: inherit;
}

input[type=checkbox],
input[type=radio] {
	appearance: none;
	-webkit-appearance: none;
	flex: 0 0 auto;
	width: 1.5em;
	height: 1.5em;
	background: white;
	border: 1px solid var(--text-color);
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	border-radius: 0;
	margin-bottom: 0;
	margin-top: .25em;
}

input[type=checkbox]:after,
input[type=radio]:after {
	color: var(--text-color);
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-family: 'Font Awesome 7 Pro';
	font-weight: 400;
	font-size: 1.2em;
}

input[type=checkbox]:after {
	content: "";
}

input[type=checkbox]:checked:after {
	content: "\f00c";
}

input[type=radio]:after {
	content: "";
}

input[type=radio]:checked:after {
	content: "\f00c";
}

.button,
button {
	background: var(--primary-color);
	border: none;
	color: white;
	cursor: pointer;
	padding: .4em 1em;
	white-space: nowrap;
	display: inline-block;
	font-weight: normal;
	border-radius: 2em;
	text-align: center;
}

button.primary:hover {
	background: var(--secondary-color);
}

.button.primary,
button.primary {
	min-width: 12em;
}

.button.secondary,
button.secondary {
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
	background: none;
}

button.secondary:hover {
	color: var(--secondary-color);
	background-color: var(--primary-color);
}

select {
	appearance: none;
	background: none;
}

.contact>.wrapper {
	max-width: 65em;
	margin: auto;
	margin-top: 1.25em;
}

.contact .form-group {
	margin-bottom: 1.2em;
}

.contact .form-split-1-3 {
	display: grid;
	gap: 1em;
	grid-template-columns: 1fr 3fr;
}

.contact .form-label {
	display: block;
	padding-bottom: 0.1em;
}

.contact .form-warning {
	color: red;
	margin-bottom: .5em;
	margin-top: .25em;
	display: block;
	width: 100%;
}

.contact .form-invalid {
	border-color: red;
}

.contact .form-interest-selection {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 1em;
}

.contact .form-interest-selection [data-interest-type=radio],
.contact .form-interest-selection [data-interest-type=select] {
	grid-column: 1 / span 2;
}

.contact .selectables {
	display: flex;
	flex-wrap: wrap;
	gap: 0 1em;
}

.contact .selectables>label {
	display: flex;
	align-items: start;
	gap: .5em;
}

.contact input[name=Email_Address] {
	display: none;
}

.contact .items {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, .6fr);
	gap: 2em;
	margin: 0;
	justify-items: center;
}

.contact .ajax-loading,
.contact .ajax-error,
.contact .mail.success,
.contact .mail.error {

	background: green;
	padding: 3em 1em;
	text-align: center;
	color: white;
}

.contact .ajax-error,
.contact .mail.error {
	background: red;
}

.contact .ajax-form .ajax-loading,
.contact .ajax-form .ajax-result,
.contact .ajax-form .ajax-error,
.contact .ajax-form.ajax-state-loading form,
.contact .ajax-form.ajax-state-success form {
	display: none;
}

.contact .ajax-form.ajax-state-loading .ajax-loading,
.contact .ajax-form.ajax-state-success .ajax-result,
.contact .ajax-form.ajax-state-error .ajax-error {
	display: block;
}


.contact .info {
	display: flex;
	flex-direction: column;
	gap: 3em;
}

.contact .items .person .image {
	margin-bottom: 2em;
}

.contact .items .person .image img {
	width: 100%;
	max-width: 15em;
}

.contact .items .company .logo img {
	width: 100%;
	max-width: 15em;
}

.contact .selectables {
	gap: .5em 1em;
}

.responsive {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 1em;
	height: 0;
	overflow: hidden;
}

.responsive.offer_custom {
	height: calc(100svh - var(--header-height));
	padding: 0;
}

.responsive iframe,
.responsive>.consent-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* */
.text-left {
	text-align: left;
}

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

.text-right {
	text-align: right;
}

.fancybox__container {
	--fancybox-bg: rgba(24, 24, 27, 0.92);
}

.f-html {
	--content-padding-vertical: var(--content-padding);
	padding: 0;
	width: 50em;
	max-width: 100%;
}

.fancybox__slide.has-image .f-html {
	width: 100%;
}


.icon::after,
.icon::before {
	text-align: center;
	font: var(--fa-font-regular);
}

.consent-cover {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .2);
	display: flex;
	justify-content: center;
	align-items: center;
}

.consent-cover .consent-message {
	text-align: center;
}

.consent-cover-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .5em;
	padding: 2em;
}

.consent-dialog {
	position: sticky;
	bottom: 0;
	background: white;
	z-index: 100;
	box-shadow: 3px 3px 10px 0px rgb(50 50 50);
}

.consent-dialog>.wrapper {
	display: flex;
	flex-direction: column;
	gap: .5em;
	margin: auto;
	max-width: var(--content-width);
	padding: var(--content-padding) var(--content-padding-horizontal);
	box-sizing: border-box;
}

.toggle-button {
	font-size: 1.4em;
	position: relative;
	width: 2em;
	height: 1em;
	background: gray;
	box-sizing: border-box;
	border-radius: .5em;
	transition: background .5s;
	cursor: pointer;
}

.toggle-button::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: calc(1em - 4px);
	height: calc(1em - 4px);
	margin: 2px;
	background: white;
	border-radius: .4em;
}

.toggle-button.active {
	background: green;
}

.toggle-button.active::after {
	right: 0;
	left: auto;
}

a[consent-settings] {
	cursor: pointer;
}

.consent-settings .consent-links {
	font-size: clamp(.6em, 2vw, 1.1em);
}

.consent-settings .tab {
	border-top: 1px solid black;
}

.consent-settings .consent-preferences {
	border-bottom: 1px solid black;
}

.consent-settings .tab .header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: .5em;
}

.consent-links {
	gap: .5em;
	display: inline-flex;
	text-decoration: underline;
	flex-wrap: wrap;
}

.consent-settings .tab [data-toggle] {
	cursor: pointer;
}

.consent-settings .tab [data-toggle] h2 {
	display: flex;
	gap: .5em;
	align-items: center;
}

.consent-settings .tab [data-toggle] h2::before {
	display: grid;
	width: 1em;
	height: 1em;
	place-items: center;
	font: var(--fa-font-regular);
	content: "\f054"
}

.consent-settings .tab [data-toggle].active h2::before {
	content: "\f078";
}


.consent-settings .tab .body {
	padding-bottom: 1em;
}

.tab .body.toggled {
	display: block;
}

.tag-pill {
	padding: .1em .5em;
	border: 1px solid var(--odd-color);
	border-radius: .5em;
	margin-top: -.25em;
}

.hidden {
	display: none;
}

footer {
	--content-padding-vertical: var(--content-padding);
	background-color: var(--footer-bg-color);
	color: var(--footer-text-color);
}

footer nav {
	gap: 0 1em;
	justify-content: flex-end;
}

footer nav a {
	color: var(--footer-text-color);
}

@media(max-width: 1570px) {
	.buttons .wrapper {
		right: -1.5em;
	}
}

@media(max-width:1415px) {
	.columns:has(.distances) .items-2 .item:first-child {
		justify-self: start;
	}
}

@media(max-width:1200px) {
	.layout2cols .items {
		grid-template-columns: auto;
	}

	.buttons .wrapper {
		top: calc(clamp(80px, 20vw, 300px) * -1.2);
	}

	.intro .bubble {
		bottom: -1em;
	}
}

@media(max-width:1000px) {
	:root {
		--content-padding: 1em;
	}

	header nav {
		display: none;
		gap: 0;
		margin-top: 1em;
	}

	header nav a {
		padding: 1.5em 2.5em;
		border-bottom: 1px solid var(--primary-color);
	}

	header nav a:first-child {
		border-top: 1px solid var(--primary-color);
	}


	header .language {
		right: 1em;
	}

	header .wrapper,
	footer .wrapper {
		grid-template-columns: auto;
		gap: .5em;
		padding: 1em;
	}

	footer .wrapper {
		text-align: center;
		justify-content: center;
	}

	header .items {
		gap: 2em;
	}

	.scrolled header .wrapper {
		padding: .25em 1em;
	}

	.scrolled header .logo img {
		width: 80%;
		margin: 0;
		opacity: 1;
	}

	.toggled header nav {
		justify-self: center;
		text-align: center;
		width: 100%;
		flex-wrap: nowrap;
		display: flex;
		flex-direction: column;
		justify-content: center;
		transition: all .5s ease-in-out;
	}

	.toggled header nav,
	.contact .items {
		display: block;
	}

	header .nav-toggle {
		display: flex;
	}

	.gallery .items a {
		width: calc(50% - .5em);
	}

	.columns.element .items-3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.columns.element .items-3 .item:nth-child(3) {
		grid-column: 1 / span 2;
		justify-self: center;
		width: 50%;
	}

	.columns:has(.distances) .items-2 .item:nth-child(2) > .group > .wrapper,
	.columns.element .item:nth-child(2) .box > .wrapper > .group > .wrapper {
		padding-left: var(--content-padding-horizontal);
	}

	.buttons .wrapper {
		right: -.7em;
	}

	.contact .items .info {
		padding-top: 2em;
	}

	main section:first-child .group .wrapper .slideshow:first-child {
		margin-top: -2em;
	}

	.consent-dialog .wrapper {
		padding: 1em;
	}

	.contact .form-split-1-3 {
		grid-template-columns: auto auto;
	}

	input[type=checkbox],
	input[type=radio] {
		width: 1.2em;
		height: 1.2em;
	}

	input[type=checkbox]:after,
	input[type=radio]:after {
		font-size: 1em;
	}
}

@media(max-width:900px) {
	.intro .logo {
		transform: translateX(-50%);
	}
}

@media(max-width:800px) {

	.distances table td,
	.distances table th {
		min-width: .8em;
	}
}

@media(max-width:680px) {
	.colored-tile {
		display: none;
	}

	.intro .logo {
		top: 2em;
	}

	.dlv .dlv-list .dlv-entry-container,
	.dlv .filter-button {
		font-size: .65em;
	}

	.dlv .dlv-list .dlv-entry-container h2 {
		font-size: 1.5em;
	}

	.model-tooltip {
		font-size: .6em;
	}

	.columns.element .items-2 {
		grid-template-columns: minmax(0, 1fr);
		gap: 1em;
	}

	.columns.element .items-3 {
		grid-template-columns: minmax(0, 1fr);
		gap: 1em;
	}

	.columns.element .items-3 .item:nth-child(3) {
		grid-column: 1;
		width: 100%;
	}

	section > .columns:first-of-type .images img {
		padding-top: 0;
	}

	.columns:has(.distances) .items-2 .item:first-child {
		justify-self: center;
	}
}


@media(max-width:500px) {

	.intro .bubble {
		right: var(--content-padding);
	}

	.group .element {
		margin: 1em 0;
	}

	.buttons .wrapper {
		gap: .5em;
	}

	.layout2cols .items {
		gap: 2em;
	}

	.button-links .items {
		justify-content: center;
	}

	.buttons .wrapper {
		top: calc(clamp(80px, 20vw, 300px) * -1);
	}

	.consent-cover-info {
		font-size: 14px;
	}

	.swiper-button-next:after,
	.swiper-button-prev:after {
		font-size: 2em;
	}

	footer .wrapper {
		text-align: center;
	}

	footer nav {
		flex-direction: column;
		gap: 0;
	}

	.f-html .group>.wrapper,
	.consent-settings .group>.wrapper {
		padding: 1em;
	}
}