@charset "utf-8";

:root {
		
	--ci-color-orange: #f39314;
	--ci-color-orange-rgb: 243,147,20;
	
	--ci-color-dark: #2b2a29;
	--ci-color-dark-rgb :43,42,41;
	
	--ci-color-blue: #007db0;
	--ci-color-blue-rgb: 0,125,176 ;
	
	/*	
	--color-font-headlines-dark-rgb: 2,2,2;
	--color-font-headlines-dark: #020202;
	
	--color-font-dark-rgb: 60,60,60;
	--color-font-dark: #3c3c3c;
	
	--color-red-rgb: 197,20,28;
	--color-red: #c5141c;
	
	--color-ci-green-rgb: 18,96,106;
	--color-ci-green: #12606a;
	
	--color-ci-rgb: 18,96,106;
	--color-ci: #12606a;
	
	--color-darkestgrey-rgb: 64,64,64;
	--color-darkestgrey: #404040;
	
	--color-darkgrey-rgb: 101,101,101;
	--color-darkgrey: #656565;
		
	--color-grey-rgb: 181,181,181;
	--color-grey: #b5b5b5;
		
	--color-lightgrey-rgb: 229,229,229;
	--color-lightgrey: #e5e5e5;
		
	--color-link-grey-rgb: 102,102,102;
	--color-link-grey: #666666;
		
	--color-green-rgb: 108,177,46;
	--color-green: #6cb12e;
		
	--color-darkgreen-rgb: 22,130,45;
	--color-darkgreen: #16822d;
	
	--color-blue-1-rgb: 29,79,108;
	--color-blue-1-rgb: 25,38,48;
	
	--color-grey-headline-rgb: 134,129,125;
	--color-grey-headline: #86817D;
		
	--color-dark-text-rgb:46,45,48;
	--color-dark-text:#2e2d30;
	
	--slider-height: 1080px;	
		
	--picbox-width: 236px;
	--picbox-pano-width: 312px;
	
	--container-width: 1280px;
	
	--color-blue-body1-rgb: 29,79,108;
	--color-blue-body2-rgb: 25,38,48;
	*/
	
}


/* ### SLICK SLIDER START ### */

/* Slider */
.slick-slider{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus{
    outline: none;
}
.slick-list.dragging{
    cursor: pointer;
    cursor: grab;
}

.slick-slider .slick-track,
.slick-slider .slick-list{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track{
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after{
    display: table;
    content: '';
}
.slick-track:after{
    clear: both;
}
.slick-loading .slick-track{
    visibility: hidden;
}

.slick-slide{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide{
    float: right;
}
.slick-slide img{
    display: block;
}
.slick-slide.slick-loading img{
    display: none;
}
.slick-slide.dragging img{
    pointer-events: none;
}
.slick-initialized .slick-slide{
    display: block;
}
.slick-loading .slick-slide{
    visibility: hidden;
}
.slick-vertical .slick-slide{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}




/* SLICK THEME START */

/* Slider */
.slick-loading .slick-list{
    background: #fff url('/gif/loading.gif') center center no-repeat;
}

/* Icons */
/* Arrows */
.slick-prev,
.slick-next{
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 33px;
    height: 33px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;	
	border-radius:50%;
	background-color:rgba(var(--ci-color-orange-rgb),.25);
	
	z-index:999 !important;
	
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
	background-color:rgba(var(--ci-color-orange-rgb),1);
}
.slick-prev:hover,
.slick-next:hover {
	/*
	background-color:rgba(0,0,0,.5);
	*/
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before{
	font-size: 18px;
    line-height: 1;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev{
    left: -50px;
}
[dir='rtl'] .slick-prev{
    right: -50px;
	left: auto;
}
.slick-prev:before{
	content: url("/gif/icons/icon-back.svg");
	
}
[dir='rtl'] .slick-prev:before{
	content: url("/gif/icons/icon-next.svg");
}

.slick-next{
	right: -50px;
}
[dir='rtl'] .slick-next{
    right: auto;
    left: -50px;
}
.slick-next:before{
	content: url("/gif/icons/icon-next.svg");
}
[dir='rtl'] .slick-next:before{
	content: url("/gif/icons/icon-back.svg");
}

/* Dots */
.slick-dotted.slick-slider{
    margin-bottom: 30px;
}

.slick-dots{
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li{
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before{
    opacity: 1;
}
.slick-dots li button:before{
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before{
    opacity: .75;
    color: black;
}

/* SLICK THEME ENDE */

/* ### SLICK SLIDER ENDE ### */





hr.divider {
	display:block;
	clear:both;
	margin:40px auto !important;
	width:66%; 
	text-align: center; 
	line-height: 1px; 
	height: 0px;
}

hr.divider {
	border-image: linear-gradient(to left, rgba(var(--ci-color-orange-rgb),0) 0%, rgba(var(--ci-color-orange-rgb),0.5) 50%, rgba(var(--ci-color-orange-rgb),0) 100%);
	border-image-slice: 1;
	border-width: 1px;
}





/* ### PATIENTENSTIMMEN START ### */


#patientenstimmen {
	/*
	clip-path: polygon(100% 0, 100% 87%, 0 100%, 0 13%);
	*/	
}


#patientenstimmen {
	width:60%;
	text-align:center;
	margin:10px auto;
	background-color:rgba(var(--ci-color-orange-rgb),.125);
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	padding:12px 0;
}


#patientenstimmen blockquote {
  /*
  font-size: 1.4em;
  color: #555555;
  */
  margin:50px auto;
  
  font-style:italic;
  padding:1.2em 30px 1.2em 95px;
  
  font-size:140%;
  line-height:160%;
  position: relative;
  /*
  width:60%;
  border-left:8px solid #78C0A8 ;
  background:#EDEDED;
  */
}

#patientenstimmen blockquote::before{
  font-family:Arial;
  content: "\201C";
  color:rgba(var(--ci-color-orange-rgb),.25);
  font-size:1500%;
  position: absolute;
  left: 0px;
  top:68px;
}

#patientenstimmen blockquote::after{
  content: '';
}

#patientenstimmen blockquote p {
	font-weight: 400;
	font-size:130% !important;
	line-height:120%;
}

#patientenstimmen blockquote cite {
  display:block;
  /*
  color:#333333;
  */
  font-style: normal;
  font-weight: 300;
  font-size:110% !important;
  margin-top:12px;
}


@media only screen and (max-width:960px) {
	#patientenstimmen {
		width:80%;
		text-align:center;
		margin:10px auto;
	}
}

@media only screen and (max-width:768px) {
	#patientenstimmen {
		width:100%;
		text-align:center;
		margin:10px auto;
	}
	
	#patientenstimmen blockquote {
		padding:1.2em 10px 1.2em 50px;
	}
	
	
	
	
	.slick-prev{
		left: -10px;
	}
	[dir='rtl'] .slick-prev{
		right: -10px;
		left: auto;
	}
	
	.slick-next{
		right: -10px;
	}
	[dir='rtl'] .slick-next{
		right: auto;
		left: -10px;
	}
	
	
}


/* ### PATIENTENSTIMMEN ENDE ### */





/* ##### FORMULAR START ##### */


#content .kontaktinfos {
	margin-top:36px;
}

#content .kontaktinfos .kontaktdaten p {
	text-align:center;
	font-size:200%;
	line-height:130%;
	margin-bottom:16px !important;
}

#content .kontaktinfos .kontaktdaten p.big {
	font-size:260%;
}

#content .kontaktinfos p.icon {
	text-align:center;
	margin-bottom:8px !important;
}

#content .kontaktinfos p.icon svg.icon-tabler {
	stroke: var(--ci-color-orange);
	stroke-width: 2;
	/*
	stroke-width: 1.5;
	stroke: #fff;
	fill: var(--ci-color-orange);
	*/
	width: 64px;
	height: 64px;
}


#content .parkschild {
	display:inline-block;
	vertical-align:-8px;
}

#content .parkschild svg.icon-tabler {
	stroke: var(--ci-color-blue);
	stroke-width: 2;	
	width: 32px;
	height: 32px;
}


#content section .formular .box_r {
	margin:0;	
}

article.formular {
	margin:0;
}

#content .formular form {
	font-size:100%;
}

#content section form {
	width:100%;
	margin:0 0 30px 0;
}

#content .formular form fieldset {
	padding:6px;
	margin:0 0 8px 0;
	border:1px solid #E6E6E6;
	font-size:100%;
	clear:none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

#content .formular form fieldset legend {
	font-size:200%;
	line-height:140%;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	/*
	padding:6px;
	background: rgba(256,256,256,0.5);
	background-color:#FCFCFC;
	*/
	background-color:#E6E6E6;
	padding:4px 6px;
	color:#333;
	font-weight:500;
}

#content .formular form p.r {
	text-align:right;
}

#content .formular form span.fl {
	float:left;
}

#content .formular form span.fr {
	float:right;
}

#content .formular form fieldset p {
	display:block;
	margin:0 0 4px 0;
	font-size:100%;
	width:auto;
}

#content .formular form fieldset label {
	display:inline-block;
	width:110px;
	margin:0;
	font-size:160%;
	line-height:140%;
}

#content .formular form fieldset label.ort {
	width:40px;
	margin-left:16px;
}

#content .formular form fieldset label.fl {
	float:left;
	display:inline-block;
	width:110px;
	margin:0 12px 0 0;
	word-wrap: break-word;
}

#content .formular form fieldset.border label.fl_textarea {
	margin:0;
}

#content .formular form fieldset label.captcha {
	width:120px;
}

#content .formular form fieldset label.radio_label {
	width:auto;
	margin-left:6px;
}

#content .formular form fieldset label.checkbox_label {
	width:auto;
	margin-left:6px;
	margin-right:16px;
	vertical-align:2px;
}

#content .formular form fieldset span.txt {
	font-size:160%;
	line-height:140%;
}

#content .formular form fieldset input.txt, 
#content .formular form fieldset textarea {
	display:inline-block;
	/*
	width:546px;
	*/
	width:calc(100% - 152px);
	margin:0 0 0 24px;
	padding:6px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	border:1px solid rgba(128,128,128,1);
	font-size:180%;
	line-height:140%;
}


#content form input, 
#content form textarea {
	/*
	font-family: Tahoma, Helvetica, Verdana, Arial, san-serif; 
	*/
	font-weight:normal;	
}

#content form fieldset textarea,
#content form fieldset textarea:hover {
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	/*
	border:1px solid #d5d5d5;
	*/
	border:1px solid rgba(128,128,128,1);
}

#content .formular form fieldset textarea.fl {
	float:left;	
	margin-left:14px;
}

#content .formular form fieldset input.nolabel, 
#content .formular form fieldset textarea.nolabel {
	margin-left:0;
	width:98%;
}

#content .formular form fieldset input.plz {
	width:60px;
}

#content .formular form fieldset input.ort {
	/*
	width:410px;
	110 24 62 40 24 2
	*/
	width:calc(100% - 288px);
	margin-left:0;
}

#content .formular form fieldset input.captcha  {
	width:110px;
}

#content .formular form fieldset input.radio, 
#content .formular form fieldset input.checkbox  {
	display:inline-block;
	width:16px;
	margin-left:25px;
}

#content .formular form fieldset select {
	margin-bottom:4px;
	margin-right:16px;
	/*
	border:1px solid #d5d5d5;
	*/
	border:1px solid rgba(128,128,128,1);
	background-color:#fff;
}

#content .formular form fieldset select option {
	padding:0 4px;
}

#content .formular form fieldset select.ohne {
	margin-left:6px;
}

#content .formular form fieldset .no_space_left  {
	margin-left:2px !important;
}

#content section .formular form .buttons {
	display:block;
	margin:4px 0 32px 0;		
}

#content section .formular form button,
#content section .formular form input[type="submit"],
#content section .formular form input[type="reset"] {
	width:auto;
	height:auto;
	display:inline-block;
	text-align:center;
	cursor:pointer;
	font-size:110%;	
	padding:6px;
	/*
	color:rgba(var(--ci-color-orange-rgb),1);
	border:2px solid rgba(var(--ci-color-orange-rgb),1);	
	*/
	
	color:rgba(var(--ci-color-blue-rgb),1);
	background-color:#fff;
	border:2px solid rgba(var(--ci-color-blue-rgb),1);
	
	-webkit-transition: color 400ms ease-out, background-color 200ms ease-in;
    transition: color 400ms ease-out, background-color 200ms ease-in;
	
	/*
	font-weight:400 !important;
	font-weight: 600 !important;
	*/
	
	font-weight:500 !important;
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	
}

