:root {
  
    --clr-primary-dark: #222222;
    --clr-primary-light: #f5f7fb;
  
    --fc-primary: #ffffff;
    --fc-dark: #000;
}

/* --- Full News: Struktur-Ergänzungen aus global.css (ohne Farb-/Typo-Änderungen) --- */
.collection_full h3.collection_content.news__title.title.custom:after {
  content: '—';
  display: block;
}

/* Full News Gallery: siehe spätere, spezifischere Overrides im gleichen Scope */

.collection_full.news .collection_content.vorschaubild img { height: auto !important; border-radius: var(--br); }
/* Minimaler Abstand unter dem großen Bild */
.collection_full.news .collection_content.vorschaubild { padding-block-end: .5rem !important; margin-bottom: 0 !important; }

/* Gallery unter dem Bild innerhalb der linken Spalte anordnen */
.collection_full.news .collection_content.news_content_left .collection_content.gallery {
  float: none !important;
  clear: both !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: .5rem 0 0 0 !important;
  padding: 0 0 0 0;
  box-sizing: border-box;
}
 

/* Thumbnails: siehe spätere, spezifischere Overrides im gleichen Scope */

/* Galerie direkt unter Bild: kleiner Top-Abstand und keine Innenabstände */
.collection_full.news .collection_content.gallery { margin-top: .5rem !important; padding: 0 !important; }

@media (min-width:600px){
  /* Sicherstellen, dass die Galerie auch auf größeren Screens unter dem Bild bleibt */
  .collection_full.news .collection_content.news_content_left .collection_content.gallery {
    float: none !important;
    clear: both !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: .5rem 0 0 0 !important;
  }
  /* Fallback: falls die Galerie direkt Kind von .collection_container ist */
  /* entfernt, da weiter unten im Scope breiter mit Grid überschrieben */
}

:root {
    --ff-primary: 'Abel', 'Source Sans Pro', sans-serif;
  
    --ff-body: var(--ff-primary);
    --ff-heading: 'Coolvetica', var(--ff-body);
  
    --fw-regular: 400;
    --fw-bold: 700;
  
    --fs-300: 0.8125rem;
    --fs-400: 0.875rem;
    --fs-500: 18px;
    --fs-600: 21px;
    --fs-700: 50px;
    --fs-800: 60px;
    --fs-900: 70px;

    --br-primary: 15px;
    --br-button: 8px;
  
    --fs-body: var(--fs-400);
    --fs-primary-heading: var(--fs-800);
    --fs-secondary-heading: var(--fs-700);
    --fs-nav: var(--fs-500);
    --fs-button: var(--fs-300);
  
    --shadow: 0px 0px 14px rgb(0 0 0 / 15%); 

    --height-header: 70px;
    --fc-nav: #ffffff;
    --p-button: 10px 15px;
    --clr-border: #000000;
    --fc-white: #ffffff;
    --fc-black: #000000;
    --fc-grey: grey;

    --bg-header: rgba(34, 34, 34, 0.9);


    --termine-height: 80px;
    
}
/* -------------------------------------------------- */
/* 0) Ganz oben im Haupt-CSS (oder inline im <head>)  */
/*    Sub-Menü auf der Desktop-Version komplett ausblenden */
/* -------------------------------------------------- */
li.level_1 > ul.level_2 {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  /* Keine Transition, sonst könnte es kurz auftauchen */
  transition: none !important;
}

/* -------------------------------------------------- */
/* 1) Desktop-Hover aktiviert das Sub-Menü */
/* -------------------------------------------------- */
li.level_1.levels:hover > ul.level_2,
li.level_1.levels > ul.level_2:hover {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}



/* -------------------------------------------------- */
/* 3) Restliche Styles wie gehabt */
/* -------------------------------------------------- */
li.level_1.levels {
  position: relative;
}

li.level_1 > ul.level_2 {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  background: linear-gradient(
    to bottom,
    transparent 20px,
    var(--bg-header) 20px
  );
  color: var(--fc-white);
  border-left:   1px solid #484848;
  border-bottom: 1px solid #484848;
  padding: 20px 15px 15px;
  box-shadow:
    -2px 0 4px -2px rgba(153,152,152,0.3),
     0 2px 4px -2px rgba(153,152,152,0.3),
     2px 0 4px -2px rgba(153,152,152,0.3);
}

figure.mz-figure.mz-hover-zoom.mz-no-zoom.mz-ready {
  display: flex;
  align-items: center;
  justify-content: center;
}

figure.mz-figure.mz-hover-zoom.mz-no-zoom.mz-ready img {
  border-radius: 10px;
}

ul.level_2 li.level_2 a {
  display: block;
  padding-left: 10px;
  margin-bottom: 13px;
  text-decoration: none !important;
}

ul.level_2 p.level_2_title {
  position: relative;
  padding-bottom: 2px;
}

ul.level_2 p.level_2_title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--primary-accent);
  transition: width 0.2s ease;
}

ul.level_2 li.level_2 a:hover p.level_2_title::after {
  width: 100%;
}

li.level_1.levels:hover > ul.level_2 li.level_2 a:hover {
  border-bottom: none !important;
}






  
/* Reset */

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

.collection_list.col25 {
    width: calc(25% - 15px);
}

.collection_list.col50 {
    width: calc(50% - 10px);
}

.collection_list.col100 {
    width: calc(100% - 10px);
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/*set scroll margin for main-elements*/
#content,
#area-2,
#area-3,
#area-4,
#area-5,
#area-6,
#area-7,
#area-8,
#area-9 {
    scroll-margin-top: 120px;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

div#hero a {
    margin-right: 10px;
}


* {
scrollbar-width: thin;
scrollbar-color: #cccccc #ffffff00;
}

*::-webkit-scrollbar {
width: 7px;
}

*::-webkit-scrollbar-track {
background: #ffffff00;
}

*::-webkit-scrollbar-thumb {
background-color: #cccccc;
border-radius: 10px;
border: 0px solid #ffffff00;
}



/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */


/* Reset */

@font-face {
	font-family: 'SourceSansPro-Regular';
	src: url('/layout/frontend/b2c/dist/fonts/SourceSansPro-Regular.ttf');
    font-display: swap;
	}

@font-face {
font-family: 'SourceSansPro-Bold';
src: url('/layout/frontend/b2c/dist/fonts/SourceSansPro-Bold.ttf');
font-display: swap;
}

@font-face {
font-family: 'SourceSansPro-Black';
src: url('/layout/frontend/b2c/dist/fonts/SourceSansPro-Black.ttf');
font-display: swap;
}

@font-face {
font-family: 'Coolvetica';
src: url('/userdata/01_Basis/coolvetica.ttf');
font-display: swap;
}

@font-face {
    font-family: 'Abel';
	src: url('/userdata/01_Basis/abel.ttf');
    font-display: swap;
	}

body {
    background-color: var(--bg-black);
    font-size: var(--fs-600);
    font-weight: var(--fw-regular);
    line-height: 1.42857143;
    font-family: var(--ff-body);
    color: var(--fc-primary);
    overflow-x: hidden;
    margin: 0;
    background-image: url(/userdata/01_Basis/background.jpg);
    background-size: 100%;
}








@keyframes wobble {
    0% {
      transform: rotate(0deg);
    }
    25% {
      transform: rotate(5deg);
    }
    50% {
      transform: rotate(-5deg);
    }
    75% {
      transform: rotate(5deg);
    }
    100% {
      transform: rotate(2deg);
    }
  }
  

  a[role="button"] {
    display: inline-block;
    position: relative;
    padding: 8px 17px;
    border-radius: 5px;
    background: var(--primary-accent);
    text-decoration: none !important;
    color: var(--fc-white);
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
    transform-origin: center center;
    vertical-align: middle;
  }
  
  
  /* Klasse, die den Wobble-Effekt in Gang setzt; startet mit 0.1s Delay */
  a[role="button"].wobble-active {
    animation: wobble 0.6s 0.1s forwards;
  }


  
  
  /* Pseudo-Element für den "Einschuss" (das PNG) */
  /* Nur opacity wird animiert; left und top werden nicht animiert */
  a[role="button"]::after {
    content: "";
    position: absolute;
    width: 40px;  /* Größe ggf. anpassen */
    height: 40px;
    background-image: url('einschuss.png'); /* Bild im gleichen Ordner wie die CSS-Datei */
    background-size: cover;
    opacity: 0;  /* Start unsichtbar */
    transition: opacity 0s ease; /* Nur opacity animieren */
    pointer-events: none;
    left: var(--mouse-x, 50%); /* Wenn keine CSS-Variable gesetzt ist, Fallback = 50% */
    top: var(--mouse-y, 50%);
    transform: translate(-50%, -50%);
  }
  
  /* Klasse, die das PNG sichtbar macht – mit 0.1s Delay beim Fade-in */
  a[role="button"].einschuss-active::after {
    opacity: 1;
    transition-delay: 0.1s;
  }









  

.outline {
    background: transparent !important;
    border: 1px solid var(--fc-white)!important;
}

main {
    width: 100%;
    float: left;
}

/* headerbalken transparent */
header {
    height: var(--height-header);
    background: transparent;
    position: absolute;
    width: 100%;
    margin-top: 35px !important;
    z-index: 2;
}

header:hover {
    background: var(--bg-header);
}


.home div#content {
    margin-top: -330px;
}

header > .container {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

nav a {
    text-decoration: none;
    color: var(--fc-nav);
    font-size: var(--fs-500);
}

nav a:hover {
    border-bottom: 1px solid var(--fc-white);
}

ul.level_1 {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
    align-items: center;
}


#header_1 {
    flex: 0 0 auto;
    display: flex;
    align-items: center;

  }

#header_1 img {
    max-height: 140px;
    height: auto;
    width: auto;
    object-fit: contain;
    object-position: left;
}


.collection_list.hero {
    width: 100%;
    padding: 0;
    background: var(--clr-primary-light);
}

.collection_list.personen .collection_container {
    height: 380px;
    padding: 20px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    overflow: hidden;
    border-radius: var(--br-primary);
}

.collection_list.personen .collection_container:hover .collection_content.personenbild img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
    overflow: hidden;
}

.collection_content.funktion {
    font-size: 15px;
    padding: 0 0 7px;
}

.collection_list.personen {
    width: 25%;
    padding: 15px 30px 15px 0px;
}



.collection_list.personen .collection_container:after {
    content: '';
    width: 100%;
    height: 200px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 5px;
    background: linear-gradient(180deg, rgb(21 21 21 / 0%) 0%, rgb(20 20 20) 100%);
    z-index: -1;
}

.collection_list.turnen {
    width: 100%;
}

.collection_list.turnen .collection_container {
    padding: 30px;
    background: #0000004a;
    border-radius: var(--br-primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding-block-start: 15px;
    width: 100%;
    border: 1px solid #ffffff2e;
}

h3.collection_content.personen__title.title.custom {
    margin: 0;
}

.collection_content.personenbild img {
    box-shadow: rgb(0 0 0 / 33%) 0px 7px 29px 0px;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition: 0.5s;
    overflow: hidden;
    object-position: top;
}

.collection_content.funktion:after {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--primary-accent);
    display: block;
    border-radius: 5px;
    margin: 5px 0 0;
}

