@charset 'UTF-8';

/** reset **/
* { margin: 0px; padding: 0px; }
h1, h2, h3, h4, h5, h6,
strong, b, em, i, a { color: inherit; font-weight: normal; font-style: normal; }
img, fieldset { border: 0px; }
a { color: #009260; text-decoration: none; -webkit-tap-highlight-color: rgba(0, 146, 96, 0.3); }
html, body { font-size: 100%; } /* => 16px */
body { font-family: 'NewsGothicLT', sans-serif; color: #222; background-color: #fff; }
textarea { resize: vertical; }
/** standards / helper classes **/
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; 
}

::selection {
	color: #fff;
	background-color: #34ac78;
}
::-moz-selection {
	color: #fff;
	background-color: #34ac78;
}
img,
object,
embed {
  	max-width: 100%;
  	height: auto; 
}

object,
embed {
  	height: 100%; 
}

img {
	display: block;
  	-ms-interpolation-mode: bicubic; 
}

.aural-only {
	position: absolute !important;
	height: 1px; width: 1px; 
	overflow: hidden;
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);	
}
.hide { display: none; }

.clear { clear: both; }
.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}
.clearfix:after {
    clear: both;
}
.clearfix {
    *zoom: 1;
}

.center-h {
	position: relative;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}
.center-v {
	position: relative;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.center-h.center-v {
	position: relative;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.align-right {
	text-align: right;
}
.align-left {
	text-align: left;
}
.no-user-selection {
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.no-tap-highlight {
	-webkit-tap-highlight-color: transparent;
}

@-webkit-keyframes fadeInFromNone {
	0% {
		display: none;
		opacity: 0;
	}
	1% {
		display: block;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeInFromNone {
	0% {
		display: none;
		opacity: 0;
	}
	1% {
		display: block;
	}
	100% {
		opacity: 1;
	}
}

.iframe-container-youtube {
	position: relative; 
	height: 0;
	padding: 30px 0 56.24%;
	overflow: hidden;
}
.iframe-container-youtube > iframe {
	height: 100%; width: 100%;
	position: absolute;
	left: 0; top: 0; 
	border: none;
}

/** standard grid base **/
.row:before,
.row:after {
	content: "";
	display: table;
}
.row:after {
	clear: both;
}
.col {
	float: left;
	position: relative;
}
/* large */
.col-1 { width: 8.33333%; }
.col-2 { width: 16.66667%; }
.col-3 { width: 25%; }
.col-4 { width: 33.33333%; }
.col-5 { width: 41.66667%; }
.col-6 { width: 50%; }
.col-7 { width: 58.33333%; }
.col-8 { width: 66.66667%; }
.col-9 { width: 75%; }
.col-10 { width: 83.33333%; }
.col-11 { width: 91.66667%; }
.col-12 { width: 100%; float: none; }

/* medium @mediaquery */
/*
.col-medium-1 { width: 8.33333%; }
.col-medium-2 { width: 16.66667%; }
.col-medium-3 { width: 25%; }
.col-medium-4 { width: 33.33333%; }
.col-medium-5 { width: 41.66667%; }
.col-medium-6 { width: 50%; }
.col-medium-7 { width: 58.33333%; }
.col-medium-8 { width: 66.66667%; }
.col-medium-9 { width: 75%; }
.col-medium-10 { width: 83.33333%; }
.col-medium-11 { width: 91.66667%; }
.col-medium-12 { width: 100%; float: none; }
*/

/* small @mediaquery */
/*
.col-small-1 { width: 8.33333%; }
.col-small-2 { width: 16.66667%; }
.col-small-3 { width: 25%; }
.col-small-4 { width: 33.33333%; }
.col-small-5 { width: 41.66667%; }
.col-small-6 { width: 50%; }
.col-small-7 { width: 58.33333%; }
.col-small-8 { width: 66.66667%; }
.col-small-9 { width: 75%; }
.col-small-10 { width: 83.33333%; }
.col-small-11 { width: 91.66667%; }
.col-small-12 { width: 100%; float: none; }
*/


/** block grid base **/
.block-grid { /*margin: 0 -1.2% 0 -1.2%;*/ }
.block-grid:before,
.block-grid:after {
	content: "";
	display: table;
}
.block-grid:after {
	clear: both;
}
.block-grid-item {
	float: left;
	padding: 0 1.2%;
}
/* large */
/* 5 blocks in a row */
.block-grid-large-5 .block-grid-item { width: 20%; }
.block-grid-large-5 .block-grid-item:nth-of-type(5n+1) { clear: left; }
/* 4 blocks in a a row */
.block-grid-large-4 .block-grid-item { width: 25%; }
.block-grid-large-4 .block-grid-item:nth-of-type(4n+1) { clear: left; }


/* medium @mediaquery */
/*
.block-grid-medium-3 .block-grid-item { width: 33.33333%; }
.block-grid-medium-3 .block-grid-item:nth-of-type(1n) { clear: none; }
.block-grid-medium-3 .block-grid-item:nth-of-type(3n+1) { clear: left; }
*/

/* small @mediaquery */
/*
.block-grid-small-2 .block-grid-item { width: 50%; }
.block-grid-small-2 .block-grid-item:nth-of-type(1n) { clear: none; }
.block-grid-small-2 .block-grid-item:nth-of-type(2n+1) { clear: left; }
*/

/** util **/
.util--margin-bottom-30 { margin-bottom: 30px; }

/** forms **/
form .row {
	position: relative;
	margin-bottom: 4px;
}
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
	padding: 3px 5px;
	font-family: 'NewsGothicLT', sans-serif;
	border: 1px solid #9a9a9a;
	border-radius: 2px;
	color: #444;
	transition: border-color 0.2s ease;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
	border-color: #000;
}
select {
	padding: 3px 5px;
	font-family: 'NewsGothicLT', sans-serif;
	border: 1px solid #9a9a9a;
	border-radius: 2px;
	color: #444;
	transition: border-color 0.2s ease;
}
select:focus { border-color: #000; }
form .row.has-inline-submit input {
	padding-right: 25px;
}
button[type="submit"].inline {
	width: 23px;
	position: absolute;
	top: 0; right: 0; bottom: 0;
	background: #000 url('../img/icon_button_arrow.png') no-repeat 50% 50%;
	background-size: 11px auto;
	border: none;
	text-indent: -100px;
	overflow: hidden;
	cursor: pointer;
	transition: background-color 0.2s ease;
}
button[type="submit"].inline:hover,
button[type="submit"].inline:focus {
	background-color: #333;
}
/* Formhandler contact forms */
/*.mailform { 
	width: 75%;
	margin: 40px 0;
	padding: 40px 20px 40px 60px;
	background: transparent linear-gradient(to bottom, #e3e5e4 0%, #fff 30%);
}*/
.powermail_form.two-column {
	overflow: hidden;
}
.powermail_form.two-column .powermail_fieldset {
	float: left;
	width: 50%;
}
.powermail_form.two-column .powermail_fieldset.column-one {
	padding-right: 15px;
}
.powermail_form.two-column .powermail_fieldset.column-two {
	padding-left: 15px;
}
.mailform h2 { text-shadow: 1px 1px #fff; }
.mailform .row {
	margin-bottom: 8px;
}
.mailform p.error {
	color: #e20000;
}
.mailform input[aria-invalid="true"] {
	border-color: #e20000;
}
.mailform label[aria-invalid="true"] {
	color: #e20000;
}
.mailform label,
.mailform .label,
.mailform .powermail_label { 
	float: left; 
	width: 38%;
	margin-top: 6px;
	margin-right: 2%;
}
.mailform input[type="text"],
.mailform input[type="tel"],
.mailform input[type="email"],
.mailform input[type="password"],
.mailform textarea {
	width: 60%;
	padding: 6px 10px;
	font: inherit;
	color: #222;
}
.mailform select {
	width: 60%;
	font: inherit;
	padding: 6px 10px;
}
.mailform .powermail_radio,
.mailform .powermail_checkbox {
	float: left;
	margin-right: 9px;
	position: relative;
	top: 3px;
}
.mailform .powermail_radio_outer,
.mailform .powermail_check_outer {
	float: left;
	margin-top: 10px;
}
.mailform .powermail_radio_inner,
.mailform .powermail_check_inner {
	overflow: hidden;
	margin-bottom: 6px;
}
.mailform .powermail_radio_inner > label,
.mailform .powermail_check_inner > label {
	width: auto;
	margin-top: 0;
	margin-right: 0;
}
.mailform textarea { min-height: 140px; }  
.mailform .fixed-input {
	float: left;
	width: 60%;
	margin-top: 6px;
	font-weight: bold;
}
.mailform button[type="submit"] {
	margin-top: 20px;
	margin-left: 40%;
	padding: 4px 11px;
	width: 60%;
	background-image: none;
}
.mailform-privacy-hint {
	margin-top: 30px;
	font-size: 13px;
}

/* general contact */
.mailform--contact-primary,
.mailform--contact-secondary {
	float: left;
	width: 50%;
}
.mailform--contact-primary { padding-right: 2%; }
.mailform--contact-secondary { padding-left: 2%; }

.mailform--contact-primary label {
	width: 90%;
	margin: 0;
}

.mailform--contact-primary textarea {
	width: 70%;
	min-height: 140px;
}
.mailform--contact-primary label[for="contact-comment"] {
	margin: 20px 0px 6px 0px;
}
.mailform--contact-primary input[type="radio"],
.mailform--contact-primary input[type="checkbox"] {
	float: left;
	margin: 4px 7px 0px 0px;
}
.expandable-row--container { 
	padding: 30px 0 0 30px;
	clear: both; 
}
.contact-person { margin-bottom: 18px; }
.contact-person input[type="radio"] {
	float: left;
}
.contact-person label {
	width: 80%;
}
.contact-person label img {
	float: left; 
	width: 28%;
	margin-right: 10px; 
}
.contact-person label > div {
	float: left;
	width: 60%;
}
.mailform-container {
	margin-bottom: 30px;
	padding: 15px;
	background-color: #f3f3f3;
}
.mailform-container label {
	float: none;
	display: block;
	width: 100%;
	margin-bottom: 8px;
}
.mailform-container input[type="text"] {
	float: none;
	width: 100%;
}
.mailform-container .hint { margin-top: 16px; margin-bottom: 0; font-size: 80%; }

/* Leasing Calculator */
.leasing-calculator__summary {
	background-color: transparent;
	transition: background-color ease 0.3s;
}
.leasing-calculator--animation {
	background-color: #fff;
}

.leasing-calculator__container {
	width: 85%;
	margin-bottom: 30px;
}
.mailform-container .leasing-calculator__base[type="text"], 
.mailform-container .leasing-calculator__select {
    width: 100%;
}

.data-protection-hint {
	opacity: .85;
	margin: 30px 0 15px 0;
	font-size: 14px;
	border-top: 1px solid #ddd;
	padding-top: 15px;
	text-align: right;
}

/* Login/Registrierung */
.mailform--login,
.mailform--login-edit,
.mailform--login-registration {
	width: 60%;
	margin-top: 40px;
}

@media only screen and (max-width: 780px) {
	.mailform--contact-primary,
	.mailform--contact-secondary {
		float: none;
		width: 60%;
		padding: 0;
	}
	.mailform--contact-secondary {
		margin-top: 40px;
	}
}

@media only screen and (max-width: 590px) {
	.mailform--contact-primary,
	.mailform--contact-secondary {
		width: 100%;
	}
}

@media only screen and (max-width: 400px) {
	.mailform .row label,
	.mailform .row .label,
	.mailform .row .powermail_label {
		float: none;
		width: auto;
		display: block;
		margin-bottom: 4px;
	}
	.mailform input[type="text"],
	.mailform textarea {
		width: 100%;
	}
	.mailform button[type="submit"] {
		margin-left: 0;
		width: 100%;
	}

}

/** layout **/
.container {
	width: 960px;
	margin: 0 auto;
}
.container--wide {
	width: 1360px;
	margin: 0 auto;
}

/**
 * @section Header
 */
#header {
	position: relative;
	padding-top: 40px;
	padding-bottom: 26px;
}


/* Fixed Header */
@keyframes fadeInAndDown {
	0% {
	    opacity: 0;
	    transform: translateY(-20px);
	}
	100% {
	    opacity: 1;
	    transform: translateY(0px);
	}
}

@-webkit-keyframes fadeInAndDown {
	0% {
	    opacity: 0;
	    -webkit-transform: translateY(-20px);
	}
	100% {
	    opacity: 1;
	    -webkit-transform: translateY(0px);
	}
}

#header.is-pinned {
	position: fixed;
	top: 0; left: 0;
	z-index: 200;
	width: 100%;
	padding: 6px 0px;
	background-color: #fff;
	box-shadow: 0px 0px 8px 0px #999;
	animation-duration: 0.3s;
	animation-name: fadeInAndDown;
	-webkit-animation-duration: 0.3s;
	-webkit-animation-name: fadeInAndDown;
}

#header.is-pinned #main-nav,
#header.is-pinned #service-nav { clear: none; margin-top: 8px; }
#header.is-pinned #main-nav li.first-level > a { display: inline-block; height: 34px; }
#header.is-pinned #main-nav .dropdown {}
#header.is-pinned #logo img { display: none; }
#header.is-pinned #logo { 
	position: static;
	float: left;
	width: 40px; height: 40px;
	margin-right: 24px;
	background: url('../img/icon_altendorf.png') transparent no-repeat 50% 50% / 40px auto;
}

.header-banner {
	float: right;
	max-width: 430px;
	margin-top: 13px;
}
.header-banner a { outline: none; }
.header-banner img {
	width: 100%; height: auto;
}

#header.is-pinned .header-banner { display: none; }

#logo {
	float: left;
	width: 320px;
}
#main-nav-trigger {
	display: none; 
	position: relative;
	float: left; clear: left;
	width: 48px; height: 48px;
	border: none;
	text-indent: 110%;
	overflow: hidden;
	cursor: pointer;
	background: none;
	overflow: hidden;
	border: 1px solid transparent;
	-webkit-tap-highlight-color: transparent;
	outline: none;
}
#main-nav-trigger.is-active {
	border-color: #d9d9d9;
	border-radius: 4px;
	/*background-color: rgba(0, 0, 0, 0.02);*/
	background-image: linear-gradient(to bottom, #fff, #f3f3f3);
}

.icon--hb-menu {
	display: block;
	width: 34px; height: 26px;
	position: absolute;
	top: 50%; margin-top: -13px;
	left: 50%; margin-left: -17px;
	border-bottom: 4px solid #009260;
	border-top: 4px solid #009260;
}
.icon--hb-menu:after {
	content: "";
	position: absolute;
	top: 7px;
	left: 0; right: 0;
	height: 4px;
	background-color: #009260;
}

#main-nav {
	float: left;
	clear: left;
	margin: 34px 0px 0px 12px;
}
#main-nav li {
	list-style-type: none;
}

