:root
{
	--body-color: #FFFFFF;
	--text-color: black;
	
	--theme-color: blue;
	--theme-color-light: lightblue;
	
	--box-bg-color: #cff0f8;
	
	--footer-bg-color: #575756;
	--footer-text-color: #FFFFFF;
	
	--hover-color: var(--theme-color-light);
	--swiper-navigation-size: 3em;
	--swiper-theme-color: white;
	
	--is-iso-level-spacing:-200px;

	--status-color-available:green;
	--status-color-unknown:darkorange;
	--status-color-unavailable:red;

	--offer-bg-color: var(--box-bg-color);
	--offer-text-color: var(--text-color);
	--offer-text-color-th: var(--text-color);
	--offer-active-color: var(--theme-color);
	
	
	--content-padding-vertical: 2em;
	--content-padding-horizontal: 1.5em;

	--header-gap: clamp(3rem, 6vw, 8rem);
}

body
{
	color:var(--text-color);
	background-color: var(--body-color);
	font-family: var(--font-family), sans-serif;
	font-weight: 300;
	margin:0;
}

body.intro main > a.introskip {
	display: block;
	text-decoration: none;
	height: 100dvh;
	overflow: hidden;
}

body.intro header {
	height: 0;
}

body.intro header .wrapper {
	padding-top: 0;
}

body.intro header .logo > a {
	padding: 1.2em 2em;
	background-color: var(--body-color);
}

.intro.element .wrapper {
	display: grid;
	grid-template-columns: repeat(2, minmax(0,1fr));
	grid-template-rows: 1fr;
	height: 100svh;
}

.intro.element .logo {
	display: none;
}

.intro.element .image {
	position: relative;
	height: 100%;
}

.intro.element .image .bg
{
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	height: 100%;
	width: 100%;
}

.intro.element .skip .skip-button {
	width: 10em;
	position: absolute;
	bottom: 10%;
	left: 50%;
	transform: translate(-50%);
	z-index: 100;
}

.intro.element .skip .skip-button img 
{
	display: block;
}




/*
body.toggled
{
	overflow: hidden;
}

*/

body.toggled header
{
	overflow: auto;
	max-height: 100vh;
}

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

strong
{
	font-weight: bold;
}

.scroll-animated
{
	transform: translateY(5vh);
	opacity: 0;
}

.scroll-visible
{
	transition: transform .6s cubic-bezier(.3,.1,.3,1), opacity .9s ease-out;
	transform: none;
	opacity: 1;
}

header
{
	top:0;
	position:sticky;
	z-index: 100;
	background-color: var(--body-color);
}

header .wrapper,
footer > .wrapper
{
	margin:auto;
	max-width:100em;
	padding:1.2em 2em;
	transition: all .5s ease-in-out;
}

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

header .items
{
	position: relative;
	display:grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.5fr) minmax(0, 1fr);
	justify-content: center;
	align-items: center;
}

header .logo
{
	display: flex;
	justify-content: center;
}

.intro.element .logo img,
header .logo img
{
	display:block;
	width: clamp(5em,8vw,9em);
	transition: all .5s ease-in-out;
	
}

.scrolled header .logo img {
	width: clamp(5em,4vw,4.5em);
}

header nav,
footer nav
{
	display:flex;
	gap: 1.5em;
}

header nav
{
	text-transform: uppercase;
	justify-content: center;
	gap: var(--header-gap);
	font-weight: 400;
	font-size: clamp(16px, 1.5vw, 20px);
}

header nav.mobile {
	display: none;
	font-size: clamp(16px, 6vw, 26px);
}

header nav a
{
	text-decoration: none;
	border-bottom: 2px solid transparent;
	color: var(--navi-color);
	line-height: 1.3em;
	font-weight: 500;
	position: relative;
	transition: all 0.4s ease-in-out;
}

header nav a.active,
header nav a:hover {
	color: var(--border-color);
	border-bottom: 2px solid var(--border-color);
}

/* header nav a:before { 
	content: ''; 
	bottom: -3px; 
	height: 1px; 
	display: block; 
	left: 0; 
	position: absolute; 
	background-color: var(--navi-color); 
	width: 0; 
	transition: all 0.7s cubic-bezier(0.65, 0, 0.49, 0.9);
	
} */

/* header nav a:hover:before,
header nav a.active:before
{
	width: 100%;
} */

header .headerbutton
{
	display: block;
	width: 110px;
	position: absolute;
	left: -170px;
	top: 2.2em;
	z-index: 2;
	transition : all .25s;
}

header .headerbutton:hover
{
	transform: scale(1.1);
}

header .headerbutton img
{
	width: 100%;
}

header .nav-toggle
{
	display: none;
	font-size: 2em;
	width: 1.5em;
	height: 1.5em;
	align-items: center;
	justify-content: center;
	min-width: 0;
	border: 0px;
	border: 1px solid var(--burger-color);
	color: var(--burger-color);
	background: none;
	cursor: pointer;
}

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

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

