@charset 'utf-8';

/* global selector for box-sizing */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing:border-box;
}

/* html, body */
html, body {
	width: 100%;
	min-width: 310px;
	margin: 0;
	padding: 0;
}

html {
	position: relative;
	min-height: 100%;
}

body {
	margin-bottom: 300px;
	background: #ebebeb url(../images/layout/background_page.jpg) repeat 0 0;
}

/* HTML5 fallback for anyone who doesn't know the main-element (like Opera) */
main {
	display: block;
}

/* fonts */
body {
	font-size: 13px;
	line-height: 20px;
	color: #3c3c3b;
}

body, input, textarea, button,
body > header div.address_wrapper,
body > header aside,
.box.misc h1, .box.misc p {
	font-family: 'Open Sans', 'Helvetica', 'Lucida', 'Arial', sans-serif;
	font-weight: 600;
}

.oswald,
body > header,
h1, h2.h1,
body > header div.address_wrapper address a,
body > footer address strong,
.slider.startpage li div {
	font-family: 'Oswald', 'Helvetica', 'Lucida', 'Arial', sans-serif;
	font-weight: normal;
}

.cursive,
.slider.startpage li div > span {
	font-family: 'Just Another Hand', cursive;
	font-weight: normal;
}

.normal {
	font-weight: normal;
}

.semibold {
	font-weight: 600;
}

.strong {
	font-weight: bold;
}

.semibold.italic {
	font-weight: 600;
	font-style: italic;
}

/* default elements | headings */
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-weight: normal;
}

h1, h2.h1 {
	margin-bottom: 45px;
	font-size: 24px;
	line-height: 29px;
	color: #d9243f;
	font-weight: bold;
}

h1.ribbon {
	position: relative;
	margin: 60px 0 35px -27%;
	padding: 25px 20px 25px 27%;
	background: #f6f6f6;
}

h1.ribbon:before {
	content: '';
	position: absolute;
	z-index: -1;
	left: 0px;
	bottom: -25px;
	border-style:solid;
	border-color: #9d9d9c transparent transparent transparent;
	border-width: 25px 0 0 25px;
}

h2 {
	margin-bottom: 25px;
	font-size: 17px;
	line-height: 25px;
	font-weight: bold;
}

h2.date {
	margin: 25px 0 25px 0;
	padding: 0;
	background: transparent;
	font-weight: normal;
	color: #d9243f;
}

h3 {
	background: #e6e5e6;
	padding: 12px 30px 12px 26px;
	font-size: 18px;
	line-height: 22px;
	text-transform: uppercase;
	font-weight: bold;
}

/* styles up to 999px viewport width */
@media (max-width: 999px) {

	h1.ribbon {
		margin: 0 0 35px -13%;
		padding: 25px 20px 25px 13%;
	}

}

/* default elements | paragraph */
p {
	margin: 0 0 25px 0;
}

p.bigger {
	font-size: 16px;
	line-height: 24px;
}

/* default elements | links */
a {
	text-decoration: none;
	color: #3c3c3b;
	cursor: pointer;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

a:hover {
	color: #d9243f;
}

a.video {
	display: inline-block;
	height: 40px;
	margin: 45px 0;
	line-height: 40px;
}

a.video:before {
	content: '';
	float: left;
	width: 40px;
	height: 40px;
	margin: -1px 9px 0 0;
	background: transparent url(../images/layout/icons_retina.png) no-repeat -20px 0;
	background-size: 700px 50px;
}

a.video:hover:before {
	background-position: -80px 0;
}

a.pdf {
	display: block;
	height: 30px;
	margin: 0 0 15px 30px;
	line-height: 15px;
}

a.pdf:before {
	content: '';
	float: left;
	width: 24px;
	height: 30px;
	margin: 0 15px 0 0;
	background: transparent url(../images/layout/icons_retina.png) no-repeat -350px 0;
	background-size: 700px 50px;
}

/* default elements | images */
img {
	border: 0;
	outline: none;
	width: 100%;
	height: auto;
}

/* default elements | list */
ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.default > li {
	position: relative;
	padding: 10px 30px 12px 30px;
	border-top: 2px solid #e6e5e6;
	font-weight: normal;
}

ul.default > li:first-child {
	border-color: white;
}

ul.default:last-child > li:last-child {
	border-bottom: 2px solid #e6e5e6;
}

ul.default > li:before {
	content: '';
	position: absolute;
	top: 13px;
	left: 10px;
	width: 20px;
	height: 29px;
	background: transparent url(../images/layout/icons_retina.png) no-repeat 0 0;
	background-size: 700px 50px;
}

/* default elements | enhanced list */
ul.default.enhanced > li {
	cursor: pointer;
	-webkit-transition: color 0.2s linear;
	-moz-transition: color 0.2s linear;
	-ms-transition: color 0.2s linear;
	-o-transition: color 0.2s linear;
	transition: color 0.2s linear;
}

h2 + ul.default > li:first-child {
	border-color: #e6e5e6;
}

ul.default.enhanced > li:hover {
	border-color: #636362;
	color: #d9243f;
}

ul.default.enhanced > li:hover + li {
	border-color: #636362;
	border-bottom-color: white
}

ul.default.enhanced > li:last-child {
	border-bottom: 2px solid white;
}

ul.default.enhanced:last-child > li:last-child {
	border-bottom: 2px solid #e6e5e6;
}

ul.default.enhanced > li:last-child:hover {
	border-bottom: 2px solid #636362;
}

ul.default.enhanced:last-child > li:hover + li:last-child {
	border-bottom: 2px solid #e6e5e6;
}

ul.default.enhanced > li:before {
	content: none;
	/* IE fix */
	display: none;
}

ul.default.enhanced > li:hover:before {
	content: '';
	top: 0;
	left: auto;
	right: 0;
	width: 250px;
	height: 100%;
	background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(40%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(255, 255, 255, 1)));
	background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 1) 100%);
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 1) 100%);
	background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 1) 100%);
	background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 1) 100%);
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 1) 100%);
}