#main-nav li.first-level {
	float: left;
	/*margin-left: 58px;*/
}

#main-nav li.first-level:first-child { margin-left: 0; }
#main-nav li.first-level:first-child > a { padding-left: 0; }
#main-nav li.first-level:last-child > a { padding-right: 0; }

#main-nav li.first-level > a {
	padding: 0px 24px;
	text-decoration: none;
	font-size: 18px;
	color: inherit;
	outline: none;
	transition: color 0.3s ease-out;
}
#main-nav li.first-level.active > a,
#main-nav li.first-level > a:hover,
#main-nav li.first-level > a:focus, 
#main-nav li.first-level.is-hovered > a { 
	color: #009260; 
}

#main-nav .dropdown {
	display: none;
	position: absolute; z-index: 10;
	left: 0;
	width: 100%;
	padding: 50px 0px 80px 0px;
	background-color: rgba(255, 255, 255, 0.9);
}
/*#main-nav li.first-level:hover .dropdown { display: block; }*/
/*
#main-nav li.first-level:hover .dropdown {
	display: block;
	opacity: 1;
	-webkit-animation-duration: 0.5s;
	-webkit-animation-name: fadeInFromNone;
	animation-duration: 0.5s;
	animation-name: fadeInFromNone;
}*/
#main-nav .dropdown .container {
	padding-left: 13px;
}
#main-nav .dropdown .container > ul {
	float: left;
	margin-right: 40px;
}
#main-nav li.second-level > a {
	display: block;
	margin-bottom: 6px;
	font-family: 'NewsGothicLTStd-Medium', sans-serif;
	font-size: 19px;
}
#main-nav li.third-level {
	display: block;
	border-bottom: 1px solid #000;
}
#main-nav li.third-level > a {
	display: block;
	min-width: 120px;
	padding: 3px 20% 3px 0px;
	color: #000;
}

#main-nav-mobile { 
	display: none;
	width: 100%;
	padding: 0px;
	position: absolute;
	left: 0; top: 100%; z-index: 900;
	box-shadow: 0px 13px 30px -9px rgba(0, 0, 0, 0.6);
}

#main-nav-mobile li {
	list-style-type: none;
}
#main-nav-mobile .submenu-trigger {
	position: absolute;
	right: 0;
	top: 0;
	display: inline-block;
	width: 60px;
	height: 44px;
	border: none;
	background: url('../img/icon_arrow_down_white.png') no-repeat 50% 50% / 20px auto rgba(255, 255, 255, 0.1);
	cursor: pointer;
	text-indent: 110%;
	overflow: hidden;
	white-space: pre;
	-webkit-tap-highlight-color: transparent;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	outline: none;
}
#main-nav-mobile li.first-level.is-active .submenu-trigger {
	background-image: url('../img/icon_arrow_up_black.png');
	background-color: #fff;
	border-top: 1px dotted #ddd;
}
#main-nav-mobile li.first-level { position: relative; }
#main-nav-mobile li.first-level > a {
	display: block;
	padding: 7px 0px 7px 56px;
	background-color: #009260;
	background-color: rgba(0, 146, 96, 0.96);
	color: #fff;
	font-family: 'NewsGothicLTStd-Medium', sans-serif;
	font-size: 24px;
	line-height: 1.2;
	vertical-align: middle;
}
#main-nav-mobile li.first-level {
	border-bottom: 1px solid #fff;
}
#main-nav-mobile li.first-level:last-child {
	border-bottom: none;
}

/* 2nd lvl */
#main-nav-mobile li.first-level > ul {
	display: none;
	background-color: #fff;
	background-color: rgba(255, 255, 255, 0.98);
}
#main-nav-mobile li.second-level > a {
	display: block;
	padding: 7px 0px 7px 56px;
	border-bottom: 1px dotted #ddd;
	color: #222;
	font-family: 'NewsGothicLTStd-Medium', sans-serif;
	font-size: 20px;
}
#main-nav-mobile li.second-level:last-child > a {
	border-bottom: none;
}
/*.debug #main-nav-mobile {
	display: block !important;
}*/

#service-nav {
	float: right;
	margin-top: 34px;
}
#login-link,
#search-link,
#language-selector {
	float: left;
}

#login-link,
#search-link {
	display: inline-block;
	width: 23px; height: 23px;
	background-size: contain;
	background-repeat: no-repeat;
	text-indent: 110%;
	white-space: nowrap;
	overflow: hidden;
}
#login-link { 
	margin-right: 10px;
	background-image: url('../img/icon_login.png'); 
}
#search-link { 
	background-image: url('../img/icon_search.png'); 
}

#language-selector { 
	position: relative; 
	top: 2px; 
	margin-left: 10px; 
}
#language-selector li { list-style-type: none; }
#language-selector li.dropdown { 
	display: none; 
	width: 94px;
	position: absolute; z-index: 10;
	left: -6px;
	padding: 6px;
	background-color: #fff;
	box-shadow: 0px 8px 13px -9px #333;
}
#language-selector li a { 
	position: relative;
	display: block;
	text-transform: lowercase;
	color: #000;
	font-size: 14px;
	-webkit-tap-highlight-color: transparent;
}
#language-selector li a::before {
	content: '';
	position: relative;
	top: 4px;
	margin-right: 7px;
	display: inline-block;
	width: 20px; height: 20px;
	background-repeat: no-repeat;
	background-size: contain;
}
#language-selector li.current a::before {
	top: 0;
	margin-right: 3px;
}

#language-selector li a.language-selector-de::before {
	background-image: url('../img/flags/DE.png');
}
#language-selector li a.language-selector-en::before {
	background-image: url('../img/flags/GB.png');
}
#language-selector li a.language-selector-fr::before {
	background-image: url('../img/flags/FR.png');
}
#language-selector li.current {}
#language-selector li.current a {
	padding-right: 14px;
	background: transparent url('../img/icon_langnav_down.png') no-repeat 100% 7px;
	background-size: 10px 6px;
}
#language-selector li.current a span {
	display: none;
}

.icon--facebook,
.icon--instagram,
.icon--youtube {
	display: inline-block;
	width: 20px; height: 20px;
	text-indent: 110%;
	white-space: nowrap;
	overflow: hidden;
	background: transparent url('../img/icon_facebook.png') no-repeat 0px 0px / contain;
}
.icon--instagram { background-image: url('../img/icon_instagram.png'); }
.icon--youtube { background-image: url('../img/icon_youtube.png'); }

.icon--facebook:hover,
.icon--instagram:hover,
.icon--youtube:hover {
	opacity: 0.9;
}
.icon--facebook {
	margin-left: 24px;
}
#service-nav [class*="icon--"] {
	float: left;
	margin-right: 9px;
}

@media only screen and (max-width: 1100px) {
	#main-nav {
		margin-left: 12px;
	}
	#main-nav li.first-level > a { padding: 0px 20px; }
}

@media only screen and (max-width: 860px) {
	#header {
		padding: 40px 6% 14px 6%;
	}
	#logo {
		width: 310px;
		margin-bottom: 30px;
	}
	#login-link, #search-link { height: 36px; width: 36px; }
	#language-selector {
		margin-left: 17px;
		top: 4px;
	}
	#language-selector li a { font-size: 18px; }
	#language-selector li.current a {
		padding-right: 20px;
		background-position: 100% 8px;
		background-size: 12px 8px;
	}
	#service-nav { margin-top: 0px; }
	#main-nav { display: none; }
	#main-nav-trigger { display: inline-block; margin-left: 11px; margin-top: -5px; }

	#service-nav .icon--facebook {
		margin-left: 22px;
	}

	#service-nav [class*="icon--"] {
		width: 32px; height: 32px;		
	}

	/* Header pinned */
	#header.is-pinned #main-nav-trigger {
		clear: none;
		margin-top: -3px;
	}
	#header.is-pinned #logo { 
		margin-bottom: 0;
	}
	#header.is-pinned #service-nav { 
		margin: 4px 5px 0px 0px;
	}

	.header-banner { display: none; }
}


