:root {
  --clr-accent: #009035;
  --clr-accent-opacity: #31403050;

  --clr-primary-dark: #222222;
  --clr-primary-white: #fff;
  --clr-primary-light: #f5f7fb;

  --fc-primary: #fff;
  --fc-dark: #000;

  --ff-primary: "Abel-Regular", sans-serif;
  --ff-bold: "Oswald-Bold", 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: 1rem;
  --fs-600: 1.4rem;
  --fs-700: 1.875rem;
  --fs-800: 2.5rem;
  --fs-900: 3.7rem;

  --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);
  --transition-long: 600ms;
}

/* Reset */
/* Loader */
.loader {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    transparent,
    transparent 40%,
    var(--clr-accent)
  );
  animation: animate 2s linear infinite;
}

.loader::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  bottom: 6px;
  right: 6px;
  background: var(--clr-accent);
  border-radius: 50%;
  z-index: 1000;
}

.loader::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: linear-gradient(
    45deg,
    transparent,
    transparent 40%,
    var(--clr-accent)
  );
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
}

@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999999;
  background: var(--clr-accent-opacity);
  display: flex;
  justify-content: center;
  align-items: center;
}

.preload {
  overflow: hidden;
}
.logo-icon img {
  position: absolute;
  z-index: 999;
  width: 80px !important;
  height: 80px !important;
  object-fit: contain;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.component.logo .textcontent img {
  border-radius: unset !important;
}

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

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

/* 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;
  color: #fff;
}

/* 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: "Abel-Regular";
  src: url("/layout/frontend/b2c/dist/fonts/Abel-Regular.ttf");
}

@font-face {
  font-family: "Oswald-Bold";
  src: url("/layout/frontend/b2c/dist/fonts/Oswald-Bold.ttf");
}

@font-face {
  font-family: "Oswald-SemiBold";
  src: url("/layout/frontend/b2c/dist/fonts/Oswald-SemiBold.ttf");
}

body {
  background-color: var(--clr-primary-white);
  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;
}

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

.p-3 {
  padding: 1.5rem;
}

.pb-5 {
  padding-bottom: 2rem !important;
}

/*
**** Infos ****
Universal Color: #5a9c9d
*/

#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;
}

div#header,
.header-wrapper {
  height: 60px;
  width: 100%;
  z-index: 10;
}

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

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

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

body.home .news{
  display: flex;
  flex-wrap: wrap;
}

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

/* FAQ */

.faq_group_container .faq_question_box {
  padding: 5px 15px 8px 15px;
  border: none;
  background: var(--clr-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: 11px;
  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;
}

.next lottie-player {
  margin: 0 auto;
}

.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;
}

.same-height > .row {
  display: flex;
  flex-wrap: wrap;
}

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;
}

body.aktuelles:not(body.aktuelles.full_preview) #area-2 .aktuelles-wrapper,
body.matchcenter #area-3 .container {
  display: flex;
  flex-wrap: wrap;
}

.teams-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.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;
  margin-bottom: 50px;
} */

.pop-up-button-group {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pop-up-element .row {
  cursor: pointer;
}

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

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

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

/* Navgation */

/* div#header {
    background: var(--clr-accent);
} */

div#privacy-policy {
  background: rgb(25 25 25 / 80%);
}

#header a {
  color: var(--clr-primary-white) !important;
}

lottie-player {
  margin-left: auto;
}

.animation lottie-player {
  width: 100% !important;
  height: 100% !important;
}

.animation {
  width: 100%;
  height: 100%;
  display: flex;
  top: 50px;
  left: 20px;
}

.header-animation {
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 0;
}

.header-animation iframe {
  border-radius: 5px;
  overflow: hidden;
}

.next .collection_content.title.custom {
  font-size: 1.3rem;
  font-weight: 600;
  padding: 0 0 0.5rem;
}

.faq_nearest_search {
  display: none;
}