ul.default.enhanced > li:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	width: 7px;
	height: 20px;
	margin-top: -10px;
	background: transparent url(../images/layout/icons_retina.png) no-repeat -660px 0;
	background-size: 700px 50px;
}

ul.default.enhanced > li:hover:after {
	content: attr(data-request);
	right: -10px;
	width: 160px;
	height: 42px;
	margin-top: -21px;
	background-position: -180px 0;
	font-size: 11px;
	line-height: 42px;
	text-align:center;
	color: white;
}

/* default elements | address */
address {
	font-style: normal;
}

address span {
	float: left;
	width: 24%;
}

address a {
	float: left;
	width: 76%;
}

address.date {
	font-size: 18px;
	line-height: 24px;
	font-weight: normal;
}

/* styles up to 459px viewport width */
@media (max-width: 459px) {

	/* default elements | address */
	address.date {
		overflow: hidden;
	}

	address.date span {
		width: 100%;
		font-weight: bold;
	}

	address.date a {
		width: 100%;
	}

}

/* default elements | hr */
hr, div.hr {
	height: 1px;
	margin: 25px 0;
	background: #949da2;
	border: none;
}

/* default elements | form */
form, fieldset {
	margin: 0;
	padding: 0;
	border: 0;
	width: 100%;
	max-width: 100%;
}

input, textarea {
	display: block;
	width: 100%;
	height: 50px;
	margin: 0 0 20px 0;
	padding: 0 20px;
	border: 3px solid white;
	border-radius: 0;
	outline: 0;
	font-size: 16px;
	color: #636362;
	-webkit-appearance: none;
	-webkit-transition: border 0.3s linear, background 0.5s linear;
	-moz-transition: border 0.3s linear, background 0.5s linear;
	-ms-transition: border 0.3s linear, background 0.5s linear;
	-o-transition: border 0.3s linear, background 0.5s linear;
	transition: border 0.3s linear, background 0.5s linear;
}

input:hover, input:focus, textarea:hover, textarea:focus {
	border-color: #636362;
}

input.focus, textarea.focus {
	background: #d9243f;
	-webkit-transition: background 0.05 linear;
	-moz-transition: background 0.05 linear;
	-ms-transition: background 0.05 linear;
	-o-transition: background 0.05 linear;
	transition: background 0.05 linear;
}

textarea {
	height: 200px;
	padding: 17px 20px;
	resize: none;
}

input[type=checkbox] {
	position: absolute;
	left: 0;
	top: 3px;
	width: auto;
	height: auto;
	padding: 0;
	-webkit-appearance: checkbox;
}

input[type=submit] {
	float: right;
	width: 200px;
	padding-top: 3px;
	background: transparent;
	border-color: #3c3c3b;
	cursor: pointer;
}

input[type=submit]:hover {
	background: #3c3c3b;
	color: white;
}

::-webkit-input-placeholder {
	color: #c6c6c6;
}
:-moz-placeholder {
	color: #c6c6c6;
}
::-moz-placeholder {
	color: #c6c6c6;
}
:-ms-input-placeholder {
	color: #c6c6c6;
}
:-o-input-placeholder {
	color: #c6c6c6;
}
::input-placeholder {
	color: #c6c6c6;
}

input.error, textarea.error {
	border-color: #d9243f;
	color: #d9243f;
}

input.error::-webkit-input-placeholder, texteare.error::-webkit-input-placeholder  {
	color: #d9243f;
}
input.error:-moz-placeholder, texteare.error:-moz-placeholder {
	color: #d9243f;
}
input.error::-moz-placeholder, texteare.error::-moz-placeholder {
	color: #d9243f;
}
input.error:-ms-input-placeholder, texteare.error:-ms-input-placeholder {
	color: #d9243f;
}
input.error:-o-input-placeholder, texteare.error:-o-input-placeholder {
	color: #d9243f;
}
input.error::input-placeholder, texteare.error::input-placeholder {
	color: #d9243f;
}