/**
 * @module Slider
 */
 .slider { 
 	position: relative; 
 	max-width: 1360px;
 	margin: 0 auto;
 }
 .slider--item { position: relative; }
 .slider--item > a 	{ -moz-user-select: none; user-select: none; -webkit-tap-highlight-color: transparent; outline: none; }
 .slider--item .facebook-badge {
 	width: 130px; height: 130px;
 	position: absolute;
 	right: 0; top: 0;
 	background: transparent url('../img/icon_facebook_badge.png') no-repeat 0px 0px / 100%;
 	text-indent: 110%;
 	white-space: nowrap;
 	overflow: hidden;
 }
 .slider--image {
 	position: relative;
 }
 .slider--image img { width: 100%; }
 .slider--text {
 	position: absolute;
 	bottom: 44px;
 	width: 720px;
 	color: #000;
 }
 .slider--headline {
 	padding: 20px 30px 14px 95px;
 	background-color: rgba(255, 255, 255, 0.9);
 	font-family: 'NewsGothicLTStd-Medium', sans-serif;
 	font-size: 36px;
 	text-transform: uppercase;
 }
 .slider--subline {
 	margin-top: 8px;
 	padding: 10px 30px 10px 0px;
 	background-color: rgba(255, 255, 255, 0.9);
 	text-align: right;
 	font-family: 'FeltTipSenior', serif;
 	font-size: 32px;
 }
 /*
 .slider--nav-mobile { display: none; }
 .slider--direction-nav { list-style-type: none; }
 .slider--next {
 	position: absolute;
 	z-index: 50;
 	right: 0px;
 	top: 50%;
 	width: 130px; height: 160px;
 	margin-top: -80px;
 	border: none;
 	background: transparent url('../img/icon_slider_next.png') no-repeat 0px 0px;
 	background-position: 50% 50%;
 	background-size: 40px auto;
 	text-indent: 110%;
 	white-space: nowrap;
 	overflow: hidden;
 	cursor: pointer;
 	outline: none;
 	transition: background-color 0.2s ease;
 }
 .slider--next:hover {
 	background-color: rgba(0, 146, 96, 0.60);
 }
 .slider--nav-prev { display: none; }*/

 .slider--nav-mobile { display: none; }
 .slider--direction-nav { list-style-type: none; }
 .slider--next,
 .slider--prev {
 	position: absolute;
 	z-index: 50;
 	right: 0px;
 	top: 50%;
 	width: 80px; height: 100px;
 	margin-top: -50px;
 	border: none;
 	background: transparent url('../img/icon_slider_next.png') no-repeat 0px 0px;
 	background-position: 50% 50%;
 	background-size: 26px auto;
 	text-indent: 110%;
 	white-space: nowrap;
 	overflow: hidden;
 	cursor: pointer;
 	outline: none;
 	transition: background-color 0.2s ease, opacity 0.2s ease;
 	opacity: 0;
 }
 .slider:hover .slider--next,
 .slider:hover .slider--prev {
 	opacity: 1;
 }
 .slider--prev {
 	right: auto;
 	left: 0;
 	background-image: url('../img/icon_slider_prev.png');
 }
 .slider--next:hover,
 .slider--prev:hover {
 	background-color: rgba(160, 160, 160, 0.7);
 }
 .slider--control-paging { 
 	position: absolute;
 	bottom: -35px;
 	left: 50%;
 	transform: translate(-50%, 0); 
 	z-index: 100;
 }
 .slider--control-paging li {
 	float: left;
 	margin: 0 6px;
 	list-style-type: none;
 }
 .slider--control-paging li a {
 	display: block;
 	width: 16px; height: 16px;
 	background-color: #ddd;
 	cursor: pointer;
 	border-radius: 50%; 	
 	text-indent: -110%;
 	white-space: nowrap;
 	overflow: hidden;
 }
 .slider--control-paging li a.slider--active {
 	background-color: #009260;
 }
 
