html {
    --color_text: #404040; /* normale textfarbe */
    --color_headline: #385020;
    --color_bg: #fff;
    --color_body_bg: #fff;
    --color_box_rgb: 0,0,0;
    --color_box: #ebebeb;
    --color_body_rgb: 255,255,255;
    --color_header_bg: rgba(255,255,255,1);
    --color_menu: #666;
    --color_lightText: #6E787C;
    --color_main: #404040;
}
html.cm_contrast {
    --color_lightText: #51595C;
}
html.theme_dark {
    --color_text: #fff; /* normale textfarbe */
    --color_headline: #fff;
    --color_bg: #000;
    --color_body_bg: #000;
    --color_box_rgb: 255,255,255;
    --color_box: #222;
    --color_body_rgb: 0,0,0;
    --color_header_bg: rgba(30,30,30,1);
    --color_menu: #DDD;
    --color_main: #fff;
}
/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */

.chromeframe {
    margin: 0;
    background: #C00;
    color: #FFF;
    padding: .5em 0;
	text-align: center;
}
.chromeframe a {
	color: #FFF;
	text-decoration: underline;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/*
	Overlay
	*/

.vcModal {
    transition: height 0s .3s, opacity .3s;
    pointer-events: none;
    position: fixed;
    opacity: 0;
    left: 0;
    top: 0;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 30px 30px 20px;
    border: none;
    width: 100%;
    height: 0;
    margin: 0;
    max-width: none;
    max-height: none;
    background: none;
}
.vcModal::backdrop {
    background: rgba(255,255,255,.75);
}
.vcModal.open,
.vcModal[open] {
    height: 100vh;
    opacity: 1;
    transition: height 0s, opacity .3s;
    pointer-events: auto;
}
.vcModalMsg {
    position: relative;
    z-index: 1;
    margin: auto;
    background: var(--color_body_bg);
    color: var(--color_text);
    max-width: 40em;
    width: 100%;
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
    padding: 20px;
    border-radius: 20px 0 20px 20px;
}
.vcModal .vcModalClose {
    position: absolute;
    display: block;
    right: -1em;
    top: -1em;
    cursor: pointer;
    padding: .5em;
    line-height: 1;
    text-align: center;
    background: rgb(var(--color_box_rgb));
    border: none;
    color: var(--color_body_bg);
    font-size: 1.5625em;
    height: 2em;
    width: 2em;
    border-radius: 1em;
    -webkit-transition: all .3s;
    transition: all .3s;
    z-index: 1;
}
.vcModal .vcModalClose:hover {
    background: var(--color_headline);
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.vcModalBannerBottom {
    padding: 30px 0 0;
    align-items: flex-end;
    background: rgba(255,255,255,.75);
}
.vcModalBannerBottom .vcModalMsg {
    margin-bottom: 0;
    max-width: none;
    padding: 0;
    border-radius: 0;
}
.vcModalBannerBottom .vcModalClose {
    right: 15px;
    top: 15px;
}
.vcModalBannerBottom .vcModalMsg .article {
    padding: 20px;
    margin: 0 auto;
}
@media (min-width: 960px) {
    .vcModalMsg {
        padding: 40px;
    }
    .vcModalBannerBottom .vcModalMsg .article {
        width: 83.33%;
    }
    .vcModalBannerBottom .vcModalMsg .article > :first-child {
        padding-right: 0;
    }
}

/*
	CSS Icons
	*/
.vcCssIcon {
    position: relative;
    display: inline-block;
}
.vcCssIconCheck {
    height: 1em;
    width: .667em;
    border-right: .1875em solid var(--color_text);
    border-bottom: .1875em solid var(--color_text);
    transform: rotate(45deg);
    margin: 0 .2em;
}
.vcCssIconArrowDown {
    width: 1em;
    height: 1em;
    margin: 0 .2em;
}
.vcCssIconArrowDown:after {
    content: '';
    display: block;
    font-size: .667em;
    width: 1em;
    height: 1em;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -.375em;
    margin-left: -.5em;
    transform: rotate(-45deg);
    border-left: 3px solid var(--color_text);
    border-bottom: 3px solid var(--color_text);
}
.vcCssIconClose {
    height: 100%;
    width: 100%;
    display: block;
}
.vcCssIconClose:before,
.vcCssIconClose:after {
    position: absolute;
    left: 50%;
    top: 50%;
    content: '';
    background: var(--color_body_bg);
    display: block;
    width: 100%;
    height: .1875em;
    margin-top: -.09375em;
    margin-left: -50%;
}
.vcCssIconClose:before {
    transform: rotate(45deg);
}
.vcCssIconClose:after {
    transform: rotate(-45deg);
}


/*
	Privacy & Cookies
	*/

.vcPrivacyOptsLine label {
    display: block;
    font-weight: bold;
    min-height: 2em;
    padding-right: 4em;
    position: relative;
    cursor: pointer;
    float: none;
}
.vcPrivacyOptsLine label .hint {
    font-weight: normal;
    margin: 0;
    line-height: normal;
    color: #666;
    font-size: 14px;
}

.vcPrivacyOptsLine input:disabled + label {
    pointer-events: none;
}


.vcPrivacyOptsLineWrap + .vcPrivacyOptsLineWrap {
    margin-top: 1.5em;
}
.vcPrivacyMoreInfoTrigger {
    padding: .5em 0 0;
    display: block;
    color: inherit;
}
.vcPrivacyMoreInfoTrigger .vcCssIconArrowDown {
    margin: 0 0 0 .5em;
    transition: transform .3s;
    float: none !important;
    display: inline-block !important;
}

.vcPrivacyDefList {
    padding: 0;
    margin: 0;
    font-size: .8em;
}
.vcPrivacyDefList dt {
    padding: .3125em 0 0;
    font-weight: bold;
    text-align: left;
    margin: 0;
}
.vcPrivacyDefList dd {
    font-weight: normal;
    text-align: left;
    padding: 0 0 .3125em;
    margin: 0;
}
.vcPrivacyDefList dt:first-child {
    padding-top: 0;
}
.vcPrivacyDefList dd:last-child {
    padding-bottom: 0;
}

#vcPrivacySetupSubmit {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 1em;
}
.vcPrivacyOverlayTrigger {
    cursor: pointer;
}

.vcPrivacyNoPermission {
    background: #f2f2f2;
    border: 1px solid #ddd;
    text-align: center;
    padding: 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.vcPrivacySlideDownTarget {
    display: grid;
    grid-template-rows: 1fr;
    overflow: hidden;
    padding-top: .625em;
    transition: all .3s;
}
.vcPrivacySlideDownTarget > * {
    min-height: 0;
    transition: visibility .3s;
    visibility: visible;
}
.vcPrivacySlideDownTarget[aria-hidden="true"] {
    grid-template-rows: 0fr;
    padding-top: 0;
}
.vcPrivacySlideDownTarget[aria-hidden="true"] > * {
    visibility: hidden;
}

.vcPrivacySlideDownTrigger {
    background: none;
    padding: .5em 0 0;
    border: none;
}
.vcPrivacySlideDownTrigger[aria-expanded="true"] .on {
    display: inline;
}
.vcPrivacySlideDownTrigger .on,
.vcPrivacySlideDownTrigger[aria-expanded="true"] .off {
    display: none;
}
.vcPrivacySlideDownTrigger[aria-expanded="true"] .vcCssIcon {
    transform: rotate(180deg);
}
.vcPrivacySlideDownTrigger[aria-expanded="true"] .vcCssIconArrowDown:after {
    margin-top: -1em;
}

@media (min-width: 640px) {
    .vcPrivacyDefList dt {
        clear: left;
        float: left;
        padding: .25em 0;
        width: 25%;
    }
    .vcPrivacyDefList dd {
        padding: .25em 0 .25em 20px;
        margin: 0;
        width: 75%;
        float: left;
    }
    .vcPrivacyDefList dt:first-child,
    .vcPrivacyDefList dt:first-child + dd {
        padding-top: 0;
    }
    .vcPrivacyDefList dt:nth-last-child(2),
    .vcPrivacyDefList dt:nth-last-child(2) + dd {
        padding-bottom: 0;
    }

    #vcPrivacySetupSubmit {
        margin-left: auto;
        margin-right: auto;
        width: 50%;
    }
}

/*
A11y
 */
.vcA11yOverlayTrigger {
    position: fixed;
    right: 10px;
    bottom: 10px;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font-size: 2.5em;
    line-height: 1;
    cursor: pointer;
    z-index: 1;
    transition: all .3s;
    color:#fff;
    background: #000;
    border-radius: .5em;
}
.vcA11yOverlayTrigger .icon,
.vcA11yOverlayTrigger .icon:before {
    display: block;
}
.vcA11yOverlayTrigger:hover {
    text-shadow: 0 3px 5px rgba(0,0,0,.5);
    transform: translateY(-5%);
    color: #fff;
    background: #1a1a1a;
}
@media (min-width: 960px) {
    .vcA11yOverlayTrigger {
        right: 20px;
        bottom: 20px;
        font-size: 3.75em;
    }
}

html,
body {
	height: 100%;
	min-width: 320px;
	background: var(--color_body_bg);
}
body.navMainOpen,
.overlayOpen body {
	overflow: hidden;
}
.baseWidth,
.pushOut {
	margin-left: 0;
	margin-right: 0;
}
.baseSpacer {
	padding-left: 15px;
	padding-right: 15px;
}
#wrapper {
	position:relative;
	padding-top:60px;
	min-height: 100%;
	height: auto !important;
	height: 100%;
	margin: 0 auto;
	right:0;
	transition:right 0.2s;
	overflow:hidden;
    background: var(--color_body_bg);
}
#logo {
	position: absolute;
	left: 0;
	height: 100%;
	transition:height 0.2s;
	padding: 5px 15px;
}
#logo img {
	width: auto;
	height: 100%;
	display: block;
}
#navColumns {
	position:fixed;
	left:0;
	bottom:0;
	width:100%;
	opacity:1;
	box-shadow: 0 0 3px rgba(0,0,0,0.12), 0 0 2px rgba(0,0,0,0.24);
	-webkit-transition: right 0.2s, opacity 0.2s;
	transition: right 0.2s, opacity 0.2s;
}
#header {
	z-index: 100;
	position: relative;
	left: 0;
	right: 0;
}
#headerTop {
	position: fixed;
	top: 0px;
	background:var(--color_header_bg);
	left: 0;
	width: 100%;
	z-index:2;
	padding-right:60px;
	-webkit-transition: top .2s;
	transition: top .2s;
	height:60px;
}
#header.fixedShow #headerTop,
#header.isAtTop #headerTop,
#header.isOverBreakpoint #headerTop {
	top: 0;
	position:fixed;
}
#breadcrumb {
    display: none;
}

#navColumns ul {
	display:table;
	width:100%;
	table-layout:fixed;
	background-color:#f5f6f6;
}
#navColumns ul li {
	display:table-cell;
	height:60px;
	vertical-align:middle;
	text-align:center;
	position:relative;
}
#navColumns ul li:after {
	content:'';
	display:none;
	position:absolute;
	left:0;
	width:1px;
	top:10px;
	bottom:10px;
	background:#ebeded;
}
#navColumns ul li + li:after {
	display:block;
}
#navColumns ul li a {
	position:relative;
	display:block;
	text-decoration:none;
	color: #37454b;
}

#navColumns ul li a span {
	font-size: 8px;
	margin-top: 4px;
	height: 10px;
	line-height: 10px;
	display: block;
	text-transform:uppercase;
}
#navColumns ul li a .icon {
	font-size: 30px;
	line-height: 29.5px;
	display: block;
}
#content {
	padding: 0;
	min-height: 35vh;
}
#breadcrumb {
	color: #9ba2a5;
	font-size: .8em;
	line-height: 1.667;
	padding: 5px 15px;
}
#breadcrumb strong {
	font-weight:400;
	color:#9ba2a5;
	margin-right:4px;
}
#breadcrumb a {
	color:#37454b;
	text-decoration:none;
}
#breadcrumb a:last-child {
	font-weight:700;
}

footer {
	padding-bottom: 60px;
	background: var(--color_box);
	color:var(--color_text);
	position: relative;
	z-index: 1;
}
#footerTop {
	padding: 15px 0;
	text-align: left;
	position: relative;
}
#footerTop * {
	color: var(--color_text) !important;
}
#footerTop p {
	margin: 0;
}
#footerTop .h3 {
	font-size: 1.143em;
	line-height: 1.5625;
	margin: .625em 0 1.25em;
}
#footerLine {
	display:block;
	margin:0 15px;
}
#footerLine:before {
	content:'';
	background:#fff;
	height:1px;
	display:block;
	margin:0 15px;
}
#footerBottom {
	text-align:center;
	padding: 5px 0;
}
#footerBottom .navStd {
	display: inline-block;
}
#footerBottomShariff ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-block;
}
#footerBottomShariff .icon {
	/*color: #fff;*/
}
.shariff .share_count {
	font-weight: bold;
	margin-left: 5px;
}
#footerBottomShariff .shariff-button  .share_count,
#footerBottomShariff .shariff-button .share_text,
#footerBottomShariff .shariff-button.info .share_text {
	display: none;
}
#footerBottomShariff .shariff-button.info .icon {
	margin: 0;
}

#logo_footer {
	display: block;
	width: 200px;
	padding: 15px;
	margin: 0 auto;
}
#logo_footer img {
	width: 100%;
	display: block;
	height: auto;
}
#footerTop .grid_8 + .grid_8 {
	clear:both;
	padding-top:15px;
}
#footerTop .grid_4 {
	width: 100%;
	float: left;
	padding: 0 15px;
	margin: 0;
}
.header-kontakt {
	position:absolute;
	top:60px;
	margin-right:20px;
	font-size:12px;
	color:#fff;
	font-weight:bold;
	background:#385020;
	padding:2px 10px;
}
.header-kontakt a {
	color:#fff !important;
	text-decoration:none;
	display:inline-block;
}
.header-kontakt a {
	margin-right:10px;
}
.header-kontakt a:last-child {
	margin-right:0;
}
.header-kontakt a.tel:before,
.header-kontakt a.mail:before {
	font-family:'fontello';
	display:inline-block;
	margin-right:10px;
}
.header-kontakt a.tel:before {
	content:'\e80a';
}
.header-kontakt a.mail:before {
	content:'\e80c';
}
@media only screen and (min-width: 560px) {
	#footerTop .grid_4 {
		width: 50%;
	}
	#navFtr {
		 float: left;
	}
	.header-kontakt {
		position:relative;
		top:auto;
		clear:right;
		float:right;
		margin-right:20px;
		font-size:12px;
		color:#fff;
		font-weight:bold;
		background:#385020;
		padding:2px 10px;
	}
}
@media only screen and (min-width: 720px) {
	#logo_footer {
		right: 0;
		position: absolute;
		top: 15px;
		width: 33.333%;
	}
}
@media only screen and (min-width: 960px) {
	body.navMainOpen {
		overflow: scroll;
	}
	#header {
		min-height:120px;
	}
	#headerTop {
		position:fixed;
		top:-60px;
		left:0;
		right:0;
		padding:0 5%;
		height:120px;
		background: var(--color_header_bg);
		box-shadow:0 10px 20px rgba(0,0,0,0.3);
	}
	/*#header.fixedShow #headerTop,*/
	#header.isAtTop #headerTop,
	#header.isOverBreakpoint #headerTop {
		position:relative;
		top:0;
		height:120px;
		box-shadow:0 10px 20px rgba(0,0,0,0);
	}
	footer {
		padding-bottom: 0;
	}
	#footerTop .grid_8 + .grid_8,
	#footerTop .grid_8 {
		clear:none;
		padding-top:0;
		float:left;
		width:50%;
	}
	#footerBottomShariff {
		float: right;
	}
	.header-kontakt {
		clear:none;
	}

}
@media only screen and (min-width: 1280px) {
	#footerBottomShariff .shariff-button .share_count,
	#footerBottomShariff .shariff-button .share_text {
		display: inline-block;
	}
	#footerBottomShariff .icon {
		margin-right: 5px;
	}
	#footerBottomShariff .icon.icon-gplus {
		margin-right: 10px;
	}
}

@media only screen and (max-width: 959px) {
	#content > aside {
		margin:0 15px;
	}
}
#navMainWrap {
	height:5px;
	margin:5px 0;
	display:none;
}
#content > aside .aside_box.nav.Tax {
	width:100%;
}


#languageSelect,
#quickSrcBoxWrap {
	float:right;
}
#headerBottom {
	position:relative;
}

#languageSelect {
	font-size: 13px;
	line-height: 20px;
	position: relative;
	padding: 0 10px;
	margin: 0 5px 0 0;
}
#languageSelect > * {
	display: block;
	float: left;
	text-transform: uppercase;
	line-height: 30px;
	padding: 0 7px;
	position: relative;
    color: #999;
}
#languageSelect img {
    display: none;
}
#languageSelect .active {
    color: #404040;
}
#languageSelect .active:before {
	content:'';
	height:2px;
	position:absolute;
	display:block;
	top:0;
	left:5px;
	right:5px;
	background:#ececec;
}
#languageSelect a {
	text-decoration: none;
}

#quickSrcBoxWrap {
    position: relative;
	padding: 0 5px 0;
}
#siteSearchTrigger {
	color: #9ba2a5;
	display: block;
	padding: 10px;
	background: #fff;
	position: relative;
}
#siteSearchTrigger:after {
	position: absolute;
	z-index: 1;
	content: '';
	height: 15px;
	background: #fff;
	top: 100%;
	left: -20px;
	right: -20px;
	display: none;
}
#siteSearchTrigger .icon {
	height: 30px;
	width: 1em;
	font-size: 25px;
	line-height: 30px;
	display: block;
}
#siteSearchTrigger .alt {
	display: none;
}
#quickSrcBox {
	height: 30px;
	/*position: absolute;*/
	overflow: hidden;
	width: 190px;
	right: 60px;
	top: 15px;
	-webkit-transition: height .3s, padding .3s, box-shadow .3s;
	transition: height .3s, padding .3s, box-shadow .3s;
	background: rgba(var(--color_box_rgb),0.1);
	padding: 0 40px 0 15px;
}
#siteSearchSwitch:checked ~ #headerTop #siteSearchTrigger {
	z-index: 11;
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}
#siteSearchSwitch:checked ~ #headerTop #siteSearchTrigger .main {
	display: none;
}
#siteSearchSwitch:checked ~ #headerTop #siteSearchTrigger .alt {
	display: block;
}
#siteSearchSwitch:checked ~ #headerTop #siteSearchTrigger:after {
	display: block;
}
#siteSearchSwitch:checked ~ #headerTop #quickSrcBox {
	padding-top: 15px;
	padding-bottom: 15px;
	box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
	z-index: 10;
	height: 60px;
}
#quickSrcBox label {
	display: none;
}
#srcBoxQ {
	width: 100%;
    font-size: 13px;
	line-height: 29px;
	height: 30px;
	border-bottom: 1px solid #ebeded;
    background: rgba(var(--color_box_rgb),0.1);
}
#srcBoxSubmit {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	font-size: 20px;
	padding: 0;
	width: 40px;
    background: none;
}
#srcBoxSubmit .main {
	display: none;
}


/* TAX FILTER */
#navTaxFilter li {
	display:inline-block;
	margin:0 10px 10px 0;
}
#navTaxFilter li label {
	position:relative;
	border:none;
	background-color:#fff;
	padding:8px 10px;
}
#navTaxFilter li label.active:after {
	content:'';
	display:block;
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	height:4px;
	background:#0786bd;

}

#navStd {
	float: right;
	padding: 0;
	display: none;
}
.navStd li {
	display: inline-block;
}
.navStd li .a,
.navStd li a {
	display:block;
	position:relative;
	font-size: 12px;
	line-height:20px;
	text-decoration:none;
	color:inherit;
	padding: 5px 10px;
    background: none;
}
.navStd li a.active {
	font-weight:700;
}
.navStd li a .icon {
	font-size: 20px;
	vertical-align: -3px;
}



/*
  Scroll Down Hint */

#scrollDownHint {
	position: absolute;
	bottom: 50px;
	left: 50%;
	margin-left: -10em;
	width: 20em;
	color: #fff;
	text-shadow: 0 1px 1px rgba(0,0,0,.25);
	display: none;
}
#scrollDownHint .icon {
	color: #37454b;
	background: #fff;
}

#cookieNote {
	padding: 10px 0;
	box-shadow: 0 -10px 20px rgba(0,0,0,0.19), 0 -3px 6px rgba(0,0,0,0.23);
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 100;
}
#cookieNote .closeNoteBtn {
	float: right;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	font-size: .8em;
	line-height: 2.083;
	padding-left: 15px;
}
#cookieNote .closeNoteBtn .icon {
	font-size: 1.5em;
	line-height: 1;
	vertical-align: -.125em;
}
#cookieNote .closeNoteBtn:hover {
	color: #9ba2a5;
}

/*
  Quick booking box */
.quickBknBoxTrigger {
	padding: 15px;
	background: #73cbef;
	display: block;
	position: relative;
	color: #fff;
	margin: 0 15px;
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	z-index: 1;
}
.quickBknBox {
	position: fixed;
	display: none;
	overflow: auto;
}
.quickBknBox .form {
	padding: 10px;
	margin: 15px;
	background: var(--color_box);
	position: relative;
	z-index: 1;
}
#quickBookingBoxSwitch:checked ~ #wrapper #quickBknBox,
#quickBookingBoxSectionSwitch:checked ~ #wrapper #quickBknBoxSection {
	display: block;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 1000;
}
.quickBknBox .quickBknBoxOverlay {
	background: #000;
	background: rgba(var(--color_box_rgb),0.5);
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	position: fixed;
	display: block;
	z-index: 0;
}
.sectionTeaser + #quickBknBoxWrapSection,
.teaserWrap + #quickBknBoxWrap {
	margin-top: -30px;
}
.quickBknBox .quickBhnBoxHeadline {
	display: block;
	font-weight: bold;
	padding: 0 0 15px;
	color: #fff;
	margin: 0;
}
.quickBknBox .quickBknBoxClose {
	float: right;
	padding: 15px;
	margin: -15px;
}
.quickBknBox .optsContainer {
	margin: 0;
}
.quickBknBox .optsContainer + .optsContainer {
	margin-top: 15px;
}
.quickBknBox .optsContainer > label {
	color: #37454b;
}
.quickBknBox .optsContainer > .selectWrap.focus + label,
.quickBknBox .optsContainer.hasValue > label,
.quickBknBox .optsContainer.hasFocus > label {
	background: #73cbef;
	color: #fff;
}
.quickBknBox .optsContainer input,
.quickBknBox .optsContainer .input,
.quickBknBox .optsContainer select,
.quickBknBox .optsContainer .selectOver {
	background: none;
	border:none;
	border-bottom: 2px solid #fff;
	top: 0;
}
.quickBknBox .optsContainer input:hover,
.quickBknBox .optsContainer .input:hover,
.quickBknBox .optsContainer select:hover,
.quickBknBox .optsContainer .selectWrap:hover .selectOver {
	background: none;
	border-color: #fff #fff #8c8c8c;
}
.quickBknBox .optsContainer input:focus,
.quickBknBox .optsContainer .input:focus,
.quickBknBox .optsContainer select:focus,
.quickBknBox .optsContainer .selectWrap.focus .selectOver {
	background: none;
	border-color: #8c8c8c;
}
.quickBknBox .optsContainer > .selectWrap.focus ~ .icon,
.quickBknBox .optsContainer.hasFocus .icon {
	color: #37454b;
}
.quickBknBox .optsContainer .selectOver:after {
	display: none;
}
.quickBknBox .optsContainer + .btnContainer {
	margin: 15px 0 0;
}
.quickBknBox .btnContainer button {
	background: #385020;
	color: #fff;
	min-width: 0;
	width: 100%;
	padding: 10px 10px 7px;
}
.quickBknBox .btnContainer button:active {
	padding-top: 12px;
	border-bottom-width: 1px;
}
.quickBknBox .btnContainer button .icon {
	font-size: 1.5em;
	vertical-align: -.15em;
}
.quickBknBox .btnContainer button .label {
	font-weight: bold;
	text-transform: uppercase;
}

