/* roboto-condensed-regular - latin */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('https://cdn.mcms.online/fonts/roboto-condensed-v25-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('https://cdn.mcms.online/fonts/roboto-condensed-v25-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('https://cdn.mcms.online/fonts/roboto-condensed-v25-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('https://cdn.mcms.online/fonts/roboto-condensed-v25-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('https://cdn.mcms.online/fonts/roboto-condensed-v25-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('https://cdn.mcms.online/fonts/roboto-condensed-v25-latin-regular.svg#RobotoCondensed') format('svg'); /* Legacy iOS */
}
/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('https://cdn.mcms.online/fonts/open-sans-v34-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('https://cdn.mcms.online/fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('https://cdn.mcms.online/fonts/open-sans-v34-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('https://cdn.mcms.online/fonts/open-sans-v34-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('https://cdn.mcms.online/fonts/open-sans-v34-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('https://cdn.mcms.online/fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
}




* {
	box-sizing: border-box;
}

html {
	overflow-y: scroll;
	font-size: 16px;
	font-size: 1rem;
	height: 100%;
}

body {
	margin: 0;
	padding: 0;
	font-size: 18px;
	font-size: 1.125rem;
	font-family: 'Open Sans', sans-serif, arial;
	text-align: center;
	background-color: #333;
	color: #444;
	height: 100%;
}


img { border: 0; }
a, .rot { color: #D93301; text-decoration: none; }
a:hover { color: #333; }
a[href^=tel] { cursor: default; pointer-events: none; }
p { margin: 0 0 16px 0; margin: 0 0 1rem 0; }


h1 {
	color: #D93301;
	font-size: 48px;
	font-size: 3rem;
	font-weight: normal;
	margin: 0 0 16px 0;
	margin: 0 0 1rem 0;
}

h1 b, h1 strong,
h2 b, h2 strong,
h3 b, h3 strong,
.handwriting {
	font-weight: 800;
}

h2 {
	font-family: 'Roboto Condensed', 'Open Sans', sans-serif, arial;
	font-size: 32px;
	font-size: 2rem;
	font-weight: normal;
	margin: 12px 0 40px 0;
	margin: .75rem 0 2.5rem 0;
	color: #D93301;
	position: relative;
	display: inline-block;
	padding-bottom: 16px;
	padding-bottom: 1rem;
}
	h2:before {
		display: block;
		content: ' ';
		width: 70%;
		height: 6px;
		background-color: #D93301;
		position: absolute;
		bottom: 0;
		left: -8px;
		transition: all .7s;
	}
	
h3 {
	font-family: 'Roboto Condensed', 'Open Sans', sans-serif, arial;
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: normal;
	margin: 32px 0 24px 0;
	margin: 2rem 0 1.5rem 0;
	color: #D93301;
	position: relative;
	display: inline-block;
	padding-bottom: 12px;
	padding-bottom: .75rem;
}
	h3:before {
		display: block;
		content: ' ';
		width: 70%;
		height: 3px;
		background-color: #D93301;
		position: absolute;
		bottom: 0;
		left: -6px;
		transition: all .7s;
	}

	
h4 {
	font-family: 'Roboto Condensed', 'Open Sans', sans-serif, arial;
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: normal;
	margin: 0 0 16px 0;
	margin: 0 0 1rem 0;
	color: #D93301;
}
	h4 .klein {
		font-size: 16px;
		font-size: 1rem;
		color: #888;
	}



header, main, footer {
	text-align: left;
}

main ul li {
	margin-bottom: 12px;
	margin-bottom: .75rem;
}
main ul li::last-child {
	margin-bottom: 0;
}


.wrapper,
.list_subcat {
	margin: 0 auto;
	width: 1400px;
}


#header {
	height: 40%;
	position: relative;
}


#header_top_cont {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: rgba(238, 107, 26, .6);
	padding: 8px 0;
	padding: .5rem 0;
	z-index: 80;		
}
	#header_top_cont .wrapper {
		position: relative;
	}
	
		#banner {
			position: absolute;
			left: 130px;
			bottom: 88px;
		}
	
	
		#header_top a {
			display: inline-block;
			margin-right: 32px;
			margin-right: 2rem;
			padding: 14px;
			text-transform: uppercase;
			color: #eee;
		}
		#header_top a::after {
			content: '';
			width: 0px;
			height: 2px;
			display: block;
			background-color: #eee;
			transition: 300ms;
		}
		
		#header_top a:hover,
		#header_top a.header_top_akt {
			background-color: rgba(238, 107, 26, 1);
			color: #fff;
		}
		#header_top a:hover::after,
		#header_top a.header_top_akt::after {
			width: 100%;
		}
		
		#header_top a .header_top_icon {
			display: inline-block;
			width: 60px;
			height: 60px;
			margin-right: 14px;
			background-repeat: no-repeat;
			background-position: center;
			background-size: 100%;
			vertical-align: middle;
			filter: invert(96%) sepia(9%) saturate(1%) hue-rotate(248deg) brightness(111%) contrast(73%);
		}
		#header_top a .header_top_icon.iconset_1 { background-image: url(../images/icon_manual.svg); background-size: 80%; }
		#header_top a .header_top_icon.iconset_4 { background-image: url(../images/icon_office-space.svg); }
		#header_top a .header_top_icon.iconset_5 { background-image: url(../images/icon_support.svg); }
		#header_top a .header_top_icon.iconset_7 { background-image: url(../images/icon_question.svg); background-size: 80%; }
		
		#header_top a:hover .header_top_icon,
		#header_top a.header_top_akt .header_top_icon {
			filter: invert(89%) sepia(30%) saturate(42%) hue-rotate(100deg) brightness(110%) contrast(105%);
		}
	

