/* roboto-300 - latin */
@font-face {
    font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/roboto-v18-latin-300.eot'); /* IE9 Compat Modes */
  src: local('Roboto Light'), local('Roboto-Light'),
       url('../fonts/roboto-v18-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v18-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v18-latin-300.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* roboto-regular - latin */
@font-face {
    font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v18-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Roboto'), local('Roboto-Regular'),
       url('../fonts/roboto-v18-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v18-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v18-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}

/*---- Variablen festlegen START -----------------------------*/

:root {
    --pagewidth: 1280px;
}

.show-phone, 
.tooltip,
input.infoField {
	display: none;
}

a,
nav,
#nav-toggle span.nav-toggle-line,
nav ul.menu li .subnav-toggle:before,
div.subnav {
    -moz-transition-property: all;
    -moz-transition-duration: 0.4s;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0.4s;
    -o-transition-property: all;
    -o-transition-duration: 0.4s;
    transition-property: all;
    transition-duration: 0.4s;
	transition-timing-function: ease-in-out;
    transition-delay: 0.0s;
}

/*---- Variablen festlegen ENDE -----------------------------*/

html, body {
	padding: 0;
	margin: 0;
	font-size: 17px;
	line-height: 25px;
	font-weight: 300;
	color: var(--grey-4);
	-webkit-text-size-adjust: none;
	
    width: 100%;
    height: 100%;
}

body {
    background-color: var(--color-1-sub);
}

body.noscroll {
    position: relative;
    overflow: hidden !important;
    height: auto;
}

html, body, a, p, blockquote, h1, h2, h3, ul, li, dl, dt, dd, input, textarea, button {
    font-family: 'Roboto', sans-serif;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
}

html, body, a, p, blockquote, h1, h2, h3, h4, ul, li, dl, dt, dd, input, textarea, button {
    font-family: 'Roboto', 'Helvetica', sans-serif;
    -webkit-text-size-adjust: none;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

h1, h2, h3, h4, p, blockquote, ul, li, img, dl, dt, dd, form, fieldset {
	position: relative;
	width: 100%;
	float: left;
	clear: left;
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

a, .button {
    -ms-hyphens: none;
    -moz-hyphens: none;
    -webkit-hyphens: none;
    hyphens: none;
}

/* -- Systemmitteilung ------------------------------------------------ */

#system-message-container {
    display: block;
    float: left;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 3000;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

#system-message-container > div {
    position: relative;
    display: block;
    float: right;
    clear: none;
    background-color: var(--color-2);
    color: #fff;
    padding: 14px 45px 15px 15px;
    margin: 20px;
    width: auto;
    max-width: calc(100% - 40px);
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
    font-size: 0.9em;
    line-height: 1.2em;
    border-radius: 10px;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.6);
    -moz-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.6);
    box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.6); 
}

#system-message-container > div.alert-error {
    background-color: var(--error-1);
}

#system-message-container > div .close,
#system-message-container > div .alert-heading {
    display: none;
}

#system-message-container > div:after {
    content: "";
    position: absolute;
    right: 10px;
    top: 12px;
    display: block;
    float: left;
    width: 20px;
    height: 20px;
    padding: 0;
    background-image: url('data:image/svg+xml;utf8,<svg fill="rgba(255,255,255,0.3)" width="20px" height="20px" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 300 300"><path d="M178.28,150l55.86-55.86a20,20,0,0,0-28.28-28.28L150,121.72,94.14,65.86A20,20,0,0,0,65.86,94.14L121.72,150,65.86,205.86a20,20,0,1,0,28.28,28.28L150,178.28l55.86,55.86a20,20,0,0,0,28.28-28.28Z"/></svg>');
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
}

/* -- Cookie Hinweis ------------------------------------------------ */

#cookie {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 900;
    float: left;
    clear: left;
    width: 100%;
    height: auto;
    color: #fff;
}

#cookie:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--grey-4);
    opacity: 0.95;
}

#cookie .item {
    padding-top: 20px;
    padding-bottom: 5px;
}

#cookie a {
    color: var(--color-1);
    -moz-transition-property: all;
    -moz-transition-duration: 0.4s;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0.4s;
    -o-transition-property: all;
    -o-transition-duration: 0.4s;
    transition-property: all;
    transition-duration: 0.4s;
	transition-timing-function: ease-in-out;
    transition-delay: 0.0s;
}

#cookie a:hover {
    opacity: 0.5;
}

/* -- Ebenen ------------------------------------------------ */

div.wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
	padding: 0;
	width: 100%;
	margin: 0;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

div.wrapper-inner {
    position: relative;
    max-width: 1200px;
    width: 100%;
    float: left;
    clear: none;
    padding: 0;
    margin: 0;
    background-color: #fff;
    
    -webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0.5);
    -moz-box-shadow: 0 0 15px 0 rgba(0,0,0,0.5);
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.5);
}

.offline div.wrapper,
.error div.wrapper {
    align-items: center;
    align-content: center;
    min-height: 100%;
}

.offline div.wrapper-inner,
.error div.wrapper-inner {
    max-width: 600px;
}

header,
main,
section,
footer {
    position: relative;
    float: left;
    clear: left;
    width: 100%;
    height: auto;
    padding: 0 60px 0 60px;
    margin: 0;
    background-color: #fff;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

header {
    height: 100px;
    background-color: var(--grey-1);
    border-bottom: 2px var(--grey-2) solid;
}

section.top {
    padding: 0;
}

main {
    padding-top: 60px;
    padding-bottom: 100px;
}

.offline main,
.error main {
    padding: 40px;
}

section.bottom-1 {
    padding-top: 20px;
    background-color: var(--grey-4);
    color: var(--grey-1) !important;
}

section.bottom-1 h3 {
    margin-bottom: 30px;
}

section.bottom-2 {
    padding: 0;
}

footer,
section.note {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: var(--grey-4);
    color: var(--grey-3) !important;
}

footer {
    background-color: var(--color-2);
}

section.note {
    background-color: var(--color-2);
    color: var(--grey-3) !important;
}

.cookie footer {
    padding-bottom: 130px;
}

section.note {
    padding-top: 10px;
    padding-bottom: 0;
}

footer h3,
section.note h3 {
    color: #fff !important;
}

footer .button,
section.note .button,
#cookie .button {
    border: 2px solid var(--color-1);
    color: var(--color-1);
}