.quickBknBox .optsContainer.qb_departure_opts .fromArrivalToDeparture {
	color: #fff;
	background: #a0a0a0;
	border-radius: 10px;
	height: 20px;
	width: 20px;
	line-height: 20px;
	font-size:14px;
	margin-top: -10px;
	text-align: center;
	right: auto;
	left: -10px;
	display: none;
}
#siteScrollUp {
	float:right;
	display: block;
	opacity: 1;
	pointer-events: auto;
	transition: all .3s;
	z-index: 10;
	text-align: center;
	text-decoration: none;
	line-height: 2em;
	padding-right:15px;
}
#siteScrollUp .icon {
	font-weight:bold;
	margin-top: -.05em;
	display: inline-block;
	margin-left:10px;
}

/*
  Newsletter Widget */
#newsletterRegisterSection .btnContainer button {
	width: 100%;
}

/*
  Lakes Overview Widget */
#mapOverviewSection {
	margin-bottom: 15px;
}
#mapOverviewWrap {
	position: relative;
	padding-bottom: 62.5%;
	height: 0;
	margin: 0;
}
#mapOverviewOuterWrap {
	margin: 0 15px;
}
#mapOverviewWrap .wrap {
	position: absolute;
	height: 100%;
	width: 100%;
	overflow: hidden;
}
#mapLakesOverview {
	height: 100%;
	width: 100%;
	position: relative;
	left: 0;
	top: 0;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
}
#mapLakesOverview #Labels {
	pointer-events: none;
}
#mapLakesOverview .lake {
	cursor: pointer;
}
#mapLakesOverview .lake:hover,
#mapLakesOverview .lake.hover {
	fill: #f6a800;
}
#mapOverviewWrap .infoBox {
	position: absolute;
	display: none;
	width: 290px;
}
#mapOverviewWrap .infoBox.hover {
	display: block;
}
@media only screen and (orientation: portrait) {
	#mapOverviewWrap {
		padding-bottom: 100%;
	}
}

.func {
	position: relative;
	padding:10px 15px 0;
	font-size: 12px;
	line-height: 20px;
	float:right;
	clear:both;
}
.func .icon {
	font-size: 18px;
	vertical-align: -1.5px;
}
.func > * {
	float: left;
}
#headerTop .func > * + * {
	margin-left: 30px;
}
.func a {
	text-decoration: none;
	color: inherit;
}
.fontSizeSwitcher {

}
.fontSizeSwitcher > .icon {
	float:left;
	font-size:15px;
	line-height:20px;
}
.fontSizeSwitcher > a {
	background: #f5f5f5;
	display: block;
	border-radius: 13px;
	float: left;
	height: 20px;
	width: 20px;
	text-align: center;
	line-height: 20px;
	font-size: 16px;
	font-weight:bold;
}
.fontSizeSwitcher a + a {
	margin-left: 5px;
}
.fontSizeSwitcher .decrease {
	font-size: 12px;
}
.fontSizeSwitcher a:hover {
	background: #ececec;
}
.fontSizeSwitcher .disabled {
	color: #9ba2a5 !important;
	background: none;
	pointer-events: none;
}

/*
  FAVOURITES Widget */
.quickWeather,
.quickFavs a {
	display: block;
	float: left;
}
.quickFavs a:hover {
	color: inherit;
}
.quickFavs a + a {
	margin-left: 15px;
}
.quickFavs .action .icon {
	color: #cdd0d2;
}
.quickFavs .action .ns,
.quickFavs .action:hover .as {
	display: inline-block;
}
.quickFavs .action .as,
.quickFavs .action:hover .ns {
	display: none;
}
.quickFavs .action:hover .icon {
	color: inherit;
}

.quickFavs .goToFavs {
	background: #f5f6f6;
	border-radius: 10px;
	padding: 0 8px 0 5px;
}
.quickFavs .goToFavs .icon {
	vertical-align: baseline !important;
	font-size: inherit !important;
}
.quickFavs .goToFavs .label {
	display: none;
}
.quickFavs .goToFavs .counter {
	font-weight: bold;
}

.navSub.box.greyBackground > ul {
	margin-left: -15px;
	margin-right: -15px;
}

/*
  SIDEBAR */

#lftContainer > * {
	margin-top: 30px;
	margin-bottom: 15px;
	padding-bottom:1em;
	border-bottom:1px solid #ececec;
}
@media only screen and (min-width: 960px) {
	#lftContainer > :first-child {
		margin-top: 4em;
	}
}
#lftContainer > :last-child {
	margin-bottom: 0;
}
#rghtContainer .article,
#rghtContainer .spacer,
#lftContainer .article,
#lftContainer .spacer {
	width: auto;
	padding: 0;
}
#rghtContainer .article .pushOut-150,
#rghtContainer .spacer .pushOut-150,
#rghtContainer .article .pushOut-125,
#rghtContainer .spacer .pushOut-125,
#lftContainer .article .pushOut-150,
#lftContainer .spacer .pushOut-150,
#lftContainer .article .pushOut-125,
#lftContainer .spacer .pushOut-125 {
	margin-left: 0;
	margin-right: 0;
	padding-left: 15px;
	padding-right: 15px;
}
#rghtContainer .article .mapWrap {
	padding-left: 0;
	padding-right: 0;
}
#rghtContainer .pushOut.greyBackground .baseWidth {
	padding-left: 15px;
	padding-right: 15px;
}

.navSub a {
	display: block;
	color: inherit;
	text-decoration: none;
}

.navSub ul a {
    padding: 10px 30px 10px 15px;
    line-height: 20px;
	position: relative;
	-webkit-transition: all .2s;
	transition: all .2s;
}
.navSub ul a:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	height: 1px;
	width: 10px;
	top: 50%;
	-webkit-transition: width .2s, background .2s;
	transition: width .2s, background .2s;
}
.navSub.greyBackground a:before {
	background: #fff;
}
.navSub ul a:hover,
.navSub ul a.hover,
.navSub ul a.active {
    padding-left: 30px;
	padding-right: 15px;
}
.navSub.greyBackground a:hover:before,
.navSub.greyBackground a.hover:before,
.navSub.greyBackground a.active:before {
	width: 25px;
	background: #cdd0d2;
}


@media only screen and (min-width: 500px) {
	#languageSelect {
		margin-left: 5px;
	}
	#languageSelect > * + *:after {
		content:'';
		display:block;
		position:absolute;
		left:-8px;
		top: 15px;
		bottom: 20px;
		width: 2px;
		background:#f5f6f6;
	}
	.navStd li:first-child a {
		padding-left: 15px;
	}
}

@media only screen and (min-width: 720px) {
	#headerBottom {
		position: relative;
		background: #f6f7f7;
	}
	#languageSelect > * + *:after {
		left:-10px;
	}
	#navStd {
		display: block;
		margin-right: 5px;
	}
	#navStdMobi {
		display: none;
	}
	.quickBknBox {
		display: block;
		position: relative;
	}
	.quickBknBox .form {
		padding-right: 70px;
		display: block;
		position: relative;
		margin: 0;
	}
	#quickBookingBoxSwitch:checked ~ #wrapper #quickBknBox,
	#quickBookingBoxSectionSwitch:checked ~ #wrapper #quickBknBoxSection {
		z-index: 1;
	}
	.sectionTeaser + #quickBknBoxWrapSection,
	.teaserWrap + #quickBknBoxWrap {
		margin-top: -35px;
	}
	.quickBknBox .optsContainer > label,
	.quickBknBox .optsContainer.hasValue > label,
	.quickBknBox .btnContainer button .label,
	.quickBknBoxTrigger,
	.quickBknBox .btnContainer button .label,
	.quickBknBox .quickBknBoxOverlay,
	.quickBknBox .quickBhnBoxHeadline {
		display: none;
	}
	.quickBknBox .optsContainer.qb_arrival_opts > label,
	.quickBknBox .optsContainer.qb_departure_opts > label {
		display: block;
	}
	.quickBknBox .optsContainer {
		margin: 0 !important;
		width: 25%;
		padding: 0 15px;
		float: left;
	}
	.quickBknBox .optsContainer > label {
		background: none;
		top: 9px;
	}
	.quickBknBox .optsContainer > .selectWrap.focus + label,
	.quickBknBox .optsContainer.hasValue > label,
	.quickBknBox .optsContainer.hasFocus > label {
		opacity: 0;
		top: 9px;
		font-size: inherit;
		line-height: 20px;
		background: none;
	}
	.quickBknBox .optsContainer > .icon {
		right: 25px;
	}
	.quickBknBox .optsContainer.qb_arrival_opts {
		padding-right: 1px;
		padding-left: 0;
	}
	.quickBknBox .optsContainer.qb_departure_opts {
		padding-left: 1px;
	}

	.quickBknBox .optsContainer.qb_arrival_opts .date .icon {
		right: 19px;
	}
	.quickBknBox .optsContainer.qb_departure_opts > label {
		left: 19px;
	}
	.quickBknBox .optsContainer.qb_departure_opts input,
	.quickBknBox .optsContainer.qb_departure_opts .input {
		padding-left: 19px;
	}
	.quickBknBox .optsContainer.qb_departure_opts .fromArrivalToDeparture {
		display: block;
	}
	.quickBknBox .optsContainer + .btnContainer {
		margin: 0;
	}
	.quickBknBox .btnContainer button {
		height: 100%;
		position: absolute;
		right: 0;
		top: 0;
		min-width: 0;
		width: 70px;
	}
	#newsletterRegisterSection .wrap {
		position: relative;
		margin-top: 30px;
	}
}

@media only screen and (min-width: 500px) and (max-width: 719px), only screen and (min-width: 960px) {
	#siteSearchTrigger {
		display: none;
	}
	#quickSrcBoxWrap {
		width: 40%;
		width: calc(100% - 265px);
		padding-left: 15px;
		padding-right: 15px;
	}
	#siteSearchSwitch:checked ~ #headerTop #quickSrcBox,
	#quickSrcBox {
		position: relative;
		right: auto;
		top: auto;
		left: auto;
		width: 100%;
		height: auto;
		padding: 0 40px 0 0;
		box-shadow: none;
	}
	#srcBoxQ {
		padding-top: 5px;
		font-size: 13px;
		height: 30px;
	}
	#srcBoxSubmit {
		background: none;
		width: 30px;
		color: #9ba2a5;
		padding-top: 0;
	}
	#srcBoxSubmit .main {
		display: none;
	}
	#srcBoxSubmit .alt {
		display: block;
	}
	#siteSearchSwitch:checked ~ #headerTop #quickSrcBox {
		box-shadow: none;
	}
}

@media only screen and (min-width: 960px) {
	#quickSrcBoxWrap {
		width: 200px;
		padding-top: 0;
        clear: both;
	}
	.quickBknBox .form {
		padding-right: 21%;
	}
	.quickBknBox .btnContainer button {
		width: 21%;
		width: calc(21% - 15px);
	}
	.quickBknBox .btnContainer button .label {
		display: inline-block;
		margin-left: 5px;
	}

	#rghtContainer {
		width: 66.67%;
		float: left;
		padding-right: 15px;
	}

	#rghtContainer .pushOut .baseWidth {
		margin-left: 0;
		margin-right: 0;
		width: 100%;
	}
	#rghtContainer .pushOut .baseWidth .spacer {
		width: 100%;
	}
	#lftContainer {
		width: 33.33%;
		float: right;
		padding-left: 15px;
		padding-right: 15px;
		position: relative;
	}
	#rghtContainer .spacer,
	#rghtContainer .article,
	#rghtContainer .pushOut {
		padding-left: 15px;
		padding-right: 0;
		margin-left: 0;
		margin-right: 0;
		width: 100%;
	}
	#rghtContainer .pushOut.greyBackground {
		padding-left: 0;
		margin-left: 15px;
		width: auto;
	}
	#rghtContainer .pushOut .spacer {
		padding-left: 0;
	}
	#rghtContainer .pages {
		margin-left: 15px;
		margin-right: 0;
	}

	/*
	  Lakes Overview Widget */
	#mapOverviewOuterWrap {
		margin: 0;
	}
}

@media only screen and (max-width: 959px) {
	#navMobiWrapper {
		display:block;
		position:fixed;
		top:0;
		right:-100%;
		height:100%;
		z-index: 10;
		-webkit-transition: right 0s .3s;
		transition: right 0s .3s;
	}

	#navMainOverlay {
		background: #000;
		display: block;
		width: 0;
		left: 0;
		top: 60px;
		bottom: 0;
		position: fixed;
		z-index: 1;
		opacity: 0;
		-webkit-transition: width 0s .3s, opacity .3s;
		transition: width 0s .3s, opacity .3s;
	}
	.overlayOpen #wrapper #navMobiWrapper {
		right: 0;
		-webkit-transition: right 0s;
		transition: right 0s;
	}
	.overlayOpen #wrapper #navMainOverlay {
		width: 100%;
		opacity: .5;
		-webkit-transition: width 0s, opacity .3s;
		transition: width 0s, opacity .3s;
	}

	#naviWrapper {
		position:absolute;
		top:0;
		left:0;
		width:100%;
		height:70px;
		margin:0;
		background:#057374;
	}
	#naviMobi {
		position:relative;
		height:100%;
		overflow:auto;
		box-shadow:0 0 10px rgba(0,0,0,0);
		transition:box-shadow 0.5s;
		background:var(--color_header_bg);
		display:block;
		width:0;
		visibility: hidden;
		-webkit-transition: visibility 0s .2s, width .2s;
		transition: visibility 0s .2s, width .2s;
	}
	.overlayOpen #wrapper #naviMobi {
		width:270px;
		visibility: visible;
		-webkit-transition: visibility 0s, width .2s;
		transition: visibility 0s, width .2s;
	}
	#naviMobi #navStdMobi,
	#naviMobi #navMain,
	#naviMobi .func {
		width:270px;
	}
	#naviMobi .func > * + * {
		margin-left: 20px;
	}
	#naviMobi .func > * + .quickFavs {
		clear: left;
		padding-top: 15px;
		margin-left: 0;
	}
	#navMainTrigger {
		position: absolute;
		top:0;
		right:0;
		display:block;
		height:60px;
		width:60px;
		z-index: auto;
		margin-right:0;
		background:#404040;
		box-shadow:-10px 5px 0px rgba(0,0,0,0);
		-webkit-transition:box-shadow .2s, top .2s, right .2s;
		transition:box-shadow .2s, top .2s, right .2s;
	}

	#navMainTrigger .info {
		display:none;
		position:absolute;
		left:10px;
		top:50%;
		margin-top:-6px;
		padding:1px 2px;
		font-size:10px;
		line-height:10px;
		background:#fff;
		color:#fff;
		overflow:hidden;
		border-radius:3px;
		z-index:10;
	}
	#navMainTrigger .line {
		overflow:hidden;
		text-indent:-999px;
	}
	#navMainTrigger .line,
	#navMainTrigger:after,
	#navMainTrigger:before {
		background:#fff;
		display: block;
		height: 4px;
		right: 18px;
		position: absolute;
		-webkit-transition: all .3s;
		transition: all .3s;
		width: 24px;
	}
	#navMainTrigger .line {
		opacity: 1;
		top: 50%;
		margin-top:-2px;
	}
	#navMainTrigger:after,
	#navMainTrigger:before {
		content: "";
	}
	#navMainTrigger:before {
		bottom: 37px;
	}
	#navMainTrigger:after {
		bottom: 19px;
	}
	.csstransforms .overlayOpen #wrapper #navMainTrigger .line {
		opacity: 0;
	}
	.csstransforms .overlayOpen #wrapper #navMainTrigger:before {
		bottom: 30px;
		transform: rotate(45deg);
	}
	.csstransforms .overlayOpen #wrapper #navMainTrigger:after {
		bottom: 30px;
		transform: rotate(-45deg);
	}
	.overlayOpen #wrapper #navMainTrigger {
		right: 270px;
		box-shadow: -10px 5px 9px rgba(0,0,0,0.3);
		background: #f5f6f6;
	}
	.overlayOpen #wrapper #navMainTrigger .line,
	.overlayOpen #wrapper #navMainTrigger:after,
	.overlayOpen #wrapper #navMainTrigger:before {
		background:#37454b;
	}

	/* NAVI STD MOBI */
	#navStdMobi {
		padding: 15px 10px;
	}
	#navStdMobi a {
		height: 30px;
		display:block;
		padding: 5px;
		color: #9ba2a5;
		text-decoration: none;
	}
	#navStdMobi a.active {
		color:#556166;
		font-weight:700;
	}

	/* NAV MAIN */
	#navMain {
		display:block;
		margin:0;
		padding:0;
	}
	#navMain .navWrap {
		height:auto !important;
	}
	#navMain .navWrap .offersWrap {
		display: none;
	}
	#navMain ul {
		padding:10px 0;
		margin:0;
		min-height: 0 !important;
	}
	#navMain li {
		display: block;
		position:relative;
	}
	#navMain li.m248 {
		display:none;
	}
	#navMain li	.navBtnWrap {
		position: relative;
		-webkit-transition: all .2s;
		transition: all .2s;
	}
	#navMain li .navWrap,
	#navMain li  ul {
		max-height: 0;
		-webkit-transition: max-height .3s cubic-bezier(0,1,0,1);
		transition: max-height .3s cubic-bezier(0,1,0,1);
		overflow: hidden;
	}
	#navMain li .navWrap.expanded,
	#navMain li .navWrap.expanded ul {
		max-height: 10000px;
		-webkit-transition: max-height .3s cubic-bezier(1,0,1,0);
		transition: max-height .3s cubic-bezier(1,0,1,0);
	}
	#navMain li.lvl3 .navWrap.expanded,
	#navMain li.lvl3 .navWrap.expanded ul {
		max-height: 2000px;
	}
	#navMain li.lvl4 .navWrap.expanded,
	#navMain li.lvl4 .navWrap.expanded ul {
		max-height: 1000px;
	}
	/*#navMain li.lvl1 > .navWrap.expanded,
	#navMain li.lvl1 > .navWrap {
		background: #f5f6f6;
	}*/
	#navMain ul.lvl3 {
		background: #fff;
		margin: 0 0 0 15px;
		border: none;
	}
	#navMain .checkboxTrigger:checked ~ ul.lvl3 {
		border-bottom: 15px solid #f5f6f6;
	}
	#navMain a {
		display: block;
		font-size: 20px;
		line-height: 30px;
		padding: 10px 40px 10px 15px;
		text-decoration: none;
		color: inherit;
		position: relative;
		-webkit-transition: padding .2s;
		transition: padding .2s;
	}
	#navMain a.lvl2 {
		font-size: 18px;
		line-height: 20px;
	}
	#navMain li	.checkboxTrigger:checked + .navBtnWrap a.lvl2,
	#navMain li	.checkboxTrigger:checked + .navBtnWrap a.lvl3 {
		padding-left: 30px;
	}
	#navMain a.lvl3,
	#navMain a.lvl4 {
		font-size: 15px;
		line-height: 20px;
		text-transform: none;
		font-weight: 700;
	}
	#navMain a.lvl4 {
		font-weight: 400;
		padding-left: 30px;
	}
	#navMain a.lvl2:before,
	#navMain a.lvl3:before {
		content: '';
		display: block;
		position:absolute;
		left: 0;
		height: 1px;
		width: 10px;
		top: 50%;
		-webkit-transition: width .2s;
		transition: width .2s;
	}
	#navMain a.lvl2:before {
		background: #cdd0d2;
	}
	#navMain li	.checkboxTrigger:checked + .navBtnWrap a.lvl2:before,
	#navMain li	.checkboxTrigger:checked + .navBtnWrap a.lvl3:before {
		width: 25px;
		background: #cdd0d2;
	}
	#navMain a.lvl3:before {
		background: #ebeded;
	}

	#navMain .iconMenuTriggerDwn {
		display:block;
		position:absolute;
		right: 0;
		width: 40px;
		height: 50px;
		text-align: center;
		top: 0;
		margin-top: 0;
		padding: 10px 0;
        background: none;
		overflow: hidden;
	}
	#navMain .iconMenuTriggerDwn:after {
		border-color: #37454b transparent transparent;
		border-style: solid;
		border-width: 8px 5px 0;
		content: "";
		display: block;
		height: 0;
		margin-left: -5px;
		margin-top: -4px;
		position: absolute;
		left: 50%;
		top: 50%;
		-webkit-transition: transform 0.2s;
		transition: transform 0.2s;
		width: 0;
	}
	#navMain .iconMenuTriggerDwn[aria-expanded="true"]:after {
		-webkit-transform:rotate(180deg);
		-ms-transform:rotate(180deg);
		transform:rotate(180deg);
	}

	#naviMobi .func {
		position: static;
		padding: 0 15px 15px;
		font-size: 13px;
	}
	#naviMobi .quickFavs a {
		position: relative;
	}
	#naviMobi .quickFavs a + a {
		margin-left: 5px;
		padding-left: 5px;
	}
	#naviMobi .quickFavs a + a:after {
		content: '';
		display: block;
		position: absolute;
		left: -1px;
		top: 0;
		bottom: 0;
		width: 2px;
		background: #f5f6f6;
	}
	#naviMobi .quickFavs .goToFavs {
		background: none;
		padding-right: 0;
	}
	#naviMobi .quickFavs .goToFavs:first-child {
		background: none;
		padding: 0;
	}
	#naviMobi .quickFavs .goToFavs .label {
		display: inline;
	}
	#naviMobi .quickFavs .goToFavs .counter {
		background: #f5f6f6;
		border-radius: 10px;
		min-width: 20px;
		display: inline-block;
		text-align: center;
	}
	#naviMobi .quickFavs .goToFavs .icon,
	#headerTop .func {
		display: none;
	}
}
@media only screen and (min-width: 720px) and (max-width: 959px) {
	#navMain li:first-child a.lvl1 {
		padding-top: 15px;
	}
	#naviMobi .func {
		padding:20px  15px;
	}
}
@media only screen and (min-width: 960px) {
	#wrapper {
		margin-bottom:0;
		padding-top:0;
	}
	#header {
	}
	#naviMobi .func {
		display: none;
	}
	#logo {
		position: fixed;
		width: 115px;
		height: 60px;
		padding: 15px;
		float: left;
		z-index: 103;
		top: 0;
		left: 0;
		-webkit-transition: top .3s;
		transition: top .3s;
	}
	#header.fixedShow #logo, #header.isOverBreakpoint #logo, #header.isAtTop #logo {
		padding: 30px 15px;
	}
	#headerBottom {
		background: #f5f6f6;
		z-index: 102;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		-webkit-transition: top .3s;
		transition: top .3s;
		box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	}
	#header.isOverBreakpoint #headerBottom,
	#header.isAtTop #headerBottom {
		position: static;
		top: -60px;
		z-index: 100;
		box-shadow: none;
	}
	#header.fixedShow #logo,
	#header.isOverBreakpoint #logo,
	#header.isAtTop #logo {
		position: absolute;
		top: 0px;
		z-index: auto;
		height: 120px;
		width: 180px;
	}

	#languageSelect {
		padding-top: 0;
	}
	#navColumns {
		position:relative;
		float:right;
		width:auto;
		box-shadow: none;
	}
	#navColumns ul {
		width: auto;
		background: none;
	}
	#navColumns ul a {
		padding: 15px;
	}
	#navColumns ul li a span {
		display: none;
	}
	#header.isOverBreakpoint #navColumns ul li,
	#header.isAtTop #navColumns ul li {
		height: 75px;
	}
	#header.isOverBreakpoint #navColumns ul li a span,
	#header.isAtTop #navColumns ul li a span {
		display: block;
	}

	#navMobiWrapper {
		clear:both;
		float:right;
		padding-left: 115px;
		margin-left:0 !important;
	}
	#header.isOverBreakpoint #navMobiWrapper,
	#header.isAtTop #navMobiWrapper {
		padding-left: 0;
	}
	#navMainOverlay,
	#navMainTrigger {
		display: none;
	}
	#navMain {
		display:block;
		margin:0;
		padding:0;
	}
	#navMain ul {
		padding-left:0;
		margin:0;
	}
	#navMain li.lvl1 {
		display: block;
		float: left;
		position:relative;
		z-index:0;
	}
	#navMain li a {
		position:relative;
		display:block;
		text-decoration:none;
		color:#404040;
	}
    #navMain li a.lvl1 {
        color:var(--color_main);
    }
    #navMain li a.lvl1.active,
    #navMain li:hover a.lvl1 {
        color:#404040;
    }
	#navMain .m248 span {
		display:none;
	}
	#navMain .m248 a:before {
		display:none !important;
	}
	#navMain .m248 a:after {
		content:'\e80d';
		display:inline-block;
		font-family:'fontello';
		position:relative;
	}
	#navMain li a.lvl1 {
		padding: 15px;
		font-size:15px;
		transition:all 0.3s;
	}
	#navMain li a span {
		position:relative;
	}
	#navMain li a.lvl1 > span {
		z-index:10;
	}
	#navMain li a.lvl1:before {
		content:'';
		display:block;
		opacity:0;
		position:absolute;
		left:10px;
		right:10px;
		bottom:-5px;
		height:10px;
		transition:all 0.3s;
		z-index:10;
		background: #f5f5f5;
	}
	#navMain li:hover a.lvl1:before,
	#navMain li a.lvl1.active:before {
		height:60px;
		left:0;
		right:0;
		opacity:1;
	}
	#navMain .iconMenuTriggerDwn {
		display: none;
	}
	#navMain .lvl2Wrapper {
		position: absolute;
		display: block;
		visibility: hidden;
		opacity: 0;
		left: 50%;
		margin-left:-120px;
		top: 100%;
		width:240px;
		background: #f5f5f5;
		padding:10px 20px;
		/*background-color: rgb(255, 255, 255);
		min-height: 400px;*/
		transition: all 0.2s;
		transition-delay:0.3s;
	}
	#navMain li.lvl1:hover {
		z-index:10;
	}
	#navMain li.lvl1:hover .lvl2Wrapper {
		visibility:visible;
		opacity:1;
	}
	#navMain li.lvl1 .lvl2Wrapper a {
		padding:8px 0;
		line-height:1.4em;
	}
	#navMain li.lvl1 .lvl2Wrapper a.active {
		font-weight:700;
	}
	#navMain li.lvl2 ul {
		display:none;
	}
	#scrollDownHint {
		display: block;
	}
}
@media only screen and (min-width: 1024px) {
	#navMain li a.lvl1 {
		font-size:16px;
	}
}
@media only screen and (min-width: 1080px) {
	#breadcrumb,
	#content,
	.baseWidth {
		width: 90%;
		margin: 0 auto;
	}
	.pushOut {
		margin-left: -5.556%;
		margin-right: -5.556%;
	}
	#logo,
	#navMobiWrapper,
	#footerLine,
	#footerBottom {
		margin-left: 5%;
	}
	#navColumns,
	#footerLine,
	#footerBottom {
		margin-right: 5%;
	}
	#navMain li a.lvl1 {
		font-size:18px;
	}
	/*#navMain li.lvl1 .navWrap {
		left: 5%;
		right: 5%;
	}*/
	#footerTop {
		padding-left: 5%;
		padding-right: 5%;
	}
	.teaser li .teaserItemTitleInner .wrap {
		padding-left: 5%;
	}
}
@media only screen and (min-width: 1120px) {
	#logo {
		padding: 15px;
	}
	#header.isOverBreakpoint #navMain a.lvl1,
	#header.isAtTop #navMain a.lvl1 {
		font-size: 18px;
	}
}
@media only screen and (min-width: 1280px) {
	#quickSrcBoxWrap,
	#languageSelect {
		padding-right: 10px;
		padding-left: 10px;
		margin-left: 20px;
		margin-right: 0px;
	}
	#navStd {
		margin-left: 15px;
	}
	#quickSrcBoxWrap {
		width: 270px;
	}
	#navMobiWrapper {
    	padding-left: 145px;
	}
	#navMain a.lvl1 {
		font-size: 18px;
	}
	#navColumns ul li a span {
		font-size: 11px;
		height: 12px;
		line-height: 12px;
		margin-top: 2px;
		color: #556166;
	}
	#rghtContainer {
		padding-right: 4.33%;
	}
	#lftContainer {
		padding-left: 4.33%;
	}
}
@media only screen and (min-width: 1440px) {
	#headerTop {
		padding:0 10%;
	}
	#breadcrumb,
	#content,
	.baseWidth {
		width: 80%;
	}
	.pushOut {
		margin-left: -12.5%;
		margin-right: -12.5%;
	}
	#logo,
	#navMobiWrapper,
	#footerLine,
	#footerBottom {
		margin-left: 10%;
	}
	#navColumns,
	#footerLine,
	#footerBottom {
		margin-right: 10%;
	}
	#navMain li.lvl1 {
		margin-right:10px;
	}
	/*#navMain li.lvl1 .navWrap {
		left: 10%;
		right: 10%;
	}*/
	#footerTop {
		padding-left: 10%;
		padding-right: 10%;
	}
	#logo_footer {
		right: 10%;
	}
	.teaser li .teaserItemTitleInner .wrap {
		padding-left: 10%;
	}
}
@media only screen and (min-width: 1680px) {
	#breadcrumb,
	#content,
	.baseWidth {
		width: 66.666%;
	}
	.pushOut {
		margin-left: -25%;
		margin-right: -25%;
	}
	#headerTop {
		padding:0 16.667%;
	}
	#logo,
	#navMobiWrapper,
	#footerLine,
	#footerBottom {
		margin-left: 16.667%;
	}
	#navColumns,
	#footerLine,
	#footerBottom {
		margin-right: 16.667%;
	}
	/*#navMain li.lvl1 .navWrap {
		left: 16.667%;
		right: 16.667%;
	}*/
	#footerTop {
		padding-left: 16.667%;
		padding-right: 16.667%;
	}
	.teaser li .teaserItemTitleInner .wrap {
		padding-left: 16.667%;
	}
}
@media only screen and (min-width: 2240px) {
	#headerTop {
		padding:0 25%;
	}
	#breadcrumb,
	#content,
	.baseWidth {
		width: 50%;
	}
	.pushOut {
		margin-left: -50%;
		margin-right: -50%;
	}
	#logo,
	#navMobiWrapper,
	#footerLine,
	#footerBottom {
		margin-left: 25%;
	}
	#navColumns,
	#footerLine,
	#footerBottom {
		margin-right: 25%;
	}
	/*#navMain li.lvl1 .navWrap {
		left: 25%;
		right: 25%;
	}*/
	#footerTop {
		padding-left: 25%;
		padding-right: 25%;
	}
	#logo_footer {
		right: 25%;
	}
	.teaser li .teaserItemTitleInner .wrap {
		padding-left: 25%;
	}
}