#header_topnavi {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	padding: 16px 0;
	padding: 1rem 0;
	background-color: #fff;
	font-size: 12px;
	font-size: .75rem;
	text-align: right;
	box-shadow: 0 3px 5px rgba(0,0,0,.3);
}
	
	#header_topnavi .wrapper {
		position: relative;
	}

		#header_topnavi #minilogo_wrapper {
			position: absolute;
			top: 0;
			left: 0;
			
		    visibility: hidden;
		    opacity: 0;
  			transition: visibility 0s, opacity 1.5s linear;
		}
		
			#header_topnavi #minilogo_wrapper a {
				padding: 0;
				margin: 0;
			}
			
			#header_topnavi #minilogo_wrapper #header_minilogo {
				height: 40px;
				margin-left: 8px;
				margin-top: -4px;
			}
		
		
		
		
		#header_topnavi a {
			display: inline-block;
			color: #777;
			padding: 4px 0;
			padding: .25rem 0;
			margin-left: 16px;
			margin-left: 1rem;
			vertical-align: middle;
		}
			#header_topnavi span[class^=icon-] {
				color: #D93301;
			}
			
		#header_topnavi a:hover {
			color: #444;
		}
			#header_topnavi a:hover span[class^=icon-] {
				color: #ce7982;
			}
	

#symbolfoto {
	position: absolute;
	right: 0;
	bottom: 170px;
	text-transform: uppercase;
	color: #fff;
	padding: 5px;
	background-color: rgba(255, 255, 255, .4);
	transform: rotate(90deg);
}


#header_menu_cont {
	position: fixed;
	z-index: 99;
	top: 0;
	width: 100%;
	background: #EE6B1A;
	box-shadow: 0 3px 6px rgba(0,0,0,.3);
	padding-top: 48px;
	padding-top: 3rem;
}	
	#header_menu {
		list-style-type: none;
		margin: 0;
		padding: 0;
	}
		#header_menu li {
			display: inline-block;
		}
			#header_menu li a {
				display: block;
				font-size: 16px;
				font-size: 1rem;
				padding: 32px 8px 24px 8px;
				padding: 2rem .5rem 1.5rem .5rem;
				color: #eee;
				text-transform: uppercase;
				position: relative;
				
  				transition: all .5s linear;
			}
			#header_menu li a:before {
				display: block;
				content: ' ';
				width: 50%;
				height: 10px;
				background-color: transparent;
				position: absolute;
				bottom: 0;
				left: 0;
				transition: all .7s;
			}
			#header_menu li a:hover:before,
			#header_menu li a.header_menu_akt:before {
				color: #fff;
				background-color: #fff;
				width: 80%;
				height: 6px;
			}



#header_fullsize {
	/* opacity: 0.65; */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	box-shadow: 0 3px 6px rgba(0,0,0,.3);
	position: relative;
}

	#header_fullsize .wrapper {
		height: 100%;
	}
	
	
#header_fullsize_mask {
	position: relative;
	width: 100%;
	height: 100%;
}
#header_fullsize_mask::before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(238, 107, 26, 0.1);
	position: absolute;
	z-index: 20;
	left: 0;
	top: 0;
	/* pointer-events: none; */
}

		#logo_wrapper_cont .wrapper {
			position: relative;
		}
			#logo_wrapper {
				position: absolute;
				z-index: 95;
				top: 0;
				right: 0;
				padding: 176px 32px 16px 32px;
				padding: 11rem 2rem 1rem 2rem;
				/* background-color: rgba(35, 127, 82, .3); */
				background-color: rgba(255,255,255,.8);
				box-shadow: 3px 3px 7px #666;
			}
			
		#header_intro_cont {
			position: absolute;
			z-index: 94;
			bottom: 0;
			right: 15%;
			padding: 32px 32px 32px 32px;
			padding: 2rem 2rem 2rem 2rem;
			background-color: rgba(104,136,160,.75);
		}
			
		#textlogo_wrapper {
			display: none;
			position: absolute;
			z-index: 98;
			top: 22%;
			right: 10%;
			padding: 16px;
			padding: 1rem;
			background-color: rgba(59,73,158,.4);
		}
			
		#minilogo_wrapper {
			float: right;
			font-size: 12px;
			font-size: .75rem;
			
		    visibility: hidden;
		    opacity: 0;
  			transition: visibility 0s, opacity 1s linear;
		}
			#minilogo_wrapper,
			#minilogo_wrapper a {
				color: #999;
			}
			

/* --- SCROLLDOWN --- */


#header.scrolldown #header_topnavi #minilogo_wrapper {
	visibility: visible;
	opacity: 1;
}

#header.scrolldown #header_fullsize #header_menu li a {
	padding-top: 24px;
	padding-top: 1.5rem;
	padding-bottom: 16px;
	padding-bottom: 1rem;
}
			
			


/* --- PAGE --- */	


#page {
	/* padding: 40px 0 0 0; */
	background-color: #FFFFFB;
	overflow: auto;
	box-shadow: 0 3px 6px rgba(0,0,0,.3);
}
	#page p {
		line-height: 150%;
	}


