/**
 * @file        /a_layout/css/layout_project_specific.css
 * @copyright   Copyright (C) 2006 - 2024 codeDESIGN | Milos Mandic / All rights reserved.
 * @link        https://www.filterverlag.de
 * @author      codeDESIGN | Milos Mandic <milos.mandic@filterverlag.de>
 */
 
/* codeDESIGN - layout_project_specific.css */
@charset "utf-8";


/* CUSTOM CENTRAL SETTINGS FOR ALL BUTTONS */
button,
button.kick-kcm__btn {
	font: 400 12px/19px 'Gilroy','Open Sans',Arial,Helvetica !important;
	text-transform: uppercase;
	transition: all 0.33s ease-in-out;
	-moz-transition: all 0.33s ease-in-out;
	-o-transition: all 0.33s ease-in-out;
	-webkit-transition: all 0.33s ease-in-out;
}



/* FIXED BUTTON SCREENSIDE */
div.fixed_button_screenside {
	background: #34a8d9;
	position: fixed;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 13px;
	color: #ffffff;
	text-align: center;
	z-index: 999;		
}
div.fixed_button_screenside_1 {
	top: calc(50% - 140px);
}
div.fixed_button_screenside_left {
	left: 0px;	
	-webkit-border-top-right-radius: 10px;
	-webkit-border-bottom-right-radius: 10px;
	-moz-border-radius-topright: 10px;
	-moz-border-radius-bottomright: 10px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	margin: 0px 0px 0px 0px;
	padding: 10px 10px 10px 10px;
}
div.fixed_button_screenside_right {
	right: 0px;	
	-webkit-border-top-left-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	margin: 0px 0px 0px 0px;
	padding: 10px 10px 10px 10px;
}
div.fixed_button_screenside a, 
div.fixed_button_screenside a:link, 
div.fixed_button_screenside a:visited {
	display: inline-block;
	color: #ffffff;
	text-decoration: none;
}
div.fixed_button_screenside div.fixed_button_screenside_icon {
	font-size: 26px;
}



/* FEATURED CONTAINERS */
div.featured_services_wrapper {
	background: #f8f8f8;
	margin: 0px 0px 0px 0px;
	padding: 100px 0px 140px 0px;
}
@media only screen and (max-width: 480px) {

	div.featured_services_wrapper {
		padding: 60px 0px 60px 0px;
	}
	
}



/* FEATURED CONTAINERS H1 HEADLINES IN CONTENT */





/* ONLINE APPOINTMENT BADGE */
div.online_appointment_badge_round {
	width: 140px;
	height: 140px;
	position: fixed;
	left: -10px;
	top: calc(50% - 140px);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	color: #ffffff;
	z-index: 99;	
}
div.online_appointment_badge_round:hover:after {
	display: none;
}
div.online_appointment_badge_round::after {
	width: 140px;
	height: 140px;
	box-sizing: border-box;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	border: 10px solid #34a8d9;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-animation-duration: 2.0s;
	animation-duration: 2.0s;
	-webkit-animation-name: online_appointment_badge_round_pulse_border;
	animation-name: online_appointment_badge_round_pulse_border;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}
@-webkit-keyframes online_appointment_badge_round_pulse_border {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	80% {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}
}
@keyframes online_appointment_badge_round_pulse_border {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	80% {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}
}
@media only screen and (max-width: 961px) {

	div.online_appointment_badge_round {
		display: none;
	}
	
}
div.online_appointment_badge_round_inner {
	width: 100%;
	height: 100%;
	position: relative;
}
div.online_appointment_badge_round_wording {
	background: #34a8d9;
	width: 100%;
	height: 100%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	transition: all 0.33s ease-in-out;
	-moz-transition: all 0.33s ease-in-out;
	-o-transition: all 0.33s ease-in-out;
	-webkit-transition: all 0.33s ease-in-out;
}
div.online_appointment_badge_round:hover div.online_appointment_badge_round_wording {
	background: #1783B3;	
}
div.online_appointment_badge_round_wording a,
div.online_appointment_badge_round_wording a:link,
div.online_appointment_badge_round_wording a:visited {
	width: 100%;
	height: 100%;
	text-align: center;
	font: normal 18px/26px 'Gilroy-Medium','Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
	font-weight: 300;
	color: #ffffff;
	text-decoration: none;
	display: inline-block;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	position: absolute;
	margin: 0px 0px 0px 0px;
	padding: 25px 0px 0px 0px;
}
div.online_appointment_badge_round_en div.online_appointment_badge_round_wording a,
div.online_appointment_badge_round_en div.online_appointment_badge_round_wording a:link,
div.online_appointment_badge_round_en div.online_appointment_badge_round_wording a:visited {
	padding: 30px 0px 0px 0px;
}
div.online_appointment_badge_new_label {
	background: #ffffff;
	font: normal 10px/10px Arial,Helvetica;
	color: #242424;
	letter-spacing: 0px;
	text-transform: uppercase;
	text-decoration: none;
	padding: 3px 5px 4px 5px;
	margin: 20px 0px 0px 115px;
	position: absolute;
	z-index: 99;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	transition: all 0.33s ease-in-out;
	-moz-transition: all 0.33s ease-in-out;
	-o-transition: all 0.33s ease-in-out;
	-webkit-transition: all 0.33s ease-in-out;
}
div.online_appointment_badge_round:hover div.online_appointment_badge_new_label {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	-moz-opacity: 0.0;
	-khtml-opacity: 0.0;
	opacity: 0.0;
}
div.online_appointment_badge_round strong {
	font-weight: 500;
}