.group > .wrapper > :first-child,
.group > .wrapper > .title:first-child > .wrapper > h1,
.group > .wrapper > .subtitle:first-child > .wrapper > h2
{
	margin-top:0;
}

.group > .wrapper > :last-child,
.group > .wrapper > .title:last-child > .wrapper > h1,
.group > .wrapper > .subtitle:last-child > .wrapper > h2
{
	margin-bottom:0;
}

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

/* elements */
.box,
.box.columns .col-1
{
	background-color: var(--box-bg-color);
	padding: 4em 2em;
}

.box.columns .col-1 {
	padding: 2em 4em;
}

.box > .wrapper > .col-1 > .group > .wrapper {
	max-width: 80em;
	margin: 0 auto;
}

.box .text .wrapper {
	margin: 0;
}

.box.columns {
	padding: 0;
}

.box.columns > .wrapper {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
	margin: 0 auto;
}

.box.columns > .wrapper {
	align-items: center;
}

.box.columns.odd > .wrapper {
	grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
}

.box.columns.odd .col-2 {
	grid-column: 1;
	grid-row: 1;
}

.box.columns.last .col-2 {
	grid-column: 1;
	grid-row: 1;
}

.title
{
	color: var(--theme-color);
}

.title h1,
.offer-title h1
{
	font-size: 2.5em;
	font-weight: 500;
}

.title.big h1 {
	font-size: clamp(3em, 6vw, 10em);
	font-weight: 600;
	margin: 0;
	word-break: break-all;
}

.subtitle h2
{
	font-size: clamp(1.5em, 2vw, 2em);
	font-weight: 300;
	margin: 0;
	margin-bottom: 1em;
}

.text2col .wrapper
{
	column-count: 2;
	column-gap: 2em;
}

.text .wrapper
{
	max-width: 56em;
	margin: auto;
}

.typo
{
	font-size: clamp(1em, 1vw, 1.25em);
	color: var(--text-color);
	line-height: 1.3em;
}

.image .wrapper
{
	max-width: 56em;
	margin: auto;
}

.images .wrapper
{
	display: grid;
	grid-template-columns: 1fr 1fr;
}

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

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

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

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

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

.slideshow .swiper-slide > .legend
{
	display: none;
	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;
}

.slideshow .overlay
{
	position: absolute;
	top: -1px;
	left: 0;
	bottom: -1px;
	right: 0;
	z-index: 1;
	background-position: center bottom;
	background-size: cover;
	background-repeat: no-repeat;
	pointer-events: none;
}

.slideshow .multi .legend,
.slideshow .multi .swiper-button-next,
.slideshow .multi .swiper-button-prev
{
	display: none;
}

.parallax
{
	position: relative;
}

.parallax .bg
{
	position: sticky;
	top: var(--header-height);
	z-index: -1;
	height: 0;
}

.parallax img,
.parallax video
{
	display:block;
	width:100%;
}

.parallax .overlay
{
	position: absolute;
	top: -1px;
	left: 0;
	bottom: -1px;
	right: 0;
	z-index: 1;
	background-position: center bottom;
	background-size: cover;
	background-repeat: no-repeat;
	pointer-events: none;

}

.parallax .spacer
{
	pointer-events: none;
	opacity: 0;
}

.contact > .wrapper,
.gallery .wrapper
{
	max-width: 100em;
	margin: 0 auto 2em auto;
}

.gallery .items a
{
	display: block;
}

.gallery img
{
	display:block;
	width:100%;
	padding: .5em;
	box-sizing: border-box;
	transition: transform .5s ease;
}

.gallery img:hover
{
	transform: scale(1.02);
}

.gallery .legend
{
	display: none;
}

.gallery .items a.scroll-animated
{
	opacity: 0;
	transform: translateY(5vh);
}

.gallery .items a.scroll-visible
{
	transition: transform .6s cubic-bezier(.3,.1,.3,1), opacity .75s cubic-bezier(.3,.1,.3,1), background-size .75s ease-in;	
	transform: none;
	opacity: 1;
}

.gallery.vtours a
{
	display: block;
	position: relative;
	
}