@media only screen and (max-width: 1100px) {
	.slider--text {
		bottom: 30px;
		width: 65%;
	}
	.slider--headline {
		font-size: 28px;
	}
	.slider--subline {
		font-size: 28px;
	}
	.slider--next { 
		width: 90px;
		height: 110px;
		margin-top: -55px;
		background-size: 28px auto;
	}
 	.slider--item .facebook-badge {
 		width: 110px; height: 110px;
 	}
}
@media only screen and (max-width: 810px) {
	.slider--headline {
		font-size: 20px;
	}
	.slider--subline {
		font-size: 24px;
	}
 	.slider--item .facebook-badge {
 		width: 93px; height: 93px;
 	}
}
@media only screen and (max-width: 680px) {
	.slider { margin-bottom: 50px; }
	.slider--text {
		bottom: 20px;
	}
	.slider--headline {
		padding-left: 40px;
	}
}
@media only screen and (max-width: 600px) {
	.slider--text {
		position: static;
		width: 100%;
	}
	.slider--headline,
	.slider--subline { padding-left: 40px; background-color: #fff; text-align: left; }
	.slider--subline { margin-top: 0px; padding-top: 0; }
	/*.slider--nav { display: none; }
	.slider--nav-mobile {
		display: block;
	}*/
	.slider--next {
		margin-top: 15%;
		top: 0;
	}
}
@media only screen and (max-width: 440px) {
	.slider--next { 
		width: 50px;
		height: 60px;
		background-size: 16px auto;
	}
 	.slider--item .facebook-badge {
 		width: 60px; height: 60px;
 	}
}
@media only screen and (max-width: 380px) {
	#logo { width: 95%; }
}

/**
 * @section Header Image
 */
#header-image { max-width: 1360px; margin: 0 auto; }

/**
 * @section Main content
 */
#main-content { padding-top: 60px; padding-bottom: 100px; }

@media only screen and (max-width: 580px) {
	#main-content { padding-top: 30px; padding-bottom: 30px; }
}

/**
 * @module Teaser
 */
 .teaser { overflow: hidden; }
 .teaser:not(.teaser--single-view) + .teaser { margin-top: 60px; }
 .teaser:last-of-type { margin-bottom: 40px; }
 .teaser-container {
 	margin-bottom: 80px;
 }
 .teaser--with-separator .teaser--image {
 	background-image: linear-gradient(to bottom, #e6e6e6, #fff);
 	/*border-right: 1px solid #cbcaca;*/
 	border-right: 1px solid #ddd;
 }
 .teaser--with-separator .teaser--image > img {
 	/* prevents border/gradient bug in FF */
 	border-right: 1px solid transparent;
 }
 .teaser--item:nth-of-type(3n) .teaser--image, 
 .teaser--with-separator .teaser--item:nth-of-type(3n) .teaser--image {
 	border-right: 1px solid transparent;
 }
 .teaser--item {
 	float: left;
 	width: 33.33333%;
 	margin-bottom: 10px;
 }
 .teaser--default .teaser--item {
 	padding: 0 3px;
 	border: none;
 }
 .teaser--default .teaser--inner {
 	margin: 0 -3px;
 }
 .teaser--item:nth-child(4n+1) { clear: left; }
 .teaser--item:hover .teaser--image { opacity: 0.9; }
 .teaser--item > a { display: block; }
 .teaser--single-view { margin-bottom: 30px; }
 .teaser--single-view .teaser--item {
 	float: none;
 	width: 100%;
 }
 .teaser--image { transition: opacity 0.2s ease; border-right: 1px solid #fff; }
 .teaser--image img { width: 100%; }
 .teaser--text {
 	padding: 16px 4px;
 	transition: box-shadow 0.1s ease;
 }
 .teaser--item > a:active .teaser--text {
 	/*box-shadow: inset 0px 0px 13px -6px #999;*/
 	box-shadow: inset 0px -8px 13px -5px #ccc;
 }
 .teaser--title,
 .teaser--subline {
 	display: block;
 	text-align: center;
 	transition: color 0.1s ease;
 }
 .teaser--title {
 	font-family: 'NewsGothicLTStd-Medium', sans-serif;
 	font-size: 24px;
 	color: #009260;
 	text-transform: uppercase;
 }
 .teaser--item:hover .teaser--title { color: #42a575; }
 .teaser--subline {
 	color: #000;
 }
 .teaser--item:hover .teaser--subline { color: #555; }

@media only screen and (max-width: 820px) {
	.teaser--title { font-size: 20px; }
}
@media only screen and (max-width: 660px) {
	.teaser--title { font-size: 17px; }
}
@media only screen and (max-width: 580px) {
	.teaser {
		margin-bottom: 0;
	}
	.teaser--item,
	.teaser--single-view .teaser--item {
		float: none;
		width: 102%;
		margin: 0 -1% 24px 0;
	}
}
@media only screen and (max-width: 470px) {
	/*.teaser--item {
		width: 102%;
		margin: 0 -1%;
	}*/
}
/* Ausnahme für Homepage */
.page-uid-3 .teaser--with-separator {
	margin-bottom: 60px;
}

/**
 * @module Prominent Teaser
 */
.prominent-teaser { margin-top: 60px; margin-bottom: 30px; }
.prominent-teaser--image { margin-bottom: 20px; }
.prominent-teaser--content { padding: 20px 3%; }

.prominent-teaser--primary,
.prominent-teaser--secondary {
	float: left;
	width: 50%;
} 
.prominent-teaser--primary {
	padding-right: 2%;
}
.prominent-teaser--primary .button {
	margin-top: 30px;
}
.prominent-teaser--secondary {
	padding-left: 2%;
}
.link--hotline,
.link--machine-registration {
	display: inline-block;
	margin: 12px 0;
	padding-left: 64px;	
	font-size: 20px;
	background-repeat: no-repeat;
	background-size: 50px 50px;
	background-position: 0px 50%;
}
.link--hotline span:first-child,
.link--machine-registration span:first-child {
	display: block;
	color: #222;
}
.link--hotline {
	background-image: url('../img/icon_hotline.png');
}
.link--machine-registration {
	background-image: url('../img/icon_machine_registration.png');
}

@media only screen and (max-width: 780px) {
	.page-uid-3 .teaser--with-separator {
		margin-bottom: 30px;
	}
	.prominent-teaser { margin-top: 0px; margin-bottom: 15px; }

	.prominent-teaser--primary {
		float: none;
		width: 100%;
		padding-right: 0;
		margin-bottom: 40px;
	}
	.prominent-teaser--secondary {
		float: none;
		width: 100%;
		padding-left: 0;
		overflow: hidden;
	}
	.prominent-teaser--primary .button { margin-top: 20px; }
	.link--hotline,
	.link--machine-registration {
		float: left;
		width: 50%;
		font-size: 14px;
		padding: 10px 0px 10px 64px;
	}

}

@media only screen and (max-width: 560px) {
	.link--hotline,
	.link--machine-registration {
		float: none;
		padding: 20px 0px 20px 90px;
		width: 100%;
		font-size: 18px;
		background-size: 74px 74px;
	}
}

@media only screen and (max-width: 380px) {
	.link--hotline,
	.link--machine-registration {
		padding: 10px 0px 10px 64px;
		font-size: 14px;
		background-size: 50px 50px;
	}
}

/**
 * @module Timeline
 */
.timeline {
	position: relative;
	margin-bottom: 40px;
	padding-bottom: 60px;
	background-color: #dedee0;
	background-image: radial-gradient(ellipse at center, #fff 0%, #dedee0 54%);
}
.timeline--items {
	position: relative;
	padding: 100px 2% 40px 2%;
}
.timeline--items:before {
	content: '';
	display: block;
	position: absolute;
	left: 50%; margin-left: -2px;
	bottom: 40px; top: 40px;
	width: 4px;
	background-color: #009260;
}
.timeline--item { 
	position: relative; 
	margin-bottom: 30px;
	overflow: visible !important;
}
.timeline--item:before {
	content: '';
	display: block;
	position: absolute;
	top: -9px;
	z-index: 10;
	width: 40px; height: 40px;
	background: transparent url('../img/icon_timeline_dot.png') no-repeat 0px 0px;
	background-size: contain;
}
.timeline--item:nth-child(even):before {
	right: -20px;
}
.timeline--item:nth-child(odd):before {
	left: -20px;
}
.timeline--item:nth-child(even) {
	float: left; clear: right;
	width: 50%;
	padding-right: 42px;
}
.timeline--item:nth-child(odd) {
	float: right; clear: left;
	width: 50%;
	padding-left: 42px;
}
.timeline--header {
	color: #009260;
	font-family: 'NewsGothicLTStd-Medium', sans-serif;
	font-size: 19px;
	margin-bottom: 5px;
}
.timeline--item:nth-child(even) .timeline--header {
	text-align: right;
}
.timeline--content {}
.timeline--content p { margin-bottom: 8px; }

.timeline--item:nth-child(even) .timeline--content {
	text-align: right;
}
.timeline--images {}
.timeline--images > img { float: left; margin-right: 10px; margin-bottom: 10px; }
.timeline--item:nth-child(even) .timeline--images > img { float: right; margin-right: 0; margin-left: 10px; }
.timeline--more, 
.timeline--less {
	width: 180px;
	height: 80px;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -90px;
	border: none;
	cursor: pointer;
	outline: none;
	text-indent: 110%;
	white-space: pre;
	overflow: hidden;
	background: transparent;
 	transition: all 0.2s ease;
}
.timeline--less { display: none; }
.timeline--more::-moz-focus-inner,
.timeline--less::-moz-focus-inner { border: 0; }
.timeline--more:before,
.timeline--more:after,
.timeline--less:before,
.timeline--less:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%; height: 100%;
	background: transparent none no-repeat 50% 50%;
	background-size: 60%;
	transition: opacity 0.2s ease;
}
.timeline--more:before {
	background-image: url('../img/icon_timeline_more_arrow.png');
}
.timeline--more:after {
	background-image: url('../img/icon_timeline_more_arrow_white.png');
	opacity: 0;
}

.timeline--less:before {
	background-image: url('../img/icon_timeline_less_arrow.png');
}
.timeline--less:after {
	background-image: url('../img/icon_timeline_less_arrow_white.png');
	opacity: 0;
}

.timeline--more:hover,
.timeline--less:hover {
 	background-color: rgba(0, 146, 96, 0.7);
}
.timeline--more:hover:before,
.timeline--less:hover:before {
	opacity: 0;
}
.timeline--more:hover:after,
.timeline--less:hover:after {
	opacity: 1;
}

@media only screen and (max-width: 600px) {
	.timeline--items { padding: 100px 10px 40px 10px; }
	.timeline--items:before {
		left: 30px;
		margin-left: 0;
	}
	.timeline--item {
		display: block !important;
		float: none !important;
		width: 100% !important;
		padding-right: 0 !important;
		padding-left: 60px !important;
	}
	.timeline--more,
	.timeline--less { display: none !important; }
	.timeline--item:before {
		width: 30px; height: 30px;

		top: -3px;
		right: auto !important;
		left: 7px !important;
	}
	.timeline--item::after {
		content: '';
		width: 34px;
		height: 4px;
		position: absolute;
		left: 21px;
		top: 10px;
		z-index: 0;
		background-color: #009260;

	}
	.timeline--item .timeline--header,
	.timeline--item .timeline--content { text-align: left !important; }
	.timeline--item .timeline--images > img { float: left !important; margin-right: 10px !important; margin-left: 0 !important; }


}

/**
 * @module Image Block
 */
 .image-block { margin-top: 40px; margin-bottom: 40px; padding: 0 2%; }
 .image-block--item {
 	float: left;
 	width: 50%;
 	margin-bottom: 40px;
 }
 .image-block--item:nth-child(odd) {
 	clear: left;
 }
 .image-block--image {
 	float: left;
 	width: 38%;
 }
 .image-block--image > img { width: 100%; }
 .image-block--text {
 	float: left;
 	width: 58%;
 	margin-left: 4%;
 	padding-right: 2%;
 }
 .image-block--text > h3 {
 	margin-bottom: 0px;
 	font-size: 26px;
 }
 .image-block--text > p {
 	margin-bottom: 16px;
 }

@media only screen and (max-width: 800px) {
	.image-block--item {
		float: none !important;
		width: auto;
	}
}

@media only screen and (max-width: 500px) {
	.image-block--item { margin-bottom: 20px; }
	.image-block--image { width: 35%; }
	.image-block--text { width: 61%; }
	.image-block--text > h3 { font-size: 20px; }
	.image-block--text > p { margin-bottom: 10px; }
}

/**
 * @module Die Säge - Das Buch
 */
.saw-book {
	padding: 50px 3% 20px 3%;
	background-image: linear-gradient(to bottom, #e3e5e4 0%, #fff 30%);
}
.saw-book--primary {
	float: left;
	width: 66%;
}
.saw-book--primary > p { width: 90%; }
.saw-book--secondary {
	float: left;
	width: 34%;
	padding-left: 2%;
}
.saw-book--image > img { width: 100%; }
.saw-book--text {
	width: 84%;
	margin-top: 40px;
	margin-left: 15%;
}
.saw-book--link {}
.saw-book--link > span { 
	display: block; 
	font-size: 22px;
}
@media only screen and (max-width: 800px) {
	.saw-book--primary {
		float: none;
		width: auto;
	}
	.saw-book--secondary {
		float: none;
		width: auto;
		margin-top: 20px;
	}
	.saw-book--image {
		float: left;
		width: 50%;
	}
	.saw-book--text {
		float: left;
		width: 50%;
		margin: 0;
		padding-left: 2%;
	}
}

@media only screen and (max-width: 460px) {
	.saw-book--image {
		float: none;
		width: auto;
		max-width: 80%; 
	}
	.saw-book--text {
		float: none;
		width: auto;
	}
}

/**
 * @module Downloadlinks
 */
.csc-uploads {
	margin-bottom: 30px;
}
.csc-uploads-element {
	margin-bottom: 6px;
	list-style-type: none;
}
.csc-uploads-element .csc-uploads-fileName > a {
	padding: 0;
	background: transparent none;
	display: inline-block;
	color: inherit;
}
.csc-uploads-fileName > a::before {
	content: '';
	display: inline-block;
	width: 17px; height: 17px;
	position: relative;
	top: 1px;
	margin-right: 5px;
	background: transparent url('../img/icon_download_bold.svg') no-repeat;
	background-size: contain;
}


/**
 * @section Vertriebspartner
 */
.vertriebskarte--area-nav {
	margin-top: 60px;
	overflow: hidden;
}
.vertriebskarte--area-nav li {
	float: left;
	margin-right: 20px;
	list-style-type: none;
}
.vertriebskarte--area-nav li a {
	display: inline-block;
	font-size: 22px;
	color: inherit;
	border-bottom: 5px solid transparent;
}
.vertriebskarte--area-nav li.active a,
.vertriebskarte--area-nav li:hover a,
.vertriebskarte--area-nav li.active a:focus {
	border-bottom-color: #009260;
}

.vertriebskarte--karte {
	position: relative;
	margin: 20px 0 40px 0;
}
.vertriebskarte--overlay {
	position: absolute;
	left: 0; top: 0; z-index: 10;
}
.vertriebskarte--clear {
	position: absolute;
	left: 0; top: 0; z-index: 20;
}
.vertriebskarte--laender { margin: 20px 0; }
.vertriebskarte--standorte {
	margin-top: 40px;
	overflow: hidden;
}
.vertriebskarte--standorte > h2 {
	margin-bottom: 40px;
	color: #009260;
	text-transform: uppercase;
	font-family: 'NewsGothicLTStd-Medium', sans-serif;
	font-size: 20px;
	clear: left;
}
.vertriebskarte--standort-container {
	margin: -2%;
}
.vertriebskarte--standort {
	float: left;
	width: 25%;
	padding: 0 2%;
	font-size: 14px;
}
.vertriebskarte--standort:nth-child(4n+1) { clear: left; }
.vertriebskarte--standort h3 {
	margin-bottom: 4px;
	color: #009260;
	font-size: inherit;
}
.vertriebskarte--standort a { color: inherit; }
.vertriebskarte--standort p { word-wrap: break-word; }
.vertriebskarte--empfehlungen {
	padding-top: 20px;
	clear: left;
}
.vertriebskarte--empfehlungen > h2 { margin-top: 20px; }
.vertriebskarte--empfehlungen > h2,
.vertriebskarte--empfehlungen > h3 {
	padding: 0 2%;
	clear: left;
}
.vertriebskarte--empfehlung {
	float: left;
	padding: 0 2%;
}
.vertriebskarte--empfehlung .vertriebskarte--standort {
	float: none;
	width: auto;
	padding: 0;
}

/* Gebietsvertriebsleiter */
#address_zipsearch .row.has-inline-submit {	display: inline-block; }
#address_zipsearch_input { width: 80px; }
.sales-manager {
	margin: 0 -1%;
}
.sales-manager--item {
	float: left;
	width: 25%;
	padding: 0 1%;
}
.sales-manager--image {
	margin-bottom: 10px;
}
.sales-manager--text {
	font-size: 14px;
}
.sales-manager--text h3 {
	margin-bottom: 10px;
	color: #009260;
	font-size: inherit;
}
.sales-manager--text b { 
	color: #009260; 
	font-family: "NewsGothicLTStd-Medium", sans-serif;
	font-weight: normal;
	font-size: 17px;
}
.sales-manager--item:nth-child(4n+1) {
	clear: left;
}

@media only screen and (max-width: 980px) {
	.vertriebskarte--karte,
	.vertriebskarte--area-nav { display: none; }
}

@media only screen and (max-width: 700px) {
	.vertriebskarte--standort:nth-child(4n+1) { clear: none; }
	.vertriebskarte--standort:nth-child(3n+1) { clear: left; }
	.vertriebskarte--standort { width: 33.33333%; }

	.sales-manager--item { width: 33.33333%; }
	.sales-manager--item:nth-child(4n+1) { clear: none; }
	.sales-manager--item:nth-child(3n+1) { clear: left; }
}

@media only screen and (max-width: 570px) {
	.vertriebskarte--standort:nth-child(4n+1) { clear: none; }
	.vertriebskarte--standort:nth-child(3n+1) { clear: none; }
	.vertriebskarte--standort:nth-child(2n+1) { clear: left; }
	.vertriebskarte--standort { width: 50%; }

	.sales-manager--item { width: 50%; }
	.sales-manager--item:nth-child(3n+1) { clear: none; }
	.sales-manager--item:nth-child(2n+1) { clear: left; }
}

@media only screen and (max-width: 380px) {
	.vertriebskarte--standort { float: none; width: auto; }
	.sales-manager--item { float: none; width: auto; }
}

/**
 * @section Maschinen Service
 */

 .machine-service {
	margin: 0 -1%;
}
.machine-service--item {
	float: left;
	width: 25%;
	padding: 0 1%;
}
.machine-service--image {
	margin-bottom: 10px;
}
.machine-service--text {
	font-size: 14px;
}
.machine-service--text h3 {
	margin-bottom: 10px;
	color: #009260;
	font-size: inherit;
}
.machine-service--text b { 
	color: #009260; 
	font-family: "NewsGothicLTStd-Medium", sans-serif;
	font-weight: normal;
	font-size: 17px;
}
.machine-service--text a { color: inherit; }
.machine-service--text a:hover,
.machine-service--text a:focus { text-decoration: underline; }

.machine-service--item:nth-child(4n+1) {
	clear: left;
}
.machine-service--languages { 
	display: block;
	margin: 4px 0px;
}
.machine-service--languages .flag-icon { margin-right: 1px; }
.flag-icon {
	display: inline-block;
	width: 24px; height: 16px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 24px 24px;
	border-color: #ccc;
	border: 1px solid rgba(0, 0, 0, 0.2);
}
.flag-icon-de { background-image: url('../img/flags/DE.png'); }
.flag-icon-en { background-image: url('../img/flags/GB.png'); }
.flag-icon-fr { background-image: url('../img/flags/FR.png'); }
.flag-icon-sa { background-image: url('../img/flags/SA.png'); }
.flag-icon-it { background-image: url('../img/flags/IT.png'); }
.flag-icon-es { background-image: url('../img/flags/ES.png'); }
.flag-icon-ru,
.flag-icon-rus { background-image: url('../img/flags/RU.png'); }

@media only screen and (max-width: 700px) {
	.machine-service--item { width: 33.33333%; }
	.machine-service--item:nth-child(4n+1) { clear: none; }
	.machine-service--item:nth-child(3n+1) { clear: left; }
}

@media only screen and (max-width: 570px) {
	.machine-service--item { width: 50%; }
	.machine-service--item:nth-child(3n+1) { clear: none; }
	.machine-service--item:nth-child(2n+1) { clear: left; }
}

@media only screen and (max-width: 380px) {
	.machine-service--item { float: none; width: auto; }
}

/**
 * @module Akkordeon
 */
 /* Erste Ebene */
 .accordion { 
 	clear: both;
 	max-width: 960px;
 	margin: 0 auto 10px auto; 
 }
 #main-content > .accordion { margin-top: 60px; }
 #main-content > .accordion ~ .accordion { margin-top: 0px; }
 .accordion--header {
 	margin-bottom: 10px;
 	padding: 12px 0px 12px 45px;
 	background: url('../img/icon_arrow_right_white.png') no-repeat 17px 50% / 12px 21px #009260;
 	cursor: pointer;
 	text-transform: uppercase;
 	transition: background-color 0.2s ease;
 }
 .accordion--header:hover,
 .accordion.is-active > .accordion--header {
 	background-color: #209f6b;
 }
 .accordion.is-active > .accordion--header {
 	background-image: url('../img/icon_arrow_down_white.png');
 	background-size: 18px auto;
 }
 .accordion--header > h2 {
 	margin: 0;
 	font-family: 'NewsGothicLTStd-Medium', sans-serif;
 	font-size: 24px;
 	line-height: 1.2;
 	color: #fff; 	
 	-moz-user-select: none;
 	-ms-user-select: none;
 	-webkit-user-select: none;
 }
 .accordion--contents { opacity: 0; overflow: hidden; }
 .accordion.is-active > .accordion--contents { opacity: 1; }
 .accordion--close {
 	width: 100%; height: 25px;
 	margin: 10px 0px;
 	border: none;
 	background: url('../img/icon_arrow_up_black.png') transparent no-repeat 50% 50%;
 	background-size: 20px auto, cover;
 	background-image: url('../img/icon_arrow_up_black.png'), linear-gradient(to top, #eaeaea, #fff);
 	border-bottom: 1px solid #d3d3d3;
 	text-indent: 110%;
 	overflow: hidden;
 	white-space: pre;
 	cursor: pointer;
 	opacity: 0.5;
 	transition: opacity 0.2s ease;
 }
 .accordion--close:hover {
 	opacity: 0.8;
 }
 /* Zweite Ebene */
 .accordion--contents .accordion {
 	width: auto;
 	margin-bottom: 25px;
 }
 .accordion--content .accordion .accordion--close { display: none; }

 .accordion--contents .accordion--header {
 	background-color: #fff;
 	border: 1px solid #000;
 	border-left: none;
 	border-right: none;
 }
 .accordion--contents .accordion--header:hover {
 	background-color: inherit;
 }
 .accordion--contents .accordion.is-active .accordion--header {
 	background-color: #eee;
 	border-color: #eee;
 }
 .accordion--contents .accordion--header > h2,
 .accordion--contents .accordion--header > h3 {
 	margin: 0;
 	font-family: 'NewsGothicLTStd-Medium', sans-serif;
 	font-size: 24px;
 	color: #000;
 }
.accordion--contents .accordion--header {
	background-image: url('../img/icon_arrow_right_black.png');
}
.accordion--contents .accordion.is-active > .accordion--header {
	background-image: url('../img/icon_arrow_down_black.png');
}

.accordion-anchors {
	position: relative;
}
.accordion-anchor {
	position: absolute;
}
.accordion-anchor--f45-1,
.accordion-anchor--f45-2,
.accordion-anchor--f45-3,
.accordion-anchor--f45-4,
.accordion-anchor--f45-5,
.accordion-anchor--f45-6 {
	width: 66px; height: 66px;
	bottom: 100px;
}

html[lang="en"] .accordion-anchor--f45-1,
html[lang="en"] .accordion-anchor--f45-2,
html[lang="en"] .accordion-anchor--f45-3,
html[lang="en"] .accordion-anchor--f45-4,
html[lang="en"] .accordion-anchor--f45-5,
html[lang="en"] .accordion-anchor--f45-6 {
	bottom: 127px;
}

.accordion-anchor--f45-1 { right: 414px; }
.accordion-anchor--f45-2 { right: 341px; }
.accordion-anchor--f45-3 { right: 268px; }
.accordion-anchor--f45-4 { right: 195px; }
.accordion-anchor--f45-5 { right: 123px; }
.accordion-anchor--f45-6 { right: 50px; }

@media only screen and (max-width: 1160px) {
	.accordion-anchor { display: none; }
}

@media only screen and (max-width: 980px) {
	.accordion--contents {
		padding: 0 3%;
	}
}

@media only screen and (max-width: 480px) {
	.accordion--header {
		background-size: 10px auto;
		padding-left: 42px;
	}
 	.accordion.is-active > .accordion--header {
 		background-size: 16px auto;
 	}
	.accordion--header > h2 {
		font-size: 18px;
	}

	.accordion--contents .accordion { margin-bottom: 16px; }
	.accordion--contents .accordion--header {
		background-size: 10px auto;
		padding-left: 42px;
	}
 	.accordion--contents .accordion.is-active > .accordion--header {
 		background-size: 16px auto;
 	}
	.accordion--contents .accordion--header > h2 {
		font-size: 18px;
	}
}
 /**
  * @module Product specifics
  */
 .product-specifics { 
 	position: relative;
 	padding-top: 30px; 
 }
 /*.product-specifics--viewport {
 	overflow: hidden !important;
 }*/
 .product-specifics--items {}
 .product-specifics--item {}
 .product-specifics--content {
 	padding-right: 80px;
 }
 .product-specifics--primary {
 	float: left;
 	width: 65%;
 	padding-right: 3%;
 }
 .product-specifics--secondary {
 	float: left;
 	width: 30%;
 }
 .product-specifics--direction-nav {
 	position: absolute;
 	right: 0;
 	top: 0;
 	z-index: 100;
 }
 .product-specifics--nav-prev { display: none; }
 .product-specifics--nav-next {
 	list-style-type: none;
 }

 .product-specifics--next {
 	display: inline-block;
 	width: 100px; height: 140px;
 	margin-top: 95%;
 	text-indent: -110%; overflow: hidden; white-space: pre;
 	background: url('../img/icon_arrow_light_right_green.png') no-repeat 50% 50% / 40px auto;
 	outline: 0;
 }
 .product-specifics--control-paging {
 	display: table;
 	width: 100%;
 	margin-top: 20px;
 	list-style-type: none;
 }
 .product-specifics--control-paging li {
 	display: table-cell;
 	padding-right: 0.6%;
 }
 .product-specifics--control-paging li:last-child { padding-right: 0; }
 .product-specifics--control-paging li a {
 	display: block;
 	height: 8px;
 	background-color: #e3e3e3;
 	text-indent: -110%;
 	overflow: hidden;
 	white-space: pre;
 	cursor: pointer;
 	transition: background-color 0.2s ease;
 }
 .product-specifics--control-paging li a.product-specifics--active {
 	background-color: #b9d7c9;
 }
 /*.product-specifics--control-paging li a:hover,
 .product-specifics--control-paging li a:focus {
 	background-color: #009260;
 }*/
.product-specifics .revealer {
	margin: 15px 0px 30px;
}

@media only screen and (max-width: 800px) {
	.product-specifics--primary {
		float: none;
		width: 90%;
	}	
	.product-specifics--secondary {
		float: none;
		width: 60%;
		margin-top: 30px;
	}
}

@media only screen and (max-width: 560px) {
	.product-specifics--item + .product-specifics--item { margin-top: 40px; }
	.product-specifics--content { padding-right: 0; }
	.product-specifics--primary {
		width: 100%;
	}

	.product-table { display: block; margin-bottom: 20px; border: none !important; }
	.product-table td {
		display: block;
		width: auto !important;
		padding: 0px !important;
		margin-bottom: 20px;
		background-color: transparent !important;
		text-align: left !important;
		border: none !important;
	}
	.product-table td:empty { display: none !important; }
	.product-table td.image-col img { max-width: 200px; margin-bottom: 10px; }
	.product-table td.number-col { font-size: 130%; margin-bottom: 3px !important; }
}

@media only screen and (max-width: 400px) {
	.product-specifics--secondary {
		width: auto;
	}
}
/**
 * @module Product info
 */
 .product-info {
 	margin: 80px auto;
 	padding-bottom: 60px;
 	border-bottom: 1px solid #009260;
 }
 .product-info:last-child {
 	border-bottom: none;
 }
 .product-info--col-1 {
 	width: 35%;
 	padding-right: 3%;
 	float: left;
 }
 .product-info--col-2 {
 	width: 65%;
 	float: left;
 }
 .product-info--image img { width: 100%; }

 .product-info .accordion--header {
 	background-color: #fff;
 	border: 1px solid #000;
 	border-left: none;
 	border-right: none;
 }
 .product-info .accordion--header:hover {
 	background-color: inherit;
 }
 .product-info .accordion.is-active > .accordion--header {
	background-image: url('../img/icon_arrow_down_white.png');
 	background-color: #009260;
 	border-color: #009260;
 	color: #fff;
 }
	.product-info .accordion--header > h2,
	.product-info .accordion--header > h3 {
		margin: 0;
		font-family: 'NewsGothicLTStd-Medium', sans-serif;
		font-size: 24px;
		color: inherit;
	}
	.product-info .accordion--header {
		background-image: url('../img/icon_arrow_right_black.png');
	}
	/* Zweite Ebene */
	.product-info .accordion--contents .accordion {
		margin-bottom: 14px;
	}
	.product-info .accordion--contents .accordion--header {
		padding: 4px 0px 4px 46px;
		background-size: 8px auto;
		background-position: 22px 50%;
	}
	.product-info .accordion--contents .accordion.is-active .accordion--header {
		background-image: url('../img/icon_arrow_down_black.png');
		background-color: #eee;
		background-position: 19px 50%;
		background-size: 14px auto;
		border-color: #eee;
		color: #000;
	}
	.product-info .accordion--contents .accordion--header h2 {
		font-size: 17px;
	}
	/* [experimentell] Zweite Ebene */
	.product-info .accordion--contents .accordion {
		margin-bottom: 0
	}
	.product-info .accordion--contents .accordion--header {
		margin-bottom: 0;
		padding: 7px 0px 7px 46px;
		border-top: none;
		border-color: #bbb;
	}
	.product-info .accordion--contents .accordion.is-active .accordion--contents {
		padding: 10px 0;
	}

	/* Spalte für Artikelnummer und Preis erst mal ausblenden */
	.product-info td.number-col,
	.product-info td.price-col { display: none; }

	@media only screen and (max-width: 690px) {
		 .product-info {
		 	margin: 40px auto;
		 }
 		.product-info--col-1,
 		.product-info--col-2 {
 			width: auto;
 			float: none;
 			padding: 0;
 		}
 		.product-info--col-2 { margin-top: 20px; }

	}

 /**
  * @module Image presenter
  */
 .image-presenter {
 	max-width: 300px;
 	margin-bottom: 20px;
 }
 .image-presenter--has-lightbox .image-presenter--main { 
 	position: relative; 
 	cursor: pointer; 
 }

 .image-presenter--count {
 	position: absolute;
 	right: 18px;
 	bottom: 14px;
 	height: 35px; 
 	padding-right: 53px;
 	color: #fff;
 	font-size: 20px;
 	line-height: 40px;
 	background: url('../img/icon_gallery.png') no-repeat 100% 0px transparent;
 	opacity: 0.6;
 	text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.9);
 	transition: opacity 0.2s ease;
 }
 .image-presenter--has-lightbox .image-presenter--main:hover .image-presenter--count {
 	opacity: 1;
 }
 .image-presenter--thumbs { margin-top: 6px; }
 .image-presenter--thumbs ul { margin: 0 -1%; }
 .image-presenter--thumbs li {
 	float: left;
 	width: 33.33333%;
 	padding: 0 1%;
 	list-style-type: none;
 }
 .image-presenter--thumb { margin-top: 6px; }
 .image-presenter--thumb a {
 	outline: 0;
 	transition: opacity 0.2s ease;
 }
 .image-presenter--thumb a:hover,
 .image-presenter--thumb a:focus {
 	opacity: 0.8;
 }
 .image-presenter--thumb.is-active a,
 .image-presenter--thumb.is-active a:hover,
 .image-presenter--thumb.is-active a:focus {
 	opacity: 0.5;
 }
 .image-presenter--thumb img {
 	width: 100%;
 }
 .image-presenter--description-contents {
 	margin-top: 20px;
 	/*padding: 15px 0px 9px 12px;
 	box-shadow: 0px 6px 11px -12px #333;
 	font-size: 13px;*/
 }

 /**
  * @module Revealer
  */
 .revealer { margin-bottom: 12px; }
 .revealer--title {
 	display: inline-block;
 	padding-left: 18px;
 	font-size: 18px;
 	font-weight: normal;
 	font-family: 'NewsGothicLTStd-Medium', sans-serif;
 	background: url('../img/icon_arrow_right_black.png') no-repeat 0px 50% / 8px auto transparent;
 	cursor: pointer;
 	transition: opacity 0.2s ease;
 }
 .revealer--title:hover { opacity: 0.75; }
 .revealer--title > * {
 	font: inherit;
 	margin-bottom: 0;
 }
 .revealer--contents {
 	padding-top: 14px;
 	padding-left: 18px;
 	width: 80%;
 }
 .revealer.is-active .revealer--title {
 	background-image: url('../img/icon_arrow_down_black.png');
 	background-size: 12px auto;
 }

/**
 * @module Statements
 */
 .statements {}

 .statements--item { position: relative; }
 .statements--text { padding-top: 16px; }
 .statements--text h3 { 
 	color: #009260;
 	margin-bottom: 4px;
 }
 .statements--text a { color: inherit; }
 .statements--text a:hover,
 .statements--text a:focus { text-decoration: underline; }
 .statements--text p { margin-bottom: 14px; }
 .statements--text p:last-child { margin-bottom: 0; }

 .statements--thumbnail {
 	position: relative;
 	height: 0; padding-top: 56%; 
 	overflow: hidden; 
 }
 .statements--video > a:hover .statements--thumbnail:after {
 	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
 	border-radius: 50%;
 	opacity: 0.9;
 }
 .statements--video > a:hover .statements--subline,
 .statements--video > a:focus .statements--subline {
 	background-color: #24a16e;
 }
 .statements--video > a:active .statements--subline {
 	background-color: #3ab27d;
 }
 .statements--video > a:hover .statements--thumbnail img {
 	opacity: 0.9;
 }
 .statements--thumbnail:after {
 	content: '';
 	display: block;
 	position: absolute;
 	/*left: 50%; top: 50%;
 	transform: translate(-50%, -50%);
 	width: 90px; height: 90px;
 	*/
 	bottom: 10px; right: 15px;
 	width: 40px; height: 40px;
 	background: transparent url('../img/icon_play.png') no-repeat 0px 0px / 100%;
 	opacity: 0.8;
 	/*transition: 0.2s opacity ease;*/
 }
 .statements--thumbnail img { 
 	width: 100%; 
 	position: absolute;
 	left: 0; bottom: 0;
 	transition: opacity 0.2s ease;
 }
 .statements--thumbnail-youtube img { 
 	top: -17%;
 }
 .statements--subline {
 	display: block;
 	padding: 6px 0;
 	font-size: 14px;
 	background-color: #009260;
 	color: #fff;
 	text-align: center;
 	transition: 0.2s background-color ease;
 }
 .statements--list { margin: 0 -0.4%; }
 .statements--list .statements--item {
 	float: left;
 	width: 32.5%;
 	margin: 0 0.4% 40px 0.4%;
 }
 .statements--list .statements--item:nth-of-type(3n+1) {
 	clear: left;
 }
 .statements--highlight .statements--thumbnail:after { 
 	/*width: 140px; height: 140px;*/
 	width: 80px; height: 80px;
 	bottom: 20px; right: 30px; 
 }
 .statements--highlight .statements--item { 
 	display: table;
 	width: 100%;
 	margin-bottom: 80px;
 	overflow: hidden; 
 }
 .statements--highlight-only .statements--highlight .statements--item {
 	margin-bottom: 40px;
 }
 .statements--highlight .statements--video { 
 	display: table-cell;
 	vertical-align: top;
 	width: 66.3%;
 }
 .statements--highlight .statements--text { 
 	display: table-cell;
 	vertical-align: bottom;
 	padding-left: 2.5%;
 }
 .statements--highlight .statements--text h3 { font-size: 20px; }   

@media only screen and (max-width: 660px) {
	.statements--highlight .statements--item {
		display: block;
	}
	.statements--highlight .statements--video {
		display: block;
		width: auto;
	}
	.statements--highlight .statements--text {
		display: block;
		width: auto;
		padding-left: 0;
	}
	.statements--list .statements--item {
		width: 49.2%;
		clear: none !important; 
	}
	.statements--list .statements--item:nth-of-type(2n+1) {
		clear: left !important;
	}
}

@media only screen and (max-width: 450px) {
	.statements--highlight .statements--item { margin-bottom: 40px; }
 	.statements--highlight .statements--text h3 { font-size: inherit; }   

	.statements--list .statements--item {
		float: none;
		width: auto;
	}
}

/**
 * @module Image magnifier
 */
 .image-magnifier {
 	display: none;
 	position: fixed;
 	border: 5px solid #fff;
 	box-shadow: 0px 0px 5px #999;
 }

/**
 * @module Lightbox aka Magnific Popup
 */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none; }
button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover, .mfp-close:focus {
    opacity: 1;
    filter: alpha(opacity=100); }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  background-color: transparent;
  background-size: 40px auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 
  border: none;
  cursor: pointer;
  opacity: 0.7;
}
.mfp-arrow:hover {
	opacity: 1;
}

.mfp-arrow-left {
	left: 0;
	background-image: url('../img/icon_arrow_light_left_green.png');
}
.mfp-arrow-right {
	right: 0;
	background-image: url('../img/icon_arrow_light_right_green.png');
}
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; }
 }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; }
 }

