:root {
    --primary-accent: #be9b53;
    --clr-primary-dark: #222222;
    --clr-primary-white: #fff;
    --clr-primary-light: #f5f7fb;
  
    --fc-primary: #4B4B4B;
    --fc-dark: #000;

    --ff-primary: 'Roboto', sans-serif;
  
    --ff-body: var(--ff-primary);
    --ff-heading: var(--ff-primary);
  
    --fw-regular: 400;
    --fw-bold: 700;
  
    --fs-300: 0.8125rem;
    --fs-400: 0.875rem;
    --fs-500: 0.9375rem;
    --fs-600: 1rem;
    --fs-700: 1.875rem;
    --fs-800: 1.9rem;
    --fs-900: 3rem;

    --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: 60px;
    --fc-nav: #000000;
    --p-button: 10px 15px;
    --clr-border: #000000;
    --fc-white: #ffffff;
    --fc-black: #000000;
    --fc-grey: grey;

}

figure.mz-figure.mz-hover-zoom.mz-no-zoom.mz-ready {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 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;
}

/* max-width classes */
.max1000 {
    max-width: 1000px;
}

.max800 {
    max-width: 800px;
}

.max600 {
    max-width: 600px;
}

.max500 {
    max-width: 500px;
}


* {
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 */
@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;
  }
}

/* Reset */

@font-face {
    font-family: 'SourceSansPro-Regular';
    src: url('/layout/frontend/b2c/dist/fonts/SourceSansPro-Regular.ttf');
    font-display: swap;
    font-weight: 400;
}

@font-face {
    font-family: 'SourceSansPro-Bold';
    src: url('/layout/frontend/b2c/dist/fonts/SourceSansPro-Bold.ttf');
    font-display: swap;
    font-weight: 700;
}

@font-face {
    font-family: 'SourceSansPro-Black';
    src: url('/layout/frontend/b2c/dist/fonts/SourceSansPro-Black.ttf');
    font-display: swap;
    font-weight: 900;
}

@font-face {
    font-family: 'MarketPro';
    src: url('/layout/frontend/b2c/dist/fonts/MarketPro.woff2');
    font-display: swap;
    font-weight: 400;
}

@font-face {
    font-family: 'Roboto-Black';
    src: url('/layout/frontend/b2c/dist/fonts/Roboto-Black.ttf');
    font-display: swap;
    font-weight: 900;
}

@font-face {
    font-family: 'Roboto-Bold';
    src: url('/layout/frontend/b2c/dist/fonts/Roboto-Bold.ttf');
    font-display: swap;
    font-weight: 700;
}

@font-face {
    font-family: 'Roboto-Medium';
    src: url('/layout/frontend/b2c/dist/fonts/Roboto-Medium.ttf');
    font-display: swap;
    font-weight: 500;
}

@font-face {
    font-family: 'Roboto-Regular';
    src: url('/layout/frontend/b2c/dist/fonts/Roboto-Regular.ttf');
    font-display: swap;
    font-weight: 400;
}

@font-face {
    font-family: 'Roboto-Thin';
    src: url('/layout/frontend/b2c/dist/fonts/Roboto-Thin.ttf');
    font-display: swap;
    font-weight: 100;
}


body {
    background-color: #F6F6F6;
    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;
}

header {
    height: var(--height-header);
    background: var(--bg-header);
}

header > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

nav a {
    text-decoration: none;
    color: var(--fc-nav);
}

ul.level_1 {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.collection_list.hero {
    width: 100%;
    padding: 0;
    background: var(--clr-primary-light);
}

.filter_display {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    padding: 15px;
    flex-wrap: wrap;
    margin: 0 0 0.5rem;
}

button, input.button, .component.button_navigation a {
    background: var(--primary-accent);
    color: var(--clr-primary-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;
}

input, select, textarea {
    padding: 10px;
    width: 100%;
    border: 1px solid var(--clr-border);
    font-family: inherit;
    border-radius: var(--br-button);
}

input[type="checkbox"] {
    width: auto;
}

.owl-item img {
    height: 450px!Important;
    width: 100%!Important;
    border-radius: var(--br-primary);
}
.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(--clr-primary-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: var(--clr-primary-white);
    padding: 10px 15px;
    float: left;
    border-radius: var(--br-primary);
    text-decoration: none;
}

a.button_filter.o-filter {
    background: #ffffff;
    color: var(--primary-accent);
    padding: 10px 15px;
    float: left;
    border-radius: var(--br-primary);
    border: 1px solid var(--primary-accent-light);
    text-decoration: none;
}

.collection_list.hero .collection_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding-left: 2rem;
}

.collection_content.hero__title.title.custom {
    grid-area: 1 / 1 / 2 / 2;
    display: flex;
    align-items: flex-end;
}

.collection_content.hero_teaser {
    grid-area: 2 / 1 / 3 / 2;
}

.collection_content.hero_img {
    grid-area: 1 / 2 / 3 / 3;
}

div#overlaycrumb.collection input {
    max-width: 50%;
}

.collection_content.hero_img img {
    height: 400px!important;
    object-fit: cover;
}

.collection_list.card .collection_container {
    background: #fff;
    box-shadow: #7592ba3a 0px 7px 29px 0px;
    border-radius: var(--br-primary);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-bottom: 7px solid var(--primary-accent);
    transition: 300ms;
    min-height: 480px;
}

.collection_list.card .card_img {
    height: 216px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.collection_list.card .card_img img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    transition: 0.5s;
}

.collection_list.card .collection_container:hover {
    box-shadow: #7592ba75 0px 7px 29px 0px;
}

li.level_1.levels ul {
    display: none;
}

a {
    color: var(--primary-accent);
    text-decoration: none; 
    color: inherit;
    font-weight: inherit; 
}

.component.copyright .textcontent:last-child {
    float: right;

}
.component.copyright .textcontent a + a {
    margin-left: 20px; 
}
.component.copyright .textcontent:first-child {
    float: left;
}

.collection_list.card .collection_content.title.custom {
    font-size: var(--fs-700);
    font-weight: var(--fw-bold);
    font-family: var(--ff-secondary);
    margin-inline: 1.5rem;
    color: var(--fc-secondary);
    margin-block-start: 1rem;
    -webkit-line-clamp: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.collection_list.card .collection_container:hover .collection_content.card_img 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);
}

.collection_list.card .collection_content.card_teaser {
    margin-inline: 1.5rem;
    margin-bottom: 2rem;
    -webkit-line-clamp: 5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}




.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( --clr-primary-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: " ";
}



.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( --clr-primary-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(--clr-primary-light);
    text-align: center;
    padding: 2rem;
    color: var(--primary-accent);
    border-radius: var(--br-primary);
    box-shadow: var(--bs-primary);
    transform: translate(-50%, -50%);
    border: 1px solid var(--primary-accent);
}

div#requestbox:after {
    content: '';
    background: #00000075;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

div#filter-element {
    position: absolute;
    margin-top: -200px;
}



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( --clr-primary-white);
    top: 50%;
    font-size: 20px;
    transform: translateY(-50%);
}

.faq_question_box.active:after {
    content: '-';
    position: absolute;
    right: 16px;
    color: var(--clr-primary-white);
    bottom: unset;
    font-size: 25px;
}

.faq_group_container .faq_answer_box {
    display: none;
}

.faq h3 {
    font-size: 18px;
    font-weight: 400!Important;
    border: none;
    color: var( --clr-primary-white);
    line-height: 1;
    margin-bottom: 7px;
}

.faq-search input[type="text"] {
    width: 250px;
    height: 30px;
    color: var( --clr-primary-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%;
}



.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.pop-up-element .row {
    z-index: 1;
    padding: 40px !important;
    background: rgb(4 4 4 / 20%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 15px;
    border: 2px solid var(--akzentfarbe);
    max-width: 1440px;
    margin: 0 auto;
    color: var( --clr-primary-white);
    display: -webkit-box;
}



.pop-up-element .row :is(li, p, a, span, strong, b, em, ul, li, h2, h1, h3) {
    color: var( --clr-primary-white) !important;
}

.pop-up-element {
   z-index: 1;
   padding: 30px;
}

.pop-up-element {
    display: none;
}

.pop-up-element:first-child {
    display: block;
}

.pop-up-button-group .row {
   display: flex;
   justify-content: center;
}

.pop-up-element .row {
    cursor: pointer;
}

.pop-up-element.current {
   display: block;
}

.pop-up-button {
   cursor: pointer;
}

.pop-up-button.current {
   background: var(--primary-accent);
   color: var( --clr-primary-white);
   border: 1px solid var(--primary-accent);
}

.faq_nearest_search {
    display: none;
}

.header-text a {
    background: var(--primary-accent);
    color: var( --clr-primary-white);
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: rgb(48 98 120 / 48%) 0px 7px 29px 0px;
}

.header-text a:hover {
    color: var( --clr-primary-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;
}

#header_1 img {
    padding: 1px;
}

#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;
    text-decoration: none; 
    color: inherit;
    font-weight: inherit; 
}


.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( --clr-primary-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%;
    float: left;
    padding: 15px;
}

img {
    height: 100%!important;
    width: 100%!important;
    object-fit: cover;
    max-width: 100%;
}

.header-text h1 img {
    width: 50px!important;
}

.d-none {
    display: none!Important;
}

#slider img {
    height: 420px!important;
    filter: brightness(0.8);
}




/* Schriften */

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3;
    clear: both;
    font-weight: var(--fw-bold);
    color: #4B4B4B;
    margin: 10px 0;
    font-family: var(--ff-heading)!important;
}

h1 {
    font-size: var(--fs-900);
    color: #fff;
}


h2 {
    font-size: var(--fs-800);
}

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 {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.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;
}

li.level_1.levels {
    position: relative;
}

#header ul.level_2 {
    display: none;
}

li.level_1.levels:hover ul.level_2 {
    display: block !important;
}

ul.level_2 {
    position: absolute;
    left: 0;
    top: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    background: var(--clr-primary-white);
    padding: 15px;
    border-radius: var(--br-primary);
}

ul.level_2 a p.level_2_title {
color: var(--primary-accent)!important;
}

li.level_2 {
    margin-bottom: 5px;
}

.modal.success .modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.owl-stage-outer {
    width: 100%;
}

div#cookiewarnung {
    position: fixed;
    bottom: 40px;
    background: #f2f6ff;
    color: #000;
    z-index: 99999999;
    width: 80%;
    text-align: center;
    padding: 15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
    border: 1px solid #d7e0ff;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
}

.cookie-option-container {
    margin-top: 10px;
}

.cookie-option {
    cursor: pointer;
    border: 1px solid #d7e0ff;
    display: inline-block;
    padding: 7px !important;
    border-radius: 5px;
    background: #e5edff;
}


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( --clr-primary-white);
    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: #f2f6ff;
    color: #000;
    padding: 10px;
    position: relative;
    cursor: pointer;
}

#cookie-config input {
    margin-right: 10px;
}

#cookie-config label {
    font-weight: normal;
    color: #000;
}

.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: #f2f6ff;
    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;
    background: var( --clr-primary-white);
    padding: 10px;
}

.cookie-config-save {
    padding: 10px;
    text-align: center;
    background: #68c567;
    cursor: pointer;
    margin: 20px 15px;
    color: var( --clr-primary-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( --clr-primary-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;
}

#header ul.level_1 {
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    gap: 2rem;
}

#header div#header_3 li {
    display: inline-block;
    float: left;
}

#header .active_tree {
    font-weight: var(--fw-bold);
}

#header .component.logo,
#header .component.logo .textcontent {
    height: 100%;
}

#header_1 img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
   /* max-width: 45px;*/
   max-width: 85px;
}



.sticky-active {
    position: relative;
}

#toggle_navigation,
.hamburger-menu {
    display: none;
}

div#toggle_navigation {
    float: right;
    width: auto;
    padding: 0 !important;
    height: auto;
    background: transparent;
}

.hamburger-menu {
    background: var(--primary-accent);
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    display: none;
}



#header .hamburger-menu li.level_1 {
    padding: 0;
    border-bottom: 1px solid var( --clr-primary-white);
}

#header .hamburger-menu a {
    padding: 15px 20px !important;
    display: block;
}

#header .hamburger-menu li.level_1:last-child {
    border-bottom: 0 !important;
}

#header .hamburger-menu li.level_2 {
    padding: 20px 0px;
    color: var( --clr-primary-white);
}

#header .hamburger-menu li.level_1 {
    list-style-type: none;
}

#toggle_navigation label.hamburg {
    display: block;
    background: transparent;
    width: 55px;
    height: 50px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
    margin: 0;
    cursor: pointer;
}

.line {
    position: absolute;
    left: 10px;
    height: 4px;
    width: 35px;
    background: #be9b53;
    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: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index:4;
    color: var(--fc-white);
    text-align: center;
}

#slider div#slider-title h1 {
    color: var( --clr-primary-white);
}

#slider-wrapper div.slider-untertitle {
    position: absolute;
    bottom: 50%;
    width: 100%;
    color: var(--clr-primary-white);
    padding: 20px 0;
    transform: translateY(50%);
    z-index: 1;
}


#footer {
    clear: both;
    padding: 70px 0 25px 0;
    background: #E2E2E2;
    font-size: 15px;
    position: relative;
    float: left;
    width: 100%;
}

.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;

}


#footer li {
    list-style-type: none;
}

.footer-sitemap li.level_1 {
    font-weight: 500;
    font-size: 20px;
    width: auto;
    float: left;
    padding-right: 40px;

}

.component.privacy_policy {
    display: flex;
    justify-content: center;
}

#footer li.level_1 a {
    margin-bottom: 7px;
    display: inline-block;
    color: var( --clr-primary-white);
}

.footer-sitemap li.level_2 {
    font-weight: normal;
    font-size: 15px;
    text-transform: initial;
}

div#privacy-policy {
    padding-top: 10px;
    padding-bottom: 10px;
    clear: both;
    text-align: right;
    position: relative;
    float: left;
    width: 100%;
    background: #be9b53;
    color: var(--fc-white) ;
}

div#privacy-policy a {
    color: inherit;
}





#privacy-policy .footer-1 {
    text-align: left;
}

div#privacy-policy ul li {
    display: inline-block;
    padding: 0 10px;
}

#footer .footer-seo {
    clear: both;
    color: var( --clr-primary-white);
}

.seo .footer-1 {
    padding-right: 50px;
}

.seo .footer-2 {
    padding-left: 0px;
}

.owl-dots {
    height: 10px;
}

.owl-dots {
    position: relative;
    float: left;
    width: 100%;
    height: 20px;
}

.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: #7f7f7f;
    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;
}


/* --------------kn ---------------*/


/* #slider-wrapper */

 #slider-wrapper {
    overflow: hidden; 
    height: 500px;
    position: relative;
}

#slider-wrapper .imgcontent {
    position: relative;
}

#slider-wrapper .imgcontent img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
}

.home #slider-wrapper .imgcontent::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.45); 
    z-index: 1;
}

.home #slider-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    padding: 20px; 
}

.home #slider-title::before {
    content: "";
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px; 
    height: 900px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 10%, rgba(255, 255, 255, 0.5) 30%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1; 
}


.home .slider-title-content-subtitle .app-download-button {
    font-family: 'Roboto', sans-serif;
    font-weight: 500; 
    font-size: 17px;
    color: white !important;
    text-decoration: none; 
    background-color: #be9b53;
    border-radius: 13px;
    padding: 10px 20px;
    display: inline-block; 
    text-align: center; 
    transition: background-color 0.3s ease; 
    margin-top: 20px;
}

.home .slider-title-content-subtitle .app-download-button a {
    color: white !important; 
    text-decoration: none; 
}

.home .slider-title-content-subtitle .app-download-button:hover {
    background-color: #093a74;
    text-decoration: none; 
}

