:root 
{
	--gold: #cda155;
	--darkgold: #a97426;
	--green: #7d8a4a;
	--darkgreen: #434f21;
	--light: #fff9f0;
	--mid: #edeae4;
	--dark: #11383b;
}

* 
{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body 
{
	font-size: 1.15em;
	color: var(--dark);
	font-family: 'Commissioner';
	font-weight: 400;
	line-height: 1.7;
	overflow-x: hidden;
}

::selection 
{
	background-color: var(--dark);
 	color: #fff;
}

::-moz-selection 
{
  	background-color: var(--dark);
 	color: #fff;
}

h1, h2
{
	font-family: 'Cormorant';
	text-transform: uppercase;
	letter-spacing: 0.1em;
	line-height: 1.1;
	font-size: 4em;
	font-weight: 300;
}

h2
{
	font-size: 3em;
	line-height: 1.15;
}

h3, h4
{
	font-family: 'Cormorant';
	font-weight: 400;
	line-height: 1.25;
	font-size: 1.8em;
}

h4
{
	font-size: 1.4em;
}

h2 + p, h2 + ul, p + p, ul + p
{
	margin-top: 1em;
}

h3 + p, h3 + ul
{
	margin-top: 0.5em;
}

p + h3, ul + h3
{
	margin-top: 1em;
}

h4 + p, h4 + ul
{
	margin-top: 0.3em;
}

#openerContent h1
{
	text-shadow: 0px 0px 0.5em rgba(0,0,0,0.9);
}

.wrap
{
	max-width: 1200px;
	display: block;
	margin: auto;
	padding: 0px 40px;
	position: relative;
}

#sideCol
{
	position: fixed;
	width: 260px;
	height: calc(100% - 40px);
	bottom: 0;
	z-index: 1500;
	background-color: #fff;
	border-radius: 0px 50px 0 0;
	box-shadow: 0px 0px 60px rgba(0,0,0,0.12);
}

#logo
{
	width: 100%;
	padding: 30px 60px 20px;
}

#logoArea
{
	position: sticky;
	position: -webkit-sticky;
	width: 100%;
	border-bottom: 1px solid var(--mid);
	background-color: #fff;
	border-radius: 0px 50px 0px 0px;
}

#languages
{
	position: fixed;
	width: 300px;
	height: 45px;
	background-color: var(--dark);
	border-radius: 0px 0px 0px 100px;
	right: 213px;
	top: 0;
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
	font-size: 0.85em;
	padding: 1px 20px 0px 40px;
	font-family: 'Cormorant';
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

#en #languages
{
	right: 138px;
}

#es #languages
{
	right: 199px;
}

#nl #languages
{
	right: 181px;
}

#fr #languages
{
	right: 252px;
}

#languages span
{
	opacity: 0.5;
}

.languageLink
{
	color: #fff;
	text-decoration: none;
	transition: all 0.2s;
	opacity: 0.5;
}

.languageLink:hover
{
	opacity: 1;
}

.languageLink.active
{
	opacity: 1;
	font-weight: 500;
}

#bookingLink
{
	position: fixed;
	height: 45px;
	background-color: var(--gold);
	color: #fff;
	z-index: 1000;
	right: 0;
	top: 0;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-family: 'Cormorant';
	font-size: 0.85em;
	transition: all 0.2s;
	display: flex;
	align-items: center;
	padding: 1px 20px 0px;
	border-left: 1px solid rgba(255,255,255,0.3);
}

#bookingLink:hover
{
	background-color: var(--dark);
}

#navigation ul li
{
	display: block;
	position: relative;
}

#navigation ul li a.mainLink
{
	font-family: 'Cormorant';
	text-transform: uppercase;
	letter-spacing: 0.1em;
	line-height: 1.3;
	color: var(--dark);
	text-decoration: none;
	transition: all 0.2s;
	padding: 15px 40px 14px;
	text-align: center;
	display: block;
	border-bottom: 1px solid var(--mid);
	border-right: 1px solid #fff;
}

#navigation ul li:last-child
{
	display: none;
}

#navigation ul li ul li:last-child
{
	display: block;
}

#navigation ul li a.mainLink:hover
{
	background-color: var(--gold);
	color: #fff;
}

#navigation ul li.active a.mainLink
{
	background-color: var(--dark);
	color: #fff;
	font-weight: 700;
}

#navigation ul li ul
{
	display: none;
	padding-top: 40px;
}

#navigation ul li ul
{
	position: fixed;
	width: 260px;
	height: 100%;
	left: 260px;
	top: 0;
	background-color: var(--dark);
	z-index: -1;
	font-size: 0.85em;
	border-right: 1px solid rgba(255,255,255,0.3);
}

#navigation ul li ul:before
{
	content: "";
	position: absolute;
	width: 100vw;
	height: 100px;
	background-color: var(--dark);
	right: 0;
	top: 0;
	z-index: -1;
}

#navigation ul li ul li a
{
	color: #fff;
	padding: 13px 40px 14px 40px;
	font-weight: 300;
	text-align: center;
	display: block;
	text-decoration: none;
	border-bottom: 1px solid rgba(255,255,255,0.3);
	line-height: 1.5;
}

#navigation ul li ul li a:hover
{
	background-color: var(--gold);
}

#navigation ul li.active ul li.active a
{
	background-color: var(--gold);
	color: #fff;
	font-weight: 700;
}

#navigation ul li ul li
{
	position: relative;
}

#navigation ul li ul li:first-child:before
{
	content: "";
	position: absolute;
	width: 100vw;
	height: 1px;
	background-color: rgba(255,255,255,0.3);
	right: 0;
	top: 0;
}

.subNavOpener
{
	position: absolute;
	width: 5px;
	height: 5px;
	border-right: 1px solid var(--dark);
	border-bottom: 1px solid var(--dark);
	right: 25px;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
	transition: all 0.2s;
}

#navigation ul li:hover .subNavOpener, #navigation ul li.active .subNavOpener
{
	border-color: #fff!important;
}

.imgHidden
{
	width: 1px;
	opacity: 0;
	position: absolute;
}

#opener
{
	position: relative;
	width: 100%;
	min-height: 85vh;
	display: flex;
	align-items: flex-end;
}

.openerImg
{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 0;
	background-size: cover;
	background-position: center;
}

#opener:before
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: linear-gradient(180deg,rgba(0,0,0,0) 30%, rgba(0,0,0,0.8) 100%);
	z-index: 400;
}

#openerSlideshow
{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -1;
}

#openerContent
{
	position: relative;
	display: block;
	width: 100%;
	z-index: 500;
	color: #fff;
	padding: 100px 0px 90px;
	padding-left: 260px;
}

#down
{
	position: absolute;
	width: 2px;
	height: 50px;
	background-color: #fff;
	left: calc(50% + 130px);
	transform: translateX(-50%);
	z-index: 800;
}

#down:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 100%;
	background-color: var(--gold);
}