div#content {
  background-image: url(/userdata/images/titelbild-neu.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.collection_list.next .collection_container:before {
  content: "";
  background: var(--clr-accent);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-radius: 5px 5px 0 0;
}

.collection_list.next .collection_container {
  border: 1px solid #dfdfdf;
  padding: 30px;
  border-radius: 5px;
  min-height: 225px;
}

.mysyde .collection_content.title.custom {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  padding-top: 13px;
}

.header-text a {
  background: var(--clr-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;
}

.collection_content.field-1655046812 {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  padding-top: 1rem;
}

.collection_content.field-1655046828 {
  text-align: center;
}

.collection_content.field-1655046843 img {
  border-radius: 10px;
  height: 100%;
}

.collection_content.field-1655053570 {
  margin-right: 1rem;
  flex-shrink: 0;
  height: 40px;
}

.collection_list.bugfixes {
  width: 33.33%;
  padding: 10px;
}

.bugfixes-collection {
  padding-left: 0 !important;
  margin-left: -10px !important;
}

.contactformular {
  max-width: 680px;
  margin: 0 auto;
}

.einleitung .input_collection_link_checkbox.col-md-4.iconfield {
  width: 50%;
}

.img_container.img-option {
  height: 190px !important;
  border-radius: 10px;
  overflow: hidden;
}

.produktauswahl-area .input_collection_link_checkbox.col-md-4.iconfield {
  width: 50%;
}

h2#input_collection_link_65 {
  display: none;
}

.highlight-group {
  padding: 100px 0;
}

.highlight-group h2 {
  margin-top: 0;
}

.new-f-text h2 {
  color: var(--clr-primary-white);
}

.new-f-img:before {
  content: "";
  background: #000;
  width: 81px;
  height: 8px;
  position: absolute;
  top: -3px;
  left: 12%;
  border-radius: 5px 5px 0 0;
}

.new-f-img img {
  border: 7px solid #000;
  border-radius: 25px;
  box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
  width: 100% !important;
  height: 100% !important;
}

.collection_list.bugfixes .collection_container {
  display: flex;
  align-items: center;
  border: 1px solid #243d482e;
  padding: 10px;
  border-radius: 5px;
  min-height: 70px;
}

.collection_content.field-1655053557 {
  font-size: 1rem;
  margin: 0;
}

.collection_content.field-1655053570 img {
  object-fit: contain;
}

.header-text h1 {
  margin-top: 100px;
}

.collection_content.field-1655046843 {
  height: 240px;
}

.vergleich {
  height: 750px !important;
}

.twentytwenty-container {
  min-height: 200px;
}

.highlights-image img {
  width: 100% !important;
  height: 100% !important;
}

.twentytwenty-container {
  height: 750px !important;
}

.twentytwenty-left-arrow {
  border-right: 6px solid black !important;
}

.twentytwenty-right-arrow {
  border-left: 6px solid black !important;
}

img.twentytwenty-before,
img.twentytwenty-after {
  object-fit: contain;
  height: 100% !important;
}

/* Navgation Ende */

/* Header Kollektion */

.collection_list.header {
  width: 100%;
}

.header-text-wrapper {
  max-width: 1440px;
  width: 1440px;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  min-width: 320px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
}

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

.collection_content.header-quote-author {
  font-size: 0.9em;
  padding-top: 0.3em;
}

.collection_list.header .collection_container {
  height: 696px;
}

.collection_content.header-title {
  font-family: "Raleway";
  font-size: 4em;
  font-weight: 700;
  width: 90%;
}

.collection_content.header-quote {
  padding-top: 1em;
  width: 39%;
}

/* Header Kollektion Ende */

/* Kollektion ALL */

.collection_list.all {
  width: 33.33%;
  float: left;
  padding: 20px;
}

.collection_list.all .collection_container {
  background: var(--clr-primary-white);
  box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-bottom: 7px solid var(--accent-color);
}

.collection_list.all .collection_container:hover {
  box-shadow: rgb(100 100 111 / 50%) 0px 7px 29px 0px;
}

.collection_content.all-img {
  height: 216px;
  position: relative;
  z-index: 0;
}

.all-text-group {
  padding: 30px;
  height: 331px;
  min-height: 331px;
  position: relative;
  background: var(--clr-primary-white);
}

.collection_content.all-title-small {
  color: #7b7b7b;
  font-size: 16px;
  padding-bottom: 0.2em;
}

.collection_content.all-title {
  font-family: "Raleway";
  font-size: 25px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.collection_content.all-teaser {
  padding-top: 1em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.all-wrapper {
  /* display: flex; */
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.collection_content.all-img img {
  height: 100% !important;
  width: 100%;
  object-fit: cover;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition: 0.5s;
}

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

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

#header_1 img {
  padding: 10px;
  margin-left: 10px;
}

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

.collection_list.all
  .collection_container:hover
  .collection_content.all-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_container.Presse.und.Publikationen .all-text-group {
  border-top: 2px solid #ededed;
}

.collection_container.Soziales.Engagement .collection_link {
  display: none;
}

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

.w-25 .collection_list.teamCollection,
.w-25 .collection_list.blog-multi {
  width: 25%;
  float: left;
  padding: 20px;
  border: 2px solid #80808080;
  text-align: center;
}

.border-gray {
  border: 2px solid #80808080;
}

.mg-top-30 {
  margin-top: 30px;
}

.padding-20 {
  padding: 20px;
}

/* Kollektion ALL Ende */

.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;
}

.gallery-style .owl-nav button {
  background-color: var(--clr-accent) !important;
  margin: 10px;
  border-radius: 5px;
  color: #fff !important;
}

.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%;
}

/* Full width split with container */

.container-holder {
  overflow: hidden;
  background: white;
  padding: 0 !important;
}

.collection_list {
  width: 33.33%;
  float: left;
  padding: 15px;
}

img {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
  max-width: 100%;
  transform: scale(1);
  transition: transform 0.5s;
  border-radius: 10px;
}

.header-text h1 img {
  width: 50px !important;
}

.d-none {
  display: none !important;
}

/* Schriften */

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  clear: both;
  font-weight: var(--fw-bold);
  color: #fff;
  margin: 10px 0;
}

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

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);
}

/* 
.patrol h1, .patrol h2, .patrol h3, .patrol h4, .patrol h5, .patrol h6, .patrol,  .we_are_breadcrumb h2 {
    color: #2d2d2d !important;
} */

/* END Schriften */

a {
  color: #fff;
  text-decoration: none;
  transition: 300ms;
}

a:hover {
  color: var(--clr-accent);
  text-decoration: none;
}

/* Kollektion */

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

.collection_list,
.collection_container {
  position: relative;
}

.collection_list,
.content-container {
  position: relative;
}

/* END Kollektion */

/* Kontaktformular */

.fade {
  opacity: 1;
}

.modal {
  display: block;
}

.contactformular .form-check {
  height: 35px;
  line-height: 35px;
  clear: both;
  height: auto !important;
  line-height: 35px;
}

.contactformular .form-check input {
  display: inline-block !important;
  width: auto !important;
}

.input.select_body,
.contactformular select {
  width: 100% !important;
}

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

/* END Kontaktformular */

/* OWL Carousel Global */

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

/* END OWL Carousel Global */

/* END Global */

/* Cookie */

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

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

.cookie-option {
  cursor: pointer;
  border: 1px solid var(--clr-accent);
  display: inline-block;
  padding: 7px !important;
  border-radius: 5px;
  color: var(--clr-accent);
}

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

div#cookie-config.show {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--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;
}

/* Cookie-End */

/* Tabs */

.tab {
  overflow: hidden;
}

/* Style the buttons inside the tab */

.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */

.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */

.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */

.tabcontent,
.tabcontentSection {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

.multiFormPage form .header-text-wrapper {
  display: none;
}

.multiFormPage form .collection_content.header-img {
  position: inherit;
  top: 0;
  right: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.multiFormPage form #slider-wrapper,
.multiFormPage form .collection_list.header .collection_container {
  height: auto;
}

.multiFormPage form .form-group label.classLabel {
  text-align: center;
  font-size: 24px;
}

.multiFormPage form .iconfield .material-icons {
  font-size: 15rem;
}

.multiFormPage form .collection_content.header-img img {
  width: 100%;
  height: 300px !important;
}

.multiFormPage form .iconfield {
  text-align: center;
  padding: 10px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
}

.contact-button button {
  background: var(--clr-accent);
  color: var(--clr-primary-white);
  border: none;
  padding: 10px 20px;
  font-size: 17px;
  cursor: pointer;
  border-radius: 5px;
}

div#submit_button {
  display: flex;
  justify-content: center;
}

.input_collection_link_checkbox {
  cursor: pointer !important;
}

.multiFormPage form .owl-nav {
  display: none !important;
}

.img_container.img-option {
  height: 320px;
}

.form-group h2 {
  text-align: center;
  margin-bottom: 1.2rem;
}

.faq_headline {
  margin: 0 0 1rem;
}

/* Tabs end */

/* Multi-Form */

input {
  padding: 10px;
  width: 100%;
  font-size: 17px;
  border: 1px solid #d5d5d5;
}

/* Mark input boxes that gets an error on validation: */

input.invalid {
  background-color: #ffdddd;
}

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

.kontaktanfragegruppe label {
  display: flex;
  align-items: center;
}

.kontaktanfragegruppe label br {
  display: none;
}

.contactformular input {
  width: auto !important;
}

.kontaktanfragegruppe .row {
  display: flex;
  align-items: center;
  margin: 0 0 1rem;
}

.border-none {
  border: none !important;
}

/* Hide all steps by default: */

.tab {
  display: none;
}

input#input_collection_link_40_value_1 {
  width: auto;
}

.kontaktanfragegruppe .input_collection_link_checkbox {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: end;
  width: 30%;
}

input#input_collection_link_40_value_2 {
  width: auto;
}

button {
  background-color: #04aa6d;
  color: var(--clr-primary-white);
  border: none;
  padding: 10px 20px;
  font-size: 17px;
  cursor: pointer;
}

button:hover {
  opacity: 0.8;
}

.contact-button #prevBtn {
  background: #787878 !important;
}

.col-xs-12.all-dishes.all-dishes h4 {
  color: var(--clr-primary-white);
}

.col-xs-12.all-dishes.all-dishes {
  padding: 10px 20px;
  background: var(--clr-accent);
  border: 1px solid grey;
  border-radius: 5px;
  margin-bottom: 1rem;
  color: var(--clr-primary-white);
}

/* Make circles that indicate the steps of the form: */

.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */

.step.finish {
  background-color: #04aa6d;
}

/* Multi-form end */

/* Cookie end */

/* Header */

/* Sticky Header */

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

/* END Sticky Header */

.header-wrapper {
  position: absolute;
}

#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 .level_1 .active_tree:after {
  width: 100%;
}
#header .level_1 a:hover:after {
  width: 100%;
}

#header_2 .level_1 a:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  transition: width 0.3s;
  margin-top: 3px;
}

#header .component.logo,
#header .component.logo .textcontent {
  height: 100%;
  float: left;
}

#header_1 img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  display: flex;
  justify-content: flex-start;
  padding-left: 0;
  margin-top: 10px;
}

div#header_3 {
  display: none;
}

div#header,
#header .container {
  height: 100%;
}

div#header,
.header-wrapper {
  height: 60px;
  width: 100%;
  z-index: 10;
}

div#header_1 {
  height: 100%;
  position: relative;
  width: 19%;
}

.sticky-active {
  position: relative;
}

/* hamburger menu */

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

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

li.level_1:nth-child(6):after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  top: -5px;
  right: -13px;
  border-radius: 9999px;
  background: var(--clr-accent);
  box-shadow: 0 0 0 0 #00ff008a;
  animation: pulse-green 2s infinite;
}

.footer-sitemap li.level_1:nth-child(6):after {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  top: -5px;
  right: 0px;
  border-radius: 9999px;
  background: var(--clr-accent);
  box-shadow: 0 0 0 0 #00ff008a;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 #00ff008a;
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(226, 5, 18, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(226, 5, 18, 0);
  }
}

li.level_1 {
  position: relative;
}

.hamburger-menu {
  background: #000000cf;
  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_2 {
  padding: 0px 20px;
  color: var(--clr-primary-white);
  border-top: 1px solid 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: var(--clr-primary-white);
  border-radius: 2px;
  display: block;
  transition: 0.5s;
  transform-origin: center;
}

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

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

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

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

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

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

/* end* Header */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Slideshow */

#slider-wrapper {
  position: relative;
}

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

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

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

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

#slider-wrapper div.slider-untertitle {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(55, 55, 55, 0.7);
  color: var(--clr-primary-white);
  padding: 20px 0;
}

#slider img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

/* End Slideshow */

/* Pop up Element */

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

/* END Pop up Element */

/* Anker Element */