.home .header-title h1 {
    font-size: 59px !important;
    color: #4B4B4B !important;
    font-family: 'Roboto', sans-serif !important;
    font-weight: bold !important;
    margin-bottom: 0;
}

.home .header-style h1 {
    font-size: 59px !important;
    color: #be9b53 !important;
    font-family: 'MarketPro' , sans-serif !important;
    font-weight: normal !important;
    margin-top: -20px;
}

.home .header-text div {
    font-size: 17px !important;
    color: #4B4B4B !important;
    font-family: 'Roboto', sans-serif !important;
    font-weight: normal !important;
}


#header_2 {
    margin-right: auto;
    margin-left: 75px;
}
/* ------------ area-1 ---------------*/
.home #content {
    background-color: #ffffff;
    padding: 0px;
    margin-top: -150px;
    z-index: 66;
    display: flex;
    justify-content: center; 
    align-items: center; 
    gap: 20px;
    margin-bottom: 0px;
}

.home .collection_list {
    display: flex;
    align-items: center;
    background: #ffffff;
}

.home .header-button_img img {
    width: 55px !important;
    height: 55px !important;
    object-fit: contain; 
    margin-right: 15px; 
}

.home  #content .collection_container {
    display: flex;
    align-items: center; 
}

.home .collection_content.news_k-datum {
    display: none;
}

.home .header-button_title {
    font-size: 16px;
    font-weight: bold;
    min-width: 170px;
}

.home .collection_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home .collection_link .button {
    display: inline-block;
    background-color: #007BFF;
    color: #ffffff;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 14px;
    transition: background-color 0.3s ease;
    margin-top: 5px; 
}

.home .collection_link .button:hover {
    background-color: #0056b3; 
}

/* ------------ area-2---------------*/

#area-2 .container {
    display: flex;
    width: 100%;
    box-sizing: border-box;
}

#area-2 .col__block-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 15px;
}

#area-2 .col__block-right {
    flex: 0 0 33.33333%;
    display: flex;
    flex-direction: column;
    padding: 15px;
}


#area-2 .burgermeisterin,
#area-2 .col-gewusst,
#area-2 .news_k_groupe {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
}

#area-2 .burgermeisterin .burgermeisterin_text,
#area-2 .col-gewusst .gewusst_text,
#area-2 .news_k_groupe .collection_content {
    margin-bottom: 15px;
}

#area-2 .burgermeisterin .burgermeisterin_img img,
#area-2 .col-gewusst .gewusst_img img,
#area-2 .news_k_groupe .news_k-img img {
    width: 100%;
    border-radius: 8px;
}

#area-2 .burgermeisterin .burgermeisterin_img {
    text-align: center;
    margin-top: 15px;
}

#area-2 .burgermeisterin .burgermeisterin_img img {
    max-width: 130px;
    border-radius: 50%;
}

#area-2 .col-gewusst {
    display: flex;
    align-items: center;
    gap: 15px;
}

#area-2 .col-gewusst .gewusst_img img {
    max-width: 90px;
}

#area-2 .news_k_groupe .collection_list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    height: 390px;

}

#area-2 .news_k_groupe .collection_list .news_k {
    flex: 1 1 calc(50% - 15px);
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#area-2 .news_k-title {
    display: block;
    line-height: 1.2em;
    max-height: 3.6em;
    overflow: hidden;
    text-overflow: clip;
    white-space: normal;
    font-size: 18px;
    color: #4B4B4B;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-right: 25px;
    padding: 10px 25px;
    padding-left: 0px;
    max-height: calc(1.5em* 2);
}

#area-2 .news_k-title::after {
    content: "";
    background-image: url('/userdata/02_Kollektionen/arrow.svg');
    background-repeat: no-repeat;
    background-size: 20px 20px; 
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

#area-2 .news_k-title a {
    color: #4B4B4B;
    text-decoration: none;
}

.home .collection_list.news_k {
    width: 50%;
    float: left;
    padding: 15px;
}

#area-2 .burgermeisterin .burgermeisterin_img {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

#area-2 .burgermeisterin .burgermeisterin_img img {
    width: 130px !important;
    height: 130px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    object-position: top !important;
    margin-right: 40px !important;
}

#area-2 .burgermeisterin .burgermeisterin_name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 15px;
}

#area-2 .burgermeisterin .burgermeisterin_text .textcontent strong {
    font-size: 20px;
}

#area-2 .burgermeisterin .burgermeisterin_name .textcontent strong {
    font-size: 18px;
}

.col__block-right_text {
    display: flex;
}

.burgermeisterin_text .textcontent {
    font-size: 16px;
}

#area-2 .burgermeisterin_name .textcontent {
    line-height: 0.9;
}

.news_k_groupe .textcontent h3 {
    font-size: 20px;
}

.title_news {
    padding-left: 15px;
    margin: 0px 0 !important;
    position: relative;
}

.title_news {
    padding-left: 15px;
    margin: 0px 0 !important;
    position: relative;
}



.title_news h3 {
    margin: 0px 0 !important;
    margin-bottom: 10px !important;
    margin-top: 10px!important;
}

.title_news_link {
    float: right; 
    margin-top: -33px; 
    display: inline-flex;
    align-items: center;
    padding-right: 15px;
    font-size: 16px;
    color: #be9b53;
    cursor: pointer;
    background-image: url('/userdata/02_Kollektionen/arrow.svg');
    background-repeat: no-repeat;
    background-size: 5px;
    background-position: right center;
    position: relative;
    z-index: 60; 
}

.mullabfuhrplane_k_groupe .title_news_link {
    margin-top: -43px;
}

.jobanzeigen_k_groupe .title_news_link {
    margin-top: -43px;
}

.col__block-gewusst_text {
    display: flex;
    align-items: center;
}

.collection_content.gewusst_titile {
    font-size: 40px;
    font-family: 'MarketPro';
    color: #be9b53;
}

.collection_content.gewusst_img {
    margin-left: auto; 
}
.collection_content.gewusst_img img {
    width: 90px;
    height: 90px; 
    object-fit: cover; 
}

 #area-2 .col-gewusst .gewusst_text {
    margin-top: 20px;
}
.home #area-2 {
    padding-top: -69px !important;
    margin-top: -93 px;
}

.home #area-2 .collection_content.news_k-img img {
    height: 306px !important;
    width: 408px !important;
    object-fit: cover;
    max-width: 100%;
}

/* ____________ news_k_veran ___________ */

.home .news_k_veran .title_news h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #be9b53;
    margin-bottom: 10px!important;
}

.home .collection_list.col-kalender {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
    overflow: hidden;
    flex-wrap: wrap;
}


.home .news_k_veran .collection_container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 10px;
    width: 100%;
    position: relative;
}

.home .news_k_veran .col-kalender::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #E2E2E2;
    padding-right: 15px;
    padding-left: 15px;
}

.home .news_k_veran .col-kalender:last-child::after {
    content: none; 
}

.home .news_k_veran .col-kalender_one {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* news_k_veran */
.home .news_k_veran {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 32px;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 20px;
}

.home .news_k_veran .col-kalender_icon {
    width: 25px !important;
    height: 25px !important;
    background-color: #E2E2E2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-sizing: content-box;
    overflow: visible;
}

.home .news_k_veran .col-kalender_icon img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain;
    display: block;
}

.home .news_k_veran .col-kalender_two {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
}

.home .news_k_veran .col-kalender_titlee {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #4B4B4B;
    word-break: break-word; 
    overflow-wrap: break-word; 
    white-space: normal;
    display: block; 
    max-width: 100%;
    overflow: hidden;
    hyphens: auto; 
}


.home .news_k_veran .col-kalender_datum {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #4B4B4B;
    margin-top: 5px;
}

.home .news_k_veran .col-kalender_three {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end; 
    align-items: center; 
}

.home .news_k_veran .col-kalender_bild img {
    width: 100px !important;
    height: 75px !important;
    border-radius: 8px !important;
    object-fit: cover !important;
}

.home .news_k_veran .collection_list.col-kalender .collection_link {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 0;
    z-index: 2;
}


/* ------------  aktuelles_k_groupe ---------------*/


.home .aktuelles_k_groupe {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-bottom: 0;
    position: relative;
}

.home .aktuelles_k_groupe .herzlich_img {
    flex-shrink: 0;
    margin-right: 20px;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: #eee;
}

.home .aktuelles_k_groupe .herzlich_img .imgcontent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home .aktuelles_k_groupe .herzlich_right_top {
    display: flex;
    position: relative;
    padding-left: 15px;
}

.home .aktuelles_k_groupe .herzlich_right {
    margin-top: 20px;
}


.home .aktuelles_k_groupe .herzlich_title .textcontent {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    color: #be9b53;
}

.home .aktuelles_k_groupe .herzlich_text {
    margin-top: 0;
}

.home .aktuelles_k_groupe .herzlich_text .textcontent {
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    color: #4B4B4B;
    line-height: 1.5;
    font-weight: 600;
}

.home .aktuelles_k_groupe .collection_list.col-aktuelles {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 15px;
    padding-bottom: 0px;
    padding-top: 22px;
}

.home .aktuelles_k_groupe .col-aktuelles_img {
    width: 108px;
    height: 81px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.home .aktuelles_k_groupe .col-aktuelles_right {
    flex: 1;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left; 
}

.home .aktuelles_k_groupe .col-aktuelles_status {
    width: 100%;
    padding-bottom: 10px;
    font-size: 15px;
    color: #be9b53;
    font-weight: 400;
    text-align: left;
}

.home .aktuelles_k_groupe .col-aktuelles_title {
    font-size: 16px;
    color: #4B4B4B;
    font-weight: 500;
    margin-bottom: 10px;
}

.home .aktuelles_k_groupe .col-aktuelles_text {
    font-size: 16px;
    color: #4B4B4B;
    line-height: 1.6;
    font-weight: 400;
    display: none; 
    background-color: unset;
}
.home .aktuelles_k_groupe .preview_text {
    font-size: 16px;
    color: #4B4B4B;
    line-height: 1.6;
    font-weight: 400;
    display: none; 
    background-color: unset;
}
.col-aktuelles_text {
    background-color: unset;
    p {
        background-color: unset !important;
    }
    strong {
        background-color: unset !important;
    }
    span {
        background-color: unset !important;
    }
    em {
        background-color: unset !important;
    }
    a {
        background-color: unset !important;
    }
    u {
        background-color: unset !important;
    }
}

.home .aktuelles_k_groupe .collection_list:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #E2E2E2;
}

.aktuelles_k_groupe .title_news_link {
    margin-top: -100px;
}


.home .aktuelles_k_groupe .col-aktuelles .collection_container  {
    display: flex;
    width: 100%;
    box-shadow: none;
    border: none;
    overflow: hidden;
    border-radius: 8px;
    background-color: transparent;
    margin-bottom: 10px;
    align-items: center;
}

.home .aktuelles_k_groupe .col-aktuelles_right::after {
    content: "";
    background-image: url('/userdata/02_Kollektionen/arrow.svg');
    background-repeat: no-repeat;
    background-size: 20px 20px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

/* ------------ jobanzeigen_k_groupe ---------------*/


.home .jobanzeigen_k_groupe {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.home .jobanzeigen_k_groupe .title_news h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #be9b53;
    margin-bottom: 20px !important;
}

.home .jobanzeigen_k_groupe .collection_list {
    display: flex;
    align-items: center;
    width: 50%;
    padding: 0;
    padding-left: 15px;
    /* max-height: 145px; */
}

.home .jobanzeigen_k_groupe .collection_list:last-child {
    margin-bottom: 0;
}

.home .jobanzeigen_k_groupe .collection_container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.home .jobanzeigen_k_groupe .col-stellen_logo {
    flex: 0 0 auto;
    width: 91px;
    height: 91px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home .jobanzeigen_k_groupe .col-stellen_logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 5px;
    border: 1px solid #B2B2B2;
    border-radius: 4px;
    background-color: #ffffff;
}

.home .jobanzeigen_k_groupe .col-stellen_right {
    flex: 1;
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.home .jobanzeigen_k_groupe .collection_content.col-stellen_title a {
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

.home .jobanzeigen_k_groupe .collection_content.col-stellen_unternehmen a {
    font-size: 14px;
    text-decoration: none;
    color: #666;
}


.home .jobanzeigen_k_groupe .collection_link {
    margin-top: 15px;
    display: flex;
    justify-content: flex-start;
}

.home .jobanzeigen_k_groupe .collection_link .button {
    background-color: #be9b53;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
}

.home .jobanzeigen_k_groupe .collection_link .button:hover {
    background-color: #083a70;
}

.home .jobanzeigen_k_groupe .collection_content.col-stellen_job a {
    font-size: 13px;
    color: #be9b53 !important;
    text-decoration: none !important;
}

.home .jobanzeigen_k_groupe .collection_content.col-stellen_title a {
    font-size: 18px;
    font-weight: 600;
    color: #4B4B4B;
    margin-top: -3px;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}
.home .jobanzeigen_k_groupe .collection_content.col-stellen_unternehmen a {
    font-size: 12px;
    color: #B2B2B2!important;
}

.home .jobanzeigen_k_groupe .col-stellen_right_text {
    display: flex;
    margin-top: 3px;
    align-items: center;
}

.home .jobanzeigen_k_groupe .col-stellen_right .col-stellen_platz, .home .jobanzeigen_k_groupe .col-stellen_right .col-stellen_zeit {
    display: flex;
    align-items: center;
    width: 50%;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #B2B2B2;
    box-sizing: border-box;
}

.home .jobanzeigen_k_groupe .collection_content {
    display: flex;
    flex-direction: inherit;
    justify-content: left;
}

.home .jobanzeigen_k_groupe .col-stellen:not(:last-child)::after {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 7px;
    background-color: #E2E2E2;
}

/* ------------ mullabfuhrplane_k_groupe ---------------*/

.home .mullabfuhrplane_k_groupe {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 100%;
    /* margin-top: 30px; */
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 0px;
}

.home .mullabfuhrplane_k_groupe .title_news h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #be9b53;
    margin-bottom: 20px !important;
}


.home .col-mullabfuhrplane_stadt {
    position: relative;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    box-sizing: border-box;
}

.home .col-mullabfuhrplane_stadt::after {
    content: '\25BC';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
}
.home .collection_list.col-mullabfuhrplane  {
    width: 100%;
}
.col-mullabfuhrplane .collection_container {
    width: 100%;
}

.home .dropdown-content {
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 6px;
}

.home .dropdown-content div {
    padding: 10px 15px;
    cursor: pointer;
    color: #333;
}

.home .dropdown-content div:hover {
    background-color: #f1f1f1;
}


.home .col-mullabfuhrplane_zeit {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-top: 30px;
        box-sizing: border-box;
        margin-bottom: 20px;
}

.home .col-mullabfuhrplane_kategorie {
    display: inline-block; 
    background-color: #34290D; 
    color: #fff; 
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 9px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

.home .col-mullabfuhrplane_datum {
    display: inline-block;
    font-size: 16px;
    color: #333;
    font-family: 'Roboto', sans-serif;
    text-align: right; 
    margin-left: auto;
}


/* ------------ verlinkungen_k_groupe ---------------*/


.home .verlinkungen_k_groupe {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 100%;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 0px;
}

.home .verlinkungen_k_groupe .title_news h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #be9b53;
}

.home .verlinkungen_k_groupe .title_news::after {
    display: none;
}

.home .verlinkungen_k_groupe .col-verlinkungen_one {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.home .verlinkungen_k_groupe .col-verlinkungen_two {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
}

.home .verlinkungen_k_groupe .col-verlinkungen_three {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.home .collection_list.col-verlinkungen {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    width: 100%;
}

.home .verlinkungen_k_groupe .collection_container {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    position: relative;
}

.home .verlinkungen_k_groupe .col-verlinkungen_one {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.home .verlinkungen_k_groupe .col-verlinkungen_two {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
}

.home .verlinkungen_k_groupe .col-verlinkungen_three {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.home .verlinkungen_k_groupe .collection_list.col-verlinkungen .collection_link {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 0;
    z-index: 2;
}

.home .verlinkungen_k_groupe .col-verlinkungen::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #E2E2E2;
    padding-right: 15px;
    padding-left: 15px;
}

.home .verlinkungen_k_groupe .verlinkungen_logo {
    width: 35px !important;
    height: 35px !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: content-box;
    overflow: visible;
}

.home .verlinkungen_k_groupe .verlinkungen_logo img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain;
    display: block;
}

.home .verlinkungen_k_groupe .verlinkungen_title {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #4B4B4B;
}

.home .verlinkungen_k_groupe .col-verlinkungen:last-child::after {
    content: none; 
}

.home .verlinkungen_k_groupe .collection_content.verlinkungen_link a{
    font-size: 15px;
    font-weight: 500;
    color: #be9b53;
    text-decoration: none !important;

}
.home .col-aktuelles_desc {
    display: none;
}
.col-aktuelles_desc {
    margin-top: 50px;
}
.col-aktuelles_desc::before {
    content: "Bild: ";
    font-weight: 600;
}
.hom .news_k-desc{
    display: none;
}
.news_k-desc {
    margin-top: 50px;
}

.home .verlinkungen_k_groupe .verlinkungen_link::after {
    content: "";
    background-image: url('/userdata/02_Kollektionen/arrow.svg');
    background-repeat: no-repeat;
    background-size: 12px 12px;
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    margin-left: 5px;
}



div#ad-77355 {
    border-radius: 13px;
    margin: 0 auto;
    justify-content: center;
    
} 


.trm-background-layer {
    position: absolute !important;
    left: 0 !important;
    bottom: -15px !important;
    top: unset !important;
}

.trm-background-layer-inner {
    right: -1px !important;
    left: unset !important;
}

div#ad-77355 {
    width: 100%;
}

.trm-ad-publisher-info {
    left: unset;
}



/* ------------ area-3 ---------------*/

#slider-wrapper {
    width: 100vw;
    overflow: hidden;
}

#slider {
    width: 100%;
}