.mfp-ie7 .mfp-img {
  padding: 0; }
.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }
.mfp-ie7 .mfp-container {
  padding: 0; }
.mfp-ie7 .mfp-content {
  padding-top: 44px; }
.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }
/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;

  transition: all 0.3s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.95;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;

  transition: all 0.3s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/* Altendorf MFP styles */
.mfp-default.mfp-bg {
	background-color: #fff;
	opacity: 0.95;
}
.mfp-default .mfp-iframe-scaler iframe {
	background: #ccc none;
	box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.5);
}
.mfp-default .mfp-close {
	display: block;
	width: auto; height: 80px;
	right: -90px; top: -90px;
	padding: 20px;
	color: #009260;
	font-size: 60px;
}
.mfp-default .mfp-title {
	color: #009260;
	font-family: 'NewsGothicLTStd-Medium', sans-serif;
	font-size: 36px;
	position: absolute;
	top: -60px;
	text-transform: uppercase;
}
.mfp-default--image .mfp-close {
	height: auto;
	padding: 0;
	right: -50px;
	top: -15px;
}
.mfp-counter { color: #999; }

@media only screen and (max-width: 1100px) {
	.mfp-default .mfp-content {
		max-width: 600px;
	}
}
@media only screen and (max-width: 780px) {
	.mfp-default .mfp-close {
		padding: 0;
		right: 0;
	}
}

/**
 * @module Calendar
 */
.year { margin-top: 70px; }
.year .header-buttons { display: none; }
.year-header {
	position: relative;
	margin-bottom: 30px;
	text-align: center;
}
.year-header .next-button,
.year-header .previous-button {
	position: absolute;
	top: 0px;
}
.year-header .next-button {
	right: 0px;
}
.year-header .previous-button {
	left: 0px;
}
.year-header .previous-button a,
.year-header .next-button a {
	display: inline-block;
	width: 60px; height: 50px;
	text-indent: -110%;
	overflow: hidden;
	white-space: pre;
	position: relative;
}
.year-header .previous-button a:after,
.year-header .next-button a:after {
	display: block;
	color: #009260;
	position: absolute;
	left: 13px; top: -4px;
	text-indent: 0;
	font-size: 40px;
}
.year-header .previous-button a:after {
	content: '<';
}
.year-header .next-button a:after {
	content: '>';
}
.yearmonth-title {
	margin-bottom: 10px;
	font-size: 20px;
	text-align: center;
}
.yearmonth td,
.month-small td {
	border: none;
	border-bottom: 1px solid #999;
	padding: 2px;
	text-align: center;
	vertical-align: middle;
}
.month-small th { font-weight: normal; }
.month-small th.sideback {
	text-align: center;
	border-bottom: none;
}
.yearmonth td.eventDay,
.month-small td.eventDay {
	color: #fff;
	background-color: #009260;
}
.yearmonth td.eventDay a,
.month-small td.eventDay a {
	color: inherit;
}
.yearmonth tr:last-child td,
.month-small tr:last-child td {
	border-bottom: none;
}
.yearmonth td + td,
.month-small td + td {
	border-left: 1px solid #999;
}
.year .month-items { margin: 0 -2.6%; }
.year .month-item {
	float: left;
	width: 28%;
	margin: 0px 2.6% 20px;
}
.year .month-item:nth-child(3n+1) {
	clear: left;
}
.year .month-item td.monthOff,
.month-small td.monthOff {
	visibility: hidden;
}
.month-small .month-weeknums { display: none; }
.dayview-primary {
	width: 70%;
	float: left;
}
.dayview-secondary {
	width: 26%;
	margin-left: 4%;
	padding-top: 73px;
	float: left;
}
.dayview-header td {
	padding: 0;
}
.dayview-table {}
.dayview-table td { border: none; }
.dayview-table .yellow_catheader {
	padding: 5px 9px;
	background-color: #009260;
	color: #fff;
}
.dayview-table .timeborder {
	height: 100px;
	padding: 5px 0px 0px 0px;
	border-bottom: 1px dashed #999;
	background-image: linear-gradient(to bottom, #fff, #eee);
	vertical-align: top;
	text-align: center;
}
.dayview-table .dayborder {
	border-top: 1px solid #999;
	border-bottom: 1px dashed #999;
}
.dayview-table tr:first-child .dayborder { border-top: none; }
.dayview-table .yellow_catbody {
	padding: 0;
	background-color: #f5f5f5;
}
.dayview-table .eventfont {}
.dayview-table .eventfont .padd { padding: 12px 10px; }
.dayview-table .dayview-table-div {
	width: 6px;
	padding: 0;
	background-color: #ccc;
	border: none;
}

@media only screen and (max-width: 680px) {
	.year .month-item:nth-child(3n+1) {
		clear: none;
	}
	.year .month-item {
		width: 44%;
	}
	.year .month-item:nth-child(2n+1) {
		clear: left;
	}
}

@media only screen and (max-width: 400px) {
	.year .month-items { margin: 0; }
	.year .month-item {
		float: none;
		width: 100%;
		margin: 0;
		margin-bottom: 14px;
		padding: 0 5%;
	}
}

/** 
 * @section Seminars
 */

 /* List */
.seminars-vacancies-cell { width: 140px; }
.tx-seminars-pi1-square { display: inline-block; width: 14px; height: 14px; line-height: 0.6; background-color: #009260; }

/**
 * @module Content
 */
.content { margin-bottom: 40px; }
.col-6x-6x > .col:first-child {
	padding-right: 2%;
}
.col-6x-6x > .col:last-child {
	padding-left: 2%; 
}
.col-7x-5x {
	margin: 0 -15px;
}
.col-7x-5x .col {
	padding: 0 15px;
}
.col-4x-4x-4x {
	margin: 0 -15px;
}
.col-4x-4x-4x .col {
	padding: 0 15px;
}
.col-3x-3x-3x-3x {
	margin: 0 -15px;
}
.col-3x-3x-3x-3x .col {
	padding: 0 15px;
}
.text ul { margin-bottom: 20px; margin-left: 17px; list-style-type: disc; list-style-position: outside; }
.text ul li { margin-bottom: 2px; }
.text ul ul { margin: 10px 0; padding-left: 30px; }
.text ul p { margin: 0; }

@media only screen and (max-width: 980px) {

	.col-3x-3x-3x-3x > .col { 
		width: 50%; 
	}
}

@media only screen and (max-width: 680px) {
	.content { margin-bottom: 20px; }

	.col-7x-5x,
	.col-4x-4x-4x,
	.col-3x-3x-3x-3x {
		margin: 0;
	}
	.col-7x-5x > .col,
	.col-6x-6x > .col,
	.col-4x-4x-4x > .col,
	.col-3x-3x-3x-3x > .col { 
		float: none; 
		width: 100%; 
		padding: 0 !important; 
	}
	.col-6x-6x > .col:first-child { margin-bottom: 30px; }
}

/**
 * @module Tooltip
 */
 .tooltip {
 	position: absolute; z-index: 999;
 	padding: 3px 7px;
 	font-size: 12px;
 	background-color: #fff;
 	background-color: rgba(255, 255, 255, 0.9);
 	box-shadow: 1px 1px 5px 0px #888
 }
 .tooltip.hidden {
 	display: none !important;
 }

/**
 * @module Scrollable table
 */
.scrollable-table--wrap { position: relative; }
.scrollable-table--wrap.is-active .scrollable-table--inner {
	overflow-x: scroll;
}
.scrollable-table--wrap.is-active:after {
	content: '';
	position: absolute;
	z-index: 90;
	right: 0; top: 0; 
	width: 60px; height: 100%;
	background-image: linear-gradient(to left, #f1f1f1 50%, transparent);
	pointer-events: none;
	opacity: 1;
	transition: opacity 3s ease;
}
.scrollable-table--wrap.is-active.is-touched:after {
	opacity: 0.4;
}

/**
 * @module Image Gallery
 */
.image-gallery { margin: 40px 0px; }
.image-gallery--main { padding-bottom: 40px; }
.image-gallery--main > img { box-shadow: 0px 0px 2px #888; }
.image-gallery--thumbs { max-width: 800px; }
.image-gallery--thumbs > ul {
	margin: 0px -0.5%;
}
.image-gallery--thumb {
	float: left;
	margin: 0px 0.5% 10px;
	list-style-type: none;
}
.image-gallery--thumb.is-active { opacity: 0.7; }
.image-gallery--thumb img { box-shadow: 0px 0px 4px #888; }


/**
 * @section Used machines
 */
 .used-machine {
 	padding-top: 20px;
 	padding-bottom: 20px;
 	margin-bottom: 20px;
 	border-bottom: 1px solid #009260;
 }
 .used-machine--images-col,
 .used-machine--content-col {
 	float: left;
 	width: 50%;
 }
 .used-machine--images-col { 
 	padding-left: 3%;
 	padding-right: 5%; 
 }
 .used-machine--content-col { padding-left: 3%; }
 .used-machine--content-col h1 {
 	color: #009260;
 	font-size: 22px; 
 	font-family: 'NewsGothicLTStd-Medium', sans-serif;
 }
 .used-machine--content-col h2 { font-size: 18px; }
 .used-machine--content-col .button { margin-top: 30px; }

@media only screen and (max-width: 640px) {
 .used-machine--images-col,
 .used-machine--content-col { 
 	float: none; 
 	width: auto;
 	padding: 0;
 }  
 .used-machine--images-col { margin-bottom: 20px; }
}

/**
 * @section Indexed Search
 */
.tx-indexedsearch-form {
	width: 100%;
	max-width: 300px;
	margin-top: 20px;
}
.tx-indexedsearch-searchbox legend { display: none; }
.tx-indexedsearch-form .tx-indexedsearch-searchbox-sword {
	width: 100%;
	padding: 8px 20px 8px 12px;
	font: inherit;
}
#tx-indexedsearch-searchbox-button-submit { 
	width: 36px; 
	background-size: 14px auto;
}
.tx-indexedsearch-whatis {
	margin: 20px 0;
	font-size: 20px;
}
.tx-indexedsearch-sw { color: #009260; }
.tx-indexedsearch-res-item { 
	margin-bottom: 20px; 
	padding-bottom: 20px;
	border-bottom: 1px solid #ccc;
}
.tx-indexedsearch-redMarkup { color: #009260; }
.tx-indexedsearch-title { 
	font-size: 20px; 
	margin-right: 6px;
}
.tx-indexedsearch-browsebox .browsebox { overflow: hidden; margin-bottom: 20px; } 
.tx-indexedsearch-browsebox .browsebox li { float: left; list-style-type: none; margin-right: 8px; }

/**
 * @module Speech Bubble
 */
.speech-bubble {
	position: relative;
	padding: 20px 50px 40px 50px;
	margin-bottom: 40px;
	background-color: #a5d070;
	color: #000;
}
.page-uid-99 .speech-bubble:first-of-type .speech-bubble--header {
	font-size: 110px;
}
.speech-bubble--content {}

.speech-bubble--topline {
	font-size: 50px;
	line-height: 1;
	font-family: 'FeltTipSenior', serif;
}
.page-uid-99 .speech-bubble:first-of-type .speech-bubble--topline {
	font-size: 60px; 
}

.speech-bubble--header {
	font-size: 70px;
	font-family: 'NewsGothicLTStd-Medium', sans-serif; 
	font-weight: bold;
	line-height: 1;
}
.speech-bubble::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 20%;
	width: 0; height: 0;
	border-right: 20px solid transparent;
	border-left: 5px solid transparent;
	border-top: 30px solid #a5d070;
	border-bottom: 0;
}

@media only screen and (max-width: 900px) {
	.speech-bubble--topline {
		font-size: 34px !important;
	}
	.speech-bubble--header {
		font-size: 50px !important;
	}
}

@media only screen and (max-width: 600px) {
	.speech-bubble--topline {
		font-size: 24px !important;
	}
	.speech-bubble--header {
		font-size: 32px !important;
	}
}

@media only screen and (max-width: 400px) {
	.speech-bubble { -moz-hyphens: auto; hyphens: auto; }
}

/**
 * @module Benefit box
 */
 .benefit-box {
 	margin-bottom: 30px;
 	overflow: hidden;
 }
 .benefit-box--box {
 	padding: 25px 50px 35px 35px;
 	border: 1px solid #000;
 	overflow: hidden;
 }
 .benefit-box--main {
 	float: left;
 	width: 48%;
 }	
 .benefit-box--text {
 	float: right;
 	width: 48%;
 }
 .benefit-box--text > ul { padding-left: 10px; }
 .benefit-box--text > ul > li {
 	position: relative;
 	margin-bottom: 6px;
 	list-style-type: none;
 	font-weight: bold;
 }
 .benefit-box--text > ul > li::before {
 	content: '';
 	position: relative;
 	left: -8px;
 	display: inline-block;
 	width: 0; height: 0;
 	border-left: 6px solid #000;
 	border-top: 6px solid transparent;
 	border-bottom: 6px solid transparent;
 	border-right: none;
 }

 .benefit-box--text .button {
 	float: right;
 	padding-right: 11px;
	font-family: 'FeltTipSenior', serif;
	font-size: 30px;
 	background-color: #a5d070;
 	color: #000;
 	text-shadow: none;
 	text-transform: uppercase;
 	box-shadow: none !important;
 }
 .benefit-box--text .button:after { display: none; }
 .benefit-box--text .button:hover,
 .benefit-box--text .button:focus { background-color: #a5d070; }


 .benefit-box--header {
	font-family: 'NewsGothicLTStd-Medium', sans-serif; 
 	font-size: 45px;
 	line-height: 1;
 	font-weight: bold;
 }
 .benefit-box--subline {
 	position: relative;
 	left: -10px;
 	display: inline-block;
 	margin-top: 8px;
 	padding: 2px 14px;
 	background-color: #a5d070;
	font-family: 'FeltTipSenior', serif;
 	font-size: 40px;
 	line-height: 1;
 }
 .benefit-box--subline > sup {
 	line-height: 1;
 	vertical-align: text-top;
 }
 .benefit-box--additional {
 	float: none;
 	clear: left;
 	margin-top: 20px;
 }
 /* Variants */
 .benefit-box--special .benefit-box--box {
 	float: left;
 	width: 69%;
 }
 .benefit-box--special .benefit-box--header {
 	font-size: 38px;
 }

 .benefit-box--special .benefit-box--text {
 	float: none;
 	width: auto;
 	margin-top: 20px;
 }

 .benefit-box--special .benefit-box--image {
 	float: right;
 	width: 28%;
 }

@media only screen and (max-width: 900px) {
	.benefit-box--special .benefit-box--header,
	.benefit-box--header { font-size: 30px; }
	.benefit-box--subline { font-size: 28px; }
}

@media only screen and (max-width: 660px) {
	.benefit-box--special .benefit-box--header,
	.benefit-box--header { font-size: 26px; }

	.benefit-box--main { 
		float: none; width: auto;
		margin-bottom: 20px;
	}
	.benefit-box--text {
		float: none; width: auto;
	}

	.benefit-box--special .benefit-box--box {
		float: none; width: auto;
	}
	.benefit-box--special .benefit-box--image { display: none; }
	.benefit-box--text .button {
		float: none;
		margin-top: 20px;
	}
}

/**
 * @module Image and Text
 */
 .img-text--item {
 	margin-bottom: 30px;
 }
 .img-text--image {
 	float: left;
 	min-width: 200px;
 	margin-right: 20px;
 }

 /**
 * @module Login Controls 
 */
.login-area-controls {
	position: relative;
	margin-bottom: 24px;
}
.login-area-nav li a {
	text-decoration: none;
}
.login-area-nav li {
	list-style-type: none;
}
.login-area-nav--primary {
	background-color: #ebebeb;
}
/*.login-area-nav--primary ul { float: left; }*/
.login-area-nav--primary li {
	float: left;
	margin: 12px 12px 12px 0;
}
.login-area-nav--primary li:first-child {
    margin-left: -10px;
}
.login-area-nav--primary li:last-child {
	margin-right: 0;
}
.login-area-nav .page-143 {
	float: right;
}
.login-area-nav .page-143 > a {
	position: relative;
	display: block;
	padding-left: 24px;
	opacity: 0.8;
	color: inherit;
}
.login-area-nav .page-143 > a:hover,
.login-area-nav .page-143 > a:focus,
.login-area-nav .page-143.active > a {
	background-color: transparent;
	text-decoration: underline;
	color: inherit;
}
.login-area-nav .page-143 > a:before {
	content: '';
	position: absolute;
	left: 0; top: 6px;
	display: inline-block;
	width: 20px; height: 18px;
	background: transparent url('../img/icon_user.png') no-repeat 0px 0px;
	background-size: contain;
}

.login-area-nav--primary li > a {
	display: block;
	padding: 5px 12px;
}
.login-area-nav--primary li.active > a,
.login-area-nav--primary li > a:hover,
.login-area-nav--primary li > a:focus {
	color: #fff;
	background-color: #009260;
}  

.login-area-nav--secondary {
	padding: 6px 0;
}
.login-area-nav--secondary ul { float: left; }
.login-area-nav--secondary li {
	float: left;
	margin: 6px 20px 6px 0px;
}
.login-area-nav--secondary li:last-child { margin-right: 0; }
.login-area-nav--secondary li > a {
	font-size: 15px;
	color: #555;
}
.login-area-nav--secondary li.active > a,
.login-area-nav--secondary li > a:hover,
.login-area-nav--secondary li > a:focus {
	text-decoration: underline;
}
.login-area-logout {
	position: absolute;
	top: 100%; right: 12px;
	margin-top: 12px;
}
.login-area-logout button[type="submit"] {
	position: relative;
	font-family: 'NewsGothicLT', sans-serif;
	border: none;
	background-color: transparent;
	cursor: pointer;
}
.login-area-logout button[type="submit"]:before {
	content: '';
	display: inline-block;
	margin-right: 8px;
	width: 20px; height: 20px;
	background: transparent url('../img/icon_logout.png');
	background-size: cover;
	vertical-align: sub;
}

@media only screen and (max-width: 1080px) {
	.login-area-nav--primary {
		padding: 0 2%;
	}
}

/**
 * @module Divider
 */
.divider > hr {
	border-color: #009260;
}

/**
 * @section Footer
 */
#footer-head {
	padding: 20px 0px;
	background-color: #f7f7f7;
	background-image: linear-gradient(to bottom, #e4e4e4, #fff);
}
#footer-sitemap {
	float: left;
	display: table;
	width: 70%;
	min-height: 200px;
	padding-right: 40px;
	font-size: 14px;
}
.footer-sitemap a {
	color: #000;
}
.footer-sitemap a:hover,
.footer-sitemap a:focus {
	text-decoration: underline;
}
.footer-sitemap--title { 
	display: inline-block;
	margin-bottom: 14px;
	font-family: 'NewsGothicLTStd-Medium', sans-serif; 
	text-transform: uppercase;
}
.footer-sitemap--box { 
	display: table-cell; 
	padding-right: 10px;
}
.footer-sitemap--box li {
	list-style-type: none;
}
#footer-service {
	float: right;
	width: 30%;
	padding-left: 6.8%;
	border-left: 1px solid #676767;
}
#footer-service legend {
	margin-bottom: 2px;
	padding: 4px 0px 4px 22px;
	background-position: 0 50%;
	background-repeat: no-repeat;
	background-size: 14px auto;
	font-size: 13px;
}
#footer-login legend {
	background-image: url('../img/icon_login.png');
}
#footer-search { margin-bottom: 15px; }
#footer-search legend {
	background-image: url('../img/icon_search.png');
	background-size: 13px 14px;
}
#footer-service input[type="text"],
#footer-service input[type="password"] {
	width: 100%;
}
#footer-sub {
	padding: 13px 0px;
	background-color: #000;
	color: #fff;
}
.company-short {
	margin: 0;
	padding: 20px 0px 20px 75px;
	background: transparent url('../img/icon_altendorf.png') no-repeat 0px 50%;
	background-size: 54px;
}
#footer-lang-nav {
	margin-top: 30px;
}
#footer-lang-nav:before {
	content: '';
	width: 25px; height: 20px;
	margin: 5px 0;
	background: transparent url('../img/icon_language.png') no-repeat 0px 0px;
	background-size: contain;
}
#footer-lang-nav a {
	float: left;
	font-size: 12px;
	color: #222;
}
#footer-lang-nav a:hover { text-decoration: underline; }
#footer-lang-nav a.current { font-weight: bold; }
#footer-lang-nav a:after {
	content: '|';
	display: inline-block;
	font-weight: normal;
	margin: 0 7px;
	position: relative;
	bottom: 1px;
}
#footer-lang-nav a:last-child:after { display: none; }
.footer-newsletter h3 {
	margin-bottom: 14px;
	font-size: 14px;
	font-weight: 400;
	font-family: 'NewsGothicLTStd-Medium', sans-serif;
	text-transform: uppercase;
}
.footer-newsletter p {
	margin-bottom: 0;
	font-size: 14px;
}
.newsletter-link {
	display: inline-block;
	color: #222;
	background: transparent url('../img/icon_drawn_arrow.png') no-repeat 0px 9px / 65px auto;
	padding: 14px 0 12px 75px;
	font-size: 17px;
}
.newsletter-link:hover {
	text-decoration: underline;
}