label {
	min-height: 70px;
	padding: 0 0 5px 25px;
	font-size: 16px;
	color: #636362;
}

label a {
	text-decoration: underline;
}

label.required,
div.required {
	position: relative;
	display: block;
}

label.required:after,
div.required:after {
	content: '*';
	position: absolute;
	top: 7px;
	right: -30px;
	font-size: 38px;
	color: #d9243f;
}

p.error {
	margin-bottom: 10px;
	font-size: 16px;
	line-height: 16px;
	font-weight: 600;
	font-style: italic;
	color: #d9243f;
}

div.select_homebrew {
	position: relative;
	z-index: 1000;
	margin: 0 0 20px 0;
}

div.select_homebrew.active {
	z-index: 1001;
}

div.select_homebrew > div {
	position: relative;
	width: 100%;
	height: 50px;
	padding: 0 70px 0 20px;
	background: #6f6f6e;
	cursor: pointer;
}

div.select_homebrew > div:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 100%;
	background: #3c3c3b url(../images/layout/icons_retina.png) no-repeat -124px 19px;
	background-size: 700px 50px;
}

div.select_homebrew > div span {
	display: block;
	overflow: hidden;
	width: 100%;
	height: 50px;
	font-size: 16px;
	line-height: 50px;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #dadada;
	cursor: pointer;
}

div.select_homebrew > ul {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 50px;
	left: 0;
	width: 100%;
	padding: 5px 0;
	background: white;
	border: 1px solid #6f6f6e;
	-webkit-box-shadow: 0 4px 10px 2px rgba(60, 60, 59, 0.3);
	-moz-box-shadow: 0 4px 10px 2px rgba(60, 60, 59, 0.3);
	box-shadow: 0 4px 10px 2px rgba(60, 60, 59, 0.3);
	-webkit-transition: opacity 0.4s linear, visibility 0.3s linear;
	-moz-transition: opacity 0.4s linear, visibility 0.3s linear;
	-ms-transition: opacity 0.4s linear, visibility 0.3s linear;
	-o-transition: opacity 0.4s linear, visibility 0.3s linear;
	transition: opacity 0.4s linear, visibility 0.3s linear;
}

div.select_homebrew.active > ul {
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity 0.4s linear;
	-moz-transition: opacity 0.4s linear;
	-ms-transition: opacity 0.4s linear;
	-o-transition: opacity 0.4s linear;
	transition: opacity 0.4s linear;
}