#slider-wrapper .collection_list {
    width: 100%;
    float: none;
    padding: 0;
    position: relative;
}

#slider-wrapper .col-headerbild_img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

#slider-wrapper .collection_list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.80);
    z-index: 1;
}

.col-headerbild_groupe {
    position: absolute;
    top: 160px;
    left: 20px;
    z-index: 2;
    margin-left: 240px;
    color: #4B4B4B;
    text-align: left;
}

.col-headerbild_title {
    font-weight: bold;
}

.col-headerbild_title h1 {
    font-size: 54px;
    font-weight: bold;
    color: #4B4B4B;
}

.header-style {
    font-size: 59px !important;
    color: #be9b53 !important;
    font-family: 'MarketPro', sans-serif !important;
    font-weight: normal !important;
    margin-top: -20px;
    margin-left: 10px;
}

.col-headerbild_text {
    text-align: left;
}

.col-headerbild_text h4 {
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    color: #4B4B4B;
    text-align: left;
    margin: 0;
}

/* __________________news_kurz___________________ */
.news_kurz #content .collection_container {
    background-color: transparent !important;
}

.news_kurz .back_to_overview,
.news_kurz #backButton {
    display: none !important;
}

.news_kurz .news_k .collection_container {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 30px !important;
    padding: 20px !important;
}

.news_kurz .col-slider-textblock-left {
    flex: 0 0 58% !important;
    max-width: 58% !important;
    padding: 15px !important;
}

.news_kurz .col-slider-slider-right {
    flex: 0 0 40% !important;
    max-width: 40% !important;
    padding: 15px !important;
}

.news_kurz .collection_content.news_k-datum {
    color: #be9b53 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    font-family: 'Roboto', sans-serif !important;
    margin-bottom: 10px !important;
}

.news_kurz .col-slider-textblock-left .textcontent {
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: #333 !important;
}

.news_kurz .news_k-title {
    font-size: 20px;
    font-weight: 600;
}

.news_kurz .col-slider-textblock-left .textcontent strong {
    font-size: 20px !important;
    font-weight: bold !important;
    color: inherit !important;
}

.news_kurz .col-slider-slider-right .owl-item {
    width: 170px !important;
    height: 135px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 5px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
    background-color: #f4f4f4 !important;
    flex: 0 0 auto !important;
}

.news_kurz .col-slider-slider-right .owl-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 5px !important;
}

.news_kurz .owl-carousel .owl-item {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    box-sizing: border-box !important;
    flex: 0 0 auto !important;
}

.news_kurz .owl-carousel .owl-item img {
    object-fit: cover !important;
    border-radius: 8px !important;
}

.news_kurz a[data-zoom-id="zoom"] {
    padding: 0 !important;
    width: 170px !important;
    height: 135px !important;
}

.news_kurz div.collection_content.news_k-slide {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding-left: 0 !important;
}

.news_kurz .col-slider-slider-right .owl-item:first-child {
    margin-left: 0 !important;
}

.news_kurz .owl-carousel .owl-stage-outer {
    margin-left: -10px !important;
    overflow: hidden !important;
}

.news_kurz .owl-carousel .owl-stage {
    display: flex !important;
    flex-wrap: nowrap !important;
}

.news_kurz #content {
    padding: 0px 0;
    position: relative;
    float: left;
    width: 100%;
    margin-top: -70px;
}
.news_kurz .news_k-img img {
    border-radius: 8px;
}
.home .filter_display {
    display: none;
}
/* __________________news_alle___________________ */

.news_alle #content .collection_list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: stretch;
    min-height: 482px;
}

.news_alle #content .collection_container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #ddd;
    border-radius: 13px; 
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #fff;
}

.news_alle #content .collection_container:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.news_alle #content .collection_content.news_k-img {
    width: 482px; 
    height: 345px; 
    overflow: hidden; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.news_alle #content .collection_content.news_k-img img {
    width: 100%;
    height: 100%; 
    object-fit: cover; 
    border-radius: 0px;
}

.news_alle #content .collection_content.news_k-datum {
    color: #be9b53;
    font-size: 14px;
    padding: 10px 20px 0 20px; 
}

.news_alle #content .collection_content.news_k-title {
    font-size: 18px;
    color: #4B4B4B;
    /* padding: 10px 20px; */
    text-decoration: none; 
    margin-bottom: 10px; 
    font-weight: 500;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    display: -webkit-box;
    margin: 20px 20px 10px 20px;
}

.news_alle #content .collection_content.news_k-text a {
    text-decoration: none; 
    color: inherit; 
}
.collection_list.news_k.hide {
    display: none !important;
}
.news_alle #content .collection_link .button {
    display: block;
    text-decoration: none;
    color: #fff;
    background-color: #007bff;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    font-size: 14px;
    margin: 10px auto;
    /* width: calc(100% - 20px); */
    box-sizing: border-box;
    transition: background-color 0.3s;
    width: 100%;
}

.news_alle #content .collection_link .button:hover {
    background-color: #0056b3;
}

.news_alle #content {
    padding: 0rem 0;
    padding-bottom: 50px;
}
.news_alle #content .container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}


/* __________________aktuelle___________________ */

.aktuelles #content {
    padding: 0 0;
    position: relative;
    float: left;
    width: 100%;
    margin-top: -30px;
}

.aktuelles #position .herzlich {
    display: flex;
    align-items: center; 
    padding: 20px;
    /* border: 1px solid #ddd; */
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.aktuelles #position .herzlich_img {
    flex-shrink: 0;
    margin-right: 20px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: #eee;
}

.aktuelles #position .herzlich_img .imgcontent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aktuelles #position .row {
    display: flex;
}

.aktuelles #position .herzlich_title {
     margin-bottom: 10px; 
}

.aktuelles #position .herzlich_title .textcontent {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    color: #be9b53;
}

.aktuelles #position .herzlich_title .textcontent h2 {
    margin: 0px !important;
}

.aktuelles #position .herzlich_text {
    margin-top: 0;
}

.aktuelles #position .herzlich_text .textcontent {
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    color: #4B4B4B;
    line-height: 1.5;
    font-weight: 400;
}

.aktuelles #position .herzlich_text h2 {
    font-size: 22px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    color: #4B4B4B;
    margin: 0;
}
.aktuelles .herzlich_right{
    /* margin-top: 20px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .aktuelles .herzlich_right {
        margin-top: 20px;
    }
    
}

/* __________________col-aktuelles___________________ */


.aktuelles #area-2 .container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
}

.aktuelles #area-2 .collection_list {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
    padding: 0;
    margin-top: 20px;
}

.aktuelles #area-2 .collection_container {
    display: flex;
    width: 100%;
    box-shadow: none;
    border: none; 
    overflow: hidden;
    height: 300px;
    border-radius: 8px;
    background-color: transparent; 
    margin-bottom: 10px; 
    transition-duration: 200ms;
}
.aktuelles #area-2 .collection_list.col-aktuelles.active .collection_container {
    height: auto;
    transition-duration: 200ms;
}
.aktuelles #area-2 .collection_list.col-aktuelles.active .collection_container .col-aktuelles_text {
    display: block;
}
.aktuelles #area-2 .collection_list.col-aktuelles.active .collection_container .col-aktuelles_desc {
    display: block;
}

.aktuelles #area-2 .collection_list.col-aktuelles .collection_container::after {
    content: "Mehr lesen";
    display: inline-block;
    color: #be9b53;
    font-size: 16px;
    font-weight: 500;
    position: absolute;
    bottom: 10px;
    right: 30px;
    background-color: #fff;
    padding: 7px 12px;
    border-radius: 4px;
}

.aktuelles #area-2 .collection_list.col-aktuelles.active .collection_container::after {
    content: "Schließen";
}

.aktuelles #area-2 .collection_list:not(:last-child) {
    position: relative;

}

.aktuelles #area-2 .collection_list:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -15px; 
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #E2E2E2;
}

.aktuelles #area-2 .col-aktuelles_img {
    width: 400px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.aktuelles #area-2 .col-aktuelles_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aktuelles #area-2 .col-aktuelles_right {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    padding-top: 5px;
    line-height: 1.1;

}

.aktuelles #area-2 .col-aktuelles_status {
    width: 100%;
    padding-bottom: 10px;
    font-size: 16px;
    color: #be9b53;
    font-weight: bold;
    text-align: left;
    font-weight: 600;
}

.aktuelles #area-2 .col-aktuelles_title {
    font-size: 20px;
    color: #4B4B4B;
    font-weight: bold;
    font-weight: 600;
    margin-bottom: 10px;
}

.aktuelles #area-2 .col-aktuelles_text {
    font-size: 16px;
    color: #4B4B4B;
    line-height: 1.6;
    font-weight: 400;
    display: none;
}
.aktuelles #area-2 .col-aktuelles_desc {
    display: none;
}

.aktuelles #area-2 .preview_text {
    font-size: 16px;
    color: #4B4B4B;
    line-height: 1.6;
    font-weight: 400;
}

.aktuelles #area-2 {
    padding: 50px 0;
    position: relative;
    float: left;
    width: 100%;
    padding-bottom: 5em;
}

/* __________________stellenangebote___________________ */


.stellenangebote #content {
    padding: 5rem 0;
    position: relative;
    float: left;
    width: 100%;
    padding-top: 0 !important;
    /* display: flex; */
    flex-direction: column;
    align-items: center;
}

.stellenangebote .title-center h1 {
    font-size: 30px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    color: #4B4B4B;
    margin-bottom: 20px;
    text-align: center;
}

.stellenangebote #content .collection_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
}

.stellenangebote #content .collection_container {
    position: relative;
    width: 461px;
    height: 221px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    display: flex;
    align-items: center;
    padding-right: 0;
}

.stellenangebote #content .collection_content.col-stellenangebote_img {
    position: absolute;
    top: 0;
    right: 0;
    width: 295px;
    height: 221px;
    overflow: hidden;
    z-index: 1;
}

.stellenangebote #content .collection_content.col-stellenangebote_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
}

.stellenangebote #content .collection_content.col-stellenangebote_img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 18%, rgba(255, 255, 255, 0.6) 46%, rgba(255, 255, 255, 0) 162%);
    z-index: 2;
}

.stellenangebote #content .collection_content.col-stellenangebote_title  {
    position: relative;
    margin-left: 40px;
    max-width: 50%;
    font-size: 25px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #4B4B4B;
    z-index: 3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.stellenangebote #content .collection_content.col-stellenangebote_title a {
    text-decoration: none; 
    color: inherit;
    font-weight: inherit; 
}

/* __________________stellenangebote___________________ */

.stellenangebote_col #content .back_to_overview {
    display: none;
}

.stellenangebote_col #content #backButton {
    display: none;
}

.stellenangebote_col .collection_full.col-stellenangebote .col-stellenangebote_img img {
    display: none;
}

.stellenangebote_col .collection_content.col-stellenangebote_stellenangebote .col-stellenangebote_img img {
    display: block;
}

/*.stellenangebote_col #slider .slider-title-content,
.stellenangebote_col #slider .slider-title-content-subtitle,
.stellenangebote_col #slider .col-headerbild {
    display: none;
}*/

body.home #slider .slider-title-content,
body.home #slider .slider-title-content-subtitle,
body.home #slider .col-headerbild {
    display: unset;
}


/* __________________ stellenangebote_col ___________________ */

.stellenangebote_col #content .collection_container .col-stellenangebote_header {
    display: none;
}

.stellenangebote_col .col-stellenangebote_title {
    display: none;
}

.stellenangebote_col #content .collection_list.col-stellen {
    width: calc((100% - 60px) / 3); 
    aspect-ratio: 3.3 / 1; 
    background-color: #ffffff;
    display: flex;
    align-items: center;
    margin: 10px; 
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    box-sizing: border-box; 
}

.stellenangebote_col #content .col-stellen_logo {
    flex: 0 0 auto;
    width: 91px;
    height: 91px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stellenangebote_col #content .col-stellen_logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 5px; 
    border: 1px solid #B2B2B2; 
    border-radius: 4px; 
    background-color: #ffffff;
}

.stellenangebote_col #content .col-stellen_right {
    flex: 1;
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.col-stellen_right_text {
    display: flex;
    align-items: center;
}

.col-stellen_right .col-stellen_platz,
.col-stellen_right .col-stellen_zeit {
    display: flex; 
    align-items: center; 
    width: 50%; 
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #B2B2B2;
    box-sizing: border-box;
}

.col-stellen_right .col-stellen_platz::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px; 
    margin-right: 5px;
    background-image: url('/userdata/02_Kollektionen/Gruppe%204201.png');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-top: 2px;
}

.col-stellen_right .col-stellen_zeit::before {
    content: '';
    display: inline-block;
    width: 14px; 
    height: 14px;
    margin-right: 5px;
    background-image: url('/userdata/02_Kollektionen/time.png');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.stellenangebote_col #content .collection_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
}

.stellenangebote_col .collection_content.col-stellenangebote_stellen {
    margin-bottom: 50px;
    width: 100%;
}

.stellenangebote_col div#content {
    padding: 0px 0px;
    position: relative;
    float: left;
    width: 100%;
    margin-top: -50px;
}

.col-stellen_right_text {
    display: flex;
    margin-top: 3px;
    width: 100%;
}
.collection_content.col-stellen_job {
    font-size: 13px;
    color: #be9b53;
}

.collection_content.col-stellen_title {
    font-size: 18px;
    font-weight: 600;
    color: #4B4B4B;
    margin-top: -3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    max-height: 2.8em; 
    line-height: 1.4em; 
}
.stellen-alle #content .collection_content.col-stellen_title {
    font-size: 25px!important;
}
.collection_content.col-stellen_unternehmen {
    font-size: 12px;
    color: #B2B2B2;
}