.collection_content.personenbild {
    height: 100%;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.filter_display {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    padding: 15px;
    flex-wrap: wrap;
    margin: 0 0 0.5rem;
    white-space: nowrap;
    flex-wrap: nowrap;
    overflow-y: scroll;
}

button, input.button, .component.button_navigation a {
    background: var(--primary-accent);
    color: var(--fc-white);
    padding: var(--p-button);
    border-radius: var(--br-button);
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    width: auto;
}

button:active,
input.button:active,
input.button:focus,
.component.button_navigation a:active,
.component.button_navigation a:focus,
button:focus {
    outline: 1px dashed var(--primary-accent);
    outline-offset: 2px;
}

button:hover,
input.button:hover,
.component.button_navigation a:hover {
    opacity: .95;
}

h2.title {
    text-align: center;
}

h2.title:after {
    left: 50%;
    transform: translateX(-50%);
}



input, select, textarea {
    padding: 10px;
    width: 100%;
    border: 1px solid #ffffff38;
    font-family: inherit;
    border-radius: var(--br-button);
    background: #ffffff1c;
    color: var(--fc-white);
}

.collection_list.ansprechpartner {
    width: 50%;
}

.collection_list.ansprechpartner:hover .collection_container {
    background: #ffffff14;
    transform: translateY(-4px);
}



a.collection_container_link {
    all: unset;
    transition: transform 300ms;
    cursor: pointer;
}

a.collection_container_link:hover {
    background: #ffffff14;
    transform: translateY(-4px);
}  

.collection_list.ansprechpartner .collection_container:hover {
    background: #ffffff14 !important;
    transform: translateY(-4px);

  }

.collection_list.ansprechpartner .collection_container:after {
    content: '';
    background-image: url(/userdata/02_Kollektionen/01_Ansprechpartner/phone.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: 25px;
    right: 25px;
    filter: invert(1);
}

.ansprechpartner_container {
    max-width: 950px;
    margin: 0 auto;
}

.collection_list.ansprechpartner .collection_container {
    border: 1px solid #ffffff6e;
    padding: 25px;
    border-radius: var(--br-primary);
    background: #ffffff05;
    min-height: 236px;
    transition: transform 300ms;
}





h3.collection_content.ansprechpartner__title.title.custom {
    padding-block-end: 70px;
    margin-top: 0;
}

input.button {
    margin-top: 1rem;
}

.contactformular {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: #0000004a;
    border-radius: var(--br-primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding-block-start: 15px;
    width: 100%;
    border: 1px solid #ffffff2e;
}

.contactformular .title {
    text-align: left;
}

.contactformular .title:after {
    left: 0;
    transform: unset;
}


select option {
    background: var(--bg-black);
}

textarea {
    resize: vertical;
    min-height: 200px;
}

input[type="checkbox"] {
    width: auto;
}

.owl-item img {
    height: 370px!Important;
    width: 100%!Important;
    border-radius: var(--br-primary);
    object-fit: cover;
}


/* Standard-Zoom-Cursor (Lupe mit +) */
a.MagicZoom .mz-figure img {
  cursor: zoom-in !important;
}


.owl-item {
scale: .9;
}
.owl-item.center {
scale: 1;
}


.owl-item a {
    width: 100%!important;
}

figure.mz-figure.mz-hover-zoom.mz-no-zoom.mz-ready {
    width: 100%;
    height: 100%;
}

.back_to_overview a {
    background: var(--primary-accent);
    color: var(--fc-white);
    padding: 10px 15px;
    border-radius: var(--br-primary);
    border: none;
    cursor: pointer;
}

.full_preview .filter_display {
    display: none;
}

a.button_filter.a-filter {
    background: var(--primary-accent);
    color: #fff;
    border: 1px solid var(--primary-accent);
    text-decoration: none;
    padding: 10px 20px;
    float: left;

    border-radius: 5px;

}

.turnen div#content {
    margin-top: -140px;
}

/* .collection_content.turnen_text .textcontent {
    column-count: 2;
} */

.collection_content.turnen_text .textcontent h4 {
    font-size: 24px;
    font-family: 'Abel' !important;
    text-transform: none;
    font-weight: bold;
    border-bottom: 1px solid grey;
    padding-block-end: 15px;
}

a.button_filter.o-filter {
    background: #f5f7fb;
    text-decoration: none;

    width: auto;
    padding: 10px 20px;
    text-align: center;
    border: 1px solid #d7dcde;
    border-radius: 5px;
    float: left;
    cursor: pointer;
    color: grey;
}





li.level_1.levels ul {
    display: none;
}

a {
    color: var(--primary-accent);
}

.component.copyright .textcontent:last-child {
    float: right;
}
.component.copyright .textcontent:first-child {
    float: left;
}


.home #hero > .container > .textcontent,
.der-verein #hero > .container > .textcontent,
.sportheim #hero > .container > .textcontent,
.mitglied-werden #hero > .container > .textcontent {
    max-width: 920px;
    margin: 0 auto;
}


.collection_content.ansprechpartner_bild img {
    position: absolute;
    border-radius: 999px;
    aspect-ratio: 1;
    width: 130px !important;
    height: 130px ! Important;
    object-position: top;
    top: 25px;
    right: 25px;
    z-index: -1;
}




.row {
    float: left;
    width: 100%;
}

#cookie-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    z-index: 200;
    min-width: 320px;
}

#cookie-bar #cookie-bar-button {
    float: right;
    margin-left: 20px;
    display: inline-block;
    padding: 8px 10px;
    min-width: 150px;
    text-transform: uppercase;
    border: 1px solid #ff6532;
    color: var( --fc-white);
    cursor: pointer;
    background-color: #ff6532;
    text-align: center;
}

#cookie-bar #cookie-bar-button:hover {
    background-color: #e43900;
    border-color: #e43900;
}

#cookie-bar #cookie-bar-button:active {
    background-color: #b22c00;
    border-color: #b22c00;
}

#cookie-bar #cookie-bar-prompt-button {
    white-space: nowrap;
}



#cookie-bar>p {
    float: left;
    margin: 0;
    line-height: 40px;
}

#cookie-bar:after {
    clear: both;
    display: block;
    content: " ";
}

.cookie-config-configuration .cookie-reject.cookie-option {
    margin: 15px;
    display: block;
    text-align: center;
    filter: grayscale(1);
}

.cookie-config-configuration .cookie-accept.cookie-option {
    margin: 15px;
    display: block;
    text-align: center;
}

.header-wrapper.fixed-header {
    position: fixed;
    top: 0;
    z-index: 999;
}

/* Modal */


.fade {
    opacity: 1;
}

.modal {
    display: block;
}



.modal.success .modal-header {
    border-color: var(--main-color);
    background-color: var(--main-color);
    color: var( --fc-white);
}

div#requestbox {
    position: fixed;
    width: 100%;
    top: 50%;
    left: 50%;
    z-index: 999;
    height: 100%;
    transform: translate(-50%, -50%);
}

.modal-dialog {
    position: fixed;
    width: 100%;
    max-width: 350px;
    top: 50%;
    left: 50%;
    z-index: 999999;
    background: var(--bg-black);
    text-align: center;
    padding: 2rem;
    color: var(--primary-accent);
    border-radius: var(--br-primary);
    transform: translate(-50%, -50%);
    border: 1px solid #414141;
}

body.kontakt h2.title {
    display: none;
}

.kontakt_group .row {
    margin-inline: -15px;
}

h4#myModalLabel {
    font-size: 40px;
}

div#requestbox:after {
    content: '';
    background: #00000075;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

div#filter-element {
    position: absolute;
    margin-top: -200px;
}

.fussball div#content {
    margin-top: -140px;
}

button.close {
    margin: 0 0 1rem;
}

/* Modal */



/* Extra Module */
html {
    scroll-behavior: smooth;
  }

/* FAQ */

.faq_group_container .faq_question_box {
    padding: 5px 15px 8px 15px;
    border: none;
    background: var(--primary-accent);
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    position: relative;
}

.faq_question_box {
    cursor: pointer;
}

.faq_group_container .faq_answer_box {
    margin-bottom: 30px;
    padding: 20px;
    background: rgb(245 247 251);
    margin-top: -10px;
    border-radius: 0 0 5px 5px;
}

.faq_question_box.active {
    border-radius: 5px 5px 0 0;
}

.faq_question_box:after {
    content: '+';
    position: absolute;
    right: 16px;
    color: var( --fc-white);
    top: 50%;
    font-size: 20px;
    transform: translateY(-50%);
}

.faq_question_box.active:after {
    content: '-';
    position: absolute;
    right: 16px;
    color: var(--fc-white);
    bottom: unset;
    font-size: 25px;
}

li.level_1:nth-child(6) {
    position: relative;
}

.faq_group_container .faq_answer_box {
    display: none;
}

.faq h3 {
    font-size: 18px;
    font-weight: 400!Important;
    border: none;
    color: var( --fc-white);
    line-height: 1;
    margin-bottom: 7px;
}

.faq-search input[type="text"] {
    width: 250px;
    height: 30px;
    color: var( --fc-white);
    background: rgba(9, 0, 0, 0.9);
    border: 0;
    padding: 20px;
    position: relative;
}



ol li, ul li {
    list-style: none;
}

div#content,
.main-screen {
    padding: 5rem 0 ;
    position: relative;
    float: left;
    width: 100%;
}

.main-screen.grey {
    background-color: #ffffff05;
}


.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

.pop-up-element {
    display: none;
}

.pop-up-element:first-child {
    display: block;
}

.pop-up-element.current {
   display: block;
}

.pop-up-button-group .row {
    display: flex;
    padding-block: 2rem;
}

.pop-up-button.current {
    background: var(--primary-accent);
    color: #fff;
    border: 1px solid var(--primary-accent);
}

.pop-up-button {
    background: #f5f7fb;
    width: auto;
    padding: 10px 20px;
    text-align: center;
    border: 1px solid #d7dcde;
    border-radius: 5px;
    float: left;
    margin-right: 1rem;
    cursor: pointer;
    color: grey;
}

div#content {
    margin-top: -200px;
}

.sitepart_2 h2.title_einzug,
.sitepart_2 .form-group.jahresbeitrag,
.sitepart_2 .form-group.kontoinhaber,
.sitepart_2 .form-group.bankname,
.sitepart_2 .form-group.bic,
.sitepart_2 .form-group.iban,
.sitepart_2 .form-group.form-check.hinweis,
.sitepart_2 .form-group.form-check.hinweis-2,
.sitepart_2 input.button {
    display: none;
}

.sitepart_2 .form-group.name {
    width: 50%;
    padding-right: 1rem;
}

.sitepart_2 .form-group.vorname {
    width: 50%;
}

.sitepart_2 .form-group.strasse {
    width: 70%;
    padding-right: 1rem;
}

.sitepart_2 .form-group.plz {
    width: 30%;
}

.sitepart_2 .form-group.bic {
    width: 30%;
    padding-right: 1rem;
}

.sitepart_2 .form-group.iban {
    width: 70%;
}





.kontakt_group .collection_list.ansprechpartner {
    width: 100%;
    padding-block-start: 0;
    transition: transform 300ms;
    
}

.kontakt_group .collection_list.ansprechpartner .collection_container {
    background: #0000004a;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #ffffff2e;
}

input.button {
    background: var(--primary-accent)!important;
}

.mitglied-werden input, 
.mitglied-werden select, 
.mitglied-werden textarea,
.kontakt input, 
.kontakt select, 
.kontakt textarea,
.sportheim input, 
.sportheim select, 
.sportheim textarea {
    border: 1px solid #ffffff18;
    background: #ffffff08;

}

h3.collection_content.zahlen__title.title.custom {
    font-size: 90px;
    color: var(--primary-accent);
}

.collection_list.zahlen {
    width: 25% !important;
    text-align: center;
}

.collection_list.partner {
    width: 50%;
}

.collection_content.partnerlogo {
    height: 100px;
    max-width: 200px;
}

.collection_content.partnerlogo img {
    object-fit: contain !important;
}


.pop-up-element {
    z-index: 1;
    float: left;
    width: 100%;
}

.pop-up-element .row {
    margin-left: -15px;
    margin-right: -15px;
}

.faq_nearest_search {
    display: none;
}

.header-text a {
    background: var(--primary-accent);
    color: var( --fc-white);
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: rgb(48 98 120 / 48%) 0px 7px 29px 0px;
}

.header-text a:hover {
    color: var( --fc-white);
    box-shadow: rgb(48 98 120 / 82%) 0px 7px 29px 0px;
}

#header>.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header>.container:before {
    display: none;
}

/* Header Kollektion */

iframe {
    width: 100%;
    height: 75vh;
    border-radius: var(--br-primary);
}

div#footer-header {
    float: left;
    width: 100%;
}

#header>.container:before {
    display: none;
}

div#header_1,
div#header_3 {
    width: 20%;
}

div#header_3 {
    display: flex;
    justify-content: flex-end;
}

#hero img {
    animation: scale 40s linear infinite;
    overflow: hidden;
}

@keyframes scale {
    50% {
      -webkit-transform:scale(1.2);
      -moz-transform:scale(1.2);
      -ms-transform:scale(1.2);
      -o-transform:scale(1.2);
      transform:scale(1.2);
    }
  }

  #hero:after {
    content: '';
    background: linear-gradient(180deg, rgb(21 21 21 / 0%) 0%, rgb(20 20 20) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 280px;
    z-index: -1;
}

#header>.container:after {
    display: none;
}

.collection_link a {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 0;
    z-index: 2;
}


.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt60 {
    margin-top: 60px;
}

.mt100 {
    margin-top: 100px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb60 {
    margin-bottom: 60px;
}

.mb100 {
    margin-bottom: 100px;
}

.slideshow_box {
    margin-bottom: 30px;
}

.slideshow_box .slideshow_content {
    width: 100%;
}

.slideshow_box .slideshow_content .slideshow_content_inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    text-align: center;
}

.slideshow_box .slideshow_content .slideshow_headline {
    font-size: 45px;
    line-height: 1;
    color: var( --fc-white);
    margin-top: 0;
    font-weight: 600;
}

.slideshow_box .slideshow_content .slideshow_text {
    font-weight: 600;
    font-size: 15px;
    margin-top: 0;
    margin-bottom: 20px;
}

.slideshow_box .slideshow_content .slideshow_button .button {
    color: #222222;
    text-transform: uppercase;
}

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

.slideshow_box .owl-carousel-item>a {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}


.collection_list {
    width: 33.33%;  /*CS 2025-05-11 */
    float: left;
    padding: 15px;
}

img {
    height: 100%!important;
    width: 100%!important;
    object-fit: cover;
    max-width: 100%;
    border-radius: 10px;
    filter: brightness(1.2)
}

sidebutton {
    position: fixed;
    bottom: 4rem;
    left: 1rem;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;

}

sidebutton .cookie-option {
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--fc-white);
    border-radius: 999px;
    aspect-ratio: 1;
    padding: 10px;
}

sidebutton svg {
    fill: white;
    width: 25px;
    height: 25px;
}

#hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 0;
    color: var(--fc-white);
    text-align: left;
    overflow: hidden;
}

.home #hero {
    height: 100vh;
    text-align: center;
}

