	/* Basic styling */
	:root {
		/* Colours */
		--sunset-mustard: rgb(200, 147, 77);
		--dark-blue: rgb(0, 8, 50);
		--clear-gray: rgb(244, 244, 241);
		--dark-gray: rgb(67, 65, 66);
	}

	@font-face {
		font-family: 'ArcadiaNova';
		src: url('assets/fonts/arcadia-nova/ArcadiaNova-Regular.woff2') format('woff2'),
			url('assets/fonts/arcadia-nova/ArcadiaNova-Regular.woff') format('woff'),
			url('assets/fonts/arcadia-nova/ArcadiaNova-Regular.ttf') format('truetype');
	}

	@font-face {
		font-family: 'AustinCyr';
		src: url('assets/fonts/austin-cyr/AustinCyr-Normal.woff2') format('woff2'),
			url('assets/fonts/austin-cyr/AustinCyr-Normal.woff') format('woff'),
			url('assets/fonts/austin-cyr/AustinCyr-Normal.ttf') format('truetype');
		font-weight: normal;
	}

	@font-face {
		font-family: 'AustinCyr';
		src: url('assets/fonts/austin-cyr/AustinCyr-Roman.woff2') format('woff2'),
			url('assets/fonts/austin-cyr/AustinCyr-Roman.woff') format('woff'),
			url('assets/fonts/austin-cyr/AustinCyr-Roman.ttf') format('truetype');
		font-weight: lighter;
	}

	@font-face {
		font-family: 'Gidole';
		src: url('assets/fonts/gidole/Gidole-Regular.woff2') format('woff2'),
			url('assets/fonts/gidole/Gidole-Regular.woff') format('woff'),
			url('assets/fonts/gidole/Gidole-Regular.ttf') format('truetype');
	}

	@font-face {
		font-family: 'SpecialChars';
		src: url('assets/fonts/special/specialChars.woff2') format('woff2'),
			url('assets/fonts/special/specialChars.woff') format('woff'),
			url('assets/fonts/special/specialChars.ttf') format('truetype');
	}

	@font-face {
		font-family: 'Roboto';
		src: url('assets/fonts/roboto/Roboto-Regular.woff2') format('woff2'),
			url('assets/fonts/roboto/Roboto-Regular.woff') format('woff'),
			url('assets/fonts/roboto/Roboto-Regular.ttf') format('truetype');
	}

	* {
		font-family: 'Gidole', sans-serif;
		box-sizing: border-box;
		padding: 0;
		margin: 0;
	}

	html {
		scroll-behavior: smooth;
		overflow-x: hidden;
		max-width: 100vw;
	}

	body {
		font-size: 16px;
		overflow-x: hidden;
		background-color: var(--clear-gray);
		max-width: 100vw;
	}

	.special {
		font-family: 'SpecialChars', sans-serif !important;
	}

	.seperator {
		margin: auto;
		margin-top: 130px;
		margin-bottom: 130px;
		border: 0;
		height: 1px;
		background: var(--dark-blue);
		width: 60%;
	}

	.cc-nb-reject {
		display: none !important;
	}

	.disable-select {
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}

	.photo-controller {
		width: 100%;
		bottom: 0;
		left: 0;
		position: absolute;
		display: flex;
		flex-wrap: nowrap;
		flex-direction: row;
		justify-content: space-evenly;
		padding: 30px;
	}

	.mehr-btn {
		font-size: 16px;
		color: var(--dark-blue);
		border-bottom: 1px solid var(--dark-blue);
		position: relative;
		width: max-content;
		display: block;
		margin: auto;
		padding: 4px 8px;
		padding-left: 15px;
		text-decoration: none;
		margin-top: 10px;
		font-size: 14px !important;
	}

	.mehr-btn>.plus {
		position: absolute;
		left: -5px;
		top: 50%;
		transform: translateY(-50%);
		color: white;
		background-color: var(--dark-blue);
		border-radius: 100px;
		width: 15px;
		height: 15px;
		text-align: center;
		line-height: 14px;
	}

	.mehr-btn:hover {
		color: var(--sunset-mustard);
		border-color: var(--sunset-mustard);
	}

	.mehr-btn:hover>.plus {
		background-color: var(--sunset-mustard);
	}

	.photo-controller>span {
		cursor: pointer;
		height: 16px;
		width: 16px;
		border-radius: 80px;
		border: 1px solid var(--dark-blue);
		background-color: var(--clear-gray);
		transition: background-color 0.5s linear;
	}

	.photo-controller>span:hover {
		background-color: var(--sunset-mustard);
	}

	/* Heading Section */

	.heading-section {
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
		height: 100vh;
		width: 100vw;
		display: table-cell;
		vertical-align: middle;
		text-align: center;
		background-attachment: fixed;
	}

	.heading-section>h2 {
		font-family: 'ArcadiaNova', sans-serif;
		margin: auto;
		margin-top: auto;
		margin-top: auto;
		display: block;
		font-size: 70px;
		font-weight: 100;
		z-index: 9;
		position: relative;
		margin-top: -16px;
	}

	.heading-section>h1 {
		font-family: 'Roboto', sans-serif;
		margin: auto;
		display: block;
		color: white;
		font-size: 60px;
		top: 0;
		position: relative;
	}

	.stop-scrolling {
		height: 100%;
		overflow: hidden;
	}

	.parallax {
		transition: top 0.5s ease 0s;
	}

	/* Animation CSS */

	.animateOnScroll {
		transition: transform 1s linear, opacity 0.8s ease-in-out;
	}

	/*.{
        transform: translateX(-70vw) !important;
        opacity: 0;
    }

    .{
        transform: translateX(70vw) !important;
        opacity: 0;
    }*/

	.text-box {
		background: white;
		border: 2px solid var(--sunset-mustard);
		text-align: center;
		padding: 30px 40px;
	}

	.text-box>h2 {
		font-family: 'Roboto', sans-serif;
		margin: auto;
		display: block;
		color: var(--dark-blue);
		font-size: 52px;
	}

	.text-box>h3 {
		font-family: 'ArcadiaNova', sans-serif;
		margin: auto;
		display: block;
		color: var(--sunset-mustard);
		font-size: 58px;
		font-weight: 100;
		margin-top: -12px;
	}

	.text-box>span {
		line-height: 25px;
		color: var(--dark-gray);
		display: block;
	}

	.text-area {
		text-align: center;
		padding: 30px 40px;
	}

	.text-area>h2 {
		font-family: 'Roboto', sans-serif;
		margin: auto;
		display: block;
		color: var(--dark-blue);
		font-size: 52px;
	}

	.text-area>h3 {
		font-family: 'ArcadiaNova', sans-serif;
		margin: auto;
		display: block;
		color: var(--sunset-mustard);
		font-size: 58px;
		font-weight: 100;
		letter-spacing: 3px;
		margin-top: -10px;
	}

	.text-area>span {
		font-size: 15px;
		line-height: 25px;
		color: var(--dark-gray);
		display: block;
	}

	.text-area hr {
		width: 150px;
		border: 0;
		height: 1px;
		background: var(--dark-blue);
		margin: auto;
		margin-bottom: 30px;
	}


	.dot-btn {
		border: none;
		box-shadow: none;
		cursor: pointer;
		position: relative;
		border-bottom: 1px solid var(--dark-blue);
		color: var(--dark-blue);
		padding: 10px;
		padding-left: 25px;
		background: none;
		position: relative;
		background-size: 200% 100%;
		background-image: linear-gradient(to right, var(--sunset-mustard) 50%, var(--dark-blue) 50%),
			linear-gradient(to right, var(--dark-blue) 50%, var(--sunset-mustard) 50%);
		transition: background-position 0.5s linear, border-color 0.5s ease-in-out;
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
		background-position: -100% 0;
		font-size: 14px;
	}

	.dot-btn>svg>circle {
		transition: fill 0.5s ease-in-out;
	}

	.dot-btn:hover {
		background-position: 0 0;
		border-color: var(--sunset-mustard);
	}

	.dot-btn:hover>svg>circle {
		fill: var(--sunset-mustard);
	}

	.dot-btn>svg {
		height: 15px;
		width: 15px;
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);

	}

	.dot-input {
		color: var(--dark-blue);
		background: none;
		position: relative;
		font-size: 14px;
		width: 200px;
		height: 40px;
		display: block;
		margin: auto;
		margin-bottom: 40px;
	}

	.dot-input>input {
		height: 100%;
		width: 100%;
		background: none;
		border: none;
		box-shadow: none;
		font-size: 15px;
		outline: none !important;
		border-bottom: 1px solid var(--sunset-mustard);
		padding-right: 8px;
	}

	.dot-input>input::placeholder {
		color: var(--sunset-mustard);
	}

	.dot-input>svg {
		height: 15px;
		width: 15px;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);

	}

	.close-btn {
		cursor: pointer;
		position: absolute;
		top: 10px;
		right: 10px;
		height: 25px;
		width: 25px;
	}

	.close-btn span {
		width: 100%;
		height: 2px;
		background-color: var(--clear-gray);
		position: absolute;
		top: 50%;
		left: 0;
	}

	.close-btn span:first-child {
		transform: translateY(-50%) rotate(135deg);
	}

	.close-btn span:nth-child(2) {
		transform: translateY(-50%) rotate(-135deg);
	}

	.photo {
		padding: 5px;
		height: calc(200px + 13vw);
		width: auto;
		border: 1px solid var(--dark-blue);
		background-color: var(--clear-gray);
	}

	::placeholder {
		/* Chrome, Firefox, Opera, Safari 10.1+ */
		color: white;
		opacity: 1;
		/* Firefox */
	}

	:-ms-input-placeholder {
		/* Internet Explorer 10-11 */
		color: white;
	}

	::-ms-input-placeholder {
		/* Microsoft Edge */
		color: white;
	}

	/* Fixed Content and Nav Bar */

	.fixed-content {
		position: fixed;
		display: flex;
		width: 100%;
		height: 0;
		z-index: 9999999;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	nav {
		pointer-events: auto;
		position: absolute;
		top: 0;
		left: 0;
		width: 100vw;
		padding: 0 25px;
		z-index: 999;
		background-size: 100% 200%;
		background-position: 0 100%;
		background-repeat: no-repeat;
		background-image: linear-gradient(var(--dark-blue) 50%, rgba(0, 0, 0, 0) 50%);
		transition: 0.5s background-position linear;
	}

	nav a {
		color: white;
	}

	a {
		text-decoration: none;
		font-weight: 100;
	}

	.menu {
		list-style-type: none;
		display: flex;
		justify-content: flex-end;
		height: 120px;
		align-items: center;
		flex-wrap: nowrap;
		background: none;
		height: 120px;
		transition: 1s height linear;
	}

	.menu-height {
		height: 75px;
	}

	.houses-more {
		pointer-events: auto;
		z-index: 999;
		position: absolute;
		top: 75px;
		right: 225px;
		padding: 15px;
		display: flex;
		align-content: center;
		align-items: center;
		justify-content: center;
		width: max-content;
		height: 60px;
		background-size: 100% 200%;
		background-position: 0 100%;
		background-repeat: no-repeat;
		background-image: linear-gradient(var(--dark-blue) 50%, rgba(0, 0, 0, 0) 50%);
		-webkit-transition: top 0.8s linear, visibility 0.8s linear, 0.8s background-position linear, opacity 0.8s linear;
		transition: top 0.8s linear, visibility 0.8s linear, 0.8s background-position linear, opacity 0.8s linear;
		visibility: hidden;
		opacity: 0%;
	}

	.houses-more>a {
		background-size: 100% 200%;
		background-image: linear-gradient(to bottom, var(--sunset-mustard) 50%, var(--clear-gray) 50%), linear-gradient(to bottom, var(--clear-gray) 50%, var(--sunset-mustard) 50%);
		transition: background-position 0.8s linear, border-color 0.8s ease-in-out;
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
		background-position: 0 100%;
		border-bottom: 1px solid rgba(200, 147, 77, 0);
		padding-bottom: 2px;
		white-space: nowrap;
	}

	.houses-more>a:hover {
		background-position: 0 0;
		border-color: var(--sunset-mustard);
	}

	.blue-house-more {
		background-position: 0 0 !important;
		opacity: 100%;
		top: 0;
		z-index: 10;
	}

	.houses-item-hover,
	.houses-more:hover {
		top: 73px;
		visibility: visible;
		opacity: 100%;
	}

	.blue-house-more.houses-item-hover,
	.blue-house-more:hover {
		top: 73px;
	}

	.houses-more>a {
		margin: 14px;
		cursor: pointer;
	}

	.logo-alt {
		display: none;
	}

	.nav-alt:not(.stop-scrolling) .menu:not(.menu-height) .logo>img {
		display: none;
	}

	.no-avail .availability-search {
		display: none !important;
	}

	.nav-alt:not(.stop-scrolling) .menu:not(.menu-height) .logo>img.logo-alt {
		display: block;
	}

	.logo {
		font-size: 20px;
		padding: 7.5px 25px 7.5px 25px;
		float: left;
		position: absolute;
		left: 0;
	}

	.logo>img {
		max-width: 200px;
		height: auto;
		margin-left: 20px;
	}

	.item {
		padding: 25px;
	}

	.item a {
		background-size: 100% 200%;
		background-image: linear-gradient(to bottom, var(--sunset-mustard) 50%, var(--clear-gray) 50%), linear-gradient(to bottom, var(--clear-gray) 50%, var(--sunset-mustard) 50%);
		transition: background-position 0.8s linear, border-color 0.8s ease-in-out;
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
		background-position: 0 100%;
		border-bottom: 1px solid rgba(200, 147, 77, 0);
		padding-bottom: 2px;
	}

	body.nav-alt:not(.stop-scrolling) .menu:not(.menu-height) .item a,
	body.nav-alt:not(.stop-scrolling) .houses-more:not(.blue-house-more)>a {
		background-image: linear-gradient(to bottom, var(--sunset-mustard) 50%, var(--dark-blue) 50%), linear-gradient(to bottom, var(--dark-blue) 50%, var(--sunset-mustard) 50%);
	}

	.item a:hover {
		border-color: var(--sunset-mustard);
		background-position: 0 0;
	}

	body.nav-alt:not(.stop-scrolling) .menu:not(.menu-height) .item:not(.button) a:hover,
	body.nav-alt:not(.stop-scrolling) .menu:not(.menu-height) .item a:hover::after,
	.houses-more>a:hover {
		border-color: var(--sunset-mustard);
	}



	.logo {
		order: 0;
		cursor: pointer;
	}

	.item {
		order: 1;
		position: relative;
		display: block;
		width: auto;
		line-height: 70px;
	}


	.availability-search {
		pointer-events: auto;
		text-align: center;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		box-sizing: border-box;
		padding-left: 15px;
		padding-right: 20px;
		display: flex;
		align-content: center;
		align-items: center;
		justify-content: center;
		background-size: 100% 200%;
		background-position: 0 0;
		background-repeat: no-repeat;
		background-image: linear-gradient(rgba(0, 0, 0, 0) 50%, var(--dark-blue) 50%);
		transition: 1s background-position linear, 1s height linear, 1s top linear;
		height: 120px;
		top: calc(100vh - 120px);
		z-index: 999;
	}

	.availability-form {
		pointer-events: auto;
		position: relative;
		background-color: var(--dark-blue);
		color: white;
		text-align: center;
		padding: 40px;
		width: 90vw;
		max-width: 600px;
		display: flex;
		flex-direction: column;
		height: max-content;
		justify-content: space-evenly;
		align-content: center;
		transition: visibility .4s, transform .4s ease, -webkit-transform .4s ease;
		max-height: 500px;
		top: 50vh;
		z-index: 99999;
	}

	.availability-form>.logo {
		max-width: 250px;
		position: relative;
		margin: auto;
		margin-bottom: 20px;
	}

	.availability-form h2 {
		font-family: 'Roboto', sans-serif;
		font-size: 36px;
	}

	.availability-form h3 {
		font-family: 'ArcadiaNova', sans-serif;
		color: var(--sunset-mustard);
		top: -20px;
		font-size: 60px;
		font-weight: 100;
		position: relative;
	}

	.availability-form span {
		line-height: 25px;
		margin-top: 5px;
		margin-bottom: 5px;
	}

	.availability-form input {
		border: none;
		max-width: 300px;
		margin: auto;
		width: 90%;
		padding: 12px 18px;
		box-sizing: border-box;
		margin-top: 5px;
		margin-bottom: 5px;
		box-shadow: none;
		border-radius: 0.2px;
		outline: none;
		font-size: 14px;
	}

	.availability-form .submit-input {
		background-color: transparent;
		cursor: pointer;
		color: white;
		width: 100%;
		height: 100%;
		transition: 0.5s color linear;
		margin: 0;
		padding: 0;
	}

	.availability-form .submit-input:hover {
		color: var(--sunset-mustard);
	}

	.availability-form input::placeholder {
		color: var(--dark-blue);
	}

	.availability-form .dot-btn {
		background-image: linear-gradient(to right, var(--sunset-mustard) 50%, var(--clear-gray) 50%), linear-gradient(to right, var(--clear-gray) 50%, var(--sunset-mustard) 50%);
		border-bottom: 1px solid var(--clear-gray);
		max-width: 200px;
		margin: auto;
		margin-bottom: 0;
		margin-top: 0;
		font-size: 14px;
	}

	.availability-form .dot-btn:hover {
		border-color: var(--sunset-mustard);
	}

	.message-form {
		pointer-events: auto;
		position: absolute;
		background-color: var(--dark-blue);
		color: white;
		text-align: center;
		padding: 40px;
		width: 90vw;
		max-width: 600px;
		height: max-content;
		transition: visibility .4s, transform .4s ease, -webkit-transform .4s ease;
		max-height: 500px;
		top: 50vh;
		transform: translateY(-50%);
	}

	.availability-height {
		height: 45px;
		top: calc(100vh - 45px);
	}

	.availability-search>form>input {
		border: none;
		outline: none;
		background: none;
		color: white;
		padding-bottom: 10px;
		margin: 10px;
		font-size: 12px;
		cursor: pointer;
		position: relative;
		border-bottom: 0.5px solid white;
		background-size: 120px 100%;
		background-image: linear-gradient(to right, var(--sunset-mustard) 50%, white 50%),
			linear-gradient(to right, white 50%, var(--sunset-mustard) 50%);
		transition: background-position 0.5s linear, border-color 0.5s ease-in-out;
		-webkit-background-clip: text;
		background-clip: text;
		background-position: 60px 0;
	}

	.availability-search>form>input::placeholder {
		color: transparent;
	}

	.availability-search>form>input:hover {
		background-position: 0 0;
		border-color: var(--sunset-mustard) !important;
	}

	.availability-search>form {
		display: flex;
	}

	.drop-down {
		position: relative;
		cursor: pointer;
	}

	.drop-down .selected div {
		display: block;
		width: 125px;
		cursor: pointer;
		border: none;
		outline: none;
		font-size: 12px;
		border-bottom: 0.5px solid white;
		padding: 0;
		margin: 10px;
		text-align: left;
		padding-bottom: 10px;
		transition: background-position 0.5s linear, border-color 0.5s ease-in-out;
	}

	.drop-down:hover div {
		border-color: var(--sunset-mustard);
	}

	.drop-down:hover #responsive-person div {
		border-color: var(--sunset-mustard) !important;
	}

	.chevron-up {
		position: absolute;
		top: 40%;
		left: calc(100% - 25px);
		transform: translateY(-50%);
		height: 16px;
		width: 16px;
		z-index: -9999;
		transition: fill 0.5s linear;
	}

	.chevron-down {
		position: absolute;
		top: 40%;
		left: calc(100% - 16px);
		transform: translateY(-50%);
		height: 16px;
		width: 16px;
		z-index: -9999;
		transition: fill 0.5s linear;
	}

	.drop-down:hover .chevron-up {
		fill: var(--sunset-mustard);
	}

	.drop-down:hover .chevron-down {
		fill: var(--sunset-mustard) !important;
	}

	.drop-down .selected div span {
		cursor: pointer;
		display: block;
		background-size: 120px 100%;
		background-image: linear-gradient(to right, var(--sunset-mustard) 50%, white 50%),
			linear-gradient(to right, white 50%, var(--sunset-mustard) 50%);
		transition: background-position 0.5s linear, border-color 0.5s ease-in-out;
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
		background-position: 60px 0;
	}

	.drop-down:hover div span {
		background-position: 0 0;
	}

	.drop-down .option {
		position: relative;
	}

	.drop-down .options ul {
		background: rgba(0, 0, 0, 0.5);
		display: none;
		list-style: none;
		padding: 10px 0px;
		position: absolute;
		left: 0px;
		top: -360px;
		width: auto;
		min-width: 120px;
		color: white;
		font-size: 14px;
	}

	.blue-search .drop-down .options ul {
		background: var(--dark-blue) none repeat scroll 0 0;
	}

	.drop-down .selected span.value,
	.drop-down .options span.value {
		display: none;
	}

	.drop-down .options ul li {
		cursor: pointer;
	}

	.drop-down .options ul li div {
		display: block;
		text-decoration: none;
		color: white;
		cursor: pointer;
		padding: 3px;
		border-bottom: 1px solid rgba(0, 0, 0, 0);
		width: 30%;
		margin: auto;
	}

	.drop-down .options ul li:hover>div {
		color: var(--sunset-mustard);
		transition: 0.2s ease;
		border-bottom: 1px solid var(--sunset-mustard);
	}


	.availability-search-btn {
		cursor: pointer;
		margin-left: 10px;
		fill: white;
		transition: fill 0.5s linear;
	}

	.availability-search-btn:hover {
		fill: var(--sunset-mustard);
	}

	.availability-height>form>input,
	.availability-height .selected div {
		padding-bottom: 5px;
	}

	.ui-datepicker {
		display: none;
		background-color: rgba(0, 0, 0, 0.5);
		margin-top: 0.25rem;
		padding: 0.5rem;
		transition: background-color 0.5s linear, border 0.5s linear;
		z-index: 9999999999 !important
	}

	body:not(.no-avail) .ui-datepicker {
		top: calc(100vh - 375px) !important;
	}

	body:not(.no-avail) .blue-nav.ui-datepicker {
		top: calc(100vh - 335px) !important;
	}

	.blue-nav.ui-datepicker {
		border: none;
		background-color: var(--dark-blue);

	}

	.ui-datepicker-calendar table {
		border-collapse: collapse;
		border-spacing: 0;
	}

	.ui-datepicker-calendar thead th {
		padding: 0.25rem 0;
		text-align: center;
		font-size: 0.8rem;
		font-weight: 400;
		color: white;
		font-size: 14px;
	}

	.ui-datepicker-calendar tbody td {
		width: 2.5rem;
		text-align: center;
		padding: 0;
		font-size: 14px;
	}

	.ui-datepicker-calendar tbody td a {
		display: block;
		transition: 0.3s all;
		color: white;
		font-size: 14px;
		text-decoration: none;
		width: 2rem;
		height: 2rem;
		line-height: 2rem;
		box-sizing: border-box;
		border: 1px solid rgba(0, 0, 0, 0);
	}

	.ui-datepicker-calendar tbody td a:hover {
		color: var(--sunset-mustard);
		border: 1px solid var(--sunset-mustard);
	}

	.ui-datepicker-calendar tbody td a.ui-state-active {
		background: var(--sunset-mustard);
		color: #ffffff;
	}

	.ui-datepicker-calendar tbody td a.ui-state-highlight {}

	.ui-datepicker-header a span {
		display: none;
	}

	.ui-datepicker-header a.ui-corner-all {
		cursor: pointer;
		position: absolute;
		top: 0;
		width: 2rem;
		height: 2rem;
		margin: 0.5rem;
		text-align: center;
	}

	.ui-datepicker-header a.ui-datepicker-prev {
		left: 0;
	}

	.ui-datepicker-header a.ui-datepicker-prev::after {
		content: url(https://ostseeferienhaus.de/assets/icons/chevron-left.svg);
		font-size: 1.5rem;
		color: white;
	}

	.ui-datepicker-header a.ui-datepicker-next {
		right: 0;
	}

	.ui-datepicker-header a.ui-datepicker-next::after {
		content: url(https://ostseeferienhaus.de/assets/icons/chevron-right.svg);
		font-size: 1.5rem;
		color: white;
	}

	.ui-datepicker-title {
		text-align: center;
		line-height: 2rem;
		margin-bottom: 0.25rem;
		font-size: 14px;
		font-weight: 500;
		padding-bottom: 0.25rem;
		color: white;
		border-bottom: 0.5px solid white;
	}

	.ui-datepicker-week-col {
		color: white;
		font-weight: 400;
		font-size: 14px;
	}

	.ui-datepicker-unselectable,
	.ui-state-disabled {
		color: var(--clear-gray);
		width: 2rem;
		height: 2rem;
		opacity: 0.6;
	}

	.blue-nav {
		background-position: 0 0 !important;
	}

	.blue-search {
		background-position: 0 100%;
	}

	.hidden {
		visibility: hidden !important;
		transform: translateX(100%) !important;
	}

	/* Slideshow */

	.carousel-container {
		width: 100%;
		height: 100%;
		overflow: hidden;
	}

	.carousel-slides {
		display: flex;
		width: max-content;
		height: 100%;
	}

	.carousel-slides>.slides {
		height: 100%;
		width: 100vw;
		background-position: 50% 50%;
		background-size: cover;
	}

	.slideshow-slides-small {
		height: 250px;
		width: 250px;
		border-radius: 500px;
		border: 6px solid var(--clear-gray);
		position: absolute;
		top: -125px;
		left: 50%;
		transform: translateX(-50%);
		transition: opacity 0.5s linear;
		z-index: 9;
		object-fit: cover;
	}

	.slideshow-container>button {
		background: none;
		border: none;
		height: 80px;
		width: 80px;
		font-size: 50px;
		color: var(--clear-gray);
		opacity: 0.9;
		cursor: pointer;
		z-index: 9;
	}

	.slideshow-prev {
		position: absolute;
		left: 20px;
		top: 50%;
		transform: translateY(-50%);
	}

	.slideshow-next {
		position: absolute;
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
	}

	/* Footer Section */

	footer {
		margin: auto;
		margin-bottom: 100px;
		text-align: center;
		padding-left: 100px;
		padding-right: 100px;
		max-width: 1200px;
		padding-top: 100px;
	}

	footer>.contact {
		display: flex;
		justify-content: center;
		font-size: 14px;
		margin-bottom: 20px;
		align-items: center;
	}


	.contact a,
	.contact span {
		color: var(--dark-gray);
	}

	footer>.contact>span {
		margin: 15px;
	}

	footer>.contact>svg {
		height: 5px;
		width: 5px;
		margin-left: 10px;
		margin-right: 10px;
	}

	footer>.social {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-bottom: 30px;
		cursor: pointer;
	}


	footer>.social>a {
		padding-left: 10px;
		padding-right: 10px;
	}

	footer>.links {
		display: flex;
		justify-content: center;
		cursor: pointer;
	}

	footer>.links>span {
		margin-left: 25px;
		margin-right: 25px;
		color: var(--dark-blue);
	}

	.links>span>a {
		background-size: 100% 200%;
		background-image: linear-gradient(to bottom, var(--sunset-mustard) 50%, var(--dark-gray) 50%),
			linear-gradient(to bottom, var(--dark-gray) 50%, var(--sunset-mustard) 50%);
		transition: background-position 0.5s linear;
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
		background-position: 0 -100%;
	}

	.links>span>a:hover {
		background-position: 0 0;
	}

	footer>.footer-text {
		font-size: 14px;
		line-height: 25px;
	}

	footer>.copyright {
		font-size: 14px;
	}

	footer>br {
		margin-bottom: 40px;
	}

	footer>hr {
		border: 0;
		height: 1px;
		background: var(--dark-blue);
	}

	footer>.dot-btn {
		padding-left: 10px;
		margin-bottom: 50px;
		display: inline-block;
	}

	footer>.dot-btn>svg {
		position: absolute;
		left: 50%;
		transform: translateX(-50%) !important;
		top: -10px;
		transform: none;
		margin-bottom: 5px;
		height: 10px;
		width: 10px;
	}

	.checkbox {
		display: inline-flex;
		cursor: pointer;
		position: relative;
		justify-content: center;
		margin: 0;
		margin-left: 5px;
	}

	.checkbox>span {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		line-height: 0 !important;
		margin: 0 !important;
	}

	.checkbox>input {
		height: 15px;
		width: 15px;
		padding: 0;
		-webkit-appearance: none;
		-moz-appearance: none;
		-o-appearance: none;
		appearance: none;
		border: 1px solid var(--clear-gray);
		outline: none;
		transition-duration: 0.3s;
		background-color: none;
		cursor: pointer;
	}

	.checkbox>input:checked {}

	.checkbox>input:checked+span::before {
		content: url(assets/icons/check.svg);
		display: block;
		text-align: center;
		color: #41B883;
	}

	.checkbox>input:active {
		border: 2px solid var(--dark-gray);
	}


	/* Responsive */

	.responsive-nav {
		display: none;
		position: relative;
		top: 0;
	}

	.responsive-nav>.logo {
		display: block;
		height: 45px;
		width: auto;
		left: 0;
		position: relative;
		margin-top: 14px;
		margin-bottom: 12px;
		z-index: 999999999999;
		cursor: pointer;
	}

	.responsive-nav .logo-alt {
		display: none;
	}

	.nav-alt:not(.stop-scrolling) nav:not(.blue-nav) .responsive-nav .logo {
		display: none;
	}

	.nav-alt:not(.stop-scrolling) nav:not(.blue-nav) .responsive-nav img.logo-alt {
		display: block;
	}

	#menu-hamburger {
		position: absolute;
		right: 10px;
		height: 20px;
		width: 20px;
		top: 30px;
		cursor: pointer;
		z-index: 999999;
	}

	#menu-hamburger>span {
		position: absolute;
		width: 100%;
		height: 2px;
		border-radius: 1px;
		background-color: var(--clear-gray);
	}

	.nav-alt:not(.stop-scrolling) nav:not(.blue-nav) #menu-hamburger>span {
		background-color: var(--dark-blue);
	}

	.nav-alt:not(.stop-scrolling) nav:not(.blue-nav) #responsive-availability-search-btn {
		fill: var(--dark-blue)
	}

	#menu-hamburger>span:first-child {
		top: 0;
		transition: transform .4s ease, -webkit-transform .4s ease;
	}

	#menu-hamburger>span:nth-child(2) {
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		transition: transform .4s ease, -webkit-transform .4s ease, opacity .4s;
	}

	#menu-hamburger>span:nth-child(3) {
		bottom: 0;
		transition: transform .4s ease, -webkit-transform .4s ease;
	}

	.menu-open>span:first-child {
		transform: translateY(-50%) rotate(135deg) !important;
		top: 50% !important;
	}

	.menu-open>span:nth-child(2) {
		transform: rotate(-135deg) translateY(-50%) !important;
		opacity: 0 !important;
	}

	.menu-open>span:nth-child(3) {
		transform: translateY(-50%) rotate(-135deg) !important;
		top: 50% !important;
	}

	.availability-height.responsive {
		top: calc(100vh - 55px);
	}


	.alle-hauser-wrapper {
		width: 100vw;
		max-width: 600px;
		position: absolute;
		right: -600px;
		top: 0;
		height: 100vh;
		overflow: visible;
		background-color: var(--clear-gray);
		z-index: 9999;
		transition: right 0.5s ease-in-out;
		-webkit-box-shadow: -9px -3px 28px 0px rgba(0, 0, 0, 0.06);
		-moz-box-shadow: -9px -3px 28px 0px rgba(0, 0, 0, 0.06);
		box-shadow: -9px -3px 28px 0px rgba(0, 0, 0, 0.06);
	}

	.alle-hauser {
		width: 100%;
		position: absolute;
		left: 0;
		top: 0;
		overflow-y: hidden;
		height: 100vh;
		padding: 20px;
		z-index: 999;
		background-color: var(--clear-gray);
	}

	.houses-btn {
		pointer-events: auto;
		color: white;
		background-color: var(--sunset-mustard);
		position: absolute;
		top: 55vh;
		transform: translateY(-50%) translateX(-54%) rotate(-90deg);
		left: 0;
		padding: 10px 35px;
		padding-bottom: 5px;
		cursor: pointer;
		transition: right 0.4s linear;
		z-index: 9999999;
	}

	.houses-btn>br {
		margin-bottom: 5px;
	}

	.houses-btn>svg {
		display: block;
		margin: auto;
		height: 22px;
		width: 22px;
		color: white;
		margin-top: 10px;
	}

	.overlay {
		height: 100vh;
		width: 100vw;
		background-color: black;
		opacity: 0;
		position: absolute;
		left: -100vw;
		top: 0;
		transition: 0.5s opacity ease-in-out;
		pointer-events: none;
	}

	.alle-hauser>.house {
		width: 100%;
		display: flex;
		flex-direction: row;
		padding-top: 20px;
		padding-bottom: 20px;
		border-bottom: 1px solid #888a9a;
		font-family: 'Gidole', sans-serif;
	}


	.alle-hauser>.house:last-child {
		border-bottom: none;
		margin-bottom: 20px;
	}

	.alle-hauser>.house>div img {
		width: 100%;
	}

	.alle-hauser>.house>div {
		width: 50%;
		position: relative;
		text-align: center;
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
	}

	.alle-hauser h3 {
		font-size: 26px;
		font-weight: 100;
		padding-bottom: 10px;
		color: var(--dark-blue);
		text-align: center;
		width: 100%;
	}

	.alle-hauser>.house>div>a>span {
		font-size: 13px;
		line-height: 1.5;
		color: var(--dark-blue);
		text-decoration: none;
		text-align: center;
		width: 100%;
	}

	.alle-hauser .capacity {
		color: var(--dark-blue);
		display: block;
		margin: auto;
		text-align: center;
		width: 100%;
		margin: 0;
		margin-top: 15px;
	}

	.alle-hauser .capacity>.number {
		font-family: 'AustinCyr', sans-serif;
		font-size: 24px;
	}

	.alle-hauser .capacity>.persons {
		font-size: 11px;
		text-transform: uppercase;
	}

	.alle-hauser .dot-btn {
		border-bottom: none;
		color: var(--sunset-mustard);
		margin: auto;
		font-weight: 100;
		font-size: 12px;
		padding-left: 20px;
		cursor: pointer;
		transition: color 0.5s linear;
	}


	.alle-hauser .dot-btn svg {
		height: 12px;
		width: 12px;
	}

	.alle-hauser .dot-btn svg circle {
		transition: fill 0.5s linear;
	}

	.alle-hauser .dot-btn:hover {
		color: var(--dark-blue);
	}

	.alle-hauser .dot-btn:hover svg circle {
		fill: var(--dark-blue);
	}


	.responsive {
		box-sizing: border-box;
		left: 0;
		transform: none;
		display: none;
		position: relative;
		left: 0;
		width: 100%;
		top: 0 !important;
		z-index: 99999;
		background-image: none !important;
		height: 60px;
	}

	.responsive input,
	.responsive .drop-down {
		width: calc(30% - 10px);
		margin: 5px !important;
		position: relative;
		border-radius: 0;
	}

	.nav-alt:not(.stop-scrolling) nav:not(.blue-nav) .responsive.availability-search>form>input {
		background-image: linear-gradient(to right, var(--sunset-mustard) 50%, var(--dark-blue) 50%), linear-gradient(to right, var(--dark-blue) 50%, var(--sunset-mustard) 50%);
		border-bottom: 0.5px solid var(--dark-blue);
	}

	.nav-alt:not(.stop-scrolling) nav:not(.blue-nav) .drop-down .selected div span {
		background-image: linear-gradient(to right, var(--sunset-mustard) 50%, var(--dark-blue) 50%), linear-gradient(to right, var(--dark-blue) 50%, var(--sunset-mustard) 50%);
	}

	.nav-alt:not(.stop-scrolling) nav:not(.blue-nav) .chevron-down {
		fill: var(--dark-blue);
	}

	.nav-alt:not(.stop-scrolling) nav:not(.blue-nav) .drop-down .selected div {
		border-bottom: 0.5px solid var(--dark-blue);
	}

	.responsive .drop-down .selected>div {
		margin: 0 !important;
	}

	.responsive>form {
		align-items: center;
		justify-content: center;
		width: 100%;
	}

	.responsive>form>svg {
		width: 10%;
	}

	.responsive-menu {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: space-evenly;
		position: absolute;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		background-color: var(--dark-blue);
		transform: none;
		visibility: visible;
		transition: visibility .4s, transform .4s ease, -webkit-transform .4s ease;
		padding-top: 140px;
		padding-bottom: 120px;
		padding-left: 15vw;
		z-index: -100;
		font-size: calc(10px + 1vw);
	}

	.responsive-menu .more {
		display: none;
		font-size: calc(10px + 1vw);
		padding-left: 40px;
	}

	.whatsapp {
		max-width: 150px;
		cursor: pointer;
	}

	.nordic {
		color: var(--sunset-mustard) !important;
	}

	@media only screen and (min-width: 1500px) {
		section:not(.fullscreen) {
			padding-left: 22vw !important;
			padding-right: 22vw !important;
		}
	}


	@media only screen and (max-width: 900px) {
		nav {
			padding: 0 10px;
			padding-left: 5px;
		}

		nav .menu {
			display: none;
		}

		.responsive-nav {
			display: block;
			height: 120px;
		}


		.availability-form {
			position: absolute;
			width: 100%;
			top: 0;
			height: 100vh;
			max-width: 100vw;
			padding: 15px;
			padding-top: 50vh;
			padding-bottom: 50vh;
			z-index: 999;
			max-height: 100vh;
			transform: none;
		}

		.dot-btn {
			font-size: calc(7px + 1.5vw);
			padding-left: calc(10px + 2vw);
		}

		.dot-btn>svg {
			height: calc(7px + 1.5vw);
			border-left-width: calc(7px + 1.5vw);
		}

		.availability-form .dot-btn {
			margin-top: 5px;
		}

		.availability-form span {
			font-size: 14px;
			margin: 2px;
		}

		.availability-form h2 {
			font-size: 32px;
		}

		.availability-form h3 {
			font-size: 55px;
		}

		.availability-form>.close-btn {
			visibility: hidden;
		}

		.drop-down .selected div {
			width: 100%;
		}

		.heading-section {
			background-attachment: scroll;
		}

		.heading-section h1 {
			font-size: calc(12px + 5vw);
			width: 100vw;
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
		}

		.heading-section h2 {
			font-size: calc(20px + 5vw);
			width: 100vw;
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			margin-top: 45px;
		}

		.text-box h2,
		.text-area h2 {
			font-size: calc(14px + 4vw);
		}

		.text-box h3,
		.text-area h3 {
			font-size: 50px
		}

		.text-box span,
		.text-area span {
			font-size: calc(8px + 1.5vw);
		}


		footer {
			margin-top: 80px !important;
		}

		footer .links,
		footer .contact {
			flex-direction: column;

		}

		.links>span {
			margin: 25px;
		}

		.availability-search {
			display: none;
		}

		.responsive {
			display: block;
		}

		.drop-down .options ul {
			top: 50px;
		}

		.ui-datepicker {
			top: 140px !important;
		}

	}


	/* Mobile View */

	@media only screen and (max-width: 600px) {
		.heading-section h1 {
			font-size: calc(12px + 7vw);
			width: 90vw;
		}

		.heading-section h2 {
			font-size: calc(12px + 9vw);
			width: 90vw;
			margin-top: 65px;
		}

		.alle-hauser-wrapper {
			right: -100vw;
		}

		.alle-hauser h3 {
			font-size: calc(12px + 2vw);
		}

		.alle-hauser>.house>div>span {
			font-size: calc(8px + 1vw);
		}

		.alle-hauser .capacity>.number {
			font-size: calc(10px + 2vw);
		}

		.alle-hauser .capacity>.persons {
			font-size: calc(6px + 1vw);
		}

	}

	.slideAnimation {
		transition-property: left, right, top, bottom !important;
		transition-duration: 1.5s !important;
		transition-timing-function: ease-in-out !important;
		transition-delay: 0s !important;
		transition: top 1.5s ease-in-out, left 1.5s ease-in-out, right 1.5s ease-in-out, bottom 1.5s ease-in-out !important;
	}

	.slideLeft {
		left: -100% !important;
	}

	.slideRight {
		left: 100vw !important;
	}

	/* Mobile View */

	a[href^="tel"] {
		text-decoration: none;
		/* Remove underline. */
		/* Additional css `propery: value;` pairs here */
	}


	@-webkit-keyframes shake {
		0% {
			-webkit-transform: translateX(2px);
		}

		10% {
			-webkit-transform: translateX(-1px);
		}

		20% {
			-webkit-transform: translateX(-3px);
		}

		30% {
			-webkit-transform: translateX(0px);
		}

		40% {
			-webkit-transform: translateX(1px);
		}

		50% {
			-webkit-transform: translateX(-1px);
		}

		60% {
			-webkit-transform: translateX(-3px);
		}

		70% {
			-webkit-transform: translateX(2px);
		}

		80% {
			-webkit-transform: translateX(-1px);
		}

		90% {
			-webkit-transform: translateX(2px);
		}

		100% {
			-webkit-transform: translateX(1px);
		}
	}

	.shake {
		-webkit-animation-name: shake;
		-webkit-animation-duration: 0.5s;
		-webkit-transform-origin: 50% 50%;
		-webkit-animation-iteration-count: 1;
	}

	/* Cookie Banner */

	.freeprivacypolicy-com---nb-headline {
		right: 0;
		top: auto;
		bottom: 0;
		left: 0;
		max-width: 550px;
		width: 100%;
		position: fixed;
	}

	.freeprivacypolicy-com---nb .cc-nb-text {
		font-size: 12px;
		font-family: 'Gidole', sans-serif;
	}

	.freeprivacypolicy-com---nb .cc-nb-title {
		font-size: 18px;
		font-family: 'Gidole', sans-serif;
	}

	.freeprivacypolicy-com---nb .cc-nb-main-container {
		padding: 1.5rem;
	}

	.freeprivacypolicy-com---palette-light .cc-nb-okagree,
	.freeprivacypolicy-com---palette-light .cc-nb-reject {
		background-color: var(--sunset-mustard);
		font-family: 'Gidole', sans-serif;
	}

	.sauna-slides {
		width: 80vw !important;
		margin: auto !important;
		max-width: 1400px !important;
		height: 600px !important;
	}

	.carousel-slides-sauna {
		display: flex;
		width: max-content;
		height: 100%;
	}

	.carousel-slides-sauna>.slides {
		height: 100%;
		width: 100vw;
		background-position: 50% 50%;
		background-size: cover;
	}

	.sauna-slides .slides {
		width: 80vw;
		max-width: 1400px;
	}

	.slideshow-section.sauna {
		margin-bottom: 40px;
	}

	.slideshow-section.sauna>.text-box {
		width: 100%;
		max-width: 900px;
		width: 80%;
		margin: auto;
		margin-top: -40px;
		z-index: 99;
		position: relative;
	}

	@media only screen and (max-width: 900px) {
		.sauna-slides {
			width: 100vw !important;
		}

		.sauna-slides .slides {
			width: 100vw;
		}

		.slideshow-section.sauna>.text-box {
			width: 100% !important;
		}

	}