/* ==========================================================================
   external Scripts/Functions
   ========================================================================== */

/*! Swipebox v1.4.4 | Constantin Saguin csag.co | MIT License | github.com/brutaldesign/swipebox */
html.swipebox-html{overflow:hidden!important}#swipebox-overlay img{border:none!important}#swipebox-overlay{width:100%;height:100%;position:fixed;top:0;left:0;z-index:99999!important;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background:#fff;background:rgba(255,255,255,.95)}#swipebox-container{position:relative;width:100%;height:100%}#swipebox-slider{-webkit-transition:-webkit-transform .4s ease;transition:transform .4s ease;height:100%;left:0;top:0;width:100%;white-space:nowrap;position:absolute;display:none;cursor:pointer;padding-top:50px;padding-bottom:50px;}#swipebox-slider .slide{height:100%;width:100%;line-height:1px;text-align:center;display:inline-block;position:relative;overflow:hidden;}#swipebox-slider .slideInnerWrap{height:100%;width:100%;line-height:1px;text-align:center;}#swipebox-slider .slideInnerWrap:before{content:"";display:inline-block;height:50%;width:1px;margin-right:-1px}#swipebox-slider .slide .swipebox-inline-container,#swipebox-slider .slide .swipebox-video-container,#swipebox-slider .slide img{display:inline-block;max-height:100%;max-width:100%;margin:0;padding:0;width:auto;height:auto;vertical-align:middle}#swipebox-slider .slide .swipebox-video-container{background:0 0;max-width:1140px;max-height:100%;width:100%;padding:5%;-webkit-box-sizing:border-box;box-sizing:border-box}#swipebox-slider .slide .swipebox-video-container .swipebox-video{width:100%;height:0;padding-bottom:56.25%;overflow:hidden;position:relative}#swipebox-slider .slide .swipebox-video-container .swipebox-video iframe{width:100%!important;height:100%!important;position:absolute;top:0;left:0}#swipebox-slider .slide-loading{background:url(../img/preloader_301_dark.gif) center center no-repeat}#swipebox-bottom-bar,#swipebox-top-bar{-webkit-transition:.5s;transition:.5s;position:absolute;left:0;z-index:999;height:50px;width:100%;background:#649e26;}#swipebox-bottom-bar{top:-50px;background:#649e26;color:#000!important;}#swipebox-bottom-bar.visible-bars{-webkit-transform:translate3d(0,50px,0);transform:translate3d(0,50px,0)}#swipebox-top-bar{bottom:-50px;display:table;}#swipebox-top-bar.visible-bars{-webkit-transform:translate3d(0,-50px,0);transform:translate3d(0,-50px,0)}#swipebox-title{width:100%;height:100%;font-size:1em;line-height:1.2;text-align:center;vertical-align:middle;display:table-cell;color:#000;}#swipebox-close,#swipebox-next,#swipebox-prev,#swipebox-zoomin,#swipebox-zoomout{background-image:url(../img/Swipebox/icons.png);background-repeat:no-repeat;border:none!important;text-decoration:none!important;cursor:pointer;width:50px;height:50px;top:0}#swipebox-arrows{height:100%;position:absolute;left:0;bottom:0;top:50vh;margin-top:-25px;}#swipebox-prev{background-position:-32px 13px;float:left}#swipebox-next{background-position:-78px 13px;float:right;position:absolute;right:-100vw;margin-right:50px;}#swipebox-close,#swipebox-zoomin,#swipebox-zoomout{top:0;position:absolute;z-index:9999}#swipebox-close{background-position:15px 12px;right:0}#swipebox-zoomin{background-position:-122px 12px;right:60px}#swipebox-zoomout{background-position:-168px 12px;right:60px}.swipebox-no-close-button #swipebox-close{display:none}#swipebox-next.disabled,#swipebox-prev.disabled,#swipebox-zoomin.disabled,#swipebox-zoomout.disabled{opacity:.3}.swipebox-no-touch #swipebox-overlay.rightSpring #swipebox-slider{-webkit-animation:rightSpring .3s;animation:rightSpring .3s}.swipebox-no-touch #swipebox-overlay.leftSpring #swipebox-slider{-webkit-animation:leftSpring .3s;animation:leftSpring .3s}.swipebox-touch #swipebox-container:after,.swipebox-touch #swipebox-container:before{-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:all .3s ease;transition:all .3s ease;content:' ';position:absolute;z-index:999;top:0;height:100%;width:20px;opacity:0}.swipebox-touch #swipebox-container:before{left:0;box-shadow:inset 10px 0 10px -8px #656565}.swipebox-touch #swipebox-container:after{right:0;box-shadow:inset -10px 0 10px -8px #656565}.swipebox-touch #swipebox-overlay.leftSpringTouch #swipebox-container:before,.swipebox-touch #swipebox-overlay.rightSpringTouch #swipebox-container:after{opacity:1}@-webkit-keyframes rightSpring{0%,100%{left:0}50%{left:-30px}}@keyframes rightSpring{0%,100%{left:0}50%{left:-30px}}@-webkit-keyframes leftSpring{0%,100%{left:0}50%{left:30px}}@keyframes leftSpring{0%,100%{left:0}50%{left:30px}}@media screen and (min-width:800px){#swipebox-close{right:10px}#swipebox-zoomin,#swipebox-zoomout{right:70px}#swipebox-arrows{/*left:10px*/}}#swipebox-slider .slide .video-js-container .swipebox-video{width:auto;height:auto;padding-bottom:0}#swipebox-slider .swipebox-video .video-js{width:100%;height:auto;display:block}#swipebox-slider .swipebox-video .video-js .vjs-big-play-button{left:50%;top:50%;margin:-1em 0 0 -1em;height:2em;width:2em;line-height:2em;border:none;background:#003E7C;border-radius:1em;color:#fff}#swipebox-slider .swipebox-video .video-js .vjs-big-play-button:hover{background:#E8EAED;color:#003F7D}#swipebox-slider .swipebox-video .vjs-has-started .vjs-control-bar{background-color:#69AF22;background-color:rgba(105,175,34,.9)}#swipebox-slider .swipebox-video .video-js .vjs-slider{background:#fff;background:rgba(255,255,255,.5)}#swipebox-slider .swipebox-video .video-js .vjs-load-progress{background:#bfcfde}#swipebox-slider .swipebox-video .video-js .vjs-play-progress{background:#003E7C}