#down:before
{
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	left: 50%;
	border-left: 2px solid var(--gold);
	border-bottom: 2px solid var(--gold);
	transform: translateX(-50%) rotate(-45deg);
	top: calc(200% - 12px);
}

.container
{
	padding-left: 260px;
}

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

.text
{
	margin: 100px 0px;
}

.colored
{
	padding: 100px 0px;
	position: relative;
}

.colored:before
{
	content: "";
	position: absolute;
	width: 100vw;
	height: 100%;
	right: 0;
	top: 0;
	z-index: -1;
	background-color: var(--light);
}

strong
{
	font-weight: 700;
}

.unterkunfte
{
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 20px);
	margin-left: -20px;
	margin-bottom: -20px;
}

.unterkunft
{
	width: calc(33.3% - 20px);
	margin-left: 20px;
	margin-bottom: 20px;
	display: block;
	color: var(--dark);
	background-color: #fff;
	transition: all 0.2s;
	text-decoration: none;
	border-radius: 0.3em;
	overflow: hidden;
	transition: all 0.2s;
	box-shadow: 0px 0px 60px rgba(0,0,0,0.12);
}

.unterkunft:hover
{
	background-color: var(--dark);
	color: #fff;
	transform: scale(1.03);
	box-shadow: 0px 0px 60px rgba(0,0,0,0.15);
}

.unterkunftImg
{
	position: relative;
	width: 100%;
	padding-bottom: 75%;
	background-size: cover;
	background-position: center;
}

.unterkunftLogo
{
	position: absolute;
	width: 100px;
	height: 80px;
	background-size: 65%;
	background-position: center;
	background-repeat: no-repeat;
	top: 0;
	right: 0;
	background-color: #fff;
	border-radius: 0px 0px 0px 0.3em;
}

.unterkunftContent
{
	padding: 30px 40px;
	position: relative;
}

.colored + .colored
{
	padding-top: 0;
	margin-top: -100px;
}

.colored + .colored.withNewsletter
{
	margin-top: -160px;
}

.colored + .withUnterkunfte
{
	position: relative;
	margin-top: -150px;
}

.colored + .withUnterkunfte:before
{
	content: "";
	position: absolute;
	width: 100vw;
	height: calc(50% - 10px);
	background-color: var(--light);
	top: 0;
	right: 0;
	z-index: -1;
}

.unterkunft p
{
	font-size: 0.85em;
}

.inline
{
	width: 100%;
	border-radius: 0.3em;
	margin-bottom: -10px!important;
}

.youtubeLink
{
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 0.3em;
	position: relative;
	z-index: 10;
	margin-top: -50px;
	box-shadow: 0px 0px 60px rgba(0,0,0,0.12);
}

.youtubeLink:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
	background-color: var(--dark);
	opacity: 0;
	transition: all 0.2s;
}

.youtubeLink:hover:after
{
	opacity: 0.2;
}

.play
{
	position: absolute;
	width: 80px;
	height: 80px;
	background-color: var(--gold);
	border-radius: 1000px;
	background-image: url(play.svg);
	background-size: 40%;
	background-position: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-repeat: no-repeat;
	transition: all 0.2s;
	z-index: 100;
}

.play:hover
{
	background-color: var(--dark);
}

.withImg + .colored
{
	position: relative;
	margin-top: -110px;
}

.withImg + .colored:before
{
	content: "";
	position: absolute;
	width: 100vw;
	height: calc(100% + 100px);
	right: 0;
	top: -100px;
	background-color: var(--light);
	z-index: -1;
}

.text ul li
{
	position: relative;
	list-style: none;
	padding-left: 1.2em;
}

.text ul li:before
{
	content: "";
	position: absolute;
	width: 0.4em;
	height: 0.4em;
	border-radius: 0.1em;
	background-color: var(--gold);
	left: 0;
	margin-top: 0.68em;
}

.twoCols
{
	display: flex;
	margin-left: -40px;
}

.twoCols.right
{
	flex-direction: row-reverse;
}

.twoColItem
{
	margin-left: 40px;
	width: 50%;
}

.sticky
{
	text-align: center;
	position: sticky;
	position: -webkit-sticky;
	width: 100%;
	left: 0;
	top: 100px;
	margin: 100px 0px;
}

/*.twoCols li + li
{
	margin-top: 0.5em;
}*/

.imgFlex
{
	display: flex;
}

.imgFlex.right
{
	flex-direction: row-reverse;
}

.imgFlex .imgFlexItem:nth-child(1)
{
	width: 40%;
	padding-top: 40px;
}

.imgFlex .imgFlexItem:nth-child(2)
{
	width: 60%;
}