/*
#sidebar {
	float: left;
	padding-top: 20px;
	width: 23%;
}

	#sidebar ul {
		list-style-type: none;
		margin: 0;
		padding: 0;
	}
		#sidebar li {
			border-top: 1px #aaa solid;	
		}
		#sidebar li:first-child {
			border-top: 0;
		}
			#sidebar li a {
				display: block;
				color: #333;
				margin: 1px 0;
				padding: 13px 10px 13px 40px;
			}
			#sidebar li a:hover,
			.sidebar_akt {
				background-color: #fff;
			}
			
				#sidebar li>ul {
					padding: 10px 0 20px 20px;
					border-top: 1px #aaa solid;
				}
					#sidebar li ul li a {
						padding: 5px 10px 5px 20px;
						font-size: 12px;
						font-size: 0.75rem;
						color: #555;
					}
					.sidebar_sub_akt {
						background-color: #fff;	
						color: #333 !important;
					}
*/				



/* --- PATHFINDER --- */


#pathfinder {
	text-align: left;
	font-size: 12px;
	font-size: 0.75rem;
	color: #aaa;
	padding: 32px 0;
	padding: 2rem 0;
}
	#pathfinder_prefix {
		display: inline-block;
		margin-right: 16px;
		margin-right: 1rem;
	}
	#pathfinder,
	#pathfinder a {
		color: #999;
	}
	#pathfinder a:hover {
		color: #666;
	}


/* --- GRID-ELEMENTE --- */


.dk_grid-01_text:nth-child(even),
.dk_grid-02_teaser-left:nth-child(even),
.dk_grid-03_teaser-right:nth-child(even) {
	background-color: #eee;
}
.dk_grid-01_text:nth-child(odd),
.dk_grid-02_teaser-left:nth-child(odd),
.dk_grid-03_teaser-right:nth-child(odd) {
	background-color: #f4f4f4;
}





.dk_grid-01_text,
.dk_grid-04_galerie {
	padding: 32px 0;
	padding: 2rem 0;
}




.dk_grid-02_teaser-left_cont {
	padding: 32px 32px 32px 0;
	padding: 2rem 2rem 2rem 0;
}
.dk_grid-03_teaser-right_cont {
	padding: 32px 0 32px 32px;
	padding: 2rem 0 2rem 2rem;
	
}


.dk_grid-02_teaser-left_image,
.dk_grid-03_teaser-right_image {
	overflow: hidden;
	position: relative;
}
/*
.dk_grid-02_teaser-left_image::after,
.dk_grid-03_teaser-right_image::after {
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(238, 107, 26, 0.3);
	position: absolute;
	z-index: 20;
	left: 0;
	top: 0;
}
*/
.dk_grid-02_teaser-left_image:hover::after,
.dk_grid-03_teaser-right_image:hover::after:hover {
	visibility: hidden;
}
.dk_grid-02_teaser-left_image img,
.dk_grid-03_teaser-right_image img {
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	vertical-align: middle;
}


.dk_grid-05_image-fixed {
	position: relative;
	height: 450px;
	overflow: hidden;
}
	.dk_grid-05_image-fixed_image {
		width: 100%;
		height: 100%;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		background-attachment: fixed;
	}
		.dk_grid-05_image-fixed_image::before {
			content: ' ';
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			opacity: .3;
			background: #000;
		}
		
	.dk_grid-05_image-fixed_cont {
		position: absolute;
		top: 20%;
		transform: translate(-50%);
		left: 50%;
		width: 50% !important;
		background-color: rgba(255,255,255,.8);
		color: #444;
		padding: 2rem;
	}







/* --- Footer --- */



#footer_navi {
	background-color: #EE6B1A;
	line-height: 160%;
}
	#footer_navi .wrapper {
		padding: 48px 0 24px 0;
		padding: 3rem 0 1.5rem 0;	
		min-height: 200px;
	}
		
	.footer_box {
		display: inline-block;
		margin: 0 80px 24px 0;
		margin: 0 5rem 1.5rem 0;
		color: #eee;
		vertical-align: top; 
		text-align: left;
	}
	.footer-box:last-child {
		margin-right: 0;
	}
	
		.footer_box hr {
			margin: 32px 0;
			margin: 2rem 0;
		}
	
		.footer_box a {
			color: #ddd;
		}	
		.footer_box a:hover {
			color: #fff;
		}
		
		.footer_box b {
			display: inline-block;
			color: #fff;
			margin-bottom: 5px;
		}
	
		.footer_box span[class^=icon-] {
			font-size: 24px;
			font-size: 1.5rem;
			vertical-align: middle;
			margin-right: 7px;
		}
		.footer_box a:hover span[class^=icon-] {
			text-shadow: 2px 3px 4px rgba(0,0,0,.6);
		}
		
		
		
	#footer_logo_cont {
		margin-bottom: 80px;
		margin-bottom: 5rem;
	}
		
		#footer_mainlogo {
			max-width: 80%;
		}
		
	#footer_linklist {
		list-style-type: none;
		padding: 0;
		margin: 0;
		column-count: 2;
	}

#footer_copyright {
	font-size: 12px;
	font-size: 0.75rem;
	padding: 16px 0;
	padding: 1rem 0;
	margin-bottom: 50px;
	background-color: #333;
	text-align: right;
}
	#footer_copyright,
	#footer_copyright a {
		color: #888;
	}
	#footer_copyright a:hover {
		color: #fff;
	}


/* --- ALLGEMEIN --- */



.center { text-align: center; }
.right { text-align: right; }
.hidden, .tpl_catbez { display: none; }

.messagebox {
	margin: 0 0 10px 0;
	padding: 10px;
	border-left: 6px #a00 solid;
	background-color: #fcc;
	color: #333;
}
	.messagebox_g {
		border-color: #0a0;
		background-color: #cfc;
	}
	.messagebox_y {
		border-color: #ff8000;
		background-color: #ffa;
	}


