@charset "utf-8";

/**********/
/* Farben */
/**********/

:root {
	--bs-primary-rgb: 210,19,43;
	--bs-link-color-rgb: 112,112,122;
	--bs-link-hover-color-rgb: 210,19,43;
	--bs-grey-rgb: 112,112,122;
	--bs-body-color: rgb(var(--bs-grey-rgb));
}

/*************/
/* Allgemein */
/*************/

html,body
{
	position:relative;
}
#editmode html, #editmode body{
	overflow-x:hidden;
}

body{
	overflow-y:scroll;
	font-family: 'source-sans-pro',sans-serif;
	font-weight:300;
	font-size:18px;
}

h1, .h1{
	font-size:35px;
	font-weight:600;
	margin:0;
}

h2, .h2{
	font-size:35px;
	font-weight:300;
	margin:0;
}

h3, .h3{
	font-size:22px;
	font-weight:600;
	margin:0;
}

h4, .h4{
	font-size:18px;
	font-weight:600;
	margin:0;
}

a{
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

b,strong{
	font-weight:600;
}

.separator{
	width:60px;
	height:5px;
	border-radius:5px;
	background-color:rgb(var(--bs-primary-rgb));
	margin:32px auto;
	
}

.gradient-bottom{
	position:relative;
}
.gradient-bottom::after{
	display:block;
	content:'';
	position:absolute;
	left:0;
	bottom:0;
	width:100%;
	height:180px;
	background: linear-gradient(0deg, #9B9B9B 0%, #FFFFFF 100%);
	z-index:-1;
	opacity:0.05;
}

.btn{
	border-radius:10rem;
	padding:15px 34px;
	box-shadow:none !important;
	--bs-btn-border-color:rgb(var(--bs-grey-rgb));
	--bs-btn-hover-border-color:rgb(var(--bs-primary-rgb));
	--bs-btn-hover-bg:rgb(var(--bs-primary-rgb));
}
.btn:hover, .btn:focus, .btn:active{
	background-color:rgb(var(--bs-primary-rgb));
	border-color:rgb(var(--bs-primary-rgb));
	color:#FFFFFF;
}

.btn-primary{
	--bs-btn-bg:rgb(var(--bs-primary-rgb));
	--bs-btn-border-color:rgb(var(--bs-primary-rgb));
	--bs-btn-hover-border-color:rgb(var(--bs-primary-rgb));
	--bs-btn-hover-bg:rgba(var(--bs-primary-rgb),0.8);
}

.dropdown-item.active, .dropdown-item:active{
	background-color:rgb(var(--bs-primary-rgb));
}

#sub_reload{
	/*overflow-x:hidden;*/
}

ul:not(.dropdown-menu),
ul:not(.dropdown-menu) li {
	list-style: none;
}
ul:not(.dropdown-menu) li:before {
	content: '\f061';
	font-family: 'Font Awesome 6 Pro';
	float: left;
	margin-left: -1.5em;
	color:rgb(var(--bs-primary-rgb));
	font-weight:400;
}

.blockcontent ul li:before {
	content: '\e122';
	font-family: 'Font Awesome 6 Pro';
	float: left;
	margin-left: -1.5em;
	color:rgb(var(--bs-primary-rgb));
	font-weight:700;
}
.blockcontent ul, .blockcontent ol{
	padding-left:4rem;
}

.form-control{
	font-size:18px;
	padding:12px 24px;
	border-radius:27px;
	border-color:rgb(var(--bs-grey-rgb));
	color:rgb(var(--bs-grey-rgb));
	box-shadow:none !important;
}
.form-control:focus{
	border-color:rgb(var(--bs-grey-rgb));
}

.form-control:-ms-input-placeholder { 
	color:rgba(var(--bs-grey-rgb),0.5);
}	  
.form-control::-ms-input-placeholder { 
	color:rgba(var(--bs-grey-rgb),0.5);
}
.form-control::placeholder { 
	color:rgba(var(--bs-grey-rgb),0.5);
}

.form-check-input{
	border-color:rgb(var(--bs-grey-rgb));
	box-shadow:none !important;
}
.form-check-input:checked{
	border-color:rgb(var(--bs-grey-rgb));
	background-color: #FFFFFF;
}
.form-check-input:checked[type="radio"]{
	--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23707070'/%3e%3c/svg%3e");
}

::-moz-selection,
::selection {
	color: #FFFFFF;
	background: rgb(var(--bs-primary-rgb));
}

/**********/
/* Header */
/**********/

header{
	position:absolute;
	top:0;
	left:0;
	z-index:100;
	width:100vw;
}

#redbars{
	position:relative;
	width:450px;
	height:334px;
	background-image:url('/images/layout/Rote_Balken.svg');
	background-size:contain;
	background-repeat:no-repeat;
}