.textBox
{
	padding: 30px 40px;
	position: relative;
}

.textBox:before
{
	content: "";
	position: absolute;
	width: 130%;
	height: 100%;
	right: 0;
	top: 0;
	z-index: -1;
	background-color: #fff;
	border-radius: 0.3em;
	box-shadow: 0px 0px 60px rgba(0,0,0,0.12);
}

.textBox .buttonArea
{
	margin-bottom: 10px;
}

.right .textBox:before
{
	left: 0;
	top: 0;
	right: auto;
}

.colored + .withImg
{
	position: relative;
	margin-top: -100px;
}

.colored + .withImg:before
{
	content: "";
	position: absolute;
	width: 100vw;
	height: 100px;
	background-color: var(--light);
	right: 0;
	top: 0;
	z-index: -1;
}

.text p a, .text ul a, form a, #cookieNotice a
{
	color: var(--gold);
	text-decoration: none;
	border-bottom: 1px solid var(--gold);
	transition: all 0.2s;
}

.text p a:hover, .text ul a:hover, form a:hover, #cookieNotice a:hover
{
	color: var(--dark);
	border-bottom: 1px solid var(--dark);
}

.text.withButton p a, .text .buttonArea p a, .buttonArea a, #accepted
{
	display: inline-block;
	line-height: 1.3;
	text-align: center;
	color: #fff!important;
	border-bottom: none!important;
	background-color: var(--gold);
	text-decoration: none;
	letter-spacing: 0.1em;
	font-family: 'Cormorant';
	text-transform: uppercase;
	padding: 0.7em 1.2em 0.69em;
	border-radius: 0.3em;
	transition: all 0.2s;
}

.text.withButton p a:hover, .text .buttonArea p a:hover, .buttonArea a:hover, #accepted:hover
{
	background-color: var(--dark);
}

.withButton
{
	margin-top: -70px;
}

.buttonArea
{
	margin-top: 30px;
}

.boxes
{
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 20px);
	margin-left: -20px;
	margin-bottom: -20px;
	margin-top: -50px;
}

.box
{
	width: calc(33.3% - 20px);
	margin-left: 20px;
	margin-bottom: 20px;
	padding: 30px 40px;
	background-color: #fff;
	border-radius: 0.3em;
	box-shadow: 0px 0px 60px rgba(0,0,0,0.12);
}

.icon
{
	width: 100%;
	height: 45px;
	background-size: contain;
	background-position: left center;
	background-repeat: no-repeat;
}

.icon svg
{
	height: 45px;
}

.wetterItem h4
{
	margin-top: 20px;
}

.box .icon
{
	margin-top: 10px;
	margin-bottom: 30px;
}

.dividerImg
{
	padding: 150px 0px;
	background-size: cover;
	background-position: center;
	color: #fff;
	position: relative;
	text-shadow: 0px 0px 0.5em rgba(0,0,0,0.9);
}

.dividerImg .buttonArea p
{
	text-shadow: none;
}

.dividerImg:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.35);
	left: 0;
	top: 0;
	z-index: 10;
}

.dividerImg .wrap
{
	z-index: 50;
}

#footer
{
	padding: 35px 0px;
	background-color: var(--dark);
	color: #fff;
	font-size: 0.85em;
}

#copy
{
	position: relative;
	display: block;
	font-weight: 500;
	margin-bottom: 5px;
}

#footer a
{
	color: #fff;
	text-decoration: none;
	transition: all 0.2;
	border-bottom: 1px solid transparent;
}

#footer a:hover
{
	border-bottom: 1px solid #fff;
}

#footerList
{
	text-align: left;
}

#footerList li
{
	display: inline-block;
}

#footerList li:after
{
	content: "|";
	margin: 0px 12px 0px 15px;
}

#footerList li:last-child:after
{
	display: none;
}

#cookieNotice
{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	font-size: 0.85em;
	background-color: rgba(0,0,0,0.3);
	z-index: 999999999;
	display: none;
	align-items: center;
	justify-content: center;
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

#cookieBox
{
	padding: 32px 40px 40px 40px;
	max-height: calc(100vh - 80px);
	max-width: 420px;
	overflow: auto;
	display: block;
	margin: auto;
	position: relative;
	background-color: #fff;
	border-radius: 0.3em;
	box-shadow: 0px 0px 60px rgba(0,0,0,0.12);
}

#cookieBoxInner
{
	position: relative;
	z-index: 100;
}

#acceptWrap
{
	text-align: center;
}

#cookieCheckboxes
{
	margin-top: 1em;
	margin-bottom: 1em;
}

#cookieCheckboxes label
{
	position: relative;
	margin-right: 1.6em;
	padding-left: 1.7em;
	cursor: pointer;
	display: block;
	margin-top: 0.3em;
}

#cookieCheckboxes input
{
	position: absolute;
	left: 0;
	top: 50.5%;
	transform: translateY(-50%);
}

#accepted
{
	margin-top: 0.6em;
	cursor: pointer;
}

#social
{
	padding: 20px 0px;
	color: #fff;
	background-color: var(--green);
}

.socialLink
{
	width: 1.3em;
	height: 1.3em;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	display: block;
	margin-left: 25px;
	transition: all 0.2s;
}

.socialLink:hover
{
	opacity: 0.7;
}

#socialFlex
{
	display: flex;
	align-items: center;
}

#instagram
{
	background-image: url(instagram.svg);
}

#facebook
{
	background-image: url(facebook.svg);
}

#socialFlex h4
{
	font-size: 1.2em;
}

#plattformen
{
	margin-bottom: -180px;
}

#plattformenFlex
{
	display: flex;
	justify-content: flex-end;
	align-items: center
}

.plattform
{
	margin-left: 20px;
	position: relative;
	z-index: 100;
}

#mobileHeader
{
	display: none;
}

a.plattform
{
	position: relative;
	top: -15px;
}

.plattform
{
	text-decoration: none;
}

/* 1. Textfarbe für alle Elemente im Google-Widget erzwingen */
#plattformenFlex a.plattform [class*="jf-google-reviews"],
#plattformenFlex a.plattform [class*="jf-reviews"] {
    color: var(--dark) !important;
}