.col-stellenangebote_stellenangebote::before {
    content: "Stellenangebote in weiteren Kategorien";
    font-size: 30px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    color: #4B4B4B;
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.collection_content.col-stellenangebote_stellenangebote {
    width: 100%;
}

.stellenangebote_col .collection_list.col-stellenangebote {
    width: 50%; 
}

.stellenangebote_col .col-stellenangebote_stellenangebote .collection_container {
    position: relative;
    height: 220px; 
    border-radius: 10px; 
    overflow: hidden; 
    box-sizing: border-box;
    margin: 10px; 
    display: inline-block;
    vertical-align: top;
}

.stellenangebote_col .col-stellenangebote_stellenangebote .col-stellenangebote_img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.stellenangebote_col .col-stellenangebote_stellenangebote .col-stellenangebote_img img {
    object-fit: contain;
    position: absolute;
    top: -2px;
    left: 165px;
    z-index: 1;
}

.stellenangebote_col .col-stellenangebote_stellenangebote .collection_container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 51%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 0) 113%);
    z-index: 2;
    border-radius: 8px; 
}

.stellenangebote_col .col-stellenangebote_stellenangebote .col-stellenangebote_title {
    position: absolute;
    top: 50%; 
    left: 10px; 
    transform: translateY(-50%); 
    z-index: 3;
    color: #4B4B4B;
    font-family: 'Roboto', sans-serif;
    margin-left: 40px;
    font-size: 25px; 
    font-weight: 500; 
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    display: block;
    max-width: 40%;
}

.collection_link {
    z-index: 50;
}




  


/* __________________ stellen-alle ___________________ */ 


.stellen-alle .back_to_overview {
    display: none;
}

.stellen-alle button#backButton {
    display: none;
}

.stellen-alle .collection_content.col-stellen_unternehmen {
    display: none;
}

.stellen-alle #content {
    padding: 5rem 0;
    position: relative;
    float: left;
    width: 100%;
    padding-top: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -40px;
}

.stellen-alle #content .col-stellen .collection_container {
    display: flex;
    flex-direction: row; 
    justify-content: space-between; 
    width: 100%;
    box-sizing: border-box;
}

.stellen-alle #content .col__block-left_stellen {
    flex: 1; 
    display: flex;
    flex-direction: column;
    padding: 15px;
    order: 1; 
}

.stellen-alle #content .col__block-right_stellen {
    flex: 0 0 33.33333%; 
    display: flex;
    flex-direction: column;
    padding: 15px;
    order: 2; 
}

.stellen-alle .collection_content.col-stellen_zeit {
    display: none;
}

.stellen-alle .collection_content.col-stellen_platz {
    display: none;
}

.stellen-alle .collection_content.col-stellen_logo {
    padding: 37px 120px; 
    background-color: #ffffff; 
    border-radius: 10px; 
    margin-bottom: 15px;
}

.stellen-alle .collection_content.col-stellen_img img {
    width: 434px!important;
    height: 325px!important; 
    object-fit: cover;
    border-radius: 10px;
}
 

.stellen-alle .col__block-right_stellen {
    border-left: 1px solid #E2E2E2; 
    padding-left: 15px; 
    box-sizing: border-box; 
}

.stellen-alle .collection_content.col-stellen_job {
    margin-bottom: 10px;
    font-size: 13px;
    color: #be9b53;
}

.stellen-alle .collection_content.col-stellen_title {
    margin-bottom: 10px;
}

.collection_content.col-stellen_img {
    margin-top: 15px;
    margin-bottom: 30px;
}

.stellen-alle .collection_content.col-stellen_ort,
.stellen-alle .collection_content.col-stellen_start,
.stellen-alle .collection_content.col-stellen_frei_platz,
.stellen-alle .collection_content.col-stellen_vollzeit {
    position: relative;
    padding-left: 73px;
    font-size: 18px;
    color: #4B4B4B;
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.stellen-alle .collection_content.col-stellen_ort strong,
.stellen-alle .collection_content.col-stellen_start strong,
.stellen-alle .collection_content.col-stellen_frei_platz strong,
.stellen-alle .collection_content.col-stellen_vollzeit strong {
    font-weight: 600;
}

.stellen-alle .collection_content.col-stellen_ort .textcontent,
.stellen-alle .collection_content.col-stellen_start .textcontent,
.stellen-alle .collection_content.col-stellen_frei_platz .textcontent,
.stellen-alle .collection_content.col-stellen_vollzeit .textcontent {
    font-weight: 400; 
}

.stellen-alle .collection_content.col-stellen_ort::before,
.stellen-alle .collection_content.col-stellen_start::before,
.stellen-alle .collection_content.col-stellen_frei_platz::before,
.stellen-alle .collection_content.col-stellen_vollzeit::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px !important; 
    height: 50px !important;
    background-repeat: no-repeat;
    background-size: contain;
}

.stellen-alle .collection_content.col-stellen_ort::before {
    background-image: url('/userdata/02_Kollektionen/Gruppe 4398-1.svg') !important;
}

.stellen-alle .collection_content.col-stellen_start::before {
    background-image: url('/userdata/02_Kollektionen/Gruppe 4399-1.svg') !important;
}

.stellen-alle .collection_content.col-stellen_frei_platz::before {
    background-image: url('/userdata/02_Kollektionen/Gruppe 4400-1.svg') !important;
}

.stellen-alle .collection_content.col-stellen_vollzeit::before {
    background-image: url('/userdata/02_Kollektionen/Gruppe 4401-1.svg') !important;
}

.stellen-alle .collection_content.col-stellen_link a {
    display: block;
    text-align: center;
    background-color: #be9b53;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0;
    border-radius: 10px;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    margin-top: 30px;
}

.stellen-alle .collection_content.col-stellen_link a:hover {
    background-color: #be9b53;
    transition: background-color 0.3s;
}

.stellen-alle #content ol li, .stellen-alle  #content ul li {
    list-style: unset;
}

.stellen-alle .collection_content.col-stellen_text ul {
    padding-inline-start: 10px !important;
    list-style-type: disc;
}

.stellen-alle ::marker {
    color: #be9b53;
}

.stellen-alle .collection_content.col-stellen_text ul {
    padding-inline-start: 20px !important; 
    margin: 0; 
    list-style-type: disc;
}

.stellen-alle .collection_content.col-stellen_text ul li {
    position: relative;
}

.stellen-alle .collection_content.col-stellen_text ul li::marker {
    font-size: 18px;
    color: #be9b53;
    vertical-align: middle;
}


.stellen-alle .collection_content.col-stellen_kol {
    margin-bottom: 50px;
    width: 100%;
    margin-top: 50px;
}

.stellen-alle .collection_list.col-stellen {
    width: calc((100% - 60px) / 3);
    aspect-ratio: 3.3 / 1;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    margin: 10px;
    max-height: 145px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}
.stellen-alle #content .col-stellen_kol .col-stellen_logo {
    flex: 0 0 auto;
    width: 91px;
    height: 91px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0!important;
    margin-bottom: 0px!important;
}
.stellen-alle .col-stellen_kol .col-stellen_logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 5px;
    border: 1px solid #B2B2B2;
    border-radius: 4px;
    background-color: #ffffff;
} 
.stellen-alle .col-stellen_kol .col-stellen_right {
    flex: 1;
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
} 
.stellen-alle .col-stellen_kol .collection_content.col-stellen_unternehmen {
    display: unset;
}
.stellen-alle  .col-stellen_kol  .collection_content.col-stellen_platz {
    display: unset;
}
.stellen-alle  .col-stellen_kol  .collection_content.col-stellen_zeit {
    display: unset;
}
.stellen-alle .col-stellen_kol  .collection_content.col-stellen_job {
        margin-bottom: 10px;
        margin-bottom: 0px;
        font-size: 13px;
        color: #be9b53;
    }
.stellen-alle .col-stellen_kol  .collection_content.col-stellen_title {
        margin-bottom: 10px;
        margin-bottom: 3px;
    }


    .col-stellen_formular {
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-top: 80px;
        margin-bottom: 20px;
        position: relative;
        padding: 110px 80px 20px;
    }
    
    .col-stellen_formular::before {
        content: "Das klingt interessant?";
        display: block;
        font-size: 16px;
        font-weight: 500;
        color: #be9b53;
        text-align: center;
        margin-bottom: 8px;
        position: absolute;
        top: 30px;
        left: 0;
        right: 0;
    }
    
    .col-stellen_formular::after {
        content: "Bewerben Sie sich hier ganz einfach auf diese Stelle";
        display: block;
        font-size: 25px;
        font-weight: 500;
        color: #4B4B4B;
        text-align: center;
        margin-bottom: 20px;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
    }
    
    .form-label-left {
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px; 
    }
    
    .form-group.vorname,
    .form-group.nachname,
    textarea {
        grid-column: 1; 
    }
    
    .form-group.telefonnummer,
    .form-group.mail,
    input[type="file"],
    .form-group.form-check {
        grid-column: 2;
    }
    

    .form-control {
        border: 1px solid #E2E2E2;
        border-radius: 4px;
        padding: 10px;
        font-size: 16px;
        color: #4B4B4B;
        box-sizing: border-box;
    }
    
 
    textarea#input_nachricht {
        height: 120px;
        resize: none;
    }
    

    .contact-button {
        grid-column: span 2;
        text-align: center;
    }
    
    .form-group.form-check {
        display: flex;
        align-items: center;
        margin-top: -125px;
    }
    
    .collection_content.col-stellen_kol + .col-stellen_formular,
    .col-stellen_formular + .collection_content.col-stellen_kol {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .stellen-alle .form-group {
        float: left;
        width: 100%;
        padding: 0px 0;
    }
    
    .stellen-alle div#submit_button {
        float: left;
        width: auto;
        margin: 1rem 0;
        margin-top: 0px!important;
    }
    /* .stellen-alle .col-stellen_ort::after {
        content: "Standort: ";
        font-weight: bold;
        display: block;
        color: #4B4B4B;
        
    }
    
    .stellen-alle .col-stellen_start::after {
        content: "Start: ";
        font-weight: bold;
        display: block;
        color: #4B4B4B;
    }

    
    .stellen-alle .col-stellen_frei_platz::after {
        content: "Anzahl der freien Plätze: ";
        font-weight: bold;
        display: block;
        color: #4B4B4B;
    }
    
    .stellen-alle .col-stellen_vollzeit::after {
        content: "Art der Beschäftigung: ";
        font-weight: bold;
        display: block;
        color: #4B4B4B;
    }
     */
     .stellen-alle .col__block-right_stellen .collection_content {
        display: flex;
        flex-direction: column;
        align-items: flex-start; 
        gap: 2px; 
    }
    
    .stellen-alle .col__block-right_stellen .field_description_title {
        color: #4B4B4B; 
        font-weight: bold; 
        display: block;
    }
    
    
    .stellen-alle .col-stellen_formular {
        width: 100%; 
    }
    
    .stellen-alle .collection_content.col-stellen_vollzeit {
        position: relative;
        cursor: pointer;
    }
    
    .stellen-alle .col__block-right_stellen::after {
        content: "Jetzt bewerben";
        display: block;
        text-align: center;
        background-color: #be9b53;
        color: #ffffff;
        font-size: 18px;
        font-weight: 500;
        padding: 10px 0;
        border-radius: 10px;
        text-decoration: none;
        width: 100%;
        box-sizing: border-box;
        margin-top: 30px;
        cursor: pointer;
    }
    
    
    
/* __________________ col-kalender ___________________ */  

.veranstaltungskalend #content .collection_list {
    gap: 20px; 
    width: 50%!important;
}
.veranstaltungskalend .filter_display {
    width: 100%;
}
.veranstaltungskalend div#position {
    display: flex;
    flex-wrap: wrap;
} 
.veranstaltungskalend #content .collection_container {
    background-color: #ffffff; 
    border: 1px solid #e0e0e0;
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    padding: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    height: 100%;
}


.veranstaltungskalend #content .collection_content.col-kalender_icon {
    position: absolute;
    top: 6px;
    left: 11px;
    width: 40px !important;
    height: 40px !important;
    background-color: #E2E2E2 !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    overflow: visible !important;
    z-index: 2;
}

.veranstaltungskalend #content .collection_content.col-kalender_icon img {
    width: 20px !important;
    height: 20px !important;
    position: relative !important;
    z-index: 3;
    object-fit: contain !important;
}

.veranstaltungskalend #content .collection_content.col-kalender_titlee {
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #4B4B4B !important;
    text-align: left !important;
    margin: 0 !important;
    position: relative;
}

.veranstaltungskalend #content .collection_content.col-kalender_titlee::before {
    content: attr(data-category);
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #be9b53;
    margin-bottom: 5px;
    text-align: left;
}


.veranstaltungskalend #content .collection_content.col-kalender_details {
    display: flex;
    gap: 10px; 
    align-items: center;
}

.veranstaltungskalend #content .collection_content.col-kalender_datum,
.veranstaltungskalend #content .collection_content.col-kalender_zeit {
    font-size: 14px !important;
    color: #666 !important;
    text-align: left !important;
    margin: 0 !important;
    border: 1px solid #be9b53 !important;
    padding: 4px 8px !important;
    border-radius: 5px !important;
    display: inline-block !important;
    margin-right: 10px!important;
}

.veranstaltungskalend #content .collection_content.col-kalender_adress {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #4B4B4B !important;
    text-align: left !important;
    margin: 5px 0 5px 0 !important;
}

.veranstaltungskalend #content .collection_content.col-kalender_bild {
    width: 163px !important;
    height: 122px !important;
    overflow: hidden !important;
    border-radius: 10px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
    z-index: 1;
}

.veranstaltungskalend #content .collection_content.col-kalender_bild img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 10px !important;
    z-index: 1; 
}

.veranstaltungskalend #content .collection_link a.button {
    display: inline-block !important;
    background-color: #be9b53 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 10px 20px !important;
    font-size: 14px !important;
    border-radius: 5px !important;
    text-align: center !important;
    margin-top: 10px !important;
    transition: background-color 0.3s ease !important;
}

.veranstaltungskalend #content .collection_link a.button:hover {
    background-color: #be9b53 !important;
}

.veranstaltungskalend #content .col-kalender_one {
    order: 1 !important;
}

.veranstaltungskalend #content .col-kalender_three {
    order: 2 !important;
    margin-left: -24px;
}

.veranstaltungskalend #content .col-kalender_two {
    order: 3 !important;
    width: 100%;
}

.col-kalender_two_datum {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 3px;
}

.veranstaltungskalend #content .collection_content.col-kalender_outlook {
    font-size: 14px !important;
    color: #666 !important;
    background-color: #E2E2E2 !important;
    border-radius: 10px !important;
    padding: 5px 10px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin-left: auto !important;
    justify-content: flex-end;
}

.veranstaltungskalend #content .collection_content.col-kalender_outlook::before {
    content: url('/userdata/02_Kollektionen/calendar2-plus.svg');
    display: inline-block;
    width: 14px;
    height: 14px;
    object-fit: contain;
    margin-right: 5px;
    margin-top: -4px;
}


 .home .col-kalender_adress {
    display: none;
 }
 .home .col-kalender_zeit {
    display: none;
 }
 .home .col-kalender_outlook {
    display: none;
 }
 .home .col-kalender_text {
    display: none;
 }
 .veranstaltungskalend .col-kalender_text {
    display: none;
 }
.full_preview  .col-kalender_text {
    display: unset!important;
 }




.home .news_k_veran .col-kalender_icon {
    width: 25px !important;
    height: 25px !important;
    background-color: #E2E2E2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-sizing: content-box;
    overflow: visible;
}

.home .news_k_veran .col-kalender_icon img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain;
    display: block;
}

.veranstaltungskalend #content .collection_content.col-kalender_icon {
    position: absolute;
    top: 6px;
    left: 11px;
    width: 40px !important;
    height: 40px !important;
    background-color: #E2E2E2 !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    overflow: visible !important;
    z-index: 2;
}