#content section .formular form button:hover,
#content section .formular form input[type="submit"]:hover,
#content section .formular form input[type="reset"]:hover {
	text-decoration:none;
	color:#fff !important;
	
	background-color: rgba(var(--ci-color-blue-rgb),1);
	border:2px solid rgba(var(--ci-color-blue-rgb),1);
	/*
	background-color:rgba(var(--ci-color-orange-rgb),1);
	*/
	padding:6px;
	
}

#content section .formular form button *,
#content section .formular form input[type="submit"] *,
#content section .formular form input[type="reset"] * {
	text-decoration:none;
	color:#fff !important;
}

#content section .formular form input[type="reset"] {
	width:auto;
	height:auto;
	display:inline-block;
	text-align:center;
	cursor:pointer;
	font-size:90%;	
	padding:6px;
	color:rgba(244,73,73,1);
	border:2px solid rgba(244,73,73,1);	
	background-color:#fff;
	-webkit-transition: color 400ms ease-out, background-color 200ms ease-in;
    transition: color 400ms ease-out, background-color 200ms ease-in;
	font-weight:400 !important;
}

#content section .formular form input[type="reset"]:hover {
	text-decoration:none;
	color:#fff !important;
	background-color:rgba(244,73,73,1);
	padding:6px;
	
}

#form fieldset label.checkbox_label,
#content .formular form fieldset label.checkbox_label {
	width:auto;
	margin-left:6px;
	margin-right:16px;
	vertical-align:2px;
}

#form fieldset label.checkbox_txt_label,
#content .formular form fieldset label.checkbox_txt_label {
	width:90% !important;
	float:left;
	margin-left:0px;
	margin-right:16px;
	vertical-align:2px;
	font-weight:normal;
	display:inline-block;
}

#form fieldset input.checkbox_txt_label,
#content .formular form fieldset input.checkbox_txt_label {
	float:left;
	width:16px;
	margin:2px 6px 0 6px;
	display:inline-block;
}


#content .formular div.error {
	border:1px solid red;
	margin:4px 0 10px 0;
	padding:6px;
}

#content .formular div.error h3 {
	margin-top:0;
	color:red;
}

#content .formular div.error ul,
#content .formular div.error li:last-child {
	margin-bottom:0;
}

#content .formular  div.success {
	border:2px solid rgba(0,128,0,1);
	background-color:rgba(0,128,0,.125);
	margin:12px 0 18px 0;
	padding:6px;
}

#content .formular div.success h2 {
	color:#008000;
	margin:0 0 2px 0;
}


form#routenplaner {
	display:block;
	width:100%;
	max-width:50%;
	margin:30px 0 !important;
}

form#routenplaner fieldset {
	display:block;
	/*
	float:left;
	width:48%;
	*/
	width:calc(100% - 14px);
}

div#karte {
display:block;
	/*
	min-height:360px;
	*/
	min-height:480px;
	width:100%;
}

@media only screen and (max-width: 960px) {
	
	form#routenplaner {
		display:block;
		width:100%;
		max-width:100%;
	}
	
	form#routenplaner fieldset {
		display:block;
		float:none;
		width:calc(100% - 14px);		
	}
	
	#content .formular form fieldset p {
		clear:both;
	}
	
	#content .formular form fieldset label,
	#content .formular form fieldset label.fl,
	#content .formular form fieldset label.ort	{
		display:block;
		width:auto;		
		float:none;
	}
	
	#content .formular form fieldset label.radio_label {
		display:inline-block;
		width:auto;
		margin-left:6px;
		margin-right:24px;
	}

	#content .formular form fieldset input.txt, 
	#content .formular form fieldset textarea,
	#content .formular form fieldset input.plz,
	#content .formular form fieldset input.ort {
		display:block;
		width:97%;
		margin:0;
	}

	#content .formular form fieldset textarea.fl {
		display:block;
		margin-left:0;	
	}
	
	#content .formular form fieldset input.radio {
		width:16px;
		display:inline-block;
	}

	#content .formular form fieldset input.captcha  {
		width:100px;
	}
	
	#content .formular form fieldset input.captcha,
	#content .formular form fieldset span.frage {
		display:inline-block !important;
		margin-right:6px;
	}
	
	#content .formular form fieldset.border label.fl_textarea {
		margin:0;
	}

	#content .formular form fieldset label.captcha {
		width:120px;
	}

	#content .formular form fieldset label.radio_label {
		width:auto;
		margin-left:6px;
	}

	#content .formular form fieldset label.checkbox_label {
		width:auto;
		margin-left:6px;
		margin-right:16px;
		vertical-align:2px;
	}
	
	#content .formular form fieldset p.checkboxen input.checkbox,
	#content .formular form fieldset p.checkboxen label.checkbox {
		display:inline-block !important;
	}
	
	#content .formular form fieldset p.checkboxen label.checkbox {
		margin-right:12px !important;
	}
	
}

#content form fieldset label.txt.url,
#content form fieldset input.txt.url,
#content form fieldset label.url,
#content form fieldset input.url {
	display:none !important;
}

#content form fieldset input:focus,
#content form fieldset select:focus,
#content form fieldset textarea:focus {	
	background:rgba(236,236,236,.5);
}

/* ##### FORMULAR ENDE ##### */






/* FANCYBOX START */

/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 * 
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
 * 
 * Version: 1.3.4 (11/11/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	margin-left: -20px;
	cursor: pointer;
	overflow: hidden;
	z-index: 9991104;
	display: none;
}

#fancybox-loading div {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 480px;
	background-image: url('/gif/fancybox/fancybox.png');
}

#fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9991100;
	display: none;
}

#fancybox-tmp {
	padding: 0;
	margin: 0;
	border: 0;
	overflow: auto;
	display: none;
}

#fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px;
	z-index: 9991101;
	outline: none;
	display: none;
}

#fancybox-outer {
	position: relative;
	width: 100%;
	height: 100%;
	background: #fff;
}

#fancybox-content {
	width: 0;
	height: 0;
	padding: 0;
	outline: none;
	position: relative;
	overflow: hidden;
	z-index: 9991102;
	border: 0px solid #fff;
}

#fancybox-hide-sel-frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	z-index: 9991101;
}

#fancybox-close {
	position: absolute;
	top: -15px;
	right: -15px;
	width: 30px;
	height: 30px;
	background: transparent url('/gif/fancybox/fancybox.png') -40px 0px;
	cursor: pointer;
	z-index: 9991103;
	display: none;
}

#fancybox-error {
	color: #444;
	font: normal 12px/20px Arial;
	padding: 14px;
	margin: 0;
}

#fancybox-img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border: none;
	outline: none;
	line-height: 0;
	vertical-align: top;
}

#fancybox-frame {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

#fancybox-left, #fancybox-right {
	position: absolute;
	bottom: 0px;
	height: 100%;
	width: 35%;
	cursor: pointer;
	outline: none;
	background: transparent url('/gif/fancybox/blank.gif');
	z-index: 9991102;
	display: none;
}

#fancybox-left {
	left: 0px;
}

#fancybox-right {
	right: 0px;
}

#fancybox-left-ico, #fancybox-right-ico {
	position: absolute;
	top: 50%;
	left: -9999px;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	cursor: pointer;
	z-index: 9991102;
	display: block;
}

#fancybox-left-ico {
	background-image: url('/gif/fancybox/fancybox.png');
	background-position: -40px -30px;
}

#fancybox-right-ico {
	background-image: url('/gif/fancybox/fancybox.png');
	background-position: -40px -60px;
}

#fancybox-left:hover, #fancybox-right:hover {
	visibility: visible; /* IE6 */
}

#fancybox-left:hover span {
	left: 20px;
}

#fancybox-right:hover span {
	left: auto;
	right: 20px;
}

.fancybox-bg {
	position: absolute;
	padding: 0;
	margin: 0;
	border: 0;
	width: 20px;
	height: 20px;
	z-index: 9991001;
}

#fancybox-bg-n {
	top: -20px;
	left: 0;
	width: 100%;
	background-image: url('/gif/fancybox/fancybox-x.png');
}

#fancybox-bg-ne {
	top: -20px;
	right: -20px;
	background-image: url('/gif/fancybox/fancybox.png');
	background-position: -40px -162px;
}

#fancybox-bg-e {
	top: 0;
	right: -20px;
	height: 100%;
	background-image: url('/gif/fancybox/fancybox-y.png');
	background-position: -20px 0px;
}

#fancybox-bg-se {
	bottom: -20px;
	right: -20px;
	background-image: url('/gif/fancybox/fancybox.png');
	background-position: -40px -182px; 
}

#fancybox-bg-s {
	bottom: -20px;
	left: 0;
	width: 100%;
	background-image: url('/gif/fancybox/fancybox-x.png');
	background-position: 0px -20px;
}

#fancybox-bg-sw {
	bottom: -20px;
	left: -20px;
	background-image: url('/gif/fancybox/fancybox.png');
	background-position: -40px -142px;
}

#fancybox-bg-w {
	top: 0;
	left: -20px;
	height: 100%;
	background-image: url('/gif/fancybox/fancybox-y.png');
}

#fancybox-bg-nw {
	top: -20px;
	left: -20px;
	background-image: url('/gif/fancybox/fancybox.png');
	background-position: -40px -122px;
}

#fancybox-title {
	font-family: Helvetica;
	font-size: 12px;
	z-index: 9991102;
}

.fancybox-title-inside {
	padding-bottom: 10px;
	text-align: center;
	color: #333;
	background: #fff;
	position: relative;
}

.fancybox-title-outside {
	padding-top: 10px;
	color: #fff;
}

.fancybox-title-over {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #FFF;
	text-align: left;
}

#fancybox-title-over {
	padding: 10px;
	background-image: url('/gif/fancybox/fancy_title_over.png');
	display: block;
}

.fancybox-title-float {
	position: absolute;
	left: 0;
	bottom: -20px;
	height: 32px;
}

#fancybox-title-float-wrap {
	border: none;
	border-collapse: collapse;
	width: auto;
}

#fancybox-title-float-wrap td {
	border: none;
	white-space: nowrap;
}

#fancybox-title-float-left {
	padding: 0 0 0 15px;
	background: url('/gif/fancybox/fancybox.png') -40px -90px no-repeat;
}

#fancybox-title-float-main {
	color: #FFF;
	line-height: 29px;
	font-weight: bold;
	padding: 0 0 3px 0;
	background: url('/gif/fancybox/fancybox-x.png') 0px -40px;
}

#fancybox-title-float-right {
	padding: 0 0 0 15px;
	background: url('/gif/fancybox/fancybox.png') -55px -90px no-repeat;
}

/* FANCYBOX ENDE */





/* #### GALLERY BLUEIMP START #### */