/* 2. Layout, Skalierung und Positionierung über stabile Jotform-Klassen und Attribute */
#plattformenFlex a.plattform [data-component="reviews"],
#plattformenFlex a.plattform .jf-google-reviews-widget {
    position: relative !important;
    display: block !important;
    transform: scale(0.7) !important;
    color: var(--dark) !important;
    bottom: auto !important;
    z-index: 0 !important;
    margin-top: -25px !important;
    background-color: #fff !important;
}

#wetterBox
{
	border-radius: 0.3em;
	color: #fff;
	overflow: hidden;
	margin-top: -50px;
	display: flex;
	flex-wrap: wrap;
}

.wetterBoxItem#poolTemperatur
{
	padding: 30px 40px;
	width: 25%;
	text-align: center;
	background-color: var(--gold);
	border-radius: 0.3em 0 0 0.3em;
}

#wetterBox span
{
	display: block;
	margin-top: 0.2em;
}

#pool
{
	background-image: url(pool.svg);
	background-position: center;
	margin-bottom: 20px;
}

#wetterVorhersage
{
	display: flex;
}

#vorhersage
{
	width: 75%;
	background-color: var(--dark);
}

.wetterItem
{
	width: 33.3%;
	padding: 30px 40px;
	border-left: 1px solid rgba(255,255,255,0.3);
	text-align: center;
}

.divider
{
	width: 50%;
	height: 2px;
	background-color: var(--gold);
	position: relative;
	margin-bottom: -15px;
}

.divider:before
{
	content: "";
	position: absolute;
	width: 100vw;
	height: 100%;
	right: 100%;
	top: 0;
	background-color: var(--gold);
}

.stoerer
{
	padding: 50px 0px;
	background-color: var(--dark);
	color: #fff;
	font-size: 0.85em;
}

#stoererInner
{
	position: relative;
	padding-left: 115px;
}

#stoererInner:before
{
	content: "";
	position: absolute;
	width: 95px;
	height: 100%;
	left: 0;
	top: 0;
	background-image: url(sale_2.gif);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	left: -10px;
}

.moreLink
{
	margin-top: 1em;
}

.moreLink p a
{
	color: #fff;
	text-decoration: none;
	transition: all 0.2s;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-family: 'Cormorant';
	background-image: url(right_white.svg);
	background-size: 0.55em;
	background-repeat: no-repeat;
	background-position: right center;
	padding-right: 1.2em;
}

.moreLink p a:hover
{
	opacity: 0.6;
}

#intro
{
	padding: 100px 0px;
	background-color: var(--light);
}

#intro + .withImg
{
	margin-top: 0!important;
	position: relative;
}

#intro + .withImg:before
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100px;
	background-color: var(--light);
	z-index: -1;
	right: 0;
	top: 0;
}

.map
{
	position: relative;
	width: 100%;
	padding-bottom: 40%;
	border-radius: 0.3em;
	overflow: hidden;
}

#drdsgvo_map_1
{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.ol-attribution li a
{
	border-bottom: none!important;
}

.ol-attribution li:before
{
	display: none!important;
}

.smallLogo
{
	max-width: 220px;
	margin-bottom: -56px!important;
}

.gallery
{
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 20px);
	margin-left: -20px;
	margin-bottom: -20px;
}

.galleryItem
{
	width: calc(25% - 20px);
	margin-left: 20px;
	margin-bottom: 20px;
	border-radius: 0.3em;
	overflow: hidden;
	cursor: zoom-in;
}

.galleryImg
{
	padding-bottom: 75%;
	background-size: cover;
	background-position: center;
}

.avcal
{
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 20px);
	margin-left: -20px;
	margin-bottom: -20px;
}

.text ul.prev_next
{
	display: block;
	width: 100%!important;
	max-width: 100%!important;
	margin-bottom: 25px;
	text-align: center;
}

.text ul.prev_next#guestbookNavigation
{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-left: -20px;
}

.prev + .curr
{
	margin-top: 5px;
}

.prev_next li
{
	padding-left: 0!important;
	margin-left: 20px;
}

.prev_next li a
{
	font-size: 0.75em;
}

.prev_next li:before
{
	display: none;
}

.calendar
{
	width: calc(33.3% - 20px);
	margin-left: 20px;
	margin-bottom: 20px;
	padding: 10px 15px 15px;
	padding-top: 48px;
	position: relative;
	border: 1px solid var(--mid);
	border-radius: 0.3em;
}

caption
{
	font-family: 'Cormorant';
	text-transform: uppercase;
	letter-spacing: 0.1em;
	line-height: 1.3;
	color: var(--dark);
	font-weight: 500;
	text-align: center;
	position: absolute;
	width: 100%;
	left: 0;
	top: 14px;
	font-size: 0.85em;
}

.avcal th
{
	text-align: center;
	padding-bottom: 8px;
	font-weight: 500;
	color: var(--dark);
	font-size: 0.5em;
}

.avcal td
{
	text-align: center;
	padding: 7px 5px 8px;
	line-height: 1;
	background-image: url(free.svg);
	background-size: cover;
	background-position: center;
	color: #fff;
	border: 0.5px solid rgba(255, 255, 255, 1);
	font-size: 0.7em;
}

.avcal td.pad
{
	background-color: transparent;
	border: 0.5px solid transparent;
	background-image: none;
}