.veranstaltungskalend #content .collection_content.col-kalender_icon img {
    width: 20px !important;
    height: 20px !important;
    position: relative !important;
    z-index: 3;
    object-fit: contain !important;
}



/* __________________ col-kalender   full_preview  ___________________ */

.full_preview #backButton, .full_preview .back_to_overview {
    display: none !important;
}

.veranstaltungskalend.full_preview #content .collection_container {
    background-color: unset;
    border: unset;
    border-radius: unset;
    box-shadow: unset;
    padding: 15px;
    display: flex;
    flex-direction: row;
    align-items: unset;
    gap: 15px;
}

.veranstaltungskalend.full_preview #content .collection_content.col-kalender_bild {
    width: 425px !important;
    height: 319px !important;
    position: relative;
}

.veranstaltungskalend.full_preview #content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px; 
}

.veranstaltungskalend.full_preview #content .col-kalender_two {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.veranstaltungskalend.full_preview #content .col-kalender_three {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    position: relative; 
}

.veranstaltungskalend.full_preview #content .col-kalender_three::before {
    content: "";
    position: absolute;
    top: 0;
    right: 7px;
    width: 2px;
    height: 100%;
    background-color: #E2E2E2;
}

.veranstaltungskalend.full_preview div#content {
    padding-top: 0px;
    margin-top: -30px;
}

.veranstaltungskalend.full_preview #content .col-kalender_one {
    margin-left: 50px;
}

.veranstaltungskalend.full_preview #content .collection_content.col-kalender_titlee {
    margin-bottom: 20px !important;
}

.veranstaltungskalend.full_preview #content .col-kalender_one,
.veranstaltungskalend.full_preview #content .col-kalender_two,
.veranstaltungskalend.full_preview #content .col-kalender_three {
    width: 100% !important;
    flex: 1 1 auto;
    display: flex;
    justify-content: start;
    flex-direction: column;
    gap: 10px;
    padding-right: 30px;
}

.veranstaltungskalend.full_preview #content .col-kalender_two_datum {
    display: block !important;
    gap: 5px;
    margin-top: 10px !important;
}

.veranstaltungskalend.full_preview #content .collection_content.col-kalender_one img,
.veranstaltungskalend.full_preview #content .collection_content.col-kalender_two img,
.veranstaltungskalend.full_preview #content .collection_content.col-kalender_three img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.veranstaltungskalend.full_preview #content .col-kalender_three_o_adress {
    font-size: 16px !important;
    color: #4B4B4B !important;
    text-align: left !important;
    margin: 0 !important;
    margin-top: 10px !important;
    position: relative;
    border: 1px solid #be9b53 !important;
    padding: 4px 8px !important;
    border-radius: 5px !important;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}
.veranstaltungskalend.full_preview #content .collection_content.col-kalender_adress::after {
    content: ",";
    margin-right: 3px;
}

.veranstaltungskalend.full_preview #content .col-kalender_three_o::before {
    content: "Wo?";
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #4B4B4B !important;
    text-align: left;
}

.veranstaltungskalend.full_preview #content .collection_content.col-kalender_datum {
    font-size: 16px !important;
    color: #4B4B4B !important;
    text-align: left !important;
    margin: 0 !important;
    margin-top: 10px !important;
    display: inline-block !important;
    border: 1px solid #be9b53 !important;
    padding: 4px 8px !important;
    border-radius: 5px !important;
}

.veranstaltungskalend.full_preview #content .col-kalender_three_o_datum::before {
    content: "Wann?";
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #4B4B4B !important;
    text-align: left;
    margin-top: 10px;
}

.veranstaltungskalend.full_preview #content .collection_content.col-kalender_zeit {
    font-size: 16px !important;
    color: #4B4B4B !important;
    text-align: left !important;
    margin: 0 !important;
    margin-left: 30px !important;
    display: inline-block !important;
    border: 1px solid #be9b53 !important;
    padding: 4px 8px !important;
    border-radius: 5px !important;
}

.veranstaltungskalend.full_preview #content .collection_content.col-kalender_zeit::after {
    content: "Uhr";
    display: inline-block;
    margin-left: 5px;
    font-size: 16px;
    color: #4B4B4B !important;
}
.veranstaltungskalend.full_preview #content .collection_content.col-kalender_zeit_end::after {
    content: "Uhr";
    display: inline-block;
    margin-left: 5px;
    font-size: 16px;
    color: #4B4B4B !important;
}

.veranstaltungskalend.full_preview #content .collection_content.col-kalender_outlook {
    font-size: 16px !important;
    color: #4B4B4B !important;
    text-align: center !important;
    margin-top: 10px !important;
    background-color: #ffffff !important;
    border-radius: 10px !important;
    padding: 5px 10px !important;
    display: inline-block;
    cursor: pointer;
}

.col-kalender_three_o {
    width: 100%;
}
.veranstaltungskalend div#content, .main-screen {
    padding: 0rem 0;
    position: relative;
    float: left;
    width: 100%;
    padding-bottom: 5rem;
    margin-top: -50px;
}   


.veranstaltungskalend.full_preview .col-kalender_one {
    display: none !important; 
}

.veranstaltungskalend.full_preview #content .col-kalender_one_o {
    width: 100% !important;
    flex: 1 1 auto;
    display: flex;
    justify-content: start;
    flex-direction: column;
    gap: 10px;
    padding-right: 30px;
}
.veranstaltungskalend.full_preview #content .collection_content.col-kalender_icon {
    left: -30px !important; 
    overflow: visible !important; 
    clip-path: none !important; 
    position: relative; 
    top: 0;

}
.veranstaltungskalend.full_preview #content .collection_content.col-kalender_titlee {
    margin-bottom: 20px !important;
    margin-left: 24px !important;
    margin-top: -40px !important;
}

.veranstaltungskalend.full_preview #content .col-kalender_three_o_adress_stadt {
    font-size: 16px !important;
    color: #4B4B4B !important;
    text-align: left !important;
    margin: 0 !important;
    margin-top: 10px !important;
    position: relative;
    border: 1px solid #be9b53 !important;
    padding: 4px 8px !important;
    border-radius: 5px !important;
    display: flex;
    gap: 3px;
    align-items: center;
    white-space: nowrap;
}
.veranstaltungskalend.full_preview #content .collection_content.col-kalender_datum_end {
    font-size: 16px !important;
    color: #4B4B4B !important;
    text-align: left !important;
    margin: 0 !important;
    margin-top: 10px !important;
    display: inline-block !important;
    border: 1px solid #be9b53 !important;
    padding: 4px 8px !important;
    border-radius: 5px !important;
}
.veranstaltungskalend.full_preview #content .collection_content.col-kalender_zeit_end {
    font-size: 16px !important;
    color: #4B4B4B !important;
    text-align: left !important;
    margin: 0 !important;
    margin-left: 30px !important;
    display: inline-block !important;
    border: 1px solid #be9b53 !important;
    padding: 4px 8px !important;
    border-radius: 5px !important;
}

.veranstaltungskalend.full_preview #content .col-kalender_three_o_datum {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.veranstaltungskalend.full_preview #content .col-kalender_three_o_datum_end::before {
    content: "bis";
    display: block;
    text-align: left;
    font-weight: 500;
    font-size: 16px;
    color: #4B4B4B;
    width: 220px;
    margin-bottom: 3px;
}
/* __________________ Marktplatz ___________________ */


.kleinanz #content .container {
    padding: 30px 0px;
}
.kleinanz #content .container .row{
    display: flex;
}

.kleinanz .row .art {
    display: flex;
    flex-wrap: wrap;
    /* padding-top: 40px; */
    position: relative;
}
.kleinanz .row .art .collection_container {
    background-color: #f5f7fb;
    border-radius: 5px;
    overflow: hidden;
    padding-bottom: 20px;
    transition-duration: 300ms;
    height: 100%;
}
.kleinanz .row .art .collection_container:hover {
    transform: scale(1.05);
    transition-duration: 300ms;
}

.kleinanz .anzeige {
    height: min-content;
}
.kleinanz .anzeige .bild {
    width: 100%; 
    aspect-ratio: 4 / 3;
    overflow: hidden; 
    display: flex;
    justify-content: center;
    align-items: center;
}
.kleinanz .anzeige .title {
    font-weight: 600;
    font-size: 17px;
    color: #424242;
    margin-top: 15px;
    margin-left: 15px;
    margin-right: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.kleinanz .anzeige .city {
    font-weight: 500;
    font-size: calc(13px + 2*(100vw - 320px) / 1600);
    color: #757575;
    margin-left: 15px;
    margin-bottom: 20px;
}
.kleinanz .anzeige .price {
    background-color: #BE9B53;
    position: absolute;
    padding: 5px 10px 3px 10px;
    right: 0;
    bottom: 9px;
    border-radius: 5px 0px 0px 5px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
}
.kleinanz .anzeige .price::after {
    content: "€";
}
@media (max-width: 1499px) {
    .kleinanz .collection_list.anzeige {
        width: 50%;
    }
}
@media (max-width: 1200px) {
    .kleinanz .row .art {
        width: 60%;
    }
    .kleinanz .menu {
        width: 40%;
    }
}
@media (max-width: 991px) {
    .kleinanz .row {
        flex-wrap: wrap;
    }
    .kleinanz .row .art {
        width: 100%;
    }
    .kleinanz .menu {
        width: 100%;
    }
    .collection_list.anzeige .collection_container {
        min-height: 310px;
    }
    .kleinanz .anzeige .price {
        background-color: #BE9B53;
        position: absolute;
        padding: 5px 10px 3px 10px;
        right: 0;
        bottom: -3px;
        border-radius: 5px 0px 0px 5px;
        font-weight: 500;
        color: #fff;
        margin-bottom: 10px;
    }
    .festanstellungen .col-stellenangebote_stellenangebote .col-stellenangebote_img img, .auszubildende .col-stellenangebote_stellenangebote .col-stellenangebote_img img, .minijobbler .col-stellenangebote_stellenangebote .col-stellenangebote_img img {
        left: 48px!important;
    }
    .festanstellungen .collection_list.col-stellenangebote, .auszubildende .collection_list.col-stellenangebote , .minijobbler .collection_list.col-stellenangebote {
            padding: 0;
    }
}
@media (max-width: 550px) {
    .kleinanz .collection_list.anzeige {
        width: 100%;
    }
    .kleinanz #content .container {
        background-color: #fff;
        padding: 10px 10px;
    }
}

@media (max-width: 407px) {
    .kleinanz .anzeige .price {
        background-color: #BE9B53;
        position: absolute;
        padding: 5px 10px 3px 10px;
        right: 0;
        bottom: -6px;
        border-radius: 5px 0px 0px 5px;
        font-weight: 500;
        color: #fff;
        margin-bottom: 10px;
    }
}
.anzeige-add-link a{
    color: #fff;
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
    background-color: #64BE53;
    padding: 15px;
    text-align: center;
    border-radius: 13px;
    max-width: 250px;
    margin-left: 15px;
    font-size: 14px;
}
@media (max-width: 550px) {
    .anzeige-add-link a{
        max-width: 100%;
        margin-top: 25px;
        margin-left: 20px;
        /* margin-right: 25px; */
    }
    
}
@media (max-width: 435px) {
    .kleinanz #content .collection_list {
        height: auto !important;
    }
}
.buttons__markt .anzeige-add-link .row {
    justify-content: center;
}
.kleinanz .anzeige-add-link .textcontent{ 
    display: flex;
    align-items: center;
}
.kleinanz .anzeige-frage a{
    background-color:#ffffff;
    display: flex;
    align-items: center;
    /* height: 100%; */
    padding: 13px;
    margin-left: 10px;
    border-radius: 13px ;
    font-size: 14px;
    font-weight: 500;
}
.kleinanz .anzeige-frage a span{
    padding-left: 10px;
}
.kleinanz .anzeige-frage img{
    width: 24px !important;
    height: 24px !important;
    object-fit: contain;
}
@media (max-width: 550px) {
    .kleinanz .anzeige-frage{
        display: flex;
        align-items: center;
    }
}
.kleinanz.full_preview .anzeige-frage {
    display: none;
}

.kleinanz.full_preview .back_to_overview{
    display: none;
}
.kleinanz.full_preview #backButton{
    position: absolute;
    background-color: #BE9B53;
    padding: 0px 25px 9px 25px;
    border-radius: 13px 0px 0px ;
    color: #fff !important;
    border: 2px solid transparent;
    top: -30px;
    margin-top: 5px;
    transition-duration: 200ms;
}
.kleinanz.full_preview .row .art {
    flex-wrap: unset;
}
.kleinanz.full_preview .row .art .anzeige .collection_container:hover {
    transform: none;
}
.kleinanz.full_preview .row .art .bild{
    height: 400px;
}
.kleinanz.full_preview .anzeige .descr {
    padding: 15px;
}
.kleinanz.full_preview .anzeige .tel {
    padding: 15px;
}
.kleinanz.full_preview .anzeige .descr {
    font-style: calc(14px + 3*(100vw - 320px) / 1600);
    color: #424242;
}
.kleinanz.full_preview .anzeige .descr span {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #424242;
}
.kleinanz.full_preview .whatlink {
    position: absolute;
    width: 30px;
    height: 30px;
    display: block;
    background: url("/userdata/02_Kollektionen/whats.svg");
    background-repeat: no-repeat;
    background-size: contain;
    right: 20px;
    bottom: 20px;
}
@media (max-width: 768px) {
    .kleinanz.full_preview .anzeige .collection_container {
        display: grid!important
    }
    .kleinanz.full_preview .anzeige-left-b {
        padding-right: 20px;
        padding-left: 20px;
        width: 100%!important;
    }
    .kleinanz.full_preview .anzeige-left-b .bild img {
        border-radius: 10px!important;
    }
    

}
@media (max-width: 500px) {
    
.aktuelles .col-headerbild_groupe {
    top: 40px;

}
.stellen-alle .col-headerbild_groupe {
    top: 74px;
    left: 15px;

}
.news_alle .col-headerbild_groupe {
    top: 91px;
}
}
@media (max-width: 550px) {
    .kleinanz.full_preview .row .art .bild {
        height: calc(200px + 400 * (100vw - 320px) / 550);
    }
}
@media (max-width: 768px) {
    .kleinanz.full_preview .anzeige-right-b {
        padding: 20px;
    }
}
@media (max-width: 425px) {
    .kleinanz.full_preview .anzeige-left-b,
    .kleinanz.full_preview .anzeige-right-b {
        width: 100%!important;
    }
}

@media (max-width: 420px) {
    .collection_content.col-headerbild_title h1 {
        font-size: 35px !important;
        line-height: 1.2 !important;
        word-break: break-word !important;
        white-space: normal !important;
    }

    .collection_content.col-headerbild_title h1 .header-style {
        font-size: 35px !important;
        display: block !important; 
        margin-top: 5px !important; 
        margin-left: 0!important;
    }
}






@media (max-width: 345px) {
    .news_alle .col-headerbild_groupe {
        top: 65px;
    }
}

.kleinanz.full_preview .anzeige .avatar {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
    
}
.ver-info {
    display: flex;
    margin-left: 20px;
    align-items: center;
    margin-top: 20px;
}
.ver-info .ver-info-right{
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}
.ver-info .ver-info-right .col-anz__name{
    font-weight: 600;
}
.ver-info .ver-info-right .tel{
    padding: 0 !important;
    margin-top: 5px;
}

.kleinanz.full_preview .anzeige-add-link{
    display: none;
    
}
.kleinanz.full_preview .collection_full.anzeige{
    width: 100%;
    background-color: #fff; 
    border-radius: 8px; 
}

.kleinanz.full_preview .bild img {
    object-fit: contain;
    margin-top: 5px;
}

.kleinanz.full_preview .collection_list.anzeige {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: stretch;

}

.kleinanz .collection_list.anzeige .collection_container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #ddd;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #fff;
}