.anker-navi .row {
  margin: 0 !important;
  text-align: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

.anker-navi {
  position: relative;
  background: rgba(77, 77, 77, 0.7);
  top: 0;
  width: 100%;
  clear: both;
  font-family: calibri light !important;
  margin-top: -70px;
  margin-bottom: 50px;
  z-index: 9;
  transition: 0.1s;
}

.anker-navi.sticky {
  position: fixed;
  top: 0;
  margin: 0 !important;
  background: rgba(77, 77, 77, 0.7);
}

.anker-button .textcontent {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-weight: 600;
  text-transform: initial;
}

.anker-button .textcontent:hover,
.anker-button.active .textcontent {
  background: #5a9c9d !important;
}

.anker-button.button {
  margin: 0 !important;
  padding: 0 !important;
  /* width: 20%; */
  width: 16.1666%;
  border-left: 1px solid var(--clr-primary-white);
  border-bottom: 0;
  border-top: 0;
  background: transparent !important;
  color: var(--clr-primary-white);
  align-items: center;
}

.anker-button.button:last-child {
  border-right: 1px solid var(--clr-primary-white);
}

/* END Anker Element */

.d-flex,
.d-flex > .row {
  display: flex !important;
}

.align-items-center,
.align-items-center > .row {
  align-items: center !important;
}

/* Footer */

#footer {
  clear: both;
  padding: 70px 0 25px 0;
  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;
  justify-content: center;
}

/* #footer a:hover {
  color: #5a9c9d;
} */

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

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

/*.component.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: 15px 0;
  clear: both;
  text-align: right;
  color: var(--clr-primary-white);
}

div#privacy-policy a {
  color: var(--clr-primary-white);
}

#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 {
  border-right: 1px solid #9d9d9c;
  padding-right: 50px;
}

.seo .footer-2 {
  padding-left: 50px;
}

.footer-links a {
  color: #b5b5b5;
}

.footer-links a:hover {
  color: #5a9c9d !important;
}

/* End Footer */

.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;
}

body {
  background-image: url(/userdata/images/background.jpg);
  background-size: 100%;
}

@font-face {
  font-family: "FiraSans";
  src: url("/layout/frontend/b2c/dist/fonts/FiraSans-Regular.ttf");
}

.home .header-text h1 {
  text-align: center;
  color: #fff !important;
  font-family: "Abel-Regular";
  
}

.header-text h1 {
  color: #fff !important;
}

.header-text h4 {
  color: #fff !important;
}

div#content:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(1px) !important;
}

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

div#content {
  height: 770px;
}
.der-verein div#content {
  height: 600px;
}

div#content {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  position: relative;
  justify-content: center;
}
div#content {
  align-items: flex-start;
  justify-content: start;
}

div#header,
.header-wrapper {
  height: 100px;
  width: 100%;
  z-index: 10;
}

div#privacy-policy a {
  color: #fff;
  padding-right: 40px;
  padding-left: 40px;
}
div#privacy-policy a:hover {
  color: var(--clr-accent);
  padding-right: 40px;
  padding-left: 40px;
}

#privacy-policy .textcontent {
  box-sizing: border-box;
  color: #fff;
}
/* #header a:hover {
    color: var(--clr-accent) !important;
} */

#header a {
  color: #fff;
}

.collection_content.img-aktuelles {
  height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.aktuelles.full_preview .collection_content.img-aktuelles {
  max-width: 500px;
  height: auto;
  z-index: 0;
}

.aktuelles .collection_content.img-aktuelles::after {
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(12 12 12) 100%);
  width: 100%;
  height: 200px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  border-radius: 0 0 10px 10px;
}

.turnen .collection_content.gruppenbild::after {
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(12 12 12) 100%);
  width: 100%;
  height: 200px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  border-radius: 0 0 10px 10px;
}

.aktuelles.aktuelles.full_preview .collection_content.img-aktuelles::after {
  display: none;
}

.home div#area-3 .container,
.home div#area-4 .container,
.home div#area-5 .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.der-verein div#area-3 .container {
  display: block;
}
.der-verein div#area-4 .container {
  display: block;
}

.faq_group_container .faq_question_box {
  background: rgb(255 255 255 / 20%);
}

.faq_group_container .faq_answer_box {
  background: none;
  border: 2px solid rgb(255 255 255 / 20%);
}

.faq h3 {
  color: #fff;
}

.faq_question_box:after {
  color: var(--clr-accent);
}

.faq_question_box.active:after {
  color: var(--clr-accent);
}

#area-3 .textcontent {
  color: #fff;
}

.group-img img {
  width: 100% !important;
  height: 100% !important;
}

.collection_content.time {
  color: #888888;
}

.collection_content.stichwort {
  padding-top: 25px;
  padding-bottom: 5px;
  color: var(--clr-accent);
}

.collection_content.titel {
  font-size: x-large;
  font-family: var(--ff-bold);
}
.collection_list.aktuelles:nth-child(1) {
  width: 50%;
}
.collection_list.aktuelles:nth-child(2) {
  width: 50%;
}

.matchcenter .collection_list.aktuelles:nth-child(3) {
  width: 50%;
}

#area-7 h2 {
  color: #fff;
}

#footer li.level_1 a:hover {
  color: var(--clr-accent);
}

.d-flex > .row {
  flex-direction: column;
}

#area-3 img {
  border-radius: 10px;
}
#area-4 img {
  border-radius: 10px;
}
#area-5 img {
  border-radius: 10px;
}


.button a {
  margin-top: 20px;
  float: left;
  padding: 10px;
  color: #fff;
  border-radius: 5px;
  background-color: var(--clr-accent);
  border: 1px solid var(--clr-accent);
}
.button a:hover {
  margin-top: 20px;
  float: left;
  padding: 10px;
  color: #000;
  border: 1px solid #fff;
  border-radius: 5px;
  background-color: #fff;
}

div#area-3,
#area-5,
#area-8 {
  background: rgb(255 255 255 / 10%);
}

.faq_answer_box {
  color: #fff;
}

#area-8 h1 {
  color: #fff;
}

.home div#area-2 {
  margin-top: -280px;
}

.matchcenter div#area-2 {
  margin-top: -280px;
}
.teams div#area-2 {
  margin-top: -280px;
}

.aktuelles div#area-2 {
  margin-top: -280px;
}

.datenschutz div#area-2 {
  margin-top: -280px;
}