.cookies_not_set {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--fc-white);
    border-radius: var(--br-primary);
    padding: 1rem;
    background: #ffffff0d;
    max-width: 440px;
    margin: 0 auto;
}

#hero .imgcontent,
#hero .textcontent video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    filter: brightness(0.6);
    object-fit: cover;
}


#startvideo::-webkit-media-controls {
  display: none !important;
}
#startvideo::-moz-media-controls {
  display: none !important;
}
#startvideo::-ms-media-controls {
  display: none !important;
}

#hero .textcontent  {
    z-index: -1;

}



#hero h1 {
    text-transform: uppercase;
    line-height: .8 !important;
    font-size: 8rem;
}

#aktuelles {
    scroll-margin-top: -120px;
    width: 100%;
    float: left;
}

h2:after {
    content: '';
    background: var(--primary-accent);
    width: 90px;
    height: 4px;
    position: absolute;
    bottom: -10px;
    left: 0;
    border-radius: 9999px;
}

.team_section {
    padding-top: 30px;
}

.team_section:after {
    background: #707070 !important;
    width: 100%;
    height: 1px;
}

/* Schriften */

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: .9;
    clear: both;
    font-weight: 500;
    color: var(--fc-white);
    margin: 10px 0;
    font-family: var(--ff-heading)!important;
    text-transform: uppercase;
}

h1 {
    font-size: var(--fs-900);
    color: #fff;
}


h2 {
    font-size: var(--fs-800);
    position: relative;
    margin-bottom: 2rem !important;
    padding-bottom: 0.5rem;
    letter-spacing: .5px;
}

.bild_text .row {
    display: flex;
    align-items: center;
    gap: 50px;
}

h3 {
    font-size: var(--fs-700);
}

h4,
h5 {
    font-size: var(--fs-600);
}

h6 {
    font-size: var(--fs-500);
}


a:hover {
    opacity: .95;
}

.owl-nav {
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 90%;
    left: 20px;
}

.hide {
    display: none;
}

.collection_link a:hover {
    opacity: 0;
}


.full_preview .collection_full {
    display: block !important;
}

.collection_list,
.collection_container {
    position: relative;
}

.fade {
    opacity: 1;
}




.modal.success .modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.owl-stage-outer {
    width: 100%;
}

div#cookiewarnung {
    position: fixed;
    bottom: 40px;
    background: #313131;
    color: #fff;
    z-index: 99999999;
    width: 80%;
    text-align: center;
    padding: 15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
    border: 1px solid #4d4d4d;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    display: none;  
}






.cookie-option-container {
    margin-top: 10px;
}

.home #hero > .container {
    margin-top: -140px;
}

.cookie-option {
    cursor: pointer;
    display: inline-block;
    padding: 8px 15px;
    border-radius: 5px;
    background: var(--primary-accent);
}


div#cookie-config {
    display: none;
    left: -100%;
    transition: 1s;
}

div#cookie-config.show {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    background: var( --fc-black);
    max-width: 300px;
    z-index: 99999999999;
    overflow-y: auto;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

#cookie-config .cookie-config-close {
    background: black;
    color: #fff;
    padding: 10px;
    position: relative;
    cursor: pointer;
}

#cookie-config input {
    margin-right: 10px;
}

#cookie-config label {
    font-weight: normal;
    color: #fff;
}

.cookie-config-close:after,
.cookie-arrow {
    position: absolute;
    width: 10px;
    height: 10px;
    transform: rotate(225deg);
    box-shadow: -2px 2px 0 rgba(90, 156, 157, 0.5);
    content: "";
    right: 20px;
    top: 20px;
    transition: 0.1s;
}

.cookie-config-options.open .cookie-arrow {
    transform: rotate(315deg) !important;
}

.cookie-config-options {
    background: var(--fc-dark);
    padding: 10px;
    cursor: pointer;
    position: relative;
}

input#required {
    width: auto;
}

input#tracking {
    width: auto;
}

.cookie-config-configuration .cookie-config-options:nth-child(2) {
    border-bottom: 1px solid #d5d5d5;
}

.config-child {
    display: none;
    padding: 10px;
}

.cookie-config-save {
    padding: 10px;
    text-align: center;
    background: #68c567;
    cursor: pointer;
    margin: 20px 15px;
    color: var( --fc-white);
    border-radius: 5px;
}

.cookie-config-configuration {
    margin-top: 10px;
}

.cookie-config-configuration>p {
    padding: 10px;
    font-weight: bold;
}

.cookie-config-description {
    padding: 10px;
    font-size: 15px;
}

.cookie_conflict_youtube {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    border: 2px solid #f07474;
    max-width: 350px;
    margin: 0 auto;
    text-align: center;
    padding: 10px 0px;
    border-radius: 10px;
    background: var( --fc-white);
    font-size: 17px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.cookie_conflict_youtube a {
    text-decoration: underline;
    font-weight: 500;
}


.form-group {
    float: left;
    width: 100%;
    padding: 10px 0;
}



button:hover {
    opacity: 0.8;
}

div#submit_button {
    float: left;
    width: auto;
    margin: 1rem 0;
}

#header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
}

.header-wrapper {
    position: relative;
}







.sticky-active {
    position: relative;
}

#toggle_navigation,
.hamburger-menu {
    display: none;
}

div#toggle_navigation {
    float: right;
    width: auto;
    padding: 0 !important;
    height: auto;
    background: transparent;
}

.home div#area-10 {
    display: none;
}

.hamburger-menu {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    display: none;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: #111;
    height: 100vh;
    z-index: 999999;
}


  

body.hamburger-active {
    overflow: hidden;
}

.hamburger-menu ul.level_1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}
.hamburger-menu ul.level_2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-left: 10px;
}

.hamburger-menu li.level_1 {
    width: 100%;
}
.hamburger-menu li.level_2 {
    width: 100%;
}
.hamburger-menu a {
    padding: 1rem;
    display: block;
    width: 100%;
    border-bottom: 1px solid #ffffff36;
    text-decoration: none;
    color: var(--fc-white);
    font-size: var(--fs-600);
}

#toggle_navigation label.hamburg {
    display: block;
    background: transparent;
    width: 50px;
    height: 50px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
    margin: 0;
    cursor: pointer;
}
/* 
.collection_list.historie {
    width: 50%;
    padding: 30px;
    position: relative;
}

.collection_list.historie .collection_container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
} */

.collection_content.historie_img {
    position: relative;
    display: block;
}

.collection_content.historie_img img {
    -webkit-mask-image: radial-gradient(ellipse at center, black 50%, transparent 100%);
    mask-image: radial-gradient(ellipse at center, black 50%, transparent 100%);
}



.collection_content.historie_jahr {
    font-size: 6rem;
    font-family: 'Coolvetica';
    line-height: 1;
    position: relative;
}
/* 
.collection_list.historie:nth-child(even) .collection_container .collection_content.historie_jahr:after {
    right: unset;
    left: -37px;
} */

.collection_content.historie_jahr:after {
    content: '';
    background: #fff;
    width: 15px;
    height: 15px;
    position: absolute;
    right: -37px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 9999px;
    z-index: 1;
}

.history_timeline:after {
    content: '';
    background: #fff;
    height: 100%;
    width: 2px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    border-radius: 5px;
}

.historie div#content {
    margin-top: -80px;
}




.history_timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    width: 100%;
}




/* 
.collection_list.historie:nth-child(even) .collection_container {
    align-items: flex-start;
    text-align: left;
    margin-top: 0;  /* war vorher 540px 
}
 */

.collection_content.historie_text {
    width: 80%;
}

.line {
    position: absolute;
    left: 10px;
    height: 4px;
    width: 35px;
    background: var( --fc-white);
    border-radius: 2px;
    display: block;
    transition: 0.5s;
    transform-origin: center;
}

.line:nth-child(1) {
    top: 12px;
}

.line:nth-child(2) {
    top: 24px;
}

.line:nth-child(3) {
    top: 36px;
}

div#toggle_navigation.active>.hamburg .line:nth-child(1) {
    transform: translateY(12px) rotate(-45deg);
}

div#toggle_navigation.active>.hamburg .line:nth-child(2) {
    opacity: 0;
}

div#toggle_navigation.active>.hamburg .line:nth-child(3) {
    transform: translateY(-12px) rotate(45deg);
}


/* end* Header */

.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}

.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
    float: left;
}

.col-xs-12 {
    width: 100%;
}

.col-xs-11 {
    width: 91.66666667%;
}

.col-xs-10 {
    width: 83.33333333%;
}

.col-xs-9 {
    width: 75%;
}

.col-xs-8 {
    width: 66.66666667%;
}

.col-xs-7 {
    width: 58.33333333%;
}

.col-xs-6 {
    width: 50%;
}

.col-xs-5 {
    width: 41.66666667%;
}

.col-xs-4 {
    width: 33.33333333%;
}

.col-xs-3 {
    width: 25%;
}

.col-xs-2 {
    width: 16.66666667%;
}

.col-xs-1 {
    width: 8.33333333%;
}

.col-xs-pull-12 {
    right: 100%;
}

.col-xs-pull-11 {
    right: 91.66666667%;
}

.col-xs-pull-10 {
    right: 83.33333333%;
}

.col-xs-pull-9 {
    right: 75%;
}

.col-xs-pull-8 {
    right: 66.66666667%;
}

.col-xs-pull-7 {
    right: 58.33333333%;
}

.col-xs-pull-6 {
    right: 50%;
}

.col-xs-pull-5 {
    right: 41.66666667%;
}

.col-xs-pull-4 {
    right: 33.33333333%;
}

.col-xs-pull-3 {
    right: 25%;
}

.col-xs-pull-2 {
    right: 16.66666667%;
}

.col-xs-pull-1 {
    right: 8.33333333%;
}

.col-xs-pull-0 {
    right: auto;
}

.col-xs-push-12 {
    left: 100%;
}

.col-xs-push-11 {
    left: 91.66666667%;
}

.col-xs-push-10 {
    left: 83.33333333%;
}

.col-xs-push-9 {
    left: 75%;
}

.col-xs-push-8 {
    left: 66.66666667%;
}

.col-xs-push-7 {
    left: 58.33333333%;
}

.col-xs-push-6 {
    left: 50%;
}

.col-xs-push-5 {
    left: 41.66666667%;
}

.col-xs-push-4 {
    left: 33.33333333%;
}

.col-xs-push-3 {
    left: 25%;
}

.col-xs-push-2 {
    left: 16.66666667%;
}

.col-xs-push-1 {
    left: 8.33333333%;
}

.col-xs-push-0 {
    left: auto;
}

.col-xs-offset-12 {
    margin-left: 100%;
}

.col-xs-offset-11 {
    margin-left: 91.66666667%;
}

.col-xs-offset-10 {
    margin-left: 83.33333333%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-8 {
    margin-left: 66.66666667%;
}

.col-xs-offset-7 {
    margin-left: 58.33333333%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-5 {
    margin-left: 41.66666667%;
}

.col-xs-offset-4 {
    margin-left: 33.33333333%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-2 {
    margin-left: 16.66666667%;
}

.col-xs-offset-1 {
    margin-left: 8.33333333%;
}

.col-xs-offset-0 {
    margin-left: 0;
}

#slider-wrapper {
    position: relative;
}

div#slider {
    height: 100%;
    position: relative;
}

div#slider-title .container {
    width: 100%;
}

#slider #slider-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#slider div#slider-title h1 {
    color: var( --fc-white);
}

#slider-wrapper div.slider-untertitle {
    position: absolute;
    bottom: 50%;
    width: 100%;
    color: var(--fc-white);
    padding: 20px 0;
    transform: translateY(50%);
    z-index: 1;
}


#footer {
    clear: both;
    padding: 70px 0 25px 0;
    font-size: 15px;
    position: relative;
    float: left;
    width: 100%;
    background: #0003;
}

.footer-sitemap {
    height: auto;
    clear: both;
    width: 100%;
    margin: 0 auto;
    display: block;
    float: left;
    margin-bottom: 40px;
}

.footer-sitemap ul {
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}


#footer li {
    list-style-type: none;
}

.footer-sitemap li.level_1 {
    font-weight: 500;
    font-size: 20px;
    width: auto;
    float: left;
    padding: 0px 20px;

}

.component.rechtliches {
    display: flex;
    justify-content: space-between;
    color: #858585;
    align-items: center;
}

#footer li.level_1 a {
    margin-bottom: 7px;
    display: inline-block;
    color: var(--fc-white);
    text-decoration: none;
}



.footer-sitemap li.level_2 {
    font-weight: normal;
    font-size: 15px;
    text-transform: initial;
}

div#privacy-policy { padding:0!important; background:#0000007d!important; text-decoration:none; float:none!important; clear:both!important; width:100%; font-size:var(--fs-500) }

div#privacy-policy a {
    color: inherit;
}





#privacy-policy .footer-1 {
    text-align: left;
}

div#privacy-policy ul li {
    display: inline-block;
    padding: 0 10px;
}



.owl-dots {
    height: 10px;
}

.owl-dots {
    position: absolute;
    width: 100%;
    height: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 18px;
}

.owl-dot span {
    height: 10px;
    width: 10px;
    background: #ccc;
    position: relative;
    float: left;
    border-radius: 500px;
    margin: 0 2px;
}