.booked-all, .booked-am, .booked-pm
{
	color: #fff;
}

.avcal td.booked-all
{
	background-image: url(booked.svg);
}

.avcal td.booked-am
{
	background-image: url(booked-am.svg);
}

.avcal td.booked-pm
{
	background-image: url(booked-pm.svg);
}

.prev a, .next a
{
	color: var(--dark)!important;
	text-decoration: none;
	font-size: 0.85em;
	border-bottom: none!important;
	background-size: 0.65em;
	background-repeat: no-repeat;
}

.prev a
{
	background-image: url(left.svg);
	background-position: left center;
	padding-left: 1.6em;
}

.next a
{
	background-image: url(right.svg);
	background-position: right center;
	padding-right: 1.6em;
}

.prev a:hover, .next a:hover
{
	color: var(--gold)!important;
}

.curr span
{
	font-family: 'Cormorant';
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 500;
	display: block;
}

.colored + #plattformen
{
	margin-top: -100px;
}

#kalender
{
	position: relative;
	top: -100px;
}

.accordeonContent
{
	padding: 30px 40px;
	border-radius: 0.3em;
	box-shadow: 0px 0px 60px rgba(0,0,0,0.12);
	margin-top: 20px;
	display: none;
	background-color: #fff;
}

.accordeonOpener.active + .accordeonContent
{
	display: block;
}

.accordeonOpener
{
	font-weight: 500;
	cursor: pointer;
	display: inline-block;
	color: var(--dark);
	text-decoration: none;
	position: relative;
	padding-left: 3em;
}

.accordeonOpener:before
{
	content: "";
	position: absolute;
	width: 2em;
	height: 2em;
	left: 0;
	top: -0.14em;
	z-index: 0;
	border-radius: 1000px;
	background-color: var(--gold);
	background-image: url(plus.svg);
	background-size: 45%;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.2s;
}

.accordeonOpener:hover:before
{
	background-color: var(--dark);
}

.accordeonOpener.active:before
{
	background-color: var(--dark);
	transform: rotate(-45deg);
}

.accordeon + .accordeon
{
	margin-top: 35px;
}

.accordeons
{
	margin-top: -65px;
}

.colored .accordeons
{
	margin-top: -165px;
}

.anfrageFlexItem .wrap
{
	padding: 0!important;
}

.anfrageFlexItem .container
{
	padding: 0!important;
}

.anfrageFlex
{
	display: flex;
	margin-left: -40px;
}

.anfrageFlexItem
{
	width: 50%;
	margin-left: 40px;
}

.anfrageFlex .anfrageFlexItem:nth-child(1)
{
	width: calc(100% - 380px);
}

.anfrageFlex .anfrageFlexItem:nth-child(2)
{
	width: 380px;
}

.anfrageFlexItem .text
{
	margin: 0;
	margin-bottom: 0.6em;
}

.avcal tbody td
{
	cursor: pointer;
}

.avcal tbody td.pad
{
	cursor: default;
}

.avcal tbody td.booked-all
{
	cursor: not-allowed;
}

.avcal tbody td.avcal-past
{
	cursor: not-allowed;
	opacity: 0.4;
}

.avcal td.avcal-in-range
{
	background-color: var(--dark);
	background-image: none;
}

#form
{
	padding-top: 100px;
	margin-top: -100px;
}

form label
{
	font-family: 'Commissioner';
	color: var(--dark);
	font-weight: 700;
	display: block;
	margin-bottom: 0.05em;
}

form input[type = "text"], form input[type = "email"], textarea, form button, select
{
	-webkit-appearance: none;
   	-moz-appearance: none;
   	appearance: none;
   	border-radius: 0.3em;
   	font-size: 1em;
   	width: 100%;
   	border: none;
   	font-family: 'Commissioner';
   	line-height: 1.6;
   	color: var(--dark);
   	font-weight: 400;
   	background-color: transparent;
}

form input, textarea, select
{
	color: var(--dark);
	margin-bottom: 1.2em;
	transition: border-color 0.2s;
}

form input[type = "text"], form input[type = "email"], textarea, select
{
	border: 1px solid var(--mid);
	padding: 0.55em 1.1em;
	background-color: #fff;
}

form input:focus, textarea:focus, select:focus
{
	border-color: var(--theme);
	outline: 1px solid var(--theme);
}

select
{
	cursor: pointer;
	background-image: url(down.svg);
	background-size: 0.4em;
	background-repeat: no-repeat;
	background-position: center right 1.1em;
}

textarea
{
	height: 10em;
	resize: none;
}

.alert.alert-danger ul:before
{
	font-weight: 700;
	color: red;
	display: block;
}

#de .alert.alert-danger ul:before
{
	content: "Folgende Fehler sind aufgetreten. Bitte überprüfen Sie Ihre Eingaben.";
}

#en .alert.alert-danger ul:before
{
	content: "The following errors occurred. Please check your entries.";
}

#es .alert.alert-danger ul:before
{
	content: "Se han producido los siguientes errores. Por favor, revise sus datos.";
}

#nl .alert.alert-danger ul:before
{
	content: "De volgende fouten zijn opgetreden. Controleer uw gegevens.";
}

#fr .alert.alert-danger ul:before
{
	content: "Les erreurs suivantes se sont produites. Veuillez vérifier vos informations.";
}

.alert.alert-danger
{
	margin-bottom: 1.5em;
}

.alert.alert-danger ul li
{
	color: red;
}

.alert.alert-danger ul li:before
{
	background-color: red;
}

.checkbox
{
	position: relative;
	padding-left: 1.6em;
}

.checkbox label
{
	font-family: 'Commissioner';
	color: var(--dark);
	font-weight: 400;
	cursor: pointer;
	text-transform: none;
	line-height: 1.6;
}