#menu_open{
	color:#FFFFFF;
	position:absolute;
	right:140px;
	top:40px;
	cursor:pointer;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
#menu_open:focus, #menu_open:hover{
	color:rgb(var(--bs-link-hover-color-rgb));
}

.logo-positioner{
	position:absolute;
	left:140px;
	top:50px;
	z-index:20;
}

.logo{
	width:224px;
}

@media (max-width:991px)
{
	.logo-positioner{
		left:100px;
	}
	
	#redbars{
		left:-40px;
	}
	
	#menu_open{
		right:124px;
		top:70px;
	}
}

@media (max-width:575px)
{
	.logo-positioner{
		left:32px;
		top:36px;
	}
	
	.logo{
		width:150px;
	}
	
	#redbars{
		left:-58px;
		width:300px;
	}
	
	#menu_open{
		right:56px;
		top:40px;
	}
}

/************/
/* Nav Main */
/************/
#header_dropdown{
	position:absolute;
	top:0;
	left:0;
	z-index:200;
	width:100vw;
	height:0;
	background-color:#FFFFFF;
	overflow:hidden;
}
#header_dropdown.open{
	box-shadow: 0px -5px 10px 10px rgba(0,0,0,0.5);
}

#header_dropdown .header_dropdown_inner{
	padding-top:190px;
}

#header_dropdown .header_dropdown_inner_padding{
	padding-left:100px;
	padding-right:100px;
}

#header_dropdown .header_dropdown_inner .close{
	position:absolute;
	right:210px;
	top:0;
	width:80px;
	height:130px;
	padding-top:66px;
	background-color:#F3F3F3;
	cursor:pointer;
	font-size:32px;
	text-align:center;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
#header_dropdown .header_dropdown_inner .close:hover, #nav_main .header_dropdown_inner .close:focus{
	color:rgb(var(--bs-link-hover-color-rgb));
}

#header_dropdown .header_dropdown_inner .header_dropdown_inner_bottom b{
	font-size:19px;
}

#header_dropdown .header_dropdown_inner .header_dropdown_inner_bottom{
	font-size:17px;
}

#header_dropdown .header_dropdown_inner .header_dropdown_inner_bottom .nav_social{
	display:inline-block;
}

#header_dropdown .header_dropdown_inner .header_dropdown_inner_bottom .nav_social a{
	margin-right:4px;
	font-size:20px;
}

#header_dropdown .header_dropdown_inner .header_dropdown_inner_bottom a{
	color:#FFFFFF;
	text-decoration:none;
}
#header_dropdown .header_dropdown_inner .header_dropdown_inner_bottom a:hover, #nav_main .nav_inner .nav_inner_bottom a:focus{
	opacity:0.5;
}

@media (max-width:991px)
{
	#header_dropdown .header_dropdown_inner{
		padding-top:170px;
	}

	#header_dropdown .header_dropdown_inner .close{
		right:100px;
	}
}

@media (max-width:575px)
{
	#header_dropdown .header_dropdown_inner{
		padding-top:124px;
	}
	
	#header_dropdown .header_dropdown_inner_padding{
		padding-left:32px;
		padding-right:32px;
	}
	
	#header_dropdown .header_dropdown_inner .close{
		right:32px;
		height:90px;
		padding-top:32px;
	}
}

/************/
/* Suchfeld */
/************/
#search_input{
	position:absolute;
	right:310px;
	top:64px;
	height:54px;
	width:0;
	overflow:hidden;
	padding-right:52px;
	border:1px solid rgb(var(--bs-grey-rgb));
	border-radius:26px;
}
#search_input.active{
	width:auto;
}

#search_input .search_toggle{
	display:block;
	position:absolute;
	top:0;
	right:0;
	height:52px;
	width:52px;
	line-height:52px;
	text-align:center;
	font-size:24px;
	cursor:pointer;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	background-color:#FFFFFF;
	border-top-left-radius:50%;
	border-bottom-left-radius:50%;
}
#search_input.active .search_toggle{
	background-color:rgb(var(--bs-grey-rgb));
	color:#FFFFFF;
}

#search_input input{
	width:350px;
	height:52px;
	border:none;
	background:transparent;
	font-size:17px;
	padding-left:26px;
	outline:none;
	padding-right:52px;
}
#search_input ::placeholder{
	color:#C6C6C6;
	opacity:1;
	font-weight:200;
}

@media (max-width:1199px)
{
	#search_input input{
		width:250px;
	}
}
@media (max-width:991px)
{
	#search_input{
		position:relative;
		top:auto;
		right:auto;
		left:auto;
		width:auto !important;
		margin:0 100px 32px 100px;
	}
	
	#search_input .search_toggle{
		background-color:rgb(var(--bs-grey-rgb));
		color:#FFFFFF;
	}
	
	#search_input input{
		width:100%;
		padding-right:0;
	}
}