.minipic, .minipic_zoom {
	margin: 10px 10px 10px 0;
	max-width: 500px;
}

.galerie .minipic,
.galerie .minipic_zoom {
	margin: 16px 0 0 0;
}

.minipic_r, .minipic_r_zoom {
	float: right;
	margin: 0 0 10px 50px;
	
	box-sizing: content-box;
	margin-right: -60px;
	padding-right: 60px;
	background-color: rgba(145,155,196,.2);
}
.minipic_l, .minipic_l_zoom {
	float: left;
	margin: 0 50px 10px 0;
}


.minipic, .minipic_r, .minipic_l,
.minipic_zoom, .minipic_r_zoom, .minipic_l_zoom {
	max-width: 400px;
}

/*
.galerie .minipic {
	margin: 0 5px 20px 0;
}
*/




.galerie {
	/*
	float: right;
	margin: 0 5% 5% 0;
	width: 60%;
	*/
	margin-top: 50px;
}
	.galerie .minipic_zoom {
		/*
		box-shadow: none;
		width: 45%;
		margin: 0 4% 4% 0;
		object-fit: cover;
		height: 200px;
		margin: 0;
		*/
	}

	.galerie .galerie_coverimg {
		float: left;
		width: 45%;
		margin: 0 4% 4% 0;
		/* overflow: hidden; */
		background-position: center;
		background-size: cover;
		box-shadow: 1px 2px 3px #888;
		height: 200px;
	}
		.galerie .galerie_coverimg a {
			display: block;
			width: 100%;
			height: 100%;
			position: relative;
			color: #666;
		}
			.galerie .galerie_coverimg a span {
				position: absolute;
				left: 0;
				bottom: 0;
				display: block;
				padding: 4px 6px;
				background-color: rgba(104,136,160,.75);		
				color: #fff;
			}
			.galerie .galerie_coverimg a:hover span {
				background-color: #D93301;
			}
			
	div.dk_grid-04_galerie .wrapper {
		overflow: auto;
	}




.list_subcat {
	padding: 48px 0;
	padding: 3rem 0;
}

	.list_subcat_item {
		margin: 32px 0 0 0;
		margin: 2rem 0 0 0;
		padding: 16px;
		padding: 1rem;
		background-color: #f4f4f4;
	}
		.list_subcat_item a {
			color: #D93301;
		}
		.list_subcat_item a:hover {
			color: #333;
		}
	
			.list_subcat_item h2 {
				background: none;
				margin: 0 0 10px 0 !important;
			}
				
			.list_subcat_item_pic {
				float: left;
				width: 150px;
				height: 100px;
				overflow: hidden;
			}
				.list_subcat_item_pic img {
					max-width: 100%;
				}
				
			.list_subcat_item_cont {
				/*	
				line-height: 14px;
				font-size: 11px;
				font-size: 0.688rem;
				*/
				color: #666;
				padding: 0 10px 0 200px;
			}
			.list_subcat .clearer {
				display: none;
			}



.klein {
	font-size: 11px;
	font-size: 0.688rem;	
}
.blass {
	color: #888;
}



table {
	width: 100%;
}
table.zebra tr:nth-child(even) {
	background-color: #f1f1f1;
}
	th {
		background-color: #D93301;
		color: #fff;
		font-weight: bold;
	}



.fullsize {
	width: 99%;
}
.float_r {
	float: right;
	margin: 0 0 10px 20px;
}
.clearer {
	clear: both;
}

#content_fotomaterial {
	display: none;
}




.wrapper,
.list_subcat {
	max-width: 96%;
}

#mobilebar_cont {
	background-color: #EE6B1A;
	display: none;
	padding: 10px 0;
	font-size: 16px;
	font-size: 1rem;
	text-align: left;
	position: relative;
	box-shadow: 0 1px 4px rgba(0,0,0,0.5);	
}
	#mobilebar_cont #mobilebar_akt {
		padding: 8px 14px;
		padding: .5rem 0.875rem;
		color: #fff;
	}
	#mobilebar_cont #mobilebar_icon {
		float: right;
		cursor: pointer;
	}
	#mobilebar {
		list-style-type: none;
		padding: 0;
		margin: 0;
		display: none;
	}
		#mobilebar li {
			border-top: 1px #aaa solid;
		}
			#mobilebar li a {
				display: block;
				padding: 6px 25px;
				color: #555;
			}
			#mobilebar li a.mobilebar_akt {
				background-color: #444 !important;
				color: #fff;
			}
			#mobilebar li a:hover {
				background-color: #777 !important;
				color: #fff;
			}
			
			#mobilebar li.depth0 a,
			#mobilebar li.depth1 a {
				padding-left: 30px;
				font-size: 16px;
				font-size: 1rem;
				color: #fff;
			}
			#mobilebar li.depth2 {
				background-color: rgba(255, 255, 255, .2);
			}
				#mobilebar li.depth2 a {
					padding-left: 45px;
					font-size: 14px;
					font-size: 0.875rem;
					color: #eee;
				}
				
			#mobilebar li.depth3 {
				background-color: rgba(255, 255, 255, .4);
			}
				#mobilebar li.depth3 a {
					padding-left: 60px;
					font-size: 13px;
					font-size: 0.813rem;	
				}
	