footer .button:hover,
section.note .button:hover,
#cookie .button:hover {
    color: var(--color-1-middle) !important;
    border: 2px solid var(--color-1-middle) !important;
}

/* -- GoogleMaps Karten ------------------------------------------------ */

div.maps-wrapper {
    position: relative;
    overflow: visible;
    float: left;
    clear: left;
    width: 100%;
    padding: 0 0 40% 0;
    margin: 0;
    overflow: hidden;
}

section.bottom-2 div.maps-wrapper {
    padding-bottom: 35%;
}

#maps {
    position: absolute;
    left: 0;
    top: 0;
    float: left;
    clear: left;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden;
}

#goebbelsMapLink {
    position: absolute;
    right: 0;
    top: 0;
    direction: ltr; 
    overflow: hidden; 
    text-align: left; 
    color: rgb(0, 0, 0); 
    font-family: Roboto, Arial, sans-serif; 
    -webkit-user-select: none; 
    font-size: 11px; 
    background-color: rgb(255, 255, 255); 
    padding: 8px; 
    margin: 10px;
    border-radius: 2px; 
    -webkit-background-clip: padding-box; 
    background-clip: padding-box; 
    -webkit-box-shadow: rgba(0, 0, 0, 0.298039) 0px 1px 4px -1px; 
    box-shadow: rgba(0, 0, 0, 0.298039) 0px 1px 4px -1px; 
    font-weight: 500;
}

.gm-style-iw * {
    display: block;
    width: auto;
}

.gm-style-iw h4, .gm-style-iw p {
    margin: 0;
    padding: 0;
}

.gm-style-iw a {
    color: var(--color-2);
}

/* -- Ausrichtung ------------------------------------------------ */

.pull-center {
	text-align: center !important;
	display: inline-block !important;
}

.pull-left {
	text-align: left !important;
}

.pull-right {
	text-align: right !important;
	float: right !important;
}

/* -- Logo ------------------------------------------------ */

a.brand {
    position: relative;
    display: block;
    float: left;
    clear: none;
    margin: 0;
    padding: 0;
    height: 100%;
    width: auto;
}

.offline a.brand,
.error a.brand {
    top: -17px;
    left: -17px;
}

a.brand svg {
    display: block;
    float: left;
    clear: none;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 274px;
}

a.brand svg * {
    fill: var(--grey-4);
}

/* -- Spalten unter Weiten ------------------------------------------------ */