@media (max-width:575px)
{
	#search_input{
		margin:0 32px 32px 32px;
	}
}

/************/
/* Nav Main */
/************/
#nav_main{
	border-bottom:1px solid #F3F3F3;
}

#nav_main .item.level1{
	border-top:1px solid #F3F3F3;
	padding-top:8px;
	padding-bottom:8px;
}

#nav_main .item.level1 > a{
	position:relative;
	display:block;
	text-decoration:none;
}

#nav_main .item.level1 > a .nr{
	font-size:15px;
}

#nav_main .item.level1 > a .name{
	font-size:25px;
	font-weight:700;
}

#nav_main .item.level1.hasChildren > a::after{
	font-family: "Font Awesome 6 Pro";
	font-weight: 400;
	content: "\f061";
	color:#F3F3F3;
	position:absolute;
	right:8px;
	top:6px;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	border:none;
}
#nav_main .item.level1.active > a,
#nav_main .item.level1.hasChildren.active > a::after,
#nav_main .item.level1 > a.dropdown-toggle.show,
#nav_main .item.level1.hasChildren > a:hover::after, #nav_main .item.level1.hasChildren > a:focus::after{
	color:rgb(var(--bs-link-hover-color-rgb));
}

#nav_main .dropdown-menu{
	position:relative;
	padding:0 0 0 20px;
	margin:0;
	border:none;
}

#nav_main .item.level2 > a{
	position:relative;
	display:block;
	text-decoration:none;
	font-size:18px;
	font-weight:200;
	padding:4px 0;
}
#nav_main .item.level2.active > a{
	font-weight:700;
}

#nav_main .item.level1 > a.dropdown-toggle.show::after{
	transform: rotate(90deg);
}

/***************/
/* Nav Kacheln */
/***************/

#nav_kacheln .item{
	position:relative;
	display:block;
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center center;
	/*box-shadow:inset 0px -80px 30px -50px rgba(0,0,0,0.5);*/
}
#nav_kacheln .item::after{
	content:'';
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	background-color:rgb(var(--bs-primary-rgb));
	opacity:0;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	z-index:10;
}
#nav_kacheln .item:hover::after{
	opacity:0.2;
}

#nav_kacheln .item .shadow{
	content:'';
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	top:auto;
	height:60px;
	z-index:5;
	background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
}

#nav_kacheln .item .label{
	left:19px;
	top:auto;
	bottom:12px;
	text-decoration:none;
	color:#FFFFFF;
	font-weight:600;
	font-size:19px;
	height:auto;
	width:auto;
	z-index:20;
}

@media (max-width:575px)
{
	#nav_kacheln .item .label{
		font-size:14px;
	}
}

/************************/
/* Seitliche Navigation */
/************************/
#nav_side{
	position:fixed;
	right:0;
	z-index:110;
	top:50%;
}

#nav_side a{
	position:relative;
	display:inline-block;
	height:58px;
	border-top-left-radius:27px;
	border-bottom-left-radius:27px;
	background-color:rgb(var(--bs-primary-rgb));
	margin:6px 0;
	text-decoration:none;
	padding-left:64px;
	right:calc(-100% + 64px);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
#nav_side #nav_40, #nav_side a:hover, #nav_side a:focus{
	right:0;
}

#nav_side a .img{
	position:absolute;
	width:28px;
	height:36px;
	left:20px;
	top:12px;
}

#nav_side a img{
	width:auto;
	height:100%;
	/*filter: invert(97%) sepia(0%) saturate(7449%) hue-rotate(100deg) brightness(116%) contrast(101%);*/
}

#nav_side a .title{
	position:relative;
	line-height:58px;
	padding-right:16px;
	font-size:18px;
	font-weight:700;
	color:#FFFFFF;
	margin-right:-100%;
}

/**********/
/* Footer */
/**********/

footer{
	background-color:#F3F3F3;
	padding-top:48px;
	padding-bottom:48px;
	font-size:16px;
}

footer .title{
	font-size:19px;
	margin-bottom:20px;
	font-weight:600;
}
footer .title:after{
	content:'';
	display:block;
	width:22px;
	height:3px;
	background-color:rgb(var(--bs-primary-rgb));
	position:relative;
	top:5px;
	border-radius:5px;
}

footer a{
	text-decoration:underline;
	color:var(--bs-body-color);
}
footer a:hover, footer a:focus{
	text-decoration:none;
}

footer .nav_footer a{
	text-decoration:none;
}
footer .nav_footer a:hover, footer .nav_footer a:focus{
	color:rgb(var(--bs-link-hover-color-rgb));
}