.impressum div#area-2 {
  margin-top: -280px;
}

.turnen div#area-2 {
  margin-top: -280px;
}

.erste-mannschaft div#area-2 {
  margin-top: -255px;
}

.u17 div#area-2 {
  margin-top: -255px;
}
.u13 div#area-2 {
  margin-top: -255px;
}
.u11 div#area-2 {
  margin-top: -255px;
}
.u9 div#area-2 {
  margin-top: -255px;
}
.u7 div#area-2 {
  margin-top: -255px;
}

#area-4 h2:after {
  content: "";
  background: var(--clr-accent);
  width: 90px;
  height: 4px;
  position: absolute;
  bottom: -20px;
  left: 0px;
  border-radius: 9999px;
}

#area-4 h2 {
  margin-bottom: 45px;
  margin-top: 20px;
  position: relative;
}
.home #area-5 h2:after {
  content: "";
  background: var(--clr-accent);
  width: 90px;
  height: 4px;
  position: absolute;
  bottom: -20px;
  left: 0px;
  border-radius: 9999px;
}

.home #area-5 h2 {
  margin-bottom: 45px;
  margin-top: 20px;
  position: relative;
}
#area-3 h2:after {
  content: "";
  background: var(--clr-accent);
  width: 90px;
  height: 4px;
  position: absolute;
  bottom: -20px;
  left: 0;
  border-radius: 9999px;
}

#area-3 h2 {
  margin-bottom: 45px;
  position: relative;
  margin-top: 20px;
}
.home #area-7 h2:after {
  content: "";
  background: var(--clr-accent);
  width: 90px;
  height: 4px;
  position: absolute;
  bottom: -20px;
  left: 0px;
  border-radius: 9999px;
}
.der-verein #area-2 h2:after {
  content: "";
  background: var(--clr-accent);
  width: 90px;
  height: 4px;
  position: absolute;
  border-radius: 9999px;
  bottom: 30px;
}

.der-verein #area-2 h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 40px;
}

.home #area-7 h2 {
  margin-bottom: 45px;
  position: relative;
}
#area-8 h1:after {
  content: "";
  background: var(--clr-accent);
  width: 90px;
  height: 4px;
  position: absolute;
  bottom: -9px;
  border-radius: 9999px;
}

#area-8 h1 {
  margin-bottom: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.col-xs-12.col-sm-12.col-md-12.col-lg-6.contactform {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contactformular input {
  width: 100% !important;
  background: none;
  border: none;
  border-bottom: 1px solid #fff;
}

input::placeholder {
  color: #fff;
}

div#submit_button {
  display: block;
}

input#button {
  width: auto !important;
  color: #fff;
  border: 1px solid var(--clr-accent);
  background-color: var(--clr-accent);
  border-radius: 5px;
}
input#button:hover {
  width: auto !important;
  color: #000;
  border: 1px solid #fff;
  background-color: #fff;
}

div#submit_button {
  float: left;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

/* #header_1 img {
    padding: 0px;
} */

.button-header {
  background: var(--clr-accent);
  border-radius: 5px;
  border: 1px solid var(--clr-accent);
  float: left;
  margin-top: 20px;
}
.button-header a {
  padding: 10px;
  float: left;
  color: #fff;
}
.button-header a:hover {
  color: black;
}

.button-header:hover {
  background: none;
  border: 1px solid #fff;
  border-radius: 5px;
  background: #fff;
}

div#privacy-policy {
  position: relative;
  float: left;
  width: 100%;
}

.component.privacy_policy .textcontent:first-child {
  float: left;
}

.component.privacy_policy .textcontent:last-child {
  float: right;
}

.button-header-position .row {
  position: relative;
  width: auto;
  float: left;
  left: 50%;
  transform: translateX(-50%);
}

.col-xs-12.button-header-position {
  z-index: 9;
}

.button-header-2 a {
  color: #000;
}
.button-header-2 a:hover {
  color: #fff;
}

.button-header-2 {
  float: left;
  border: 1px solid #fff;
  border-radius: 5px;
  margin-left: 20px;
  margin-top: 20px;
  background: #fff;
}

.button-header-2 a {
  padding: 10px;
  float: left;
}

.button-header-2:hover {
  background-color: var(--clr-accent);
  border-radius: 5px;
  border: 1px solid var(--clr-accent);
}

.aktuelles div#footer {
  background: rgb(255 255 255 / 10%);
}

.aktuelles div#area-2 {
  margin-top: -280px;
}

h2 {
  color: #fff;
}

select#input_interest {
  padding: 10px 0px;
  width: 100%;
  font-size: 17px;
  background: no-repeat;
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
}

option {
  background: #000;
}

#area-8 .col-xs-12.col-sm-12.col-md-12.col-lg-6 {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.collection_list.teams:nth-child(1) {
  width: 100%;
  max-width: 905px;
  left: 50%;
  transform: translateX(-50%);
}

.teams div#area-2 {
  margin-top: -280px;
}

.collection_content.mannschaft {
  font-size: xx-large;
  padding: 10px 10px 10px 0px;
}

.collection_content.liga {
  color: var(--clr-accent);
  padding: 20px 20px 0px 0px;
  font-size: large;
}

.teams .collection_content.link a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

button#backButton {
  display: none;
}

.back_to_overview {
  background: var(--clr-accent);
  float: left;
  border-radius: 5px;
  margin-bottom: 30px;
  margin-top: -75px;
  border: 1px solid var(--clr-accent);
  position: relative;
  z-index: 1;
}
.back_to_overview:hover {
  background: none;
  border: 1px solid var(--clr-accent);
  border-radius: 5px;
}

.back_to_overview a {
  color: #fff;
  float: left;
  padding: 10px;
}
.back_to_overview a:hover {
  color: var(--clr-accent);
}