.width-20,
.width-30,
.width-40,
.width-50, 
.width-60,
.width-70,
.width-80 {
    float: left;
    clear: none;
    padding: 0;
    margin: 0;
    min-height: 5px;
    
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

.width-divider {
    padding: 0 10px 0 0;
}

.width-20 {
    width: 20%;
}

.width-30 {
    width: 30%;
}

.width-40 {
    width: 40%;
}

.width-50 {
    width: 50%;
}

.width-60 {
    width: 60%;
}

.width-70 {
    width: 70%;
}

.width-80 {
    width: 80%;
}

.col-left {
    padding: 0 20px 0 0;
}

.col-right {
    padding: 0 0 0 20px;
}

/* -- Tags ------------------------------------------------ */

h1, h2, h3 {
	position: relative;
	width: 100%;
	float: left;
	clear: left;
	padding: 0;
	margin: 0 0 20px 0;
	font-weight: 300;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

h1 {
	font-size: 1.8em;
	line-height: 1.2em;
    margin: 0 0 60px 0;
}
.article > h1 {
	margin: 0 0 0 0 !important;
}

h2,
.home h1 {
    font-size: 1.3em;
	line-height: 1.2em;
    font-weight: 500;
}

.home h1 {
    font-weight: 300;
    margin: 0 0 40px 0;
}

h3 {
	font-size: 1.1em;
	line-height: 1.2em;
    font-weight: 500;
    margin: 0 0 10px 0;
}

p {
	float: left;
	clear: left;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 0 20px 0;
	width: 100%;
}

p.info_block {
    margin: 0 0 5px 0;
}

.article p.info_block {
    margin: -50px 0 40px 0;
}

p.info_block > span {
    display: inline-block;
    margin: 0 15px 0 0;
}

p > img,
p > a > img {
    float: left;
    clear: left;
}

strong, b {
	font-weight: 500;
}

blockquote {
	width: 100%;
	float: left;
	clear: left;
	padding: 0;
	margin: 0;
	font-size: 1.2em;
	line-height: 1.4em;
}

hr {
	float: left;
	clear: left;
	border: 0;
    background-color: var(--grey-1);
	margin: 40px 0 20px 0;
	padding: 0;
    height: 2px;
	width: 100%;
}

a {
	text-decoration: none;
	color: var(--color-2);
    font-weight: 400;
}

a.category {
    display: inline-block;
    float: none;
    clear: none;
    width: auto;
    margin: 0 3px 3px 0;
    padding: 5px 10px 5px 10px;
    cursor: pointer;
    color: #fff;
    background-color: var(--color-2-sub);
    
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
    
    -moz-transition-property: all;
    -moz-transition-duration: 0.4s;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0.4s;
    -o-transition-property: all;
    -o-transition-duration: 0.4s;
    transition-property: all;
    transition-duration: 0.4s;
    transition-timing-function: ease-in-out;
    transition-delay: 0;  
}

a.category:hover,
a.category.active {
    color: #fff;
    background-color: var(--color-2);
}

a.btn-share {
    float: left;
    clear: left;
    margin: 0;
}

a.btn-share svg {
    display: inline-block;
    float: none;
    clear: none;
    margin: 0 0 -4px 0;
    width: 20px;
    height: 20px;
}

a.btn-share svg * {
    fill: var(--color-2);
}

a.btn-share:hover svg * {
    fill: var(--color-2-sub);
}

footer a,
section.note a {
    color: var(--color-1);
}

a:hover {
	text-decoration: none;
	color: var(--color-2-sub);
}

footer a:hover,
section.note a:hover {
	color: var(--color-1-sub);
}

ul {
	width: 100%;
	float: left;
	clear: none;
	padding: 0 0 0 20px;
	margin: 0 0 20px 0;
    list-style-type: disc;
    list-style-position: outside;
	display: block;
    
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

ul li {
	float: left;
    clear: none;
	width: 100%;
	margin: 0 0 10px 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

dl {
    float: left;
    clear: left;
    width: 100%;
    padding: 0;
    margin: 0 0 20px 0;
}

dl dt, 
dl dd {
    float: left;
    clear: none;
    padding: 0 0 3px 0;
    margin: 0;
    width: 100%;
}

dl dd {
    padding: 0 0 10px 0;
}

div.table {
    display: table;
    padding: 0;
    margin: 0;
    width: 100%;
}

div.table > div {
    display: table-cell;
    padding: 5px 10px 5px 10px;
    margin: 0;
    vertical-align: top;
    width: 25%;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
    
    background-color: var(--grey-2);
}

div.table div:first-child {
    text-align: right; 
    background-color: var(--grey-1);
}

div.table > div.table-cell p,
div.table > div.table-cell h3 {
    margin: 0 0 5px 0;
}´

.showmobil { 
    display: none !important;
}

.small {
    color: #9c9c9c;
	font-size: 0.9em;
	line-height: 1.3em;
}

.credits {
    display: block;
    width: 100%;
    float: left;
    clear: none;
    margin-top: 10px;
}

.big {
    font-size: 1.2em;
    line-height: 1.3em;
    font-weight: 500;
}

.invalid {
	color: var(--error-1);
}

/*-----MSlider: -----------------------------------------------------------------------------*/

div.sliders,
div.slide {
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    padding: 0 0 56.25% 0;
    margin: 0;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

div.sliders {
    z-index: 100;
}

div.slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    left: 0;
    top: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

div.slide:first-child {
    position: relative;
    display: block;
    float: left;
}

ul.slider_tabs {
    position: absolute;
    top: calc(100% - 40px);
    left: 0;
    z-index: 101;
    float: left;
    clear: left;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    text-align: center;
}

ul.slider_tabs > li {
    display: inline-block;
    float: none;
    clear: none;
    width: auto;
    margin: 0;
	padding: 0 5px 0 5px;
    border: none;
}

ul.slider_tabs > li > a {
    float: left;
    clear: left;
    padding: 0;
    margin: 0;
    width: 11px;
	height: 11px;
	border-radius: 100%;
	background-color: rgba(255,255,255,0);
    border: 2px solid rgba(255,255,255,0.5);
	font-size: 1px;
	line-height: 1px;
	text-indent: -999px;
    -moz-transition-property: all;
    -moz-transition-duration: 0.5s;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0.5s;
    -o-transition-property: all;
    -o-transition-duration: 0.5s;
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: ease-in-out;
    transition-delay: 0;  
	cursor: pointer;
}

ul.slider_tabs > li.slider_here > a,
ul.slider_tabs > li > a:hover {
	background-color: rgba(255,255,255,0.8);
}

/*----- Main -----------------------------------------------------------------------------*/

div.items {
    position: relative;
    overflow: visible;
}

div.items,
div.category-desc {
	width: 100%;
	float: left;
	clear: none;
	padding: 0;
	margin: 0;
}

div.item {
    position: relative;
	width: 100%;
    height: auto;
	float: left;
	clear: none;
	margin: 0;
	padding: 20px;
	
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
    text-align: left;
}

.fancybox {
    display: block;
    float: left;
    clear: none;
    position: relative;
    max-width: 100%;
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

.fancybox.gallery {
    width: 25%;
    height: 0;
    padding-bottom: 20%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #fff;
}

.item.team .fancybox {
    margin-bottom: 20px;
}

.items.arzt > .item.team {
	width: 50%;
}

.fancybox img {
    float: left;
    padding: 0;
    margin: 0;
    display: block;
    z-index: 1;
}

.fancybox:before,
.fancybox:after {
    content: "" !important;
    display: block;
    float: left;
    clear: none;
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    cursor: pointer;
    
    -moz-transition-property: all;
    -moz-transition-duration: 0.6s;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0.6s;
    -o-transition-property: all;
    -o-transition-duration: 0.6s;
    transition-property: all;
    transition-duration: 0.6s;
}

.fancybox:before {
    top: 0;
    left: 0;
    background-color: var(--color-1);
    opacity: 0;
}

.fancybox:hover:before {
    top: 0;
    left: 0;
    background-color: var(--color-1);
    opacity: 0.7;
}
.fancybox:after {
    z-index: 3;
    right: 10px;
    bottom: 10px;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20"><path fill="rgb(255,255,255)" d="M18.869 19.162l-5.943-6.484c1.339-1.401 2.075-3.233 2.075-5.178 0-2.003-0.78-3.887-2.197-5.303s-3.3-2.197-5.303-2.197-3.887 0.78-5.303 2.197-2.197 3.3-2.197 5.303 0.78 3.887 2.197 5.303 3.3 2.197 5.303 2.197c1.726 0 3.362-0.579 4.688-1.645l5.943 6.483c0.099 0.108 0.233 0.162 0.369 0.162 0.121 0 0.242-0.043 0.338-0.131 0.204-0.187 0.217-0.503 0.031-0.706zM1 7.5c0-3.584 2.916-6.5 6.5-6.5s6.5 2.916 6.5 6.5-2.916 6.5-6.5 6.5-6.5-2.916-6.5-6.5z"></path></svg>');
    background-repeat: no-repeat;
    background-position: center center;
}

.fancybox:hover:after {
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
}

div.item.team p,
div.item.team ul {
    margin-bottom: 5px;
}

div.item.team ul li {
    margin-bottom: 3px;
}

div.item.noborder {
    padding: 0;
}

div.item.topbar {
    padding-bottom: 40px;
}

div.item a.item-link {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 500;
    float: left;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

div.item.span-full {
    width: 100% !important;
}

div.item.span-2 {
    width: 50% !important;
}

div.blog {
    position: relative;
    clear: left;
    float: left;
    width: 100%;
    overflow: hidden;
    height: auto;
    padding: 0;
    margin: 0;
    
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

div.blog div.news-image,
div.blog div.news-text {
    float: left;
    clear: none;
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

div.blog div.news-image {
    width: 33.333%;
    min-height: 10px;
    padding-right: 40px;
}

div.blog div.news-text {
    width: 66.666%;
}


.cols-2 div.item {
    width: 50%;
}

.cols-3 div.item {
    width: 33.333%;
}

div.item.span-full {
    width: 100%;
}

div.item img {
    display: inline-block;
	padding: 0;
    margin: 0;
	max-width: 100%;
}

div.icon {
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    padding: 0;
    margin: 10px 10px 25px 10px;
    border: 3px solid var(--color-1-middle);
    
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
    
    -moz-transition-property: all;
    -moz-transition-duration: 0.6s;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0.6s;
    -o-transition-property: all;
    -o-transition-duration: 0.6s;
    transition-property: all;
    transition-duration: 0.6s;
}

div.icon span.icon-inner {
    float: left;
    clear: left;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-color: var(--color-1); 
    
    -moz-transition-property: all;
    -moz-transition-duration: 0.6s;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0.6s;
    -o-transition-property: all;
    -o-transition-duration: 0.6s;
    transition-property: all;
    transition-duration: 0.6s;
    text-align: center;
    line-height: 100%;
}

div.icon span.icon-inner > img,
div.icon span.icon-inner > svg {
    display: inline-block;
    width: 60%;
    height: 60%;
    padding: 0;
    margin: 20% 0 0 0;
}

div.icon span.icon-inner svg * {
    fill: #fff;
}

/*----- Symbole / Icons START -----------------------------------------------------------------------------*/

span.icon {
    display: inline-block;
    position: relative;
    top: 2px;
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0 8px 0 0;
}

span.icon svg {
    display: block;
    float: left;
    clear: none;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

span.icon svg * {
    fill: var(--grey-4);
}

footer span.icon svg * {
    fill: #fff;
}

a span.icon svg * {
    fill: var(--color-1);
    -moz-transition-property: all;
    -moz-transition-duration: 0.4s;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0.4s;
    -o-transition-property: all;
    -o-transition-duration: 0.4s;
    transition-property: all;
    transition-duration: 0.4s;
	transition-timing-function: ease-in-out;
    transition-delay: 0.0s;
}

a:hover span.icon svg * {
    fill: var(--color-1-sub);
}

/* Alle externen Link mit http/https */
main a[href^=http] { 
    padding-right: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg fill="rgb(30, 43, 80)" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="16px" height="16px" viewBox="0 0 20 20"><path d="M10.682 12.998c-0.943 0-1.886-0.359-2.604-1.077-0.195-0.195-0.195-0.512 0-0.707s0.512-0.195 0.707 0c1.046 1.046 2.747 1.046 3.793 0l3.636-3.636c1.046-1.046 1.046-2.747 0-3.793s-2.747-1.046-3.793 0l-3.068 3.068c-0.195 0.195-0.512 0.195-0.707 0s-0.195-0.512 0-0.707l3.068-3.068c1.436-1.436 3.772-1.436 5.207 0s1.436 3.772 0 5.207l-3.636 3.636c-0.718 0.718-1.661 1.077-2.604 1.077z"></path><path d="M4.682 18.998c-0.943 0-1.886-0.359-2.604-1.077-1.436-1.436-1.436-3.772 0-5.207l3.636-3.636c1.436-1.436 3.772-1.436 5.207 0 0.195 0.195 0.195 0.512 0 0.707s-0.512 0.195-0.707 0c-1.046-1.046-2.747-1.046-3.793 0l-3.636 3.636c-1.046 1.046-1.046 2.747 0 3.793s2.747 1.046 3.793 0l3.068-3.068c0.195-0.195 0.512-0.195 0.707 0s0.195 0.512 0 0.707l-3.068 3.068c-0.718 0.718-1.661 1.077-2.604 1.077z"></path></svg>');
    background-repeat: no-repeat;
    background-position: right center;
}

/* Links that don't start with "http" */
/*main a:not([href^=http]),*/
/*section.note a:not([href^=http]),*/
footer a:not([href^=http]) {
    white-space: nowrap;
}

main a:not([href^=http])::before,
section.note a:not([href^=http])::before,
footer a:not([href^=http])::before { 
    content: "› "; 
    font-weight: 500;
}

/* Links that contain a specific domain name */
a[href*=\.pdf],
a[href*=\.PDF]{
    padding-right: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg fill="rgb(30, 43, 80)" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="16px" height="16px" viewBox="0 0 20 20"><path d="M14.853 9.647c-0.195-0.195-0.512-0.195-0.707 0l-4.146 4.146v-11.293c0-0.276-0.224-0.5-0.5-0.5s-0.5 0.224-0.5 0.5v11.293l-4.146-4.146c-0.195-0.195-0.512-0.195-0.707 0s-0.195 0.512 0 0.707l5 5c0.098 0.098 0.226 0.146 0.354 0.146s0.256-0.049 0.354-0.147l5-5c0.195-0.195 0.195-0.512-0-0.707z"></path><path d="M17.5 19h-16c-0.827 0-1.5-0.673-1.5-1.5v-2c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v2c0 0.276 0.224 0.5 0.5 0.5h16c0.276 0 0.5-0.224 0.5-0.5v-2c0-0.276 0.224-0.5 0.5-0.5s0.5 0.224 0.5 0.5v2c0 0.827-0.673 1.5-1.5 1.5z"></path></svg>');
    background-repeat: no-repeat;
    background-position: right center;
}

a[href*=\.pdf]::before,
a[href*=\.PDF]::before,
a[href^=tel]::before,
a[href^=mailto]::before,
a.button:not([href^=http])::before,
#footernav a:not([href^=http])::before {
    display: none !important;
}

/*----- Symbole / Icons ENDE -----------------------------------------------------------------------------*/

/*----- Beitragsnavigation / Share Button: -----------------------------------------------------------------------------*/

.nav-button {
    float: left;
    clear: none;
    padding: 0;
    margin: 0;
    width: auto;
}

.nav-button.back {
    margin-right: 13px;
    padding-right: 10px;
    border-right: 1px solid var(--grey-2);
}

/*----- Seitenzahlen: -----------------------------------------------------------------------------*/

div.pager {
    margin: 0;
    text-align: center;
}

div.pager > .page {
    display: inline-block;
    float: none;
}

div.pager > .page.next {
    float: right;
}

div.pager > .page.previous {
    float: left;
}


/*----- Formulare: -----------------------------------------------------------------------------*/

form, fieldset {
	border: none;
	background-color: inherit;
}

label {
    display: inline-block;
    width: auto;
    float: none;
    clear: none;
    padding: 5px 0 0 0;
    margin: 0;
    font-weight: 400;
    
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

label.invalid {
    color: var(--error-1);
}

span.star {
    color: inherit;
    opacity: 0.5;
}

span.publish_up {
    color: var(--grey-3);
    font-weight: 500; 
}

h1 > span.publish_up {
    font-weight: inherit; 
}

input[type="radio"], 
input[type="checkbox"],
input.checkbox {
    display: inline-block !important;
    margin: 0 8px 0 2px;
    float: none !important;
}

input[type="checkbox"],
input[type="radio"] {
    position:absolute; 
    z-index:-1000; 
    left:-1000px; 
    overflow: hidden; 
    clip: rect(0 0 0 0); 
    height:1px; 
    width:1px; 
    margin:-1px; 
    padding:0; 
    border:0;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
    display: inline-block !important;
    padding: 0 15px 0 0;
    background-color: inherit;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
    margin: 3px 0 0 0;
    width: auto;
    min-height: inherit;
    line-height: 30px;
    border-radius: 0;
    text-align: left;
}

input[type="checkbox"] + label.invalid,
input[type="radio"] + label.invalid,
fieldset.invalid > label {
    color: var(--error-1);
}

input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
    content: "";
    position: relative;
    top: 4px;
    display: inline-block;
    width: 20px !important;
    height: 20px !important;
    border: 2px solid var(--grey-2);
    border-radius: 20px;
    margin: 5px 10px 0 0;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
    text-align: center;
    color: var(--grey-4);
    cursor: pointer;
}

input[type="checkbox"] + label:hover:before,
input[type="radio"] + label:hover:before {
    border: 5px solid var(--grey-2);
}

input[type="checkbox"]:checked + label:before,
input[type="radio"]:checked + label:before {
    border: 5px solid var(--grey-2);
    background-color: var(--grey-4);
}

input[type="checkbox"] + label.invalid:before,
input[type="radio"] + label.invalid:before,
fieldset.invalid > label:before {
   border: 2px solid var(--error-2);
}

input.inputbox, 
textarea.inputbox,
select.inputbox {
    width: 100%;
    float: left;
    clear: none;
    padding: 5px 10px 5px 10px;
    margin: 0;
    color: var(--grey-4);
    font-size: 1em;
    line-height: 25px;
    font-weight: inherit;
    border: 0;
    border-radius: 3px;
    background-color: var(--grey-1);
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
    outline: none;
    
    -webkit-box-shadow: inset 0px 1px 2px 0px rgba(222,222,222,1);
    -moz-box-shadow: inset 0px 1px 2px 0px rgba(222,222,222,1);
    box-shadow: inset 0px 1px 2px 0px rgba(222,222,222,1);
}

select.inputbox {
    width: auto;
    height: 35px;
    border: 1px solid var(--grey-2);
}

input.repeat {
	display: none !important;
}

textarea.inputbox {
	height: 190px;
}

input.inputbox.invalid, 
textarea.inputbox.invalid,
select.inputbox.invalid {
    color: var(--error-1);
    background-color: var(--error-2);
}

input.button, 
button.button,
.button {
    display: inline-block;
    width: auto;
    float: none;
    clear: none;
    padding: 5px 10px 5px 10px;
    margin: 0;
    color: var(--color-2);
    font-size: 1em;
    line-height: 28px;
    font-weight: 500;
    border: 2px solid var(--color-2);
    border-radius: 4px;
    background-color: rgba(255,255,255,0);
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
    outline: none;
    cursor: pointer;
    
    -moz-transition-property: all;
    -moz-transition-duration: 0.5s;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0.5s;
    -o-transition-property: all;
    -o-transition-duration: 0.5s;
    transition-property: all;
    transition-duration: 0.5s;
}

input.button:hover, 
button.button:hover,
.button:hover {
    color: var(--color-2-sub);
    border: 2px solid var(--color-2-sub); 
}

div.input-append {
    float: left;
    clear: left;
    width: 100%;
    position: relative;
}

div.input-append > button { 
    position: absolute;
    right: 0;
    top: 0;
    display: block;
	border-radius: 0;
	padding: 0 !important;
    border: 0;
	background-color: var(--grey-4);
    color: var(--grey-1);
    font-size: 1.2em;
	text-decoration: none;
	text-align: center;
	margin: 0;
	cursor: pointer;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	width: auto;
	outline: none;
    height: 100%;
    width: 40px;
    
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
}

div.input-append > input { 
    padding-right: 60px;
}

/*-----Accordion: --------------------------------------------------------------------*/

.dropdown-toggle {
    float: left;
    clear: left;
    width: 100%;
    position: relative;
    border-bottom: 2px solid var(--grey-1);
    padding: 10px 50px 10px 0;
    margin: 0 0 20px 0;
    cursor: pointer;
    outline: 0; 
    color: var(--color-2);
    
    -moz-transition-property: color;
    -moz-transition-duration: 0.4s;
    -webkit-transition-property: color;
    -webkit-transition-duration: 0.4s;
    -o-transition-property: color;
    -o-transition-duration: 0.4s;
    transition-property: color;
    transition-duration: 0.4s;
    transition-timing-function: ease-in-out;
    transition-delay: 0;
    
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

.dropdown-toggle.no-plus {
	cursor: default !important;
}

.dropdown-toggle.vita {
    border-bottom: 0;
    cursor: pointer;
    color: var(--color-2);  
    text-align: right;
    min-height: 30px;
    padding: 0 3px 0 3px;
    margin: 0 0 10px 0;
}

.dropdown-toggle:before {
    position: absolute;
    top: 0;
    right: 0;
    content: "+";
    font-size: 2.2em;
    font-weight: 300;
}

.dropdown-toggle.no-plus:before {
	content: "" !important;
}

.dropdown-toggle.vita:before {
    font-size: 2.5em;
}

.dropdown-toggle.active:before {
    content: "-";
    font-size: 4.0em;
}

.dropdown-toggle:hover {
     color: var(--color-2-sub);
}

.dropdown-inner {
    float: left;
    clear: left;
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    height: auto;
    max-height: 0;
    opacity: 0;

    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
    
    -moz-transition-property: all;
    -moz-transition-duration: 0.4s;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0.4s;
    -o-transition-property: all;
    -o-transition-duration: 0.4s;
    transition-property: all;
    transition-duration: 0.4s;
    transition-timing-function: ease-in-out;
    transition-delay: 0;  
}

.dropdown-inner.active {
    max-height: 10000px;
    opacity: 1;
}


/* --- Subnav START ------------------------------------------------- */


/* --- Subnav ENDE ------------------------------------------------- */

/*---- Hauptmenü + Fussmenü START ----------------------------*/

nav {
    position: relative;
    z-index: 999;
    float: right;
    clear: none;
    width: auto;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: visible;
}

nav ul.menu,
footer ul.menu {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    align-content: stretch;
    float: left;
    clear: left;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

nav ul.menu {
    padding-top: 15px;
}

footer ul.menu {
    align-items: flex-start;
    align-content: flex-start;
}

nav ul.menu li {
    display: block;
    float: left;
    clear: none;
    width: auto;
    padding: 0;
    margin: 0;
    height: auto;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

footer ul.menu li {
    height: auto;
    width: auto;
}

nav ul.menu > li > a,
nav ul.menu > li > span {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    position: relative;
    float: left;
    clear: left;
    margin: 0 10px 0 10px;
    padding: 25px 2px 25px 2px;
    width: auto;
    font-size: 1em;
    line-height: 1.3em;
    color: var(--color-2);
    height: 100%;
    text-align: center;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
    cursor: pointer;
}

nav ul.menu > li.deeper > a,
nav ul.menu > li.deeper > span {
    padding-right: 16px;
}

footer ul.menu li > a,
footer ul.menu li > span {
    display: block;
    position: relative;
    float: left;
    clear: left;
    margin: 0 0 3px 0;
    padding: 4px 10px 4px 10px;
    font-size: 0.9em;
    width: auto;
    color: var(--grey-3);
    height: auto;
    text-align: left;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
    cursor: pointer;
}

nav ul.menu > li > a:after,
nav ul.menu > li > span:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(255,255,255,0);
    padding: 0;
    margin: 0;
}

nav ul.menu li:hover > a,
nav ul.menu li.current > a,
nav ul.menu li.active > a,
nav ul.menu li:hover > span,
nav ul.menu li.current > span,
nav ul.menu li.active > span{
    color: var(--color-2);
}

nav ul.menu li:hover > a:after,
nav ul.menu li.active > a:after,
nav ul.menu li.active > span:after,
nav ul.menu li.active > span:after {
    background-color: var(--color-2);
}

footer ul.menu li:hover > a,
footer ul.menu li.active > a,
footer ul.menu li:hover > span,
footer ul.menu li.active > span {
    color: #fff;
}

nav ul.menu > li ul {
    margin: 0;
    padding-left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

nav ul.menu > li ul li {
    width: 100%;
    padding: 0;
    font-size: 1em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

nav ul.menu > li ul li + li {
    margin-top: 10px;
}

nav ul.menu > li ul li:last-child {
    padding-bottom: 2px;
    margin-bottom: 0;
    border-bottom: 0;
}

nav ul.menu > li ul li a,
nav ul.menu > li ul li span {
    color: #fff;
    text-align: center;
}

nav ul.menu > li ul li:hover a,
nav ul.menu > li ul li:hover span,
nav ul.menu > li ul li.active a,
nav ul.menu > li ul li.active span {
    color: rgba(255, 255, 255, 0.5);
}

nav ul.menu li .subnav-toggle {
    position: absolute; 
    top: 0;
    right: 10px;
    padding: 0;
    margin: 0;
    width: 16px;
    height: 100%;
    cursor: pointer;
}

nav ul.menu li .subnav-toggle:before {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: calc(50% - 5px);
    width: 0;
    height: 0;
    -webkit-transform:rotate(180deg);
    transform:rotate(180deg);
    border-style: solid;
    border-width: 0 5px 5px 5px;
    border-color: transparent transparent var(--grey-3) transparent;
}

nav ul.menu li.opened .subnav-toggle:before {
    -webkit-transform:rotate(360deg);
    transform:rotate(360deg);
}

div.subnav {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: absolute;
    z-index: 1000;
    right: -12px;
    top: calc(100% - 10px);
    overflow: hidden;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    height: auto;
    max-height: 0;
    min-width: 260px;    
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

div.subnav.opened {
    max-height: 600px;
}

div.subnav-inner {
    position: relative;
    display: block;
    float: left;
    clear: left;
    width: calc(100% - 20px);
    height: auto;
    padding: 10px;
    margin: 10px 15px 10px 15px;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
    
    background-color: var(--color-2);
    border-top: 2px solid var(--color-2);
    
    -webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.5);
}

div.subnav-inner:before {
    content: "";
    position: absolute;
    bottom: 100%;
    right: 38px;
    width: 0;
    height: 0;
    -webkit-transform:rotate(360deg);
    transform:rotate(360deg);
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent var(--color-2) transparent;
}


#nav-toggle {
    position: fixed;
    top: 25px;
    right: 60px;
    z-index: 900;
    float: left;
    clear: left;
	padding: 10px;
    margin: 0;
    width: 54px;
    height: 54px;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
    display: none;
    cursor: pointer;
    background-color: rgba(242, 242, 242, 0.6);
}

#nav-toggle span.nav-toggle-line {
    position: absolute;
    top: 50%;
    left: calc(50% - 17px);
    display: block;
    float: left;
    clear: left;
    padding: 0;
    margin: 0;
    width: 34px;
    height: 4px;
    background-color: var(--color-2);
}

#nav-toggle span.nav-toggle-line:nth-child(1) {
    top: calc(50% - 14px);
}

#nav-toggle span.nav-toggle-line:nth-child(2) {
    top: calc(50% - 6px);
}

#nav-toggle span.nav-toggle-line:nth-child(3) {
    top: calc(50% + 2px);
}

#nav-toggle span.nav-toggle-line:nth-child(4) {
    top: calc(50% + 10px);
}

#nav-toggle:hover span.nav-toggle-line {
    background-color: var(--color-2-sub); 
}

#nav-toggle.opened span.nav-toggle-line:nth-child(1),
#nav-toggle.opened span.nav-toggle-line:nth-child(4) {
    opacity: 0;
}

#nav-toggle.opened span.nav-toggle-line:nth-child(2),
#nav-toggle.opened span.nav-toggle-line:nth-child(3),
#nav-toggle.opened:hover span.nav-toggle-line:nth-child(2),
#nav-toggle.opened:hover span.nav-toggle-line:nth-child(3) {
    transform-origin: 50% 50%;
    top: calc(50% - 2px);
}

#nav-toggle.opened span.nav-toggle-line:nth-child(2) {
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#nav-toggle.opened span.nav-toggle-line:nth-child(3) {
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}  

/* Responsive Nav */

@media screen and (max-width: 1170px) {
    
	#nav-toggle {
        display: block; 
        z-index: 1001;
    }
    
    nav {
        position: fixed;
        overflow: hidden;
        overflow-y: scroll;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        min-width: calc(100%);
        max-height: 0;
        margin: 0 !important;
        padding: 0;
        background-color: var(--grey-1);
    }

    nav.opened {
        max-height: calc(100%);
    }
    
    nav ul.menu {
        display: block;
        width: 100%;
        height: auto;
        padding: 0 0 30px 0;
        margin: 110px 0 0 0;
        border-top: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        border-top: 2px solid #fff;
    }

    nav ul.menu li {
        width: 100%;
    }

    nav ul.menu li a,
    nav ul.menu li span {
        display: flex;
        justify-content: flex-start;
        margin: 0;
        padding: 15px 60px 15px 60px;
        width: 100%;
        text-align: left !important;
        color: var(--color-2) !important;
    }
    
    nav ul.menu > li > a,
    nav ul.menu > li > span {
        font-size: 1.2em;
    }

    nav ul.menu li.deeper a,
    nav ul.menu li.deeper span {
        padding-right: 100px;
    }

    nav ul.menu > li > a:after,
    nav ul.menu > li > span:after,
    nav ul.menu > li:hover > a:after,
    nav ul.menu > li:hover > span:after,
    nav ul.menu > li.active > a:after,
    nav ul.menu > li.active > span:after {
        background-color: #fff;
        bottom: 0;
    }
    
    nav ul.menu > li:hover > a,
    nav ul.menu > li.active > a,
    nav ul.menu > li:hover > span,
    nav ul.menu > li.active > span {
        background-color: var(--color-2);
        color: var(--grey-1) !important;
    }

    nav ul.menu > li ul {
        margin-top: 0;
    }

    nav ul.menu > li ul li {
        padding: 0;
        margin-bottom: 0;
        border-bottom: 2px solid var(--grey-1);
    }

    nav ul.menu li .subnav-toggle {
        position: absolute; 
        top: 0;
        right: 0;
        padding: 0;
        margin: 0;
        width: 100%;
        height: 55px;
        cursor: pointer;
    }

    nav ul.menu li .subnav-toggle:before {
        top: calc(50% - 5px);
        right: 60px;
        border-width: 0 8px 8px 8px;
    }
    
    nav ul.menu li.deeper.opened > .subnav-toggle {
        width: 100px;
    }
    
    ul.menu div.subnav {
        position: relative;
        right: 0;
        left: 0;
        top: 0;
        overflow: hidden;
        height: auto;
        padding: 0;
        margin: 0;
    }

    div.subnav-inner:before {
        display: none;
    }
    
    ul.menu div.subnav-inner {
        padding: 0;
        margin: 0;
        width: 100%;
        background-color: #fff;
        border: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
    
}

/*---- Hauptmenü + Fussmenü ENDE -----------------------------*/

/*---- Mediaqueries für Bildschirm- und Mobiloptimierung -----------------------------*/


@media only screen and (max-width: 1000px) { 
    
    header,
    main,
    footer,
    section {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    #nav-toggle {
        right: 20px;
    }

}

@media only screen and (max-width: 900px) { 
    
}

@media only screen and (max-width: 900px) { 
    
    section.bottom-2 div.maps-wrapper {
        padding-bottom: 40%;
    }
    
}

@media only screen and (max-width: 850px) {
    
    .cols-2 div.item,
    .cols-3 div.item,
    div.blog div.news-image,
    div.blog div.news-text {
        width: 50%;
    }
    
    .width-20 {
        width: 30%;
    }
 
    .width-80 {
        width: 70%;
    }
    
    main .item.home:last-child,
    footer .item:nth-child(3),
    main div.item.span-2 {
        width: 100% !important;
    }
    
    .show-phone {
        display: block;
    }
    
    div.sliders,
    div.slide {
        padding-bottom: 65%;
    }

}

@media only screen and (max-width: 750px) { 
    
    .fancybox.gallery {
        width: 33.333%;
        padding-bottom: 25%;
    }
    
}

@media only screen and (max-width: 700px) { 
    
    main {
        padding-top: 50px;
        padding-bottom: 80px;
    }

}

@media only screen and (max-width: 650px) { 
    
    .cols-2 div.item,
    .cols-3 div.item,
    footer .col-left,
    footer .col-right,
    div.blog div.news-image,
    div.blog div.news-text {
        width: 100% !important;
    }
    
    .width-20,
    .width-80 {
        width: 50% !important;
    }
    
    .width-50 {
        width: 100% !important;
    }
    
    div.blog div.news-image {
        padding-right: 0;
    }
    
    .col-left,
    .col-right,
    footer .col-left,
    footer .col-right {
        padding: 0 !important;
    }
    
    header,
    main,
    footer,
    section {
        padding-left: 0;
        padding-right: 0;
    }
    
    header {
        padding-left: 10px;
    }
    
    footer .item:first-child,
    footer .item:nth-child(2) {
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 20px;
    }
    
    footer .item:first-child > *,
    footer .item:nth-child(2) > * {
        text-align: center !important;
    }
 
    header {
        height: 90px;
    }
    
    #nav-toggle {
        top: 20px;
    }
    
    a.brand svg {
        width: 246px;
    }
    
    footer .hidden-phone {
        display: none;
    }
    
    section.bottom-1 .hidden-phone {
        display: none;
    }
}

@media only screen and (max-width: 600px) { 
    
    main {
        padding-top: 20px;
        padding-bottom: 60px;
    }
    
    h1 {
        margin: 0 0 40px 0;
    }
    
    .home h1 {
        margin: 0 0 40px 0;
    }
    
    div.maps-wrapper,
    section.bottom-2 div.maps-wrapper {
        padding-bottom: 70%;
    }
    
    ul.slider_tabs {
        bottom: 6px;
    }
    
    hr {
        margin-top: 20px;
    }
	
	section.note div.item p a {
		white-space: normal;
	}
    
}

@media only screen and (max-width: 550px) { 
    
    .width-20,
    .width-80 {
        width: 100% !important;
    }
    
    .fancybox.gallery {
        width: 50%;
        padding-bottom: 35%;
    }
   
}

@media only screen and (max-width: 500px) { 
    
    div.item {
        padding: 15px;
    }
    
    header {
        padding-left: 3px;
    }
    
    html, body {
        font-size: 15px;
        line-height: 25px;
    }

}

@media only screen and (max-width: 400px) { 
    
    div.mslider > div img {
        left: -15%;
        width: 130%;
        max-width: 130%;
    }
    
    header {
        height: 80px;
    }
    
    a.brand svg {
        width: 218px;
    }
    
    #nav-toggle {
        top: 15px;
        right: 15px;
    }
    
    nav ul.menu li a,
    nav ul.menu li span {
        padding-left: 30px;
        padding-right: 30px;
    }

    nav ul.menu li.deeper a,
    nav ul.menu li.deeper span {
        padding-right: 60px;
    }
    
    nav ul.menu li .subnav-toggle:before {
        right: 30px;
    }
    
    nav ul.menu li.deeper.opened > .subnav-toggle {
        width: 60px;
    }
    
}

/* Bewerbungsformular, nachtraeglich reingebastelt */
.width-42 {
  /*max-width: 42% !important;*/
  max-width: 100% !important;
  margin-left: 0 !important;
}

input[type="checkbox"] + label, input[type="radio"] + label {
  display: block !important;
}

img.captchacode, img.captcharefresh1 {
  width: auto !important;
}

.bewform-send {
  float: right !important;
  width: 30% !important;
  margin-top: 5% !important;
}

.js-calendar {
  position: fixed !important;
  top: 10px !important;
  left: 10px !important;
}

.visCSSlabel {
  width: auto !important;
}

.visforms > h1 {
  margin-bottom: 0 !important;
}

/*@media screen and (max-width: 2000px){
  input[type="checkbox"] + label, input[type="radio"] + label {
    display: block !important;
  }
  .width-42 {
    max-width: 100% !important;
  }
}*/


/* Kalender */
div.calenderinfo {
	padding-left: 40px;
	padding-right: 40px;
	padding-top: 30px;
}

div.calenderinfo > div.team {
	width: auto !important;
}

ul.calenderinfo {
	list-style-type: none !important;
}

/* Payment icons */
/*
img.eb-payment-method-icon {
	max-width: fit-content;
}

label.radio > input[value="os_paypal"] {
	margin-top: 40px;
	margin-left: -137px;
}

div.eb-form-control > label.radio:first-child {
	height: 80px;
}*/

/* Link-Button */
a.linkbutton {
	width: auto;
	height: auto;
	background-color: #043959;
	border-radius: 50px;
	text-align: center;
	vertical-align: middle;
	display: table-cell;
	box-shadow: 2px 2px 3px #999;
	padding: 10px 20px 10px 20px;
	color: white;
}