.col-row {
	display: flex;
	flex-wrap: wrap;
}
.col-1 { width: 8.3333%; }
.col-2 { width: 16.6667%; }
.col-3 { width: 25%; }
.col-4 { width: 33.3333%; }
.col-5 { width: 41.6667%; }
.col-6 { width: 50%; }
.col-7 { width: 58.3333%; }
.col-8 { width: 66.6667%; }
.col-9 { width: 75%; }
.col-10 { width: 83.3333%; }
.col-11 { width: 91.6667%; }
.col-12 { width: 100%; }




hr {
	margin: 48px 0;
	margin: 3rem 0;
	border: 1px #ccc solid;
	border-width: 1px 0 0 0;
}




#cta_banner_cont .dk_grid-01_text {
	background-color: #95C11F;
	color: #fff;
	text-align: left;
}
	#cta_banner_cont .dk_grid-01_text .cta {
		background-color: #eee;
		color: #D93301;
	}
		#cta_banner_cont .dk_grid-01_text .cta:hover {
			background-color: #D93301;
			color: #fff;
		}



.cta {
	display: inline-block;
	padding: 8px 16px;
	padding: .5rem 1rem;
	margin: 8px 16px 8px 0;
	margin: .5rem 1rem .5rem 0;
	font-size: 22px;
	font-size: 1.375rem;
	background-color: #95C11F;
	color: #fff;
	box-shadow: 2px 3px 5px rgba(0,0,0,.3);
}
	.cta:before {
	   content: "\00BB\00a0";
	}
	.cta:hover {
		background-color: #D93301;
		color: #fff;
	}

	.cta span[class^=icon-] {
		margin-right: 8px;
	}
	


.opt_immosync_list {
	list-style-type: none;
	margin: 0;
	padding: 0;	
	column-count: 3;
}
	.opt_immosync_list li {
		margin-bottom: 12px;
		margin-bottom: .75rem;
		break-inside: avoid;
		padding: 8px 0 0 12px;
		padding: 0.5rem 0 .75rem .5rem;
		border-bottom: 1px #ccc solid;
	}
	.opt_immosync_list li:last-child {
		border-bottom: 0;
	}
		.opt_immosync_list li .opt_immosync_label {
			display: block;
			color: #888;
			font-family: 'Roboto Condensed', 'Open Sans', sans-serif, arial;
			font-size: 16px;
			font-size: 1rem;
			margin: 0 0 4px -8px;
			margin-bottom: 0 0 .25rem -.5rem;
		}


/*	--- KARTE --- */

#dk_map_cont {
	width: 100%;
	height: 100%;
	min-height: 500px;
}
#dk_map {
	width: 100%;
	height: 100%;
	z-index: 90;
}


/* ---------- SURVEY -----------*/

    .formelement_cont {
      width: 100%;
      margin: -5px 0 32px 0;
      padding: 20px;
      background-color: rgba(255,255,255,.5);
    }
    	.formelement_cont input[type="text"],
    	.formelement_cont input[type="email"],
    	.formelement_cont #form_submit,
    	.formelement_cont textarea {
    		border: 1px #999 solid;
    		border-radius: 4px;
    		font-size: 16px;
    		font-size: 1rem;
    		padding: 10px;
    	}
    	.formelement_cont label {
    		cursor: pointer;
    	}
    	.formelement_cont #form_submit {
    		background-color: #008000;
    		border-color: #444;
    		color: #fff;
    		cursor: pointer;
			transition: all 0.15s ease-in-out;
    	}
    	.formelement_cont #form_submit:disabled {
    		background-color: #999 !important;
    	}
    	.formelement_cont #form_submit:hover {
    		background-color: #060;
    	}
    	
    	.formelement_cont input[type="checkbox"] {
		  position: relative;
		  left: 30px;
		  top: 0px;
		  z-index: 0;
		  -webkit-appearance: none;
		}
			.formelement_cont input[type="checkbox"] + label {
			  position: relative;
			  display: block;
			  cursor: pointer;
			  padding-left: 80px;
			  position: relative;
			  margin-top: -30px;
			}
			.formelement_cont input[type="checkbox"] + label:before {
			  width: 60px;
			  height: 30px;
			  border-radius: 30px;
			  border: 2px solid #ddd;
			  background-color: #EEE;
			  content: "";
			  margin-right: 15px;
			  transition: background-color 0.5s linear;
			  z-index: 5;
			  position: absolute;
			  left: 0px;
			}
			.formelement_cont input[type="checkbox"] + label:after {
			  width: 30px;
			  height: 30px;
			  border-radius: 30px;
			  background-color: #fff;
			  content: "";
			  transition: margin 0.1s linear;
			  box-shadow: 0px 0px 5px #aaa;
			  position: absolute;
			  left: 2px;
			  top: 2px;
			  z-index: 10;
			}
			.formelement_cont input[type="checkbox"]:checked + label:before {
			  background-color: #2b8718;
			}
			.formelement_cont input[type="checkbox"]:checked + label:after {
			  margin: 0 0 0 30px;
			}
			
			.survey_icon_mandatory {
				color: #D93301;
			}
			.survey_icon_mandatory.done {
				color: #060;
			}
    	
    	

    .survey_cont {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: -5px 0 32px 0;
      padding: 10px 10px 40px 10px;
      background-color: rgba(255,255,255,.5);
    }
        .survey_topic {
          width: 100%;
        }
        
    .survey {
      width: 90%;
      /* max-width: 500px; */
    }
    .survey .survey_slider {
      display: flex;
      flex-direction: row;
      align-content: stretch;
      position: relative;
      width: 100%;
      height: 50px;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
    }
    .survey .survey_slider::before {
      content: " ";
      position: absolute;
      height: 1px;
      width: 100%;
      width: calc(100% * (3 / 5));
      top: 50%;
      left: calc(100%*(3/5));
      transform: translate(-50%, -50%);
      background: #999;
    }
    .survey .survey_slider input, .survey .survey_slider label {
      box-sizing: border-box;
      flex: 1;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
      cursor: pointer;
    }
    .survey .survey_slider label {
      display: inline-block;
      position: relative;
      width: 20%;
      height: 100%;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
    }
    .survey .survey_slider label::before {
      content: attr(data-survey-slider-label);
      position: absolute;
      left: 50%;
      padding-top: 5px;
      transform: translate(-50%, 45px);
      font-size: 15px;
      font-size: .9375rem;
      letter-spacing: 0.4px;
      font-weight: 400;
      white-space: nowrap;
      opacity: 0.85;
      transition: all 0.15s ease-in-out;
    }
    .survey .survey_slider label::after {
      content: " ";
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 30px;
      height: 30px;
      border: 2px solid #FE9429;
      background: #fff;
      border-radius: 50%;
      pointer-events: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
      z-index: 1;
      cursor: pointer;
      transition: all 0.15s ease-in-out;
    }
        .survey_slider_label_disabled::after {
            border-color: #999 !important;
            border-width: 1px !important;
        }
    .survey .survey_slider label:hover::after {
      transform: translate(-50%, -50%) scale(1.25);
    }
    .survey .survey_slider input {
      display: none;
    }
    .survey .survey_slider input:checked + label::before {
      font-weight: 800;
      opacity: 1;
    }
    .survey .survey_slider input:checked + label::after {
      border-width: 4px;
      transform: translate(-50%, -50%) scale(0.75);
    }
    .survey .survey_slider input:checked ~ .survey_slider_indicator {
      opacity: 1;
    }
    .survey .survey_slider input:checked:nth-child(1) ~ .survey_slider_indicator {
      left: 10%;
    }
    .survey .survey_slider input:checked:nth-child(3) ~ .survey_slider_indicator {
      left: 30%;
    }
    .survey .survey_slider input:checked:nth-child(5) ~ .survey_slider_indicator {
      left: 50%;
    }
    .survey .survey_slider input:checked:nth-child(7) ~ .survey_slider_indicator {
      left: 70%;
    }
    .survey .survey_slider input:checked:nth-child(9) ~ .survey_slider_indicator {
      left: 90%;
    }
    .survey .survey_slider .survey_slider_indicator {
      display: block;
      position: absolute;
      top: 50%;
      width: 12px;
      height: 12px;
      background: #D93301;
      border-radius: 50%;
      transition: all 0.15s ease-in-out;
      transform: translate(-50%, -50%);
      border: 2px solid #fff;
      opacity: 0;
      z-index: 2;
    }
    form:valid .survey_slider input + label::before {
      transform: translate(-50%, 45px) scale(0.9);
      transition: all 0.15s linear;
    }
    form:valid .survey_slider input:checked + label::before {
      transform: translate(-50%, 45px) scale(1.1);
      transition: all 0.15s linear;
    }
    
    .survey_col_label {
        padding-top: 10px;
    }    