.gallery.vtours a .overlay
{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background: rgba(0,0,0,.7);
	color: #FFFFFF;
	padding: 2em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

.gallery.vtours a .overlay .icon
{
	font-size: 8em;

}

.gallery.vtours a .overlay .iconsmall
{
	font-size: 3em;
	padding: .5em;
}

.gallery.vtours .items {
	flex-wrap: wrap;
	justify-content: center;
	gap: 2em;
}

.gallery.vtours .items a
{
	width: calc(50% - 2em);
	aspect-ratio: 3 / 2;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom center;
}

.gallery.vtours .items a
{
	transition: transform .5s ease, outline .5s ease;
	outline: 2px solid var(--border-color);
}

.gallery.vtours .items a:hover
{
	transform: scale(1.02);
}

.links.pagination {
	max-width: 140em;
	margin: 0 auto;
	background-image: url(../images/footer_background_v2.svg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.links.pagination .wrapper {
	max-width: 100em;
	margin: 0 auto;
	padding: 4em 2em 15em 2em;
}

.links.pagination .items {
	display: grid;
	grid-template-columns: auto auto auto;
	justify-content: space-between;
	gap: 2em;
}

.links.pagination .items .link {
	display: flex;
	flex-direction: row;
	justify-content: start;
	align-items: center;
	gap: 1em;
	background-color: transparent;
	font-size: clamp(.8em, 3vw, 1.7em);
}

.links.pagination .items .link:nth-child(2n) {
	grid-row: 2;
}

.links.pagination .items .link:hover {
	background-color: #666666;
	transform: none;
}

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

.links.downloads .items.columns {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 14em));
	justify-items: center;
	gap: 4em;
}

.offer-popup-grid .links .items .doc,
.links .items .link 
{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.offer-popup-grid .links .items .doc,
.links .items .link i
{
	font-size: 4em;
	padding: .25em 0;
	font-weight: 300;
}

.links .items .link img
{
	display: block;
	width: 100%;
	margin: 1em auto 1em auto;
}

.links .items .doc
{
	max-width: 14em;
	text-align: center;
	background: color-mix(in srgb, var(--footer-bg-color), white 25%);
	color: white;
	padding: 0;
	text-transform: uppercase;
	box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.48);
}

.links .items .doc img {
	margin: 0;
}

.links .items .doc span {
	display: block;
	padding: .5em;
	font-size: .7em;
}

.offer-popup-grid .links .items .doc,
.links .items .link {
	display: block;
	color: var(--text-color);
	background-color: var(--border-color);
	border: none;
	border-radius: 0;
	text-align: start;
	min-width: unset;
	text-transform: uppercase;
	font-weight: 600;
}

.offer-popup-grid .links .items .doc,
.links .items .link:not(.doc)::after {
	content: "\f178";
}

.links .items .has-icon::after {
	display: none;
}

.links .items .has-icon {
	display: flex;
	align-items: center;
}

.distances .wrapper
{
	max-width: 56em;
}

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

.distances table thead td
{
	font-size: 1.5em;
	color: var(--theme-color);
	background: none;
}

.distances table thead td:nth-child(2)
{
	width: 80%;
}

.distances table td,
.distances table th
{
	padding: .5em;
	text-align: center;
	background: var(--theme-color-light);
	min-width: 2em;
}

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

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

.distances table td.icon
{
	font-size: 1.5em;
	color: var(--theme-color);
}

.distances .walk::before 
{
	font: var(--fa-font-regular);
	content: "\f554";
}

.distances .bike::before 
{
	font: var(--fa-font-regular);
	content: "\f206";
}

.distances .car::before 
{
	font: var(--fa-font-regular);
	content: "\f1b9";
}

.distances .public::before 
{
	font: var(--fa-font-regular);
	content: "\f207";
}

[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(--hover-color);
}

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

[data-iso3d]
{
	position:relative;
	aspect-ratio: var(--is-iso-aspect-ratio,1);
}

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

.model-toolbar,
.model-direction
{
	position:absolute;
	display:flex;
	z-index:1;
}

.model-toolbar.model-toolbar-navigation
{
	top:0;
	left:1px;
}

.model-toolbar.model-toolbar-rotation
{
	bottom:0;
	right:1px;
}

.model-toolbar.model-toolbar-size
{
	right:1px;
	top:50%;
	flex-direction:column;
	transform:translateY(-50%);
}

.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-done
{
	display:none;
}

.model-toolbar > div
{
	background:white;
	outline:1px solid black;
}

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

.model-loading > div::after{
	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-toolbar
{
	display:none;
}

.model-toolbar .model-prev::after{content:"\f01e"; transform:rotate(-45deg)}
.model-toolbar .model-next::after{content:"\f0e2"; transform:rotate(45deg)}
.model-toolbar .model-zoom-in::after{content:"\f00e";}
.model-toolbar .model-home::after{content:"\f015";}
.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-direction
{
	right:0;
	bottom:0;
	font-size:2em;
}

.model-direction::after{
	padding:.5em;
	content:"\f602"; 
	transform-style: preserve-3d;
	transform:rotate(calc(-45deg + var(--model-direction)))
}

.offer
{
	--offer-height: calc(100svh - var(--header-height));
	--offer-sidebar-margin: 0px;
	--hover-color: var(--offer-active-color);
	--theme-color: var(--theme-color);
	background: var(--offer-bg-color);
	color: var(--offer-text-color);
	padding: 4em 2em;
}

.offer:not(.offer-has-iso) .wrapper
{
	max-width: 80em;
	margin: 0 auto;
}

.offer.offer-has-iso
{
	background-color: var(--offer-background-color,none);
}

.offer.offer-has-iso .offer-ui
{
	grid-area: iso;
	pointer-events:none;
	overflow:hidden;
}

.offer.offer-has-iso .offer-ui > *
{
	pointer-events:auto;
}

.offer.offer-has-iso .offer-ui,
.offer.offer-has-iso .offer-iso
{
	position:sticky;
	top:var(--header-height);
	width:100%;
}

.offer.offer-has-iso.offer-size-medium .offer-iso
{
	aspect-ratio: var(--is-iso-aspect-ratio,1);
}

.offer.offer-has-iso.offer-size-large .offer-iso,
.offer.offer-has-iso.offer-size-large .offer-ui
{
	height:var(--offer-height);
}

.offer.offer-has-iso .offer-iso
{
	display:grid;
	overflow:hidden;
}

.offer.offer-has-iso.offer-size-medium .offer-iso
{
	grid-area: iso;
}

.offer.offer-has-iso.offer-size-large .offer-iso
{
	display:grid;
	overflow:hidden;
	grid-area: iso / iso / sidebar / sidebar;
}

.offer [data-iso3d]
{
	--is-iso-meta_zone_state_active_free_color: #00ff004d;
	--is-iso-meta_zone_state_active_reserved_color: #ffff004d;
	--is-iso-meta_zone_state_active_rented_color: #ff00004d;
	--is-iso-meta_zone_state_active_sold_color: #ff00004d;
	--is-iso-meta_zone_state_selected_free_color: #00ff0099;
	--is-iso-meta_zone_state_selected_reserved_color: #ffff0099;
	--is-iso-meta_zone_state_selected_rented_color: #ff000099;
	--is-iso-meta_zone_state_selected_sold_color: #ff000099;
	--is-iso-meta_zone_state_filter_free_color: #00ff001a;
	--is-iso-meta_zone_state_filter_reserved_color: #ffff001a;
	--is-iso-meta_zone_state_filter_rented_color: #ffff001a;
	--is-iso-meta_zone_state_filter_sold_color: #ff00001a;
}

.offer [data-iso3d]
{
	aspect-ratio: auto;
}

.offer [data-iso]
{
	--is-iso-meta_zone_state_active_free_color: #00ff00;
	--is-iso-meta_zone_state_active_reserved_color: #ffff00;
	--is-iso-meta_zone_state_active_rented_color: #ff0000;
	--is-iso-meta_zone_state_active_sold_color: #ff0000;
	--is-iso-meta_zone_state_selected_free_color: #00ff00;
	--is-iso-meta_zone_state_selected_reserved_color: #ffff00;
	--is-iso-meta_zone_state_selected_rented_color: #ff0000;
	--is-iso-meta_zone_state_selected_sold_color: #ff0000;
	--is-iso-meta_zone_state_filter_free_color: #00ff00;
	--is-iso-meta_zone_state_filter_reserved_color: #ffff00;
	--is-iso-meta_zone_state_filter_rented_color: #ff0000;
	--is-iso-meta_zone_state_filter_sold_color: #ff0000;
}

.offer [data-iso] svg
{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

.offer [data-iso] .is-iso-level 
{
	transition: all .6s ease;
}

.offer [data-iso] .is-iso-level.is-iso-open 
{
	transform: translateY(var(--is-iso-level-spacing));
}

.offer .offer-sidebar
{
	position:relative;
	container-type: inline-size;
}

.offer.offer-has-iso .offer-sidebar
{
	grid-area: sidebar;
}

.offer.offer-has-iso.offer-size-large,
.offer.offer-has-iso.offer-has-background
{
	--offer-sidebar-margin: 2em;
	padding: 0;
}

.offer.offer-has-iso.offer-size-large .offer-sidebar,
.offer.offer-has-iso.offer-has-background .offer-sidebar
{
	margin:var(--offer-sidebar-margin);
}

.offer.offer-has-iso .offer-list
{
	background:var(--offer-bg-color);
}

.offer.offer-has-iso .offer-detail
{
	background:var(--offer-popup-bg-color,var(--offer-bg-color));
}

.offer.offer-has-iso .offer-list
{
	grid-area: list;
	padding:var(--content-padding-vertical) var(--content-padding-horizontal);
	box-sizing: border-box;
}

.offer .offer-title
{
	display:flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 1.25em;
}

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

.offer.offer-has-iso .offer-detail
{
	grid-area: detail;
	position:sticky;
	bottom:0;
	width:100%;
	height:0;
	transition:all .5s;
	transform:translateY(100%);
	opacity:0;
	pointer-events:none;
	z-index:1;
}

.offer.offer-has-iso.offer-state-popup .offer-detail
{
	transform:translateY(0%);
	height:var(--offer-height);
	opacity:1;
	pointer-events:auto;
}

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

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

.offer.offer-has-iso .offer-popup
{
	display:none;
}

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

.offer.offer-has-iso .offer-popup .offer-popup-header
{
	position:sticky;
	top:0;
	background-color: var(--house-primary-color);
	padding: 1em;
}

.offer-popup {
	background: var(--house-secondary-color);
}

.offer-popup .offer-popup-body
{
	padding:var(--content-padding-vertical) var(--content-padding-horizontal);
}

.offer-popup .offer-popup-body
{
	padding-top: 0;
}

.offer-popup .offer-popup-header
{
	padding-bottom: 0;
}

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

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

.offer.offer-has-iso .offer-popup .offer-popup-close
{
	display:initial;
	cursor:pointer;
	position: absolute;
	top: -.55em;
	right: 0;
}

.offer.offer-has-iso .offer-popup .offer-popup-close > i {
	font-size: 3.5em;
	width: fit-content;
}

.offer.offer-has-iso .offer-popup.closing
{
	animation: fade-out 250ms forwards;
}

.offer .offer-popup-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2.25rem;
}

.offer-popup-grid .links.buttons .button {
	width: 100%;
	text-align: center;
	max-width: unset;
	padding: .5em 1em;
	font-size: 1em;
}

.offer .offer-popup .title {
	position: relative;
	color: white;
}

.offer .offer-popup .downloads h3,
.offer .offer-popup-title {
	color: var(--offer-text-color);
}

.offer .offer-popup .downloads h3 {
	font-size: 2em;
	font-weight: bolder;
	margin-top: .5em;
}

.offer .offer-popup .title .wrapper {
	display: flex;
	justify-content: center;
}

.offer .offer-popup .title h1 {
	font-weight: bolder;
}

.offer .offer-popup .links .items .link.doc span {
	font-size: .7em;
	padding: .25em;
	text-align: center;
	background-color: color-mix(in srgb, var(--footer-bg-color), white 25%);
}

.offer .offer-popup .downloads .items {
	display: flex;
	flex-wrap: wrap;
	gap: 2.25rem;
}

.offer .offer-popup .downloads .items .doc {
	width: clamp(9em, 10vw, 11em);
	max-width: unset;
}

.offer .offer-tooltips
{
	position:absolute;
}

.offer .offer-tooltip
{
	--offer-tooltip-padding:1em;
	--offer-tooltip-background: var(--offer-bg-color);
	
	display:none;
	width:15em;
	transform-style: preserve-3d;
	text-align:center;
	container-type: inline-size;
	position:absolute;
	transform: translateX(-50%);
	pointer-events:none;
	padding:var(--offer-tooltip-padding);
	transition: opacity .5s;
	z-index:var(--offer-tooltip-z);
	cursor:pointer;
}

.offer .offer-tooltip.active
{
	display:block;
}

.offer .offer-tooltip::after
{
	content:"";
	display:block;
	position:absolute;
	width: 0; 
	height: 0; 
}

.offer .offer-tooltip .property-body
{
	display:block;
}

.offer .offer-tooltip.offer-tooltip-occluded
{
	opacity:.5;
}

.offer .offer-tooltip.offer-tooltip-orientation-top
{
	transform:translate(calc(-50% + var(--offer-tooltip-x)), calc(-100% + var(--offer-tooltip-y)));
}

.offer .offer-tooltip.offer-tooltip-orientation-top::after
{
	bottom:1px;
	left:50%;
	transform:translateX(-50%);
	border-left: var(--offer-tooltip-padding) solid transparent;
	border-right: var(--offer-tooltip-padding) solid transparent;
	border-top: var(--offer-tooltip-padding) solid var(--offer-tooltip-background);
}

.offer .offer-tooltip .property-container
{
	background:var(--offer-tooltip-background);
	padding:.5em;
	box-shadow: 3px 3px 10px 0px rgba(50, 50, 50, .5);
}

.offer .offer-tooltip .property-field-title
{
	font-weight:bold;
	font-size:1.1em;
	border-bottom:1px solid var(--odd-color);
}

.offer .offer-tooltip .primary
{
	text-align:center;
	border-top:1px solid var(--odd-color);
}

.offer.offer-has-iso > .wrapper
{
	padding:0;
	margin:auto;
	max-width:none;
}

.offer.offer-has-iso > .wrapper > .items
{
	position:relative;
	display:grid;
}

.offer.offer-has-iso.offer-size-medium > .wrapper > .items
{
	grid-template-areas: "start iso sidebar end";
	grid-template-columns: auto minmax(0,60em) minmax(0,calc(40em + var(--offer-sidebar-margin) * 2)) auto;
}

.offer.offer-has-iso.offer-size-large > .wrapper > .items
{
	grid-template-areas: "iso sidebar";
	grid-template-columns: auto minmax(0,calc(clamp(30em, 40vw, 50em) + var(--offer-sidebar-margin) * 2));
}

.offer.offer-has-iso .offer-popup
{
	box-shadow: 0px 0px 10px 0px black;
}

.offer .houses table,
.facts table
{
	width: 100%;
	border-collapse: collapse;
}

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

.facts table tr.primary {
	font-weight: bold;
}

.offer .houses [data-offer-link]:hover
{
	cursor:pointer;
}

.offer .houses .odd,
.facts tr:nth-child(odd)
{
	background: var(--odd-color);
}

.offer .houses td,
.offer .houses th
{
	padding:.25em .5em;
	white-space: nowrap;
}

.offer .title,
.offer .typo
{
	color: var(--offer-text-color);
}

.offer-popup-header h1
{
	font-weight: 300;
	font-size: 2em;
	text-align: left;
}

.offer .house h2
{
	margin-top: 1em;
	margin-bottom: .5em;
	font-size: 2em;
	font-weight: 300;
}

.offer .house h2 small
{
	font-size: .5em;
}

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

.offer.offer-has-iso .houses [data-reference].selected
{
	background:var(--theme-color);
}

.offer .property-header,
.offer .property-body
{
	display:grid;
	grid-template-columns: minmax(0,1fr) minmax(0,2fr) minmax(0,1fr);
	grid-template-areas: "property-title property-facts property-primary";
}

@container (max-width: 35em)
{
	.offer .property-header,
	.offer .property-body
	{
		grid-template-columns: minmax(0,2fr) minmax(0,1.2fr);
		grid-template-areas: "property-title property-title"
			"property-facts property-primary";
	}
	
	/*
	
	.offer .offer-list .property-title
	{
		border-bottom:1px solid var(--odd-color);
	}
	
	.offer .offer-list .odd .property-title
	{
		border-bottom:1px solid white;
	}
	
	*/
}

.offer .offer-list .property-container
{
	display:flex;
	flex-direction:column;
}

.offer .offer-list .property-body
{
	padding:.5rem;
}

.offer.offer-has-iso .offer-list .property-body
{
	padding:.5rem .5rem;
}

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

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

.offer .offer-list .property-header
{
	padding:0 .5rem;
	color: var(--offer-text-color-th);
}

.offer.offer-has-iso .offer-list .property-header
{
	padding:0 .5rem;
}

.offer .property-header .property-field
{
	text-transform:uppercase;
	font-size:.6em;
}

.offer .property-header .property-title
{
	display:none;
}

.offer .property-title
{
	grid-area: property-title;
}


.offer .property-facts
{
	grid-area: property-facts;
	display:grid;
	grid-template-columns: var(--property-column-sizes);
}

.offer .property-primary
{
	grid-area: property-primary;
}

.offer .property-field,
.offer-popup .facts td
{
	padding:.5rem;
}

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

.offer .property-field.property-field-title
{
	font-weight:bold;
}

@container (max-width: 60em)
{
	.offer .property-field
	{
		display:none;
	}
	
	.offer .property-field.required
	{
		display:block;
	}
	
	.offer .property-facts
	{
		grid-template-columns: var(--property-column-sizes-required);
	}
}

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

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

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

.offer.offer-has-iso .iso 
{
	position:relative;
	display:grid;
}

.offer.offer-has-iso .iso > img
{
	width:100%;
}

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

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

.offer .filter-group {
	display: flex;
	gap: 2rem;
}

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

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

/*
.offer .filter-disabled,
.offer .filters-disabled
{
	display:none;
*/

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

.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 .checkbox
{
	display:block;
	margin:5px 0;
	white-space: nowrap;
}

.offer .filtered
{
	display:none;
}

@media(orientation: portrait)
{
	.offer.offer-has-iso.offer-size-medium > .wrapper > .items,
	.offer.offer-has-iso.offer-size-large > .wrapper > .items
	{
		grid-template-columns: none;
		grid-template-areas: "iso"
		"sidebar";
		height:auto;
	}
	
	.offer.offer-has-iso.offer-size-medium .offer-ui,
	.offer.offer-has-iso.offer-size-medium .offer-iso,
	.offer.offer-has-iso.offer-size-large .offer-ui,
	.offer.offer-has-iso.offer-size-large .offer-iso
	{
		grid-area: iso;
		height: calc(40svh - var(--header-height) / 2);
		z-index:2;
	}
	
	.offer.offer-has-iso .offer-iso
	{
		background:var(--offer-background-color,white);
	}
	
	.offer.offer-has-iso.offer-state-popup .offer-detail
	{
		height:calc((100dvh - var(--header-height)) - (40svh - var(--header-height) / 2));
	}
	
	.offer.offer-has-iso.offer-size-large .offer-sidebar,
	.offer.offer-has-iso.offer-has-background .offer-sidebar
	{
		margin:0;
		display:block;
	}
	
	.offer .offer-tooltip.offer-tooltip-orientation-top
	{
		transform: translate(calc(-50% + var(--offer-tooltip-x)), calc(-100% + var(--offer-tooltip-y))) scale(.5) translateY(50%);
	}
}


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

.slider-value
{
	font-size:smaller;
}

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

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

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

.noUi-connect
{
	background: var(--offer-active-color);
}

.noUi-horizontal .noUi-handle
{
	height: 18px;
	width: 18px;
	top: -5px;
	right: -9px; /* half the width */
	border-radius: 9px;
}

.plan img
{
	display:block;
	width:100%;
	-webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.48); 
	box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.48);
	transition: all .2s ease-in-out;
}