.kleinanz div#content{
    padding: 0 0;
    position: relative;
    float: left;
    width: 100%;
    padding-bottom: 5rem;
}
.beitreage-entf a {
    color: #BE9B53;
    padding-bottom: 20px;
    display: block;
    font-size: 18px;
    margin-left: 15px;
    margin-top: 30px;
    max-height: 40px;
    bottom: 0;
}

.kleinanz.full_preview .anzeige .collection_container  {
    display: flex;
    flex-direction: row;
    /* justify-content: space-between; */
    align-items: flex-start;
    gap: 20px;
}



.kleinanz.full_preview .anzeige-left-b {
    display: flex;
    justify-content: flex-start;
}

.kleinanz.full_preview .anzeige-left-b .bild {
    width: 100%;
    height: auto;
    max-height: 400px; 
    aspect-ratio: 4 / 3;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kleinanz.full_preview .anzeige-left-b .bild img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
}


.kleinanz.full_preview .anzeige-right-b {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}




/* __________________ footer ___________________ */

#footer {
    display: flex !important;
    flex-wrap: wrap !important;
}

.footer-1 {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 20px !important; 
    flex-wrap: nowrap !important; 
}

.footer-1 .imgcontent img {
    width: 77px !important;
    height: 84px !important;
    margin-right: 40px !important;
    object-fit: cover !important;
}

.footer-1 .textcontent {
    width: 70% !important;
    display: flex !important;
    flex-direction: column !important;
    max-width: 100% !important; 
    padding-left: 20px !important;
    font-size: 17px;
    text-align: left !important;
    font-weight: 500;
}

.footer-2 {
    width: 60% !important;
}

.footer-1 .textcontent a, .footer-2 a {
    display: inline-block !important;
    padding: 10px 20px !important;
    background-color: #be9b53 !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 13px !important;
    text-align: center !important;
    margin-top: 10px !important; 
}

.footer-1 .textcontent a:hover, .footer-2 a:hover {
    background-color: #333333 !important;
}

.footer-sitemap a {
    text-decoration: none !important; 
    color: #4B4B4B!important; 
    font-size: 15px !important;
}

.copyright a {
    text-decoration: none !important; 
}

#footer .container {
    display: flex !important;
    justify-content: space-between !important; 
    flex-wrap: nowrap !important; 
}

.footer-group {
    width: 60% !important; 
    display: flex !important;
    flex-direction: column !important; 
    justify-content: flex-start !important;
}

.footer-3 {
    width: 40% !important; 
    display: flex !important;
    align-items: center !important;
    box-sizing: border-box !important;
    margin-left: 14px;
}

.footer-3 .component.footer-3 {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important; 
    justify-content: space-between !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.footer-3 .component.footer-3 .textcontent {
    flex: 0 0 calc(50% - 10px) !important; 
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
}

.footer-3 .component.footer-3 .textcontent a {
    display: block !important;
    width: 100% !important; 
    padding: 10px 20px !important;
    background-color: #be9b53 !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 13px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    transition: background-color 0.3s ease !important;
    box-sizing: border-box !important;
}

.footer-3 .component.footer-3 .textcontent a:hover {
    background-color: #ac883f !important;

}

.component.footer-3 .status-container.footer-style {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff; 
    flex: 0 0 calc(50% - 10px) !important;
    border-radius: 13px; 
    padding: 10px 20px; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.component.footer-3 .status-container.footer-style span {
    font-size: 15px !important;
    font-weight: 500 !important; 
    color: #333333; 
}

.component.footer-3 .status-container.footer-style .pulse {
    margin-right: 10px;
}

.footer-sitemap,
.footer-1,
.footer-2 {
    margin-bottom: 20px !important; 
}

.footer-sitemap ul {
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

body, .container, .main_nav, #slider-wrapper, #content, #area-2, #footer-header, #footer {
    overflow-x: hidden !important;
}

.component.footer-1 {
    width: 100% !important;
}

.component.footer-2 {
    width: 100% !important;
}

.footer-2 {
    width: 100% !important;
}

.footer-2 .collection_list {
    display: flex !important;
    width: 25%!important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-wrap: wrap !important; 
    gap: 20px !important; 
    background: unset !important;
}

.footer-2 .collection_container {
    display: flex !important;
    align-items: center !important;
    box-sizing: border-box !important;
}

.footer-2 .footer-col-icon_bild img {
    width: 55px!important;
    height: 55px!important;
    object-fit: fill !important;
    margin-right: 15px !important; 
}

.footer-2 .footer-col-icon_text {
    flex: 1 !important; 
    font-size: 14px !important; 
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #333333 !important;    color: #4B4B4B !important; 
    font-weight: 500 !important;
}

.footer-sitemap {
    display: none !important;
}
.footer-3 .component.footer-3::before {
    content: "Unsere Formulare" !important;
    display: block !important;
    width: 100% !important;
    font-size: 17px;
    text-align: left !important;
    font-weight: 600;
    margin-top: -31px;
}


.footer-3 .component.footer-3 .pulse {
    margin-right: 10px!important;
}


.impressum div#content, .impressum .main-screen {
    padding: 0 0;
    position: relative;
    float: left;
    width: 100%;
    padding-bottom: 5rem;
}

.datenschutz .col-lg-6 {
    width: 100%;
}
.agb .col-lg-6 {
    width: 100%;
}

.datenschutz div#content, .impressum .main-screen {
    padding: 0 0;
    position: relative;
    float: left;
    width: 100%;
    padding-bottom: 5rem;
}
.agb div#content, .impressum .main-screen {
    padding: 0 0;
    position: relative;
    float: left;
    width: 100%;
    padding-bottom: 5rem;
}

.home .header-button .collection_link a {
    pointer-events: none;
    cursor: default;
    color: gray;
    text-decoration: none;
}

.aktuelles .collection_list.col-aktuelles a {
    pointer-events: none; 
    cursor: default; 
    text-decoration: none;
}


div#header_3 {
    display: none;
}

.stellen-alle #area-3 .col-stellen .collection_container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}
.stellen-alle #area-3 .col-stellen_kol .col-stellen_logo {
    flex: 0 0 auto;
    width: 91px;
    height: 91px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
    margin-bottom: 0px !important;
}

.title_formular p {
    font-size: 25px;
    font-weight: 500;
    color: #4B4B4B;
    margin-bottom: 20px;
    margin-top: 70px;
    text-align: center;
}

.footer-col-icon a {
    width: 100%;
    height: 100%;
}

.sib-form {
    padding: 0!important;
}

.hide {
    display: none!important;
}


.veranstaltungskalend .col-kalender_adress,
.veranstaltungskalend .col-kalender_stadt {
    display: inline;
    margin-right: 5px;
}
.veranstaltungskalend .col-kalender_adress::after {
    content: ",";
    margin-right: 5px;
}

.veranstaltungskalend .col-kalender_stadt {
    display: inline;
}
.veranstaltungskalend .col-kalender_adress {
    display: inline;
}





/* __________________ Allgemeine Stile JOB ___________________ */
.festanstellungen  .filter_display {
    display: none;
}
.collection_link a {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 0;
    z-index: 50;
    text-decoration: none;
    color: inherit;
    font-weight: inherit;
}

.festanstellungen, .auszubildende, .minijobbler {
    div#content, .main-screen {
        padding: 0 0; 
        position: relative;
        float: left;
        width: 100%;
    }
    .filter_display { display: none; }
    #content .collection_list.col-stellen {
        width: calc((100% - 60px) / 3);
        aspect-ratio: 3.3 / 1;
        background: #fff;
        display: flex;
        align-items: center;
        margin: 10px;
        max-height: 145px;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
    }
    #content .col-stellen_logo {
        flex: 0 0 auto; width: 91px; height: 91px;
        display: flex; justify-content: center; align-items: center;
    }
    #content .col-stellen_logo img {
        max-width: 100%; max-height: 100%; object-fit: contain;
        padding: 5px; border: 1px solid #B2B2B2; border-radius: 4px;
        background: #fff;
    }
    #content .col-stellen_right {
        flex: 1; margin-left: 15px; display: flex;
        flex-direction: column; justify-content: center;
    }
    .col-stellen_right_text { display: flex; align-items: center; }
    .col-stellen_right .col-stellen_platz,
    .col-stellen_right .col-stellen_zeit {
        display: flex; align-items: center; width: 50%;
        font-size: 12px; font-family: 'Roboto', sans-serif;
        font-weight: 400; color: #B2B2B2; box-sizing: border-box;
    }
    .col-stellen_right .col-stellen_platz::before,
    .col-stellen_right .col-stellen_zeit::before {
        content: ''; display: inline-block; margin-right: 5px;
        background-size: contain; background-repeat: no-repeat;
        vertical-align: middle;
    }
    .col-stellen_right .col-stellen_platz::before {
        width: 16px; height: 16px;
        background-image: url('/userdata/02_Kollektionen/Gruppe%204201.png');
    }
    .col-stellen_right .col-stellen_zeit::before {
        width: 14px; height: 14px;
        background-image: url('/userdata/02_Kollektionen/time.png');
    }
    #content .collection_container {
        display: flex; flex-wrap: wrap; justify-content: space-between;
        box-sizing: border-box;
    }
    div#area-2 { padding: 0; position: relative; float: left; width: 100%; margin-top: -50px; }
    .collection_content.col-stellen_job { font-size: 13px; color: #be9b53; }
    .collection_content.col-stellen_title {
        font-size: 18px;
        font-weight: 600;
        color: #4B4B4B;
        margin-top: -3px;
        display: -webkit-box;
        -webkit-line-clamp: 2; 
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
    }
    .collection_conten.col-stellen_unternehmen { font-size: 12px; color: #B2B2B2; }
    .col-stellenangebote_stellenangebote::before {
        content: "Stellenangebote in weiteren Kategorien";
        font-size: 30px; font-family: 'Roboto', sans-serif;
        font-weight: 600; color: #4B4B4B; display: block;
        text-align: center; margin-bottom: 20px;
    }
    .collection_content.col-stellenangebote_stellenangebote { width: 100%; }
    .collection_list.col-stellenangebote { width: 50%; }
    .col-stellenangebote_stellenangebote .collection_container {
        position: relative; height: 220px; border-radius: 10px;
        overflow: hidden; box-sizing: border-box; margin: 10px;
        display: inline-block; vertical-align: top;
    }
    .col-stellenangebote_stellenangebote .col-stellenangebote_img {
        position: relative; width: 100%; height: 100%; overflow: hidden;
    }
    .col-stellenangebote_stellenangebote .col-stellenangebote_img img {
        object-fit: contain; position: absolute; top: -2px; left: 165px; z-index: 1;
    }
    .col-stellenangebote_stellenangebote .collection_container::after {
        content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
        background: linear-gradient(to right, rgba(255, 255, 255, 1) 51%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 0) 113%);
        z-index: 2; border-radius: 8px;
    }
    .col-stellenangebote_stellenangebote .col-stellenangebote_title {
        position: absolute; top: 50%; left: 10px; transform: translateY(-50%);
        z-index: 3; color: #4B4B4B; font-family: 'Roboto', sans-serif;
        margin-left: 40px; font-size: 25px; font-weight: 500;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); display: block; max-width: 40%;
    }
    .collection_link { z-index: 50; }
    .collection_full.col-stellenangebote .col-stellenangebote_img img { display: none; }
    .collection_content.col-stellenangebote_stellenangebote .col-stellenangebote_img img { display: block; }
    div#position {
        display: flex; flex-wrap: wrap; justify-content: space-between;
        box-sizing: border-box;
    }
    .col-stellenangebote_stellenangebote, .col-stellenangebote_stellen { width: 100%; margin-bottom: 50px; }
}

.collection_content.col-kalender_text ol li, .collection_content.col-kalender_text ul li {
    list-style: unset!important;
}
.unternehmen .col-firms .collection_container {
    height: 515px;
}
.unternehmen.full_preview .col-firms .collection_container {
    height: unset;
}
.unternehmen .collection_content.firm-logo {
    height: 80px !important; 
    width: 250px !important; 
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    overflow: hidden !important;
}

.unternehmen .collection_content.firm-logo img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
}


/*  #area-9 */
#area-9 {
    display: none!important;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #ffffff;
    padding: 0px;
    margin-top: -150px;
    z-index: 999;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media (max-width: 584px) {

    .veranstaltungskalend .col-kalender_outlook .textcontent {
        display: none;
    }
    .veranstaltungskalend.full_preview .col-kalender_outlook .textcontent {
        display: block;
    }

}


@media (max-width: 564px) {
    .veranstaltungskalend .col-headerbild_groupe {
        top: 118px!important;
    }
}
@media (max-width: 500px) {
    .veranstaltungskalend .col-headerbild_groupe {
        top: 50px!important;
    }
    .kleinanz .col-headerbild_groupe {
        top: 50px!important;
    }
    .unternehmen .col-headerbild_groupe {
        top: 53px;
    }
    .stellenangebote .col-headerbild_groupe {
        top: 50px;
    }
    .festanstellungen .col-headerbild_groupe {
        top: 50px;
    }
    .auszubildende .col-headerbild_groupe {
        top: 50px;
    }
    .vereine .col-headerbild_groupe {
        top: 50px;
    }
    .minijobbler .col-headerbild_groupe {
        top: 50px;
    }
    .datenschutz .col-headerbild_groupe {
        top: 70px;
    }
    .impressum .col-headerbild_groupe {
        top: 70px;
    }
    .agb .col-headerbild_groupe {
        top: 70px;
    }
}

@media (max-width: 500px) {
    .veranstaltungskalend #content .col-kalender_two {
        margin-top: 0px!important;
    }
    .veranstaltungskalend #content .col-kalender_two {
        margin-top: 0px !important;
    }

    .veranstaltungskalend #content .collection_content.col-kalender_icon {
        position: absolute;
        top: 10px;
        left: 12px;
        width: 30px !important;
        height: 30px !important;
    }
    .veranstaltungskalend .col-kalender_outlook .textcontent {
        display: none;
    }
    /* .home #content {
        display: none !important;
    } */
    .home #slider-wrapper .imgcontent img {
        height: 300px !important;
    }
    .home .header-title h1 {
        font-size: 33px !important;
        margin-top: 20px;
    }
    .home .header-style h1 {
        font-size: 48px !important;
    }
    .home  #slider #slider-title {
        top: 45%;
    }
    .home .col__block-left {
        margin-top: 10px!important;
    }
    .home .header-text div {
        font-size: 15px !important;
    }

    .home .app-download-button_wrap {
    background-color: #be9b53;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    width: fit-content;
    padding: 5px 10px;
    margin-left: auto;
    margin-right: auto;
} 

.home .app-download-button {
    background-color: unset;
    box-shadow: unset;
    padding: 0px!important;
    margin-top: 0px!important;
}

.home .app-download-button .textcontent .button-text {
    display: none;
}

.home .app-download-button .store-icon {
    width: 32px;
    height: 32px;
    display: block;
}
.home img.store-icon {
    margin-right: 0px!important; 
}

}
@media (max-width: 450px) {
    #area-9 {
        display: block !important;
    }

.news_alle .filter_display {
    display: flex;
    flex-wrap: nowrap; 
    overflow-x: auto; 
    white-space: nowrap; 
    gap: 10px; 
    padding: 10px;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent; 
    max-width: 100%; 
}

   .stellen-alle.full_preview .col-headerbild_title h1 {
        font-size: 36px!important;
        margin-top: -20px;
    }


.news_alle .filter_display::-webkit-scrollbar {
    height: 6px; 
}

.news_alle .filter_display::-webkit-scrollbar-track {
    background: transparent;
}

.news_alle .filter_display::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.news_alle .button_filter_wrapper_2 {
    flex: 0 0 auto; 
    white-space: nowrap; 
}


.veranstaltungskalend .filter_display {
    display: flex;
    flex-wrap: nowrap; 
    overflow-x: auto; 
    white-space: nowrap; 
    gap: 10px; 
    padding: 10px;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent; 
    max-width: 100%; 
}