.der-verein .collection_list,
.content-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collection_content.zahl {
  font-size: 4rem;
  color: var(--clr-accent);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.full-h2 {
  padding: 30px 0px 30px;
  float: left;
  width: 100%;
}

.full-h2 h2:after {
  content: "";
  background: #707070 !important;
  width: 75%;
  height: 2px;
  position: absolute;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
}

.collection_content.titel-spieler {
  font-size: 15px;
  padding: 0 0 10px;
  position: relative;
  z-index: 3;
  margin-top: 20px;
}

.collection_content.titel-spieler:after {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--clr-accent);
  display: block;
  border-radius: 5px;
  margin: 5px 0 0;
  position: relative;
  z-index: 3;
}

.collection_content.name {
  text-transform: uppercase;
  line-height: 0.9 !important;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 3;
  margin-top: 10px;
  margin-bottom: 10px;
}

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

.collection_list.turnen {
  width: 50%;
}

.collection_content.img-team:after {
  content: "";
  background: linear-gradient(
    180deg,
    rgb(21 21 21 / 0%) 0%,
    rgb(20 20 20) 100%
  );
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 280px;
  z-index: 0;
  border-radius: 10px;
}

.collection_content.mannschaft {
  text-transform: uppercase;
  line-height: 0.9 !important;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left: 30px;
}

.collection_content.liga {
  font-size: 15px;
  padding: 0 0 10px;
  position: absolute;
  z-index: 3;
  bottom: 50px;
  left: 30px;
}

.collection_list .content-container .collection_list.teammember {
  width: 30%;
}

.history div#area-2 {
  margin-top: -240px;
}

.collection_list.historie-timeline {
  width: 50%;
  padding: 30px;
}

.collection_list.historie-timeline .collection_container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.collection_list.historie-timeline:nth-child(even) .collection_container {
  align-items: flex-start;
  text-align: left;
  margin-top: 36rem;
}

.collection_list.historie-timeline:nth-child(even)
  .collection_container
  .collection_content.history-titel:after {
  right: unset;
  left: -40px;
}

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

.history-timeline-wrapper {
  margin-top: -210px;
  position: relative;
  float: left;
  width: 100%;
}

.collection_content.history-titel:after {
  content: "";
  background: var(--clr-accent);
  width: 20px;
  height: 20px;
  position: absolute;
  right: -40px;
  transform: translateY(50%);
  border-radius: 9999px;
  z-index: 1;
}

.collection_content.history-titel {
  font-size: 6rem;
  line-height: 1;
  position: relative;
  margin-top: 20px;
}

.collection_content.history-picture {
  box-shadow: rgb(0 0 0) 0px 5px 15px;
  border-radius: 10px;
}

.pop-up-element iframe {
  width: 100%;
  height: 825px;
  border-radius: 5px;
    
}

.collection_list.aktuelles:hover img,
.collection_list.teams:hover img,
.collection_list.teammember:hover img,
.collection_list.turnen:hover img {
  transform: scale(1.05);
}

.collection_content.img-team,
.collection_content.img-spieler,
.collection_content.gruppenbild {
  overflow: hidden;
  border-radius: 10px;
  position: relative;

}


.collection_content.gruppenbild {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  aspect-ratio: 4/3;
}

.collection_content.img-spieler img{
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}

div#sidebuttons .sidebutton-coll:hover {
  right: 265px;
  transition: var(--transition-long);
}
div#sidebuttons {
  position: fixed;
  right: 0;
  top: 180px;
  z-index: 10;
}
div#sidebuttons .sidebutton-coll {
  position: relative;
  float: left;
  background: var(--clr-accent);
  margin-bottom: 10px;
  padding: 8px 12px;
  width: 340px;
  right: -24px;
  transition: var(--transition-long);
  box-shadow: var(--shadow);
  border-radius: 5px;
  display: block;
}

.component.fix-buttons {
  position: absolute;
  float: left;
  right: -275px;
  top: -100px;
}

.sidebutton-coll .collection_container {
  display: flex;
  align-items: center;
}

.collection_content.sideicon {
  width: 10%;
  padding-right: 5px;
  position: relative;
}

.collection_content.sidebuttons-text {
  float: left;
  width: 90%;
  position: relative;
  float: right;
  color: #000;
}

.collection_content.sideicon img {
  position: relative;
  border-radius: 0;
}

.collection_content.sidebuttons-text .textcontent {
  text-align: right;
}

.collection_content.side-link a {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
}

.collection_list.vorstandschaft {
  width: 100%;
}

.collection_list.vorstandschaft .collection_container {
  display: flex;
}

.vorstandschaft_wrapper {
  margin-left: 40px;
  margin-top: 10%;
}

.col-xs-12.forms_1 {
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
  position: relative;
}

.col-xs-12.forms_2 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.filegallery_content {
  background: var(--clr-accent);
  padding: 10px;
  border-radius: 5px;
  border: 1px solid var(--clr-accent);
  min-width: 462px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filegallery_content:hover {
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #fff;
  color: #000;
}

.forms_1 a {
  color: #fff;
  padding: 10px;
}

.forms_1 a:hover {
  color: #000;
  padding: 10px;
}

.forms_2 a {
  color: #fff;
  padding: 10px 145px;
}


.forms_2 a:hover {
  color: #000;
  padding: 10px;
}

.der-verein #area-5 h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 40px;
}

.der-verein #area-5 h2:after {
  content: "";
  background: var(--clr-accent);
  width: 90px;
  height: 4px;
  position: absolute;
  border-radius: 9999px;
  bottom: 30px;
}

.header-text .textcontent {
  max-width: 800px;
  margin: 0 auto;
}

.slideshow-title {
  margin-top: 100px;
}

#header_1 img {
  width: auto !important;
  height: 175px !important;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