.plan a:hover > img {
	transform: scale(1.05);
}

input,
select
{
	margin:0;
}

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

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

textarea
{
	height: 10em;
}

.offer-popup-grid .doc,
button,
.button,
.contact button
{
	background: var(--theme-color-light);
	border: 1px solid var(--theme-color);
	border-radius: 5px;
	color: var(--theme-color);
	padding: .75em 1em;
	white-space: nowrap;
	display: inline-block;
	font-weight:normal;
	font-size: clamp(.75em, 1.5vw, 1em);
	min-width: 16em;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: all .2s ease-in-out;
}

button.f-button
{
	min-width: 0;
}


.button:hover,
button:hover,
.contact button:hover
{
	transform: scale(1.05);
	color: var(--theme-color-light);
	background: var(--theme-color);
	border: 1px solid var(--theme-color);
	
}

.contact button
{
	text-transform: uppercase;
}


.contact button::after
{
	font: var(--fa-font-regular);
	content: "\f1d8";
	margin-left: .35em;
	
}



.button.primary,
button.primary
{
	font-weight:bold;
}

.button.secondary,
button.secondary
{
	font-weight: normal;
	background: none;
}

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

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

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

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

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

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

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

.contact .items
{
	display:grid;
	grid-template-columns: 3fr 2fr;
	gap:4em;
	margin:0;
}