/* -------- Banner --------- */


.banner_insta {
	background-color: #EE6B1A;
}

	.banner_insta .wrapper {
		padding: 32px;
		padding: 2rem;
	}
	
		.banner_insta .banner_insta_logo {
			text-align: center;
		}
			.banner_insta .banner_insta_logo img {
				max-width: 90%;
			}

		.banner_insta .banner_insta_text {
			padding-left: 24px;
			padding-left: 1.5rem;
			color: #fff;
		}
			.banner_insta .banner_insta_text a {
				color: #fff;
			}
			.banner_insta .banner_insta_text a:hover {
				color: #eee;
			}


/* -------- Timeline --------- */

.timeline {
	padding: 32px 16px;
	padding: 2rem 1rem;
}

	.timeline_item {
		padding: 20px 0;
		padding: 1.25rem 0;
		position: relative;
		border-left: 2px #bbb solid;
	}
	
		.timeline_item:before {
		    content: '';
		    width: 32px;
		    height: 32px;
		    background-color: #EE6B1A;
		    border: 1px solid #fff;
		    box-shadow: 2px 3px 4px rgba(0,0,0,.4);
		    border-radius: 50%;
		    position: absolute;
		    left: -18px;
		    top: 35px;
		}
		.timeline_item.done:before {
			background-color: #29AA16;
		}
		
		.timeline_item:hover {
			background-color: #f4f4f4;
			border-radius: 0 10px 10px 0;
		}
		
			.timeline_item_content {
				margin: 0 0 0 32px;
				margin: 0 0 0 2rem;
			}


.shelter_filter_cont {
	margin-bottom: 32px;
	margin-bottom: 2rem;
}

	.shelter_filter_cont .shelter_filter_box {
		display: inline-block;
		margin: 8px 24px 8px 0;
		margin: .5rem 1.5rem .5rem 0;
	}


.shelter_paging_cont {
	
	margin-bottom: 16px;
	margin-bottom: 1rem;
}
	
	.shelter_paging_cont a {
		display: inline-block;
		padding: 8px 12px;
		padding: .5rem .75rem;
		margin: 0 0 4px 8px;
		margin: 0 0 .25rem .25rem;
		border-radius: 4px;
		background-color: #fff;
	}
	.shelter_paging_cont a.akt {
		background-color: #EE6B1A;
		color: #fff;
	}