@media only screen and (max-width: 1100px) {
	#footer-service {
		padding-left: 1%;
	}
	
	#footer-sub { padding: 26px 3%; }
	.company-short {
		padding-left: 90px;
		background-size: contain;
	}
}
@media only screen and (max-width: 740px) {
	#footer-sitemap {
		display: block;
	}
	.footer-sitemap--box {
		display: block;
		float: left;
		width: 33.33333%;
		padding-right: 0px;
		margin-bottom: 30px;
	}
	.footer-sitemap--box:nth-child(3n+1) {
		clear: left;
	}

	.company-short {
		font-size: 14px;
	}

}

@media only screen and (max-width: 620px) {
	.footer-sitemap--box { width: 50%; padding-right: 6%; }
	.footer-sitemap--box:nth-child(3n+1) {
		clear: none;
	}
	.footer-sitemap--box:nth-child(2n+1) {
		clear: left;
	}
	.footer-sitemap--title { margin-bottom: 6px; }
	#footer-sitemap {
		width: 60%;
	}
	#footer-service {
		width: 40%;
		padding: 0 6%;
	}
}

@media only screen and (max-width: 440px) {
	#footer-sitemap {
		float: none;
		width: 100%; min-height: 0;
		padding-right: 0;
		border-right: none;
		padding: 0 0 20px 10%;
		overflow: hidden;
	}
	#footer-service {
		float: none;
		width: 100%;
		padding: 0 20% 0 10%;
	}
	#footer-service legend {
		padding: 6px 0px 6px 33px;
		margin-bottom: 4px;
		background-size: 23px auto;
		font-size: 16px;
	}
	#footer-service input[type="text"], 
	#footer-service input[type="password"] {
		padding: 9px 11px;
	}
	#footer-service button.inline[type="submit"] { width: 35px; }
	.company-short { font-size: 12px; }

}