/* ONLINE APPOINTMENT BOOKING MOBILE */
div.online_appointment_button_mobile {
	position: fixed;
	right: 0px;
	top: 200px;
	cursor: pointer;
	z-index: 9999;
	display: none;
	transition: all 0.33s ease-in-out;
	-moz-transition: all 0.33s ease-in-out;
	-o-transition: all 0.33s ease-in-out;
	-webkit-transition: all 0.33s ease-in-out;
}
@media only screen and (max-width: 961px) {

	div.online_appointment_button_mobile {
		display: none;
	}
	
}
div.online_appointment_button_mobile a,
div.online_appointment_button_mobile a:link,
div.online_appointment_button_mobile a:visited {
	font: 400 11px/11px 'Gilroy-Medium','Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
	text-transform: uppercase;
	color: #ffffff;
	text-decoration: none;
}
div.online_appointment_button_mobile div.online_appointment_button_mobile_wording {
	background: #34a8d9;
	margin: 0px 0px 0px 0px;
	padding: 2px 10px 4px 6px;
	position: relative;
	transition: all 0.33s ease-in-out;
	-moz-transition: all 0.33s ease-in-out;
	-o-transition: all 0.33s ease-in-out;
	-webkit-transition: all 0.33s ease-in-out;
}
div.online_appointment_button_mobile div.online_appointment_button_mobile_wording:hover {
	background: #34a8d9;
}
div.online_appointment_button_mobile_new_label {
	background: #ffffff;
	position: absolute;
	font: normal 10px/10px Arial,Helvetica;
	color: #242424;
	letter-spacing: 0px;
	text-transform: uppercase;
	text-decoration: none;
	padding: 2px 10px 4px 10px;
	margin: -16px 0px 0px -12px;
	z-index: 99;
	transition: all 0.33s ease-in-out;
	-moz-transition: all 0.33s ease-in-out;
	-o-transition: all 0.33s ease-in-out;
	-webkit-transition: all 0.33s ease-in-out;
}
div.online_appointment_button_mobile:hover div.online_appointment_button_mobile_new_label {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	-moz-opacity: 0.0;
	-khtml-opacity: 0.0;
	opacity: 0.0;
}

.flex {
	display: flex;
}
.flex.reverse {
	flex-direction: row-reverse;
}
@media only screen and (max-width: 991px) {
	.flex {
		display: block;
	}
}

div.location_circle_wrapper {
	display: inline-block;
	position: relative;
	width: 100%;
	padding-top: 100%;
	max-width: 100px;
	padding-top: 100px;
	top: 50%;
	left: 45px;
	transform: translateY(-50%);
}
div.location_circle {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-width: 100px;
	max-height: 100px;
	background-color: var(--ci_color_brown);
  	border-radius: 50%;
}
div.location_circle::after {
	content: '';
	display: block;
	position: absolute;
	z-index: 2;
	top: 10px;
	left: 10px;
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	max-width: 80px;
	max-height: 80px;
	background-color: var(--ci_color_white);
	border-radius: 50%;
}
div.location_circle_text {
	display: block;
	position: absolute;
	z-index: 3;
	top: 50%;
	left: calc(50% - 45px);
	transform: translate(-50%, -50%);
	font: italic 60px/60px 'Noto Serif','Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
	font-weight: 400;
	color: var(--ci_color_blue);
	background: var(--ci_color_white);
}
gmp-map {
	display: block;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}