.veranstaltungskalend .filter_display::-webkit-scrollbar {
    height: 6px; 
}

.veranstaltungskalend .filter_display::-webkit-scrollbar-track {
    background: transparent;
}

.veranstaltungskalend .filter_display::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.veranstaltungskalend .button_filter_wrapper_2 {
    flex: 0 0 auto; 
    white-space: nowrap; 
}
.veranstaltungskalend.full_preview .filter_display {
    display: none;
 
}
.news_alle.full_preview .filter_display {
    display: none;
 
}

}

#area-9 .collection_list {
    display: flex;
    align-items: center;
    background: #ffffff;
}

#area-9 .collection_container {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    min-width: 20px;
}

#area-9 .collection_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#area-9 .header-button_img img {
    width: 55px !important;
    height: 55px !important;
    object-fit: contain;
    margin-right: 15px;
}

#area-9 .component.nav-leiste {
    display: flex;
}

#area-9 .nav-leiste .imgcontent {
    width: 20px;
}

#area-9 .container {
    width: 100%;
}

.component.nav-leiste {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    width: 100%;
    padding: 5px;
}

.collection_list.col-nav-leiste {
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 10px;
    gap: 5px;
    flex: 1;
    text-align: center;
}

.collection_list.col-nav-leiste .collection_container {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
}

.collection_list.col-nav-leiste .collection_content.col-nav-leiste_bild img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
    margin-bottom: 5px;
}

.collection_list.col-nav-leiste:nth-child(3) .collection_content.col-nav-leiste_bild img {
    width: 30px!important;
    height: 30px!important;
}
.collection_list.col-nav-leiste:nth-child(3) .collection_content.col-nav-leiste_text {
display: none!important;
}

.collection_list.col-nav-leiste .collection_content.col-nav-leiste_text {
    min-height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

#area-9 .nav-leiste .collection_list {
    padding: 8px;
}

#area-9 .nav-leiste .collection_content.col-nav-leiste_link a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    opacity: 0;
    background: transparent;
}
#area-9 .nav-leiste  .collection_link {
    display: none;
}

@media (max-width: 500px) {
     #area-9.main-screen {
        padding: unset !important; 
    }
    .news_kurz.full_preview .col-headerbild_groupe {
        top: 71px;

    }
}

a.sidebutton {
    position: fixed;
    background: var(--primary-accent);
    color: var(--clr-primary-white);
    padding: 10px 4px;
    border-radius: 0 10px 10px 0;
    text-decoration: none;
    transform: rotate(180deg);
    z-index: 999;
    writing-mode: vertical-lr;
    right: 0;
    font-size: 14px;
}

.vereine .vereine-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.vereine .letter-header {
    font-weight: bold;
    font-size: 1.5em;
    color: #ba9851;
    margin: 10px 0;
    padding: 10px;
    background: white;
    padding-left: 20px;
    border-radius: 8px;
}

.vereine .verein-item::before {
    content: "•";
    font-size: 1.2em;
    margin-right: 10px;
}
.vereine .filter-container {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}
.vereine .filter-button {
    padding: 5px 10px;
    border: 1px solid #ccc;
    background: white;
    cursor: pointer;
    border-radius: 5px;
}
.vereine .filter-button:hover {
    background: #ba9851;
    color: white;
}
.vereine div#content {
    padding: 5rem 0;
    position: relative;
    float: left;
    width: 100%;
    padding-top: 0!important;
}
.unternehmen div#content {
    padding: 5rem 0;
    position: relative;
    float: left;
    width: 100%;
    padding-top: 0!important;
}

.vereine .verein-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

.vereine .verein-item .vereinslink a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    text-decoration: none;
    background: transparent;
}

.vereine .verein-item .vereinsname {
    position: relative;
    z-index: 2;
    color: #000;
    pointer-events: none;
}


/* __________________kn media___________________ */

/* ------------Responsive kn---------------*/
@media (max-width: 1650px) {
    .col-headerbild_groupe {
        margin-left: 93px;
    }
  }
@media (max-width: 1500px) {
    .footer-3 .component.footer-3::before {
        margin-top: -13px;
    }
  }
  @media (max-width: 1264px) {
    .veranstaltungskalend #content .collection_content.col-kalender_outlook a {
      display: none; 
    }
  
    .veranstaltungskalend #content .collection_content.col-kalender_outlook {
      padding: 9px 13px !important; 
    }
    .footer-3 .component.footer-3::before {
        margin-top: -6px;
    }
  }
  @media (max-width: 366px) {
    .vereine .filter-container {
        flex-wrap: nowrap;
        overflow-x: auto; 
        -webkit-overflow-scrolling: touch;
    }

    .vereine .filter-button {
        flex: 0 0 auto; 
    }
}

@media (max-width: 1200px) {
    #area-2 .col__block-right {
      flex: 0 0 47.33333%;
    }
  
    .home .jobanzeigen_k_groupe .collection_list {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      gap: 10px; 
    }
  
    .home .jobanzeigen_k_groupe .col-stellen:not(:last-child)::after {
      content: '';
      display: none; 
    }
    .home .jobanzeigen_k_groupe .collection_container {
        padding-bottom: 17px;
    }
    .pulse {
        width: 8px;
        height: 8px;
    }
    .footer-2 .collection_list {
        width: 50% !important;
    }
    .news_alle .collection_list.news_k {
        width: 50% !important;
    }
    .news_alle #content .collection_content.news_k-img {
        width: 555px;
    }
    .news_alle #content .collection_content.news_k-title {
        /* height: 83px; */
    }
    .veranstaltungskalend #content .collection_list {
        gap: 20px;
        width: 100% !important;
    }
    .veranstaltungskalend.full_preview #content .collection_content.col-kalender_zeit {
        margin-top: 12px !important;
        margin-left: 30!important;
    }
    .veranstaltungskalend.full_preview #content .col-kalender_three::before {
        display: none;
      }
      .veranstaltungskalend.full_preview #content .col-kalender_one {
        flex: 1 1 100%
      }
    .veranstaltungskalend.full_preview #content .col-kalender_two, .veranstaltungskalend.full_preview #content .col-kalender_three {
        width: 100% !important;
        flex: 1 1 10%;
    } 
    .veranstaltungskalend.full_preview #content .collection_container {
        flex-wrap: wrap;
    }

    .newsletter 
    div#sib-container {
        margin-top: 30px;
    }

    .veranstaltungskalend.full_preview .col-kalender_one_o {
        width: 100%;
    }
    .veranstaltungskalend.full_preview #content .col-kalender_one {
        margin-bottom: 20px;
    }
    .aktuelles #area-2 .collection_container {
        height: 100%;
    }
    .stellenangebote_col #content .collection_list.col-stellen {
        width: calc((100% - 40px) / 2);
    }
    .stellenangebote_col .col-stellenangebote_img img {
        object-position: left; 
    }
    .stellen-alle .collection_content.col-stellen_logo {
        padding: 20px 17px;
    }
    .stellen-alle .col-stellen_kol .collection_list.col-stellen {
        width: calc((100% - 40px) / 2);
    }
    .festanstellungen     #content .collection_list.col-stellen{
        width: calc((100% - 40px) / 2);
    }
    .auszubildende    #content .collection_list.col-stellen{
        width: calc((100% - 40px) / 2);
    }
    .minijobbler     #content .collection_list.col-stellen{
        width: calc((100% - 40px) / 2);
    }
    .festanstellungen .col-stellenangebote_img img {
        object-position: left; 
    }
  }

  @media (max-width: 991px) {
    .home .header-button_img img {
      width: 35px !important;
      height: 45px !important;
    }
  
    .home .collection_list.header-button {
      width: 33.33% !important;
      float: left;
      padding: 15px !important;
      box-sizing: border-box; 
    }
    .footer-3 .component.footer-3 .textcontent {
        flex: 0 0 100% !important; 
        width: 100% !important; 
    }
    .component.footer-3 .status-container.footer-style {
        flex: 0 0 100% !important; 
        width: 100% !important; 
    }
    .news_alle .collection_list.news_k {
        width: 100% !important;
    }
    .news_alle #content .collection_content.news_k-img {
        width: 696px;
    }
    .veranstaltungskalend.full_preview #content .collection_content.col-kalender_zeit {
        margin-top: 12px !important;
        margin-left: 0!important;
    } 
    .aktuelles #area-2 .collection_container {
        display: block;
    }
    .stellen-alle #content .col-stellen .collection_container {
        display: grid;
    }
    .stellen-alle .collection_content.col-stellen_logo {
        padding: 30px 142px;
    }
    .stellen-alle  .col-stellen_kol .col-stellen .collection_container {
        display: flex!important;
    }
    .stellen-alle .col-stellen_kol .collection_list.col-stellen {
        width: 100%; 
        margin: 10px 0;
    }

    .festanstellungen     #content .collection_list.col-stellen {
        width: 100%; 
        margin: 10px 0;
    }

    .auszubildende     #content .collection_list.col-stellen {
        width: 100%; 
        margin: 10px 0;
    }
    .minijobbler     #content .collection_list.col-stellen {
        width: 100%; 
        margin: 10px 0;
    }



    .home #area-2 .collection_content.news_k-img img {
        height: 187px !important;
        width: 408px !important;
    }
    .home .collection_list.news_k {
        width: 50% !important; 
    }
    .aktuelles #area-2 .col-aktuelles_img {
        width: 100%;
        height: 230px;
    }
 }
 @media (max-width: 768px) {
    .stellenangebote_col #content .collection_list.col-stellen {
        width: 100%; 
        margin: 10px 0; 
    }
    
    .stellenangebote_col .collection_list.col-stellenangebote {
        width: 100%;
    }
    .stellenangebote_col .col-stellenangebote_img img {
        object-position: unset; 
    }
    #area-2 .burgermeisterin, #area-2 .col-gewusst, #area-2 .news_k_groupe {
        padding-right: 15px;
        padding-left: 15px;
    }
    .home .aktuelles_k_groupe  {
        padding-right: 15px;
        padding-left: 15px;
    }
    .home .jobanzeigen_k_groupe {
        padding-right: 15px;
        padding-left: 15px;
    }
    .home .jobanzeigen_k_groupe .collection_list {
        padding-left: 15px;
        padding-right: 15px;
    }
    .veranstaltungskalend.full_preview #content .col-kalender_three {
        padding-left: 15px;
    }
    .veranstaltungskalend.full_preview #content .collection_content.col-kalender_icon {
        left: -24px !important;
    }
}
  @media (max-width: 701px) {
    .home .header-button_title {
      display: none; 
    }
  
    .home .header-button_img img {
      width: 55px !important; 
      height: 45px !important;
    }
  
    .footer-2 .collection_list {
      width: 100% !important; 
    }

  }
  @media (max-width: 669px) {
    .veranstaltungskalend.full_preview #content .collection_content.col-kalender_datum {
        margin-right: 10px !important;
    }
    .col-stellen_formular::after {
        font-size: 17px;
    }
    .form-label-left {
        display: block;
    }
    .form-control {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    label.form-check-label {
        bottom: 0;
        margin-top: 130px;
        margin-bottom: 20px;
    }
    .col-stellen_formular {
        padding: 110px 20px 20px;
    }

}
  @media (max-width: 570px) {
    .col-headerbild_title h1 {
        font-size: 46px;
    }
    .header-style {
        font-size: 42px !important;
    }
}
  @media (max-width: 540px) {

    .home .collection_list.news_k {
        width: 100% !important; 
    }
    .collection_content.col-headerbild_title span {
        font-size: 30px!important;
    }
}
  @media (max-width: 500px) {
    .home div#content {
        margin-top: 0px!important;
    }

    .home #content .collection_container {
        text-align: center;
    }
.container#position .collection_list.header-button:nth-child(1),
.container#position .collection_list.header-button:nth-child(2) {
    display: none !important;
}

.container#position .collection_list.header-button:nth-child(3) {
    display: block !important;
    width: 246px !important;
}
.home .header-button_title {
    display: block!important;
}
  
    .home .header-button_img img {
      width: 55px !important; 
      height: 46px !important; 
    }
    .home div#content, .home .main-screen {
        padding: 0px 0 !important;
    }
    .news_k_groupe .title_news_link {
        margin-top: -63px!important;

    }
    .home .col__block-left {
        margin-top: 48px;
    }

    .collection_content.col-aktuelles_title {
        display: -webkit-box;
        -webkit-line-clamp: 3; 
        -webkit-box-orient: vertical;
        max-height: 2.5em;
        line-height: 1.5em; 
    }
    #footer .container {
        display: block!important;
    }
    .footer-group {
        width: 100% !important;
    }
    .footer-3 {
        width: 90% !important;
    }
    .aktuelles .collection_content.col-aktuelles_title {
        display: block;
        margin-bottom: 15px;
        line-height: 1.4; 
    }

    .aktuelles .collection_content.col-aktuelles_text {
        display: block;
        clear: both;
    }

    .aktuelles #area-2 .collection_container {
        display: flex;
        flex-direction: column;
        gap: 12px; 
    }

    .newsletter .col-headerbild_groupe {
        top: 58px;

    } 
    .draht .col-headerbild_groupe {
        top: 58px;

    } 
    .news_kurz .col-slider-textblock-left{
        margin-top: 50px;
    }

    .aktuelles .collection_content.col-aktuelles_title {
        min-height: 50px; 
    }
    
    .aktuelles .collection_content.col-aktuelles_title {
        max-height: 10em;
        line-height: 1.5em;
  }
  .veranstaltungskalend div#content, .main-screen {

    margin-top: 0px;
}
.veranstaltungskalend .col-kalender_three {
    display: none;
}
.veranstaltungskalend #content .col-kalender_two {
    margin-top: 43px;
}
.stellen-alle #content .col__block-left_stellen {
    margin-top: 50px;
}
.title_formular p {
    margin-top: 0px!important;

}

}
@media (max-width: 435px) {
    .news_alle #content .collection_list {
        height: 500px !important;
      }
      .news_alle #content .collection_content.news_k-img {
        width: 378px !important;
      }
      .stellenangebote #content .collection_list {
        height: 250px !important;
        width: 100%;
      }
      .home .header-style h1 {
        font-size: 45px !important;
      }
      .home .header-title h1 {
        font-size: 36px !important;
        margin-top: 20px;
      }
      /* .home #content {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        margin-bottom: 0;
      } */
    
     .collection_list.header-button {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 33%;
    }

    .collection_list.header-button .collection_container {
        /* display: flex;
        flex-direction: column;
        align-items: center; */
        justify-content: center;
    }

    .collection_list.header-button .header-button_img img {
        display: block;
        margin: 0 auto;
    }

    .collection_list.header-button .header-button_title {
        text-align: center;
        display: block;
        max-width: 90px; 
        word-wrap: break-word;
        white-space: normal;
        overflow-wrap: break-word;
        /* font-size: 12px; */
        min-width: 118px;
        line-height: 1.2;
        margin-top: 5px;
    }
    #content .collection_list.header-button {
        height: 75px !important;
    }
    .home .aktuelles_k_groupe .col-aktuelles .collection_container {
        display: block;
    }
    .home .aktuelles_k_groupe .col-aktuelles_img {
        width: 100%;
        height: 124px;
    }
    .home .aktuelles_k_groupe .col-aktuelles_right {
        padding: 0 0px;
        margin-top: 10px;
    }
    .home .aktuelles_k_groupe .col-aktuelles_right::after {
        background-size: 10px 10px;
        top: 66%;
        width: 10px;
        height: 10px;
    }
    .home .news_k_veran .col-kalender_three  {
        display: none;
    }
    .title_news_link {
        margin-top: -60px;
    }
    .mullabfuhrplane_k_groupe .title_news_link {
        margin-top: -70px;
    }
    .jobanzeigen_k_groupe .title_news_link {
        margin-top: -70px;
    }
    .home .jobanzeigen_k_groupe .collection_container {
        display: block;
    }
    .home .jobanzeigen_k_groupe .col-stellen_logo {
        width: 100%;
        height: 91px;
        margin-bottom:10px ;
    }
    .home .jobanzeigen_k_groupe .col-stellen_right {
        margin-left: 0px;
    }
    .aktuelles #area-2 .col-aktuelles_title {
        margin-bottom: 47px;
    }
    .veranstaltungskalend .col-headerbild_title h1 {
        font-size: 33px;
    }
    .veranstaltungskalend .header-style {
        font-size: 32px !important;
    }
    #content .collection_list.col-kalender {
        height: unset !important;
        padding-right: 10px;
        padding-left: 10px;
    }
    .veranstaltungskalend.full_preview #content .collection_content.col-kalender_bild {
        width: 273px !important;
        height: 181px !important;
    }
    .veranstaltungskalend.full_preview #content .col-kalender_one, .veranstaltungskalend.full_preview #content .col-kalender_two, .veranstaltungskalend.full_preview #content .col-kalender_three {
        padding-left: 15px;
    }
    .stellenangebote_col.full_preview #content .collection_list {
        height: unset !important;
    }
    .unternehmen #content .collection_list {
        height: unset !important;
    }
    .stellenangebote_col #content .col-stellen_logo {
        width: 100%;
        margin-bottom: 10px!important;
    }
    .stellenangebote #content .collection_content.col-stellenangebote_title {
        font-size: 18px;
    }
    .festanstellungen #content .collection_content.col-stellenangebote_title {
        font-size: 18px;
    }
    .auszubildende #content .collection_content.col-stellenangebote_title {
        font-size: 18px;
    }
    .minijobbler #content .collection_content.col-stellenangebote_title {
        font-size: 18px;
    }
}