@media only screen and (max-width: 320px) {
	.footer-sitemap--box { float: none; padding-right: 0; }
}

/**
 * @module Routenplaner
 */
.route-planner {
	margin-bottom: 30px;
}
.route-planner-picture {
	position: relative;
	border: 1px solid #ddd;
}
.route-planner-picture > img { 
	width: 100%; 
	height: auto;
}

.route-planner-popup { 
	position: absolute;
	top: 43%;
	transform: translate(0, -50%);
	left: 55%;
	margin-right: 7px;
	padding: 7px;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	border-radius: 2px;
	font-size: 11px
}
.route-planner-popup:before{
	content:'';
	position: absolute;
	right:100%;
	top: 50%;
	margin-top:-10px;
	width:0;
	height:0;
	border-style:solid;
	border-width:10px 12px 10px 0;
	border-color:transparent #fff transparent transparent
}
.route-planner-marker {
	position:absolute;
	right:49%;
	top:49%;
	margin-top:-15px;
	margin-right:-15px;
	display:inline-block;
	width:34px;
	height:34px;
	border-radius:50%;
	background:transparent url('../img/icon_altendorf.png') no-repeat center / 30px auto;
	outline:none
}
.route-planner-marker::after{
	content:attr(data-title);
	position:absolute;
	left:100%;
	margin-left:14px;
	font-size:11px;
	background-color:#fff;
	color:#333;
	padding: 6px 10px;
	border-radius:2px;
	border: 1px solid #ccc;
	width:180px;
	top:-12px;
	opacity:0;
	transition:opacity ease 0.2s
}
.route-planner-marker:hover::after{
	opacity:1
}
.route-planner-form{margin-top:15px}
.route-planner-form .input-group {
	display: flex;
}
.route-planner-form .route-planner-start-address {
    flex: 1;
    padding: 6px 8px;
    border-radius: 0;
    border-right: 0;
}
.route-planner .route-planner-submit {
    font-size: inherit;
    padding-bottom: 6px;
    padding-top: 5px;
}