footer .nav_social a{
	text-decoration:none;
	display:block;
	float:left;
	border:1px solid rgba(201,200,200,0.5);
	background-color:rgba(222,222,222,0.5);
	height:54px;
	width:54px;
	text-align:center;
	line-height:54px;
	font-size:22px;
	border-radius:50%;
	margin-right:6px;
	color:rgba(201,200,200,1);
	opacity:0.5;
}
footer .nav_social a:hover, footer .nav_social a:focus{
	opacity:1;
	background-color:rgb(var(--bs-primary-rgb));
	border-color:rgb(var(--bs-primary-rgb));
	color:#FFFFFF;
}

/*************/
/* Slideshow */
/*************/

.slideshow{
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	z-index:10;
}

.slideshow .gradient{
	position:absolute;
	left:0;
	top:0;
	right:0;
	height:285px;
	opacity:0.15;
	background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
	z-index:10;
}

.slideshow .carousel,
.slideshow .carousel-inner,
.slideshow .carousel-item{
	height:100%;
	width:100%;
}

.slideshow .carousel-item{
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}

/**************/
/* Startseite */
/**************/
#start_slideshow{
	height:100vh;
}

@media (max-width:1199px) and (orientation: portrait)
{
	#start_slideshow{
		height:60vh;
	}
}

#start_button{
	position:relative;
	text-decoration:none;
	color:#FFFFFF;
	text-align:center;
	font-weight:700;
	font-size:20px;
	height:260px;
	width:260px;
	z-index:100;
	background-image:url('/images/layout/Button_Startseite.svg');
	background-size:contain;
	background-repeat:no-repeat;
}

/************/
/* Subseite */
/************/
#slideshow{
	height:60vh;
}

#slideshow .logo{
	position:absolute;
	right:135px;
	bottom:56px;
	width:140px;
	z-index:10;
}

@media (max-width:575px)
{
	#slideshow .logo{
		right:36px;
		bottom:36px;
		width:100px;
	}
}

/******************/
/* Navigation Sub */
/******************/
.nav_sub{
	padding-bottom:64px;
	padding-top:100px;
}

.nav_sub .item{
	border:3px solid rgba(var(--bs-grey-rgb),0.5);;
	border-radius:2px;
}

.nav_sub .item.active{
	border-color:rgb(var(--bs-grey-rgb));
}

.nav_sub .item .icon{
	position:absolute;
	width:70px;
	height:54px;
	top:-27px;
	left:50%;
	margin-left:-35px;
	background-color:#FFFFFF;
	text-align:center;
}
.nav_sub .item .icon img{
	filter: invert(45%) sepia(0%) saturate(0%) hue-rotate(71deg) brightness(79%) contrast(95%);
	height:100%;
	opacity:0.5;
}
.nav_sub .item.active .icon img{
	opacity:1;
}

.nav_sub .item h2{
	font-size:35px;
	font-weight:600;
	color:rgba(var(--bs-grey-rgb),0.5);
	text-align:center;
}
.nav_sub .item.active h2{
	color:rgb(var(--bs-grey-rgb));
}

.nav_sub .item h3{
	font-size:35px;
	font-weight:300;
	color:rgba(var(--bs-grey-rgb),0.5);
}
.nav_sub .item.active h3{
	color:rgb(var(--bs-grey-rgb));
}

.nav_sub .item a{
	text-decoration:none;
	font-weight:600;
	color:rgba(var(--bs-grey-rgb),0.5);
}
.nav_sub .item.active a{
	color:rgb(var(--bs-grey-rgb));
}
.nav_sub .item a:hover, #nav_sub .item a:focus{
	color:rgb(var(--bs-primary-rgb));
}

/************/
/* Produkte */
/************/

.product_main .icon{
	margin:0 auto;
	width:160px;
	margin-bottom:34px;
}

.product_image{
	position:relative;
	display:block;
	border:1px solid #D8D8D8;
	text-align:center;
}

.product_image a{
	display:block;
	position:absolute;
	right:0;
	bottom:0;
	width:70px;
	height:70px;
	text-align:center;
	line-height:70px;
	background-color:rgb(var(--bs-primary-rgb));
	color:#FFFFFF;
	font-size:38px;
}
.product_image a:hover, .product_image a:focus{
	background-color:rgb(var(--bs-grey-rgb));
}

.product_gallery{
	position:relative;
}

.product_gallery .overflow{
	display:block;
	position:absolute;
	height:5px;
	bottom:16px;
	left:0;
	width:100%;
	background-color:#FFFFFF;
}

.product_gallery .product_image{
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
}


/******************/
/* Swipebox Hover */
/******************/
#swipebox-overlay{
	background-color:rgba(0,0,0,0.8);
}