/* jQuery Slider by Michael Lehmann */
.vcSlider_wrap {
	position: relative;
}
.vcSlider_stageOuter {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.vcSlider_stage {
	z-index: 0;
	position: relative;
}
.vcSlider_prev,
.vcSlider_next {
	z-index: 1;
}
.vcSlider_hasPages .vcSlider_prev,
.vcSlider_hasPages .vcSlider_next {
	margin-top: -2em;
}

.vcSlider_prev.disabled,
.vcSlider_next.disabled {
	z-index: 1;
	opacity: .25;
	cursor: auto;
}

.vcSlider_pager {
	text-align: center;
}
.vcSlider_pager .vcSlider_pageNum {
	display: inline-block;
	background: none;
	text-align: center;
}
.vcSlider_pager .vcSlider_pageNum + .vcSlider_pageNum {
	margin-left: 10px;
}

/* jQuery Carousel version 0.1.7 by Michael Lehmann */
.vc_carousel {
	position:relative;
	visibility:visible !important;
}
.vc_carousel_container {
	position:relative;
	z-index: 0;
}
.vc_carousel_control {
	position:absolute;
	bottom: 0;
	left:0;
	right: 0;
	z-index: 2;
	margin: 0;
	padding: 0 20px;
	text-align: center;
}
.vc_carousel_item {
	display: block;
    left: 0;
    position: absolute;
    top: 0;
	width:100%;
}
.vc_carousel_item_dragable {
	cursor: w-resize;
}
.vc_carousel_button {
	margin: 0;
	padding: 0;
	border: none;
	cursor: pointer;
	display: block;
	z-index: 2;
	vertical-align: bottom;
	position: relative;
	background: none;
}
.vc_carousel_pages {
	padding: 0;
	display: none;
	margin: 0;
}
.imagesWrap .vc_carousel_pages {
	bottom: 5px;
	right: auto;
	left: 0;
}
.vcSlider_pager .vcSlider_pageNum,
.vc_carousel_pages .vc_carousel_button {
	display: inline-block;
	width: 2em;
	height: 2em;
	position: relative;
	text-indent: -999em;
	text-align: left;
	overflow: hidden;
}
.vc_carousel_pages .vc_carousel_button + .vc_carousel_button {
	margin-left: 10px;
}

.vcSlider_pager .vcSlider_pageNum:before,
.vc_carousel_pages .vc_carousel_button:before {
	display:none;
}
.vcSlider_pager .vcSlider_pageNum:after,
.vc_carousel_pages .vc_carousel_button:after {
	content: '';
	background: none;
	border-radius: 50%;
	border: 3px solid #ffffff;
	position: absolute;
	left: .5em;
	bottom: .5em;
	right: .5em;
	top: .5em;
	opacity: .5;
	-webkit-transition: all .2s;
	transition: all .2s;
}
.vcSlider_pager .vcSlider_pageNum:after,
.vc_carousel_pages .vc_carousel_button:hover:after {
	opacity: 1;
}
.vcSlider_pager .vcSlider_pageActive:after,
.vc_carousel_pages .vc_carousel_button.aktiv:after {
	background: #fff;
	opacity: 1;
}

.vcSlider_prev,
.vcSlider_next,
.vc_zoom_wrap .vc_zoom_zoomIn,
.vc_zoom_wrap .vc_zoom_zoomOut {
	height: 2em;
	line-height: 1;
	display: inline-block;
	color: #385020;
	width: 2em;
	text-align: center;
	background: #fff;
	border-radius: 1em;
	position: absolute;
	top: 50%;
	margin-top: -1em;
	-webkit-transition: all .2s;
	transition: all .2s;
}
.vcSlider_next {
	right: 15px;
}
.vcSlider_prev {
	left: 15px;
}
.vc_carousel_button {
	display:none;
	position:absolute;
	height:60px;
	width:60px;
	top:50%;
	margin-top:-30px;
}
.vc_carousel_pages,
.vc_carousel_button .vc_carousel_button {
	display:block;
}
@media only screen and (min-width: 720px) {
	.vc_carousel_button {
		display:block;
	}
	.vc_carousel_pages {
		display:inline-block;
	}
	.vc_carousel_pages .vc_carousel_button {
		display:none;
	}
}
.vc_carousel_next {
	right:0;
}
.vc_carousel_prev {
	left:0;
}
.vc_carousel_button  > * {
	position:relative;
}
.vc_carousel_next > span {
	margin-left:30px;
	transition:margin-left 0.2s;
}
.vc_carousel_prev > span {
	margin-right:30px;
	transition:margin-right 0.2s;
}
.vc_carousel_next:hover > span {
	margin-left:40px;
}
.vc_carousel_prev:hover > span {
	margin-right:40px;
}

.vc_carousel_button:before {
	content:'';
	display:block;
	position:absolute;
	background:var(--color_body_bg);
	width:60px;
	height:60px;
	top:-14px;
	transform:rotate(45deg);
}
.vc_carousel_next:before {
	transform-origin:100% 0;
	transform:rotate(-45deg);
}
.vc_carousel_prev:before {
	transform-origin:0 0;
}
.vcSlider_next:hover,
.vcSlider_prev:hover  {
	color: #37454b;
}
.vcSlider_pager .vcSlider_pageNum:after {
	border-color: #37454b;
}
.vcSlider_pager .vcSlider_pageActive:after {
	background: #37454b;
}
.vc_zoom_wrap .vc_zoom_zoomIn.disabled,
.vc_zoom_wrap .vc_zoom_zoomOut.disabled {
	opacity: .25;

}

a.vc_carousel_title:hover {
	text-decoration: none;
}
.vc_carousel_title .wrap {
	-webkit-transition: opacity 1s ease-in-out;
	transition: opacity 1s ease-in-out;
	opacity: 1;
}

.vc_carousel_title.titleIn .wrap {
	-webkit-transition: none !important;
	transition: none !important;
}
.next .vc_carousel_title.titleIn .wrap {
	opacity: 0;
}
.prev .vc_carousel_title.titleIn .wrap {
	opacity: 0;
}
.next .vc_carousel_title.titleOut .wrap {
	opacity: 0;
}
.prev .vc_carousel_title.titleOut .wrap {
	opacity: 0;
}

@media only screen and (min-width: 720px) {
	.vc_carousel_pages {
		display: block;
	}
}

@media only screen and (min-width: 1080px) {
	.vc_carousel_pages {
		display: block;
	}
	.vcSlider_next,
	.vcSlider_pager .vcSlider_pageNum:after {
		border-color: #cdd0d2;
	}
	.vcSlider_pager .vcSlider_pageActive:after {
		background: #cdd0d2;
	}
	.vcSlider_next {
		right: -30px;
	}
	.vcSlider_prev {
		left: -30px;
	}
}

.vc_drag.drag-x {
	cursor: w-resize;
}
.vc_drag.drag-y {
	cursor: n-resize;
}
.vc_drag.drag-x.drag-y {
	cursor: move;
}

.vc_zoom_wrap .vc_zoom_zoomIn {
	right: 0;
	bottom: 3em;
	top: auto;
}
.vc_zoom_wrap .vc_zoom_zoomOut {
	right: 0;
	bottom: 0;
	top: auto;
}


/* MODAL */
.vcOverlay {
	z-index: 199;
	top: -100%;
	height: 100%;
	width: auto;
	overflow: auto;
	position: fixed;
	left: 0;
	right: 0;
	z-index: 100;
	background: no-repeat 50% 50%;
	background-color: rgba(255,255,255,.7);
}
.vcOverlay.loading {
	background-image: url('../img/preloader_301_dark.gif');
}

.vcOverlayModal {
    top: 0;
	bottom: 100%;
    position: fixed;
	left: 0;
	width: 100%;
    z-index: 200;
	-webkit-transition: top .3s cubic-bezier(0,.5,.5,1), opacity .5s ease, bottom 0s .5s;
	transition: top .3s cubic-bezier(0,.5,.5,1), opacity .5s ease, bottom 0s .5s;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;

	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.vcOverlay.show {
	top: 0%;
}
.vcOverlayModal.show {
	top: 0;
	bottom: 0;
	opacity: 1;
	overflow: auto;
	visibility: visible;
	pointer-events: auto;
	-webkit-transition: top .3s cubic-bezier(0,.5,.5,1), opacity .5s ease, bottom 0s;
	transition: top .3s cubic-bezier(0,.5,.5,1), opacity .5s ease, bottom 0s;
}
.vcOverlayModal .vcOverlayModalMsgWrap {
	max-height: 100%;
	overflow: auto;
	width: 100%;
}

.vcOverlayModal .vcOverlayModalMsg {
	display: block;
	background: #FFF;
	box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
	margin: 15px 65px 15px 15px;
	padding: 15px;
	text-align: left;
	min-height: 50px;
	position: relative;
}

.vcOverlayModal .vcOverlayModalMsg .article {
	margin: 0;
	width: 100%;
}
.vcOverlayModal .vcOverlayModalMsg .gridWrap {
	margin-left: -15px;
	margin-right: -15px;
}
.vcOverlayModal .vcOverlayModalMsg > .cancelBtn {
	border: none;
	padding: 23px 13px;
	position: absolute;
	top: 0;
	right: -50px;
	z-index: 10;
	box-shadow: none;
	border-radius: 0;
	margin: 0;
	background: #37454b;
}
.vcOverlayModal .vcOverlayModalMsg > .cancelBtn .line {
	text-align: left;
	text-indent: -999em;
}
.vcOverlayModal .vcOverlayModalMsg > .cancelBtn .line,
.vcOverlayModal .vcOverlayModalMsg > .cancelBtn .line:before {
	height: 4px;
	width: 24px;
	background: #FFF;
	display: block;
	position: relative;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.vcOverlayModal .vcOverlayModalMsg > .cancelBtn .line:before,
.vcOverlayModal .vcOverlayModalMsg > .cancelBtn .line:after {
	position: absolute;
	content: '';
}
.vcOverlayModal .vcOverlayModalMsg > .cancelBtn .line:before {
	top: -10px;
}
.vcOverlayModal .vcOverlayModalMsg > .cancelBtn .line {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.vcOverlayModal .vcOverlayModalMsg > .cancelBtn .line:before {
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
	margin-top: 10px;
}

@media only screen and (min-width: 960px) {
	.vcOverlayModal .vcOverlayModalMsg {
		margin: 5% auto;
		width: 70%;
	}
	.vcOverlayModal.small .vcOverlayModalMsg {
		width: 45%;
	}

}


/* jQuery UI Resets */
.ui-widget input,
.ui-widget select,
.ui-widget textarea {
	color: #37454b;
}
body .ui-datepicker {
	z-index: 1001 !important;
	border: none !important;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}


/* ==========================================================================
   CONTENT PARTS
   ========================================================================== */

/* Modul: TEASER / IMG GALLERY */
.teaserWrap {
	position: relative;
}
.teaser {
	list-style: none;
	margin: 0;
	height: 0;
	position: relative;
	padding: 0 0 62.5%;
	overflow: hidden;
	background: #f5f6f6;
	width: 100%;
}
.teaser li {
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
}
.teaser li:first-child {
	z-index: 1;
}
.teaser li .slogan {
	position: absolute;
	left: 0;
	top: 0;
	width: 20%;
}
.teaser li .slogan .bg {
	width: 100%;
	height: 0;
	background: url(../img/gastfreundschaft_white.png) no-repeat 50% 50%;
	background-size: contain;
	padding-bottom: 94.32%;
}
.teaser li:before {
	display: none;
}
.teaser .teaserImg {
	background-position: 50% 50%;
	background-size: cover;
	background-repeat: no-repeat;
	height: 100%;
	width: 100%;
	display: block;
	overflow: hidden;
}
.teaser li.backgroundCover .teaserImg {
	background-size: cover;
}
.teaser li.backgroundContain .teaserImg {
	background-size: contain;
}
.teaser li .teaserItemTitle {
    bottom: 0;
    display: table;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
	z-index: 2;
}
.teaser li .teaserItemTitleInner {
	display: table-cell;
}
.teaser li.txtAtRight .teaserItemTitleInner {
	text-align: right;
	vertical-align: middle;
}
.teaser li.txtAtLeft .teaserItemTitleInner {
	text-align: left;
	vertical-align: middle;
}
.teaser li.txtAtTop .teaserItemTitleInner {
	text-align: center;
	vertical-align: top;
}
.teaser li.txtAtTopLeft .teaserItemTitleInner {
	text-align: left;
	vertical-align: top;
}
.teaser li.txtAtTopRight .teaserItemTitleInner {
	text-align: right;
	vertical-align: top;
}
.teaser li.txtAtBottom .teaserItemTitleInner {
	text-align: center;
	vertical-align: bottom;
}
.teaser li.txtAtBottomLeft .teaserItemTitleInner {
	text-align: left;
	vertical-align: bottom;
}
.teaser li.txtAtBottomRight .teaserItemTitleInner {
	text-align: right;
	vertical-align: bottom;
}
.teaser li.txtAtCenter .teaserItemTitleInner {
	text-align: center;
	vertical-align: middle;
}
.teaser li .teaserItemTitleInner .wrap {
	position: relative;
	text-align:left;
	display:inline-block;
	position:relative;
	text-rendering: optimizeLegibility;
	text-shadow: 0 1px 10px rgba(6,8,8,.20);
	padding: 20px;
	margin:20px;
}
.teaser li.txtAtBottom .wrap,
.teaser li.txtAtBottomLeft .wrap,
.teaser li.txtAtBottomRight .wrap {
	margin-bottom:40px;
}
.teaser li .teaserItemTitleInner .wrap .wrapInner {
	position:relative;
}
.teaser li .teaserItemTitleInner  .wrap:before {
	content:'';
	position:absolute;
	left:0;
	top:0;
	bottom:0;
	right:0;
	display:block;
}
.teaser li .teaserItemTitleInner .wrapInner > :first-child {
	margin-top: 0;
}
.teaser li .teaserItemTitleInner .wrapInner > :last-child {
	margin-bottom: 0;
}
.teaser li.txtAtBottom .teaserItemTitle .wrap,
.teaser li.txtAtBottomLeft .teaserItemTitle .wrap,
.teaser li.txtAtBottomRight .teaserItemTitle .wrap {
	padding: 20px;
}

@media only screen and (min-width: 720px) {
	.teaser li.txtAtBottom .teaserItemTitle .wrap,
	.teaser li.txtAtBottomLeft .teaserItemTitle .wrap,
	.teaser li.txtAtBottomRight .teaserItemTitle .wrap {
		padding-bottom: 30px;
	}
	.teaser li .wrap {
		width: 33.33%;
        max-width: 420px;
	}
	.teaser li.txtAtLeft .teaserItemTitle .wrap,
	.teaser li.txtAtBottomLeft .teaserItemTitle .wrap {
		/*margin-left:8.33%;
		margin-left:calc(8.33% + 40px);*/
        margin-left:5%;
	}
	.teaser li.txtAtRight .teaserItemTitle .wrap,
	.teaser li.txtAtBottomRight .teaserItemTitle .wrap {
		/*margin-right:8.33%;
		margin-right:calc(8.33% + 40px);*/
        margin-right: 5%;
	}
}

@media only screen and (min-width: 960px) and (orientation: landscape) {
	.teaser {
		padding: 0%;
		min-height: 450px;
		height: 50vh;
	}
}

/* Bildergalerie */
.filePreview,
.img,
.thumb {
	position: relative;
	overflow: hidden;
	display:block;
}
.thumb img,
.img img,
.imgWrap img {
	width:100%;
	height:auto;
	display: block;
}
.imgWrap {
	position: relative;
}
.imgWrap .iconWrap .icon,
.imgWrap .iconWrap {
	-webkit-transition: all .2s;
	transition: all .2s;
}
.imgWrap .iconWrap {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: '';
	display: block;
	background: rgba(0,0,0,.20);
}
.imgWrap .iconWrap .icon {
	position: absolute;
	left: 50%;
	top: 50%;
	font-size: 4.5em;
	line-height: 1;
	height: 1em;
	color: #fff;
	margin: -.5em 0 0 -.5em;
	display: block;
	z-index: 1;
}
.imgWrap:hover .iconWrap {
	background: rgba(0,0,0,0);
}
.imgWrap:hover .iconWrap .icon {
	color: #37454b;
}
.gallery {
	margin: -7px -7px -8px -8px;
}
.gallery .imgContainer {
	float: left;
	padding: 7px 7px 8px 8px !important;
	margin: 0 !important;
	position: relative;
}
.gallery .dl_item {
	text-decoration: none;
	text-align: center;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: hidden;
	display: block;
}
.img {
	display:block;
	position: relative;
	z-index: 1;
}

.panoWrap .imagesInnerWrap,
a.img {
	-webkit-transition: border-bottom .2s;
	transition: border-bottom .2s;
}
.img .zoom {
	position:absolute;
	bottom:0;
	right:0;
	background:#404040;
	color:#fff;
	width:30px;
	height:30px;
	line-height:30px;
	text-align:center;
	-webkit-transition: background .2s;
	transition: background .2s;
}
.caption {
	font-size: .8em;
	line-height: 1.25;
	display: block;
	color: #737d81;
}
.img + .caption {
	padding-top: 5px;
}
.imagesWrap .imagesInnerWrap {
	width: 100%;
}
.panoWrap {
	margin-top: 1em;
	margin-bottom: 1em;
}
.panoWrap .imagesInnerWrap {
	height: 0;
	padding-bottom: 62.5%;
	position: relative;
}
.panoWrap .imagesInnerWrap iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

.imgLeft {
	margin-bottom: 15px;
	float: left;
	clear: left;
}
.imgRight {
	margin-bottom: 15px;
	float: right;
	clear: right;
}
.imgNone .imagesInnerWrap {
	margin: 0 auto;
}
.imagesWrap.effect .imgWrap .img {
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	border: 5px solid #fff;
}
.imagesWrap.effect .imgWrap .img .zoom {
	bottom: 0;
}
.imgLeft .imgWrap + .imgWrap,
.imgRight .imgWrap + .imgWrap {
	margin-top: 15px;
}
.imgNone {
	margin: 1em auto;
	clear: both;
}
.imgNone .imgWrap {
	position: relative;
	margin: 0 auto;
}
.vc_carousel_container .imgWrap {
	position: absolute;
}
.imgNone .imgWrap + .imgWrap {
	margin-top: 30px;
}
.vc_carousel_container .imgWrap {
	position: absolute;
}
.vc_carousel_container .imgWrap + .imgWrap {
	margin-top: 0;
}

.imgNone .caption {
	padding: 5px 0;
}

.imgWidth-150,
.imgWidth-125 {
	width: auto;
}
.imgWidth-100,
.imgWidth-75,
.imgWidth-67,
.imgWidth-50,
.imgWidth-42,
.imgWidth-33,
.imgWidth-25,
.imgWidth-20 {
	width: 100%;
}

.imgWidth-17,
.imgWidth-17 .articleImg,
.imgWidth-15,
.imgWidth-15 .articleImg,
.imgWidth-13,
.imgWidth-13 .articleImg {
	width: 33.3%;
}
.imgWidth-10,
.imgWidth-10 .articleImg,
.imgWidth-5,
.imgWidth-5 .articleImg {
	width: 25%;
}

.article .pushOut-150,
.spacer .pushOut-150,
.article .pushOut-125,
.spacer .pushOut-125,
.imagesWrap.imgWidth-150,
.imagesWrap.imgWidth-125 {
	margin-left: -15px;
	margin-right: -15px;
}
.article .pushOut-150.pushIn,
.spacer .pushOut-150.pushIn,
.article .pushOut-125.pushIn,
.spacer .pushOut-125.pushIn,
.imagesWrap.imgWidth-150 .imgWrap .caption,
.imagesWrap.imgWidth-125 .imgWrap .caption {
	padding-left: 15px;
	padding-right: 15px;
}

.imgRight.imgWidth-17,
.imgRight.imgWidth-15,
.imgRight.imgWidth-13,
.imgRight.imgWidth-10,
.imgRight.imgWidth-5 {
	margin-left: 15px;
	padding-left: 15px;
}
.imgLeft.imgWidth-17,
.imgLeft.imgWidth-15,
.imgLeft.imgWidth-13,
.imgLeft.imgWidth-10,
.imgLeft.imgWidth-5 {
	margin-right: 15px;
	padding-right: 15px;
}

.imgWidth-50 .articleImg .img {
	width: 66.7%;
}
.imgWidth-33 .articleImg .img,
.imgWidth-25 .articleImg .img {
	width: 50%;
}
.imgWidth-20 .articleImg .img {
	width: 50%;
}

.imgWidth-50 .articleImg + .articleWrap,
.imgWidth-33 .articleImg + .articleWrap,
.imgWidth-25 .articleImg + .articleWrap,
.imgWidth-20 .articleImg + .articleWrap {
	text-align: center;
}

.imgWidth-15 .articleImgLeft,
.imgWidth-10 .articleImgLeft,
.imgWidth-5 .articleImgLeft {
	float: left;
}

.imgWidth-15 .articleImgRight,
.imgWidth-13 .articleImgRight,
.imgWidth-10 .articleImgRight,
.imgWidth-5 .articleImgRight {
	float: right;
	order: 2;
}

.imgWidth-15 .articleImgLeft + .articleWrap,
.imgWidth-13 .articleImgLeft + .articleWrap,
.imgWidth-10 .articleImgLeft + .articleWrap,
.imgWidth-5 .articleImgLeft + .articleWrap {
	margin-left: 25%;
	padding-left: 30px;
}
.imgWidth-15 .articleImgRight + .articleWrap,
.imgWidth-13 .articleImgRight + .articleWrap,
.imgWidth-10 .articleImgRight + .articleWrap,
.imgWidth-5 .articleImgRight + .articleWrap {
	margin-right: 25%;
	padding-right: 30px;
	text-align: right;
	order: 1;
}
.articleImgNone .img,
.articleImgRight .img,
.articleImgLeft .img {
	display: block;
	margin: 0 auto;
}


@media only screen and (min-width: 480px) {
	.imgWidth-33 .articleImg .img,
	.imgWidth-25 .articleImg .img,
	.imgWidth-20 .articleImg .img {
		width: 100%;
	}
	.imgWidth-33 .articleImgLeft + .articleWrap,
	.imgWidth-25 .articleImgLeft + .articleWrap,
	.imgWidth-20 .articleImgLeft + .articleWrap {
		text-align: left;
	}
	.imgWidth-33 .articleImgRight + .articleWrap,
	.imgWidth-25 .articleImgRight + .articleWrap,
	.imgWidth-20 .articleImgRight + .articleWrap {
		text-align: right;
	}

	.imgWidth-42,
	.imgWidth-33,
	.imgWidth-33 .articleImg {
		width: 50%;
	}
	.imgWidth-25,
	.imgWidth-25 .articleImg,
	.imgWidth-20,
	.imgWidth-20 .articleImg,
	.imgWidth-17,
	.imgWidth-17 .articleImg,
	.imgWidth-15,
	.imgWidth-15 .articleImg {
		width: 33.3%;
	}
	.imgWidth-13,
	.imgWidth-13 .articleImg {
		width: 25%;
	}
	.imgWidth-10,
	.imgWidth-10 .articleImg,
	.imgWidth-5,
	.imgWidth-5 .articleImg {
		width: 20%;
	}

	.imgRight.imgWidth-42,
	.imgRight.imgWidth-33,
	.imgRight.imgWidth-25,
	.imgRight.imgWidth-20,
	.imgRight.imgWidth-17,
	.imgRight.imgWidth-15,
	.imgRight.imgWidth-13,
	.imgRight.imgWidth-10,
	.imgRight.imgWidth-5 {
		margin-left: 15px;
		padding-left: 15px;
	}
	.imgLeft.imgWidth-42,
	.imgLeft.imgWidth-33,
	.imgLeft.imgWidth-25,
	.imgLeft.imgWidth-20,
	.imgLeft.imgWidth-17,
	.imgLeft.imgWidth-15,
	.imgLeft.imgWidth-13,
	.imgLeft.imgWidth-10,
	.imgLeft.imgWidth-5 {
		margin-right: 15px;
		padding-right: 15px;
	}

	.imgWidth-33 .articleImgLeft,
	.imgWidth-25 .articleImgLeft,
	.imgWidth-20 .articleImgLeft {
		float:left;
	}
	.imgWidth-33 .articleImgRight,
	.imgWidth-25 .articleImgRight,
	.imgWidth-20 .articleImgRight {
		float:right;
		order: 2;
	}
	.imgWidth-33 .articleImgLeft + .articleWrap,
	.imgWidth-25 .articleImgLeft + .articleWrap {
		margin-left: 50%;
		padding-left: 30px;
	}
	.imgWidth-33 .articleImgRight + .articleWrap,
	.imgWidth-25 .articleImgRight + .articleWrap {
		margin-right: 50%;
		padding-right: 30px;
		text-align: right;
		order: 1;
	}
	.imgWidth-20 .articleImgLeft + .articleWrap,
	.imgWidth-17 .articleImgLeft + .articleWrap,
	.imgWidth-15 .articleImgLeft + .articleWrap {
		margin-left: 33.3%;
	}
	.imgWidth-13 .articleImgLeft + .articleWrap {
		margin-left: 25%;
	}
	.imgWidth-10 .articleImgLeft + .articleWrap,
	.imgWidth-5 .articleImgLeft + .articleWrap {
		margin-left: 20%;
	}

	.imgWidth-20 .articleImgRight + .articleWrap,
	.imgWidth-17 .articleImgRight + .articleWrap,
	.imgWidth-15 .articleImgRight + .articleWrap {
		margin-right: 33.3%;
	}
	.imgWidth-13 .articleImgRight + .articleWrap {
		margin-right: 25%;
	}
	.imgWidth-10 .articleImgRight + .articleWrap,
	.imgWidth-5 .articleImgRight + .articleWrap {
		margin-right: 20%;
	}
}

@media only screen and (min-width: 640px) {
	.imgWidth-50 .articleImgLeft .img,
	.imgWidth-50 .articleImgRight .img {
		width: 100%;
	}
	.imgWidth-50 .articleImgLeft + .articleWrap {
		text-align: left;
	}
	.imgWidth-50 .articleImgRight + .articleWrap {
		text-align: right;
	}

	.imgWidth-42,
	.imgWidth-50,
	.imgWidth-50 .articleImg {
		width: 50%;
	}
	.imgWidth-25,
	.imgWidth-25 .articleImg {
		width: 33.3%;
	}
	.imgWidth-20,
	.imgWidth-20 .articleImg {
		width: 25%;
	}
	.imgWidth-13,
	.imgWidth-13 .articleImg {
		width: 16.66%;
	}

	.imgRight.imgWidth-50 {
		margin-left: 15px;
		padding-left: 15px;
	}
	.imgLeft.imgWidth-50 {
		margin-right: 15px;
		padding-right: 15px;
	}

	.imgWidth-50 .articleImgLeft {
		float:left;
	}
	.imgWidth-50 .articleImgRight {
		float:right;
		order: 2;
	}
	.imgWidth-50 .articleImgLeft + .articleWrap {
		padding-left: 30px;
		margin-left: 50%;
	}
	.imgWidth-50 .articleImgRight + .articleWrap {
		padding-right: 30px;
		margin-right: 50%;
		text-align: right;
		order: 1;
	}
	.imgWidth-25 .articleImgLeft + .articleWrap {
		margin-left: 33.3%;
	}
	.imgWidth-25 .articleImgRight + .articleWrap {
		margin-right: 33.3%;
	}
	.imgWidth-20 .articleImgLeft + .articleWrap {
		margin-left: 33.3%;
	}
	.imgWidth-20 .articleImgRight + .articleWrap {
		margin-right: 33.3%;
	}
	.imgWidth-13 .articleImgLeft + .articleWrap {
		margin-left: 16.66%;
	}
	.imgWidth-13 .articleImgRight + .articleWrap {
		margin-right: 16.66%;
	}
}

@media only screen and (min-width: 720px) {
	.imgWidth-42 {
		width: 42%;
	}
	.imgWidth-33,
	.imgWidth-33 .articleImg,
	.imgWidth-25,
	.imgWidth-25 .articleImg {
		width: 33.3%;
	}
	.imgWidth-20,
	.imgWidth-20 .articleImg,
	.imgWidth-17,
	.imgWidth-17 .articleImg,
	.imgWidth-15,
	.imgWidth-15 .articleImg,
	.imgWidth-10,
	.imgWidth-10 .articleImg,
	.imgWidth-5,
	.imgWidth-5 .articleImg {
		width: 20%;
	}

	/*.article .pushOut-150,
	.spacer .pushOut-150,
	.article .pushOut-125,
	.spacer .pushOut-125,
	.imagesWrap.imgWidth-150,
	.imagesWrap.imgWidth-125 {
		margin-left: -10%;
		margin-right: -10%;
	}*/
	.articleFullWidth .imagesWrap.imgWidth-150,
	.articleFullWidth .imagesWrap.imgWidth-125 {
		margin-left: -15px;
		margin-right: -15px;
	}
	/*
	.spacer .pushOut-150.pushIn,
	.article .pushOut-150.pushIn,
	.spacer .pushOut-125.pushIn,
	.article .pushOut-125.pushIn {
		padding-left: 10%;
		padding-right: 10%;
	}*/

	.imagesWrap.imgWidth-150,
	.imagesWrap.imgWidth-125 {
		padding-left: 15px;
		padding-right: 15px;
	}
	.imagesWrap.imgWidth-150 .imgWrap .caption,
	.imagesWrap.imgWidth-125 .imgWrap .caption {
		padding-left: 0;
		padding-right: 0;
	}

	.imgWidth-50 .articleImgLeft,
	.imgWidth-42 .articleImgLeft,
	.imgWidth-33 .articleImgLeft,
	.imgWidth-25 .articleImgLeft,
	.imgWidth-20 .articleImgLeft,
	.imgWidth-17 .articleImgLeft,
	.imgWidth-15 .articleImgLeft,
	.imgWidth-10 .articleImgLeft,
	.imgWidth-5 .articleImgLeft {
		float: left;
	}

	.imgWidth-50 .articleImgRight,
	.imgWidth-33 .articleImgRight,
	.imgWidth-25 .articleImgRight,
	.imgWidth-20 .articleImgRight,
	.imgWidth-17 .articleImgRight,
	.imgWidth-15 .articleImgRight,
	.imgWidth-10 .articleImgRight,
	.imgWidth-5 .articleImgRight {
		float: right;
		order: 2;
	}

	.imgWidth-50 .articleImgLeft + .articleWrap {
		margin-left: 50%;
	}
	.imgWidth-33 .articleImgLeft + .articleWrap,
	.imgWidth-25 .articleImgLeft + .articleWrap {
		margin-left: 33.3%;
	}
	.imgWidth-20 .articleImgLeft + .articleWrap,
	.imgWidth-17 .articleImgLeft + .articleWrap,
	.imgWidth-15 .articleImgLeft + .articleWrap,
	.imgWidth-10 .articleImgLeft + .articleWrap,
	.imgWidth-5 .articleImgLeft + .articleWrap {
		padding-left: 30px;
		margin-left: 20%;
	}
	.imgWidth-50 .articleImgRight + .articleWrap {
		padding-right: 30px;
		margin-right: 50%;
		text-align: right;
		order: 1;
	}
	.imgWidth-33 .articleImgRight + .articleWrap,
	.imgWidth-25 .articleImgRight + .articleWrap {
		padding-right: 30px;
		margin-right: 33.3%;
	}
	.imgWidth-20 .articleImgRight + .articleWrap,
	.imgWidth-17 .articleImgRight + .articleWrap,
	.imgWidth-15 .articleImgRight + .articleWrap,
	.imgWidth-10 .articleImgRight + .articleWrap,
	.imgWidth-5 .articleImgRight + .articleWrap {
		padding-right: 30px;
		margin-right: 20%;
	}
}

@media only screen and (min-width: 960px) {
	.imgWidth-100 {
		width:100%;
	}
	.imgWidth-75,
	.imgWidth-75 .articleImg {
		width:75%;
	}
	.imgWidth-67,
	.imgWidth-67 .articleImg {
		width:66.7%;
	}
	.imgWidth-50,
	.imgWidth-50 .articleImg {
		width:50%;
	}
	.imgWidth-33,
	.imgWidth-33 .articleImg {
		width:33.3%;
	}
	.imgWidth-25,
	.imgWidth-25 .articleImg {
		width:25%;
	}
	.imgWidth-20,
	.imgWidth-20 .articleImg {
		width:20%;
	}
	.imgWidth-17,
	.imgWidth-17 .articleImg {
		width:16.6%;
	}
	.imgWidth-15,
	.imgWidth-15 .articleImg {
		width:15%;
	}
	.imgWidth-13,
	.imgWidth-13 .articleImg {
		width:12.5%;
	}
	.imgWidth-10,
	.imgWidth-10 .articleImg {
		width:10%;
	}
	.imgWidth-5,
	.imgWidth-5 .articleImg {
		width:5%;
	}
	.imagesWrap.imgWidth-150 {
		margin-left: -25%;
		margin-right: -25%;
	}
	.spacer .pushOut-150,
	.article .pushOut-150 {
		margin-left: -25%;
		margin-left: calc(-25% + 15px);
		margin-right: -25%;
		margin-right: calc(-25% + 15px);
	}
	.spacer .pushOut-150.pushIn,
	.article .pushOut-150.pushIn {
		padding-left: 25%;
		padding-left: calc(25% - 15px);
		padding-right: 25%;
		padding-right: calc(25% - 15px);
	}

	.imagesWrap.imgWidth-125 {
		margin-left: -12.5%;
		margin-right: -12.5%;
	}
	.spacer .pushOut-125,
	.article .pushOut-125 {
		margin-left: -12.5%;
		margin-left: calc(-12.5% + 15px);
		margin-right: -12.5%;
		margin-right: calc(-12.5% + 15px);
	}
	.spacer .pushOut-125.pushIn,
	.article .pushOut-125.pushIn {
		padding-left: 12.5%;
		padding-left: calc(12.5% - 15px);
		padding-right: 12.5%;
		padding-right: calc(12.5% - 15px);
	}

	.imgRight.imgWidth-75,
	.imgRight.imgWidth-67 {
		margin-left: 15px;
		padding-left: 15px;
	}
	.imgLeft.imgWidth-75,
	.imgLeft.imgWidth-67 {
		margin-right: 15px;
		padding-right: 15px;
	}

	.imgWidth-75 .articleImgLeft {
		float: left;
	}
	.imgWidth-75 .articleImgRight {
		float:right;
		order: 2;
	}
	.imgWidth-75 .articleImgLeft + .articleWrap {
		margin-left: 75%;
	}
	.imgWidth-75 .articleImgRight + .articleWrap {
		margin-right: 75%;
		text-align: right;
		order: 1;
	}
	.imgWidth-50 .articleImgLeft + .articleWrap {
		margin-left: 50%;
	}
	.imgWidth-50 .articleImgRight + .articleWrap {
		margin-right: 50%;
	}
	.imgWidth-33 .articleImgLeft + .articleWrap {
		margin-left: 33.3%;
	}
	.imgWidth-33 .articleImgRight + .articleWrap {
		margin-right: 33.3%;
	}
	.imgWidth-25 .articleImgLeft + .articleWrap {
		margin-left: 25%;
	}
	.imgWidth-25 .articleImgRight + .articleWrap {
		margin-right: 25%;
	}
	.imgWidth-20 .articleImgLeft + .articleWrap {
		margin-left: 20%;
	}
	.imgWidth-20 .articleImgRight + .articleWrap {
		margin-right: 20%;
	}
	.imgWidth-17 .articleImgLeft + .articleWrap {
		margin-left: 15%;
	}
	.imgWidth-17 .articleImgRight + .articleWrap {
		margin-right: 15%;
	}
	.imgWidth-15 .articleImgLeft + .articleWrap {
		margin-left: 15%;
	}
	.imgWidth-15 .articleImgRight + .articleWrap {
		margin-right: 15%;
	}
	.imgWidth-13 .articleImgLeft + .articleWrap {
		margin-left: 12.5%;
	}
	.imgWidth-13 .articleImgRight + .articleWrap {
		margin-right: 12.5%;
	}
	.imgWidth-10 .articleImgLeft + .articleWrap {
		margin-left: 10%;
	}
	.imgWidth-10 .articleImgRight + .articleWrap {
		margin-right: 10%;
	}
	.imgWidth-5 .articleImgLeft + .articleWrap {
		margin-left: 5%;
	}
	.imgWidth-5 .articleImgRight + .articleWrap {
		margin-right: 5%;
	}
}

/* Content: GOOGLE MAPS */
.mapWrap,
.hostRequest {
	margin: 1em 0;

}
.mapWrap {
	position: relative;
	overflow: hidden;
}
.mapWrap.hasLegend {
	padding-top: 40px;
}
.map_canvas {
	min-height: 200px;
	min-height: 66.667vh;
	background: #f2f2f2;
}
.isFullscreen .map_canvas {
	min-height: 0;
	height: 100%;
}
.map_canvas .control {
	position: absolute;
	right: 2px;
	left: auto;
	top: 38px;
}

.map_canvas .control .map_fs,
.map_canvas .control .map_gps {
	background: #fff;
	color: #37454b;
	padding: 6px;
	line-height: 18px;
	font-size: 18px;
	margin: 10px 5px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	border-radius: 2px;
}
.map_canvas .control .map_fs:hover,
.map_canvas .control .map_fs.active,
.map_canvas .control .map_gps:hover,
.map_canvas .control .map_gps.active {
	background: #37454b;
	color: #fff;
}

.map_canvas .control .map_fs .off,
.map_canvas .control .map_fs.active .on {
	display: none;
}
.map_canvas .control .map_fs.active .off {
	display: block;
}
.map_canvas button {
	box-shadow: none;
}
.map_canvas .gm-style,
.infoBox {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}
.infoBox {
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	background: #fff;
	padding: 15px;
	position: relative;
	font-size: .8em;
	line-height: 1.667;
	z-index: 100;
}
.infoBox .closeBtn {
	float: right;
	background: #000;
	background: rgba(0,0,0,.4);
	padding: 5px;
	border: none;
	border-radius: 0;
	position: relative;
	z-index: 1;
}
.infoBox .closeBtn:hover {
	background: #000;
	background: rgba(0,0,0,.7);
}
.infoBox:after,
.infoBox .nose {
	position: absolute;
	content: '';
	display: block;
	height: 0;
	width: 0;
	left: 50%;
	margin-left: -8px;
	bottom: -8px;
	border-style: solid;
	border-width: 8px 8px 0;
	border-color: #fff transparent transparent;
}
.infoBox.hasNose:after {
	display: none;
}
.infoBox .btn,
.map_canvas .gm-style-iw .btn {
	display: block;
	margin-top: 15px;
}
.infoBox .btnSet,
.map_canvas .gm-style-iw .btnSet {
	margin-top: 15px;
	clear: both;
}
.infoBox .btnSet .btn,
.map_canvas .gm-style-iw .btnSet .btn {
	margin-top: 0;
}
.infoBox .placeTitle,
.map_canvas .placeTitle {
	width: 100%;
	font-size: 1.25em;
	line-height: 1.2;
	font-weight: 500;
	display: block;
	margin-bottom: -10px;
}
.infoBox .placeTitle:last-child {
	margin-bottom: 0;
}
.infoBox .placeTeaser,
.map_canvas .placeTeaser {
	position: relative;
	height: 0;
	width: 100%;
	padding-bottom: 50%;
	background: #f5f6f6 no-repeat 50% 50%;
	background-size: cover;
}
.infoBox .placeTeaser .placeTitle,
.map_canvas .placeTeaser .placeTitle,
.map_placeList .placeAnchor .articleTeaser .placeTitle {
	position: absolute;
	bottom: 0;
	color: #fff;
	left: 0;
	padding: 5px 15px;
	margin: 0;
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 75%);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 75%);
	text-shadow: 0 0 20px rgba(0,0,0,0.19), 0 0 6px rgba(0,0,0,0.23);
	font-style: italic;
}
.infoBox .placeTeaser {
	width: auto;
	margin: -15px -15px 0;
}
.infoBox .placeTeaser:not(:last-child) {
	margin-bottom: 15px;
}
.infoBox .placeTeaser:last-child {
	margin-bottom: -15px;
}

.map_canvas .loadOverlay,
.map_canvas .loadOverlay .loadingBG,
.map_canvas .loadOverlay .loadingIcon,
.map_loadOverlay,
.map_loadOverlay .loadingBG,
.map_loadOverlay .loadingIcon {
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	top:0;
	z-index: 3;
	width:100%;
	height:100%;
}
.map_canvas .loadOverlay .loadingIcon,
.map_loadOverlay .loadingIcon {
	background:url('../img/preloader_301_dark.gif') no-repeat center center;
}
.map_canvas .loadOverlay .loadingBG,
.map_loadOverlay .loadingBG {
	background:#FFFFFF;
	opacity: .75;
}

.map_legend .trigger {
	color: #fff;
	text-align: left;
	position: absolute;
	top: 0;
	left: 0;
	font-size: 1em;
	line-height: 1;
	-webkit-transition: all .3s;
	transition: all .3s;
	background: #37454b;
	padding: 5px 10px 5px 40px;
	width: 100%;
	z-index: 2;
}
.map_legend .legendSwitch:not(.initChecked) ~ .trigger {
	animation: 2s ease-out 0s 1 slideInFromLeft;
}
.map_legend .trigger:hover {
	background: #f5f6f6;
	color: #37454b;
}
.map_legend .switch ~ .trigger .off,
.map_legend .switch:checked ~ .trigger .on {
	display: block;
}
.map_legend .switch ~ .trigger .on,
.map_legend .switch:checked ~ .trigger .off {
	display: none;
}

.map_legend .trigger .icon {
	position: absolute;
	left: 10px;
	top: 50%;
	margin-top: -10px;
	font-size: 20px;
	line-height: 20px;
}
.map_legend .trigger .label {
	width: 100%;
	height: 30px;
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.map_legend .trigger .label > * {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: hidden;
}
.map_legend .trigger strong {
	text-transform: uppercase;
	display: block;
}
.map_legend .trigger br {
	display: none;
}
.map_legend .trigger small {
	font-weight: 300;
	display: block;
}

.map_legend .legendWrap {
	position: absolute;
	top: 40px;
	bottom: 0;
	left: 0;
	z-index: 1;
}
.map_legend .legendItemsWrap {
	position: absolute;
	background: var(--color_bg);
	padding: 0;
	overflow-x: hidden;
	overflow-y: auto;
	width: 290px;
	-webkit-transition: all .3s;
	transition: all .3s;
	left: -290px;
	height: 100%;
	top: 0;
}
.map_legend .header {
	margin: 0;
	display: block;
	font-weight: 500 !important;
	font-size: 1.333em !important;
	line-height: 1 !important;
	padding: 15px;
}
.map_legend .header.navBtnWrap {
	padding-left: 10px !important;
}
.map_legend .header strong {
	font-weight: inherit;
}
.map_legend .header:first-child {
	padding-top: 0;
}
.map_legend hr {
	background: #cdd0d2;
	border-color: #cdd0d2;
	margin: 14px 15px;
}
.map_legend .legendItemsWrap .wrap {
	padding: 15px 0;
}
.map_legend .legendItemsWrap ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.map_legend .legendItemsWrap li {
	width: 100%;
	padding: 0;
	margin: 0;
	float: none;
}
.map_legend .legendItemsWrap li:before {
	display: none;
}
.map_legend .legendItemsWrap a {
	display: block;
	padding: 40px 0 0;
	text-align: center;
	position: relative;
	text-decoration: none;
}
.map_legend .switch:checked ~ .legendWrap .legendItemsWrap {
	left: 0;
	box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.map_legend .legendItemsWrap .navBtnWrap {
	padding: 5px 15px 5px 50px;
	border-left: 5px solid transparent;
	text-align: left;
	position: relative;
	min-height: 3em;
	min-height: calc(2em + 10px);
	line-height: 1.333;
	font-size: 1em;
	display: block;
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
	cursor: pointer;
}
.map_legend .legendItemsWrap .all .label {
	font-weight: bold;
}
.map_legend .legendItemsWrap .navBtnWrap .label {
	font-size: inherit;
	line-height: inherit;
	text-transform: none;
	margin: 0;
}
.map_legend .legendItemsWrap .navBtnWrap .img {
	width: 30px;
	height: 30px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	left: 10px;
	top: 5px;
	margin-left: 0;
	margin-top: 0;
	position: absolute;
	background: #cdd0d2 no-repeat 50% 50%;
	background-size: cover;
}

.map_legend .legendItemsWrap .checkboxTrigger + .navBtnWrap {
	padding-right: 45px;
}

.map_legend .iconMenuTriggerDwn {
	display:block;
	position:absolute;
	right: 5px;
	width: 40px;
	height: 40px;
	text-align: center;
	top: 50%;
	margin-top: -20px;
	padding: 10px 0;
	overflow: hidden;
}
.map_legend .iconMenuTriggerDwn:after {
	border-color: #37454b transparent transparent;
	border-style: solid;
	border-width: 8px 5px 0;
	content: "";
	display: block;
	height: 0;
	margin-left: -5px;
	margin-top: -5px;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transition: transform .2s, margin .2s;
	transition: transform .2s, margin .2s;
	width: 0;
}
.map_legend .legendItemsWrap .checkboxTrigger:checked + .navBtnWrap > .iconMenuTriggerDwn:after {
	-webkit-transform:rotate(180deg);
	-ms-transform:rotate(180deg);
	transform:rotate(180deg);
}

.map_legend .legendItemsWrap .checkboxTrigger:checked + .navBtnWrap,
.map_legend .legendItemsWrap .checkboxTrigger:checked ~ ul > li > .navBtnWrap,
.map_legend .legendItemsWrap .navBtnWrap:hover {
	background: rgba(var(--color_box_rgb),0.1);
	border-left-color: rgba(var(--color_box_rgb),0.3);
}
.map_legend .legendItemsWrap .navBtnWrap.aktiv .symbol,
.map_legend .legendItemsWrap .navBtnWrap:hover .symbol {
	color: #37454b;
}
.map_legend .legendItemsWrap .navBtnWrap.aktiv .checkbox,
.map_legend .legendItemsWrap .navBtnWrap:hover .checkbox {
	border-color: #37454b;
	background: #fff;
}
.map_legend .legendItemsWrap .checkboxTrigger:checked ~ ul {
	border-bottom: 1px solid #ebeded;
}
.map_legend .legendItemsWrap .checkboxTrigger:checked ~ ul > li > .navBtnWrap:hover {
	background: #f5f6f6;
}
.map_legend .legendItemsWrap .navBtnWrap:hover {
	background: rgba(var(--color_box_rgb),0.1);
	border-left-color: #e1e3e4 !important;
}
.map_legend .legendItemsWrap .navBtnWrap.aktiv,
.map_legend .legendItemsWrap .lvl1 > .navBtnWrap.aktiv {
	border-left-color: #cdd0d2 !important;
    background: rgba(var(--color_box_rgb),0.1) !important;
}
.map_legend .legendItemsWrap .lvl1 > .navBtnWrap.aktiv {
	background: rgba(var(--color_box_rgb),0.1) !important;
}

.map_legend .legendItemsWrap .navBtnWrap .symbol,
.map_placeList .placeAnchor .select .symbol {
	height: 20px;
	width: 20px;
	line-height: 20px;
	font-size: 20px;
	position: absolute;
	left: 15px;
	top: 10px;
	margin-left: 0;
	margin-top: 0;
	color: #cdd0d2;
}
.map_legend .legendItemsWrap .navBtnWrap .checkbox,
.map_placeList .placeAnchor .select .checkbox {
	border: 1px solid #cdd0d2;
	background: #f5f6f6;
	-webkit-transition: all .2s;
	transition: all .2s;
}
.map_legend .legendItemsWrap .navBtnWrap .checkbox:after,
.map_placeList .placeAnchor .select .checkbox:after {
	display: none;
	position: absolute;
	content: '';
	left: 6px;
	top: 3px;
	width: 6px;
	height: 10px;
	border: solid #37454b;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.map_legend .legendItemsWrap .navBtnWrap.aktiv .checkbox:after,
.map_placeList .placeAnchor.aktiv .select .checkbox:after {
	display: block;
}

.map_placeList.gridWrap {
	margin-bottom: -15px;
}
.map_placeList .placeAnchor .info {
	padding-bottom: 10px;
	position: static;
}
.map_placeList .placeAnchor .select {
	float: right;
	margin: 17px 15px 15px;
	padding-left: 25px;
	position: relative;
	line-height: 20px;
	font-weight: 500;
}
.map_placeList .placeAnchor .select .symbol {
	left: 0;
	top: 0;
	background: #fff;
}
.map_placeList .placeAnchor .articleTeaser {
	position: relative;
}
.map_placeList .placeAnchor.hasImg .select {
	position: absolute;
	right: 15px;
	top: 15px;
	margin: 0;
	color: #fff;
	background: #000;
	background: rgba(0,0,0,.4);
	padding: 5px 5px 5px 30px;
}
.map_placeList .placeAnchor.hasImg .select .symbol {
	background: rgba(255,255,255,.5);
	border-color: #37454b !important;
	left: 5px;
	top: 5px;
}
.map_placeList .placeAnchor.aktiv {
	background: #37454b;
	color: #fff;
}
.map_placeList .placeAnchor.aktiv .headline {
	color: #fff;
}

.map_placeList .placeAnchor.aktiv .info .select .checkbox {
	border-color: #0076a8;
}

.map_getTours .btnContainer {
	margin-top: 30px;
}

#wrapper .wrap .article:last-child > .mapWrap:last-child {
	margin-bottom: -15px;
}

.placeOpenings #placeOpen .success,
.placeOpenings #placeOpen .error {
	display: block;
}
.placeBlockedInfo {
	margin: 0 -15px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.placeBlockedInfo .item {
	padding: 0 15px;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 100%;
}
.placeBlockedInfo .item .wrap {
	padding: 10px 0;
}
.placeBlockedInfo .item + .item .wrap {
	border-top: 2px solid #f5f6f6;
}

.placeBlockedInfo .item .key {
	font-weight: normal;
}
.placeBlockedInfo .item .value {
	font-weight: bold;
	float: right;
	padding-left: 15px;
}
.placeBlockedInfo .item .info {
	margin: 0;
	padding: 0;
}
.placeBlockedInfo .item .info li:before {
	display: none;
}
.iconList {
	padding-left:0 !important;
}
.iconList li {
	position:relative;
	/*padding-left: 2.667em;
	padding-left: calc(2em + 10px);
	min-height: 2.333em;*/
	float: left;
	margin: 0 10px 10px 0 !important;
}
.iconList li + li {
	/*margin-top: .667em !important;*/
}
.iconList li:before {
	display:none !important;
}
.iconList img {
	position:relative;
	left:0;
	top: .333em;
	width: auto;
	height: 2em;
	margin: 0 5px 5px 0;
}
.iconList li span {
	display: inline;
	display: none;
}

@media (min-width: 480px) {
	.mapWrap.hasLegend {
		padding-top: 0;
	}
	.map_legend .trigger {
		left: 15px;
		top: 15px;
		width: 290px;
		box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	}
	.map_legend .switch:checked ~ .trigger {
		box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
	}
	.map_legend .trigger:hover {
		background: #fff;
		box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23) !important;
	}
	.map_legend .legendWrap {
		top: 0;
	}
	.map_legend .legendWrap:after {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		width: 0;
		height: 70px;
		background: -webkit-linear-gradient(top, rgba(245,246,246,1) 0%,rgba(245,246,246,0) 100%);
		background: linear-gradient(to bottom, rgba(245,246,246,1) 0%,rgba(245,246,246,0) 100%);
		display: block;
		-webkit-transition: all .3s;
		transition: all .3s;
		pointer-events: none;
	}
	.map_legend .switch:checked ~ .legendWrap:after {
		width: 320px;
	}
	.map_legend .legendItemsWrap {
		width: 320px;
		left: -320px;
	}

	.map_legend .legendItemsWrap .wrap {
		padding-top: 70px;
	}
}
@media only screen and (min-width: 560px) {
	.placeBlockedInfo .item {
		width: 50%;
		float: left;
		margin: 0;
	}
	.placeBlockedInfo .item:nth-child(2n+1) {
		clear: left;
	}
	.placeBlockedInfo .item + .item .wrap {
		border-top: none;
	}
	.placeBlockedInfo .item:nth-child(1n+3) .wrap {
		border-top: 2px solid #f5f6f6;
	}
}

@media only screen and (min-width: 720px) {
	.openings .item {
		width: 33.333%;
	}
	.openings .item:nth-child(2n+1) {
		clear: none;
	}
	.openings .item:nth-child(3n+1) {
		clear: left;
	}
	.openings .item:nth-child(1n+3) .wrap {
		border-top: none;
	}
	.openings .item:nth-child(1n+4) .wrap {
		border-top: 2px solid #f5f6f6;
	}

	.map_getTours .intro .headline,
	.map_getTours .intro .form {
		width: 50%;
		width: calc(50% - 15px);
		float: left;
	}
	.map_getTours .intro .headline {
		margin-top: 15px;
		width: calc(50% + 15px);
		padding-right: 30px;
	}
}

/* Content: VIDEOS */
.vidWrap {
	margin: 0 auto;
}
.vid {
	position:relative;
	display:block;
	overflow:hidden;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	border-bottom: 5px solid #37454b;
}
.vid,
.vid:after,
.vid *,
.vid *:after {
	-webkit-transition: all .2s;
	transition: all .2s;
}
.vid:after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: '';
	display: block;
	background: rgba(0,0,0,.20);
}
.vid .playIcon {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -1.25em 0 0 -1em;
	width: 2em;
	height: 2.5em;
	border-style: solid;
	border-width: 1.25em 0 1.25em 2em;
	border-color: transparent transparent transparent #FFF;
	display: block;
	background: none;
	z-index: 1;
}
.vid .playIcon:after {
	content: '';
	position: absolute;
	left: -3.75em;
	top: -2.5em;
	height: 5em;
	width: 5em;
	background: none;
	border: 5px solid #fff;
	border-radius: 50%;
}
.vid .video-time {
	position:absolute;
	background: #37454b;
	color: #fff;
	display:block;
	padding: 5px 10px;
	bottom: -5px;
	right:0;
	font-weight: 500;
	font-size: 80%;
	line-height: 1.667;
	z-index: 1;
}

.vid:hover:after {
	background: rgba(0,0,0,.0);
}
.vid:hover .playIcon {
	border-color: transparent transparent transparent #37454b;
}
.vid:hover .playIcon:after {
	border-color: #37454b;
}
.vid:hover .video-time {
	background: #FF6618;
	color: #fff;
}
.videoFrame {
	float:right;
    position: relative;
    width: 50%;
}
.videoIFrame {
    position: relative;
}
.videoFrame iframe {
    bottom: 0;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

/* DOWNLOADS */
.downloads {
	margin:1em 0;
}
.downloads h4 {
	margin-top:0;
}
.downloads ul {
	margin:-1em;
	list-style:none;
	padding:0;
}
.downloads li {
	padding:0;
	margin: 0 !important;
}
.downloads li:before {
	display: none !important;
}
.download .wrap {
	display:block;
	margin:1em;
	position:relative;
	min-height:24px;
	text-align: left;
	text-decoration: none;
	font-weight: 500;
}
.download .wrap.hasImg {
	padding-left: 50px;
}
.download img {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
}
.download small {
	display: block;
	font-weight: normal;
	font-size: 80%;
	line-height: 1.25;
	color: #737d81;
}

@media only screen and (min-width: 480px) {
	.downloads .grids_2 .gridItem {
		width: 50%;
		float: left;
	}
	.downloads .grids_2 .gridItem:nth-child(2n+1) {
		clear: left;
	}
	.downloads .grids_4 .gridItem {
		width:25%;
		float:left;
	}
	.downloads .grids_4 .gridItem:nth-child(4n+1) {
		clear: left;
	}
}

/* Content: SUB NAV IN ARTICLEs */
.article .navSub ul {
	padding: 0 0 0 2em;
}

.box.greyBackground {
	padding: 15px;
}
.box .boxHead {
	display:block;
	position:relative;
	font-weight: 700;
	font-size: 2em;
	line-height: 1.25;
}
.box .boxHead [class^="icon-"] {
	display:inline-block;
	text-align:center;
	font-weight:400 !important;
	border-radius:999px;
	height:2em;
	width:2em;
	font-size:0.667em;
	line-height:2em;
	margin-right:0.5em;
}
.box .boxContent > :first-child {
	margin-top: 0;
}
.box .boxContent > :last-child {
	margin-bottom: 0;
}

/* Content: FORMS */
.form .hint .duty {
	padding: 2px;
	color: #0093d2;
}
.fieldset.greyBackground,
.form.greyBackground {
	padding: 15px;
}
.form fieldset legend {
	margin: 0;
}

.form.greyBackground > :first-child,
.form.greyBackground > .hidden:first-child + * {
	margin-top: 0;
}
.form.greyBackground > :last-child {
	margin-bottom: 0;
}

.optsContainer {
	margin: 1em 0;
	text-align: left;
	position: relative;
	padding:0;
}
.optsContainerWrap {
	margin: 1em 0;
}
.optsContainer:after {
	clear: both;
	content: '';
	display: table;
}

.optsContainer + .optsContainer,
.optsContainer + .optsContainerWrap,
.optsContainer + .btnContainer,
.optsContainer + fieldset,
.optsContainerWrap + .optsContainerWrap,
.optsContainerWrap + .optsContainer,
.optsContainerWrap + .btnContainer,
.optsContainerWrap + fieldset,
fieldset + .btnContainer,
.form fieldset + fieldset {
	margin-top: 2em;
}
fieldset > .optsContainer:last-child,
fieldset > .optsContainerWrap:last-child {
	margin-bottom: 0;
}

.optsRange .date > label,
.optsContainer > label {
	display: block;
	margin: 0;
	padding: 0 5px;
	text-align: left;
	font-weight: normal;
	line-height: 20px;
	position: absolute;
	left: 5px;
	top: 9px;
	-webkit-transition: all .2s .1s;
	transition: all .2s .1s;
	pointer-events: none;
	max-width: 95%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.optsContainer > input:focus ~ label,
.optsContainer > .input:focus ~ label,
.optsContainer > textarea:focus ~ label,
.optsContainer > select:focus ~ label,
.optsContainer > .selectWrap.focus ~ label,
.optsRange .date > input:focus ~ label,
.optsRange .date > .input:focus ~ label,
.optsRange .date.hasValue > label,
.optsRange .date.hasFocus > label,
.optsContainer.hasValue > label,
.optsContainer.hasFocus > label {
	top: -7px;
	font-size: 12px;
	line-height: 15px;
	color: #737d81;
	-webkit-transition: all .2s;
	transition: all .2s;
}
.optsContainer > input:focus ~ label,
.optsContainer > .input:focus ~ label,
.optsContainer > textarea:focus ~ label,
.optsContainer > select:focus ~ label,
.optsContainer > .selectWrap.focus ~ label,
.optsRange .date > input:focus ~ label,
.optsRange .date > .input:focus ~ label {
	background: #f5f6f6;
}
.optsContainer > label:first-child,
.optsContainer > .error:first-child + label,
.optsRange > label {
	position: static;
	padding: 0;
	margin-bottom: 5px;
	text-overflow: none;
	max-width: none;
}
.optsContainer.optsDuty > label:after {
	font-weight: normal;
	color: #37454b;
	padding-left: 2px;
	display: inline-block;
	content: '*';
}

.optsContainer > label .shortInfo {
	font-weight: normal;
	letter-spacing: 0;
	text-transform: none;
	font-size: 80%;
	color: #37454b;
}
.optsContainer > label .shortInfo:before {
	content:' (';
}
.optsContainer > label .shortInfo:after {
	content:')';
}

.optsContainer input,
.optsContainer .input,
.optsContainer textarea,
.optsContainer select,
.optsContainer select option,
.optsContainer .selectOver {
	width: 100%;
	padding: 8px 9px;
	background-color: rgba(var(--color_box_rgb),0.05);
    color: var(--color_text);
    border: none;
	/*border: 1px solid rgba(var(--color_box_rgb),0.9);*/
	border-bottom: 3px solid #ebeded;
	font-size: 1em;
	line-height: 20px;
	-webkit-transition: border-color .2s, background .2s;
	transition: border-color .2s, background .2s;
	position: relative;
	display: block;
}
.optsContainer select,
.optsContainer select option {
    background-color: var(--color_bg);
    border: none;
}
.optsError .error {
	font-size: .8em;
	line-height: 1.33333;
	padding: .5em 0;
}
.optsError > label {
	color: #C00;
}
.optsError input,
.optsError .input,
.optsError textarea,
.optsError select,
.optsError .selectOver {
	border-bottom-color: #C00;
}

.optsContainer input:hover,
.optsContainer .input:hover,
.optsContainer textarea:hover,
.optsContainer select:hover,
.optsContainer .selectWrap:hover .selectOver {
	border-color: #ebeded;
}
.optsContainer input:focus,
.optsContainer .input:focus,
.optsContainer textarea:focus,
/*.optsContainer select:focus,*/
.optsContainer .selectWrap.focus .selectOver {
	border-color: #cdd0d2;
    background-color: rgba(var(--color_box_rgb),0.09);
}

.optsContainer input[type="radio"],
.optsContainer .optsInline:not(.optsSwitchContainer) input[type="checkbox"] {
	border: none;
	width: auto !important;
	float: none !important;
}
.optsContainer input[type="radio"] + label,
.optsContainer .optsInline:not(.optsSwitchContainer) input[type="checkbox"] + label {
	display: inline;
	padding: 0 0 0 .25em;
	margin: 0;
	text-align: left;
	width: auto;
	cursor: pointer;
}
.optsContainer .optsInline:not(.optsSwitchContainer) {
	display: block;
	float: left;
	padding: 8px 9px 8px 29px;
	background: rgba(var(--color_box_rgb),0);
	border: 1px solid #fff;
	border-bottom: 3px solid #ebeded;
	line-height: 20px;
	margin: 1em 1em 0 0;
	cursor: pointer;
	-webkit-transition: border-color .2s, color .2s;
	transition: border-color .2s, color .2s;
	position: relative;
}
.optsContainer .optsInline:hover {
	border-color: #ebeded;
}
.optsContainer .optsInline.optsChecked:not(.optsSwitchContainer) {
	border-color: #cdd0d2;
    background: rgba(var(--color_box_rgb),0.1);
	color: inherit;
}
.optsContainer .optsInline input[type="radio"] + label,
.optsContainer .optsInline input[type="checkbox"] + label {
	padding: 0;
}
.optsContainer .optsInline input[type="radio"],
.optsContainer .optsInline:not(.optsSwitchContainer) input[type="checkbox"] {
	position: absolute;
	left: 10px;
	top: 12px;
	line-height: 1;
}
.optsContainer .optsLine {
	display: block;
	margin-right: 0;
}
.optsContainer .optsBlock .optsLine {
	margin-right: 1em;
	float: none;
}

.optsContainer .selectWrap {
	position: relative;
	padding: 0;
	padding-bottom: 0 !important;
	overflow: hidden;
}
.optsContainer .selectOver {
	height: 40px;
}
.optsContainer .selectOver:after {
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -3px;
	content: '';
	display: block;
	height: 0;
	width: 0;
	border-style: solid;
	border-width: 6px 5px 0 5px;
	border-color: #9ba2a5 transparent transparent;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-transition: all .2s;
	transition: all .2s;
}
.optsContainer .selectWrap:hover .selectOver:after {
	border-top-color: #666;
}
.optsContainer .selectWrap.focus .selectOver:after {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	border-top-color: #37454b;
}
.optsContainer .selectWrap select {
	width: 100%;
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
}

.optsContainer .optsBlock {
	list-style: none;
	margin: -1em -1em 0 0;
	padding: 0;
}
.optsContainer .optsNfo {
	margin-top: 5px;
}

.optsContainerWrap > .ipShort,
.optsContainer > .ipShort {
	float: left;
	width: 25%;
}
.optsContainerWrap > .ipLong,
.optsContainer > .ipLong {
	float: left;
	width: 70%;
	width: calc(75% - 15px);
}
.optsContainerWrap > .optsContainer {
	margin: 0;
}
.optsContainerWrap > .ipLong + .ipShort,
.optsContainerWrap > .ipShort + .ipLong,
.optsContainer > .ipLong + .ipShort,
.optsContainer > .ipShort + .ipLong {
	margin-left: 4%;
	margin-left: calc(15px);
}
.optsContainerWrap .ipHalf + .ipHalf {
	margin-top: 2em;
}

.optsContainer .date {
	position: relative;
}
.optsContainer:not(.optsCheckbox) .icon,
.optsContainer .iconBtn {
	position: absolute;
	top: 50%;
	margin-top: -.5em;
	line-height: 1;
	right: 10px;
	color: #9ba2a5;
	z-index: 1;
	background: none;
}
.optsContainer:not(.optsCheckbox) .icon {
	pointer-events: none;
}
.optsContainer .iconBtn .icon {
	pointer-events: auto;
	position: static;
	margin: 0;
}
.optsContainer select:focus + .icon,
.optsContainer .selectWrap.focus + .icon,
.optsContainer textarea:focus + .icon,
.optsContainer input:focus + .icon,
.optsContainer .input:focus + .icon {
	color: #37454b;
}
.optsContainer .date input,
.optsContainer .date .input {
	float: none;
	width: 100%;
}

.optsContainer select + .optsLine,
.optsContainer .selectWrap + .optsLine {
	margin-top: 15px;
}

.optsContainer .optsInputLine > label:first-child {
	font-style: italic;
}

.optsRange .optsBlock {
	margin: 0;
}
.optsRange .to {
	margin-top: 1em;
}

/* Form Type: BUTTONS */
.btnContainer {
	text-align: center;
}
.btnContainer button {
	min-width: 30%;
	line-height: 20px;
	padding: 10px;
	background: #37454b;
	color: #fff;
}
.btnContainer .btnLess,
.btnContainer .backLink {
    float: left;
    margin: 0;
}
.btnContainer button[type="reset"] {
	position: relative;
	padding-left: 42px;
}
.btnContainer button[type="reset"] .icon {
	position: absolute;
	left: 5px;
	top: 50%;
	margin-top: -16px;
}
.box .btnContainer button {
	width: 100%;
	box-shadow: none;
}
@media only screen and (min-width: 480px) {
	.optsRange .date,
	.optsContainerWrap .ipHalf {
		width: 50%;
		float: left;
		padding-left: 7px;
		padding-right: 8px;
		margin: 0;
	}
	.optsContainerWrap .ipHalf:first-child,
	.optsRange .from {
		padding-left: 0;
	}
	.optsContainerWrap .ipHalf:last-child,
	.optsRange .to {
		padding-right: 0;
	}
	.optsRange .date.from > .icon {
		right: 17px;
	}
	.optsContainerWrap .ipHalf:last-child > label,
	.optsRange .date.to > label {
		left: 13px;
	}
	.optsRange .date > input,
	.optsRange .date > .input,
	.optsContainerWrap .ipHalf + .ipHalf {
		margin-top: 0;
	}
}

@media only screen and (min-width: 720px) {
	.optsContainerWrap .ipLong-md,
	.optsContainerWrap .ipShort-md {
		float: left;
		margin: 0;
	}
	.optsContainerWrap > .ipShort-md {
		width: 25%;
	}
	.optsContainerWrap > .ipLong-md  {
		width: 70%;
		width: calc(75% - 15px);
	}
	.optsContainerWrap > .ipLong-md + .ipShort-md,
	.optsContainerWrap > .ipShort-md + .ipLong-md {
		margin-left: 4%;
		margin-left: calc(15px);
	}
}
.optsContainer .optsLine input[type="checkbox"] {
	display:inline-block;
}

/* Swtiches */
input.optsSwitch {
    float: right !important;
    flex-shrink: 0;
    width: 2em !important;
    height: 1em !important;
    vertical-align: top;
    appearance: none;

    background: #C00 no-repeat left center;
    background-image:  url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
    background-size: contain;

    border: none;
    border-radius: 2em;

    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    print-color-adjust: exact;

    box-shadow: 0 1px 3px rgba(0,0,0,.5) inset;
    font-size: 1.5em;

    transition: background .3s;

    display: block !important;
}
input.optsSwitch:focus-visible {
    outline: 0;
    box-shadow: 0 0 .05rem .25rem rgba(13,110,253,.25);
}
input:checked.optsSwitch {
    background-color: #00b300;
    background-position: right center;
}
input:disabled.optsSwitch  {
    background-color: #ddd;
}

/* Content: AKKOREDEON */
.accordion {
	padding: 15px !important;
}

/* Content: LISTS */
.list .listItem {
	padding: 15px;
}
.list > hr {
	margin: 15px;
}
.listItem .articleWrap > :first-child {
	margin-top: .25rem;
}
.listItem .articleImgNone + .articleWrap > :first-child {
	margin-top: .5em;
}
.listItem .headline {
	margin: .25em 0 .5em;
	font-size: 1.5em;
}
.listItem .headline a {
	text-decoration: none;
}
.listItem .dateText {
	font-size: 80%;
	line-height: 1.25;
}

.listItem .articleImgNone,
.listItem .articleImgLeft,
.listItem .articleImgRight {
	float: none;
	margin: 0 auto;
}
.listItem .articleImgLeft.imgWidth-25,
.listItem .articleImgRight.imgWidth-25 {
	width: 33.3%;
}

.listItem .articleImgLeft.imgWidth-5,
.listItem .articleImgLeft.imgWidth-10,
.listItem .articleImgLeft.imgWidth-13,
.listItem .articleImgLeft.imgWidth-15,
.listItem .articleImgLeft.imgWidth-17,
.listItem .articleImgLeft.imgWidth-20,
.listItem .articleImgLeft.imgWidth-25 {
	float:left;
}
.listItem .articleImgLeft.imgWidth-5 + .articleWrap,
.listItem .articleImgLeft.imgWidth-10 + .articleWrap,
.listItem .articleImgLeft.imgWidth-13 + .articleWrap {
	padding-left: 1em;
	margin-left: 15%;
}
.listItem .articleImgLeft.imgWidth-15 + .articleWrap,
.listItem .articleImgLeft.imgWidth-17 + .articleWrap,
.listItem .articleImgLeft.imgWidth-20 + .articleWrap {
	padding-left: 1em;
	margin-left: 25%;
}
.listItem .articleImgLeft.imgWidth-25 + .articleWrap {
	padding-left: 1em;
	margin-left: 33.3%;
}

.listItem .articleImgRight.imgWidth-5,
.listItem .articleImgRight.imgWidth-10,
.listItem .articleImgRight.imgWidth-13,
.listItem .articleImgRight.imgWidth-17,
.listItem .articleImgRight.imgWidth-20,
.listItem .articleImgRight.imgWidth-25 {
	float: right;
}
.listItem .articleImgRight.imgWidth-5 + .articleWrap,
.listItem .articleImgRight.imgWidth-10 + .articleWrap,
.listItem .articleImgRight.imgWidth-13 + .articleWrap{
	padding-right: 1em;
	margin-right: 15%;
}
.listItem .articleImgRight.imgWidth-15 + .articleWrap,
.listItem .articleImgRight.imgWidth-17 + .articleWrap,
.listItem .articleImgRight.imgWidth-20 + .articleWrap {
	padding-right: 1em;
	margin-right: 25%;
}
.listItem .articleImgRight.imgWidth-25 + .articleWrap {
	padding-right: 1em;
	margin-right: 33.3%;
}

@media only screen and (min-width: 480px) {
	.listItem .articleImgLeft.imgWidth-33 {
		float:left;
	}
	.listItem .articleImgLeft.imgWidth-5 + .articleWrap,
	.listItem .articleImgLeft.imgWidth-10 + .articleWrap {
		margin-left: 15%;
	}
	.listItem .articleImgLeft.imgWidth-13 + .articleWrap {
		margin-left: 20%;
	}
	.listItem .articleImgLeft.imgWidth-15 + .articleWrap,
	.listItem .articleImgLeft.imgWidth-17 + .articleWrap,
	.listItem .articleImgLeft.imgWidth-20 + .articleWrap {
		margin-left: 33.3%;
	}
	.listItem .articleImgLeft.imgWidth-33 + .articleWrap {
		padding-left: 1em;
		margin-left: 50%;
	}

	.listItem .articleImgRight.imgWidth-33 {
		float: right;
	}
	.listItem .articleImgRight.imgWidth-5 + .articleWrap,
	.listItem .articleImgRight.imgWidth-10 + .articleWrap {
		margin-right: 15%;
	}
	.listItem .articleImgRight.imgWidth-13 + .articleWrap {
		margin-right: 20%;
	}
	.listItem .articleImgRight.imgWidth-15 + .articleWrap,
	.listItem .articleImgRight.imgWidth-17 + .articleWrap,
	.listItem .articleImgRight.imgWidth-20 + .articleWrap {
		margin-right: 33.3%;
	}
	.listItem .articleImgRight.imgWidth-33 + .articleWrap {
		padding-right: 1em;
		margin-right: 50%;
	}
}

@media only screen and (min-width: 640px) {
	.listItem .articleImgLeft.imgWidth-42,
	.listItem .articleImgLeft.imgWidth-50 {
		float:left;
	}
	.listItem .articleImgLeft.imgWidth-17 + .articleWrap,
	.listItem .articleImgLeft.imgWidth-20 + .articleWrap {
		margin-left: 25%;
	}
	.listItem .articleImgLeft.imgWidth-25 + .articleWrap {
		margin-left: 33.3%;
	}
	.listItem .articleImgLeft.imgWidth-42 + .articleWrap,
	.listItem .articleImgLeft.imgWidth-50 + .articleWrap {
		padding-left: 1em;
		margin-left: 50%;
	}

	.listItem .articleImgRight.imgWidth-42,
	.listItem .articleImgRight.imgWidth-50 {
		float: right;
	}
	.listItem .articleImgRight.imgWidth-17 + .articleWrap,
	.listItem .articleImgRight.imgWidth-20 + .articleWrap {
		margin-right: 25%;
	}
	.listItem .articleImgRight.imgWidth-25 + .articleWrap {
		margin-right: 33.3%;
	}
	.listItem .articleImgRight.imgWidth-42 + .articleWrap,
	.listItem .articleImgRight.imgWidth-50 + .articleWrap {
		padding-right: 1em;
		margin-right: 50%;
	}
}

@media only screen and (min-width: 720px) {
	.listItem .articleImgLeft.imgWidth-67 {
		float:left;
	}
	.listItem .articleImgLeft.imgWidth-5 + .articleWrap,
	.listItem .articleImgLeft.imgWidth-10 + .articleWrap,
	.listItem .articleImgLeft.imgWidth-13 + .articleWrap {
		margin-left: 15%;
	}
	.listItem .articleImgLeft.imgWidth-15 + .articleWrap,
	.listItem .articleImgLeft.imgWidth-17 + .articleWrap,
	.listItem .articleImgLeft.imgWidth-20 + .articleWrap {
		margin-left: 20%;
	}
	.listItem .articleImgLeft.imgWidth-25 + .articleWrap,
	.listItem .articleImgLeft.imgWidth-33 + .articleWrap {
		margin-left: 33.3%;
	}
	.listItem .articleImgLeft.imgWidth-67 + .articleWrap {
		padding-left: 1em;
		margin-left: 50%;
	}

	.listItem .articleImgRight.imgWidth-67 {
		float: right;
	}
	.listItem .articleImgRight.imgWidth-5 + .articleWrap,
	.listItem .articleImgRight.imgWidth-10 + .articleWrap,
	.listItem .articleImgRight.imgWidth-13 + .articleWrap {
		margin-right: 15%;
	}
	.listItem .articleImgRight.imgWidth-15 + .articleWrap,
	.listItem .articleImgRight.imgWidth-17 + .articleWrap,
	.listItem .articleImgRight.imgWidth-20 + .articleWrap {
		margin-right: 20%;
	}
	.listItem .articleImgRight.imgWidth-25 + .articleWrap,
	.listItem .articleImgRight.imgWidth-33 + .articleWrap {
		margin-right: 33.3%;
	}
	.listItem .articleImgRight.imgWidth-67 + .articleWrap {
		padding-right: 1em;
		margin-right: 50%;
	}
}

@media only screen and (min-width: 960px) {
	.listItem .articleImgLeft.imgWidth-25,
	.listItem .articleImgRight.imgWidth-25 {
		width: 25%;
	}

	.listItem .articleImgLeft.imgWidth-75 {
		float:left;
	}
	.listItem .articleImgLeft.imgWidth-5 + .articleWrap {
		margin-left: 5%;
	}
	.listItem .articleImgLeft.imgWidth-10 + .articleWrap {
		margin-left: 10%;
	}
	.listItem .articleImgLeft.imgWidth-13 + .articleWrap {
		margin-left: 12.5%;
	}
	.listItem .articleImgLeft.imgWidth-15 + .articleWrap {
		margin-left: 15%;
	}
	.listItem .articleImgLeft.imgWidth-17 + .articleWrap {
		margin-left: 16.7%;
	}
	.listItem .articleImgLeft.imgWidth-20 + .articleWrap {
		margin-left: 20%;
	}
	.listItem .articleImgLeft.imgWidth-25 + .articleWrap {
		margin-left: 25%;
	}
	.listItem .articleImgLeft.imgWidth-33 + .articleWrap {
		margin-left: 33.3%;
	}
	.listItem .articleImgLeft.imgWidth-42 + .articleWrap {
		margin-left: 41.7%;
	}
	.listItem .articleImgLeft.imgWidth-50 + .articleWrap {
		margin-left: 50%;
	}
	.listItem .articleImgLeft.imgWidth-67 + .articleWrap {
		margin-left: 66.7%;
	}
	.listItem .articleImgLeft.imgWidth-75 + .articleWrap {
		padding-left: 1em;
		margin-left: 75%;
	}

	.listItem .articleImgRight.imgWidth-75 {
		float: right;
	}
	.listItem .articleImgRight.imgWidth-5 + .articleWrap {
		margin-right: 5%;
	}
	.listItem .articleImgRight.imgWidth-10 + .articleWrap {
		margin-right: 10%;
	}
	.listItem .articleImgRight.imgWidth-13 + .articleWrap {
		margin-right: 12.5%;
	}
	.listItem .articleImgRight.imgWidth-15 + .articleWrap {
		margin-right: 15%;
	}
	.listItem .articleImgRight.imgWidth-17 + .articleWrap {
		margin-right: 17%;
	}

	.listItem .articleImgRight.imgWidth-20 + .articleWrap {
		margin-right: 20%;
	}
	.listItem .articleImgRight.imgWidth-25 + .articleWrap {
		margin-right: 25%;
	}
	.listItem .articleImgRight.imgWidth-33 + .articleWrap {
		margin-right: 33.3%;
	}
	.listItem .articleImgRight.imgWidth-42 + .articleWrap {
		margin-right: 41.7%;
	}
	.listItem .articleImgRight.imgWidth-50 + .articleWrap {
		margin-right: 50%;
	}
	.listItem .articleImgRight.imgWidth-67 + .articleWrap {
		margin-right: 66.7%;
	}
	.listItem .articleImgRight.imgWidth-75 + .articleWrap {
		padding-right: 1em;
		margin-right: 75%;
	}
}

/* Content: GRIDS */
.gridWrap {
	margin: 20px 0;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.article .gridWrap {
	margin-left: -20px;
	margin-right: -20px;
}
.gridWrap.vcSlider_stage {
	margin-top: 0;
	margin-bottom: 0;
}
/*.is_book + .clear + .gridWrap {
	margin-top: -2em;
}*/
.is_book.articleFullWidth + .clear + .gridWrap {
	margin-top: -15px;
}
.gridWrap.masonryGridWrap {
	margin: 0 -20px 0 20px;
	margin-bottom: calc(-15px + 2em);
	display: block;
}
.gridWrap .gridSizer {
	width: 50%;
}
.gridWrap .articleGrid {
	padding: 0 0 100%;
	float: left;
	width: 100%;
	position: relative;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

.gridWrap .leftContainer,
.gridWrap .rightContainer,
.gridWrap .gridWidth_100,
.gridWrap .gridWidth_50,
.gridWrap .gridWidth_33,
.gridWrap .gridWidth_25 {
	width: 100%;
	padding: 15px;
	float: left;
}
.gridWrap .rightContainer {
	float: right;
}
.gridWrap .gridWidth_1x1 {
	padding-bottom: 100%;
	width: 100%;
}
.gridWrap .gridWidth_2x1 {
	padding-bottom: 50%;
	width: 100%;
}
.gridWrap .gridWidth_3x2 {
	padding-bottom: 75%;
	width: 100%;
}

.gridWrap .gridWidth_2x2 {
	width: 100%;
}
@media only screen and (min-width: 480px) {
	.gridWrap .gridWidth_1x1 {
		padding-bottom: 50%;
		width: 50%;
	}
}
/* Content Part: GRIDS - General Content */
@keyframes moreBounce {
  0% {
    transform:scale(1.0);
  }
  40% {
    transform:scale(1.2);
  }
  100% {
    transform:scale(1.0);
  }
}

.articleGrid {
	position: relative;
	z-index: 1;
	width: 100%;
}
.articleGrid .wrap {
	background: rgba(var(--color_box_rgb),0.05);
	-webkit-transition: border .3s;
	transition: border .3s;
	position: relative;
	display: block;
	text-decoration: none;
	height: 100%;
	color:inherit;
}
.greyBackground .articleGrid .wrap {
	background: #fff;
	color: #737d81;
}

.articleGrid .info {
	position: relative;
	display: block;
	color: inherit;
	padding: 15px;
}

.articleGrid .info > :first-child {
	margin-top: 0;
}
.articleGrid .info > :last-child {
	margin-bottom: 0;
}
.articleGrid .headline {
	margin: 0;
	font-size: 1.333em;
	color: #37454b;
	font-weight: 500;
	font-style: normal;
	line-height: 1.25;
}
.theme_dark .articleGrid .headline {
    color: #8299A1;
}
.articleGrid .headline a {
	text-decoration: none;
	display: block;
	color: inherit;
}
.articleGrid .headline + p {
	margin-top: 0;
}
.articleGrid .imgWrap {
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	position: relative;
	border-bottom: none;
	-webkit-transition: all 1s cubic-bezier(0,1,.5,1);
	transition: all 1s cubic-bezier(0,1,.5,1);
}
.articleGrid .imgWrap.imgFillCover {
	background-size: cover;
}
.articleGrid .imgWrap.imgFillContain {
	background-size: contain;
}
/*.articleGrid.polaroid.show:hover,
.articleGrid:hover .wrap .imgWrap {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}*/

.articleGrid .imgWrap .caption {
	position: absolute;
	background: #fff;
	display: block;
	padding: .5em 1em;
	margin: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	max-width: 100%;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.articleGrid:hover .imgWrap .caption {
	white-space: normal;
	text-overflow: none;
}
.articleGrid .host_distance {
	padding:2px 10px;
	position:absolute;
	line-height:15px;
	font-size:12px;
	font-weight:700;
	top:-19px;
	right:0;
	background:#f5f6f6;
}
.articleGrid .articleTeaser {
	margin: 0 auto;
	width: 100%;
	overflow: hidden;
}
.articleGrid .articleTeaser + .placeBarrierfree {
	position:relative;
    height: 0;
}
.articleGrid .placeBarrierfree ul {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
	margin:0;
	padding:0;
	list-style:none;
	text-align:right;
}
.articleGrid .placeBarrierfree ul li {
	display:inline-block;
	padding:5px 5px 5px 0;
}
.articleGrid .placeBarrierfree ul li img {
	width:auto;
	height:30px;
}
.articleGrid .moreBtn {
	position: absolute;
	right: 0;
	bottom:0;
	margin:10px;
	color: #385020;
	background: #fff;
	height: 2em;
	width: 2em;
	text-align: center;
	-webkit-transition: all .3s;
	transition: all .3s;
	border-radius:999px;

}
.articleGrid .placeBarrierfree ul li .gMapsBooking {
    display: inline-block;
    line-height: 20px;
    padding: 5px 10px;
    background: #385020;
    color: #fff;
    border-radius: 4px;
}

.masonryGridWrap .articleGrid .moreBtn {
	margin:1em;
	bottom:auto;
	top:0;
}
.articleGrid .moreBtn .icon {
	font-size:0.8em;
	line-height: 2.500em;
}
.articleGrid:hover .moreBtn {
	animation-duration: 0.6s;
	animation-name: moreBounce;
}

.articleGrid.polaroid .wrap {
	border-bottom: none;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	background: #fff;
	-webkit-transition: box-shadow .3s;
	transition: box-shadow .3s;
}
.articleGrid.polaroid .articleTeaser {
	border-style: solid;
	border-color: #fff;
	border-width: 15px 15px 0 15px;
}
.articleGrid.polaroid .info {
	text-align: center;
    font-family: 'sf_burlington_script', cursive;
	font-size: 1.667em;
}
.articleGrid.polaroid {
	-webkit-transition: transform 1s cubic-bezier(0,1,.5,1);
	transition: transform 1s cubic-bezier(0,1,.5,1);
}
.articleGrid.polaroid.show:hover {
	z-index: 2;
}
.articleGrid.polaroid.show:hover .wrap {
	box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.articleGrid.polaroid:hover .imgWrap {
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}

.masonryGridWrap .articleGrid {
	border-bottom: none;
	-webkit-flex: auto;
	-ms-flex: auto;
	flex: auto;
}
.masonryGridWrap .articleGrid .wrap,
.gridArticleGallery.articleGrid > .vc_carousel_container {
	z-index: 1;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 40px;
	right: 40px;
	overflow: hidden;
	background: #f5f6f6;
	-webkit-transition: border .3s;
	transition: border .3s;
	height: auto;
}
.masonryGridWrap .articleGrid .articleImgNone {
	position: relative;
	height: 100%;
	width: 100%;
	display: block;
	color: inherit;
}
.masonryGridWrap .articleGrid.fontColorLight .articleImgNone {
	color: #fff;
}
.masonryGridWrap .articleGrid .imgWrap {
	position: absolute;
	padding-bottom: 0 !important;
	/*height: 71%;
	min-height:calc(100% - 4em - 30px);*/
	min-height:calc(100% - 30px);
	width: 100%;
	bottom:0;
	z-index: -1;
}
.masonryGridWrap .articleGrid .imgLabelOverlay {
	position: absolute;
	width: 100%;
	padding: 15px;
	background:#385020;
	color:#fff;
	/*height: 30%;
	max-height: calc(4em + 30px);*/
    min-height: calc(2em + 30px);
}
.masonryGridWrap .articleGrid .imgLabelOverlay.hasDetail {
	padding-right:60px;
	padding-right:calc(2em + 30px);
}
.masonryGridWrap .articleGrid .labelInnerWrap {
	/*margin: 15px;
	overflow: hidden;
	position: absolute;*/
	top: 0;
	bottom: 0;
	left: 0;
	right:0;
}
.masonryGridWrap .articleGrid .imgLabelOverlay .labelInnerWrap:after {
	content:'';
	position:absolute;
	bottom:0;
	height:10px;
	left:0;
	right:0;
	background: -moz-linear-gradient(top, rgba(56,80,32,0) 0%, rgba(56,80,32,1) 100%);
	background: -webkit-linear-gradient(top, rgba(56,80,32,0) 0%,rgba(56,80,32,1) 100%);
	background: linear-gradient(to bottom, rgba(56,80,32,0) 0%,rgba(56,80,32,1) 100%);
}
.masonryGridWrap .articleGrid .imgLabelOverlay.hasDetail .labelInnerWrap {
	/*margin-right: calc(2em + 30px);*/
}
.masonryGridWrap .articleGrid .headline {
	color: inherit;
	font-weight: 700;
	font-style: normal;
	font-size: 1.15em;
	position:relative;
	z-index:1;
}
.masonryGridWrap .articleGrid .description {
	font-weight: 400;
	line-height:1.3em;
}

.gridArticleGallery .wrap .articleGrid {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	padding: 0;
}
.gridArticleGallery.articleGrid > .wrap {
	border-bottom: none;
	background: none;
}
.gridArticleGallery.articleGrid > .vc_carousel_container > .wrap {
	border-bottom: none;
	background: none;
	right: 0;
	bottom: 0;
}
.gridArticleGallery .wrap .articleGrid .wrap {
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}
.gridArticleGallery .vc_carousel_control {
	text-align: right;
	width: 100%;
}
.gridArticleGallery .vc_carousel_pages {
	left: 0;
	right: auto;
	bottom: 5px;
	display: block;
}

@media only screen and (min-width: 480px) {
	.masonryGridWrap .articleGrid .imgLabelOverlay {
		padding-top: 20px;
		padding-bottom: 20px;
		/*font-size: 1.2em;*/
	}
}
.gridWrap.textWrap .gridWidth_50 {
		padding:0 20px;
}
@media only screen and (min-width: 560px) {
	.gridWrap .gridWidth_25,
	.gridWrap .gridWidth_33,
	.gridWrap .leftContainer,
	.gridWrap .rightContainer {
		width: 50%;
	}

	.gridWrap.masonryGridWrap  {
		margin-bottom: calc(-15px + 4em);
	}
	/*.is_book + .clear + .gridWrap {
		margin-top: -4em;
	}*/
	.gridWrap.textWrap {
		margin:20px -20px;
	}
	.tax_einleitungsbox .gridWrap.textWrap {
		margin-top:0;
		margin-bottom:0;
	}
	.gridWrap.textWrap .gridWidth_50 > :first-child {
		margin-top:0;
	}
}
@media only screen and (min-width: 720px) {
	.gridWrap .gridSizer {
		width: 8.33%;
	}
	.gridWrap .gridWidth_1x1 {
		padding-bottom: 33.33%;
		width: 33.33%;
	}
	.gridWrap .gridWidth_2x1 {
		padding-bottom: 25%;
		width: 50%;
	}
	.gridWrap .gridWidth_2x2 {
		padding-bottom: 50%;
		width: 50%;
	}
	.gridWrap .gridWidth_3x2 {
		padding-bottom: 33.33%;
		width: 50%;
	}

	.masonryGridWrap .articleGrid .imgLabelOverlay {
		padding-top: 15px;
		padding-bottom: 15px;
		font-size: 1em;
	}
}
@media only screen and (min-width: 960px) {
	.gridWrap .gridSizer {
		width: 8.333%;
	}
	.gridWrap .gridWidth_25,
    .gridWrap .gridWidth_33 {
		width: 33.3%;
	}
	.gridWrap .gridWidth_50 {
		width: 50%;
	}

	.masonryGridWrap .articleGrid .imgLabelOverlay {
		padding-top: 20px;
		padding-bottom: 20px;
		font-size: 1.2em;
	}
}
@media only screen and (min-width: 1440px) {
    .gridWrap .gridWidth_25 {
        width: 25%;
    }
}
    /* SPRACHWAHL BEI GESCANNTEN ARTIKELN*/
.langSwitch .switch {
	display:block;
	opacity:0.5;
	text-decoration:none;
	color:inherit;
}
.langSwitch a.switch {
	opacity:1;
}
.print {
    display: none;
}

/* LOGIN FORM */
#loginForm {
	width:50%;
	min-width:300px;
	margin:0 auto;
}
/* LINKLISTE */
.directLinks {
	margin-top: .714em;
}
.directLinks .boxHead {
	font-size: 1.333em;
	line-height: 1.25;
	font-weight: 500;
	font-style: italic;
	display: block;
	margin-bottom: .25em;
}
.directLinks .linkList {
	font-size: .933em;
	line-height: 1.429;
	margin-top: 0;
}
.directLinks .linkList li {
	margin: 0;
}
.directLinks .linkList li:before {
	top: .714em;
}
.directLinks .linkList li + li {
	margin-top: 10px;
}
.directLinks .linkList a {
	display: block;
	text-decoration: none;
	color: #556166;
}
.directLinks .linkList a:hover {
	text-decoration: underline;
}


.textCenter {
	text-align:center;
}

/* Site: PAGE JUMPS */
.jumper {
	margin: 15px -7px 15px -8px;
	position: relative;
	height: 40px;
}
.jumper .resultStats,
.pagerJumper .divider {
	display: none;
}
.jumper .pagerJumper {
	display:block;
	margin: 0 auto;
	position:absolute;
	right: 15px;
}
.pagerJumper a {
	padding: 10px 0;
	margin:0 7px 0 8px;
	display:block;
	float:left;
	width:40px;
	height:40px;
	background: var(--color_bg);
	color: inherit;
	font-weight: normal;
	line-height: 20px;
	text-align:center;
	text-decoration: none;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.pagerJumper a:hover {
	background: #37454b;
	color: #fff;
}
.pagerJumper a.aktiv {
	font-weight: bold;
	color: #fff;
	background:#37454b;
}

.pages  {
	text-align:center;
	padding: 1em;
	margin-top: 2em;
	color: #ebeded;
}
.pages:last-child {
	padding-bottom: 2em;
}
.pages > * {
	display: inline-block;
	height: 20px;
	line-height: 20px;
	overflow: hidden;
}
.pages a {
	font-weight: normal;
	font-style: italic;
	color: #37454b;
	text-decoration: none;
	padding: 0 10px;
	position: relative;
	max-width: 35%;
	overflow: hidden;
}
.pages a:first-child {
	padding-left: 25px;
}
.pages a:last-child {
	padding-right: 25px;
}
.pages a span {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	width: 100%;
	display: inline-block;
}
.pages a .icon {
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -.5em;
	line-height: 1;
}
.pages a:last-child .icon {
	right: 0;
	left: auto;
}
.pages a.overviewPage {
	font-weight: 500;
}
.pages a.enabled .icon {
	color: #37454b;
}
.pages a.disabled {
	color: #cdd0d2 !important;
	text-decoration: none;
}

.backLink {
	text-align:center;
	padding-bottom:20px;
}
.backLink a {
	display:inline-block;
	text-decoration:none;
	color:inherit;
	text-transform:uppercase;
	font-weight:500;
	font-style:italic;
}

@media only screen and (min-width: 640px) {
	/* LINKLISTE */
	.directLinks {
		float: right;
		width: 33.3%;
		padding-left: 2em;
		background: #fff;
		position: relative;
		z-index: 1;
		margin-top: 0;
	}
	.directLinks + .directLinks {
		clear: right;
	}
	.greyBackground .directLinks {
		background: #f5f6f6;
	}
}
@media only screen and (min-width: 960px) {
	/* LINKLISTE */
	.directLinks {
		width: 50%;
		margin-right: -12.5%;
		margin-right: calc(-12.5% + 15px);
	}
}

@media only screen and (min-width: 1120px) {
	/* LINKLISTE */
	.directLinks {
		width: 33.33%;

	}
}

@media only screen and (min-width: 1440px) {
	/* LINKLISTE */
	.directLinks {
		width: 25%;

	}
}

.rateAndShareWrap {
	margin: 1em 0;
	padding-bottom: 1em;
	display: block;
	position: relative;
}
.rateAndShare {
	position: relative;
	padding-bottom: 0;
	margin-top: -1em;
}
.rateAndShare .icon:before {
	margin: 0;
}
.rateAndShare > *:after,
.rateAndShare:after {
	position: absolute;
	content: '';
	background: #f5f6f6;
	display: block;
}
.rateAndShare:after {
	left: 0;
	width: 100%;
	height: 2px;
	bottom: -1em;
}
.rateAndShare > * {
	position: relative;
	display: inline-block;
	margin-right: 1em;
	padding-right: 1em;
	margin-top: 1em;
}
.rateAndShare > *:after {
	right: -1px;
	top: 0;
	height: 100%;
	width: 2px;
}
.rateAndShare > *:last-child {
	margin-right: 0;
	padding-right: 0;
}
.rateAndShare > *:last-child:after {
	display: none;
}
.rateAndShare .hint {
	font-size: 80%;
	line-height: 1.25;
	color: #9ba2a5;
}
.rateAndShare .shariff ul {
	margin: 0 -15px 0 0;
	padding: 0;

}
.rateAndShare .shariff ul li {
	display: inline-block;
	margin: 0 15px 0 0;
}
.rateAndShare .shariff ul li a {
	display: block;
	font-size: 1.25em;
	color: inherit;
	vertical-align: -.125em;
}
.rateAndShare .shariff ul li:before,
.rateAndShare .shariff.min ul li .share_text {
	display: none;
}

.rateAndShare .currentRate .value {
	white-space: nowrap;
	padding-right: 10px;
}
.rateAndShare .availableRatings {
	width: 200px;
	padding: 15px;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	background: #f5f6f6;
	position: absolute;
	left: 50%;
	margin-left: -100px;
	top: 2em;
	display: none;
	z-index: 1;
}
.rateAndShare .checkboxTrigger:checked ~ .availableRatings {
	display: block;
}
.rateAndShare .submitRate {
	cursor: pointer;
}
.rateAndShare .submitRate .ns,
.rateAndShare .checkboxTrigger:checked + .submitRate .as,
.rateAndShare .submitRate:hover .as {
	display: inline-block;
}
.rateAndShare .submitRate .as,
.rateAndShare .checkboxTrigger:checked + .submitRate .ns,
.rateAndShare .submitRate:hover .ns {
	display: none;
}
.rateAndShare .availableRatings:before {
	content: '';
	position: absolute;
	left: 50%;
	top: -.5em;
	margin-left: -.5em;
	border-style: solid;
	border-color: transparent transparent #f5f6f6 transparent;
	border-width: 0 .5em .5em .5em;
	display: block;
}
.rateAndShare .availableRatings a {
	display: block;
	white-space: nowrap;
	text-decoration: none;
	overflow: hidden;
	line-height: 30px;
	margin-left: -5px;
	margin-right: -5px;
	padding-left: 5px;
	padding-right: 5px;
}
.rateAndShare .availableRatings a:hover {
	background: #fff;
}
.rateAndShare .availableRatings .hint + a {
	margin-top: 5px;
}

/* ==========================================================================
   MODULE STYLES
   ========================================================================== */

/* Modul: START */
.modul_start .sectionTeaser {
	padding-bottom: 50%;
	height: 0;
	position: relative;
	background: no-repeat 50% 50%;
	background-size: cover;
	border-top: 5px solid #37454b;
}
.modul_start .section .sectionTeaser .headline {
	color: #37454b;
	padding: 15px;
	margin: 0;
	font-size: 5vw;
}
.modul_start .sectionTeaser:after {
	position: absolute;
	height: 20%;
	width: 100%;
	content: '';
	bottom: 0;
	left: 0;
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,0.9) 80%,rgba(255,255,255,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0.9) 80%,rgba(255,255,255,1) 100%);
}
.modul_start .greyBackground .sectionTeaser:after {
	background: -webkit-linear-gradient(top, rgba(245,246,246,0) 0%,rgba(245,246,246,0.9) 80%,rgba(245,246,246,1) 100%);
	background: linear-gradient(to bottom, rgba(245,246,246,0) 0%,rgba(245,246,246,0.9) 80%,rgba(245,246,246,1) 100%);
}
.modul_start .section .offersHeadline {
	text-align: center;
	margin-top: 0;
}
.modul_start .section .offersWrap {
	padding-bottom: 30px;
}
.modul_start .section .offers {
	display: block;
}

@media only screen and (min-width: 720px) {
	.modul_start .section .sectionTeaser .headline {
		width: 50%;
		padding-top: 60px;
		font-size: 4vw;
	}
	.modul_start .section .offersWrap {
		padding-bottom: 60px;
	}
}

/* Modul: INFOMATERIAL */
#giveAwayForm .article,
#giveAwayForm .article + .article,
#giveAwayForm .article + hr {
	margin-top: 1em;
	margin-bottom: 1em;
}
#giveAwayForm .article .itemSelector {
	padding: 15px;
	margin-top: 2em;
}
#giveAwayForm .article .itemSelector .optsContainer {
	margin: 0;
}
#giveAwayForm .aside .h2 {
	margin-top: 0;
}
#giveAwayForm .aside .noSel {
	font-style: italic;
}
#giveAwayForm .aside > p:last-of-type {
	margin-bottom: 0;
}
@media only screen and (min-width: 960px) {
	#giveAwayForm .article,
	#giveAwayForm .article + hr {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}

	#giveAwayForm .list {
		width: 66.667%;
		float: left;
		padding: 0 15px;
	}

	#giveAwayForm .aside {
		width: 33.333%;
		width: calc(33.333% - 30px);
		float: right;
		position: relative;
		margin: 0 calc(15px);
		padding: 15px;
	}
	#giveAwayForm .aside .btnContainer button {
		width: 100%;
	}
}