/**
 * @module CSC Menu 1
 */
.csc-menu-1 {}
.csc-menu-1 li {
	list-style-type: square;
	list-style-position: inside; 
}

/***
 * @module Cookie consent
 */
.cc-grower {
  transition: max-height 0.3s !important;
  overflow: visible !important;
}
.cc-window.cc-banner.cc-type-info {
  position: relative;
  z-index: 99999;
  padding: 2px 12px;
  background-color: #fff;
  font-size: 12px;
  border-bottom: 1px solid #ddd;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, .1);
}
.cc-window.cc-banner.cc-type-info .cc-btn {
	text-decoration: none !important;
	min-width: 0;
	padding: 0px 7px;
	margin: 3px 0;
	color: #34ac78 !important;
	background-color: transparent;
	font-size: 12px;
	border: 2px solid;
	text-shadow: none;
}
.cc-window.cc-banner.cc-type-info .cc-btn::after {
	display: none;
}
.cc-window.cc-banner.cc-type-info .cc-link {
  color: #34ac78 !important;
}
.is-pinned .cc-window { display: none; }

/**
 * @module Quick contact
 */
.quick-contact {
	position: fixed;
	z-index: 9;
	left: -8px;
	top: 50%;
	margin-top: -27.5px;
	display: block;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background: #009260 url('../img/icon_contact.svg') no-repeat 50% 50% / 27px auto;
	transition: left 0.5s ease;
}
.quick-contact:hover {
	left: 4px;
	outline: none;
}

.Kontakt_Button_Test-r .quick-contact {
	left: auto;
	right: -8px;
	transition: right 0.5s ease;
}
.Kontakt_Button_Test-r .quick-contact:hover {
	right: 4px;
}

/** global tweakpoints **/

@media only screen and (max-width: 1100px) {
	/* set fluid width for container */
	.container { width: 98%; }
}