.blueimp-gallery,.blueimp-gallery>.slides>.slide>.slide-content{position:absolute;top:0;right:0;bottom:0;left:0;-moz-backface-visibility:hidden}.blueimp-gallery>.slides>.slide>.slide-content{margin:auto;width:auto;height:auto;max-width:100%;max-height:100%;opacity:1}.blueimp-gallery{position:fixed;z-index:999999999;overflow:hidden;background:#000;background:rgba(0,0,0,.9);opacity:0;display:none;direction:ltr;-ms-touch-action:none;touch-action:none}.blueimp-gallery-carousel{position:relative;z-index:auto;margin:1em auto;padding-bottom:56.25%;box-shadow:0 0 10px #000;-ms-touch-action:pan-y;touch-action:pan-y}.blueimp-gallery-display{display:block;opacity:1}.blueimp-gallery>.slides{position:relative;height:100%;overflow:hidden}.blueimp-gallery-carousel>.slides{position:absolute}.blueimp-gallery>.slides>.slide{position:relative;float:left;height:100%;text-align:center;-webkit-transition-timing-function:cubic-bezier(.645,.045,.355,1);-moz-transition-timing-function:cubic-bezier(.645,.045,.355,1);-ms-transition-timing-function:cubic-bezier(.645,.045,.355,1);-o-transition-timing-function:cubic-bezier(.645,.045,.355,1);transition-timing-function:cubic-bezier(.645,.045,.355,1)}.blueimp-gallery,.blueimp-gallery>.slides>.slide>.slide-content{-webkit-transition:opacity .2s linear;-moz-transition:opacity .2s linear;-ms-transition:opacity .2s linear;-o-transition:opacity .2s linear;transition:opacity .2s linear}.blueimp-gallery>.slides>.slide-loading{background:url('/gif/blueimp-gallery/loading.gif') center no-repeat;background-size:64px 64px}.blueimp-gallery>.slides>.slide-loading>.slide-content{opacity:0}.blueimp-gallery>.slides>.slide-error{background:url('/gif/blueimp-gallery/error.png') center no-repeat}.blueimp-gallery>.slides>.slide-error>.slide-content{display:none}.blueimp-gallery>.next,.blueimp-gallery>.prev{position:absolute;top:50%;left:15px;width:40px;height:40px;margin-top:-23px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:60px;font-weight:100;line-height:30px;color:#fff;text-decoration:none;text-shadow:0 0 2px #000;text-align:center;background:#222;background:rgba(0,0,0,.5);-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;border:3px solid #fff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:.5;cursor:pointer;display:none}.blueimp-gallery>.next{left:auto;right:15px}.blueimp-gallery>.close,.blueimp-gallery>.title{position:absolute;top:15px;left:15px;margin:0 40px 0 0;font-size:20px;line-height:30px;color:#fff;text-shadow:0 0 2px #000;opacity:.8;display:none}.blueimp-gallery>.close{padding:15px;right:15px;left:auto;margin:-15px;font-size:30px;text-decoration:none;cursor:pointer}.blueimp-gallery>.play-pause{position:absolute;right:15px;bottom:15px;width:15px;height:15px;background:url('/gif/blueimp-gallery/play-pause.png') 0 0 no-repeat;cursor:pointer;opacity:.5;display:none}.blueimp-gallery-playing>.play-pause{background-position:-15px 0}.blueimp-gallery>.close:hover,.blueimp-gallery>.next:hover,.blueimp-gallery>.play-pause:hover,.blueimp-gallery>.prev:hover,.blueimp-gallery>.title:hover{color:#fff;opacity:1}.blueimp-gallery-controls>.close,.blueimp-gallery-controls>.next,.blueimp-gallery-controls>.play-pause,.blueimp-gallery-controls>.prev,.blueimp-gallery-controls>.title{display:block;-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-ms-transform:translateZ(0);-o-transform:translateZ(0);transform:translateZ(0)}.blueimp-gallery-left>.prev,.blueimp-gallery-right>.next,.blueimp-gallery-single>.next,.blueimp-gallery-single>.play-pause,.blueimp-gallery-single>.prev{display:none}.blueimp-gallery>.close,.blueimp-gallery>.next,.blueimp-gallery>.play-pause,.blueimp-gallery>.prev,.blueimp-gallery>.slides>.slide>.slide-content{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}body:last-child .blueimp-gallery>.slides>.slide-error{background-image:url('/gif/blueimp-gallery/error.svg')}body:last-child .blueimp-gallery>.play-pause{width:20px;height:20px;background-size:40px 20px;background-image:url('/gif/blueimp-gallery/play-pause.svg')}body:last-child .blueimp-gallery-playing>.play-pause{background-position:-20px 0}*+html .blueimp-gallery>.slides>.slide{min-height:300px}*+html .blueimp-gallery>.slides>.slide>.slide-content{position:relative}.blueimp-gallery>.indicator{position:absolute;top:auto;right:15px;bottom:15px;left:15px;margin:0 40px;padding:0;list-style:none;text-align:center;line-height:10px;display:none}.blueimp-gallery>.indicator>li{display:inline-block;width:9px;height:9px;margin:6px 3px 0 3px;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;border:1px solid transparent;background:#ccc;background:rgba(255,255,255,.25) center no-repeat;border-radius:5px;box-shadow:0 0 2px #000;opacity:.5;cursor:pointer}.blueimp-gallery>.indicator>.active,.blueimp-gallery>.indicator>li:hover{background-color:#fff;border-color:#fff;opacity:1}.blueimp-gallery>.indicator>li:after{opacity:0;display:block;position:absolute;content:'';top:-5em;width:75px;height:75px;transition:transform .6s ease-out,opacity .4s ease-out;transform:translateX(-50%) translateY(0) translateZ(0);pointer-events:none}.blueimp-gallery>.indicator>li:hover:after{opacity:1;border-radius:50%;background:inherit;transform:translateX(-50%) translateY(-5px) translateZ(0)}.blueimp-gallery>.indicator>.active:after{display:none}.blueimp-gallery-controls>.indicator{display:block;-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-ms-transform:translateZ(0);-o-transform:translateZ(0);transform:translateZ(0)}.blueimp-gallery-single>.indicator{display:none}.blueimp-gallery>.indicator{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}*+html .blueimp-gallery>.indicator>li{display:inline}.blueimp-gallery>.slides>.slide>.video-content>img{position:absolute;top:0;right:0;bottom:0;left:0;margin:auto;width:auto;height:auto;max-width:100%;max-height:100%;-moz-backface-visibility:hidden}.blueimp-gallery>.slides>.slide>.video-content>video{position:absolute;top:0;left:0;width:100%;height:100%}.blueimp-gallery>.slides>.slide>.video-content>iframe{position:absolute;top:100%;left:0;width:100%;height:100%;border:none}.blueimp-gallery>.slides>.slide>.video-playing>iframe{top:0}.blueimp-gallery>.slides>.slide>.video-content>a{position:absolute;top:50%;right:0;left:0;margin:-64px auto 0;width:128px;height:128px;background:url('/gif/blueimp-gallery/video-play.png') center no-repeat;opacity:.8;cursor:pointer}.blueimp-gallery>.slides>.slide>.video-content>a:hover{opacity:1}.blueimp-gallery>.slides>.slide>.video-playing>a,.blueimp-gallery>.slides>.slide>.video-playing>img{display:none}.blueimp-gallery>.slides>.slide>.video-content>video{display:none}.blueimp-gallery>.slides>.slide>.video-playing>video{display:block}.blueimp-gallery>.slides>.slide>.video-loading>a{background:url('/gif/blueimp-gallery/loading.gif') center no-repeat;background-size:64px 64px}body:last-child .blueimp-gallery>.slides>.slide>.video-content:not(.video-loading)>a{background-image:url('/gif/blueimp-gallery/video-play.svg')}*+html .blueimp-gallery>.slides>.slide>.video-content{height:100%}*+html .blueimp-gallery>.slides>.slide>.video-content>a{left:50%;margin-left:-64px}

.blueimp-gallery > .slides > .slide > .text-content {
  overflow: auto;
  margin: 60px auto;
  padding: 0 60px;
  max-width: 920px;
  text-align: left;
}

#blueimp-gallery p.title,
#blueimp-gallery h3.title {
	color:#fff !important;
	text-shadow:none;
}

#blueimp-gallery a {
	border:none !important;
}

/* #### GALLERY BLUEIMP ENDE #### */




#content section div.hinweisbox {
	padding:10px;
	border:1px solid #F2F2F2;
}

#content section div.hinweisbox-color {
	background-color:rgba(var(--ci-color-orange-rgb),.125);
}



#content iframe {
	border:none !important;
}

/* ### RESPONSIVE VIDEO START ### */

/* YouTube START */

#content .youtubevideo {
	border:none;
	width:650px;
	height:366px;
}

#content div.responsive-video {
	position:relative;
	padding-bottom:56.25%; /* Default for 1600x900 videos 16:9 ratio*/ 
	padding-top:0px;
	height:0;
	overflow:hidden;
	margin-bottom:16px;
}

#content div.responsive-video iframe {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	border:none !important;
}

.youtube-player {
	position: relative;
	padding-bottom: 56.23%;
	/* Use 75% for 4:3 videos */
	height: 0;
	overflow: hidden;
	max-width: 100%;
	background: #000;
	margin: 0px;
}
    
.youtube-player iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	background: transparent;
}
    
.youtube-player img {
	bottom: 0;
	display: block;
	left: 0;
	margin: auto;
	max-width: 100%;
	width: 100%;
	position: absolute;
	right: 0;
	top: 0;
	border: none;
	height: auto;
	cursor: pointer;
	-webkit-transition: .4s all;
	-moz-transition: .4s all;
	transition: .4s all;
}
    
.youtube-player img:hover {
	-webkit-filter: brightness(75%);
}
    
.youtube-player .play {
	height: 72px;
	width: 72px;
	left: 50%;
	top: 50%;
	margin-left: -36px;
	margin-top: -36px;
	position: absolute;
	background: url("/gif/icons/bt_play.png") no-repeat;
	cursor: pointer;
}

/* YouTube ENDE */	
	

/* YouTube Blocked Start */

#container div.responsive-video.blocked {
	position:relative;
}

#container div.responsive-video.blocked .message {
	position: absolute;
	top: 0;
	left: 0;
	width:100%;
	height:100%;
	padding:0;
	z-index:100 !important;
}

#container div.responsive-video.blocked .message .textblock {
	position: absolute;
	left:10px;
	bottom:10px;
	z-index:200 !important;
	text-align:left;
	width:calc(100% - 20px);
}	

#container div.responsive-video.blocked .message p,
#container div.responsive-video.blocked .message * {
	color:#fff !important;
}

#container div.responsive-video.blocked .message p {
	line-height:120%;
	margin-left:0;
	margin-right:0;
	font-size:110%;
}

#container div.responsive-video.blocked .message a {
	cursor: pointer;
	/*
	color:red !important;
	*/
	color:#fff !important;	
	text-decoration:dotted underline;
}

#container div.responsive-video.blocked .message a.youtube-blocked {
	color:#fff !important;
	/*
	background-color:red;
	*/
	background-color:#B50000;
	padding:4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	margin:6px auto 0 auto !important;
	display:inline-block;
}

#container div.responsive-video.blocked .message a.pref,
#container div.responsive-video.blocked .message a.ext {
	margin:6px auto 0 auto !important;
	display:inline-block;
}

#container div.responsive-video.blocked .message a.pref,
#container div.responsive-video.blocked .message a.button_link {
	color:#fff !important;
	background:rgba(0,0,0,.5);
	padding:4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	margin:6px auto 0 auto !important;
	display:inline-block;
}

#container div.responsive-video.blocked .message a.extlink {
	/*
	text-decoration:none;
	*/
	text-decoration:dotted underline;
}

#container div.responsive-video.blocked .message span {
	padding:1px 4px !important;
	line-height:140%;
	background-color:rgba(0,0,0,.5) !important;
}

@media (max-width: 960px) {
	
	#container div.responsive-video.blocked .message p {
		line-height:110%;	
		font-size:90%;
	}
	
}

/* YouTube Blocked ENDE */

/* Vimeo Blocked Start */

#container div.vimeo-player {
	position: relative;
	padding-bottom: 56.25%; /* Default for 1600x900 videos 16:9 ratio*/
	padding-top: 0px;
	height: 0;
	overflow: hidden;
	margin-bottom:16px;
}

#container div.vimeo-player iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#container div.vimeo-player img {
	width: 100%;
	height: 100%;
}


#container div.vimeo-player.blocked {
	position:relative;
	background-color:rgba(0,0,0,.5) !important;
}

#container div.vimeo-player.blocked .message {
	position: absolute;
	top: 0;
	left: 0;
	width:100%;
	height:100%;
	padding:0;
	z-index:100 !important;
}

#container div.vimeo-player.blocked .message .textblock {
	position: absolute;
	left:10px;
	bottom:0px;
	z-index:200 !important;
	text-align:left;
	width:calc(100% - 20px);
}	

#container div.vimeo-player.blocked .message p,
#container div.vimeo-player.blocked .message * {
	color:#fff !important;
}

#container div.vimeo-player.blocked .message p {
	line-height:120%;
	margin-left:0;
	margin-right:0;
	font-size:110%;
}

#container div.vimeo-player.blocked .message a {
	cursor: pointer;
	border:none !important;
	/*
	color:red !important;
	text-decoration: none !important; 
	*/
	color:#fff !important;	
	text-decoration:dotted underline;	
}

#container div.vimeo-player.blocked .message a.vimeo-blocked {
	color:#fff !important;
	/*
	background-color:red;
	*/
	background-color:#B50000;
	padding:4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	margin:6px auto 0 auto !important;
	display:inline-block;
}