/* Modul: Karte */
#imap {
	position: relative;
	overflow: hidden;
	padding-top: 40px;
	background: #fff;
	margin: 20px 0;
}
.isFullscreen #imap {
	padding-left: 0;
	padding-right: 0;
	height: 100%;
    width: 100%;
}

@media (min-width: 480px) {
	#imap {
		padding-top: 0;
	}
}

/* Modul: SUCHE */
.search_results {
	margin: 15px;
	padding: 0;
}
.search_results a {
	text-decoration: none;
}
.search_results .headline {
	margin: 0;
}
.search_results .depthpath {
	color: #9ba2a5;
	display: block;
	font-size: 12px;
	padding: 0;
}
.search_results .depthpath a {
	color: #37454b;
}
.search_results .resultItem > :last-child {
	margin-bottom: 0;
}
.modul_events .search_result_info,
.modul_suche .search_result_info {
	text-align: center;
}

/* Modul: FAVORITEN */
#favsList {
	list-style: none;
}
#favsList li {
	position: relative;
	padding: 1em 3em 1em 0;
}
#favsList li .delete {
	position: absolute;
	right: 0;
	top: 1em;
	top: calc(1em - 5px);
	padding: 5px;
	background: #fff;
	z-index: 1;
}
#favsList li + li {
	border-top: 2px solid #f5f6f6;
}
#favsList li .headline strong {
	font-weight: 500;
}