.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: 1em;
}

.contact .info > div.person,
.contact .info > div.company
{
	background: var(--theme-color-light);
	padding: 2em;
}

.contact .info a
{
	text-decoration: none;
}



.contact .person img,
.contact .company img
{
	width: 200px;
	margin-bottom: 1em;
}

.contact .person .name
{
	font-weight: 500;
	margin-bottom: .5em;
}

.contact .company .city
{
	margin-bottom: 1em;
}

.contact .subtitle h2
{
	text-align: left;
	margin-top: 0;
}

.googlemap .responsive
{
	position: relative;
	padding: 0;
	height: 70vh;
	overflow: hidden;
}



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

.responsive iframe
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border:0;
}

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

.consent-cover
{
	position:absolute;
	width:100%;
	height:100%;
	background: #000000;
	display:flex;
	justify-content: center;
	align-items:center;
}

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

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

.consent-dialog
{
	position:sticky;
	bottom:0;
	background: #000000;
	color: #FFFFFF;
	z-index:101;
	box-shadow: 3px 3px 10px 0px rgb(50 50 50);
}

.consent-dialog .wrapper
{
	display:flex;
	flex-direction:column;
	gap:.5em;
	margin:auto;
	max-width:80em;
	padding:1em 2em;
}


.consent-dialog .links .items
{
	justify-content: flex-start;
}