.checkbox input
{
	position: absolute;
	left: 0px;
	top: 0.62em;
	cursor: pointer;
}

.checkbox + .checkbox
{
	margin-top: 0.9em;
}

form button
{
	display: inline-block;
	line-height: 1.3;
	text-align: center;
	color: #fff!important;
	border-bottom: none!important;
	background-color: var(--gold);
	text-decoration: none;
	letter-spacing: 0.1em;
	font-family: 'Cormorant';
	text-transform: uppercase;
	padding: 0.7em 1.2em 0.69em;
	border-radius: 0.3em;
	transition: all 0.2s;
	display: block;
	margin-top: 1.4em;
	cursor: pointer;
}

form button:hover
{
	background-color: var(--dark);
}

.formHeading
{
	margin-bottom: 0.6em;
}

.form-group + .formHeading
{
	margin-top: 0.25em;
}

#formBox
{
	padding: 15px 20px;
	box-shadow: 0px 0px 60px rgba(0,0,0,0.12);
	border-radius: 0.3em;
}

#formBox button
{
	margin-bottom: 5px;
}

#stickyKalender
{
	position: sticky;
	position: -webkit-sticky;
	width: 100%;
	left: 0;
	top: 50px;
}
 
#yform-formular-anreise input, #yform-formular-abreise input, #yform-formular-unterkunft select
{
	opacity: 0.6;
	cursor: not-allowed;
}

.jumper
{
	position: relative;
	top: -100px;
}

#flipbook
{
	width: 100%;
	height: 80vh;
}

.livecams
{
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 20px);
	margin-left: -20px;
	margin-bottom: -20px;
}

.livecam
{
	width: calc(33.3% - 20px);
	margin-left: 20px;
	margin-bottom: 20px;
	box-shadow: 0px 0px 60px rgba(0,0,0,0.12);
	border-radius: 0.3em;
	overflow: hidden;
	position: relative;
	transition: all 0.2s;
	color: var(--dark);
	text-decoration: none;
}

.livecam:hover
{
	background-color: var(--dark);
	color: #fff;
	transform: scale(1.03);
	box-shadow: 0px 0px 60px rgba(0,0,0,0.15);
}

.livecamImg
{
	padding-bottom: 65%;
	background-size: cover;
	background-position: center;
}

.livecamDescription
{
	padding: 30px 40px;
}

.guestbook-entry
{
	padding: 30px 40px;
	border-radius: 0.3em;
	box-shadow: 0px 0px 60px rgba(0,0,0,0.12);
}

.guestbook-header
{
	font-size: 0.85em;
	display: flex;
	flex-wrap: wrap;
	margin-top: 25px;
	padding-top: 25px;
	border-top: 1px solid var(--gold);
}

.adresse
{
	margin-right: 0.5em;
}

.gast
{
	margin-right: 0.4em;
}

.gast
{
	font-weight: 500;
}

.adresse:before
{
	content: "(";
}

.adresse:after
{
	content: ")";
}

.datum:before
{
	content: "-";
	margin-right: 0.5em;
}

.withGuestbook
{
	margin-top: -55px;
}

.withImg.withMap
{
	margin-top: -150px;
}

#formBox.full
{
	padding: 30px 40px;
}

#formBox.full button
{
	margin-bottom: 10px;
}

#formBox.full button
{
	width: auto!important;
	display: inline-block;
}

#resetDateContainer
{
	display: block;
	text-align: center!important;
	width: 100%;
	margin: 0!important;
}

#resetDate
{
	display: inline-block;
	color: var(--dark);
	border: 1px solid var(--mid);
	text-decoration: none;
	padding: 0.5em 1em 0.5em;
	font-size: 0.75em;
	border-radius: 0.3em;
	transition: all 0.2s;
	margin-bottom: 2.2em;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-family: 'Cormorant';
}

#resetDate:hover
{
	background-color: var(--mid);
}

@media all and (max-width: 450px){
	#cookieBox
	{
		padding: 18px 25px 25px 25px;
	}

	#formBox.full
	{
		padding: 15px 20px;
	}

	#formBox.full button
	{
		margin-bottom: 5px;
	}
}

@media all and (max-width: 520px){
	.calendar
	{
		width: calc(100% - 20px)!important;
	}

	td.pad
	{
		height: 0;
		padding: 0;
		font-size: 0;
	}

	#stoererInner
	{
		padding-left: 0!important;
	}

	#stoererInner:before
	{
		position: relative;
		width: 100%;
		display: block;
		height: 75px!important;
		margin-top: -15px;
		margin-bottom: 20px;
	}
}

@media all and (max-width: 600px){
	#bookingLink
	{
		border-left: none;
		width: 100%!important;
		bottom: 0;
		top: auto!important;
		height: 50px!important;
		padding-top: 1px!important;
	}

	#footer
	{
		margin-bottom: 50px;
	}

	#languages
	{
		width: 100%!important;
		right: 0!important;
		justify-content: center!important;
	}

	#copy
	{
		margin-bottom: 6px;
	}

	#footerList li
	{
		display: block;
		margin-top: 3px;
	}

	#footerList li:after
	{
		display: none;
	}

	#footer
	{
		padding: 30px 0px;
	}

	.socialLink
	{
		width: 1.2em;
		height: 1.2em;
		margin-left: 20px;
	}

	#plattformenFlex .plattform:first-child
	{
		margin-right: -20px;
	}

	#wetterVorhersage
	{
		flex-wrap: wrap;
	}

	.wetterItem
	{
		width: 100%;
		border-left: 0;
	}

	.wetterItem + .wetterItem
	{
		border-top: 1px solid rgba(255,255,255,0.3);
	}
}