div.select_homebrew > ul > li {
	padding: 8px 15px;
	cursor: pointer;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

div.select_homebrew > ul > li.active, div.select_homebrew > ul > li:hover {
	color: #d9243f;
}

/* styles up to 999px viewport width */
@media (max-width: 999px) {

	/* default elements | form */
	label.required:after,
	div.required:after {
		right: -17px;
		font-size: 20px;
	}

}

/* default elements | buttons */
button {
	background: transparent;
	border: none;
	outline: none;
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* re-useable elements | hidden */
.hidden {
	display: none;
}

/* re-useable elements | hide element but leave it for screen readers */
.hidden_accessible {
	position: absolute;
	overflow: hidden;
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	clip: rect(0 0 0 0);
}

/* re-useable elements | clearfix */
.clearfix:before, .clearfix:after {
	content: '';
	display: table;
}
.clearfix:after {
	clear: both;
}
.clearfix {
	zoom: 1;
}

/* re-useable elements | center */
.center {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 40px;
}

/* styles up to 459px viewport width */
@media (max-width: 459px) {

	/* re-useable elements | center */
	.center {
		padding: 0 20px;
	}

}

/* re-useable elements | center text */
.text_center {
	text-align: center;
}

/* re-useable elements | margins */
.margin {
	margin-bottom: 15px;
}

.more_margin {
	margin-bottom: 25px;
}

.even_more_margin {
	margin-bottom: 45px;
}

.extrem_much_margin {
	margin-bottom: 80px;
}

/* re-useable elements | boxes/ mini grid */
.box {
	float: left;
	width: 100%;
	min-width: 200px;
	margin: 0 0 35px 0;
	padding: 70px 7.4% 90px 7.4%;
	background: white;
	-webkit-box-shadow: 0 0 10px 0px rgba(60, 60, 59, 0.3);
	-moz-box-shadow: 0 0 10px 0px rgba(60, 60, 59, 0.3);
	box-shadow: 0 0 10px 0px rgba(60, 60, 59, 0.3);
}

.box .box {
	min-width: 0;
	background: transparent;
}

.box.half {
	width: 49.2%;
	max-width: 590px;
}

.box.half + .box.half {
	float: right;
}

.box .box.half {
	margin-bottom: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.box.wrapper {
	padding: 0;
}

.box.wrapper > h1,
.box.wrapper > h2 {
	margin-left: 7.4%;
	margin-right: 7.4%;
	padding-top: 70px;
}

.box.wrapper > h1 + .box.half,
.box.wrapper > h1 + .box.half + .box.half,
.box.wrapper > h2 + .box.half,
.box.wrapper > h2 + .box.half + .box.half {
	padding-top: 0;
}

.box.teaser {
	padding: 0;
}

.box.teaser .box.half:first-child {
	padding: 0 7.4%;
}

.box.teaser .box.half:last-child {
	padding: 10px 10px 10px 0;
}

.box.paper {
	background: #ebebeb url(../images/layout/background_paper.jpg) repeat 0 0;
}

.box.transparent {
	background: transparent;
}

/* styles up to 999px viewport width */
@media (max-width: 999px) {

	/* re-useable elements | boxes/ mini grid */
	.box {
		float: none;
		max-width: 590px;
		margin-left: auto;
		margin-right: auto;
	}

	.box.half {
		width: 100%;
	}

	.box.half + .box.half {
		float: none;
		clear: both;
	}

	.box.teaser {
		padding: 40px 0 0 0;
	}

}

/* styles up to 767px viewport width */
@media (max-width: 767px) {

	/* re-useable elements | boxes/ mini grid */
	.box.half + .box.half {
		padding-top: 0;
	}

	.box.half + .box.half h1,
	.box.half + .box.half h2 {
		padding-top: 70px;
	}

	.box.half + .box.half address:first-child {
		padding-top: 40px;
	}

}

/* re-useable elements | slider */
.slider {
	position: relative;
	max-width: 580px;
	max-height: 580px;
}

.slider ul {
	height: 100%;
	width: 100%;
	max-width: 580px;
	max-height: 580px;
}

.slider ul > li {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font-size: 0;
	line-height: 0;
	-webkit-transition: all 1.4s ease-out;
	-moz-transition: all 1.4s ease-out;
	-ms-transition: all 1.4s ease-out;
	-o-transition: all 1.4s ease-out;
	transition: all 1.4s ease-out;
}

.slider ul > li:first-child {
	position: static;
}

.slider ul > li.active {
	opacity: 1;
	-webkit-filter: none;
	filter: none;
}

.slider > div {
	z-index: 2;
	position: absolute;
	bottom: 20px;
	left: 20px;
}

.slider > div > button {
	position: relative;
	float: left;
	width: 20px;
	height: 20px;
	margin-right: 20px;
	background: rgba(255, 255, 255, 0.7);
}

.slider > div > button:before {
	content: '';
	position: absolute;
	top: 5px;
	left: 5px;
	width: 10px;
	height: 10px;
	background: transparent;
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-ms-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}

.slider > div > button:hover:before {
	opacity: 1;
	background: #7c7c7b;
}

.slider > div > button.active:before {
	opacity: 1;
	background: #d9243f;
}

/* styles up to 999px viewport width */
@media (max-width: 999px) {

	/* re-useable elements | slider */
	.slider {
		margin-left: 10px;
	}

}

/* re-useable elements | slider startpage */
.slider.startpage {
	clear: both;
	width: 100%;
	max-width: 100%;
	min-height: 0;
	margin: 0 auto 80px auto;
	border: 10px solid white;
	-webkit-box-shadow: 0 0 10px 0px rgba(60, 60, 59, 0.3);
	-moz-box-shadow: 0 0 10px 0px rgba(60, 60, 59, 0.3);
	box-shadow: 0 0 10px 0px rgba(60, 60, 59, 0.3);
}

.slider.startpage ul {
	max-width: 100%;
	min-height: 0;
}

.slider.startpage li div {
	position: absolute;
	left: 0;
	bottom: 0;
	max-width: 80%;
	margin: 0 0 60px -35px;
	padding: 40px 40px 40px 100px;
	background: rgba(29, 29, 27, 0.5);
	font-size: 38px;
	line-height: 38px;
	color: white;
	font-weight: bold;
}

.slider.startpage li div:before {
	content: '';
	position: absolute;
	z-index: -1;
	left: 0;
	bottom: -25px;
	border-style:solid;
	border-color: #1d1d1b transparent transparent transparent;
	border-width: 25px 0 0 25px;
}

.slider.startpage li div > span {
	display: block;
	margin: 10px 0 0 0;
	font-size: 34px;
	font-weight: normal;
}

.slider.startpage > div {
	bottom: -55px;
	left: 0;
	width: 100%;
	text-align: center;
}

.slider > div > button {
	float: none;
	display: inline-block;
}

.slider.startpage > span {
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 100%;
	height: 1px;
}

.slider.startpage > span img {
	position: absolute;
	left: 0;
	top: 0;
}

/* styles up to 999px viewport width */
@media (max-width: 999px) {

	/* re-useable elements | slider startpage */
	.slider.startpage {
		max-width: 590px;
	}

	.slider.startpage li div {
		max-width: 100%;
		margin: 0 0 25px -25px;
		padding: 20px 20px 20px 60px;
		font-size: 20px;
		line-height: 20px;
	}

	.slider.startpage li div:before {
		bottom: -15px;
		border-width: 15px 0 0 15px;
	}

	.slider.startpage li div > span {
		display: none;
	}

}

/* re-usebale elements | labels */
.labels {
	clear: both;
	overflow: hidden;
	padding-top: 65px;
	padding-bottom: 45px;
	font-weight: normal;
	font-style: italic;
}

.labels ul > li {
	float: left;
	width: 35.2%;
	max-width: 590px;
	margin: 0 7.4%;
	font-size: 12px;
	line-height: 17px;
	color: #6f6f6e;
	vertical-align: middle;
}

.labels ul > li img {
	float: left;
	width: 120px;
	margin: 0;
}

.labels ul > li span {
	display: block;
	margin: 26px 0 0 135px;
}

.labels.triple ul > li {
	width: 30%;
	margin: 0 1.25%;
	text-align: center;
}

.labels.triple ul > li img {
	display: block;
	float: none;
	width: 120px;
	margin: 0 auto 20px auto;
}

.labels.triple ul > li span {
	display: inline-block;
	max-width: 320px;
	margin: 0;
}

/* styles up to 999px viewport width */
@media (max-width: 999px) {

	/* re-usebale elements | labels */
	.labels {
		max-width: 590px;
		margin: 0 auto;
	}

	.labels ul > li,
	.labels.single ul > li,
	.labels.triple ul > li {
		width: 100%;
		margin: 0 0 40px 0;
	}

	.labels ul > li img,
	.labels.single ul > li img,
	.labels.triple ul > li img {
		display: block;
		float: none;
		width: 120px;
		margin: 0 auto 20px auto;
	}

	.labels ul > li span,
	.labels.single ul > li span,
	.labels.triple ul > li span {
		display: block;
		max-width: 320px;
		margin: 0 auto;
		text-align: center;
	}

}

/* re-useable elements | paragraphs that looks like a list */
p.list {
	margin: 0;
	position: relative;
	padding: 15px 10px 15px 30px;
	border-top: 2px solid #e6e5e6;
	font-size: 16px;
	line-height: 26px;
	font-weight: bold;
}

p.list + p.list {
	margin-bottom: 50px;
	border-bottom: 2px solid #e6e5e6;
}

p.list:before {
	content: '';
	position: absolute;
	top: 20px;
	left: 10px;
	width: 20px;
	height: 29px;
	background: transparent url(../images/layout/icons_retina.png) no-repeat 0 0;
	background-size: 700px 50px;
}

p.list span {
	display: block;
	font-size: 12px;
	line-height: 20px;
	font-weight: normal;
	font-style: italic;
}

p.list span a {
	text-decoration: underline;
}

p.list span strong {
	text-decoration: underline;
	font-weight: normal;
}

/* re-useable elements | paragraph note */
p.note {
	float: right;
	margin: 5px 0 0 0;
	font-size: 10px;
	line-height: 14px;
	font-weight: normal;
	color: #b4b4b4
}

/* re-useabele elements | paragraph with fixed height 4 lines */
p.fixed_4_lines {
	min-height: 80px;
}

/* re-useable elements | span with leading arrow */
span.arrow {
	display: block;
	min-height: 30px;
	margin: 0 0 20px 0;
}

span.arrow:before {
	content: '';
	float: left;
	width: 20px;
	height: 29px;
	margin: 3px 0px 0 10px;
	background: transparent url(../images/layout/icons_retina.png) no-repeat 0 0;
	background-size: 700px 50px;
}

/* re-useaable elements | list of addresses */
div.addresses > ul {
	position: relative;
	width: 100%;
	min-height: 160px;
	background: #e6e6e6;
	-webkit-transition: all 0.25s linear;
	-moz-transition: all 0.25s linear;
	-ms-transition: all 0.25s linear;
	-o-transition: all 0.25s linear;
	transition: all 0.25s linear;
}

div.addresses > ul > li {
	opacity: 0;
	position: absolute;
	padding: 40px;
	-webkit-transition: all 0.15s linear;
	-moz-transition: all 0.15s linear;
	-ms-transition: all 0.15s linear;
	-o-transition: all 0.15s linear;
	transition: all 0.15s linear;
}

div.addresses > ul > li.active {
	opacity: 1;
	-webkit-transition: all 0.25s 0.25s linear;
	-moz-transition: all 0.25s 0.25s linear;
	-ms-transition: all 0.25s 0.25s linear;
	-o-transition: all 0.25s 0.25s linear;
	transition: all 0.25s 0.25s linear;
}

div.addresses > ul > li span {
	display: block;
	margin-bottom: 25px;
	font-weight: bold;
}

div.addresses > ul > li dl {
	margin: 0;
	padding: 0;
	overflow: hidden;
	font-weight: normal;
}

div.addresses > ul > li dl > dt {
	float: left;
	width: 30%;
	margin: 0;
	padding: 0;
	text-align: left;
}

div.addresses > ul > li dl > dd {
	float: left;
	width: 70%;
	margin: 0;
	padding: 0;
	text-align: left;
}

/* styles up to 459px viewport width */
@media (max-width: 459px) {

	/* re-useaable elements | list of addresses */
	div.addresses > ul > li dl > dt {
		float: left;
		width: 100%;
		font-weight: 600;
	}

	div.addresses > ul > li dl > dd {
		width: 100%;
		padding-bottom: 5px;
	}

}

/* re-useaable elements | overlay with centered content area */
div.overlay {
	opacity: 0;
	display: table;
	position: fixed;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(29, 29, 27, 0.95);
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-ms-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}

div.overlay.active {
	z-index: 1000000;
	opacity: 1;
}

div.overlay > div {
	display: table-cell;
	height: 50%;
	margin: 0 auto;
	vertical-align: middle;
}

div.overlay > div > div {
	width: 75%;
	max-width: 780px;
	min-width: 280px;
	margin: 0 auto;
}

div.overlay button {
	float: right;
	width: 50px;
	height: 50px;
	margin: 0 0 10px 0;
	background: #1d1d1b url(../images/layout/icons_retina.png) no-repeat -385px 12px;
	background-size: 700px 50px;
}

div.overlay button:hover {
	background-position: -425px 12px;
}

div.overlay video {
	width: 100%;
	height: auto;
}

/* re_useable elements | misc container for thank you and 404 pages */
.misc h1 {
	display: inline-block;
	max-width: 620px;
	font-weight: bold;
	color: #3c3c3b;
}

.misc p {
	display: inline-block;
	max-width: 620px;
	font-size: 14px;
	font-weight: normal;
}

.misc a {
	display: inline-block;
	height: 50px;
	margin: 50px 0 0 0;
	padding: 0 50px;
	border: 3px solid #9c9c9c;
	color: #9c9c9c;
	font-size: 16px;
	line-height: 46px;
	font-weight: bold;
}

.misc a:hover {
	background: #9c9c9c;
	color: white;
}

/* re-useable elements | signature and image on the startpage */
div.signature > div {
	float: left;
}

div.signature > div:first-child {
	width: 50%;
	max-width: 235px;
}

div.signature > div:last-child {
	width: 50%;
	padding: 20px 0 0 0;
}

div.signature > div:first-child img {
	margin-left: -17%;
}

div.signature p {
	float: left;
	width: 100%;
	margin-bottom: 0;
}

div.signature img.signature {
	float: left;
	max-width: 225px;
	margin: 20px 0;
}

/* re-useable elements | button to top */
button.back_to_top {
	opacity: 0;
	position: fixed;
	z-index: 1000;
	right: 10px;
	bottom: 350px;
	width: 50px;
	height: 50px;
	margin: -40px 0 0 0;
	background: white url(../images/layout/icons_retina.png) no-repeat -545px 18px;
	background-size: 700px 50px;
	border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0 0 8px 0px rgba(60, 60, 59, 0.2);
	-moz-box-shadow: 0 0 8px 0px rgba(60, 60, 59, 0.2);
	box-shadow: 0 0 8px 0px rgba(60, 60, 59, 0.2);
	-webkit-transition: all 0.25s linear;
	-moz-transition: all 0.25s linear;
	-ms-transition: all 0.25s linear;
	-o-transition: all 0.25s linear;
	transition: all 0.25s linear;
}

button.back_to_top.active {
	opacity: 1;
}

/* styles up to 1279px viewport width */
@media (max-width: 1289px) {

	/* re-useable elements | button to top */
	button.back_to_top {
		display: none;
		z-index: -1;
	}
}

/* vacation notice */
aside.holidays {
	position: relative;
	padding: 20px 30px;
	background: #d9243f;
	border-bottom: 1px solid rgba(0, 0, 0, 0.5);
	font-weight: 300;
	text-align: center;
	color: #fff;
}

aside.holidays:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 10px;
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0,0, 0.15) 100%);
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%,rgba(0, 0,0, 0.15) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%,rgba(0, 0, 0, 0.15) 100%);
}