.swipebox_hover{
	display:block;
	position:relative;
}
.swipebox_hover img{
	position:relative;
	z-index:10;
}
.swipebox_hover::after{
	display:flex;
	flex-direction:row;
	align-items: center;
	justify-content: center;
	font-family: "Font Awesome 6 Pro";
	font-weight: 300;
	content: "\2b";
	color:#FFFFFF;
	font-size:56px;
	position:absolute;
	z-index:20;
	top:24px;
	right:24px;
	bottom:24px;
	left:24px;
	background-color:rgba(var(--bs-primary-rgb),0.7);
	opacity:0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.swipebox_hover:hover::after, .swipebox_hover:focus::after{
	opacity:1;
}

/*************/
/* Show More */
/*************/
#showmore{
	background-image:url('/images/layout/bg_more.jpg');
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center center;
	padding-top:160px;
	padding-bottom:160px;
}

#showmore .item{
	position:relative;
	background-color:#FFFFFF;
	font-size:18px;
}

#showmore .item .link{
	position:absolute;
	bottom:32px;
}

#showmore .item .link{
	text-decoration:none;
	font-weight:600;
}

/********************/
/* Produktbeispiele */
/********************/
#product_examples .item{
	border:1px solid #D8D8D8;
}

#product_examples .item > div{
	background-size:contain;
	background-repeat:no-repeat;
	background-position:center center;
	left:12px;
	right:12px;
	top:12px;
	bottom:12px;
	width:auto;
	height:auto;
}

#product_examples .item a{
	display:block;
	position:absolute;
	right:-12px;
	bottom:-12px;
	width:70px;
	height:70px;
	text-align:center;
	line-height:70px;
	background-color:rgb(var(--bs-primary-rgb));
	color:#FFFFFF;
	font-size:38px;
	z-index:20;
}
#product_examples .item a:hover, #product_examples .item a:focus{
	background-color:rgb(var(--bs-grey-rgb));
}

#product_examples .item .overlay{
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	background-color:rgba(var(--bs-primary-rgb),0.8);
	color:#FFFFFF;
	opacity:0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	z-index:10;
}
#product_examples .item:hover .overlay, #product_examples .item:focus .overlay{
	opacity:1;
}

#product_examples .item .overlay h3{
	font-size:25px;
}

/************/
/* Nav Tabs */
/************/
.nav-tabs .nav-link{
	position:relative;
	color:var(--bs-body-color);
	font-size:20px;
	border-top:0;
	border-left:0;
	border-right:0;
	border-color:#D8D8D8;
	padding-left:0;
	padding-right:0;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus{
	color:rgb(var(--bs-primary-rgb));	
	border-color:#D8D8D8;
}

.nav-tabs .nav-link.active{
	font-weight:600;
	color:var(--bs-body-color);
	border-bottom:1px solid rgb(var(--bs-grey-rgb));
}
.nav-tabs .nav-link.active::after{
	content:'';
	display:block;
	position:absolute;
	height:5px;
	bottom:-3px;
	left:0;
	width:100%;
	background-color:rgb(var(--bs-grey-rgb));
	border-radius:10rem;
}

.tab-content h3{
	font-size:22px;
	font-weight:600;
	position:relative;
	margin-bottom:24px;
}
.tab-content h3::after{
	content:'';
	display:block;
	position:absolute;
	height:5px;
	height:5px;
	width:22px;
	background-color:rgb(var(--bs-primary-rgb));
	border-radius:10rem;
	bottom:-5px;
	left:0;
}

/***********/
/* Galerie */
/***********/
.gallery .image{
	display:block;
	border:1px solid #D8D8D8;
	position:relative;
}

.gallery .image span{
	display:block;
	position:absolute;
	right:0;
	bottom:0;
	width:18px;
	height:18px;
	text-align:center;
	line-height:18px;
	background-color:rgb(var(--bs-primary-rgb));
	color:#FFFFFF;
	font-size:10px;
	z-index:20;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.gallery .image:hover span, .gallery .image:focus span{
	background-color:rgb(var(--bs-grey-rgb));
}

.gallery .caption{
	font-size:14px;
	line-height:1.2;
	margin-top:4px;
}

/*************/
/* Accordion */
/*************/
.accordion{
	border-bottom:1px solid #D8D8D8;
}

.accordion .accordion-item{
	border:0;
	border-radius:0;
}

.accordion .accordion-button{
	background-color:transparent;
	border:none;
	border-top:1px solid #D8D8D8;
	color:var(--bs-body-color);
	font-weight:600;
	border-radius:0 !important;
	font-size:18px;
	box-shadow:none;
}
.accordion .accordion-button::after {
	order: -1;
	margin-left: 0; 
	margin-right:0.5em;
	background-image: none;
	font-family: "Font Awesome 6 Pro";
	font-weight: 300;
	content: "\2b";
	line-height:1;
	font-size:20px;
}
.accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(45deg);
	transform-origin: center;
}

/************/
/* Timeline */
/************/
#carouselTimeline{
	padding-bottom:100px;
}