@media all and (max-width: 700px){
	#opener
	{
		min-height: 40vh!important;
	}

	.twoCols
	{
		display: block;
		margin-left: 0;
	}

	.twoColItem
	{
		width: 100%!important;
		margin-left: 0;
	}

	.sticky
	{
		margin: 0!important;
		text-align: left;
	}

	.twoColItem + .twoColItem
	{
		margin-top: 1em;
	}

	.dividerImg
	{
		padding: 60px 0px!important;
	}

	h1
	{
		font-size: 1.8em!important;
		line-height: 1.2;
	}

	h2
	{
		font-size: 1.5em!important;
		line-height: 1.25;
	}

	h3
	{
		font-size: 1.3em!important;
	}

	h4
	{
		font-size: 1.2em!important;
	}

	.icon, .icon svg
	{
		height: 35px!important;
	}

	.play
	{
		width: 45px!important;
		height: 45px!important;
	}

	.imgFlex
	{
		display: block;
	}

	.imgFlexItem
	{
		width: 100%!important;
		padding-top: 0!important;
	}

	.textBox:before
	{
		width: 100%;
		border-radius: 0 0 0.3em;
	}

	.imgFlex .inline
	{
		border-radius: 0.3em 0.3em 0 0;
	}

	.map
	{
		padding-bottom: 60%!important;
	}

	.smallLogo
	{
		max-width: 150px!important;
	}

	.galleryItem
	{
		width: calc(50% - 20px);
	}

	.textarea
	{
		height: 10em;
	}
}

@media all and (max-width: 800px){
	.box, .unterkunft, .livecam
	{
		width: calc(100% - 20px);
	}

	.unterkunftImg
	{
		padding-bottom: 55%;
	}
}

@media all and (max-width: 850px){
	.wetterBoxItem#poolTemperatur
	{
		width: 100%;
		border-radius: 0.3em 0.3em 0 0;
	}

	#vorhersage
	{
		border-radius: 0 0 0.3em 0.3em;
		width: 100%;
	}

	.anfrageFlex .anfrageFlexItem:nth-child(1)
	{
		width: 100%!important;
		margin-left: 0;
	}

	.anfrageFlex .anfrageFlexItem:nth-child(2)
	{
		width: 100%!important;
		margin-left: 0;
		margin-top: 35px;
	}

	.anfrageFlex
	{
		margin-left: 0!important;
		display: block;
	}

	#form
	{
		padding-top: 130px;
		margin-top: -130px;
	}
}

@media all and (max-width: 950px){
	#plattformen
	{
		margin-bottom: 60px;
	}

	#plattformenFlex
	{
		justify-content: center;
	}

	#plattformenFlex .plattform:first-child
	{
		margin-left: -60px;
	}

	#footer
	{
		text-align: center;
	}

	#footerList
	{
		text-align: center;
	}

	#socialFlex
	{
		justify-content: center;
	}

	.prev, .curr, .next
	{
		width: 100%;
		display: block;
		text-align: center;
	}

	.colored + #plattformen
	{
		margin-top: -60px;
		background-color: var(--light);
		padding-bottom: 60px;
		margin-bottom: 0!important;
	}
}