aside.holidays strong {
	font-weight: 700;
}

/* styles up to 1499px viewport width */
@media (max-width: 1149px) {
	aside.holidays:after {
		content: none;
	}
}

/* page | header */
body > header.center {
	position: relative;
	height: 110px;
	padding: 0 50px;
}

body > header img {
	float: left;
	width: 130px;
	margin-top: 16px;
}

body > header nav {
	float: right;
	overflow: hidden;
	width: 81%;
	max-width: 990px;
	margin: 50px 0 10px 0;
	background: black;
}

body > header ul {
	width: 100%;
}

body > header ul > li {
	float: left;
}

body > header ul > li > a {
	display: block;
	height: 50px;
	padding: 0 25px;
	background: black;
	font-size: 17px;
	line-height: 50px;
	color: white;
	-webkit-transition: all 0.4s 0.1s ease-out;
	-moz-transition: all 0.4s 0.1s ease-out;
	-ms-transition: all 0.4s 0.1s ease-out;
	-o-transition: all 0.4s 0.1s ease-out;
	transition: all 0.4s 0.1s ease-out;
}

body > header ul > li > a:hover {
	background: #7c7c7b;
	color: white;
}

body > header ul > li.active > a {
	background: #d9243f;
}

body > header button {
	display: none;
	float: right;
	height: 36px;
	margin-top: 45px;
	padding: 0 15px;
	background: #1d1d1b;
	font-size: 17px;
	line-height: 36px;
	color: white;
}