/* Modul: EVENTS */
#datePicker .calWrap {
	position: relative;
}
#datePicker .calLoader {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #fff;
	background: rgba(255,255,255,.8) url('../img/preloader_301_dark.gif') no-repeat 50% 50%;
}
.greyBackground #datePicker .calLoader {
	background-color: #f5f6f6;
	background-color: rgba(245,246,246,.8);
}
#datePicker a {
    color: #000;
}
#datePicker table {
	width: 100%;
	table-layout: fixed;
	line-height: 30px;
}
#datePicker table td {
	text-align: center;
}
#datePicker .calHead a {
	background: #fff;
	display: block;
	border-radius: 15px;
	height: 30px;
	width: 30px;
	text-align: center;
	text-decoration: none;
	margin: 0 auto;
}
#datePicker .calWeekdays {
	font-weight: bold;
}
#datePicker .calWeek span,
#datePicker .calWeek a {
	display: block;
	text-decoration: none;
}

#datePicker .calWeek .today {
	font-weight: bold;
	font-style: italic;
}
#datePicker .calWeek .today a,
#datePicker .calWeek .today span,
#datePicker .calWeek .event_1 a,
#datePicker .calWeek .event_2 a {
	border-radius: 15px;
	height: 30px;
	width: 30px;
	margin: 0 auto;
	margin-bottom: 5px;
}
#datePicker .calWeek .today span,
#datePicker .calWeek .today a {
	background: #f5f6f6;
}
.greyBackground #datePicker .calWeek .today span,
.greyBackground #datePicker .calWeek .today a {
	background: var(--color_bg);
    color: var(--color_text);
}
#datePicker .calWeek .event_1 a {
	background: #ebeded;
}
#datePicker .calWeek .event_2 a {
	background: #cdd0d2;
}
#datePicker .calWeek .today a:hover,
#datePicker .calWeek .event_1 a:hover,
#datePicker .calWeek .event_2 a:hover {
	background: #37454b;
	color: var(--color_bg);
}
#calSrc .calForm > .optsContainer:first-child {
	margin-top: 2em;
}
#calSrcTrigger,
#calSrc {
	margin-top: 0;
	margin-bottom: 0;
}
#calSrcSwitch + #calSrc #calSrcTrigger .icon {
	float: right;
}
#calSrcSwitch:checked + #calSrc form {
	max-height: 2000px;
	padding-top: 15px;
	padding-bottom: 0;
}
#calSrc .btnContainer {
	margin-left: -8px;
	margin-right: -7px;
}
#calSrc .btnContainer .btn,
#calSrc .btnContainer button {
	width: 50%;
	width: calc(50% - 15px);
	display: block;
	float: left;
	text-align: center;
	margin: 0 7px 0 8px;
}
#calSrc .btnContainer .btn {
	text-align: left;
	line-height: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
}
#calSrc .btnContainer button:first-child {
	float: right;
}