@media only screen and (max-width: 991px) {
	div.location_circle_wrapper {
		top: auto;
		transform: none;
		margin: 0px auto 40px auto;
		padding-top: 66.667%;
	}
	div.location_circle {
		width: 66.667%;
		left: 50%;
		transform: translateX(-50%);
	}
	gmp-map {
		margin-top: 40px;
		top: auto;
		transform: none;
	}
	gmp-map:first-of-type {
		margin-bottom: 80px;
	}
}

div.location_text {
	display: block;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}
@media only screen and (max-width: 991px) {
	div.location_text {
		top: auto;
		transform: none;
	}
}

div.portrait {
	display: block;
	position: relative;
	float: right;
	width: 33.333%;
	margin: 0px 0px 40px 40px;
	--b: 40px;
	--c: #907332;
	--w: 200px;
	border-top: var(--b) solid #0000;
	border-right: var(--b) solid #0000;
	--_g: #0000 90deg,var(--c) 0;
	--_p: calc(33.333% + 40px) 66.667% border-box no-repeat;
	background: conic-gradient(from 180deg at top var(--b) right var(--b),var(--_g)) 100% 0 / var(--_p);
}
@media only screen and (max-width: 991px) {
	div.portrait {
		width: 50%;
	}
}
@media only screen and (max-width: 768px) {
	div.portrait {
		width: 100%;
		margin: 0px 0px 40px 0px;
	}
}

div.item-page div.row.no_padding div[class^="col-"]:first-child {
	padding-left: 0px;
	padding-right: 20px;
}
div.item-page div.row.no_padding div[class^="col-"]:last-child {
	padding-left: 20px;
	padding-right: 0px;
}
@media only screen and (max-width: 991px) {
	div.item-page div.row.no_padding div[class^="col-"]:first-child {
		padding-left: 0px;
		padding-right: 0px;
	}
	div.item-page div.row.no_padding div[class^="col-"]:last-child {
		padding-left: 0px;
		padding-right: 0px;
	}
}