.shelter_row {
	margin: 0 0 32px 0;
	margin: 0 0 2rem 0;
	background-color: #fff;
	padding: 16px;
	padding: 1rem;
}

	.shelter_row>h3 {
		margin-top: 0;
	}

	.shelter_row .shelter_pic_primary {
		width: 90%;
		margin-bottom: 16px;
		margin-bottom: 1rem;
		box-shadow: 2px 2px 4px rgba(0,0,0, .2);
	}
	
	.shelter_row .shelter_pic_additional {
		width: 28%;
		height: 80px;
		vertical-align: top;
		object-fit: cover;
	}



form {
	padding: 16px;
	padding: 1rem;
	background-color: #f9f9f9;
	border-radius: 6px;
}

	form>p {
		display: block;
		margin-bottom: 24px;
		margin-bottom: 1.5rem;
	}
	
		form label span {
			display: block;
			margin-bottom: 4px;
			margin-bottom: .25rem;
			font-size: 14px;
			font-size: .875rem;
			color: #666;
		}
		
		form label input,
		form label select,
		form label textarea {
			padding: 8px;
			padding: .5rem;
			font-size: 16px;
			font-size: 1rem;
			background-color: #fff;
			border: 1px #ccc solid;
			border-radius: 4px;
			color: #a75e2d;
		}
		
		form input[type="submit"] {
			padding: 12px;
			padding: .75rem;
			font-size: 16px;
			font-size: 1rem;
			border: 1px #ccc solid;
			border-radius: 4px;
			color: #fff;
			background-color: #a75e2d;
			cursor: pointer;
		}
		
			form input[type="submit"]:hover {
				background-color: #8f5127;
			}
			
			

/* ---------- TABLET ----------*/


@media only screen and (max-width: 1200px) {

	.responsive_tablet_landscape_hide {
		display: none !important;
	}
	
	.footer_box {
		margin-right: 2rem;
	}
		
	#footer_linklist {
		column-count: 1;
	}
	
	.dk_grid-05_image-fixed_cont {
		width: 70% !important;
	}
	
	#header_top a {
		margin-right: 1rem;
	}
	

/* ---------- TABLET ----------*/


@media only screen and (max-width: 1279px) {
	
	.responsive_tablet_landscape_hide {
		display: none !important;
	}
	
	.col-tablet-landscape-0 { display: none; }
	.col-tablet-landscape-1 { width: 8.3333%; }
	.col-tablet-landscape-2 { width: 16.6667%; }
	.col-tablet-landscape-3 { width: 25%; }
	.col-tablet-landscape-4 { width: 33.3333%; }
	.col-tablet-landscape-5 { width: 41.6667%; }
	.col-tablet-landscape-6 { width: 50%; }
	.col-tablet-landscape-7 { width: 58.3333%; }
	.col-tablet-landscape-8 { width: 66.6667%; }
	.col-tablet-landscape-9 { width: 75%; }
	.col-tablet-landscape-10 { width: 83.3333%; }
	.col-tablet-landscape-11 { width: 91.6667%; }
	.col-tablet-landscape-12 { width: 100%; }
}
@media only screen and (max-width: 1023px) {
	
	body {
		font-size: 16px;
		font-size: 1rem;
	}
	
	h1 {
		font-size: 32px;
		font-size: 2rem;
	}
	
	h2, h3 {
		font-size: 24px;
		font-size: 1.5rem;
		background-position: 0 0;
		padding: 6px 0 0 0;
	}
		h2:before {
			bottom: -8px;
			bottom: -.5rem;
		}
	
	.wrapper {
		max-width: 96%;
	}

	.minipic, .minipic_r, .minipic_l, .minipic_zoom, .minipic_r_zoom, .minipic_l_zoom {
		max-width: 250px !important;
		height: auto !important;
	}
	
	/*
	#minilogo_wrapper {
		display: none;
	}
	#logo_wrapper {
		top: 20%;
		right: 5%;
		z-index: 90;
	}
	#logo_wrapper {
		display: none;
	}	
	*/
	
	#logo_wrapper {
		width: 60%;
	}
		#header_mainlogo {
			width: 100%;
		}
			
	.list_subcat_item_cont h2 {
		margin-bottom: 24px !important;
		margin-bottom: 1.5rem !important;
	}
	
	/*
	.start_box {
		width: 49%;
	}
	*/
	
	#header_top a {
		padding: 14px 4px;
	} 
	#header_top a .header_top_icon {
		width: 40px;
		height: 40px;
		margin-right: 6px;
	} 
	
	#banner {
		left: 100px;
		bottom: 50px;
	}
	
	
	.footer_box {
		margin-bottom: 48px !important;
		margin-bottom: 3rem !important;
	}
	
	.dk_grid-02_teaser-left_cont.col-6,
	.dk_grid-03_teaser-right_cont.col-6 {
		width: 58.3333%;
	}
	.dk_grid-02_teaser-left_image.col-6,
	.dk_grid-03_teaser-right_image.col-6 {
		width: 41.6667%;
	}
	
	/* last */
	.responsive_tablet_portrait_hide {
		display: none !important;
	}
	
	
	
	.col-tablet-0 { display: none; }
	.col-tablet-1 { width: 8.3333%; }
	.col-tablet-2 { width: 16.6667%; }
	.col-tablet-3 { width: 25%; }
	.col-tablet-4 { width: 33.3333%; }
	.col-tablet-5 { width: 41.6667%; }
	.col-tablet-6 { width: 50%; }
	.col-tablet-7 { width: 58.3333%; }
	.col-tablet-8 { width: 66.6667%; }
	.col-tablet-9 { width: 75%; }
	.col-tablet-10 { width: 83.3333%; }
	.col-tablet-11 { width: 91.6667%; }
	.col-tablet-12 { width: 100%; }
	
	.col-tablet-0 {
		display: none;
	}
	
}


