:root 
{
	--grey: #e0e0e0;
	--darkgrey: #b7b7b7;
	--midgrey: #8c8c8c;
	--lightgrey: #f5f5f5;
	--dark: #000000;
}

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

body 
{
	font-size: 1.25em;
	color: var(--dark);
	font-family: 'Inter', sans-serif;
	font-weight: 300;
	line-height: 1.85;
	overflow-x: hidden;
	background-color: var(--lightgrey);
}

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

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

h1, h2, h3
{
	font-family: 'Titillium Web';
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.02em;
}

h1
{
	font-size: 3.5em;
	text-shadow: 0px 0px 20px rgba(0,0,0,0.6);
}

h2
{
	font-size: 2.4em;
}

h3
{
	font-size: 2em;
}

h1 strong, h2 strong, h3 strong
{
	font-weight: 600;
}

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

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

.textBox h3 + p, .textBox h3 + ul
{
	margin-top: 0.8em;
}

.text.big p, .text.big ul
{
	font-size: 1.25em;
}

h2 strong
{
	position: relative;
}

h2 strong:before
{
	content: "";
	position: absolute;
	width: 105%;
	height: 0.52em;
	background-color: var(--grey);
	left: 50%;
	top: 52%;
	transform: translate(-50%, -50%);
	z-index: -5;
}

#header
{
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 1000;
	transition: all 0.2s;
	box-shadow: 0px 0px 20px rgba(0,0,0,0);
}

#header.scrolled
{
	background-color: #fff;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.06);
}

#header .wrap, #opener .wrap, .wrap.bigWrap
{
	max-width: 1250px;
}

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

#navigation ul
{
	text-align: right;
}

#navigation ul li
{
	display: inline-block;
	margin-left: 40px;
	padding: 60px 0px;
	transition: all 0.2s;
	position: relative;
	white-space: nowrap;
}

#header.scrolled #navigation ul li
{
	padding: 42px 0px;
}

#navigation ul li a
{
	color: #fff;
	text-decoration: none;
	transition: all 0.2s;
	opacity: 0.8;
}

#header.scrolled #navigation ul li a
{
	color: var(--dark);
}

#navigation ul li:hover a, #navigation ul li.active a
{
	opacity: 1;
}

#navigation ul li.active a
{
	font-weight: 600;
}

#navigation ul li ul
{
	display: none;
	position: absolute;
	text-align: left;
	background-color: var(--grey);
	padding: 9px 20px 12px;
	left: -20px;
	min-width: calc(100% + 40px);
	font-size: 0.85em;
	top: 75%;
}

#navigation ul li:hover ul
{
	display: block;
}

#navigation ul li ul li, #header.scrolled #navigation ul li ul li
{
	display: block;
	padding: 0;
	margin-left: 0;
	margin-top: 5px;
}

#navigation ul li ul li a
{
	color: var(--dark);
}

#navigation ul li.active ul li a
{
	font-weight: 300;
}

#navigation ul li.active ul li.active a
{
	font-weight: 600;
}

.logo
{
	position: absolute;
	height: 100%;
	padding: 20px 0px;
	left: 20px;
	transition: all 0.2s;
}

#header.scrolled .dark
{
	opacity: 1;
}

.dark, #header.scrolled .white
{
	opacity: 0;
}