/* GLOBAL IMAGE OVERLAY */
div.global_image_overlay_wrapper {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	position: relative;
}
div.global_image_overlay_wrapper a,
div.global_image_overlay_wrapper a:link,
div.global_image_overlay_wrapper a:visited {
	width: 100%;
	height: 100%;
	display: block;
}
div.global_image_overlay_wrapper span.image_overlay {
	background: rgba(255, 255, 255, 0.4);
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 999;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	-moz-opacity: 0.0;
	-khtml-opacity: 0.0;
	opacity: 0.0;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
div.global_image_overlay_wrapper span.image_overlay:hover {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	-moz-opacity: 1.0;
	-khtml-opacity: 1.0;
	opacity: 1.0;
}
div.global_image_overlay_wrapper span.image_overlay i {
	font-size: 36px;
	color: var(--ci_color_accent_1);
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
/* GLOBAL IMAGE OVERLAY ICON */
div.global_image_overlay_wrapper span.image_overlay span.image_overlay_icon {
	background: rgba(255, 255, 255, 0.0);
	width: 90px;
	height: 90px;
	position: absolute;
	left: calc(50% - 45px);
	top: calc(50% - 45px);
	margin: 0px 0px 0px 0px;
	padding: 15px 15px 15px 15px;
	border: 6px solid rgba(255, 255, 255, 0.6);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
div.global_image_overlay_wrapper span.image_overlay span.image_overlay_icon:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	border: 1px solid #ffffff;
	-webkit-border-radius: 50%;
	-khtml-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 100%;
	animation: animation_signal_1;
	animation-iteration-count: infinite;
	animation-duration: 3s;
	-webkit-animation: animation_signal_1;
	animation-duration: 0s;
	animation-iteration-count: 1;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-duration: 3s;
	z-index: -1;
	transform: scale(1);
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	-moz-transition: all 0.5;
	-o-transition: all 0.5;
	-webkit-transition: all 0.5;
	-ms-transition: all 0.5;
	transition: all 0.5;
}
div.global_image_overlay_wrapper span.image_overlay span.image_overlay_icon:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	border: 1px solid #ffffff;
	-webkit-border-radius: 100%;
	-khtml-border-radius: 100%;
	-moz-border-radius: 100%;
	-ms-border-radius: 100%;
	-o-border-radius: 100%;
	border-radius: 100%;
	animation: animation_signal_2;
	animation-iteration-count: infinite;
	animation-duration: 3s;
	-webkit-animation: animation_signal_2;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-duration: 3s;
	z-index: -1;
	transform: scale(1);
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	-moz-transition: all 0.5;
	-o-transition: all 0.5;
	-webkit-transition: all 0.5;
	-ms-transition: all 0.5;
	transition: all 0.5;
}
@keyframes animation_signal_1 {
	0% {
		opacity: 0.8;
		transform: scale(0.9);
		-moz-transform: scale(0.9);
		-ms-transform: scale(0.9);
		-o-transform: scale(0.9);
		-webkit-transform: scale(0.9);
	}
	to {
		opacity: 0;
		transform: scale(1.5);
		-moz-transform: scale(1.5);
		-ms-transform: scale(1.5);
		-o-transform: scale(1.5);
		-webkit-transform: scale(1.5);
	}
}
@-webkit-keyframes animation_signal_1 {
	0% {
		opacity: 0.9;
		transform: scale(0.9);
		-moz-transform: scale(0.9);
		-ms-transform: scale(0.9);
		-o-transform: scale(0.9);
		-webkit-transform: scale(0.9);
	}
	to {
		opacity: 0;
		transform:scale(1.5);
		-moz-transform:scale(1.5);
		-ms-transform:scale(1.5);
		-o-transform:scale(1.5);
		-webkit-transform:scale(1.5);
	}
}
@keyframes animation_signal_2 {
	0% {
		transform: scale(0.9);
		-moz-transform: scale(0.9);
		-webkit-transform: scale(0.9);
		-ms-transform: scale(0.9);
		-o-transform: scale(0.9);
	}
	to {
		opacity: 0;  
		transform: scale(1.9);
		-moz-transform: scale(1.9);
		-webkit-transform: scale(1.9);
		-ms-transform: scale(1.9);
		-o-transform: scale(1.9);
	}
}
@-webkit-keyframes animation_signal_2 {
	0% {
		transform: scale(0.9);
		-moz-transform: scale(0.9);
		-webkit-transform: scale(0.9);
		-ms-transform: scale(0.9);
		-o-transform: scale(0.9);
	}
	to {
		opacity: 0;
		transform: scale(1.9);
		-moz-transform: scale(1.9);
		-webkit-transform: scale(1.9);
		-ms-transform: scale(1.9);
		-o-transform: scale(1.9);
	}
}


div.component div.kochkurse_intro {
	display: block;
	position: relative;
	width: 100%;
	text-align: center;
}
div.component div.kochkurse_intro h2 {
	font-style: normal;
	color: var(--ci_color_white);
	padding: 0px;
	margin: 0px;
}

div.component div.kochkurse_list {
	display: block;
	position: relative;
	width: 100%;
	text-align: center;
}
div.component div.kochkurse_list_inner {
	display: block;
	position: relative;
	width: 80%;
	margin: 0px auto;
	text-align: left;
}
div.component div.kochkurse_list ul {
	columns: 2;
	-webkit-columns: 2;
	-moz-columns: 2;
}


div.component div.kochkurse_map {
	display: block;
	position: relative;
	width: 100%;
}
div.component div.kochkurse_map a {
	display: block;
	position: relative;
}
div.component div.kochkurse_map a:hover::before {
	content: none !important;
}


div.component div.kochkurse_image {
	display: block;
	position: relative;
	width: 100%;
}
div.component div.kochkurse_image img {
	margin: 0px auto;
}


div.component div.dates table {
	width: 100%;
	border-collapse: collapse;
}
div.component div.dates table tr {
	width: 100%;
}
div.component div.dates table tr td {
	width: 50%;
	padding: 20px;
	border: 2px solid #2e2a2b;
	background: var(--ci_color_white);
	color: #2e2a2b;
}


div.component div.kochkurse_map_header {
	display: block;
	position: relative;
	width: 100%;
	text-align: center;
	margin-bottom: 40px;
}

div.component div.kochkurse_map {
	display: block;
	position: relative;
	width: 100%;
}
div.component div.kochkurse_map a {
	display: inline-block;
	left: 50%;
	transform: translateX(-50%);
}