@media (max-width: 376px) {
    .home .verlinkungen_k_groupe .col-verlinkungen_three a{
        width: 100%;
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
    }
    .home .verlinkungen_k_groupe .collection_container {
        flex-wrap: wrap;
    }


}
@media (max-width: 359px) {
    .home .verlinkungen_k_groupe .col-verlinkungen_three {
        display: none;
    }
    .veranstaltungskalend.full_preview #content .col-kalender_two {
        margin-left: -14px;
    }
    .stellen-alle #area-3 .col-stellen .collection_container {
        display: block!important;
    }
    .stellen-alle #area-3 .col-stellen_kol .col-stellen_logo {
        width: 100%;
        margin-bottom: 10px!important;
    }
    .collection_content.col-headerbild_title span {
        font-size: 26px !important;
    }

    .news_kurz.full_preview .col-slider-textblock-left .news_k-title {
        word-break: keep-all;
        overflow-wrap: normal;
        white-space: normal;
        hyphens: auto;
    }
    


}
@media (max-width: 382px) {
    .collection_full.col-kalender.show.processed {
        width: 100%;
        overflow-x: hidden;
    }
/* 
    .collection_container.Veranstaltung {
        display: flex;
        flex-direction: column;
        width: 100%;
    } */

    .col-kalender_one_o, 
    .col-kalender_three, 
    .col-kalender_two {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .collection_content {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .col-kalender_text {
        white-space: normal;
    }
    .veranstaltungskalend.full_preview #content .collection_content.col-kalender_icon {
        left: -13px !important;
    }
    .veranstaltungskalend.full_preview #content .collection_content.col-kalender_zeit_end {
        margin-left: 0px !important;
        margin-top: 12px!important;
    }

}

@media (max-width: 330px) {
    .news_k_groupe .title_news_link {
        margin-top: -66px !important;
    }
}
/* ------------Responsive ---------------*/

@media (max-width: 1753px) {
    #header_2 {
        margin-left: 0px;
        margin-right: 0px;
    }
    #header_2 .level_1 {
        margin: 0 15px;
    }
}

@media (max-width: 1373px) {
    .header-title h1 {
        font-size: 40px !important;
    }
}
@media (max-width: 992px) {
    .news_kurz .news_k .collection_container {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .news_kurz .col-slider-textblock-left,
    .news_kurz .col-slider-slider-right {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 10px !important;
    }
    /* .col-headerbild_groupe {
        margin-left: 50px;
    } */
    .col-headerbild_groupe {
        margin-left: 0px;
        margin-right: 20px;
    }
}


.festanstellungen, .auszubildende, .minijobbler {
    @media screen and (max-width: 730px) {
        .collection_list.col-stellenangebote {
            width: 50%;
        }
        
        .col-stellenangebote_stellenangebote .col-stellenangebote_img {
            display: flex;
            justify-content: flex-end;
            align-items: flex-start;
            width: 100%;
            height: 100%;
            overflow: hidden;
            position: relative;
        }
        
        .col-stellenangebote_stellenangebote .col-stellenangebote_img img {
            object-fit: cover;
            position: absolute;
            right: 0;
            top: 0;
            max-width: none;
            width: auto;
            height: 100%;
        }
    }
}


.festanstellungen, .auszubildende, .minijobbler {
    @media screen and (max-width: 600px) {
        .collection_list.col-stellenangebote {
            width: 100%;
        }
        
        .col-stellenangebote_stellenangebote .col-stellenangebote_img {
            display: flex;
            justify-content: flex-end;
            align-items: flex-start;
            width: 100%;
            height: 100%;
            overflow: hidden;
            position: relative;
        }
        
        .col-stellenangebote_stellenangebote .col-stellenangebote_img img {
            object-fit: cover;
            position: absolute;
            right: 0;
            top: 0;
            max-width: none;
            width: auto;
            height: 100%;
        }
    }
}
@media (max-width: 800px) {

    .kleinanz .col-headerbild_groupe {
        top: 86px;
    }
}
@media (max-width: 718px) {
    .header-title h1 {
        font-size: 35px !important;
    }
    #slider-title::before {
        width: 500px!important;
        height: 500px!important;
    }

}

@media (max-width: 638px) {
    .header-title h1 {
        font-size: 30px !important;
    }
    .header-text div {
        font-size: 14px !important;
    }
}
@media (max-width: 500px) {
    .home div#content {
        margin-top: -136px;
        z-index: 56;
    }
    .col__block-left {
        margin-top: 100px;
    }
}
@media (max-width: 435px) {
    #content .collection_list {
        height: 180px!important; 
    }

    .auszubildende #content .collection_list {
        height: unset!important; 
    }
    .festanstellungen #content .collection_list {
        height: unset!important; 
    }
    .minijobbler #content .collection_list {
        height: unset!important; 
    }
    .vereine #content .collection_list {
        height: unset!important; 
    }
    
    #content .collection_list .col-hauptmenu_img {
        height: 100px; 
    }

    #content .collection_list .col-hauptmenu_title {
        font-size: 16px;
        padding: 8px;
    }

    #content .collection_list .col-hauptmenu_link a {
        bottom: 5px;
        right: 5px;
        width: 16px; 
        height: 16px;
    }
    #content .collection_list:first-child .col-hauptmenu_title {
        padding: 10px;
        font-size: 18px;
    }
    #content .collection_list:first-child .col-hauptmenu_link a {
        position: absolute;
        bottom: 10px;
        right: 10px;
        width: 18px;
        height: 18px;
    }
    .col-headerbild_title h1 {
        font-size: 39px;
    }
    .header-style {
        font-size: 47px !important;
    }
    .col-headerbild_groupe {
        margin-left: -10px;
        margin-right: 10px;
    }
}

@media (max-width: 1249px) {
    div#header_2 {
        display: none;
    }

    #toggle_navigation {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 1000;
    }

    #header_3 {
        position: relative;
        margin-right: 70px;
        top: 10px;
        z-index: 1001;
    }

    .hamburger-menu {
        display: none;
        background: #be9b53;
        color: #ffffff;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        z-index: 999;
        padding: 10px;
    }

    #toggle_navigation label.hamburg {
        display: block;
        background: transparent;
        width: 55px;
        height: 50px;
        position: relative;
        cursor: pointer;
    }

    .hamburger-menu ul {
        background-color: #be9b53;
        color: #ffffff;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .hamburger-menu ul li {
        padding: 10px;
    }

    .hamburger-menu ul li a {
        color: #ffffff;
        text-decoration: none;
    }

    .container.main_nav {
        background-color: transparent;
        width: 100%;
        margin: 0;
        padding: 0;
        position: relative;
        left: 0;
        right: 0;
        z-index: 4534543;
        max-width: none;
    }
}

@media (max-width: 745px) {
    .container.main_nav {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    #header_3 {
        display: none;
    }
    .hamburger-menu ul {
        display: block;
        width: 100%;
        text-align: center;
    }

    .hamburger-menu ul li {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid #ffffff; 
    }

    .hamburger-menu ul li:last-child {
        border-bottom: none;
    }

    .hamburger-menu ul li a {
        display: block;
        width: 100%;
        color: #ffffff;
        text-decoration: none;
    }
    .hamburger-menu {
        padding: 0px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}
@media (max-width: 991px) {
    #area-2 .news_k_groupe .collection_list .news_k,
    .collection_list.news_k {
        width: 100% !important;
    }

    #area-2 .news_k_groupe .collection_list {
        height: 270px!important;
    }


    #area-2 .col__block-left,
    #area-2 .col__block-right {
        flex: 0 0 100%;
    }
    
    #area-2 .container {
        flex-direction: column;
    }
    .veranstaltungskalend.full_preview #content .col-kalender_three {
        display: flex;
        justify-content: flex-start;
        align-items: start;
    }
    .veranstaltungskalend #content .col-kalender_three {
        margin-left: 0px;
    }
}

@media (max-width: 500px) {
    #slider-wrapper {
        height: 300px;
    }
    /* .col-headerbild_groupe {
        margin-top: -76px;
    } */
}
@media (max-width: 460px) {
    .title_news::after {
        top: -35%;
    }
}
@media (max-width: 364px) {
    .kleinanzeige-aufgebe .collection_content.col-headerbild_title h1 {
        font-size: 30px !important;
        margin-top: -10px;

    }
}
/* __________________kn media___________________ */


    @media (max-width: 1200px) {

        .collection_list.news_k {
            width: 100%!important;
            }
    }
@media (max-width: 1249px) {



    div#toggle_navigation {
        display: block !important;
    }

    #header ul.level_1 {
        gap: 0;
        flex-direction: column;
    }

    div#header_2 {
        display: none;
    }
    div#toggle_navigation:hover,
    div#toggle_navigation:active,
    div#toggle_navigation:focus {
        background: transparent;
    }
        #cookie-bar>p {
            line-height: 20px;
        }
} /*END 1249px*/


@media (max-width: 1024px) {

    .collection_list {
        width: 50%;
    }
    .collection_list.header-button {
        width: 33.33%;
        float: left;
        padding: 15px;
    }
} /*END 1024px*/

@media only screen and (max-width: 992px) {

    .footer-sitemap ul {
        flex-wrap: wrap;
    }

    div#cookiewarnung {
        width: 90%;
    }

    #header #header_1 {
        width: auto;
    }
} /*END 992px*/
    
@media (max-width: 768px) {
    .component.copyright {
        display: flex;
        flex-direction: column;
    }

    #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;
    }

    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .row {
        flex-wrap: wrap;
    }

    .pop-up-button {
        margin-top: 1rem;
    }

    .pop-up-button-group .row {
        flex-wrap: wrap;
        margin-left: 7px;
    }

    #slider div#slider-title {
        padding: 0 20px;
        width: 100%;
    }
    #footer .footer-1,
    #footer .footer-2,
    #footer .footer-3,
    #footer .footer-4 {
        text-align: center;
        margin-bottom: 25px;
    }
    .footer-sitemap li.level_1 {
        width: 50%;
        margin-bottom: 30px;
    }
    .seo .footer-1 {
        padding: 0 20px;
        border: 0;
    }
    .seo .footer-2 {
        padding: 0;
    }
    #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;
    }



} /*END 768px*/

@media (max-width:600px) {
    .collection_list {
        width: 100%;
    }

    .pop-up-button {
        width: 40%!important;
        float: left!important;
    }

    .pop-up-button .textcontent {
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

} /*END 600px*/

@media (max-width: 500px) {

    /* div#content, .main-screen {
        padding: 30px 0 !important;
    } */
    .vereine div#content {
        padding: 30px 0 !important;
        padding-top: 30px!important;
    }
    .pop-up-element {
        padding: 30px 10px!important;
    }


    .container {
        min-width: 250px;
    }

    div#slider-wrapper {
        /* height: auto !important; */
    }

    #slider div#slider-title {
        padding: 0 20px !important;
    }
    .footer-sitemap li.level_1 {
        width: 100%;
        text-align: center;
    }
} /*END 500px*/
   

    
@media (min-width: 768px) {
        .container {
            max-width: 750px;
        }
        #privacy-policy .container {
            max-width: unset;
        }

    
            .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%;
        }
        .impressum .col-lg-6 {
            width: 100%;
        }
        .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: 1420px;
            }
        
        }

@media (min-width: 1500px) {
        .container {
            max-width: 1440px;
        }
        
}

/* JU Kleinanzeige Creußen Journal Printausgabe */

.kleinanzeige-aufgebe {
    #content {
        padding-top: 0px;
    }
    #contactformular_14 {
        display: flex;
        flex-direction: column;
        gap: 3px;

        h2 {
            font-size: 17px;
            margin: unset;
        }
        .contact-button {
            input {
                width: 100%;
            }
        }
        .form-control.textarea {
            min-height: 100px;
            resize: vertical;
        }
    }
    /* .col-1 {
        width: 100%;
    } */
    .form-group.form-check {
        margin-top: unset;
    }

    .form-check-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        background-color: var(--bg-white);
        padding: 20px;
        border-radius: var(--br-button);
        margin-top: 10px;
        .form-group.form-check {
            flex: 1 1 20%;
        }
    }
    .block-right {
        background-color: var(--bg-white);
        padding: 20px;
        border-radius: var(--br-button);
    }
}

/* JU Kleinanzeige Creußen Journal Printausgabe END */

.col-mullabfuhrplane_kategorie {
    background-color: black;
    &.Biotonne {
        background-color: rgb(28, 181, 28);
    }
    &.Restmüll {
        background-color: rgb(47, 47, 47);
    }
    &.Papiertonne {
        background-color: rgb(81, 81, 255);
    }
    &.Gelbe {
        background-color: rgb(255, 208, 0);
        color: #000 !important;
    }
    &.Fälligkeit {
        background-color: rgb(90, 90, 90);
        color: #fff !important;
    }
}


.mullabfuhrplane { 
    div#content {
        padding-top: unset;
    }
}
.mullabfuhrplane .col-mullabfuhrplane_stadt {
    position: relative;
    width: 100%;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    box-sizing: border-box;
}

.mullabfuhrplane .col-mullabfuhrplane_stadt::after {
    content: '\25BC';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
}
.mullabfuhrplane .collection_list.col-mullabfuhrplane  {
    width: 100%;
}
.col-mullabfuhrplane .collection_container {
    width: 100%;
}

.mullabfuhrplane .dropdown-content {
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 6px;
}

.mullabfuhrplane .dropdown-content div {
    padding: 10px 15px;
    cursor: pointer;
    color: #333;
}

.mullabfuhrplane .dropdown-content div:hover {
    background-color: #f1f1f1;
}


.mullabfuhrplane .col-mullabfuhrplane_zeit {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-top: 10px;
        box-sizing: border-box;
        margin-bottom: 10px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 10px;
}

.mullabfuhrplane .col-mullabfuhrplane_kategorie {
    display: inline-block; 
    /* background-color: #34290D;  */
    color: #fff; 
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 9px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

.mullabfuhrplane .col-mullabfuhrplane_datum {
    display: inline-block;
    font-size: 16px;
    color: #333;
    font-family: 'Roboto', sans-serif;
    text-align: right; 
    margin-left: auto;
}