#opener
{
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

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

.dividerImg.blured:after
{
	-webkit-backdrop-filter: blur(6px);
 	backdrop-filter: blur(6px);
}

#opener:after
{
	background-color: rgba(0,0,0,0.2);
}

#openerImg
{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-size: cover;
	background-position: center;
	filter: grayscale(0.7);
}

#openerContent
{
	position: absolute;
	left: 0;
	width: 100%;
	top: 52%;
	transform: translateY(-50%);
	color: #fff;
	z-index: 100;
	text-align: center;
}

#downArrow
{
	position: absolute;
	width: 101%;
	left: 50%;
	transform: translateX(-50%);
	bottom: -2px;
	z-index: 200;
}

#openerContent.start
{
	top: auto;
	bottom: 60px;
}

.start h1
{
	display: none;
}

#openerContent .buttonArea p a
{
	background-color: #fff;
}

#down
{
	position: absolute;
	width: 3px;
	height: calc(50% - 9.3em);
	background-color: #fff;
	left: 50%;
	transform: translateX(-50%);
	bottom: 60px;
	z-index: 10;
}

#down:after
{
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	border-right: 3px solid #fff;
	border-bottom: 3px solid #fff;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	bottom: 0;
}

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

.text
{
	margin: 60px 0px;
}

.divider
{
	background-image: url(icon.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	height: 60px;
}

.inline
{
	width: 100%;
	margin-bottom: -10px!important;
	transition: all 0.2s;
	filter: grayscale(0.6);
}

.inline:hover
{
	filter: grayscale(0.1);
}

.imgFlex
{
	display: flex;
}

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

.imgFlexItem
{
	width: 50%;
}

.textBox
{
	margin-top: 60px;
	padding: 55px 60px;
	position: relative;
}

.textBox:before
{
	content: "";
	position: absolute;
	width: 140%;
	height: 100%;
	right: 0;
	top: 0;
	background-color: #fff;
	z-index: -10;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.06);
}

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

.textBox .buttonArea
{
	padding-bottom: 5px;
}

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

.buttonArea
{
	margin-top: 30px;
}

#openerContent .buttonArea
{
	margin-top: 10px;
}

.text.withButton p a, .text .buttonArea p a, .buttonArea p a, #accepted
{
	display: inline-block;
	text-decoration: none;
	font-family: 'Titillium Web';
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
	color: var(--dark)!important;
	background-color: var(--grey);
	transition: all 0.2s;
	padding: 0.69em 1.5em 0.7em 1.5em;
	border-bottom: none!important;
}

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

.dividerImg
{
	color: #fff;
	padding: 180px 0px;
	position: relative;
}

.dividerImg.blured
{
	padding: 80px;
}

.dividerImgImg
{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -5;
	background-size: cover;
	background-position: center;
	filter: grayscale(0.7);
}

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

#footer
{
	padding: 40px 0px;
	background-color: var(--grey);
	font-size: 0.85em;
}

#copy
{
	font-weight: 600;
	position: absolute;
	font-family: 'Titillium Web';
	margin-top: 1px;
}

#footerList
{
	text-align: right;
}

#footerList li
{
	display: inline-block;
	margin-left: 40px;
}

#footerList li a
{
	color: var(--dark);
	border-bottom: 1px solid transparent;
	transition: all 0.2s;
	text-decoration: none;
}

#footerList li a:hover
{
	border-bottom: 1px solid var(--dark);
}

.colored  + #footer, .colored + .withButton + #footer
{
	margin-top: -60px;
}

.verleih
{
	display: flex;
	flex-wrap: wrap;
	margin-left: -40px;
	width: calc(100% + 40px);
	margin-top: -40px;
}

.verleihItem
{
	width: calc(33.3% - 40px);
	margin-left: 40px;
	margin-top: 40px;
	position: relative;
	color: #fff;
	overflow: hidden;
}

.verleihName
{
	position: absolute;
	width: 100%;
	height: 100%;
	text-align: center;
	padding: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
	font-family: 'Titillium Web';
	font-weight: 600;
	transition: all 0.2s;
	background-color: rgba(0,0,0,0.4);
	font-size: 1.4em;
	line-height: 1.35;
	text-shadow: 0px 0px 10px rgba(0,0,0,0.4);
}

.verleihName:hover
{
	background-color: rgba(0,0,0,0.1);
}

.verleihImg
{
	width: 100%;
	padding-bottom: 100%;
	background-size: cover;
	background-position: center;
	transition: all 0.5s;
	filter: grayscale(0.5);
}

.verleihItem:hover .verleihImg
{
	transform: scale(1.12);
	filter: grayscale(0.1);
}

strong
{
	font-weight: 600;
}

#cookieNotice
{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	font-size: 0.85em;
	background-color: rgba(0,0,0,0.92);
	z-index: 500000;
	display: none;
	align-items: center;
	justify-content: center;
}

#cookieBox
{
	padding: 28px 40px 40px 40px;
	max-height: calc(100vh - 80px);
	background-color: #fff;
	max-width: 480px;
	overflow: auto;
	border-bottom: 5px solid var(--green);
	display: block;
	margin: auto;
}

#acceptWrap
{
	text-align: center;
}

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

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

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

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

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

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

.dividerImg p a, .dividerImg ul a
{
	color: #fff;
	text-decoration: none;
	transition: all 0.2s;
	border-bottom: 1px dashed #fff;
}

.dividerImg p a:hover, .dividerImg ul a
{
	border-bottom: 1px solid #fff;
}

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

.text ul li:before, .dividerImg ul li:before
{
	content: "";
	position: absolute;
	width: 0.4em;
	height: 0.4em;
	left: 0;
	top: 0.7em;
	background-color: var(--darkgrey);
}

.dividerImg ul li:before
{
	background-color: #fff;
}

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

form
{
	display: flex;
	margin-left: -40px;
	flex-wrap: wrap;
}

form div
{
	width: 50%;
	padding-left: 40px;
}

#yform-formular-nachricht, #yform-formular-accept, #yform-formular-datum, .alert
{
	width: 100%;
}

#yform-formular-artikel
{
	display: none;
}

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

input[type = "text"], input[type = "email"], textarea, button
{
	-webkit-appearance: none;
   	-moz-appearance: none;
   	appearance: none;
   	border-radius: 0px;
   	font-size: 1em;
   	width: 100%;
   	border: none;
   	font-family: 'Inter', sans-serif;
   	line-height: 1.6;
   	color: var(--dark);
   	font-weight: 300;
}

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

input[type = "text"], input[type = "email"], textarea
{
	border: 1px solid var(--grey);
	padding: 0.5em 1.2em;
}

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

textarea
{
	height: 12em;
	resize: none;
	margin-bottom: 0.85em;
}

.alert.alert-danger ul:before
{
	content: "Folgende Fehler sind aufgetreten. Bitte überprüfen Sie Ihre Eingaben.";
	font-family: 'Titillium Web';
	font-weight: 600;
	color: red;
	display: block;
}

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

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

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

.checkbox
{
	position: relative;
	padding-left: 1.2em;
	margin-left: 40px;
}

.checkbox label
{
	font-family: 'Inter', sans-serif;
	color: var(--dark);
	font-weight: 300;
	cursor: pointer;
	text-transform: none;
}

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

button
{
	display: inline-block;
	text-decoration: none;
	font-family: 'Titillium Web';
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
	color: var(--dark)!important;
	background-color: var(--grey);
	transition: all 0.2s;
	padding: 0.69em 1.5em 0.7em 1.5em;
	border-bottom: none!important;
	width: auto;
	cursor: pointer;
	margin-top: 1.05em;
	margin-left: 40px;
}

button:hover
{
	background-color: var(--darkgrey);
	color: var(--dark)!important;
}

.gallery
{
	column-count: 3;
	column-gap: 40px;
	margin-bottom: -40px;
}

.gallery .inline
{
	filter: grayscale(0)!important;
}

.galleryItem
{
	padding-bottom: 40px;
	page-break-inside: avoid;
	break-inside: avoid;
	width: 100%;
}

.productGallery
{
	display: flex;
	margin-left: -40px;
	justify-content: center;
}

.bigGalleryImg
{
	padding-bottom: 100%;
	background-size: cover;
	background-position: center;
}

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

.fancybox
{
	cursor: zoom-in;
}

#flyouts
{
	position: fixed;
	top: 48%;
	transform: translateY(-50%);
	right: 0;
	z-index: 500;
	border-left: 1px solid #fff;
	border-top: 1px solid #fff;
}

#flyouts.scrolled
{
	background-color: #fff;
	border-left: 1px solid var(--dark);
	border-top: 1px solid var(--dark);
}

.flyout
{
	display: block;
	width: 55px;
	height: 55px;
	background-color: transparent;
	border-bottom: 1px solid #fff;
	background-size: auto 45%;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.2s;
}

.scrolled .flyout
{
	border-bottom: 1px solid var(--dark);
}

.flyout:hover
{
	background-color: var(--lightgrey);
}

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

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

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

.scrolled #mail, #mail:hover
{
	background-image: url(mail.svg);
}

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

.scrolled #whatsapp, #whatsapp:hover
{
	background-image: url(whatsapp.svg);
}

#openerContent .buttonArea p a
{
	background-color: transparent;
	border: 1px solid #fff!important;
	color: #fff!important;
}

#openerContent .buttonArea p a:hover
{
	background-color: #fff!important;
	color: var(--dark)!important;
}

#openerContent
{
	z-index: 400;
}

#popup
{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1000;
	background-color: rgba(0,0,0,0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-backdrop-filter: blur(6px);
 	backdrop-filter: blur(6px);
 	animation-name: showpopup;
 	animation-duration: 1.5s;
 	animation-fill-mode: forwards;
 	animation-delay: 2s;
 	opacity: 0;
}

@keyframes showpopup
{
	from
	{
		opacity: 0;
	}

	to
	{
		opacity: 1;
	}
}

#popupBox
{
	padding: 40px 40px 40px 40px;
	max-height: calc(100vh - 80px);
	background-color: #fff;
	max-width: 480px;
	overflow: auto;
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff;
	display: block;
	margin: auto;
	font-size: 0.85em;
	position: relative;
}

#popup img
{
	margin-left: -40px;
	margin-top: -40px;
	width: calc(100% + 80px);
}

#popupBox #popupContent
{
	margin-top: 30px;
}

#popupClose
{
	position: absolute;
	top: 0;
	right: 0;
	background-color: var(--grey);
	background-image: url(close.svg);
	background-size: 30%;
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
	transition: all 0.2s;
	width: 40px;
	height: 40px;
	z-index: 50;
}

#popupClose:hover
{
	background-color: var(--darkgrey);
}

.rezension
{
	padding: 20px 25px;
	background-color: rgba(0,0,0,0.5);
	font-size: 0.8em;
	text-align: center;
	margin: 0px 10px;
	height: 100%!important;
	border: 1px solid rgba(255,255,255,0.5);
}

.rezensionName
{
	font-family: 'Titillium Web';
  	font-weight: 600;
  	letter-spacing: -0.02em;
}

.rezensionStars
{
	width: 100%;
	height: 1em;
	background-image: url(stars.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	display: block;
	margin: 0.5em 0 0.8em 0;
}

.slick-track
{
    display: flex !important;
}

.slick-slide
{
    height: inherit !important;
}

.slick-arrow
{
	position: absolute;
	width: 30px;
	height: 30px;
	cursor: pointer;
	top: 50%;
	transform: translateY(-50%);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.slick-arrow.prev
{
	left: -35px;
	background-image: url(prev.svg);
}

.slick-arrow.next
{
	right: -35px;
	background-image: url(next.svg);
}

.rezensionenHead
{
	text-align: center;
}

.rezensionenHeadStars
{
	width: 100%;
	height: 1em;
	background-image: url(stars.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	margin-bottom: 40px;
	margin-top: 15px;
}

.google
{
	width: 100%;
	height: 40px;
	margin: 25px 0px;
	background-image: url(google.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

@media all and (max-width: 440px){
	.textBox
	{
		padding: 20px 25px!important;
	}

	#cookieBox, #popupBox
	{
		padding: 25px 25px 25px!important;
	}

	#popupClose
	{
		width: 25px;
		height: 25px;
	}

	#popupBox #popupContent
	{
		margin-top: 18px;
	}

	.gallery
	{
		column-count: 1!important;
	}

	#popup img
	{
		margin-left: -25px;
		margin-top: -25px;
		width: calc(100% + 50px);
	}
}

@media all and (max-width: 550px){
	.verleihItem
	{
		width: calc(100% - 40px)!important;
	}

	.gallery
	{
		column-gap: 25px;
		margin-bottom: -25px;
	}

	.galleryItem
	{
		padding-bottom: 25px;
	}
}

@media all and (max-width: 650px){
	.imgFlex
	{
		display: block;
	}

	.imgFlexItem
	{
		width: 100%;
	}

	.textBox:before
	{
		width: 100%;
	}

	.textBox
	{
		margin-top: -2px!important;
	}

	h1
	{
		font-size: 2em!important;
	}

	h2
	{
		font-size: 1.6em!important;
	}

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

	.text.big p, .text.big ul, .verleihName
	{
		font-size: 1em!important;
	}

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

	#copy
	{
		position: relative;
		display: block;
		margin-top: 0;
		text-align: center;
		margin-bottom: 6px;
	}

	#footerList
	{
		text-align: center;
	}

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

	form div
	{
		width: 100%;
	}

	textarea
	{
		height: 10em;
	}

	.google
	{
		margin: 15px 0px;
		height: 35px;
	}

	.dividerImg.blured
	{
		padding: 40px!important;
	}
}

@media all and (max-width: 700px){
	.gallery
	{
		column-count: 2;
	}
}

@media all and (max-width: 800px){
	.verleihItem
	{
		width: calc(50% - 40px);
	}
}

@media all and (max-width: 1040px){
	#navigation
	{
		display: none;
		position: fixed;
		width: 100%;
		left: 0;
		top: 0;
		background-color: #fff;
		border-bottom: 1px solid var(--grey);
		max-height: 100vh;
		overflow: auto;
	}

	#navigation ul li a
	{
		color: var(--dark);
	}

	#navigation ul li, #header.scrolled #navigation ul li
	{
		padding: 0;
		display: block;
		margin-bottom: 3px;
	}

	#navigation ul
	{
		padding: 76px 40px 9px;
	}

	.logo, #navOpener
	{
		z-index: 100;
	}

	#header.visible .white
	{
		opacity: 0;
	}

	#header.visible .dark
	{
		opacity: 1;
	}

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

	.line
	{
		position: absolute;
		width: 100%;
		height: 2px;
		background-color: #fff;
		left: 50%;
		transform: translateX(-50%);
		transition: all 0.2s;
	}

	#navOpener .line:nth-child(1)
	{
		top: 0;
	}

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

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

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

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

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

	#header.scrolled .line, #navOpener.active .line
	{
		background-color: var(--dark);
	}

	#header .wrap
	{
		height: 85px;
	}

	.logo, #header.scrolled .logo
	{
		padding: 10px 0px;
	}

	.logo
	{
		left: 24px;
	}

	body
	{
		font-size: 1.2em;
	}

	h1
	{
		font-size: 2.8em;
	}

	h2
	{
		font-size: 2em;
	}

	h3
	{
		font-size: 1.6em;
	}

	.text.big p, .text.big ul
	{
		font-size: 1.2em;
	}

	#opener
	{
		min-height: 300px;
	}

	#down
	{
		width: 2px;
		bottom: 40px;
		height: calc(50% - 6.5em);
	}

	#down:after
	{
		border-right: 2px solid #fff;
		border-bottom: 2px solid #fff;
	}

	.text
	{
		margin: 40px 0px;
	}

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

	.buttonArea
	{
		margin-top: 20px;
	}

	#openerContent .buttonArea
	{
		margin-top: 15px;
	}

	.dividerImg
	{
		padding: 120px 0px;
	}

	.divider
	{
		height: 40px;
	}

	.textBox
	{
		padding: 35px 40px;
		margin-top: 40px;
	}

	#footer
	{
		padding: 30px 0px;
	}

	#openerContent
	{
		top: 51%;
	}

	#openerContent.start
	{
		bottom: 40px;
	}

	.verleihName
	{
		font-size: 1.2em;
	}

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

	#navigation ul li ul, #header.scrolled #navigation ul li ul
	{
		position: relative;
		display: block;
		text-align: right;
		padding: 0;
		background-color: #fff;
		left: auto;
		top: auto;
		min-width: auto;
		margin-bottom: 8px;
		margin-top: 3px;
	}

	#navigation ul li ul li, #header.scrolled #navigation ul li ul li
	{
		margin-top: 2px;
		white-space: normal;
	}

	#navigation ul li ul li:after
	{
		content: "-";
		margin-left: 8px;
	}

	.flyout
	{
		width: 40px;
		height: 40px;
	}

	.dividerImg.blured
	{
		padding: 60px;
	}
}

@media all and (min-width: 1041px){
	#navigation
	{
		display: block!important;
	}
}