.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.fancybox__content 
{
	background: #000000;
	color: #FFFFFF;
	
	--text-color: #FFFFFF;
	--theme-color: #FFFFFF;
	
}


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

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

.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: block;
	font: var(--fa-font-regular);
	content:"\f054"
}

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


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

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


.consent-dialog button.primary,
.consent-settings button.primary,
.consent-cover button.primary
{
	background: #FFFFFF;
	color: #000000;
}


.consent-dialog button.secondary,
.consent-settings button.secondary,
.consent-cover button.secondary
{
	background: #000000;
	border-color: #FFFFFF;
	color: #FFFFFF;
}

.consent-dialog button.primary,
.consent-settings button.primary,
.consent-cover button.primary,
.consent-dialog button.secondary,
.consent-settings button.secondary,
.consent-cover button.secondary {
	min-width: 12em;
	font-size: 1em;
}


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

.hidden
{
	display:none;
}
/* */


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


footer > .wrapper
{
	padding: 2em;
}

footer .group > .wrapper
{
	padding:0em;
}

footer a
{
	text-decoration: none;
}



footer .subtitle,
footer .typo
{
	color:var(--footer-text-color);
}

footer .text
{
	text-align: center;
}


footer nav
{
	 justify-content: center;
	 margin: 2em auto;
}


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

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

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