.owl-dot.active span {
    position: relative;
    float: left;
    height: 10px;
    width: 10px;
    background: var(--primary-accent);
    border-radius: 500px;
}

.owl-dots {
    position: absolute;
    width: 100%;
    height: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slidecontent_content_container {
    display: none;
}

.slidecontent_headline:after {
    content: "";
    position: absolute;
    right: 15px;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--light-grey);
    border-right: 2px solid var(--light-grey);
    transform: rotate(45deg);
    transition: 300ms;
}

.slidecontent_headline.active:after {
    transform: rotate(-135deg);
    transition: 300ms;
    margin-top: 5px;
}

.slidecontent_headline {
    padding: 10px 40px 8px 0px;
    cursor: pointer;
}

.g-recaptcha iframe {
    border-radius: 0;
    height: auto;
}


 
 /*END 1249px*/


 /*END 1024px*/


 /*END 992px*/
    
 /*END 768px*/

 /*END 600px*/

 /*END 500px*/
   

    











/* Historie und Unsere Könige - Saubere abwechselnde Darstellung (Links/Rechts) */

/* Container für Historie & Unsere Könige Standardausrichtung (links) */
.collection_list.historie {
    width: 50%;
    padding: 30px;
    position: relative;
}

/* Jeder gerade Container (2,4,6...) wird rechts ausgerichtet */
.collection_list.historie:nth-child(even) {
    margin-left: 50%; /* Container auf rechte Seite verschieben */
    text-align: left;
}

/* Jeder ungerade Container (1,3,5...) bleibt links */
.collection_list.historie:nth-child(odd) {
    margin-left: 0;
    text-align: right;
}

/* Flex-Layout für Inhalte in jedem Container */
.collection_list.historie .collection_container {
    display: flex;
    flex-direction: column;
}

/* Inhalte im ungeraden Container rechtsbündig */
.collection_list.historie:nth-child(odd) .collection_container {
    align-items: flex-end;
    text-align: right;
}

/* Inhalte im geraden Container linksbündig */
.collection_list.historie:nth-child(even) .collection_container {
    align-items: flex-start;
    text-align: left;
}

/* Timeline-Linie mittig und Kreise */
.history_timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 30px; /* Abstand zwischen Elementen */
}

.history_timeline::after {
    content: '';
    position: absolute;
    background: #fff;
    width: 2px;
    top: 0;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
    border-radius: 5px;
}

.collection_content.historie_jahr {
    font-size: 6rem;
    font-family: 'Coolvetica';
    line-height: 1;
    position: relative;
}

/* Kreis beim Jahr rechts (ungerade Einträge) */
.collection_list.historie:nth-child(odd) .collection_content.historie_jahr::after {
    content: '';
    background: #fff;
    width: 15px;
    height: 15px;
    position: absolute;
    right: -36px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 9999px;
    z-index: 1;
}

/* Kreis beim Jahr links (gerade Einträge) */
.collection_list.historie:nth-child(even) .collection_content.historie_jahr::after {
    content: '';
    background: #fff;
    width: 15px;
    height: 15px;
    position: absolute;
    left: -36px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 9999px;
    z-index: 1;
}

/* Responsive Anpassungen (Mobil) */






.collection_list.fehler-404 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 30px;
    position: relative;
    text-align: center;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: var(--br-primary);
    margin: 0 auto;
}

.collection_list.fehler-404 .collection_container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.collection_list.fehler {
    float: none !important;
    clear: both;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    text-align: center;
    display: block;
}


.collection_content.fehler-404 > img {
    width: 33.33% !important;
    max-width: 300px;
    height: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    object-fit: cover !important;

    /* Weicher Übergang */
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 60%);
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 60%);
}



.collection_list.fehler-404 .collection_content.fehler_text h1 {
    font-size: 10rem;
    font-family: 'Coolvetica';
    margin: 0;
    color: white;
}

.collection_list.fehler-404 .collection_content.fehler_text p {
    font-size: 2rem;
    color: var(--fc-white);
    margin-top: 1rem;
}


.owl-drag {
    object-fit: scale-down !important;
object-position: top center;
}


/* Einheitliches Box-Modell */
*, *::before, *::after {
    box-sizing: border-box;

}


.koenige div#content {
    margin-top: -80px;  /* oder ein Wert, der gut aussieht */
}

.unsere-koenige .history_timeline::after { top: 0 !important }

.unsere-koenige .collection_list.koenige:first-child { margin-top: 0 !important }

/* Fix: Auf der Seite Unsere Könige Footer wieder an den unteren Rand
   Negative Abstände für #content hier neutralisieren */
.unsere-koenige div#content{margin-top:0!important}
.koenige div#content{margin-top:0!important}
/* Sticky-Footer nur auf "Unsere Könige": Footer-Leiste fixieren und Content polstern */
/* Footer fließt normal unterhalb der Timeline */
  

/* Könige-Eintrag */
.collection_list.koenige {
    width: 50%;
    padding: 0px; /* Kann beliebig angepasst werden */
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Inhalt (Container für Jahr, Bild, Text) */
.collection_list.koenige .collection_container {
    display: flex;
    flex-direction: column;
}

/* Linke Einträge */
.collection_list.koenige:nth-child(odd) {
    align-self: flex-start;
    margin-right: 30px;  /* Abstand zur Mittellinie */
}


.collection_list.koenige:nth-child(odd) .collection_container {
    align-items: flex-end;
    text-align: right;
    right: 30px;
}

/* Rechte Einträge */
.collection_list.koenige:nth-child(even) {
    align-self: flex-end;
    margin-left: 30px;   /* Abstand zur Mittellinie */
}

.collection_list.koenige:nth-child(even) .collection_container {
    align-items: flex-start;
    text-align: left;
    left: 30px;
}

/* Jahr mit Kreis */
.collection_content.koenig_jahr {
    font-size: 6rem;
    font-family: 'Coolvetica';
    line-height: 1;
    position: relative;
}

/* Kreis beim Jahr (rechts bei linken Einträgen) */
.collection_list.koenige:nth-child(odd) .collection_content.koenig_jahr::after {
    content: '';
    background: #fff;
    width: 15px;
    height: 15px;
    position: absolute;
    right: -36px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 9999px;
    z-index: 1;
}

/* Kreis beim Jahr (links bei rechten Einträgen) */
.collection_list.koenige:nth-child(even) .collection_content.koenig_jahr::after {
    content: '';
    background: #fff;
    width: 15px;
    height: 15px;
    position: absolute;
    left: -36px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 9999px;
    z-index: 1;
}

/* Bildstil */
.collection_content.koenig_img img {
    -webkit-mask-image: radial-gradient(ellipse at center, black 50%, transparent 100%);
    mask-image: radial-gradient(ellipse at center, black 50%, transparent 100%);
    object-fit: cover;
}




.translation_bilder {
    will-change: transform;
    transition: transform 0.1s linear; /* wie bei Elementor */
  }
  
  .translation_bilder .imgcontent {
    transform: translateY(var(--translateY, 0px));
    will-change: transform;
  }
  
  
  
  #calendly-embed {
    background-color: #1a1a1a; /* Dunkler Hintergrund passend zur Seite */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
  

#header_1 .component.logo .imgcontent a { cursor:pointer; outline:none; display:inline-block; line-height:0; padding:0; margin:0; border-radius:50%; box-shadow:none; transition:box-shadow .3s ease }
/* Intensiver Glow wie ursprünglich (mehr Blur + Spread, zweistufig) */
header:hover #header_1 .component.logo .imgcontent a { 
  box-shadow:
    0 0 20px 8px rgba(255,255,255,.9),
    0 0 36px 16px rgba(255,255,255,.45);
}





.component.logo .imgcontent img{display:block;transition:transform .4s ease}
header:hover .component.logo .imgcontent img{transform:scale(1.1)}
/* kein border-radius/box-shadow direkt am Bild → Schärfe bleibt erhalten */


/* CS2025-17-05 nur Logo als link und nicht den gesamten container

/* 1. Deaktiviere Klicks auf den gesamten Header-Container */
#header_1 {
  }
  
  /* 2. Erlaube Klicks nur für das <a> und das <img> darin */
  #header_1 img {
  }
  
  /* 3. Sorge dafür, dass der Link nur so groß ist wie sein Inhalt */
  #header_1 img {

    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    flex: 0 0 auto !important;
  }
    




/* 1) Button-Grund: Farbe + Textur */
.component.mitglied-werden .textcontent a[role="button"] {
    position: relative;
    display: inline-block;
    padding: var(--p-button);
    border-radius: 10px;
    overflow: hidden;

    /* Basis-Grün + Used-Textur als zweiter Hintergrund */
    background-color: var(--primary-accent);
    background-image: url('used.png');
    background-repeat: repeat;
    background-blend-mode: multiply !important;
    /* Schrift, Cursor etc. */
    color: var(--fc-white);
    text-decoration: none;
    cursor: pointer;

    
}

  
  /* 2) Blech-Rand & Relief im ::before */
  .component.mitglied-werden .textcontent a[role="button"]::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
  
    /* Rahmen + Schatten für den geprägten Look */
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow:
      inset 0 2px 6px rgba(255,255,255,0.05),
      inset 0 -2px 6px rgba(0,0,0,0.3),
      0 4px 8px rgba(0,0,0,0.5);
    z-index: 1;
  }
  
  /* 3) Einschuss-PNG im ::after */
  .component.mitglied-werden .textcontent a[role="button"]::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: url('einschuss.png') center/contain no-repeat;
    pointer-events: none;
    left: var(--mouse-x, 50%);
    top:  var(--mouse-y, 50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.1s ease;
    z-index: 2;
  }
  
  /* 4) Sichtbar machen */
  .component.mitglied-werden .textcontent a[role="button"].einschuss-active::after {
    opacity: 1;
  }
  


/* 1) Grund-Styling für alle Buttons: Farbe + Used-Textur */
a[role="button"] {
    position: relative;
    display: inline-block;
    padding: var(--p-button);
    border-radius: 10px;
    overflow: hidden;
  
    /* Basis-Grün + Used-Textur als zweiter Hintergrund */
    background-color: var(--primary-accent);
    background-image: url('used.png');
    background-repeat: repeat;
    background-blend-mode: multiply !important;
  
    /* Text, Cursor etc. */
    color: var(--fc-white);
    text-decoration: none;
    cursor: pointer;
  }
  
  /* 2) Blech-Kante & Relief im ::before */
  a[role="button"]::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
  
    /* Rahmen + Schatten für den geprägten Look */
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow:
      inset 0 2px 6px rgba(255,255,255,0.05),
      inset 0 -2px 6px rgba(0,0,0,0.3),
      0 4px 8px rgba(0,0,0,0.5);
    z-index: 1;
  }
  
  /* 3) Einschuss-PNG im ::after (optional, wenn Du es für alle Buttons nutzen willst) */
  a[role="button"]::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: url('einschuss.png') center/contain no-repeat;
    pointer-events: none;
  
    /* JS setzt hier --mouse-x/--mouse-y */
    left: var(--mouse-x, 50%);
    top:  var(--mouse-y, 50%);
    transform: translate(-50%, -50%);
  
    opacity: 0;
    transition: opacity 0.1s ease;
    z-index: 2;
  }
  
  /* 4) Sichtbar machen, sobald JS die Klasse toggelt */
  a[role="button"].einschuss-active::after {
    opacity: 1;
  }
  