a.button-news {
  background: var(--clr-accent);
  float: left;
  border-radius: 5px;
  border: 1px solid var(--clr-accent);
  position: relative;
  z-index: 1;
  padding: 10px;
  color: #fff;
}

a.button-news:hover {
  background: #fff;
  float: left;
  border-radius: 5px;
  border: 1px solid #fff;
  position: relative;
  z-index: 1;
  padding: 10px;
  color: #000;
}

.filter_display {
  display: none;
}

.ar-16-9 img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.collection_list.teams img{
  aspect-ratio: 4 / 3;
}

li.level_1.levels:hover ul.level_2 {
  display: block !important;
}

ul.level_2 {
  position: absolute;
  left: 0;
  top: 100%;
  width: 115%;
  height: auto;
  z-index: 1;
  background: var(--primary-white);
  padding: 15px;
  border-radius: var(--br-primary);
}

#header .active_tree {
  font-weight: var(--fw-bold);
}

ul.level_2 {
  display: none;
}

li.level_1:hover > ul.level_2 {
  display: block;
}


.ansprechpartner .email, 
.ansprechpartner .phone {
  display: inline; 
}
.ansprechpartner .collection_content.email {
  display: block!important; 
  width: 100%; 
  white-space: nowrap; 
}

.ansprechpartner .collection_content.phone {
  display: block!important;
  margin-top: 5px;
  white-space: normal; 
}
.ansprechpartner div#area-2 {
  top: -230px;
}
/* Responsiv */

@media (max-width: 1450px) {
  .header-animation iframe {
    width: 510px;
  }
}

@media (max-width: 1249px) {
 
  ul.level_2{ 
  background: #000000cf;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  display: block !important;
  padding: 0;
  border-bottom: 1px solid var(--clr-primary-white);
  }

  .new-f-img img {
    border: 5px solid #000;
    border-radius: 20px;
  }

  #header #header_2 {
    display: none;
  }

  #header ul.level_1 {
    margin: 0 !important;
    padding: 0 !important;
    gap: 2rem;
    display: block;
  }

  .new-f-img:before {
    height: 6px;
    top: -3px;
  }

  .col-xs-12.willkommen.d-flex.align-items-center .row {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }

  .col-xs-12.willkommen.d-flex.align-items-center lottie-player {
    margin-left: unset;
    height: 300px !important;
    width: 300px !important;
  }

  div#header,
  #header .container {
    height: 100%;
    width: 100%;
    padding: 0;
  }
  div#header_1,
  #header_2,
  #header_3 {
    padding: 0 !important;
    margin: 0 !important;
  }

  div#toggle_navigation {
    display: block !important;
  }
  div#toggle_navigation:hover,
  div#toggle_navigation:active,
  div#toggle_navigation:focus {
    background: transparent;
  }
  #cookie-bar > p {
    line-height: 20px;
  }

  .collection_content.history-titel {
    font-size: 4rem;
    line-height: 1;
    position: relative;
    margin-top: 20px;
  }
}

@media (max-width: 1199px) {
  .animation {
    display: none;
  }

  .matchcenter .pop-up-element .row{
    flex-wrap: wrap;
    display: flex;
  }


  .col-xs-12.forms_2 {
    margin-top: 5%;
  }

  li.level_1:nth-child(6):after {
    display: none;
  }
}

@media (max-width: 1120px) {
  .header-animation {
    justify-content: start;
  }
}

@media only screen and (max-width: 1024px) {
  .collection_list {
    width: 50%;
  }
  .anker-navi .container {
    padding: 0 !important;
  }

  .new-f-img img {
    border: 3px solid #000;
    border-radius: 12px;
  }

  .new-f-img:before {
    width: 50px;
    height: 4px;
    top: -2px;
  }

  .collection_list.historie-timeline:nth-child(even) .collection_container {
    align-items: flex-start;
    text-align: left;
    margin-top: 15rem;
  }

  #header_1 img {
    width: auto !important;
    height: 100px !important;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
}

@media only screen and (max-width: 992px) {
  .footer-sitemap ul {
    flex-wrap: wrap;
  }

  div#cookiewarnung {
    width: 90%;
  }

  h2#ueber-mysyde {
    padding: 10px;
  }

  .vergleich {
    height: 500px !important;
  }

  .twentytwenty-container {
    height: 450px !important;
  }

  h1 {
    font-size: 2.7rem;
  }
  #header #header_1 {
    width: 50%;
  }
  .anker-navi.sticky {
    position: relative !important;
  }

  .pop-up-button {
    margin-top: 1rem;
  }

  .pop-up-button-group .row {
    flex-wrap: wrap;
    margin-left: 7px;
  }
}