#container div.vimeo-player.blocked .message a.pref,
#container div.vimeo-player.blocked .message a.ext {
	margin:6px auto 0 auto !important;
	display:inline-block;
}

#container div.vimeo-player.blocked .message a.pref,
#container div.vimeo-player.blocked .message a.button_link {
	color:#fff !important;
	background:rgba(0,0,0,.5);
	padding:4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	margin:6px auto 0 auto !important;
	display:inline-block;
}

#container div.vimeo-player.blocked .message a.extlink {
	/*
	text-decoration:none;
	*/
	text-decoration:dotted underline;
}

#container div.vimeo-player.blocked .message span {
	padding:1px 4px !important;
	line-height:140%;
	background-color:rgba(0,0,0,.5) !important;
}

@media (max-width: 960px) {
	
	#container div.vimeo-player.blocked .message p {
		line-height:110%;	
		font-size:90%;
	}
	
}

/* Vimeo Blocked Ende */


.vimeo-player img {
	bottom: 0;
	display: block;
	left: 0;
	margin: auto;
	max-width: 100%;
	width: 100%;
	position: absolute;
	right: 0;
	top: 0;
	border: none;
	height: auto;
	cursor: pointer;
	-webkit-transition: .4s all;
	-moz-transition: .4s all;
	transition: .4s all;
}
    
.vimeo-player img:hover {
	-webkit-filter: brightness(75%);
}


/* ### RESPONSIVE VIDEO ENDE ### */








/* ### GMAP INFOFENSTER STYLES START ### */

.gm-style .gm-style-iw-t {
    position: absolute;
    width: 100%;
}

.gm-style .gm-style-iw-c {
    position: absolute;
    box-sizing: border-box;
    overflow: hidden;
    top: 0;
    left: 0;
    transform: translate(-50%,-100%);
    background-color: white;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 7px 1px rgba(0,0,0,0.3);
}

.gm-style .gm-style-iw-d {
    box-sizing: border-box;
    overflow: auto;
}

.gm-style .gm-style-iw-t::after {
    background: linear-gradient(45deg,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 51%,rgba(255,255,255,0) 100%);
    box-shadow: -2px 2px 2px 0 rgba(178,178,178,.4);
    content: "";
    height: 15px;
    left: 0;
    position: absolute;
    top: 0;
    transform: translate(-50%,-50%) rotate(-45deg);
    width: 15px;
}

.gm-style-iw-a {
	position: absolute; 
	left: 15px; 
	top: 15px;
}
.gm-style-iw-t {
	right: 0px; 
	bottom: 59px;
}
.gm-style-iw gm-style-iw-c {
	max-width: 654px; 
	max-height: 541px;
}
.gm-style-iw-d {
	max-width: 618px; 
	max-height: 505px;
}


.fancybox_content {
	font-size:100%;
	width:auto;
	min-width:216px;
	height:auto;
	min-height:120px;
	overflow-y:auto;
	margin:0;
	padding:6px;
	display:inline-block;
	background-color:#fff;
}

.fancybox_content * {}

.fancybox_content p,
.fancybox_content p a {
	margin:0 !important;
	padding:0;
}

.fancybox_content a {
	color:#009AE7 !important;	
}

.fancybox_content img.pic_object {
	width:100%;
	max-width:216px;
	height:auto;
	margin-bottom:2px;
}

.fancybox_content {
	text-align:left;
}

.fancybox_content p {
	text-align:left;
	line-height:130% !important;
	margin:0 0 3px 0;
}

#container .fancybox_content p.object_name a {
	font-weight:600;	
	color:#555 !important;
	font-size:120%;
}

#container .fancybox_content p.object_location a {
	font-weight:400;	
	color:#555 !important;
	font-size:70%;
	line-height:100% !important;
}


/* ### GMAP INFOFENSTER STYLES ENDE ### */



/* ### GMAP CONTROL STYLES START ### */

#map-controls {
	display:none;
}

 .gm-style .controls {
        font-size: 28px;  /* this adjusts the size of all the controls */

        background-color: white;
        box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
        box-sizing: border-box;
        border-radius: 2px;
        cursor: pointer;
        font-weight: 300;
		height: 1em;
        width: 1em;
        margin: 6px;
        text-align: center;
        user-select: none;
        padding: 2px;
      }
      .gm-style .controls button {
        border: 0;
        background-color: white;
        color: rgba(0, 0, 0, 0.6);
      }
      .gm-style .controls button:hover {
        color: rgba(0, 0, 0, 0.9);
      }

      .gm-style .controls.zoom-control {
        display: flex;
        flex-direction: column;
        height: auto;
      }
      .gm-style .controls.zoom-control button {
        font: 0.85em Arial;
        margin: 1px;
        padding: 0px;
      }
	  
	  .gm-style .controls.streetview-control {
        display: flex;
        flex-direction: column;
        height: auto;
      }

      .gm-style .controls.maptype-control {
        display: flex;
        flex-direction: row;
        width: auto;
      }
      .gm-style .controls.maptype-control button {
        display: inline-block;
        font-size: 0.5em;
        margin: 0 1px;
        padding: 0 6px;
      }
      .gm-style .controls.maptype-control.maptype-control-is-map .maptype-control-map {
        font-weight: 700;
      }
      .gm-style .controls.maptype-control.maptype-control-is-satellite .maptype-control-satellite {
        font-weight: 700;
      }

      .gm-style .controls.fullscreen-control button {
        display: block;
        font-size: 1em;
        height: 100%;
        width: 100%
      }
      .gm-style .controls.fullscreen-control .fullscreen-control-icon {
        border-style: solid;
        height: 0.25em;
        position:absolute;
        width: 0.25em;
      }
      .gm-style .controls.fullscreen-control .fullscreen-control-icon.fullscreen-control-top-left {
        border-width: 2px 0 0 2px;
        left: 0.1em;
        top: 0.1em;
      }
      .gm-style .controls.fullscreen-control.is-fullscreen .fullscreen-control-icon.fullscreen-control-top-left {
        border-width: 0 2px 2px 0;
      }
      .gm-style .controls.fullscreen-control .fullscreen-control-icon.fullscreen-control-top-right {
        border-width: 2px 2px 0 0;
        right: 0.1em;
        top: 0.1em;
      }
      .gm-style .controls.fullscreen-control.is-fullscreen .fullscreen-control-icon.fullscreen-control-top-right {
        border-width: 0 0 2px 2px;
      }
      .gm-style .controls.fullscreen-control .fullscreen-control-icon.fullscreen-control-bottom-left {
        border-width: 0 0 2px 2px;
        left: 0.1em;
        bottom: 0.1em;
      }
      .gm-style .controls.fullscreen-control.is-fullscreen .fullscreen-control-icon.fullscreen-control-bottom-left {
        border-width: 2px 2px 0 0;
      }
      .gm-style .controls.fullscreen-control .fullscreen-control-icon.fullscreen-control-bottom-right {
        border-width: 0 2px 2px 0;
        right: 0.1em;
        bottom: 0.1em;
      }
      .gm-style .controls.fullscreen-control.is-fullscreen .fullscreen-control-icon.fullscreen-control-bottom-right {
        border-width: 2px 0 0 2px;
      }

/* ### GMAP CONTROL STYLES ENDE ### */



/* ### GMAP DIRECTIONS STYLES START ### */

.adp,
.adp table  {	
	font-style: normal;
	font-weight: 400;
}

.adp b,.adp-list b {
	font-weight:400
}

.adp-warnbox {
margin:5px 0 3px 0
}

.warnbox-content {
	background:transparent;
	background:none;
}

.warnbox-c1,
.warnbox-c2 {
	background:transparent;
	background:none;
	font-size:1px;
	height:1px;
	margin-top:0;
	overflow:hidden
}

.warnbox-c1 {
	margin:0 2px
}

.warnbox-c2 {
	margin:0 1px
}

.adp-list {
	background:#fff;
	border:1px solid #cdcdcd;
	cursor:pointer;
	padding:4px;	
	font-style: normal;
	font-weight: 400;
}

.adp-fullwidth {
	width:100%
}

.adp-listsel {
	background:#eee;
	text-decoration:none
}

.adp-listheader {
	padding:4px
}

.adp-placemark {
	background:#eee;
	border:1px solid silver;
	color:#000;
	cursor:pointer;
	margin:10px 0px 10px 0px;
	vertical-align:middle
}

.adp-placemark tr td,
.adp-placemark .adp-text {
	vertical-align:middle;
	padding:4px !important;
}

img.adp-marker {
	width:22px;
	height:40px
}

img.adp-marker2 {
	width:27px;
	height:43px
}

.adp-details,
.adp-legal {
	color:#676767
}

.adp-summary {
	padding:0 3px 3px 3px
}

.adp-step,
.adp-substep {
	border-top:1px solid #cdcdcd;
	margin:0;
	padding:6px 3px 3px 3px !important;
	vertical-align:middle;
	line-height:120%;
}

.adp-list img,
.adp-substep img {
	width:15px;
	height:15px;
	position:relative;
	top:2px;
	margin-right:3px
}

.adp-distance {
	white-space:nowrap
}

.adp-step,
.adp-text {
	width:100%;
}

.adp-directions {
cursor:pointer;
	border-collapse:collapse
}

.adp-list .gm-arrow {
	width:8px;
	height:9px;
	margin:5px 0 3px
}

.adp-agencies {
	font-size:80%;
	margin:5px 0
}
.adp-summary-duration {
	float:right;
	margin-left:7px;
	white-space:nowrap
}

.adp-substep .gm-line {
	margin-right:4px
}

.adp-substep .adp-stepicon {
	overflow:hidden;
	position:relative;
	top:0;
	left:0;
	width:16px;
	height:16px
}

.adp-substep .adp-stepicon .adp-maneuver {
	background-size:19px 630px;
	position:absolute;
	left:0;
	width:16px;
	height:16px
}

.adp-substep .adp-stepicon .adp-maneuver.adp-ferry {
	background-position:0 -614px
}

.adp-substep .adp-stepicon .adp-maneuver.adp-ferry-train {
	background-position:0 -566px
}

.adp-substep .adp-stepicon .adp-maneuver.adp-merge {
	background-position:0 -143px
}

.adp-substep .adp-stepicon .adp-maneuver.adp-straight {
	background-position:0 -534px
}

.adp-substep .adp-stepicon .adp-maneuver.adp-fork-left {
	background-position:0 -550px
}

.adp-substep .adp-stepicon .adp-maneuver.adp-ramp-left {
	background-position:0 -598px
}

.adp-substep .adp-stepicon .adp-maneuver.adp-roundabout-left {
	background-position:0 -197px
}

.adp-substep .adp-stepicon .adp-maneuver.adp-turn-left,
.adp-substep .adp-stepicon .adp-maneuver.adp-keep-left {
	background-position:0 -413px
}

.adp-substep .adp-stepicon .adp-maneuver.adp-turn-sharp-left {
	background-position:0 0
}

.adp-substep .adp-stepicon .adp-maneuver.adp-turn-slight-left {
	background-position:0 -378px
}

.adp-substep .adp-stepicon .adp-maneuver.adp-uturn-left {
	background-position:0 -305px
}

.adp-substep .adp-stepicon .adp-maneuver.adp-fork-right {
	background-position:0 -499px
}

.adp-substep .adp-stepicon .adp-maneuver.adp-ramp-right {
	background-position:0 -429px
}

.adp-substep .adp-stepicon .adp-maneuver.adp-roundabout-right {
	background-position:0 -232px
}

.adp-substep .adp-stepicon .adp-maneuver.adp-turn-right,
.adp-substep .adp-stepicon .adp-maneuver.adp-keep-right {
	background-position:0 -483px
}

.adp-substep .adp-stepicon .adp-maneuver.adp-turn-sharp-right {
	background-position:0 -582px
}

.adp-substep .adp-stepicon .adp-maneuver.adp-turn-slight-right {
	background-position:0 -51px
}

.adp-substep .adp-stepicon .adp-maneuver.adp-uturn-right {
	background-position:0 -35px
}

div#route > div {
	font-size:120% !important;
	color:rgba(76,76,72,1) !important;
	/*
	font-family: Tahoma, Helvetica, Verdana, Arial, san-serif;
	*/
	font-weight:400 !important;	
}

div#route div.adp-summary {
	font-size:140% !important;
}

div#route div.adp-substep {
	font-size:140% !important;
}