/* ======================================
   News Styles for IC Intranet
   Structured, deduplicated, and optimized
   ======================================

/* —— YEAR FILTER —— */
select#year-select {
    width: auto;
    padding: 11px 13px;
    background: var(--bg-white);
    display: none;
}
.year_filter {
    width: 100%;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.year_filter .textcontent {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.year_filter_button {
    border: 1px solid var(--border);
    padding: 10px 16px;
    border-radius: var(--br);
    background: var(--blur_elevated);
    cursor: pointer;
    transition: transform 200ms;
}
.year_filter_button.active {
    background: var(--clr-mandant);
    color: var(--fc-white-8);
    border-color: var(--clr-mandant);
}
.full_preview .year_filter {
    display: none;
}


/* —— NEWS FILTER HERO & SEARCH —— */
.news_filter_hero {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
body input#searchbar_news {
    background: var(--bg-white) !important;
    border-color: var(--bg-white) !important;
    color: var(--fc-dark)   !important;
}

/* —— NEWS LIST TILES —— */

/* 1. Container definieren: 4 Spalten, Gutter, zentriert auf der Seite */
.collection_list.news  {
  display: grid;
      /* Seitenabstand links/rechts */
  margin: 0 auto;          /* zentriert, falls max-width gesetzt wird */
  box-sizing: border-box;
  /* optional: max-width, um Gesamtlänge zu begrenzen */
  /* max-width: 1200px; */
}



.collection_list.news .collection_container {
    width: auto;             /* entferne feste Breiten */
    flex: none; 
    display:  grid;         /*display grid CS*/
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #ffffff2e;
    
    border-radius: var(--br-primary);
    background: #ffffff05;
    overflow: hidden;
    transition: transform 300ms;
    height: 440px;
    min-height: 359px;
}
.collection_list.news .collection_container:hover  {
    transform: translateY(-4px);
    background: #ffffff14;
    
}


















/* 1. Vorschau-Container: fixe Größe & overflow */
.collection_list.news .collection_content.vorschaubild {
  width: 100%;   /* Breite des Fensters */
  height: 240px;  /* Höhe des Fensters */
  overflow: hidden;
  position: relative;
}


/* Image preview in tiles */
.collection_list.news .collection_content.vorschaubild img {
    width: 100%;    /* Bildbreite an Container anpassen */
    height: auto;   /* Höhe im natürlichen Seitenverhältnis belassen */
    display: block; /* lästige Inline-Abstände vermeiden */
    border-bottom: 4px solid var(--clr-mandant);
    object-fit: cover;           /* Bild so skalieren, dass es das Fenster füllt */
    object-position: top center; /* nur den oberen Teil zeigen */
    display: block; 
}

/* Date display */
.collection_list.news .collection_content.date {
    padding: 1rem 1rem 0.3125rem;
    font-size: var(--fs-300);
}



/* Teaser text */
.collection_list.news .collection_content.teaser {
    padding: 0 1rem 1rem;
    font-size: var(--fs-400);
    line-height: 1.4;
    /*color: var(--fc-dark);*/
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Action button */
.collection_list.news .collection_link a.button {
    display: inline-flex;
    align-items: center;
    padding: .5rem 1rem;
    margin: 1rem;
    background-color: var(--clr-mandant);  /* geändert */
    color: var(--fc-white-8);
    text-decoration: none;
    border-radius: var(--br);
    transition: background-color 200ms;     /* geändert */
}
.collection_list.news .collection_link a.button:hover  {
    background-color: var(--clr-mandant-hover);  /* geändert */
}


/* Link styles within content */
.collection_list.news .collection_content a  {
    color: var(--clr-mandant);
}

/* Optional feed wrapper override */
.feed .collection_container {
    background: var(--blur_elevated);
    border-radius: var(--br);
    overflow: hidden;
}

/* Text content background & padding */
.collection_list.news .collection_container .collection_content:not(.news_img):not(.vorschaubild)  {
    background: var(--blur_elevated);
    padding: 1rem 1.3rem;
}

/* Corner fine-tuning */
.collection_list.news .collection_container .collection_content:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.collection_list.news .collection_container .collection_content:last-child {
    border-bottom-left-radius: var(--br);
    border-bottom-right-radius: var(--br);
}
/* 

/* aus globalcss*/


/* (entfernt – frühere News-Grid/Float-Basis, durch finale Konsolidierung ersetzt) */


.collection_content_full {
    padding: 5rem;
}

.collection_content_full .collection_content {
    background: none !important;
    padding: 0 !important;
}










/* News Vorschau: Reihenfolge per CSS (Bild → Datum → Titel → Teaser → Button) */
.collection_list.news .collection_container{display:flex;flex-direction:column}
.collection_list.news .collection_content.vorschaubild{order:1}
.collection_list.news .collection_content.date{order:2}
.collection_list.news h3.collection_content.news__title.title.custom{order:3}
.collection_list.news .collection_content.teaser{order:4}
.collection_list.news .collection_link{order:5}

/* 1. Vorschau-Container: fixe Größe & overflow */
.collection_list.news .collection_content.vorschaubild{width:100%;max-height:240px;overflow:hidden;position:relative}
/* Image preview in tiles */
.collection_list.news .collection_content.vorschaubild img{width:100%;height:100%;display:block;object-fit:cover;object-position:top center;border-bottom:4px solid var(--clr-mandant)}
/* Date display */
.collection_list.news .collection_content.date{padding:1rem 1rem .3125rem;font-size:var(--fs-300)}
/* Teaser text */
.collection_list.news .collection_content.teaser{padding:0 1rem 1rem;font-size:var(--fs-400);line-height:1.4;overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}
/* Action button */
.collection_list.news .collection_link a.button{display:inline-flex;align-items:center;padding:.5rem 1rem;margin:1rem;background-color:var(--clr-mandant);color:var(--fc-white-8);text-decoration:none;border-radius:var(--br);transition:background-color 200ms}
.collection_list.news .collection_link a.button:hover{background-color:var(--clr-mandant-hover)}
/* Link styles within content */
.collection_list.news .collection_content a{color:var(--clr-mandant)}

/* ===== NEU: Termine Detail — bereinigt (Basisregeln) ===== */

.collection_full.termine .collection_container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "left"
    "right";
  gap: 2rem;
  padding: 30px 15px;
  align-items: start;
}

.collection_full.termine .collection_container > .collection_content.termine_content_left {
  grid-area: left;
  position: static;
  top: auto;
  padding: 0 15px 15px;
}
.collection_full.termine .collection_container > .collection_content.gallery {
  grid-area: left;
  padding: 0 1rem;
  width: auto;
  box-sizing: border-box;
}
.collection_full.termine .collection_container > .collection_content.termine_content_right {
  grid-area: right;
  padding: 15px;
}

.collection_content.termine_date:before,
.collection_full.termine .collection_content.termine_date:before {
  content: 'am ';
}


.collection_full.termine .collection_content.termine_date {
  padding-block: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}
.collection_full.termine .collection_content.termine_time {
  padding-block: 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

.collection_full.termine .collection_content.youtube_video,
.collection_full.termine .collection_content.video-code,
.collection_full.termine .collection_content.termine_link,
.collection_full.termine .collection_content.contactform {
  padding-block-end: 2rem;
  float: left;
  width: 100%;
}

.collection_full.termine .collection_content.vorschaubild {
  padding-block-end: 1rem;
  width: 100%;
  float: left;
}

.collection_full.termine .collection_content.artikeltext {
  padding-block-end: 2rem;
  float: left;
  width: 100%;
  padding-block-start: 1rem;
}

.collection_full.termine .owl-item img {
  height: 170px !important;
  object-fit: cover !important;
}

.collection_content_full {
  padding: 5rem;
}
.collection_content_full .collection_content {
  background: none !important;
  padding: 0 !important;
}
.full_preview main {
  background: var(--blur_into_white);
}

.collection_full.termine .collection_content.bilduntertitel {
  font-size: var(--fs-300);
  padding-block: 5px !important;
}

.collection_full.termine .articel_details {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0rem;
  flex-direction: column;
  padding: 0;
}
.collection_full.termine .date_time {
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: .5;
  flex-direction: row-reverse;
}

/* ===== KRITISCHER BLOCK — muss ganz unten stehen (float/margin Technik für Desktop) ===== */

 /* Termine Detail: final – Bild links per Float, Text rechts per Margin (Safari/Chrome/Firefox) */
.collection_full.termine .collection_content.termine_date:before{content:'am ' !important}
@media (min-width:600px){
  .collection_full.termine .collection_container{display:block!important;overflow:hidden!important}
  /* linke Spalte: Bild (50%) */
  .collection_full.termine .collection_content.vorschaubild{
    float:left!important;
    width:49%!important;
    max-width:none!important;
    margin:0 0 0 0!important;
  }
  /* rechte Spalte: kompletter Text (50%) */
  .collection_full.termine .collection_content.termine__title,
  .collection_full.termine .collection_content.termine_date,
  .collection_full.termine .collection_content.termine_time,
  .collection_full.termine .collection_content.artikeltext,
  .collection_full.termine .collection_content.contactform{
    margin-left:51%!important;
    float:none!important;
    width:auto!important;
  }
}
/* === NEUE: Termine Detail — final (einzufügen am Dateiende) === */

/* Container (Mobile: 1-spaltig Grid, ab 600px 2-spaltig) */
.collection_full.termine .collection_container { display: grid; grid-template-columns: 1fr; grid-template-areas: "left" "right"; gap: 2rem; padding: 30px 15px; align-items: start; }

/* linke / rechte Bereiche (Grid-Areas) */
.collection_full.termine .collection_container > .collection_content.termine_content_left { grid-area: left; position: static; top: auto; padding: 0 15px 15px; }
.collection_full.termine .collection_container > .collection_content.gallery { grid-area: left; padding: 0 1rem; width: auto; box-sizing: border-box; }
.collection_full.termine .collection_container > .collection_content.termine_content_right { grid-area: right; padding: 15px; }

/* Desktop: 2-spaltiges Grid ab 600px */
@media (min-width: 600px) { .collection_full.termine .collection_container { grid-template-columns: minmax(340px, 1fr) 1fr; grid-template-areas: "left right"; column-gap: 3rem; } }

/* Datumsvorlauf (bleibt unverändert) */
.collection_content.termine_date:before, .collection_full.termine .collection_content.termine_date:before { content: 'am '; }

/* Datum / Zeit — Erscheinungsreihenfolge bleibt erhalten */
.collection_full.termine .collection_content.termine_date { padding-block: 1rem; border-bottom: 1px solid var(--border); margin-bottom: 1rem; }
.collection_full.termine .collection_content.termine_time { padding-block: 1rem; border-bottom: 1px solid var(--border); margin-bottom: 1rem; }

/* Media / Video / Links / Kontaktformular — floats gewährleisten Quellfluss */
.collection_full.termine .collection_content.youtube_video, .collection_full.termine .collection_content.video-code, .collection_full.termine .collection_content.termine_link, .collection_full.termine .collection_content.contactform { padding-block-end: 2rem; float: left; width: 100%; }

/* Vorschaubild — float sorgt dafür, dass Bild zuerst im Layout sitzt */
.collection_full.termine .collection_content.vorschaubild { padding-block-end: 1rem; width: 100%; float: left; }

/* Artikeltext — float + full width (erhält die Reihenfolge) */
.collection_full.termine .collection_content.artikeltext { padding-block-end: 2rem; float: left; width: 100%; padding-block-start: 1rem; }

/* Owl/Preview (nur Bildstil) */
.collection_full.termine .owl-item img { height: 170px !important; object-fit: cover !important; }

/* Wrapper / Sonstiges */
.collection_content_full { padding: 5rem; }
.collection_content_full .collection_content { background: none !important; padding: 0 !important; }
.full_preview main { background: var(--blur_into_white); }

/* Bildunterschrift */
.collection_full.termine .collection_content.bilduntertitel { font-size: var(--fs-300); padding-block: 5px !important; }

/* Artikeldetails / Datum+Zeit-Row (Layout / Reihenfolge) */
.collection_full.termine .articel_details { max-width: 1000px; margin: 0 auto; display: flex; align-items: flex-start; gap: 0rem; flex-direction: column; padding: 0; }
.collection_full.termine .date_time { display: flex; align-items: center; gap: 1rem; opacity: .5; flex-direction: row-reverse; }

/* (entfernt – frühere News-Grid-Variante, durch finale Konsolidierung ersetzt) */

/* Direkt unter dem Bild, kleiner Abstand */
.collection_full.news .collection_content.vorschaubild{padding-block-end:.5rem!important;margin-bottom:0!important}
.collection_full.news .collection_content.gallery{margin-top:.5rem!important;padding:0!important}

/* Container-Abstände wie global.css (Padding + Gap) */
.collection_full.news .collection_container{padding:30px 15px;gap:4rem;align-items:start}

/* Galerie-Navigation mittig über dem Bild (übersteuert generische .owl-nav-Regeln) */
.collection_full.news .collection_content.gallery .owl-carousel{position:relative}
.collection_full.news .collection_content.gallery .owl-nav{display:flex!important;position:absolute;top:50%;left:0;right:0;transform:translateY(-50%);align-items:center;justify-content:space-between;padding:0 10px;z-index:2}
.collection_full.news .collection_content.gallery button.owl-prev,
.collection_full.news .collection_content.gallery button.owl-next{max-width:28px}

/* Konsistente Thumbnail-Höhe in der Galerie */
.collection_full.news .collection_content.gallery .owl-item img{height:750px!important;object-fit:cover!important;}
  .collection_full.news .collection_content.gallery .owl-item a{width:100%!important;display:block; border-radius: 5px;}
  
/* ===== Strict two-column layout via wrappers (no cross influence) ===== */

/* (entfernt – Zwischenvariante, durch finalen Grid-Block ersetzt) */

/* Main image fills the left column width */
.collection_full.news .collection_content.vorschaubild img{width:100%!important;height:auto!important;display:block}

/* Remove legacy width constraints that shrink to ~25% */
.collection_full.news .collection_container> .collection_content.gallery{width:auto!important;max-width:100%!important}
.collection_full.news .collection_container> .collection_content.news_content_left{width:auto!important;max-width:100%!important}
/* Ensure the main preview image fills the left column width – bereits gesetzt, Duplikat entfernt */

/* Hard override legacy 49% widths from float layout block */
@media (min-width:600px){
  .collection_full.news .collection_container > .collection_content.news_content_left,
  .collection_full.news .collection_container > .collection_content.gallery,
  .collection_full.news .collection_container > .collection_content.bilduntertitel,
  .collection_full.news .collection_container > .collection_content.accept_certificate{width:auto!important;max-width:100%!important}
  .collection_full.news .collection_container > .collection_content{margin-left:0!important}
}
/* Hide empty left-side blocks */
.collection_full.news .collection_container> .collection_content.vorschaubild:empty{display:none!important}
.collection_full.news .collection_container> .collection_content.Youtube:empty{display:none!important}
.collection_full.news .collection_container> .collection_content.youtube_video:empty{display:none!important}
.collection_full.news .collection_container> .collection_content.Video:empty{display:none!important}

/* No extra gap before date prefix */
.collection_full.news .collection_content.date:before{content:'am ';margin-left:0!important}

/* Stack author and date vertically in right column */
.collection_full.news .collection_content.news_content_right .collection_content.author,
  .collection_full.news .collection_content.news_content_right .collection_content.date{display:block!important;width:100%!important;float:none!important;clear:both!important}
  
/* Teaser-Linie + Abstand wie global.css */
.collection_full.news .collection_content.teaser{padding-block:1rem;border-bottom:1px solid var(--border);margin-bottom:1rem}
/* Falls global :empty ausgeblendet wird: Teaser auch leer sichtbar halten (für Trennlinie) */
.collection_full.news .collection_content.teaser:empty{display:block!important}

/* ===== Final override: enforce independent two-column grid for Full News ===== */
@media (min-width:600px){
  /* Reassert grid (wins over older float-based blocks below) */
  .collection_full.news .collection_container{display:grid!important;grid-template-columns:minmax(340px,1fr) 1fr;gap:4rem;align-items:start}
  /* Neutralize legacy float/margin/width on direct children */
  .collection_full.news .collection_container> .collection_content{margin:0!important;float:none!important;width:auto!important;clear:none!important;display:block!important;max-width:100%!important}
  /* Place wrappers at row 1 (top-aligned) */
  .collection_full.news .collection_container> .collection_content.news_content_left{grid-column:1!important;grid-row:1!important}
  .collection_full.news .collection_container> .collection_content.news_content_right{grid-column:2!important;grid-row:1!important}
  /* Left media blocks fill column width */
  .collection_full.news .collection_content.gallery,
  .collection_full.news .collection_content.news_content_left,
  .collection_full.news .collection_content.bilduntertitel,
  .collection_full.news .collection_content.accept_certificate{width:auto!important;max-width:100%!important}
}
/* Leere Elemente ausblenden (damit keine Lücken entstehen) */
.collection_full.news .collection_content.vorschaubild:empty{display:none!important}
.collection_full.news .collection_content.youtube_video:empty{display:none!important}
.collection_full.news .collection_content.Youtube:empty{display:none!important}

/* Artikeltext-Abstände wie global.css */
.collection_full.news .collection_content.artikeltext{padding-block-end:2rem;padding-block-start:1rem}

  /* Rechts-Spalte positionieren (Titel bis Artikeltext) */
  .collection_full.news h3.collection_content.news__title.title.custom{grid-column:2!important;grid-row:1!important;margin-top:0}
  .collection_full.news .collection_content.author,
  .collection_full.news .collection_content.date,
  .collection_full.news .collection_content.teaser,
  .collection_full.news .collection_content.artikeltext,
  .collection_full.news .collection_content.news_link,
  .collection_full.news .collection_content.video-code,
  .collection_full.news .collection_content.contactform{grid-column:2!important}

  /* Links-Spalte positionieren (Bilder, YouTube, Galerie) */
  .collection_full.news .collection_content.vorschaubild{grid-column:1!important}
  .collection_full.news .collection_content.vorschaubild:not(:first-of-type){grid-column:1!important}
  .collection_full.news .collection_content.youtube_video,
  .collection_full.news .collection_content.Youtube{grid-column:1!important}
  .collection_full.news .collection_container > .collection_content.gallery{grid-column:1!important}

/* News-Detailseiten: Globale Suchleiste ausblenden */
body:has(.collection_full.news) .searchbar{display:none!important}

/* (entfernt – Doppeltes Neutralisieren, durch vorherigen Grid-Block abgedeckt) */
@media (max-width:599.98px){
  /* (entfernt – Float-Reset bereits zuvor global neutralisiert) */
}































.full_preview main {
    background: var(--blur_into_white);
}

.collection_full.news .collection_content.bilduntertitel {
    font-size: var(--fs-300);
    padding-block: 5px !Important;
}





.collection_full.news .articel_details {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 0rem;
    flex-direction: column;
    padding: 0;
}

.collection_full.news .date_time {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: .5;
    flex-direction: row-reverse;
}

.collection_content.author:before {
    content: 'von ';
}





/* Darstellung KALENDER RECHTS*/
/* Darstellung KALENDER RECHTS*/
/* Darstellung KALENDER RECHTS*/

/* ─── A) Fixed-Position am rechten Viewport-Rand ───────────── */
#middle_right {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
  }
  
  /* ─── B) Link-Container und Bild skalieren ─────────────────── */
  #middle_right .kalender-link {
    display: block;       /* füllt #middle_right komplett */
    position: relative;   /* für das Overlay */
    width: 100px;         /* fixe Breite */
    height: auto;
  }
  
  #middle_right .kalender-bg {
    display: block;
    width: 100%;          /* genau so breit wie der Link-Container */
    height: auto;         /* behält Seitenverhältnis */
    max-width: none;      /* überschreibt evtl. globales max-width */
    max-height: none;     /* überschreibt evtl. globales max-height */
  }
  
  /* ─── C) Datum-Overlay über dem Kalenderbild ───────────────── */
  #middle_right .termine-date-overlay {
    position: absolute;

  left: 50%;
  transform: translateX(-50%);

  bottom: 10px;  /* 10px vom unteren Rand des Bild-Containers */

    /* Tag und Monat enger zusammenrücken */
    display: flex;
    flex-direction: column;
    justify-content: center;       /* zentriert beide Zeilen vertikal */
    align-items: center;
    text-align: center;
    /* Schriftfeinjustierung */
    font-size: 1.6rem;             /* etwas kleiner */
    line-height: 1;                /* engerer Zeilenabstand */
    padding: 0.1em 0;             /* minimaler Puffer oben/unten */
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;              /* leicht reduziert */
    font-weight: bold;
    color: #8b5e3c;
    text-shadow: 0 0 4px rgba(0,0,0,0.4);
  }
  
  