.fancybox__content
{
	padding:0;
	width:56em;
	max-width:100%;
	background-color: var(--offer-bg-color, --box-bg-color); 
}

.fancybox__content:not(.offer-popup) .group
{
	padding: var(--content-padding-vertical);
}

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


.fancybox__content .title h1
{
	text-align: left;
}


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

@media(min-width: 2600px) {
	.box.columns > .wrapper {
		grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
}
	.box.columns.odd > .wrapper {
		grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
	}
}

@media(max-width: 1500px)
{
	.slideshow .multi .swiper-slide
	{
		width: 33.33% !important;
	}
	
	.gallery.vtours a .overlay .icon
	{
		font-size: 4em;
	}
	
	.gallery.vtours a .overlay .iconsmall
	{
		font-size: 1em;
		padding: .5em;
	}

	.button,
	.contact button
	{
		min-width: 10em;
	}
		
	.links .items .link i 
	{
		font-size: 2em;
	}
}

@media(max-width:1000px)
{
	.toggled header {
		height: 100dvh;
	}

	header nav
	{
		display:none;
		background-image: url('../images/header_background.svg');
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
	}

	header nav a {
		padding: 0;
		padding-top: 1rem;
		width: fit-content;
		box-sizing: border-box;
		text-align: center;
	}
	
	header .nav-toggle
	{
		display: flex;
	}
	
	.toggled header nav.mobile
	{
		display: flex;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		flex-direction: column;
		align-items: center;
		gap: 0;
	}
	
	header .wrapper
	{

		flex-direction: column;
	}
	
	header .items
	{
		display: flex;
		width: 100%;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 0;
	}
	
	header .logo img
	{
		object-position: left center;
	}
	
	header .headerbutton
	{
		top: 0;
		width: 6em;
		left: auto;
		right: 100px;
	}

	.images .wrapper {
		grid-template-columns: minmax(0, 1fr);
	}

	.box.columns > .wrapper,
	.box.columns.odd > .wrapper {
		grid-template-columns: minmax(0, 1fr);
	}

	.box.columns.even .col-2,
	.box.columns.odd .col-2 {
		grid-column: 1;
		grid-row: 2;
	}

	.links.pagination .wrapper {
		padding: 4em 2em 5em 2em;
	}

	.links.pagination {
		background-size: contain;
	}
}