#carouselTimeline .carousel-indicators [data-bs-target]{
	width:12px;
	height:12px;
	border-radius:50%;
	margin:0 4px;
	background-color:rgb(var(--bs-grey-rgb));
}

#carouselTimeline .item{
	position:relative;
	padding-top:32px;
	padding-bottom:32px;
}

#carouselTimeline .item .year{
	width:110px;
}
#carouselTimeline .item .year::before,
#carouselTimeline .item .year::after{
	content:'';
	position:absolute;
	left:67px;
	height:50%;
	width:2px;
	margin-left:-1px;
	background-color:rgb(var(--bs-primary-rgb));
	z-index:10;
}
#carouselTimeline .item .year::before{
	top:0;
}
#carouselTimeline .item .year::after{
	bottom:0;
}
@media (min-width:992px)
{
	#carouselTimeline .item:first-child .year::before{
		display:none;
	}
	#carouselTimeline .item:last-child .year::after{
		display:none;
	}
}
@media (max-width:991px)
{
	#carouselTimeline .column:first-child .item:first-child .year::before{
		display:none;
	}
	
	#carouselTimeline .column:last-child .item:last-child .year::after{
		display:none;
	}
}

#carouselTimeline .item .year .icon{
	position:relative;
	z-index:20;
	width:110px;
	height:110px;
	background-image:url('/images/layout/Timeline_Year.svg');
	background-size:contain;
	background-repeat:no-repeat;
	background-position:center center;
	text-align:center;
	line-height:110px;
	color:#FFFFFF;
	font-weight:600;
	font-size:22px;
}

/*****************/
/* Jobs Listview */
/*****************/

#jobs{
	position:relative;
}

#jobs .swiper-wrapper{
	/*justify-content: center;*/
}
@media (min-width:1401px)
{
	#jobs .swiper-wrapper{
		justify-content: center;
	}
}

#jobs .swiper-pagination{
	bottom:-32px;
}
#jobs .swiper-pagination .swiper-pagination-bullet{
	cursor:pointer;
}

#jobs .swiper-pagination-bullet{
	width:12px;
	height:12px;
	border-radius:50%;
	margin:0 4px;
	background-color:rgb(var(--bs-grey-rgb));
	opacity:0.5;
}
#jobs .swiper-pagination-bullet-active{
	opacity:1;
}

#jobs .swiper-slide{
	display:flex;
	height:auto !important;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

#jobs .swiper-slide-next-next{
	opacity:0.5;
	transform: scale(0.98);
	transform-origin: top right;
}
@media (max-width:1400px)
{
	#jobs .swiper-slide-next{
		opacity:0.5;
		transform: scale(0.98);
		transform-origin: top right;
	}
}
@media (max-width:991px)
{
	#jobs .swiper-slide-next, #jobs .swiper-slide-prev{
		opacity:1;
		transform:unset;
	}
}

#jobs .swiper-slide-prev-prev{
	opacity:0.5;
	transform: scale(0.98);
	transform-origin: top left;
}
@media (max-width:1400px)
{
	#jobs .swiper-slide-prev{
		opacity:0.5;
		transform: scale(0.98);
		transform-origin: top left;
	}
}

#jobs .card-body{
	padding-bottom:80px !important;
}

#jobs .more{
	position:absolute;
	bottom:32px;
	left:48px;
	width:100%;
}

#jobs a{
	text-decoration:none;
	font-weight:600;
}
#jobs a:hover, #jobs a:focus{
	color:rgb(var(--bs-primary-rgb));
}

/*********/
/* Modal */
/*********/
.modal .modal-content{
	border-radius:0;
}

.modal .modal-header{
	border:none;
	padding:0;
}

.modal .btn-close{
	width:56px;
	height:56px;
	background-color:#C9C8C8;
	padding:0;
	line-height:56px;
	text-align:center;
	margin:0 0 0 auto;
	border-radius:0;
	box-shadow:none !important;
}

.modal .modal-body{
	padding-left:80px;
	padding-right:80px;
}
@media (max-width:991px)
{
	.modal .modal-body{
		padding-left:24px;
		padding-right:24px;
		padding-top:0;
	}
}

/**********/
/* Select */
/**********/
.form-select{
	position:relative;
	border:1px solid rgb(var(--bs-grey-rgb));
	background-color:#FFFFFF;
	color:rgb(var(--bs-grey-rgb));
	border-radius:27px !important;
	padding:12px 48px 12px 24px;
	font-size:18px;
	box-shadow:none !important;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 1em;
}
.form-select:focus{
	border-color:rgb(var(--bs-grey-rgb));
}