.event .lightText {
	color: var(--color_lightText);
	font-style: italic;
	padding-bottom: 5px;
}
.event.list .lightText > * + *:before {
	content: ',';
	display: inline-block;
	width: .5em;
}
.event .eventInfo .headline {
	margin-top: 0;
}
.event .eventData .date {
	font-weight: bold;
}
.event .moreBtn {
	margin-top: .5em;
}
.event .eventDataCategory {
	font-weight: normal;
}
.eventDetail .dateText.greyBackground {
	padding: 5px;
	display: block;
}
.eventDetail .dateText .dateFromTxt,
.eventDetail .dateText .dateToTxt {
	font-weight: bold;
}
.eventDetail .dateText a {
	color: inherit;
	text-decoration: none;
}
.eventDetail .dateText a:hover {
	text-decoration: underline;
}

.eventDetail .dateText + h1 {
	margin-top: 0;
	margin-top: .5rem;
}
.event.list .eventInfo.hasImg {
	padding-left:105px;
}
.eventInfo .imgWrap {
	position:relative;
	margin-left:-105px;
	border-radius:45px;
	overflow:hidden;
}

@media only screen and (min-width: 720px) {
	.event.list .eventInfo.hasImg {
		padding-left:120px;
	}
	#calSrc form {
		margin-left: -15px;
		margin-right: -15px;
	}
	.events.list .eventData,
	#calSrc #datePicker {
		float: left;
		width: 33.33%;
		padding: 0 15px;
	}
	.events.list .eventInfo,
	#calSrc .calForm {
		float: right;
		width: 66.67%;
		padding: 0 15px;
	}
	.events.list .eventData {
		padding: 5px 15px 0 0;
		text-align: right;
	}
	.event .eventData > * {
		display: block;
		padding-bottom: 5px;
	}
	.event .eventData > * + *:before {
		content: '';
	}
	.event .eventInfo {
		padding-right: 0;
	}
	#calSrc .calForm > .optsContainer:first-child {
		margin-top: 0;
	}
	.eventDetail .dateText.greyBackground {
		padding: 10px 15px;
	}
    .events.list .wrap {
        position: relative;
        min-height: 120px;
    }
    .events.list .articleTeaser {
        position: absolute;
        right: 0;
        top: 0;
        width: 120px;
        height: 120px;
    }
    .events.list .articleTeaser .imgWrap {
        display: block;
        height: 100%;
        width: 100%;
        background-size: cover;
        background-position: center;
        padding-bottom: 0 !important;
        background-color: #eee;
    }
    .events.list .articleTeaser + .info {
        margin-right: 120px;
    }

}