@media(max-width: 800px)
{
	.intro header .logo {
		display: none;
	}

	.intro.element .wrapper {
		grid-template-columns: minmax(0, 1fr);
		grid-template-rows: .2fr repeat(2, minmax(0, 1fr)) .2fr;
	}
	.intro.element .image img {
		height: 50svh;
	}

	.intro.element .skip {
		align-self: center;
	}

	.intro.element .skip .skip-button {
		position: relative;
	}

	.intro.element .logo {
		padding: 1em 0;
		display: block;
		align-self: center;
		justify-self: center;
	}

	header .wrapper,
	.offer,
	footer > .wrapper
	{
		padding:1em 1em;
	}

	.scrolled header .wrapper {
		padding: 1em 1em;
	}
	
	header .headerbutton
	{
		left: auto;
		right: 80px;
		width: 4em;
		top: 0em;
	}

	.box,
	.box.columns .col-1,
	.box.columns .col-2 {
		padding: 2em 1em;
	}

/* 	.links.pagination .wrapper {
		padding: 1em;
	} */
	
	.title h1
	{
		font-size: 2em;
	}
	
	.subtitle h2,
	.offer h2
	{
		font-size: 1.5em;
	}

	.links.pagination .items {
		grid-template-columns: auto auto;
		justify-content: center;
		gap: 1em;
	}

	.links.pagination .items .link:nth-child(2n) {
		grid-row: unset;
	}

	.links.downloads .items.columns {
		grid-template-columns: repeat(3, minmax(0, 14em));
		gap: 2em;
	}
	
	.text2col .wrapper
	{
		column-count: 1;
	}
	
	.slideshow .multi .swiper-slide
	{
		width: 50% !important;
	}
	
	.gallery .items a {
		width: 100%;
	}

	.gallery.vtours a .overlay
	{
		font-size: .8em;
	}
	
	.gallery.vtours a .overlay .icon
	{
		font-size: 2em;
	}
	
	.gallery.vtours a .overlay .iconsmall
	{
		display: none;
	}

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

	.distances table thead td:first-child,
	.distances table td.icon
	{
		display: none;
	}

	.contact .items {
		grid-template-columns: 1fr;
	}

	.contact .info > div.person,
	.contact .info > div.company
	{
		padding: 1em;
	}

	.fancybox__content .group
	{
		padding: 1em;
	}

	.consent-dialog button.primary,
	.consent-settings button.primary,
	.consent-cover button.primary,
	.consent-dialog button.secondary,
	.consent-settings button.secondary,
	.consent-cover button.secondary {
		min-width: 10em;
		font-size: .9em;
	}

	footer > .wrapper
	{
		padding: 2em 1em;
	}
}

@media(max-width: 600px)
{
	.images .wrapper
	{
		grid-template-columns: 1fr;
	}

	.consent-dialog button.primary,
	.consent-settings button.primary,
	.consent-cover button.primary,
	.consent-dialog button.secondary,
	.consent-settings button.secondary,
	.consent-cover button.secondary {
		font-size: .8em;
	}

	.consent-settings .links .items,
	.consent-dialog .links .items {
		gap: 1em;
	}

	.offer .offer-popup-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.offer .offer-popup-grid .col-1 {
		grid-row: 2;
	}

	.offer .offer-popup-grid .col-2 > h1 {
		margin: .5em 0;
	}

	.offer.offer-has-iso .offer-popup .offer-popup-header {
		padding: .5em;
	}
}

@media(max-width: 500px) {
	.links.downloads .items.columns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1em;
	}

	footer nav {
		flex-direction: column;
		align-items: center;
	}
}

@media(max-width: 400px)
{
	header .headerbutton
	{
		display: none;
	}

	.title h1
	{
		font-size: 2em;
	}
	
	.subtitle h2
	{
		font-size: 1.3em;
	}
	
	.gallery.vtours .items
	{
		grid-template-columns: 1fr;
	}
	
	.distances 
	{
		font-size: .8em;
	}

	.consent-settings .links .items,
	.consent-dialog .links .items {
		gap: .5em;
	}
}