.form-select:-ms-input-placeholder { 
	color:rgba(var(--bs-grey-rgb),0.5);
}	  
.form-select::-ms-input-placeholder { 
	color:rgba(var(--bs-grey-rgb),0.5);
}
.form-select::placeholder { 
	color:rgba(var(--bs-grey-rgb),0.5);
}

.custom-select{
	z-index:1000;
}

.custom-select__option--value{
	position:relative;
	border:1px solid rgb(var(--bs-grey-rgb));
	background-color:#FFFFFF;
	color:rgb(var(--bs-grey-rgb));
	border-radius:27px !important;
	padding:12px 48px 12px 24px !important;
	background:#FFFFFF !important;
	font-size:18px;
}
.custom-select--active .custom-select__option--value{
	border-bottom-color:transparent !important;
	border-bottom-left-radius:0 !important;
	border-bottom-right-radius:0 !important;
}

.custom-select__option--value::after{
	position:absolute;
	right:20px;
	top:12px;
	content: '\f078';
	font-family: 'Font Awesome 6 Pro';
	font-weight:400;
	border:none;
	width:18px;
	height:27px;
	text-align:center;
	transform:unset;
}
.custom-select--active .custom-select__option--value::after{
	content: '\f00d';
	transform:unset;
}

.custom-select__option:not(.custom-select__option--value):hover, .custom-select__option:not(.custom-select__option--value):focus{
	font-weight:600;
	background:transparent;
}

.custom-select__option{
	color:rgb(var(--bs-grey-rgb));
	padding:4px 24px;
	font-size:18px;
}

.custom-select__dropdown{
	top:100%;
	border:1px solid rgb(var(--bs-grey-rgb));
	border-bottom-left-radius:27px !important;
	border-bottom-right-radius:27px !important;
	border-top:0;
	padding-bottom:16px;
}

/********/
/* Team */
/********/
#teams .team .item{
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center center;
}

#teams .team .item .balken{
	position:absolute;
	display:inline-block;
	top:unset;
	bottom:12px;
	right:0;
	left:unset;
	padding:10px 16px;
	border-top-left-radius:10rem;
	border-bottom-left-radius:10rem;
	background-color:rgb(var(--bs-primary-rgb));
	color:#FFFFFF;
	height:auto;
	z-index:10;
	width:auto;
	text-transform:uppercase;
	font-size:15px;
}

#teams .team .item .overlay{
	position:absolute;
	left:12px;
	top:12px;
	right:12px;
	bottom:12px;
	background-color:rgb(var(--bs-primary-rgb),0.8);
	opacity:0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	width:auto;
	height:auto;
	z-index:20;
	display:flex;
	flex-direction:column;
	align-items: start;
	justify-content: center;
	color:#FFFFFF;
	padding:22px;
	font-size:16px;
	text-align:left;
	line-height:1.2;
}
#teams .team .item:hover .overlay, #teams .team .item:focus .overlay{
	opacity:1;
}

#teams .team .item .name{
	font-weight:600;
	font-size:25px;
}

#teams .team .item a{
	color:#FFFFFF;
	text-decoration:none;
}
#teams .team .item a:hover, #teams .team .item a:focus{
	text-decoration:underline;
}

/********/
/* News */
/********/

#news_filter .filter{
	text-transform:uppercase;
	cursor:pointer;
	position:relative;
}

#news_filter .filter::after{
	content:'';
	position:absolute;
	left:0;
	bottom:-5px;
	height:5px;
	background-color:rgb(var(--bs-primary-rgb));
	border-radius:10rem;
	width:0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
#news_filter .filter.active::after{
	width:100%;
}

#news .item{
	display:block;
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center center;
}
#news .item .text::after{
	content:'';
	display:block;
	position:absolute;
	left:0;
	bottom:0;
	width:100%;
	height:100%;
	background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
	z-index:-1;
	opacity:1;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
#news .item:hover::after, #news .item:focus::after{
	opacity:0;
}

#news .item .balken{
	position:absolute;
	display:inline-block;
	top:26px;
	right:0;
	left:unset;
	padding:10px 16px;
	border-top-left-radius:10rem;
	border-bottom-left-radius:10rem;
	background-color:rgb(var(--bs-primary-rgb));
	color:#FFFFFF;
	height:auto;
	z-index:10;
	width:auto;
	text-transform:uppercase;
	font-size:15px;
	z-index:20;
}

#news .item .text{
	position:absolute;
	left:0;
	bottom:0;
	color:#FFFFFF;
	text-decoration:none;
	font-size:16px;
	top:unset;
	width:auto;
	height:auto;
	text-align:left;
	padding:34px 34px 25px 34px;
	z-index:20;
}

#news .item .text .title{
	font-size:20px;
	font-weight:600;
}