/* ### GMAP DIRECTIONS STYLES ENDE ### */





/* GMAP Blocked Start */

#box_karte.blocked {
	position:relative;
}

#box_karte.blocked .message {
	position: absolute;
	top: 4px;
	left: 4px;	
	width: calc(100% - 60px);
	height: calc(100% - 60px);		
	z-index:100 !important;
	border:0px solid red !important;	
	/*
	background:rgba(0,0,0,.5) url(/gif/bg-routenplaner.jpg) no-repeat center center !important;
	*/
	background-color:rgba(0,0,0,.75);
	color:#fff !important;
	text-align:center;
	padding:30px;
}

#box_karte.blocked #karten_box {
	background:rgba(0,0,0,.75);
}

#box_karte.blocked .message p,
#box_karte.blocked .message * {
	color:#fff !important;
}

#box_karte.blocked .message a {
	cursor: pointer;
	/*
	color:red !important;
	*/
	color:#fff !important;
	text-decoration:dotted underline;
}

#box_karte.blocked .message a.googlemaps-blocked {
	color:#fff !important;
	/*
	background-color:red;
	*/
	background-color:#B50000;
	padding:6px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	margin-bottom:6px;
	display:inline-block;
}

/* GMAP Blocked Ende */




/* Buttons Start */

#content .link_button {
	width:auto;
	height:auto;
	display:inline-block;
	text-align:center;
	cursor:pointer;
	padding:6px;
	font-size:100%;		
	/*
	color:rgba(var(--ci-color-orange-rgb),1);
	border:2px solid rgba(var(--ci-color-orange-rgb),1);
	*/
	color:rgba(51,51,51,1);
	border:2px solid rgba(51,51,51,1);
	background-color:#fff;
	-webkit-transition: color 400ms ease-out, background-color 200ms ease-in;
    transition: color 400ms ease-out, background-color 200ms ease-in;	
}

#content :hover.link_button,
#content a:hover.link_button {
	text-decoration:none;
	color:#fff !important;	
	/*
	background-color:rgba(var(--ci-color-orange-rgb),1);
	*/	
	background-color:rgba(51,51,51,1);
	padding:6px;
}

#content :hover.link_button * {
	text-decoration:none;
	color:#fff !important;
}

#content .link_button_small {
	width:auto;
	height:auto;
	display:inline-block;
	text-align:center;
	cursor:pointer;
	font-size:90%;	
	padding:6px;
	color:rgba(var(--ci-color-orange-rgb),1);
	border:1px solid rgba(var(--ci-color-orange-rgb),1);	
	background-color:#fff;
	-webkit-transition: color 400ms ease-out, background-color 200ms ease-in;
    transition: color 400ms ease-out, background-color 200ms ease-in;
	font-weight:400 !important;
}

#content :hover.link_button_small,
#content a:hover.link_button_small {
	text-decoration:none;
	color:#fff !important;
	background-color:rgba(var(--ci-color-orange-rgb),1);
	padding:6px;
	
}

#content :hover.link_button_small * {
	text-decoration:none;
	color:#fff !important;
}



#content .link_button_info {
	width:auto;
	height:auto;
	display:inline-block;
	text-align:center;
	cursor:pointer;
	font-size:100%;	
	padding:10px;
	color:rgba(var(--ci-color-dark-rgb),1);
	border:1px solid rgba(var(--ci-color-dark-rgb),1);	
	background-color:#fff;
	-webkit-transition: color 400ms ease-out, background-color 200ms ease-in;
    transition: color 400ms ease-out, background-color 200ms ease-in;
	font-weight:400 !important;
	text-decoration: none !important;
}

#content :hover.link_button_info,
#content a:hover.link_button_info {
	text-decoration:none;
	color:#fff !important;
	background-color:rgba(var(--ci-color-dark-rgb),1);
	padding:10px;
	
}

#content :hover.link_button_info * {
	text-decoration:none;
	color:#fff !important;
}

#content .link_button_info svg {
	width:20px;
	height:20px;
	vertical-align:-6px;
	stroke:rgba(var(--ci-color-dark-rgb),1) !important;
	-webkit-transition: stroke 400ms ease-out, stroke 200ms ease-in;
    transition: stroke 400ms ease-out, stroke 200ms ease-in;
}

#content :hover.link_button_info svg {	
	stroke:#fff !important;
}




#content .link_button_home {
	width:auto;
	height:auto;
	display:inline-block;
	text-align:center;
	cursor:pointer;
	font-size:100%;	
	padding:10px;
	/*
	color:rgba(var(--ci-color-dark-rgb),1);
	border:1px solid rgba(var(--ci-color-dark-rgb),1);	
	background-color:#fff;
	*/
	color:#fff;
	border:1px solid #fff;	
	background-color:rgba(var(--ci-color-blue-rgb),1);
	
	-webkit-transition: color 400ms ease-out, background-color 200ms ease-in;
    transition: color 400ms ease-out, background-color 200ms ease-in;
	font-weight:400 !important;
	text-decoration: none !important;
}

#content :hover.link_button_home,
#content a:hover.link_button_home {
	text-decoration:none;
	color:#fff !important;
	background-color:rgba(var(--ci-color-blue-rgb),1);
	padding:10px;	
}

#content :hover.link_button_home * {
	text-decoration:none;
	color:#fff !important;
}

#content .link_button_home svg {
	width:20px;
	height:20px;
	vertical-align:-6px;
	/*
	stroke:rgba(var(--ci-color-dark-rgb),1) !important;
	*/
	stroke:#fff !important;
	-webkit-transition: stroke 400ms ease-out, stroke 200ms ease-in;
    transition: stroke 400ms ease-out, stroke 200ms ease-in;
}

#content :hover.link_button_home svg {	
	stroke:#fff !important;
}





/* Buttons Ende */






/* ### KLARO START ### */

.klaro {
  font-family:inherit;
}
.klaro button {
  font-family:inherit;
  font-size:14px;
}
.klaro.cm-as-context-notice {
  height:100%;
  padding-bottom:12px;
  padding-top:12px
}
.klaro .cookie-modal .cm-switch-container,
.klaro .context-notice .cm-switch-container,
.klaro .cookie-notice .cm-switch-container {
  border-bottom-style:solid;
  border-bottom-width:1px;
  border-bottom-color:#c8c8c8;
  display:block;
  position:relative;
  padding:10px;
  padding-left:66px;
  line-height:20px;
  vertical-align:middle;
  min-height:40px
}
.klaro .cookie-modal .cm-switch-container:last-child,
.klaro .context-notice .cm-switch-container:last-child,
.klaro .cookie-notice .cm-switch-container:last-child {
  border-bottom:0
}
.klaro .cookie-modal .cm-switch-container:first-child,
.klaro .context-notice .cm-switch-container:first-child,
.klaro .cookie-notice .cm-switch-container:first-child {
  margin-top:0
}
.klaro .cookie-modal .cm-switch-container p,
.klaro .context-notice .cm-switch-container p,
.klaro .cookie-notice .cm-switch-container p {
  margin-top:0
}
.klaro .cookie-modal .cm-switch,
.klaro .context-notice .cm-switch,
.klaro .cookie-notice .cm-switch {
  position:relative;
  display:inline-block;
  width:50px;
  height:30px
}
.klaro .cookie-modal .cm-list-input:checked+.cm-list-label .slider,
.klaro .context-notice .cm-list-input:checked+.cm-list-label .slider,
.klaro .cookie-notice .cm-list-input:checked+.cm-list-label .slider {
  background-color:#1a936f;
}
.klaro .cookie-modal .cm-list-input.half-checked:checked+.cm-list-label .slider,
.klaro .context-notice .cm-list-input.half-checked:checked+.cm-list-label .slider,
.klaro .cookie-notice .cm-list-input.half-checked:checked+.cm-list-label .slider {
  background-color:#1a936f;
  opacity:.6
}
.klaro .cookie-modal .cm-list-input.half-checked:checked+.cm-list-label .slider::before,
.klaro .context-notice .cm-list-input.half-checked:checked+.cm-list-label .slider::before,
.klaro .cookie-notice .cm-list-input.half-checked:checked+.cm-list-label .slider::before {
  -ms-transform:translateX(10px);
  transform:translateX(10px)
}
.klaro .cookie-modal .cm-list-input.only-required+.cm-list-label .slider,
.klaro .context-notice .cm-list-input.only-required+.cm-list-label .slider,
.klaro .cookie-notice .cm-list-input.only-required+.cm-list-label .slider {
  background-color:#24cc9a;
  opacity:.8
}
.klaro .cookie-modal .cm-list-input.only-required+.cm-list-label .slider::before,
.klaro .context-notice .cm-list-input.only-required+.cm-list-label .slider::before,
.klaro .cookie-notice .cm-list-input.only-required+.cm-list-label .slider::before {
  -ms-transform:translateX(10px);
  transform:translateX(10px)
}
.klaro .cookie-modal .cm-list-input.required:checked+.cm-list-label .slider,
.klaro .context-notice .cm-list-input.required:checked+.cm-list-label .slider,
.klaro .cookie-notice .cm-list-input.required:checked+.cm-list-label .slider {
  background-color:#24cc9a;
  opacity:.8;
  cursor:not-allowed
}
.klaro .cookie-modal .slider,
.klaro .context-notice .slider,
.klaro .cookie-notice .slider {
  box-shadow:0 4px 6px 0 rgba(0,0,0,.2),5px 5px 10px 0 rgba(0,0,0,.19)
}
.klaro .cookie-modal .cm-list-input,
.klaro .context-notice .cm-list-input,
.klaro .cookie-notice .cm-list-input {
  position:absolute;
  top:0;
  left:0;
  opacity:0;
  width:50px;
  height:30px
}
.klaro .cookie-modal .cm-list-title,
.klaro .context-notice .cm-list-title,
.klaro .cookie-notice .cm-list-title {
  font-weight:600
}
.klaro .cookie-modal .cm-list-description,
.klaro .context-notice .cm-list-description,
.klaro .cookie-notice .cm-list-description {
	color:#333;
	font-size:100% !important;
  padding-top:4px
}
.klaro .cookie-modal .cm-list-label .cm-switch,
.klaro .context-notice .cm-list-label .cm-switch,
.klaro .cookie-notice .cm-list-label .cm-switch {
  position:absolute;
  left:0
}
.klaro .cookie-modal .cm-list-label .slider,
.klaro .context-notice .cm-list-label .slider,
.klaro .cookie-notice .cm-list-label .slider {
  background-color:#f2f2f2;
  position:absolute;
  cursor:pointer;
  top:0;
  left:0;
  right:0;
  bottom:0;
  transition:.4s;
  width:50px;
  display:inline-block
}
.klaro .cookie-modal .cm-list-label .slider::before,
.klaro .context-notice .cm-list-label .slider::before,
.klaro .cookie-notice .cm-list-label .slider::before {
  background-color:#666;
  position:absolute;
  content:"";
  height:20px;
  width:20px;
  left:5px;
  bottom:5px;
  transition:.4s
}

.klaro .cookie-modal .cm-list-input:checked + .cm-list-label .slider::before {
	background-color:#e6e6e6;
}