@media all and (max-width: 1100px){
	#sideCol
	{
		width: 280px;
		left: -280px;
		transition: all 0.2s;
		top: 0;
		height: 100%!important;
		border-radius: 0!important;
	}

	#sideCol.active
	{
		left: 0;
	}

	#logoArea
	{
		display: none;
	}

	.container, #openerContent
	{
		padding-left: 0;
	}

	#down
	{
		left: 50%;
	}

	.text
	{
		margin: 60px 0px;
	}

	#intro
	{
		padding: 60px 0px;
	}

	.colored
	{
		padding: 60px 0px;
	}

	.withButton
	{
		margin-top: -30px;
	}

	#openerContent
	{
		padding: 60px 0px;
	}

	.boxes
	{
		margin-top: -20px;
	}

	.colored + .withUnterkunfte
	{
		margin-top: -80px;
	}

	.colored + .colored
	{
		margin-top: -60px;
	}

	.youtubeLink
	{
		margin-top: -20px;
	}

	.withImg + .colored
	{
		margin-top: -70px;
	}

	.withImg + .colored:before
	{
		height: calc(100% + 60px);
		top: -60px;
	}

	.sticky
	{
		margin: 60px 0px;
		top: 60px;
	}

	.colored + .withImg
	{
		margin-top: -60px;
	}

	.colored + .withImg:before
	{
		height: 60px;
	}

	.dividerImg
	{
		padding: 90px 0px;
	}

	#opener
	{
		min-height: 60vh;
	}

	#down
	{
		height: 30px;
	}

	h1
	{
		font-size: 3em;
	}

	h2
	{
		font-size: 2.2em;
	}

	h3
	{
		font-size: 1.6em;
	}

	h4
	{
		font-size: 1.3em;
	}

	.icon, .icon svg
	{
		height: 40px;
	}

	.unterkunftLogo
	{
		width: 80px;
		height: 70px;
		background-size: 70%;
	}

	.play
	{
		width: 60px;
		height: 60px;
	}

	#mobileHeader
	{
		display: block;
		position: sticky;
		position: -webkit-sticky;
		width: 100%;
		left: 0;
		top: 0;
		margin-top: 40px;
		z-index: 1000;
		background-color: #fff;
		box-shadow: 0px 0px 60px rgba(0,0,0,0.12);
	}

	#mobileHeader .wrap
	{
		height: 90px;
	}

	#mobileLogo
	{
		position: absolute;
		height: 100%;
		padding: 5px 0px;
	}

	#languages
	{
		width: 100%;
		right: auto!important;
		left: 0!important;
		height: 40px;
		border-radius: 0!important;
		justify-content: flex-start;
	}

	#languages span
	{
		margin: 0px 15px 0px 17px;
	}

	#bookingLink
	{
		width: 210px;
		padding-left: 0;
		padding-right: 0;
		height: 40px;
		justify-content: center;
	}

	#navOpener
	{
		position: absolute;
		width: 26px;
		height: 20px;
		cursor: pointer;
		top: 50%;
		transform: translateY(-50%);
		right: 40px;
	}

	.line
	{
		position: absolute;
		width: 100%;
		height: 2.5px;
		background-color: var(--dark);
		transition: all 0.2s;
	}

	#navOpener .line:nth-child(1)
	{
		top: 0;
		left: 50%;
		transform: translateX(-50%);
	}

	#navOpener .line:nth-child(2)
	{
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	#navOpener .line:nth-child(3)
	{
		bottom: 0;
		width: 50%;
		right: 0;
	}

	#navOpener.active .line:nth-child(1)
	{
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%) rotate(45deg);
	}

	#navOpener.active .line:nth-child(2)
	{
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%) rotate(-45deg);
	}

	#navOpener.active .line:nth-child(3)
	{
		width: 0;
	}

	#navigation ul
	{
		overflow: auto;
	}

	#navigation ul li a.mainLink
	{
		text-align: left;
		padding-right: 60px;
		font-size: 0.9em;
		letter-spacing: 0.05em;
	}

	#navigation ul li ul
	{
		display: block;
		width: 280px;
		left: -280px;
		top: 0;
		z-index: 1000;
		padding-top: 0;
		border-top: 0;
		overflow: auto;
		transition: all 0.2s;
	}

	#navigation ul li ul.active
	{
		left: 0;
	}

	#navigation ul li ul li:first-child:before
	{
		display: none;
	}

	.subNavClose
	{
		width: 100%;
		height: 50px;
		display: block;
		border-bottom: 1px solid rgba(255,255,255,0.3);
		position: relative;
		background-color: var(--gold);
	}

	.subNavClose:after
	{
		content: "";
		position: absolute;
		left: 50%;
		top: calc(50% + 1px);
		transform: translate(-50%, -50%);
		color: #fff;
		text-decoration: none;
		text-transform: uppercase;
		letter-spacing: 0.1em;
		font-family: 'Cormorant';
		font-size: 0.85em;
	}

	#de .subNavClose:after
	{
		content: "zurück";
	}

	#en .subNavClose:after
	{
		content: "back";
	}

	#es .subNavClose:after
	{
		content: "volver";
	}

	#nl .subNavClose:after
	{
		content: "terug";
	}

	#fr .subNavClose:after
	{
		content: "retour";
	}

	.subNavClose:before
	{
		content: "";
		position: absolute;
		width: 5px;
		height: 5px;
		border-right: 1px solid #fff;
		border-bottom: 1px solid #fff;
		left: 40px;
		top: 50%;
		transform: translateY(-50%) rotate(135deg);
	}

	.subNavOpener
	{
		position: absolute;
		width: 50px;
		height: 100%;
		right: 0;
		top: 0;
		border: none;
		transform: rotate(0);
		background-color: var(--mid);
	}

	.subNavOpener:after
	{
		content: "";
		position: absolute;
		width: 5px;
		height: 5px;
		border-right: 1px solid var(--dark);
		border-bottom: 1px solid var(--dark);
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%) rotate(-45deg);
	}

	.stoerer
	{
		padding: 40px 0px;
	}

	#intro + .withImg:before
	{
		height: 60px;
	}

	.map
	{
		padding-bottom: 45%;
	}

	.smallLogo
	{
		max-width: 180px;
		margin-bottom: -30px!important;
	}

	.colored + #plattformen
	{
		margin-top: -60px;
	}

	#kalender
	{
		top: -120px;
	}

	.accordeon + .accordeon
	{
		margin-top: 30px;
	}

	.accordeons
	{
		margin-top: -35px;
	}

	.colored .accordeons
	{
		margin-top: -95px;
	}

	.anfrageFlex .anfrageFlexItem:nth-child(1)
	{
		width: calc(100% - 320px);
	}

	.anfrageFlex .anfrageFlexItem:nth-child(2)
	{
		width: 320px;
	}

	.jumper
	{
		top: -140px;
	}

	.withGuestbook
	{
		margin-top: -25px;
	}

	.withImg.withMap
	{
		margin-top: -85px;
	}

	.colored + .colored.withNewsletter
	{
		margin-top: -90px;
	}

	#stoererInner
	{
		padding-left: 95px;
	}

	#stoererInner:before
	{
		width: 80px;
		left: -10px;
	}
}

@media all and (min-width: 1101px){
	#navigation ul li:hover ul
	{
		display: block;
	}

	.subNavClose
	{
		display: block;
		position: relative;
		height: 1px;
	}

	.subNavClose:before
	{
		content: "";
		position: absolute;
		width: 100vw;
		height: 100%;
		right: 0;
		top: 0;
		background-color: rgba(255,255,255,0.3);
	}

	#languages
	{
		border-left: 1px solid rgba(255,255,255,0.3);
		border-bottom: 1px solid rgba(255,255,255,0.3);
	}

	#bookingLink
	{
		border-bottom: 1px solid rgba(255,255,255,0.3);
	}
}

@media all and (max-width: 1200px){
	h1
	{
		hyphens: auto;
		-webkit-hyphens: auto;
	}
}

@media all and (min-width: 521px) and (max-width: 750px){
	.calendar
	{
		width: calc(50% - 20px);
	}
}

@media all and (min-width: 850px) and (max-width: 1100px){
	.calendar
	{
		width: calc(50% - 20px);
	}
}

@media all and (min-width: 1101px) and (max-width: 1175px){
	.calendar
	{
		width: calc(100% - 20px);
	}
}

@media all and (min-width: 1175px) and (max-width: 1420px){
	.calendar
	{
		width: calc(50% - 20px);
	}
}