/* Basis-Overlay (entferne ggf. alte Regeln) */
.collection_list.termine .collection_container .termine-date-overlay {
    position: absolute;
    top: 50%;                                    /* vertikal zentriert */
    right: calc(-1 * var(--termine-height) / 2); /* halb außerhalb rechts */
    transform: translateY(-50%);
  
    width: var(--termine-height);
    height: var(--termine-height);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  
    font-size: 1rem;          /* etwas kleiner für Kürzel */
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 4px rgba(0,0,0,0.7);
  
    background: rgba(0,0,0,0.3); /* oder transparent falls dein Logo sichtbar */
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
  }








/* 1. Override für die Termine-Liste selbst */
.collection_list.termine {
    width: 80% !important;    /* statt 33,33% jetzt 80% */
    float: none !important;   /* kein float mehr */
    margin: 0 auto;           /* zentriert die Liste */
    padding: 15px;            /* gewohnter Innenabstand */
  }
  
  /* 2. Termine-Container */
  .collection_list.termine .collection_container {
    position: relative;                  /* für das Logo-Pseudo */
    display: flex;                       /* Block-Level-Flex */
    flex-wrap: nowrap;                   /* keine Umbrüche */
    align-items: center;                 /* vertikal zentrieren */
    gap: 1rem;                           /* Abstand zwischen Items */
    width: 100% !important;              /* füllt die 80%-Liste komplett */
    height: var(--termine-height) !important;       /* z.B. 40px */
    padding: 0 1rem;                     /* horizontaler Innenabstand */
    box-sizing: border-box;
    padding-left: calc(var(--termine-height) + 1rem) !important; /* Abstand zum Logo */
  
    background: var(--bg-box);
    border: 1px solid #fafafa;
    border-top-left-radius:    calc(var(--termine-height) / 2);
    border-bottom-left-radius: calc(var(--termine-height) / 2);
    border-top-right-radius:    calc(var(--termine-height) / 8);
    border-bottom-right-radius: calc(var(--termine-height) / 8);
    border-left: none;
  
    box-shadow: 0 2px 8px rgba(234, 234, 234, 0.2);
    transition: transform 300ms, background 300ms, box-shadow 300ms;
  }



  .collection_list.termine .collection_container:hover {
    transform: translateY(-4px);
    background: #ffffff14;
  }
  
  /* 3. Logo im linken Halbkreis */
  .collection_list.termine .collection_container::before {
    content: "";
    position: absolute;
    top: 50%; 
    left: calc(var(--termine-height) / 2);
    transform: translate(-50%, -50%);
    width: var(--termine-height);
    height: var(--termine-height);
    border-radius: 50%;
    background: url("/userdata/01_Basis/1000119457.png") no-repeat center/contain;
  }
  
/* removed per instruction */



  /* 4a. Titel: 50% Breite */
  .collection_list.termine .collection_content.termine__title {
    width: 50% !important;
    font-size: 30px;

  }
  
  /* 4b. Datum: 25% Breite und graue Farbe */
  .collection_list.termine .collection_content.termine_date {
    width: 20% !important;

  }
  
  /* 4c. Uhrzeit: 25% Breite und Signalfarbe */
  .collection_list.termine .collection_content.termine_time {
    width: 30% !important;

  }
  
  /* 5. „Mehr lesen“-Button ans rechte Ende */
  .collection_list.termine .collection_link {
    margin-left: auto;
  }
  .collection_list.termine .collection_link a.button {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    z-index: 2;
    padding: 0;
  }
  
  /* A) Container – links Platz fürs Logo freihalten */
.collection_list.termine .collection_container {
    padding-left: calc(var(--termine-height) + 1rem) !important;
  }
  
/* ganz unten in deiner CSS-Datei */
#middle_right .termine_kalender .textcontent {
    position: relative;
    display: block;
    width: 100px;
    height: auto;
    padding-bottom: 100%;           /* oder feste Höhe, damit es sichtbar wird */
    background: url('/vintage-kalender-transparent.png') no-repeat center/contain;
  }
  
  #middle_right .termine_kalender .textcontent::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;  height: auto;
    /* hier dein Overlay-Styling */
    background: rgba(255,255,255,0.5);
  }
  


  



  /* —————————————————————————————————————————————————————————————
   1) Parent-Container als Flex-Grid belassen:
      • beibehalten, was schon funktioniert (3 Spalten, gleiche Höhe)
   ————————————————————————————————————————————————————————————— */
.collection_list.sponsoren {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between;
    align-items: stretch;
    margin: 0;
    padding: 10px;                 /* innen etwas Abstand */
    box-sizing: border-box;
    width: 33% !important;
    

  }
  
  
  /* —————————————————————————————————————————————————————————————
     2) Jede Kachel (collection_container) – Breite, Höhe, Rahmen usw.
     ————————————————————————————————————————————————————————————— */
  .collection_list.sponsoren > .collection_container {
    margin: 1% 0.5%;               /* oben/unten 1%, links/rechts 0.5% für gleichmäßigen Abstand */
    box-sizing: border-box;
    padding: 10px;                 /* innen-Padding in der Kachel */
    height: 300px;                 /* feste Höhe (kannst Du anpassen) */
    display: flex;
    flex-direction: column;        /* Logo+Text+Link übereinander */
    width: 90% !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #ffffff2e;
    border-radius: var(--br-primary);
    background: #ffffff05;
    overflow: hidden;
    align-items: center;
  }
  
  
  /* —————————————————————————————————————————————————————————————
     3) Logo‐Bereich (.partnerlogo) zentrieren und in der Höhe begrenzen
     ————————————————————————————————————————————————————————————— */
  .collection_list.sponsoren > .collection_container > .collection_content.partnerlogo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;                   /* volle Kachelbreite */
    /* Gib dem Logo‐Container eine fixe Max-Höhe, damit es nicht zu viel Platz frisst */
    max-height: 80px;              /* passt zu: img max-height: 100% */
    box-sizing: border-box;
  }
  
  /* Das Bild selbst darf nie größer als sein Container werden: */
  .collection_list.sponsoren > .collection_container > .collection_content.partnerlogo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;           /* behält das Seitenverhältnis */
  }
  
  
  /* —————————————————————————————————————————————————————————————
     4) Text‐Blöcke (Name + Anschrift + Ort) 
        – volle Breite nutzen, ZEILEN NICHT ABGESCHNITTEN
     ————————————————————————————————————————————————————————————— */
  .collection_list.sponsoren > .collection_container > .collection_content.sponsoren-name,
  .collection_list.sponsoren > .collection_container > .collection_content.Sponsoren-anschrift,
  .collection_list.sponsoren > .collection_container > .collection_content.sponsoren-ort {
    display: block;
    width: 100%;
    font-size: 0.75em;
    line-height: 1.3em;
    margin: 2px 0;                 /* bisschen Abstand zwischen Zeilenblöcken */
    /* NICHT mehr begrenzen: Text darf umfließen, solange er Platz hat */
    max-height: none;
    overflow: visible;
    text-overflow: clip;           /* kein „…“ mehr */
    white-space: normal;
    word-wrap: break-word;         /* sehr lange Wörter umbrechen, falls nötig */
    color: #fff;                   /* sicherstellen, dass der Text weiß bleibt */
  }
  
  
  /* —————————————————————————————————————————————————————————————
     5) Link‐Container (.Sponsoren-link) immer unten in der Kachel (margin-top: auto)
     ————————————————————————————————————————————————————————————— */
  .collection_list.sponsoren > .collection_container > .collection_content.Sponsoren-link {
    margin-top: auto;              /* schiebt den Link ans Kachelfundament */
    width: 100%;
    display: block;
    box-sizing: border-box;
  }
  
  .collection_list.sponsoren > .collection_container > .collection_content.Sponsoren-link a {
    display: inline-block;
    font-size: 0.95em;
    color: #6bc33e;
    text-decoration: none;
    /* wenn Du willst, kannst Du hier noch padding: 4px 0; o. Ä. setzen */
  }
  
  .collection_list.sponsoren > .collection_container > .collection_content.Sponsoren-link a:hover {
    text-decoration: underline;
  }
  
















  
  