.klaro .cookie-modal .cm-list-label .slider.round,
.klaro .context-notice .cm-list-label .slider.round,
.klaro .cookie-notice .cm-list-label .slider.round {
  border-radius:30px
}
.klaro .cookie-modal .cm-list-label .slider.round::before,
.klaro .context-notice .cm-list-label .slider.round::before,
.klaro .cookie-notice .cm-list-label .slider.round::before {
  border-radius:50%
}
.klaro .cookie-modal .cm-list-label input:focus+.slider,
.klaro .context-notice .cm-list-label input:focus+.slider,
.klaro .cookie-notice .cm-list-label input:focus+.slider {
  box-shadow-color:#48dfb2;
}
.klaro .cookie-modal .cm-list-label input:checked+.slider::before,
.klaro .context-notice .cm-list-label input:checked+.slider::before,
.klaro .cookie-notice .cm-list-label input:checked+.slider::before {
  -ms-transform:translateX(20px);
  transform:translateX(20px)
}
.klaro .cookie-modal .cm-list-input:focus+.cm-list-label .slider,
.klaro .context-notice .cm-list-input:focus+.cm-list-label .slider,
.klaro .cookie-notice .cm-list-input:focus+.cm-list-label .slider {
  box-shadow:0 4px 6px 0 rgba(125,125,125,.2),5px 5px 10px 0 rgba(125,125,125,.19)
}
.klaro .cookie-modal .cm-list-input:checked+.cm-list-label .slider::before,
.klaro .context-notice .cm-list-input:checked+.cm-list-label .slider::before,
.klaro .cookie-notice .cm-list-input:checked+.cm-list-label .slider::before {
  -ms-transform:translateX(20px);
  transform:translateX(20px)
}
.klaro .cookie-modal .slider,
.klaro .context-notice .slider,
.klaro .cookie-notice .slider {
  box-shadow:0 4px 6px 0 rgba(0,0,0,.2),5px 5px 10px 0 rgba(0,0,0,.19)
}
.klaro .cookie-modal a,
.klaro .context-notice a,
.klaro .cookie-notice a {
  color:#005B82;
  text-decoration:dotted underline;
}
.klaro .cookie-modal p,
.klaro .cookie-modal strong,
.klaro .cookie-modal h1,
.klaro .cookie-modal h2,
.klaro .cookie-modal ul,
.klaro .cookie-modal li,
.klaro .context-notice p,
.klaro .context-notice strong,
.klaro .context-notice h1,
.klaro .context-notice h2,
.klaro .context-notice ul,
.klaro .context-notice li,
.klaro .cookie-notice p,
.klaro .cookie-notice strong,
.klaro .cookie-notice h1,
.klaro .cookie-notice h2,
.klaro .cookie-notice ul,
.klaro .cookie-notice li {
  color:#333;
}
.klaro .cookie-modal p,
.klaro .cookie-modal h1,
.klaro .cookie-modal h2,
.klaro .cookie-modal ul,
.klaro .cookie-modal li,
.klaro .context-notice p,
.klaro .context-notice h1,
.klaro .context-notice h2,
.klaro .context-notice ul,
.klaro .context-notice li,
.klaro .cookie-notice p,
.klaro .cookie-notice h1,
.klaro .cookie-notice h2,
.klaro .cookie-notice ul,
.klaro .cookie-notice li {
  display:block;
  text-align:left;
  margin:0;
  padding:0;
  margin-top:.7em
}
.klaro .cookie-modal h1,
.klaro .cookie-modal h2,
.klaro .cookie-modal h3,
.klaro .cookie-modal h4,
.klaro .cookie-modal h5,
.klaro .cookie-modal h6,
.klaro .context-notice h1,
.klaro .context-notice h2,
.klaro .context-notice h3,
.klaro .context-notice h4,
.klaro .context-notice h5,
.klaro .context-notice h6,
.klaro .cookie-notice h1,
.klaro .cookie-notice h2,
.klaro .cookie-notice h3,
.klaro .cookie-notice h4,
.klaro .cookie-notice h5,
.klaro .cookie-notice h6 {
  font-family:inherit;
}
.klaro .cookie-modal .cm-link,
.klaro .context-notice .cm-link,
.klaro .cookie-notice .cm-link {
  margin-right:.5em;
  vertical-align:middle
}
.klaro .cookie-modal .cm-btn,
.klaro .context-notice .cm-btn,
.klaro .cookie-notice .cm-btn {
  /*
  color:#fff;
  background-color:#5c5c5c;
  padding:.4em;
  */
  border-radius:4px;
  padding:6px 10px;
  margin-right:.5em;
  border-style:none;
  cursor:pointer;  
  background: rgba(51,51,51,.1);
  border: 2px solid rgba(51,51,51,.0) !important;
  color: rgba(25,25,25,1) !important;
  border: none !important;  
}
.klaro .cookie-modal .cm-btn:disabled,
.klaro .context-notice .cm-btn:disabled,
.klaro .cookie-notice .cm-btn:disabled {
  opacity:.5
}
.klaro .cookie-modal .cm-btn.cm-btn-close,
.klaro .context-notice .cm-btn.cm-btn-close,
.klaro .cookie-notice .cm-btn.cm-btn-close {
  background-color:#c8c8c8;
}
.klaro .cookie-modal .cm-btn.cm-btn-success,
.klaro .context-notice .cm-btn.cm-btn-success,
.klaro .cookie-notice .cm-btn.cm-btn-success {
  /*
  background-color:#1a936f;
  color: rgba(64,64,64,1);
  */  
  background: rgba(51,51,51,1);
  border: 2px solid rgba(51,51,51,1);
  color: rgba(255,255,255,1) !important;
  cursor: pointer;
  transition:all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  border:none !important;
  border-radius:2px;
  overflow:hidden;
  display: inline-block;
  position: relative;
  padding:7px 14px;
  width: auto;
  margin:6px auto;
  overflow-wrap: break-word !important;
  line-height: 100% !important;    
}
.klaro .cookie-modal .cm-btn.cm-btn-success-var,
.klaro .context-notice .cm-btn.cm-btn-success-var,
.klaro .cookie-notice .cm-btn.cm-btn-success-var {
  background-color:#24cc9a;
}
.klaro .cookie-modal .cm-btn.cm-btn-info,
.klaro .context-notice .cm-btn.cm-btn-info,
.klaro .cookie-notice .cm-btn.cm-btn-info {
  background-color:#2581c4;
}
.klaro .context-notice {
  border-radius:4px;
  border-style:solid;
  border-width:1px;
  border-color:#c8c8c8;
  background-color:#fafafa;
  display:flex;
  flex-direction:column;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  padding:12px;
  height:100%
}
.klaro .context-notice.cm-dark {
  background-color:#333;
  border-color:#5c5c5c;
}
.klaro .context-notice.cm-dark p {
  color:#fafafa;
}
.klaro .context-notice.cm-dark p a {
  color:#459cdc;
}
.klaro .context-notice p {
  color:#333;
  flex-grow:0;
  text-align:center;
  padding-top:0;
  margin-top:0
}
.klaro .context-notice p a {
  color:#24cc9a;
}
.klaro .context-notice p.cm-buttons {
  margin-top:12px
}
.klaro .context-notice p.ccn-description-empty-store {
  margin-top:24px;
}
.klaro .cookie-modal {
  width:100%;
  height:100%;
  position:fixed;
  overflow:hidden;
  left:0;
  top:0;
  z-index:1000
}
.klaro .cookie-modal.cm-embedded {
  position:relative;
  height:inherit;
  width:inherit;
  left:inherit;
  right:inherit;
  z-index:0
}
.klaro .cookie-modal.cm-embedded .cm-modal.cm-klaro {
  position:relative;
  -ms-transform:none;
  transform:none
}
.klaro .cookie-modal .cm-bg {
  background:rgba(0,0,0,.5);
  height:100%;
  width:100%;
  position:fixed;
  top:0;
  left:0
}
.klaro .cookie-modal .cm-modal.cm-klaro {
	background: rgba(250,250,250,1);
	color:#333 !important;
  z-index:1001;
  box-shadow:0 4px 6px 0 rgba(0,0,0,.2),5px 5px 10px 0 rgba(0,0,0,.19);
  width:100%;
  max-height:98%;
  top:50%;
  -ms-transform:translateY(-50%);
  transform:translateY(-50%);
  position:fixed;
  overflow:auto
}
@media(min-width: 660px) {
  .klaro .cookie-modal .cm-modal.cm-klaro {
    border-radius:4px;
    position:relative;
    margin:0 auto;
    max-width:640px;
    height:auto;
    width:auto
  }
}
.klaro .cookie-modal .cm-modal .hide {
  border-style:none;
  background:none;
  cursor:pointer;
  position:absolute;
  top:20px;
  right:20px;
  z-index:1
}
.klaro .cookie-modal .cm-modal .hide svg {
  stroke:#fafafa;
}
.klaro .cookie-modal .cm-modal .cm-footer {
  border-top-color:#5c5c5c;
  border-top-width:1px;
  border-top-style:solid;
  padding:1em
}
.klaro .cookie-modal .cm-modal .cm-footer-buttons {
  display:flex;
  flex-flow:row;
  justify-content:space-between
}
.klaro .cookie-modal .cm-modal .cm-footer .cm-powered-by {
  font-size:.8em;
  padding-top:4px;
  text-align:right;
  padding-right:8px
}
.klaro .cookie-modal .cm-modal .cm-footer .cm-powered-by a {
  color:#5c5c5c;
  color:var(--klaro-dark2, #5c5c5c)
}
.klaro .cookie-modal .cm-modal .cm-header {
  border-bottom-width:1px;
  border-bottom-style:solid;
  border-bottom-color:#5c5c5c;
  padding:1em;
  padding-right:24px
}
.klaro .cookie-modal .cm-modal .cm-header h1 {
  margin:0;
  font-size:2em;
  display:block
}
.klaro .cookie-modal .cm-modal .cm-header h1.title {
  padding-right:20px
}
.klaro .cookie-modal .cm-modal .cm-body {
  padding:1em
}
.klaro .cookie-modal .cm-modal .cm-body ul {
  display:block
}
.klaro .cookie-modal .cm-modal .cm-body span {
  display:inline-block;
  width:auto
}
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes {
  padding:0;
  margin:0
}
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose .cm-services .cm-caret,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose .cm-services .cm-caret {
  color:#a0a0a0;
}
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose .cm-services .cm-content,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose .cm-services .cm-content {
  margin-left:-40px;
  display:none
}
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose .cm-services .cm-content.expanded,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose .cm-services .cm-content.expanded {
  margin-top:10px;
  display:block
}
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-service,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-service,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose {
	position:relative;
	line-height:20px;
	vertical-align:middle;
	padding-left:60px;
	min-height:40px;
	font-size:140% !important;
}


.klaro .cookie-modal .cm-modal .cm-body ul.cm-services .cm-content.expanded li.cm-service,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services .cm-content.expanded li.cm-purpose,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes .cm-content.expanded li.cm-service,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes .cm-content.expanded li.cm-purpose {
	font-size:100% !important;
}

.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-service:first-child,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose:first-child,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-service:first-child,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose:first-child {
  margin-top:0
}
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-service p,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose p,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-service p,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose p {
  margin-top:0
}
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-service p.purposes,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose p.purposes,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-service p.purposes,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose p.purposes {
	color:#333;
	font-size:100% !important;
}
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-service.cm-toggle-all,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose.cm-toggle-all,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-service.cm-toggle-all,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose.cm-toggle-all {
  border-top-width:1px;
  border-top-style:solid;
  border-top-color:#5c5c5c;
  padding-top:1em
}
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-service span.cm-list-title,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose span.cm-list-title,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-service span.cm-list-title,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose span.cm-list-title {
  font-weight:600
}
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-service span.cm-opt-out,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-service span.cm-required,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose span.cm-opt-out,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-services li.cm-purpose span.cm-required,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-service span.cm-opt-out,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-service span.cm-required,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose span.cm-opt-out,
.klaro .cookie-modal .cm-modal .cm-body ul.cm-purposes li.cm-purpose span.cm-required {
  color:#5c5c5c;
  padding-left:.2em;
  font-size:.8em
}


.cookie_klaro_css .cookie-notice {	
	z-index:99999999;		
	position:fixed;	
	left:calc(50% - 260px);
	bottom:50px;
	top:auto;
	width:460px;
	height:auto;	
	padding:16px 30px;		
	font-size:100%;
	line-height:120%;	
	text-align:center;			
	border:2px solid rgba(64,64,64,.75);
	border-radius: 2px;
	color:rgba(64,64,64,1) !important;
	background:rgba(250,250,250,1);
	box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2), 5px 5px 10px 0 rgba(0, 0, 0, 0.19);
	
}

@media (min-width: 990px) {
	.cookie_klaro_css .cookie-notice {		
		display:block !important;
		text-align:center !important;
	}
}


@media (max-width: 616px) {
	.cookie_klaro_css .cookie-notice {
		padding:10px 14px;		
		left:50%;
		right:auto;
		bottom:10px;
		width:calc(96% - 28px);
		margin-left:-48%;		
		word-wrap: break-word;	
	}
}