@media (max-width: 768px) {

  .aktuelles div#area-2 {
    margin-top: -480px;
  }

  .teams div#area-2 {
    margin-top: -480px;
  }

  .turnen div#area-2 {
    margin-top: -380px;
  }

  .matchcenter div#area-2 {
    margin-top: -380px;
  }

  #cookie-bar {
    text-align: center;
  }
  .home div#area-3 .container,
  .home div#area-4 .container,
  .home div#area-5 .container {
    flex-direction: column;
  }

  .home div#area-3 .container,
  .home div#area-5 .container {
    flex-direction: column-reverse;
  }

  .der-verein div#area-3 .container {
    flex-direction: column-reverse;
  }
  .der-verein div#area-3 .container,
  .matchcenter div#area-4 .container {
    display: flex;
  }

  #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;
  }

  .faq_group_container .faq_question_box {
    padding: 5px 34px 8px 15px;
  }

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

  .new-f-text {
    padding: 0 0 30px;
  }

  /* .highlight-group {
            border-bottom: 1px solid var( --clr-primary-white);
        } */

  .row {
    flex-wrap: wrap;
    display: flex;
  }

  .collection_list.bugfixes {
    width: 50%;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 28px;
  }

  .pop-up-button {
    margin-top: 1rem;
  }

  .pop-up-button-group .row {
    flex-wrap: wrap;
    margin-left: 7px;
  }

  .col-xs-12.willkommen.d-flex.align-items-center lottie-player {
    width: 100% !important;
  }

  .col-xs-12.willkommen.d-flex.align-items-center {
    padding: 0;
  }
  #slider div#slider-title {
    padding: 0 20px;
  }
  .anker-button.button {
    width: 100%;
    border-bottom: 1px solid var(--clr-primary-white);
  }
  #footer .footer-1,
  #footer .footer-2,
  #footer .footer-3,
  #footer .footer-4 {
    text-align: center;
    margin-bottom: 25px;
  }
  .footer-sitemap li.level_1 {
    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;
  }

  .collection_list {
    width: 100%;
  }

  .collection_list.aktuelles:nth-child(1) {
    width: 100%;
  }

  .collection_list.aktuelles:nth-child(2) {
    width: 100%;
  }

  .matchcenter .collection_list.aktuelles:nth-child(3) {
    width: 100%;
  }
}

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

  .pop-up-element iframe {
    overflow-x: scroll;
    max-height: 400px;
      
  }

  div#content {
    background-image: url(/userdata/images/titelbild-neu.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .collection_content.sideicon img {
    position: relative;
    margin-left: -6px;
  }

  .component.fix-buttons {
    position: absolute;
    float: left;
    right: -283px;
    top: 0;
  }

  .collection_list.turnen {
    width: 100%;
  }

  .collection_list.aktuelles:nth-child(1) {
    width: 100%;
  }

  .collection_list.aktuelles:nth-child(2) {
    width: 100%;
  }

  .matchcenter .collection_list.aktuelles:nth-child(3) {
    width: 100%;
  }

  .pop-up-button {
    width: 40% !important;
    float: left !important;
  }

  .pop-up-button .textcontent {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }

  .collection_content.field-1655053570 {
    min-width: 47px;
  }

  .bugfixes-collection {
    padding-left: 0 !important;
    margin-left: 0px !important;
    padding-right: 0 !important;
  }

  .collection_list.bugfixes {
    width: 100%;
  }

  .vergleich {
    height: 360px !important;
  }
  .pb-5 {
    padding-bottom: 1rem !important;
  }

  .twentytwenty-container {
    height: 360px !important;
  }
  .header-animation iframe {
    width: 100%;
    height: 230px;
  }

  .collection_list.historie-timeline {
    width: 100%;
  }

  .collection_content.history-titel {
    font-size: 4rem;
    line-height: 1;
    position: relative;
    margin-top: 10px;
  }
  .collection_list.historie-timeline:nth-child(even) .collection_container {
    margin-top: 0rem;
  }

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

  .collection_list.historie-timeline .collection_container {
    margin-top: 0rem;
  }
  .collection_list.historie-timeline .collection_container {
    align-items: center;
    text-align: center;
  }

  .collection_content.history-titel:after {
    display: none;
  }

  .history-timeline-wrapper:after {
    z-index: -1;
    opacity: 0;
  }

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

@media only screen and (max-width: 500px) {
  .filegallery_content {
    background: var(--clr-accent);
    padding: 10px;
    border-radius: 5px;
    border: 1px solid var(--clr-accent);
    min-width: 325px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .forms_2 a {
    color: #fff;
    padding: 10px 100px;
}

  .collection_content.titel {
    font-size: inherit;
    font-family: var(--ff-bold);
  }

  .new-f-img img {
    border: 2px solid #000;
    border-radius: 10px;
  }

  .new-f-img:before {
    width: 32px;
    height: 3px;
    top: -1px;
  }
  div#content,
  .main-screen {
    padding: 30px 0 !important;
  }

  .pop-up-element {
    padding: 30px 10px !important;
  }
  .vergleich {
    height: 260px !important;
  }

  .container {
    min-width: 250px;
  }

  .twentytwenty-container {
    height: 260px !important;
  }

  div#slider-wrapper {
    height: auto !important;
  }
  #slider-wrapper div.slider-untertitle {
    position: relative;
    background: rgba(55, 55, 55, 0.9);
  }
  #slider div#slider-title {
    padding: 0 20px !important;
  }
  .footer-sitemap li.level_1 {
    width: 100%;
    text-align: center;
  }
  h2 {
    margin-top: 0px;
  }

  .footer-sitemap li.level_1:nth-child(6):after {
    display: none;
  }
}

@media (max-width: 450px) {
  body {
    font-size: var(--fs-500);
  }

  h1 {
    font-size: 2rem;
  }

  .header-text h1 {
    margin-top: 100px;
  }

  .collection_list.historie-timeline:nth-child(even) .collection_container {
    margin-top: 0rem;
  }

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

  .collection_list.historie-timeline .collection_container {
    margin-top: 0rem;
  }
  .collection_list.historie-timeline .collection_container {
    align-items: center;
    text-align: center;
  }

  .collection_content.titel {
    font-size: inherit;
    font-family: var(--ff-bold);
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 1.8rem;
  }
}

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

  .w-25 .collection_list.teamCollection,
  .w-25 .collection_list.blog-multi {
    width: 100%;
    float: left;
    padding: 20px;
    border: 2px solid #80808080;
    text-align: center;
  }
  .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) {
  .w-25 .collection_list.teamCollection {
    width: 25%;
    float: left;
    padding: 20px;
  }

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

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

  .container {
    max-width: 1170px;
  }
}

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


/* 17.06.2024 SUPPORT JAN USENKO OWL CAROUSEL */

body.aktuelles .owl-carousel .owl-stage img{ 
    aspect-ratio: 5/4;

}
/* 17.06.2024 SUPPORT JAN USENKO END */

.recaptcha-class iframe {
  width: auto;
  float: left;
}