/***************/
/* Back to Top */
/***************/
#btn-back-to-top {

	position: fixed;
	bottom: 20px;
	right: 20px;
	display: none;
	z-index:1000;
	width:45px;
	height:45px;
	line-height:45px;
	display:block;
	padding:0;
	text-align:center;
	border:none;
	background-color:rgb(var(--bs-grey-rgb));
	color:#FFFFFF;
	display:none;
}
#btn-back-to-top:hover, #btn-back-to-top:focus{
	background-color:rgb(var(--bs-primary-rgb));
}

/**********/
/* Module */
/**********/

#editmode .module-select{
    position:relative;
}

#editmode .module-select > *{
    margin:8px;
	display:inline-block;
	background:#FFFFFF;
	padding:4px;
	border:1px solid #A5AAAE;
	z-index:100;
	width:250px;
}

.py-6{
	padding-top:96px;
	padding-bottom:96px;
}
.pt-6{
	padding-top:96px;
}
.pb-6{
	padding-bottom:96px;
}

/***********/
/* Tabelle */
/***********/

.tablecontainer table th{
	font-weight:300;
	font-size:22px;
	border-bottom:4px solid rgb(var(--bs-primary-rgb));
	padding-top:16px;
	padding-bottom:16px;
}

.tablecontainer table td{
	padding-top:12px;
	padding-bottom:12px;
	border-bottom:2px solid rgba(var(--bs-grey-rgb),0.5);
}

.tablecontainer table td, .tablecontainer table th{
	
}

/********/
/* Maps */
/********/

.maps.ratio{
	--bs-aspect-ratio: 100%;
}
@media (min-width: 992px) {
	.maps.ratio{
		--bs-aspect-ratio: 60%;
	}
}

.gm-style .gm-style-iw-c{
	border-radius:0;
	-webkit-transform: translate3d(0,-50%,0);
	transform: translate3d(0%,-50%,0);
	background-color:rgba(var(--bs-primary-rgb),0.9);
	color:#FFFFFF;
	box-shadow:none;
	max-width:unset !important;
	overflow:hidden !important;
	padding:0;
}
@media (max-width:991px)
{
	.gm-style .gm-style-iw-c{
		-webkit-transform: translate3d(-50%,-100%,0);
		transform: translate3d(-50%,-100%,0);
	}
}

.gm-style .gm-style-iw-c .gm-ui-hover-effect,
.gm-style-iw-tc{
	display:none !important;
}
.gm-style-iw-d{
	overflow:hidden !important;
}

.gm-style-iw-t{
	bottom:0 !important;
}

.infowindow{
	font-size:22px;
	font-weight:600;
	overflow:hidden !important;
}

.infowindow a{
	position:absolute;
	right:4px;
	top:4px;
	color:#FFFFFF;
	width:32px;
	height:32px;
	line-height:32px;
	border:1px solid #FFFFFF;
	border-radius:50%;
	font-size:22px;
}
.infowindow a:hover, .infowindow a:focus{
	color:rgb(var(--bs-primary-rgb));
	background-color:#FFFFFF;
}

.maps_label{
	font-size:14px;
	color:rgb(var(--bs-primary-rgb)) !important;
	font-weight:500;
	-webkit-transform: translate3d(50%,0,0);
	transform: translate3d(50%,0,0);
	padding-left:16px;
	text-shadow:0 0 3px rgba(255,255,255,0.85), 0 0 3px rgba(255,255,255,0.85);
}

/*************/
/* Termsfeed */
/*************/
.termsfeed-com---palette-light .cc-nb-okagree,
.termsfeed-com---palette-light .cc-nb-reject,
.termsfeed-com---palette-light .cc-cp-foot-save,
.termsfeed-com---pc-dialog input[type="checkbox"].cc-custom-checkbox:checked + label::before{
	background-color:rgb(var(--bs-primary-rgb)) !important;
	color:#FFFFFF !important;
}

/***********/
/* Infobar */
/***********/

#infobar{
	position:relative;
	color:#FFFFFF;
	background-color:rgb(var(--bs-primary-rgb));
	z-index:210;
}

#infobar a{
	text-decoration:none;
	color:#FFFFFF;
	font-weight:500;
}
#infobar a:hover, #infobar a:focus{
	text-decoration:underline;
}

#infobar .close{
	position:absolute;
	right:140px;
	top:50%;
	width:29px;
	text-align:center;
	cursor:pointer;
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
@media (max-width: 991px) {
	#infobar .close{
		right: 124px;
	}
}
@media (max-width: 767px) {
	#infobar .close{
		right: 10px;
	}
}

/********************/
/* Interner Bereich */
/********************/

#editmode .we.we_switcher{
	background:transparent;
	margin:0 auto;
}

#editmode .we.we_switcher input{
	margin-right:4px;
}

#editmode .we.we_switcher td > *{
	display:inline-block;
	vertical-align:middle;
	font-size:15px;
}