/* alle MagicZoom-Thumbnails auf der Seite */
a.MagicZoom img {
    border-radius: 10px !important;
    object-position: top !important;  
    height: 750px !important; /* Höhe anpassen, damit es funktioniert */
  }


/* 1) Container selbst abrunden und innenliegende Bilder/clips verstecken */
a.MagicZoom,
a.MagicZoom figure.mz-figure {
  display: inline-block;      /* falls nötig, um border-radius wirken zu lassen */
  border-radius: 10px !important;
  overflow: hidden !important;
  height: 750px !important;
}

/* 2) Sicherstellen, dass alle Bilder im Container sich normal verhalten */
a.MagicZoom img {
  border-radius: 0 !important;  /* vermeidet doppelte Radien */
}














/* Grundstellung: ausgeblendet */
#to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  /* Farbe + Used-Textur */
  background-color: #69d59b;
  background-image: url('/layout/frontend/b2c/dist/css/used.png');
  background-repeat: repeat;
  background-size: auto;             /* oder z.B. cover, je nach Textur */
  background-blend-mode: multiply;   /* passt die Textur an die Farbe an */
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000;
}

/* eingeblendet */
#to-top.on {
  opacity: 1;
  visibility: visible;
}

/* Icon/Arrow im Inneren */
#to-top--inner {
  display: inline-block;
  transition: transform 0.2s ease-out;
  width: 100%;
  height: 100%;
  background-image: url('/layout/frontend/b2c/dist/js/prev.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60% 60%;
  transform-origin: center center;
  transform: scaleX(1);
}

/* Hover-Effekt: nur horizontal auf 80 % schrumpfen */
#to-top:hover #to-top--inner {
  transform: scaleX(0.8);
}






#position {
  min-height: 300px;        /* oder welcher Wert für dich passt */
}








@media (max-width: 500px) {

    div#content, .main-screen {
        padding: 30px 0 !important;
    }

    .pop-up-element {
        padding: 1rem 0;
    }

    .collection_list.ansprechpartner .collection_container:after {
        width: 15px;
        height: 15px;
    }

    div#hero a {
        margin-right: 10px;
        display: inline-block;
        margin-bottom: 10px;
    }

    .container {
        min-width: 250px;
    }

    .footer-sitemap li.level_1 {
        width: 100%;
        text-align: center;
    }
}

@media (max-width:600px) {
    .collection_list {
        width: 100%;
    }

    .collection_list.partner {
        width: 100%;
    }

    div#content {
        margin-top: -100px;
    }


    /* alle MagicZoom-Thumbnails auf der Seite */
    a.MagicZoom img {
        border-radius: 10px !important;
        object-position: top !important;  
        height: 350px !important; /* Höhe anpassen, damit es funktioniert */
    }


    /* 1) Container selbst abrunden und innenliegende Bilder/clips verstecken */
    a.MagicZoom,
    a.MagicZoom figure.mz-figure {
    display: inline-block;      /* falls nötig, um border-radius wirken zu lassen */
    border-radius: 10px !important;
    overflow: hidden !important;
    height: 350px !important;
    }



}

@media (max-width: 600px) {
    .year_filter {
        padding: 0 5px 10px;
        gap: 8px;
    }
    .year_filter_button {
        padding: 8px 12px;
        font-size: var(--fs-300);
    }
}

@media (max-width: 768px) {
    /* mobile Unterpunkte einrücken */
    .hamburger-menu li.level_2_mobile a {
      padding-left: 2rem;  /* hier nach Geschmack anpassen */
      border-bottom: none; /* falls unerwünscht */
    }
  }

@media (max-width: 768px) {

    #hero h1 {
        font-size: var(--fs-900);
    }

    .filter_display {
        padding-left: 0;
        margin-top: 10px;
    }

    .g-recaptcha {
        overflow: hidden;
    }

    .collection_content.ansprechpartner_bild img {
        width: 100px !important;
        height: 100px ! Important;
    }

    .kontakt_group .collection_list.ansprechpartner .collection_container {
        background: #ffffff05;
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
        border: 1px solid #ffffff2e;
    }





    .kontakt_group .collection_list.ansprechpartner :hover {
        background: #ffffff14;
        transform: translateY(-4px);
    }

    .collection_content.partnerlogo {
        max-width: 200px;
        margin: 0 auto;
    }

    .owl-item img {
        height: 210px ! Important;
        height: auto;           /* behält das Seitenverhältnis */
        object-fit: contain;
    }

    .owl-nav {
        left: 15px;
        display: none!important;
    }

    button.owl-prev,
    button.owl-next {
        max-width: 20px;
    }

    .collection_list.personen {
        width: 100%;
        padding: 0 0 1rem;
    }

  

    .sitepart_2 .form-group.name {
        width: 100%;
        padding-right: 0;
    }
    
    .sitepart_2 .form-group.vorname {
        width: 100%;
    }
    
    .sitepart_2 .form-group.strasse {
        width: 100%;
        padding-right: 0;
    }
    
    .sitepart_2 .form-group.plz {
        width: 100%;
    }
    
    .sitepart_2 .form-group.bic {
        width: 100%;
        padding-right: 0;
    }
    

    .sitepart_2 .form-group.iban {
        width: 100%;
    }

    .kontakt_group .row {
        margin-inline: 0;
    }

    .collection_list.historie {
        padding: 5px;
        width: 100%;
        padding-bottom: 3rem;
    }

    .history_timeline:after,
    .collection_content.historie_jahr:after {
        display: none;
    }


    .collection_list.historie:nth-child(even) .collection_container {
        align-items: center;
        text-align: center;
        margin-top: 0;
    }

    .collection_content.historie_text:after {
        content: '';
        background: #fff;
        width: 2px;
        height: 90px;
        position: absolute;
        border: 0;
        left: 50%;
        transform: translateX(-50%);
        bottom: -100px;
    }

    .collection_list.historie:last-child .collection_content.historie_text:after {
        display: none;
    }

    .collection_content.historie_jahr {
        font-size: 70px;
        margin-top: 10px;
    }


    .collection_list.historie .collection_container {
        align-items: center;
        text-align: center;
    }

    .collection_content.historie_text {
        width: 100%;
    }

    .pop-up-button-group .row {
        white-space: nowrap;
        flex-wrap: nowrap;
        overflow-y: scroll;
        padding-inline: 0;
        padding-block-end: 15px;
    }
    

    li.level_1:nth-child(6):after {
        right: 0;
    }



    .bild_text .row {
        gap: 10px;
    }

    .home div#hero > .container {
        margin-top: 0;
    }

    .home #hero {
        height: auto;
        padding-block-start: 100px;
        padding-block-end: 150px;
    }

    #hero {
        position: relative;
        padding-top: calc(var(--height-header) + 30px); /* 30px Reserve */
        padding-bottom: 100px;
    }

    #hero .textcontent {
        z-index: 1; /* Damit nichts vom Header überdeckt wird */
        position: relative;
    }


    .pop-up-element .row {
        margin-left: 0;
        margin-right: 0;
    }

    .home div#content {
        margin-top: -150px;
    }

    div#content {
        margin-top: -150px;
    }

    :root {
        --fs-300: 12px;
        --fs-400: 13px;
        --fs-500: 14px;
        --fs-600: 15px;
        --fs-700: 40px;
        --fs-800: 50px;
        --fs-900: 70px;
    }
    .component.copyright {
        display: flex;
        flex-direction: column;
    }

.collection_list.ansprechpartner {
    width: 100%;
    padding-inline: 0;
    padding-top: 0;
}

.component.rechtliches {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1rem;
}


.collection_content.ansprechpartner_name {
    font-weight: bold;
}

    .responsiv_bild .row {
        flex-direction: column-reverse;
    }

    #cookie-bar {
        text-align: center;
    }
    #cookie-bar #cookie-bar-button {
        float: none;
        margin-left: 0;
        margin-top: 10px;
    }
    #cookie-bar>p {
        float: none;
    }

    .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
        padding-left: 5px;
        padding-right: 5px;
        padding-bottom: 15px;
    }

    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .row {
        flex-wrap: wrap;
    }



    #slider div#slider-title {
        padding: 0 20px;
    }



    #privacy-policy .footer-1,
    div#privacy-policy {
        text-align: center !important;
    }
    div#privacy-policy ul {
        padding: 0 !important;
        margin: 0 !important;
    }
    .component.privacy_policy {
        padding: 20px 0 0 0;
    }
    div#cookiewarnung {
        font-size: 13px !important;
    }



}

@media (max-width: 768px) {
    .collection_list.historie {
        width: 100%;
        margin-left: 0 !important;
        padding: 5px 0 50px;
        text-align: center !important;
    }

    .collection_list.historie .collection_container {
        align-items: center !important;
        text-align: center !important;
    }

    .history_timeline::after,
    .collection_content.historie_jahr::after {
        display: none;
    }

    .collection_content.historie_text::after {
        content: '';
        background: #fff;
        width: 2px;
        height: 90px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -50px;
    }

    .collection_list.historie:last-child .collection_content.historie_text::after {
        display: none;
    }

    .collection_content.historie_jahr {
        font-size: 4rem;
        margin-top: 10px;
    }

    .collection_content.historie_text {
        width: 100%;
    }
}

@media only screen and (max-width: 992px) {

    .footer-sitemap ul {
        flex-wrap: wrap;
    }

    div#cookiewarnung {
        width: 90%;
    }

    #header #header_1 {
        width: auto;
    }
}

@media (max-width: 1024px) {

    .collection_list {
        width: 50%;
    }

    .collection_list.personen {
        width: 50%;
    }
}

@media screen and (max-width: 1200px) {
    /* 1. Container vertikal statt horizontal */
    .collection_list.termine .collection_container {
      display: flex;
      flex-direction: column;
      align-items: flex-start;       /* linksbündig statt zentriert */
      flex-wrap: nowrap;
      height: auto !important;                  /* Höhe passt sich dem Inhalt an */
      padding: 1rem;                 /* rundum etwas Padding */
    }
  
    /* removed per instruction */
  
    /* 3. „Mehr lesen“-Button nach unten schieben */
    .collection_list.termine .collection_link {
      margin-left: 0;
      align-self: flex-end;     /* Button rechts unten ausrichten */
      margin-top: 0.5rem;
    }
  }

@media (max-width: 1249px) {

    .hamburger-menu li.level_2_mobile a {
        padding-left: 2rem;  /* hier nach Geschmack anpassen */
        border-bottom: none; /* falls unerwünscht */
      }

    div#toggle_navigation {
        display: block !important;
        scale: .7;
    }

    #header ul.level_1 {
        gap: 0;
        flex-direction: column;
    }

    div#header_2 {
        display: none;
    }

      





    div#header_3 {
        width: auto;
        align-items: center;
    }

    .component.mitglied-werden a {
        display: block;
        padding: 4px 10px;
    }

    header {
        top: 0;
        height: auto;
    }

    header.hamburger-menu-open {
        /* backdrop-filter: blur(20px); */
        -webkit-backdrop-filter: blur(20px);
        background: #0000004d;
    }

    #header_1 img {
        height: 70px ! Important;
    }
    div#toggle_navigation:hover,
    div#toggle_navigation:active,
    div#toggle_navigation:focus {
        background: transparent;
    }
        #cookie-bar>p {
            line-height: 20px;
        }
}

@media (min-width: 1250px) {
    header {
        
    }

}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (prefers-reduced-motion: reduce) {
    video {
        display: none; /* Das Video ausblenden */
    }
}

@media (min-width: 600px) {
    .collection_full.news .collection_container {
      grid-template-columns: minmax(300px, 1fr) 1fr;
      grid-template-areas: "left right";
    }
}