body > header button:before {
	content: '';
	float: left;
	height: 36px;
	width: 15px;
	margin: 12px 5px 0 0;
	background: transparent url(../images/layout/icons_retina.png) no-repeat -600px 0;
	background-size: 700px 50px;
}

body > header button.active:before {
	margin-top: 11px;
	background-position: -630px 0;
}

body > header div.address_wrapper {
	position: absolute;
	right: 50px;
	top: 12px;
	width: 290px;
	height: 97px;
	padding: 20px 0 0 0;
	background: #d9243f;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	text-align: center;
	font-weight: bold;
}

body > header div.address_wrapper address {
	position: relative;
}

body > header div.address_wrapper address > span {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

body > header div.address_wrapper address > span > strong {
	display: block;
	font-size: 12px;
	line-height: 12px;
	text-transform: uppercase;
	color: white;
}

body > header div.address_wrapper address > span > span {
	display: block;
	float: none;
	width: auto;
	margin: 42px 0 0 0;
	font-size: 11px;
	line-height: 11px;
	font-weight: 600;
}

body > header div.address_wrapper address a {
	position: relative;
	z-index: 1;
	display: block;
	float: none;
	width: auto;
	padding: 18px 0 0 0;
	font-size: 28px;
	line-height: 28px;
	font-weight: bold;
	color: white;
	-webkit-transition: none;
	-moz-transition: none;
	-ms-transition: none;
	-o-transition: none;
	transition: none;
}

body > header div.address_wrapper .mobile_hidden {
	float: none;
	width: auto;
}

/* styles up to 1499px viewport width */
@media (max-width: 1149px) {
	/* page | header */
	body > header.center {
		padding-top: 50px;
	}

	body > header nav {
		margin-right: -10px;
		padding-right: 10px;
		background: black;
	}

	body > header div.address_wrapper {
		top: 0;
		left: 0;
		width: 100%;
		height: 46px;
		padding: 0;
		text-align: right;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}

	body > header div.address_wrapper address {
		max-width: 1240px;
		margin: 0 auto;
		padding: 12px 40px 0 40px;
	}

	body > header div.address_wrapper address > span {
		position: static;
		display: inline-block;
		float: none;
		width: auto;
		margin: 0;
		padding: 0;
		text-align: center;
		vertical-align: top;
	}

	body > header div.address_wrapper address > span > strong {
		margin: 0;
		padding: 0;
		font-size: 11px;
		line-height: 13px;
		vertical-align: top;
	}

	body > header div.address_wrapper address > span > span {
		margin: 0;
		padding: 0;
		font-size: 10px;
		line-height: 10px;
		vertical-align: top;
	}

	body > header div.address_wrapper address a {
		display: inline-block;
		float: none;
		width: auto;
		margin: -2px 40px 0 30px;
		padding: 0;
		font-size: 23px;
		line-height: 23px;
	}

}

/* styles up to 999px viewport width */
@media (max-width: 999px) {

	/* page | header */
	body > header.center {
		position: relative;
		padding: 30px 0 0 0;
		height: 125px;
	}

	/* NOTE. this div is used for mobile view only */
	body > header div.mobile_wrapper {
		max-width: 670px;
		margin: 0 auto;
		padding: 0 40px 0 50px;
	}

	body > header img {
		max-width: 100px;
	}

	body > header nav {
		opacity: 0;
		position: absolute;
		z-index: -1;
		overflow: visible;
		width: 100%;
		margin: -14px 0 0 0;
		padding: 0;
		top: 100%;
		left: 0;
		background: transparent;
		-webkit-transition: all 0.6s ease-out;
		-moz-transition: all 0.6s ease-out;
		-ms-transition: all 0.6s ease-out;
		-o-transition: all 0.6s ease-out;
		transition: all 0.6s ease-out;
	}

	body > header nav.active {
		opacity: 1;
		z-index: 1000;
	}

	body > header ul {
		position: relative;
		width: 100%;
		max-width: 670px;
		margin: 0 auto;
		padding: 0 40px;
	}

	body > header ul > li {
		float: none;
		text-align: center;
		border-bottom: 1px solid white;
	}

	body > header ul > li:last-child {
		position: relative;
		border-bottom: 0;
	}

	body > header ul > li:last-child:after {
		content: '';
		position: absolute;
		left: 0;
		bottom: -200px;
		width: 100%;
		height: 200px;
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(255, 255, 255, 0)));
		background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
		background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
		background: -ms-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
		background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
		background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	}

	body > header button {
		display: block;
	}

	body > header div.address_wrapper {
		height: 30px;
	}

	body > header div.address_wrapper address {
		padding-top: 0;
		max-width: 670px;
		text-align: right;
	}

	body > header div.address_wrapper address > span {
		float: none;
		display: inline-block;
		height: 30px;
		padding: 0;
		line-height: 30px;
		text-align: right;
	}

	body > header div.address_wrapper address > span > strong {
		font-size: 9px;
		line-height: 30px;
	}

	body > header div.address_wrapper address > a {
		float: none;
		display: inline-block;
		height: 30px;
		margin: 0;
		padding: 0 10px 0 15px;
		font-size: 14px;
		line-height: 30px;
		text-align: right;

	}

	body > header div.address_wrapper .mobile_hidden {
		display: none;
	}

}