/* ---------- SMARTPHONE ---------- */

@media only screen and (max-width: 760px) {
	
	body {
		font-size: 16px;
		font-size: 1rem;
	}

	.wrapper {
		max-width: 100%;
	}
	
	a[href^=tel] {
		cursor: pointer;
		pointer-events: auto;
	}

	h1,
	.start_box a span{
		font-size: 21px;
		font-size: 1.313rem;
	}

	h2, h3 {
		font-size: 24px;
		font-size: 1.5rem;
	}
		h3:before {
			bottom: -6px;
		}
	
	.cta {
		font-size: 16px;
		font-size: 1rem;
	}

	.wrapper {
		width: 94%;
	}

	#header_top, #header_menu, #sidebar, #header_pagination {
		display: none;
	}
	
	#header_topnavi {
		padding: 4px 0;
		padding: .25rem 0;
	}
		.header_topnavi_link {
			display: block !important;
		}
		#header_topnavi #minilogo_wrapper #header_minilogo {
			margin-top: 8px;
		}
		
		
	#banner {
		left: 20px;
		bottom: 10px;
	}
		
		
	.dk_grid-05_image-fixed_cont {
		width: 90% !important;
		top: 10%;
		padding: 16px;
		padding: 1rem;
	}
	
	#textlogo_wrapper {
		top: 15%;
	}
		#header_textlogo {
			width: 160px;
		}
		
	
	header {
		height: 50%;
	}
	
	#mobilebar_cont {
		display: block;
	}
	
	#logo_wrapper {
		max-width: 80%;
		padding-top: 96px;
		padding-top: 6rem;
	}

	
	#pathfinder_prefix {
		display: block;
	}

	#content, .list_subcat_item_cont {
		line-height: normal !important;
	}
	
	#footer_navi {
		padding: 25px;
	}
	
	#footer_navi .wrapper {
		background: none;
		padding: 16px;
		padding: 1rem;
	}
	
		.footer_box {
			display: block;
			margin-right: 0;
			margin-bottom: 16px;
			margin-bottom: 1rem;
		}
	
	.poweredby_mcms_online {
		display: block;
	}
	
	#footer_navi .wrapper {
		width: 100%;
	}
	
		.footer_box {
			margin-bottom: 32px;
			margin-bottom: 2rem;
		}
	
		#footer_logo_cont {
			margin: 0;
		}
	


	.minipic, .minipic_r, .minipic_l,
	.minipic_zoom:not(.shelter_pic_additional), .minipic_r_zoom, .minipic_l_zoom,
	.list_subcat_item_pic img,
	#content_inner img  {
		width: 100% !important;
		max-width: none !important;
		height: auto !important;
		margin: 20px 0;
	}

	.minipic_r, .minipic_r_zoom {	
		margin-right: 0;
		padding-right: 0;
	}	

	.list_subcat_item {
		margin-right: 0;		
		padding-left: 10px;
		padding-right: 10px;		
		overflow: visible;
	}

	.list_subcat_item_cont {	
		padding: 10px;
	}

	.list_subcat_item_pic {
		position: static;
		margin-bottom: -5px;
		width: 100%;
		height: auto;
		overflow: visible;
	}
	.list_subcat_item_pic img {
		width: 100% !important;
		max-width: 100% !important;
	}	
	
	
	.dk_grid-03_teaser-right_cont {
		padding-left: 0;
	}
	.dk_grid-02_teaser-left_cont {
		padding-right: 0;
		padding-bottom: 0;
	}
	.dk_grid-02_teaser-left_image {
		padding-bottom: 32px;
		padding-bottom: 2rem;
	}
	.dk_grid-03_teaser-right_cont {
		padding-top: 8px;
		padding-top: .5rem;
	}
	.dk_grid-02_teaser-left_image img,
	.dk_grid-03_teaser-right_image img {
		width: 100%;
	}
	
	
	.col-smartphone-0 { display: none; }
	.col-smartphone-1 { width: 8.3333%; }
	.col-smartphone-2 { width: 16.6667%; }
	.col-smartphone-3 { width: 25%; }
	.col-smartphone-4 { width: 33.3333%; }
	.col-smartphone-5 { width: 41.6667%; }
	.col-smartphone-6 { width: 50%; }
	.col-smartphone-7 { width: 58.3333%; }
	.col-smartphone-8 { width: 66.6667%; }
	.col-smartphone-9 { width: 75%; }
	.col-smartphone-10 { width: 83.3333%; }
	.col-smartphone-11 { width: 91.6667%; }
	.col-smartphone-12 { width: 100%; }
	   
    .survey {
      width: 100%;
    }
    	.survey .survey_slider label::before {
    		font-size: 12px;
    		font-size: .75rem;
    	}
    	
    	
	
	/* --- GRID RESPONSIVE --- */


	.col-6 {
		flex: 100%;
	}
	
	.dk_grid-03_teaser-right_cont {
		padding-left: 0;
	}
	.dk_grid-02_teaser-left_cont {
		padding-right: 0;
	}
	.dk_grid-02_teaser-left_image, .dk_grid-03_teaser-right_image {
		padding-bottom: 32px;
		padding-bottom: 2rem;
	}
	.dk_grid-02_teaser-left_image img, .dk_grid-03_teaser-right_image img {
		margin-top: 16px;
		margin-top: 1rem;
	}
	
	
	/* last */
	.responsive_smartphone_portrait_hide {
		display: none !important;
	}
}