.klaro .cookie-notice:not(.cookie-modal-notice) {
	z-index:999;
	position:fixed;
	width:100%;
	bottom:0;
	right:0;
  	border:2px solid rgba(64,64,64,.75);
	border-radius: 2px;
	color:rgba(64,64,64,1) !important;
	background:rgba(250,250,250,1);
	box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2), 5px 5px 10px 0 rgba(0, 0, 0, 0.19);
	font-size: 100%;
	line-height: 120%;
	text-align: center;
	color: rgba(64,64,64,1) !important;  
}
@media(min-width: 1024px) {
  .klaro .cookie-notice:not(.cookie-modal-notice) {
    border-radius:4px;
    position:fixed;
	left: calc(50% - 260px);
	bottom: 50px;
	top:auto;
	max-width:460px;
	box-shadow:0 4px 6px 0 rgba(0,0,0,.2),5px 5px 10px 0 rgba(0,0,0,.19)
  }
}
@media(max-width: 1023px) {
  .klaro .cookie-notice:not(.cookie-modal-notice) {
    /*
	border-style:none;
    border-radius:0
	*/
  }
}
.klaro .cookie-notice:not(.cookie-modal-notice).cn-embedded {
  position:relative;
  height:inherit;
  width:inherit;
  left:inherit;
  right:inherit;
  bottom:inherit;
  z-index:0
}
.klaro .cookie-notice:not(.cookie-modal-notice).cn-embedded .cn-body {
  padding-top:.5em
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body {
  margin-bottom:0;
  margin-right:0;
  bottom:0;
  padding:0;
  font-size:100%;
  line-height:100%;
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body p {
  margin-bottom:.5em
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body p.cn-changes {
  text-decoration:underline
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-learn-more {
  /*
  display:inline-block;
  flex-grow:1
  */
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons {
  display:inline-block;
  margin-top:-0.5em
}
@media(max-width: 384px) {
  .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons {
    width:100%
  }
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons button.cm-btn {
  margin-top:.5em
}
@media(max-width: 384px) {
  .klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-buttons button.cm-btn {
    width:calc(50% - 0.5em)
  }
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-ok {
  margin-top:-0.5em;
  display:flex;
  flex-flow:row;
  flex-wrap:wrap;
  justify-content:center;
  justify-content:space-between;
  align-items:baseline
}
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-ok a,
.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body .cn-ok div {
  margin-top:.5em
}
.klaro .cookie-modal-notice {
  background-color:#333;
  color:#fafafa;
  z-index:1001;
  box-shadow:0 4px 6px 0 rgba(0,0,0,.2),5px 5px 10px 0 rgba(0,0,0,.19);
  width:100%;
  max-height:98%;
  top:50%;
  -ms-transform:translateY(-50%);
  transform:translateY(-50%);
  position:fixed;
  overflow:auto;
  padding:1em;
  padding-top:.2em
}
@media(min-width: 400px) {
  .klaro .cookie-modal-notice {
    border-radius:4px;
    position:relative;
    margin:0 auto;
    max-width:400px;
    height:auto;
    width:auto
  }
}
.klaro .cookie-modal-notice .cn-ok {
  display:flex;
  flex-flow:row;
  justify-content:space-between;
  align-items:center;
  margin-top:1em
}
.klaro .cookie-notice-hidden {
  display:none !important
}

/* ### KLARO ENDE ### */

/* ### KLARO EIGEN START ### */

.cookie_klaro_css .cookie-modal,
.cookie_klaro_css .cookie-notice {
	font-size: 100%;
}

.cookie_klaro_css .cookie-modal .switch, 
.cookie_klaro_css .cookie-notice .switch {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 30px;
}

.cookie_klaro_css .cookie-modal .cm-app-input:checked + .cm-app-label .slider, 
.cookie_klaro_css .cookie-notice .cm-app-input:checked + .cm-app-label .slider {
	background-color: #0885BA;
}

.cookie_klaro_css .cookie-modal .cm-app-input.required:checked + .cm-app-label .slider, 
.cookie_klaro_css .cookie-notice .cm-app-input.required:checked + .cm-app-label .slider {
	opacity: 0.8;
	background-color: #006A4E;
	cursor: not-allowed;
}

.cookie_klaro_css .cookie-modal .slider, 
.cookie_klaro_css .cookie-notice .slider {
	box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2), 5px 5px 10px 0 rgba(0, 0, 0, 0.19);
}

.cookie_klaro_css .cookie-modal .cm-app-input, 
.cookie_klaro_css .cookie-notice .cm-app-input {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	width: 50px;
	height: 30px;
}

.cookie_klaro_css .cookie-modal .cm-app-label,
.cookie_klaro_css .cookie-notice .cm-app-label {}

.cookie_klaro_css .cookie-modal .cm-app-label .slider,
.cookie_klaro_css .cookie-notice .cm-app-label .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
	width: 50px;
	display: inline-block;
}

.cookie_klaro_css .cookie-modal .cm-app-label .slider:before,
.cookie_klaro_css .cookie-notice .cm-app-label .slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 5px;
	bottom: 5px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

.cookie_klaro_css .cookie-modal .cm-app-label .slider.round,
.cookie_klaro_css .cookie-notice .cm-app-label .slider.round {
	border-radius: 30px;
}

.cookie_klaro_css .cookie-modal .cm-app-label .slider.round:before,
.cookie_klaro_css .cookie-notice .cm-app-label .slider.round:before {
	border-radius: 50%;
}

.cookie_klaro_css .cookie-modal .cm-app-label input:focus + .slider,
.cookie_klaro_css .cookie-notice .cm-app-label input:focus + .slider {
	box-shadow: 0 0 1px #0885BA;
}

.cookie_klaro_css .cookie-modal .cm-app-label input:checked + .slider:before,
.cookie_klaro_css .cookie-notice .cm-app-label input:checked + .slider:before {
	-webkit-transform: translateX(20px);
	-ms-transform: translateX(20px);
	transform: translateX(20px);
}

.cookie_klaro_css .cookie-modal .cm-app-input:focus + .cm-app-label .slider,
.cookie_klaro_css .cookie-notice .cm-app-input:focus + .cm-app-label .slider {
	box-shadow: 0 4px 6px 0 rgba(125, 125, 125, 0.2), 5px 5px 10px 0 rgba(125, 125, 125, 0.19);
}

.cookie_klaro_css .cookie-modal .cm-app-input:checked + .cm-app-label .slider:before,
.cookie_klaro_css .cookie-notice .cm-app-input:checked + .cm-app-label .slider:before {
	-webkit-transform: translateX(20px);
	-ms-transform: translateX(20px);
	transform: translateX(20px);
}

.cookie_klaro_css .cookie-modal .slider,
.cookie_klaro_css .cookie-notice .slider {
	box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2), 5px 5px 10px 0 rgba(0, 0, 0, 0.19);
}

.cookie_klaro_css .cookie-modal a,
.cookie_klaro_css .cookie-notice a {
	color: #005B82;
	font-size:105% !important;
	/*
	text-decoration: none;
	*/
	text-decoration:dotted underline;
	margin:0 !important;
}

.cookie_klaro_css .cookie-modal p,
.cookie_klaro_css .cookie-modal strong,
.cookie_klaro_css .cookie-modal h1,
.cookie_klaro_css .cookie-modal h2,
.cookie_klaro_css .cookie-modal ul,
.cookie_klaro_css .cookie-modal li,
.cookie_klaro_css .cookie-notice p,
.cookie_klaro_css .cookie-notice strong,
.cookie_klaro_css .cookie-notice h1,
.cookie_klaro_css .cookie-notice h2,
.cookie_klaro_css .cookie-notice ul,
.cookie_klaro_css .cookie-notice li {
	font-family: inherit;
	color: #333;
}

.cookie_klaro_css .cookie-modal p,
.cookie_klaro_css .cookie-modal strong,
.cookie_klaro_css .cookie-modal h1,
.cookie_klaro_css .cookie-modal h2,
.cookie_klaro_css .cookie-modal ul,
.cookie_klaro_css .cookie-modal li {
	color: #333;
}

.cookie_klaro_css .cookie-modal p,
.cookie_klaro_css .cookie-modal li {
	line-height:140%;
	font-size:100%;
}


.cookie_klaro_css .cookie-modal p,
.cookie_klaro_css .cookie-modal h1,
.cookie_klaro_css .cookie-modal h2,
.cookie_klaro_css .cookie-modal ul,
.cookie_klaro_css .cookie-modal li,
.cookie_klaro_css .cookie-notice p,
.cookie_klaro_css .cookie-notice h1,
.cookie_klaro_css .cookie-notice h2,
.cookie_klaro_css .cookie-notice ul,
.cookie_klaro_css .cookie-notice li {
	display: block;
	text-align: left;
	margin: 0;
	padding: 0;
	margin-top: 7px;
}

.cookie_klaro_css .cookie-modal .cm-link,
.cookie_klaro_css .cookie-notice .cm-link {
	padding-left: 4px;
	vertical-align: middle;
}

.cookie_klaro_css .cookie-notice .cm-link.cm-learn-more {
	padding:8px;
	display:inline-block;
	background-color:#555;
	color:#fff;
	vertical-align: top;
	margin:0;
	font-size:100% !important;
	font-weight:400 !important;
}

.cookie_klaro_css .cookie-modal .cm-btn,
.cookie_klaro_css .cookie-notice .cm-btn {
	background:rgba(51,51,51,.1);
	color: rgba(25,25,25,1) !important;	
	cursor: pointer;
	transition:all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	border:none !important;
	border-radius:2px;
	overflow:hidden;
	display: inline-block;
	position: relative;
	padding:7px 14px;
	width: auto;
	margin:6px auto;
	margin:6px !important;
	overflow-wrap: break-word !important;
	line-height: 100% !important;
}

.cookie_klaro_css .cookie-modal .cm-btn:disabled,
.cookie_klaro_css .cookie-notice .cm-btn:disabled {
	opacity: 0.5;
}

.cookie_klaro_css .cookie-modal .cm-btn.cm-btn-sm,
.cookie_klaro_css .cookie-notice .cm-btn.cm-btn-sm {
	font-size: 100%;
}

.cookie_klaro_css .cookie-modal .cm-btn.cm-btn-close,
.cookie_klaro_css .cookie-notice .cm-btn.cm-btn-close {
	background: #eee;
	color: #555;
}

.cookie_klaro_css .cookie-modal .cm-btn.cm-btn-success,
.cookie_klaro_css .cookie-notice .cm-btn.cm-btn-success {
	background:rgba(51,51,51,1);
	color: rgba(255,255,255,1) !important;	
}

.cookie_klaro_css .cookie-modal .cm-btn.cm-btn-info,
.cookie_klaro_css .cookie-notice .cm-btn.cm-btn-info {
	background:rgba(51,51,51,.1);
	color: rgba(25,25,25,1) !important;
	border:none !important;	
}

.cookie_klaro_css .cookie-modal .cm-btn.cm-btn-right,
.cookie_klaro_css .cookie-notice .cm-btn.cm-btn-right {
	float: right;
	margin-left: 5px;
	margin-right: 0;
}

.cookie_klaro_css .cookie-notice .cm-btn-danger {
	background:rgba(51,51,51,.1);
	color: rgba(25,25,25,1) !important;
	border:none !important;	
}

.cookie_klaro_css .cookie-modal .cm-btn.cm-btn-success,
.cookie_klaro_css .cookie-notice .cm-btn.cm-btn-success, 
.cookie_klaro_css .cookie-modal .cm-btn.cm-btn-info,
.cookie_klaro_css .cookie-notice .cm-btn.cm-btn-info,
.cookie_klaro_css .cookie-modal .cm-btn.cm-btn-right,
.cookie_klaro_css .cookie-notice .cm-btn.cm-btn-right,
.cookie_klaro_css .cookie-notice .cm-btn-danger,
.cookie_klaro_css .cookie-notice .cn-learn-more {
	cursor: pointer;
	transition:all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	color: rgba(64,64,64,1);
	border:none !important;
	border-radius:2px;
	overflow:hidden;
	padding:7px 14px;
	width: auto;
	margin:6px !important;
	overflow-wrap: break-word !important;
	line-height: 100% !important;
}


.cookie_klaro_css .cookie-notice .cn-learn-more {
	background:rgba(51,51,51,.1);
	color: rgba(25,25,25,1) !important;
	border:none !important;
	font-size:140% !important;
	margin-left:0 !important;
}


.cookie_klaro_css .cookie-modal {
	width: 100%;
	height: 100%;
	position: fixed;
	overflow: hidden;
	left: 0;
	top: 0;
	z-index: 9999999 !important;
}

.cookie_klaro_css .cookie-modal .cm-bg {
	background: rgba(0,0,0,.75) !important;
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0 !important;
	left: 0;
}

.cookie_klaro_css .cookie-modal .cm-modal {
	z-index: 1001;
	box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2), 5px 5px 10px 0 rgba(0, 0, 0, 0.19);
	width: 90%;
	max-height: 98%;
	left:5%;
	top: 50%;
	transform: translateY(-50%);
	position: fixed;
	overflow: auto;
	background: #333;
	color: #fff;
}


@media (min-width: 1024px) {
	.cookie_klaro_css .cookie-modal .cm-modal {
		border-radius: 4px;
		position: relative;
		margin: 0 auto;
		max-width: 640px;
		height: auto;
		width: auto;
	}
}

.cookie_klaro_css .cookie-modal .cm-modal .hide {
	border: none;
	background: none;
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 1;
}

.cookie_klaro_css .cookie-modal .cm-modal .hide svg {
	stroke: #333;
}

.cookie_klaro_css .cookie-modal .cm-modal .cm-footer {
	padding:10px;
	border-top: 1px solid #555;
}

.cookie_klaro_css .cookie-modal .cm-modal .cm-footer-buttons::before,
.cookie_klaro_css .cookie-modal .cm-modal .cm-footer-buttons::after {
	content: " ";
	display: table;
}

.cookie_klaro_css .cookie-modal .cm-modal .cm-footer-buttons::after {
	clear: both;
}

.cookie_klaro_css .cookie-modal .cm-modal .cm-footer .cm-powered-by {
	font-size:100%;
	padding-top: 4px;
	text-align: center;
}

.cookie_klaro_css .cookie-modal .cm-modal .cm-footer .cm-powered-by a {
	color: #555;
}

.cookie_klaro_css .cookie-modal .cm-modal .cm-header {
	padding:10px;
	/*
	padding-right: 24px;
	*/
	border-bottom: 1px solid #555;
}

.cookie_klaro_css .cookie-modal .cm-modal .cm-header h1 {
	margin: 0 0 6px 0;
	font-size:220%;
	display: block;
}

.cookie_klaro_css .cookie-modal .cm-modal .cm-header h1.title {
	padding-right: 20px;
}

.cookie_klaro_css .cookie-modal .cm-modal .cm-header p {
	margin: 0;
	font-size:130% !important;
	display: block;
}

.cookie_klaro_css .cookie-modal .cm-modal label.cm-app-label {
	font-size:120% !important;
}
.cookie_klaro_css .cookie-modal .cm-modal p.cm-app-description,
.cookie_klaro_css .cookie-modal .cm-modal p.purposes {
	font-size:110% !important;
}

.cookie_klaro_css .cookie-modal .cm-modal p.purposes {
	margin:0 !important;
}

.cookie_klaro_css .cookie-modal .cm-modal .cm-body {
	padding:10px;
}

.cookie_klaro_css .cookie-modal .cm-modal .cm-body ul {
	display: block;
}

.cookie_klaro_css .cookie-modal .cm-modal .cm-body span {
	display: inline-block;
	width: auto;
}

.cookie_klaro_css .cookie-modal .cm-modal .cm-body ul.cm-apps {
	padding: 0;
	margin: 0;
}

.cookie_klaro_css .cookie-modal .cm-modal .cm-body ul.cm-apps li.cm-app {
	position: relative;
	line-height: 20px;
	vertical-align: middle;
	padding-left: 60px;
	min-height: 40px;
}

.cookie_klaro_css .cookie-modal .cm-modal .cm-body ul.cm-apps li.cm-app:first-child {
	margin-top: 0;
}

.cookie_klaro_css .cookie-modal .cm-modal .cm-body ul.cm-apps li.cm-app .switch {
	position: absolute;
	left: 0;
}

.cookie_klaro_css .cookie-modal .cm-modal .cm-body ul.cm-apps li.cm-app p {
	margin-top: 0;
}

.cookie_klaro_css .cookie-modal .cm-modal .cm-body ul.cm-apps li.cm-app p.purposes {
	font-size:100%;
}

.cookie_klaro_css .cookie-modal .cm-modal .cm-body ul.cm-apps li.cm-app.cm-toggle-all {
	border-top: 1px solid #555;
	padding-top:10px;
}

.cookie_klaro_css .cookie-modal .cm-modal .cm-body ul.cm-apps li.cm-app span.cm-app-title {
	font-weight: 600;
	color:#fff !important;
}

.cookie_klaro_css .cookie-modal .cm-modal .cm-body ul.cm-apps li.cm-app span.cm-opt-out,
.cookie_klaro_css .cookie-modal .cm-modal .cm-body ul.cm-apps li.cm-app span.cm-required {
	padding-left: 2px;
	font-size:100%;
}


.cookie_klaro_css .cookie-notice {	
	z-index:99999999;		
	position:fixed;	
	left:calc(50% - 260px);
	bottom:50px !important;
	top:auto;
	width:460px !important;
	height:auto;	
	padding:16px 30px;		
	font-size:100%;
	line-height:120%;	
	text-align:center;			
	border:2px solid rgba(64,64,64,.75);
	border-radius: 2px;
	color:rgba(64,64,64,1) !important;
	background:rgba(250,250,250,1);
	box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2), 5px 5px 10px 0 rgba(0, 0, 0, 0.19);
	
}

@media (min-width: 990px) {
	.cookie_klaro_css .cookie-notice {		
		display:block !important;
		text-align:center !important;
	}
}


@media (max-width: 616px) {
	.cookie_klaro_css .cookie-notice {
		padding:10px 14px;		
		left:50%;
		right:auto;
		bottom:10px !important;
		width:calc(90% - 28px) !important;
		margin-left:-46%;		
		word-wrap: break-word;	
	}
}

.cookie_klaro_css .cookie-notice .cn-body {
	margin:0 auto !important;	
	text-align:left !important;
}

.cookie_klaro_css .cookie-notice .cn-body p {	
	margin-bottom: 5px;
	line-height:130%;
	font-size:130%;
}

.cookie_klaro_css .cookie-notice .cn-body p.cn-changes {
	text-decoration: underline;
}

.cookie_klaro_css .cookie-notice .cn-body .cn-learn-more {
	display: inline-block;
}

.cookie_klaro_css .cookie-notice .cn-body p.cn-ok {
	padding-top: 5px;
	margin: 0;
}

.cookie_klaro_css .cookie-notice-hidden {
	display: none !important;
}

.cookie_klaro_css .cookie-notice .cn-body p.cn-ok {
	text-align:center;
	display: flex;
	flex-direction:column;
	flex-wrap: wrap;
	justify-content: space-evenly;
	flex-flow: row wrap;
}

.cookie_klaro_css .cookie-notice .cn-body p.cn-ok button.cm-btn-danger,
.cookie_klaro_css .cookie-notice .cn-body p.cn-ok button.cm-btn-success,
.cookie_klaro_css .cookie-notice .cn-body p.cn-ok a.cm-link.cm-learn-more {
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	color:rgba(64,64,64,1);
	border:none !important; 	
	border-radius: 2px;
	overflow:hidden;	
	display: inline-block;
	position: relative;
	padding: 7px 14px;
	width:auto;	
	margin:6px auto;
	overflow-wrap: break-word !important;	
	line-height:100% !important; 	
}

.cookie_klaro_css .cookie-notice .cn-body p.cn-ok button.cm-btn-danger:hover,
.cookie_klaro_css .cookie-notice .cn-body p.cn-ok button.cm-btn-success:hover,
.cookie_klaro_css .cookie-notice .cn-body p.cn-ok a.cm-link.cm-learn-more:hover {
	background-color: transparent;
	text-shadow: none;
}

.cookie_klaro_css .cookie-notice .cn-body p.cn-ok button.cm-btn-success {
	background: rgba(51,51,51,1);
	border: 2px solid rgba(51,51,51,1);
	color:rgba(255,255,255,1) !important;	
}

.cookie_klaro_css .cookie-notice .cn-body p.cn-ok button.cm-btn-success:hover {
	background:rgba(54,193,64,1);
	border: 2px solid rgba(54,193,64,1);
	color:rgba(255,255,255,1) !important;
}

.cookie_klaro_css .cookie-notice .cn-body p.cn-ok button.cm-btn-danger {
	background: rgba(51,51,51,.1);
	border: 2px solid rgba(51,51,51,.0) !important;	
	color:rgba(25,25,25,1) !important;	
	border:none !important; 	
}

.cookie_klaro_css .cookie-notice .cn-body p.cn-ok button.cm-btn-danger:hover {	
	background: rgba(244,73,73,1);
	color:rgba(255,255,255,1) !important;	
	border: 2px solid rgba(244,73,73,1);
}

.cookie_klaro_css .cookie-notice .cn-body p.cn-ok a.cm-link.cm-learn-more {			
	background: rgba(51,51,51,.1);
	border: 2px solid rgba(51,51,51,.0) !important;	
	color:rgba(25,25,25,1) !important;	
	margin-top:5px !important;
	padding:5px 14px !important;
	height:100% !important;	
	line-height:100% !important;
}

.cookie_klaro_css .cookie-notice .cn-body p.cn-ok a.cm-link.cm-learn-more:hover {
	background: rgba(128,128,128,.4);
	border: 2px solid rgba(128,128,128,0) !important;	
	color:rgba(64,64,64,1) !important;	
}

/* ### KLARO EIGEN ENDE ### */









/* #### 360 Grad PANO START #### */

body.vr360 #container .space_bottom {
	margin-bottom:30px;
}

#container .flex-container {
	display: flex;
	flex-flow: row wrap;
}