#post_event {
	float:right;
	margin-top: 5px;
	margin-bottom: 5px;
}

/* Modul: LAKES OVERVIEW */
#lakesOverviewTrigger .wrap {
	padding: 10px 15px;
	background: #f5f6f6;
	margin: 0;
	-webkit-transition: padding .3s, background .3s;
	transition: padding .3s, background .3s;
}
#lakesOverviewTrigger .wrap .icon {
	float: right;
}
.slideDownSwitch:checked ~ .slideDownTargetWrap #lakesOverviewTrigger .wrap {
	background: none;
	padding-left: 0;
	padding-right: 0;
}
/* SHOP */
#cartProcessWrap {
	margin:2em 0;

}
#cartProcess {
	margin:0;
	padding:0;
	list-style:none;
	display:table;
	width:100%;
	border-collapse:separate;
}
#cartProcess li {
	padding:5px !important;
	display:table-cell;
	height:50px;
	text-align:center;
	vertical-align:middle;
	background:#f5f6f6;
	border-bottom:5px solid #f5f6f6;
}
#cartProcess li:before {
	display:none !important;
}
#cartProcess li.active {
	border-bottom-color:#cdd0d2;
}
#cartProcess.coupon li.active {
	background:#ffd744;
	font-size:2em;
	padding:20px;
}
#cartProcess li a {
	display:inline-block;
	text-decoration:none;
	color:#000;
}
#cartProcess.coupon li.active a {
	color:#fff;
}

@media only screen and (max-width: 719px) {
	#cartProcess li {
		position:relative;
		counter-increment: section;
	}
	#cartProcess li span:not([class^="icon"]) {
		display:none;
	}
	#cartProcess li:not(.icon) a:after { content:counter(section); }
	#cartProcess li.active {
		width:40%;
	}
	#cartProcess li.active span {
		display:block;
	}
	#cartProcess li.active a:after {
		display:none;
	}
}
.priceRow .price,
.priceAllBrutto .price {
	display:inline-block;
}
.priceRow {
	padding:8px 0;
}
.priceAllBrutto {
	font-weight:bold;
	border-top:1px solid #ccc;
}
@media only screen and (max-width: 719px) {
	#cart .cart_row_head {
		display:none;
	}
	#cart .cart_row_body {
		position:relative;
		padding:8px 0;
	}
	#cart .cart_row_body:nth-child(2n+1) {
		background:#f9f9f9;
		background: -moz-linear-gradient(left, rgba(249,249,249,0) 0%, rgba(249,249,249,1) 50%, rgba(249,249,249,0) 100%);
		background: -webkit-linear-gradient(left, rgba(249,249,249,0) 0%,rgba(249,249,249,1) 50%,rgba(249,249,249,0) 100%);
		background: linear-gradient(to right, rgba(249,249,249,0) 0%,rgba(249,249,249,1) 50%,rgba(249,249,249,0) 100%);
	}
	.cart_row_body:before,
	.cart_row_body:after {
		content: " "; /* 1 */
		display: table; /* 2 */
	}

	.cart_row_body:after {
		clear: both;
	}

	#cart .cart_column.count {
		position:absolute;
		bottom:8px;
		left:0;
		width:45px;
	}
	#cart .cart_column.count input {
		width:100%;
	}
	#cart .cart_column.count + .cart_column {
		width:100%;
		float:left;
	}
	#cart .price {
		padding-left:50px;
		clear:left;
	}
	#cart .price,
	#cart .priceAll {
		width:50%;
		float:left;
	}
	#cart .priceAll {
		text-align:right;
	}
	#cart .name {
		font-weight:bold;
		padding-bottom:8px;
	}
}
@media only screen and (min-width: 720px) {

	#cart {
		display:table;
		width:100%;
	}
	#cart .cart_row {
		display:table-row;
	}
	#cart .cart_row_body .cart_column {
		padding:8px 0;
	}
	#cart .cart_row_head .cart_head {
		font-weight:bold;
	}
	#cart .cart_column {
		display:table-cell;
	}
	#cart .count input {
		width:45px;
	}
	#cart .price,
	#cart .priceAll,
	.priceShipping .price,
	.priceAllBrutto .price {
		width:20%;
		text-align:right;
	}
}

#cart_payments .payment > input {
	display:none;
}
.payment > label {
	margin:0 0 16px 0;
	padding:16px;
	display:block;
	background:#f5f6f6;
	cursor:pointer;
	position:relative;
}
.payment > label * {
	margin:0;
}
.payment > input[type="radio"]:checked + label {
	background:#f5f6f6;
}
.payment .radioLabel.active:after,
.payment > input[type="radio"]:checked + label:after {
	font-family:'fontello';
	content:'\e82a';
	display:block;
	position:absolute;
	top:8px;
	right:8px;
}
.payment .imgLeft {
	float:left;
	margin:0 16px 16px 0;
}
.aleft {
	text-align:left;
}
.aright {
	text-align:right;
}
.optsContainer > .error:first-child + label.label_100, .optsContainer > label.label_100:first-child {
	width:100%;
	float:none;
}
.productConfirmation .optsContainer {
	margin:0 !important;
}
.articleGrid.productPayment.gridWidth_50:nth-child(2n) {
	border-top:1px solid #ccc;
}
.articleGrid.productPayment .payments {
	margin-top:1em;
}

@media only screen and (min-width: 640px) {
	.articleGrid.productPayment.gridWidth_50:nth-child(2n) {
		border-top:none;
		border-left:1px solid #ccc;
	}
	.articleGrid.productShipping .button,
	.articleGrid.productPayment .button {
		position:absolute;
		bottom:0;
		right:8px;
	}
}

.productForm {
	margin:0 -16px;
	padding:8px;
}
.productForm > * {
	float:left;
	padding:8px;
}
.productForm .shop_preis {
	width:40%;
}
.productForm .shop_preis strong {
	display:block;
	font-size:1.5em;
}
.productForm label {
	display:block;
	font-size:0.8em;
}
.productForm .shop_preis .product_mwst {
	font-size:0.9em;
}
.productForm .shop_preis .product_weight {
	display:block;
	font-size:0.9em;
}
.productForm .shop_auswahl,
.productForm .buttonWrap {
	width:60%;
}
.productForm .buttonWrap > div {
	padding-left:50px;
	position:relative;
}
.productForm .shop_auswahl select {
	height:40px;
	max-width:100%;
	width:100%;
}
.productForm .buttonWrap .shop_anzahl {
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	width:50px;
	margin:0px;
}
.productForm .buttonWrap button {
	width:100%;
	background:#37454b;
	color:#fff;
}
.productForm .buttonWrap .shop_anzahl label {
	display:none;
}
.productForm .buttonWrap .shop_anzahl input {
	height:100%;
	width:100%;
	padding:0 5px;
	text-align:center;
}
#productList .articleGrid .wrap {
	border-bottom:0 !important;
	background:none !important;
}
#productList .articleGrid .info {
	position:relative;
	z-index:2;
	margin:-20px 0 0;
	background:#f5f6f6;
	padding:16px;
	border-bottom: 5px solid #37454b;
}
#productList .article h2 {
	margin-top:0;
}
#productList .articleGrid .textWrap {
	position:relative;
	max-height:220px;
	overflow:hidden;
	margin-bottom:-10px;
	padding-bottom:30px;
	-webkit-transition: max-height .3s cubic-bezier(0,1,0,1);
	transition: max-height .3s cubic-bezier(0,1,0,1);
}
#productList .articleGrid .textWrap:after {
	content:'';
	position:absolute;
	display:block;
	left:0;
	right:0;
	bottom:0;
	height:30px;
	background: -moz-linear-gradient(top, rgba(245,246,246,0) 0%, rgba(245,246,246,1) 100%);
	background: -webkit-linear-gradient(top, rgba(245,246,246,0) 0%,rgba(245,246,246,1) 100%);
	background: linear-gradient(to bottom, rgba(245,246,246,0) 0%,rgba(245,246,246,1) 100%);
}
#productList .articleGrid .expand {
	display:none;
}
#productList .articleGrid .expand:checked + .textWrap {
	max-height:10000px;
	-webkit-transition: max-height .3s cubic-bezier(1,0,1,0);
	transition: max-height .3s cubic-bezier(1,0,1,0);
}
#productList .articleGrid label[name=expand] {
	position:absolute;
	cursor:pointer;
}
#productList .articleGrid label[name=expand] {
}
#productList .articleGrid .expand:checked + .textWrap + label[name=expand] span {
	transform:rotate(180deg);
}
.optsContainer.opts_street,
.optsContainer.opts_number {
	margin-top:1em;
}
.optsContainer.opts_street {
	width:80%;
}
.optsContainer.opts_number {
	width:20%;
	width:calc(20% - 10px);
	margin-left:calc(10px);
}
#cartNavi {
	margin-bottom:1em;
}

/* EINLEITUNGSBOX*/
:not(.gridWrap) > article.tax_einleitungsbox {
	margin-left:0;
	margin-right:0;
	padding-left:15px;
	padding-right:15px;
	padding-top:4em;
	padding-bottom:2em;
	width:auto;
	background-image:url(../img/box_logo_cs_0_.png);
	background-position:center center;
	background-repeat:no-repeat;
}
:not(.gridWrap) > article.tax_einleitungsbox .gridWidth_50 > h1:first-child,
:not(.gridWrap) > article.tax_einleitungsbox .gridWidth_50 > h2:first-child,
:not(.gridWrap) > article.tax_einleitungsbox .gridWidth_50 > h3:first-child {
	margin-top:0;
}
:not(.gridWrap) > article.tax_einleitungsbox:first-child {
	margin-top:-25px;
	padding-top:80px;
}
@media only screen and (min-width: 1080px) {
    :not(.gridWrap) > article.tax_einleitungsbox {
		padding-left:5%;
		padding-right:5%;
		padding-left:calc(5.517% + 15px);
		padding-right:calc(5.517% + 15px);
		margin-left:-5.517%;
		margin-right:-5.517%;
		width:auto;
	}
}
@media only screen and (min-width: 1440px) {
    :not(.gridWrap) > article.tax_einleitungsbox {
		padding-left:12%;
		padding-right:12%;
		padding-left:calc(12.5% + 15px);
		padding-right:calc(12.5% + 15px);
		margin-left:-12.5%;
		margin-right:-12.5%;
	}
}
@media only screen and (min-width: 1680px) {
    :not(.gridWrap) > article.tax_einleitungsbox {
		padding-left:50%;
		padding-right:50%;
		padding-left:calc(50% + 15px);
		padding-right:calc(50% + 15px);
		margin-left:-50%;
		margin-right:-50%;
	}
}

/* POPUP */
#popup {
	visibility:hidden;
	z-index:1000;
	position:fixed;
	height:100%;
	width:100%;
	top:0;
	left:0;
	text-align:center;
	background:rgba(0,0,0,0);
	overflow:hidden;
	transition:visibility 0.5s, background 0.5s;
}
.popup #popup {
	visibility:visible;
	background:rgba(0,0,0,0.5);
}
#popupContainer {
	position:relative;
	box-sizing:border-box;
	width:720px;
	max-width:100%;
	height:80%;
	margin-top:20%;
	margin-top:20vh;
	display:inline-block;
	opacity:0;
	transition:margin-top .5s , opacity .5s;
}
.popup #popupContainer {
	margin-top:10%;
	margin-top:10vh;
	opacity:1;
}
#popupContent {
	box-sizing:border-box;
	text-align:left;
	padding:45px 20px 20px;
	height:100%;
	background-color:#fff;
	box-shadow:0 7px 15px rgba(0,0,0,0.6);
	overflow:auto;
}
#popupClose {
	position:absolute;
	z-index:10;
	right:0;
	top:0;
	padding:25px;
	cursor:pointer;
	overflow:hidden;
	color:#fff;
	background:#385020;
    transition: transform 1s ease-in-out 0s;
}
#popupClose > * {
	position:relative;
}
#popupClose:before,
#popupClose:after {
	content:'';
	height: 4px;
	width: 24px;
	position:absolute;
	top:23px;
	left:14px;
	background: #FFF;
	display: block;
	transform: rotate(45deg);
	transform-origin:50% 50%;
}
#popupClose:after {
	transform: rotate(-45deg);
}

#popupContent .none,
#popupContent .none img,
#popupContent .img img {
	max-width:100%;
	height:auto !important;
}
#popupContent .none {
	margin-bottom:1em;
}
#popupContent .headlineImg h1,
#popupContent .headlineImg h2,
#popupContent .headlineImg h3 {
	display:block;
}
#popupContent .headlineImg img {
	display:none;
}
#popup p.link {
	font-weight:bold;
}

/* ==========================================================================
   Accessibility
   ========================================================================== */
#a11yReadspeakerButton {
    position: fixed;
    bottom: 10px;
    left: 10px;
    margin: 0;
    width: calc(100% - 20px - 3.75rem) !important;
}
#a11yReadspeakerButton.rsexpanded .rsbtn_play {
    padding: 0;
}
#a11yReadspeakerButton.rsexpanded .rsbtn_play .rsbtn_left {
    overflow: hidden;
    width: 0;
    margin-left: 2.3333em;
}
#a11yNavControlTrigger {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    flex-grow: 1;
    color: inherit;
}
#a11yNavControlTrigger .optsInputLabel {
    flex-grow: 1;
}
#a11yNavControlTrigger .state {
    flex-shrink: 0;
    display: flex;
}
#a11yNavControlTrigger .state .vcCssIcon {
    transition: all .3s;
}
#a11yNavControlTrigger .state .on,
#a11yNavControlTrigger[aria-expanded="true"] .state .off {
    display: none;
}
#a11yNavControlTrigger[aria-expanded="true"] .state .on,
#a11yNavControlTrigger .state .off {
    display: block;
}
#a11yNavControlTrigger[aria-expanded="true"] .vcCssIcon {
    transform: rotate(180deg);
}

/* Font Size */
.fs_bigger body {
    font-size: 18px;
}
.fs_big body {
    font-size: 22px;
}

/* Line Height */
.lh_bigger body {
    line-height: 1.75;
}
.lh_big body {
    line-height: 2;
}