/* styles up to 459px viewport width */
@media (max-width: 459px) {

	body > header div.mobile_wrapper {
		padding: 0 20px 0 30px;
	}

	body > header ul {
		padding: 0 20px;
	}
}


/* page | footer */
body > footer {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 250px;
	background: black;
	font-size: 12px;
	line-height: 16px;
	font-weight: normal;
	color: #b9b9b9;
}

body > footer .box {
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

body > footer .box.half {
	padding-top: 40px;
	padding-bottom: 60px;
}

body > footer span.border {
	position: absolute;
	left: 50%;
	top: 40px;
	width: 1px;
	height: 135px;
	background: #b9b9b9;
}

body > footer h1 {
	margin-bottom: 25px;
	font-size: 16px;
	line-height: 16px;
	color: #9d9d9c;
}

body > footer p {
	margin-bottom: 0;
}

body > footer address {
	float: left;
	width: 60%;
	white-space: nowrap;
}

body > footer address:first-child {
	width: 40%;
}

body > footer address strong {
	display: block;
	margin-bottom: 25px;
	font-size: 16px;
	line-height: 16px;
	font-weight: bold;
}

body > footer p.copyright {
	font-size: 11px;
	font-weight: 600;
}

body > footer a {
	color: #b9b9b9;
}

body > footer p.copyright a:last-child {
	text-transform: uppercase;
}

body > footer span.spacer {
	display: inline-block;
	width: 10px;
	text-align: center;
}

body > footer span.spacer:after {
	content: '|';
}

/* styles up to 999px viewport width */
@media (max-width: 999px) {
	body {
		margin-bottom: 580px;
	}

	/* page | footer */
	body > footer {
		height: 530px;
	}

	body > footer span.border {
		display: none;
	}

	body > footer .box.half {
		padding-bottom: 0;
	}

	body > footer address {
		float: none;
		width: 100%;
		margin-bottom: 20px;
		white-space: normal;
	}

	body > footer address:first-child {
		width: 100%;
	}

	body > footer p.copyright {
		padding: 20px 0 ;
	}

}

/* section | teaser */
.teaser p {
	margin-bottom: 35px;
	line-height: 25px;
}

/* section | imprint */
.imprint h1 + h2 {
	margin-top: 0;
	font-size: 16px;
}

.imprint h2 {
	margin-top: 45px;
	font-size: 14px;
}

.imprint address {
	overflow: hidden;
	margin: 0 0 25px 0;
}

.imprint p span {
	float: left;
	width: 24%;
}

.imprint h2.accordion {
	position: relative;
	overflow: hidden;
	min-height: 50px;
	margin: 0 0 10px 0;
	padding: 13px 20px 13px 70px;
	background: #eee;
	font-size: 16px;
	line-height: 24px;
	text-overflow: ellipsis;
	font-weight: normal;
	cursor: pointer;
}

.imprint h2.accordion:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 50px;
	height: 100%;
	background: #d8d8d8 url(../images/layout/icons_retina.png) no-repeat -465px 13px;
	background-size: 700px 50px;
}

.imprint h2.accordion.active:before {
	background-position: -503px 16px;
}

.imprint div.accordion {
	display: none;
}

.imprint div.accordion p {
	font-size: 11px;
	font-weight: normal;
}


/* privacy note */

.privacy-policy {
	opacity: 0;
	position: fixed;
	z-index: -1;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 40px;
	background: rgba(0, 0, 0, 0.9);
	transition: z-index 0s 0.3s linear,
				opacity 0.25s linear;
}

.privacy-policy.is-active {
	opacity: 1;
	z-index: 10000;
	transition: z-index 0s linear,
				opacity 0.25s linear;
}

.privacy-policy__content {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 22px;
	color: #999;
}

.privacy-policy__anchor {
	text-decoration: underline;
	color: white;
}

.privacy-policy__reset {
	position: absolute;
	z-index: 1;
	top: 40px;
	right: 15px;
	border: 0;
	width: 30px;
	height: 30px;
	background: transparent;
}

.privacy-policy__reset:before,
.privacy-policy__reset:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80%;
	height: 1px;
	background: white;
}

.privacy-policy__reset:before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.privacy-policy__reset:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}