body.vr360 {
	width:100%;
	height:100%;	
	display: flex;
    flex-flow: row wrap;
    flex-grow: 1;
    flex-basis: 0;
}

/*
body.vr360 #header,
*/
body.vr360 footer,
body.vr360 #bildstreifen {
	display: flex;
	flex-flow: row wrap;
}

body.vr360 #header {
	width:100%;
	margin-left:auto;
	margin-right:auto;
}	

body.vr360 footer {
	width:100%;
	margin-left:auto;
	margin-right:auto;
}

body.vr360 #content { 	
	clear:both;
	background:none;
	background-color:#fff;	
	display: flex;
	flex-flow: row wrap;	
}

body.vr360 #container {
  margin-top: 22px;
}

body.vr360 #content div.flexbox {
	display: flex;
    flex-flow: row wrap;
    flex-grow: 1;
    flex-basis: 0;
	text-align:left;
}

body.vr360 #content div.flexbox .box_vr360 {	
	position:relative;	
	width:100%;	
	/*
	height:60vh;
	*/
	height:50vh;
	display:block;	
}

body.vr360 #content div.flexbox .box_vr360 .photosphere {
	width: 100%;
	height: 100%;	
	display:block;	
}

#content .box_vr360 .hinweis_handy {
	position:absolute;
	top:50%;
	left:0;
	margin:0 auto;
	z-index:99999;	
	text-align:center;	
	width:100%;
}	
	
#content .box_vr360 .hinweis_handy p {
	width:calc(100% - 8px);
	display:block;
	padding:4px;
	color:#fff;
	background:rgba(0,0,0,0.8);
	text-align:center;
	margin:0 auto;
	font-size:200%;
}

.psv-hud {
	cursor:url('/includes/photo-sphere/mousecursor360vr.png'), auto !important;
}
	
.psv-button.custom-button {
	font-size: 22px;
	line-height: 20px;
}

.demo-label {
	color: white;
	font-size: 20px;
    font-family: Helvetica, sans-serif;
    text-align: center;
    padding: 5px;
    border: 1px solid white;
    background: rgba(0,0,0,0.4);
}
		
.psv-caption {
	-webkit-box-flex: 10;
	-webkit-flex-grow: 10;
	-moz-flex-grow: 10;
	-ms-flex-positive: 10;
	flex-grow: 10;
	color: rgba(255, 255, 255, 0.7);
	margin: 10px;
	overflow: hidden;
	text-align: center; 
}

.psv-caption-icon {
	height: 20px;
	width: 20px;
	cursor: pointer;
}

.psv-caption-icon * {
	fill: rgba(255, 255, 255, 0.7); 
}

.psv-caption-content {
	font-family: sans-serif;
	white-space: nowrap;
	font-weight:bold;
	font-size:120%;
}

/* #### 360 Grad PANO ENDE #### */