@media (min-width: 768px) {
        .container {
            max-width: 750px;
        }
    
            .col-sm-1,
            .col-sm-10,
            .col-sm-11,
            .col-sm-12,
            .col-sm-2,
            .col-sm-3,
            .col-sm-4,
            .col-sm-5,
            .col-sm-6,
            .col-sm-7,
            .col-sm-8,
            .col-sm-9 {
                float: left;
            }
            .col-sm-12 {
                width: 100%;
            }
            .col-sm-11 {
                width: 91.66666667%;
            }
            .col-sm-10 {
                width: 83.33333333%;
            }
            .col-sm-9 {
                width: 75%;
            }
            .col-sm-8 {
                width: 66.66666667%;
            }
            .col-sm-7 {
                width: 58.33333333%;
            }
            .col-sm-6 {
                width: 50%;
            }
            .col-sm-5 {
                width: 41.66666667%;
            }
            .col-sm-4 {
                width: 33.33333333%;
            }
            .col-sm-3 {
                width: 25%;
            }
            .col-sm-2 {
                width: 16.66666667%;
            }
            .col-sm-1 {
                width: 8.33333333%;
            }
            .col-sm-pull-12 {
                right: 100%;
            }
            .col-sm-pull-11 {
                right: 91.66666667%;
            }
            .col-sm-pull-10 {
                right: 83.33333333%;
            }
            .col-sm-pull-9 {
                right: 75%;
            }
            .col-sm-pull-8 {
                right: 66.66666667%;
            }
            .col-sm-pull-7 {
                right: 58.33333333%;
            }
            .col-sm-pull-6 {
                right: 50%;
            }
            .col-sm-pull-5 {
                right: 41.66666667%;
            }
            .col-sm-pull-4 {
                right: 33.33333333%;
            }
            .col-sm-pull-3 {
                right: 25%;
            }
            .col-sm-pull-2 {
                right: 16.66666667%;
            }
            .col-sm-pull-1 {
                right: 8.33333333%;
            }
            .col-sm-pull-0 {
                right: auto;
            }
            .col-sm-push-12 {
                left: 100%;
            }
            .col-sm-push-11 {
                left: 91.66666667%;
            }
            .col-sm-push-10 {
                left: 83.33333333%;
            }
            .col-sm-push-9 {
                left: 75%;
            }
            .col-sm-push-8 {
                left: 66.66666667%;
            }
            .col-sm-push-7 {
                left: 58.33333333%;
            }
            .col-sm-push-6 {
                left: 50%;
            }
            .col-sm-push-5 {
                left: 41.66666667%;
            }
            .col-sm-push-4 {
                left: 33.33333333%;
            }
            .col-sm-push-3 {
                left: 25%;
            }
            .col-sm-push-2 {
                left: 16.66666667%;
            }
            .col-sm-push-1 {
                left: 8.33333333%;
            }
            .col-sm-push-0 {
                left: auto;
            }
            .col-sm-offset-12 {
                margin-left: 100%;
            }
            .col-sm-offset-11 {
                margin-left: 91.66666667%;
            }
            .col-sm-offset-10 {
                margin-left: 83.33333333%;
            }
            .col-sm-offset-9 {
                margin-left: 75%;
            }
            .col-sm-offset-8 {
                margin-left: 66.66666667%;
            }
            .col-sm-offset-7 {
                margin-left: 58.33333333%;
            }
            .col-sm-offset-6 {
                margin-left: 50%;
            }
            .col-sm-offset-5 {
                margin-left: 41.66666667%;
            }
            .col-sm-offset-4 {
                margin-left: 33.33333333%;
            }
            .col-sm-offset-3 {
                margin-left: 25%;
            }
            .col-sm-offset-2 {
                margin-left: 16.66666667%;
            }
            .col-sm-offset-1 {
                margin-left: 8.33333333%;
            }
            .col-sm-offset-0 {
                margin-left: 0;
            }
        }

@media (min-width: 992px) {

    .container {
        max-width: 970px;
    }
        .col-md-1,
        .col-md-10,
        .col-md-11,
        .col-md-12,
        .col-md-2,
        .col-md-3,
        .col-md-4,
        .col-md-5,
        .col-md-6,
        .col-md-7,
        .col-md-8,
        .col-md-9 {
            float: left;
        }
        .col-md-12 {
            width: 100%;
        }
        .col-md-11 {
            width: 91.66666667%;
        }
        .col-md-10 {
            width: 83.33333333%;
        }
        .col-md-9 {
            width: 75%;
        }
        .col-md-8 {
            width: 66.66666667%;
        }
        .col-md-7 {
            width: 58.33333333%;
        }
        .col-md-6 {
            width: 50%;
        }
        .col-md-5 {
            width: 41.66666667%;
        }
        .col-md-4 {
            width: 33.33333333%;
        }
        .col-md-3 {
            width: 25%;
        }
        .col-md-2 {
            width: 16.66666667%;
        }
        .col-md-1 {
            width: 8.33333333%;
        }
        .col-md-pull-12 {
            right: 100%;
        }
        .col-md-pull-11 {
            right: 91.66666667%;
        }
        .col-md-pull-10 {
            right: 83.33333333%;
        }
        .col-md-pull-9 {
            right: 75%;
        }
        .col-md-pull-8 {
            right: 66.66666667%;
        }
        .col-md-pull-7 {
            right: 58.33333333%;
        }
        .col-md-pull-6 {
            right: 50%;
        }
        .col-md-pull-5 {
            right: 41.66666667%;
        }
        .col-md-pull-4 {
            right: 33.33333333%;
        }
        .col-md-pull-3 {
            right: 25%;
        }
        .col-md-pull-2 {
            right: 16.66666667%;
        }
        .col-md-pull-1 {
            right: 8.33333333%;
        }
        .col-md-pull-0 {
            right: auto;
        }
        .col-md-push-12 {
            left: 100%;
        }
        .col-md-push-11 {
            left: 91.66666667%;
        }
        .col-md-push-10 {
            left: 83.33333333%;
        }
        .col-md-push-9 {
            left: 75%;
        }
        .col-md-push-8 {
            left: 66.66666667%;
        }
        .col-md-push-7 {
            left: 58.33333333%;
        }
        .col-md-push-6 {
            left: 50%;
        }
        .col-md-push-5 {
            left: 41.66666667%;
        }
        .col-md-push-4 {
            left: 33.33333333%;
        }
        .col-md-push-3 {
            left: 25%;
        }
        .col-md-push-2 {
            left: 16.66666667%;
        }
        .col-md-push-1 {
            left: 8.33333333%;
        }
        .col-md-push-0 {
            left: auto;
        }
        .col-md-offset-12 {
            margin-left: 100%;
        }
        .col-md-offset-11 {
            margin-left: 91.66666667%;
        }
        .col-md-offset-10 {
            margin-left: 83.33333333%;
        }
        .col-md-offset-9 {
            margin-left: 75%;
        }
        .col-md-offset-8 {
            margin-left: 66.66666667%;
        }
        .col-md-offset-7 {
            margin-left: 58.33333333%;
        }
        .col-md-offset-6 {
            margin-left: 50%;
        }
        .col-md-offset-5 {
            margin-left: 41.66666667%;
        }
        .col-md-offset-4 {
            margin-left: 33.33333333%;
        }
        .col-md-offset-3 {
            margin-left: 25%;
        }
        .col-md-offset-2 {
            margin-left: 16.66666667%;
        }
        .col-md-offset-1 {
            margin-left: 8.33333333%;
        }
        .col-md-offset-0 {
            margin-left: 0;
        }
    }

@media (min-width: 1200px) {

        .col-lg-1,
        .col-lg-10,
        .col-lg-11,
        .col-lg-12,
        .col-lg-2,
        .col-lg-3,
        .col-lg-4,
        .col-lg-5,
        .col-lg-6,
        .col-lg-7,
        .col-lg-8,
        .col-lg-9 {
            float: left;
        }
        .col-lg-12 {
            width: 100%;
        }
        .col-lg-11 {
            width: 91.66666667%;
        }
        .col-lg-10 {
            width: 83.33333333%;
        }
        .col-lg-9 {
            width: 75%;
        }
        .col-lg-8 {
            width: 66.66666667%;
        }
        .col-lg-7 {
            width: 58.33333333%;
        }
        .col-lg-6 {
            width: 50%;
        }
        .col-lg-5 {
            width: 41.66666667%;
        }
        .col-lg-4 {
            width: 33.33333333%;
        }
        .col-lg-3 {
            width: 25%;
        }
        .col-lg-2 {
            width: 16.66666667%;
        }
        .col-lg-1 {
            width: 8.33333333%;
        }
        .col-lg-pull-12 {
            right: 100%;
        }
        .col-lg-pull-11 {
            right: 91.66666667%;
        }
        .col-lg-pull-10 {
            right: 83.33333333%;
        }
        .col-lg-pull-9 {
            right: 75%;
        }
        .col-lg-pull-8 {
            right: 66.66666667%;
        }
        .col-lg-pull-7 {
            right: 58.33333333%;
        }
        .col-lg-pull-6 {
            right: 50%;
        }
        .col-lg-pull-5 {
            right: 41.66666667%;
        }
        .col-lg-pull-4 {
            right: 33.33333333%;
        }
        .col-lg-pull-3 {
            right: 25%;
        }
        .col-lg-pull-2 {
            right: 16.66666667%;
        }
        .col-lg-pull-1 {
            right: 8.33333333%;
        }
        .col-lg-pull-0 {
            right: auto;
        }
        .col-lg-push-12 {
            left: 100%;
        }
        .col-lg-push-11 {
            left: 91.66666667%;
        }
        .col-lg-push-10 {
            left: 83.33333333%;
        }
        .col-lg-push-9 {
            left: 75%;
        }
        .col-lg-push-8 {
            left: 66.66666667%;
        }
        .col-lg-push-7 {
            left: 58.33333333%;
        }
        .col-lg-push-6 {
            left: 50%;
        }
        .col-lg-push-5 {
            left: 41.66666667%;
        }
        .col-lg-push-4 {
            left: 33.33333333%;
        }
        .col-lg-push-3 {
            left: 25%;
        }
        .col-lg-push-2 {
            left: 16.66666667%;
        }
        .col-lg-push-1 {
            left: 8.33333333%;
        }
        .col-lg-push-0 {
            left: auto;
        }
        .col-lg-offset-12 {
            margin-left: 100%;
        }
        .col-lg-offset-11 {
            margin-left: 91.66666667%;
        }
        .col-lg-offset-10 {
            margin-left: 83.33333333%;
        }
        .col-lg-offset-9 {
            margin-left: 75%;
        }
        .col-lg-offset-8 {
            margin-left: 66.66666667%;
        }
        .col-lg-offset-7 {
            margin-left: 58.33333333%;
        }
        .col-lg-offset-6 {
            margin-left: 50%;
        }
        .col-lg-offset-5 {
            margin-left: 41.66666667%;
        }
        .col-lg-offset-4 {
            margin-left: 33.33333333%;
        }
        .col-lg-offset-3 {
            margin-left: 25%;
        }
        .col-lg-offset-2 {
            margin-left: 16.66666667%;
        }
        .col-lg-offset-1 {
            margin-left: 8.33333333%;
        }
        .col-lg-offset-0 {
            margin-left: 0;
        }
        .container {
            max-width: 1500px;
        }
        
    
        }

@media (min-width: 1500px) {
        .container {
            max-width: 1500px;
        }
}













/* -------------------------------------------------- */
/* 2) Mobile-Flattened Items nur, wenn Hamburger offen */
/* -------------------------------------------------- */
body.hamburger-active li.level_1.levels > ul.level_2 {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
/* Timeline-CSS Overrides: Exakte Zentrierung der Mittellinie und Punkte bei Könige */
.collection_list.koenige{--timeline-gap:30px;--dot-size:15px}
.collection_list.koenige:nth-child(odd){margin-right:var(--timeline-gap)}
.collection_list.koenige:nth-child(even){margin-left:var(--timeline-gap)}
.collection_list.koenige:nth-child(odd) .collection_content.koenig_jahr::after{width:var(--dot-size);height:var(--dot-size);right:calc((var(--timeline-gap) + (var(--dot-size) / 2)) * -1)}
.collection_list.koenige:nth-child(even) .collection_content.koenig_jahr::after{width:var(--dot-size);height:var(--dot-size);left:calc((var(--timeline-gap) + (var(--dot-size) / 2)) * -1)}
.history_timeline::after{left:50%;transform:translateX(-50%)}
/* Zusätzlicher halber Zeilenabstand zwischen 1./2. und 3./4. Koenig-Text */
/* Korrektur: 1+2 zusammen, 3+4 zusammen — Abstand nur zwischen 2 und 3 */
.collection_list.koenige .collection_container > .collection_content.koenig_text:nth-child(4),
.collection_list.koenige .collection_container > .collection_content.koenig_text:nth-child(6){margin-top:0}
.collection_list.koenige .collection_container > .collection_content.koenig_text:nth-child(5){margin-top:.5em;margin-top:.5lh}
/* Searchbar mittig im Bild, links/rechts je 10% Abzug */
.searchbar{position:absolute;left:10%;right:10%;top:50%;transform:translateY(-50%);z-index:10;display:flex;align-items:center;gap:.5rem}
.searchbar input[type=text]{flex:1 1 auto;width:100%}
/* Rückgängig: vertikale Position nicht zentrieren, nur horizontal 10% Rand */
.searchbar{position:relative;top:auto;transform:none;left:auto;right:auto;margin-left:10%;margin-right:10%}
/* ===== Deterministic two-column rows (no cross-dependence) ===== */
@media (min-width:600px){
  /* Right column: fixed top-down rows (see later consolidated overrides) */
  /* Left column: first image, second image (if any), youtube (if any), then gallery */
  /* (entfernt – Duplikat der linken Spaltenzuordnung; frühere feste Reihenfolge bleibt gültig) */
}
/* (Entfernt) CSS4-Deduplizierung – durch finale Grid-Overrides ersetzt */
