/* media break-point */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


:root {
  --min_height_wrkflow: 30rem;

  /* mind. 16 px */
  /* PRE FONT SIZES */
  --font_multiplier: 0.9;
  --font_multiplier_navbar: 0.9;

  --font_size_textblock_pre: max(16px, 1.4rem);
  --font_size_textlogo_pre: 1.8rem;
  --font_size_navbar_pre: 1.5rem;

  --font_size_p_homepage_pre: 1.8rem;
  --font_size_hinweis_pflichtfeld_pre: 1.0rem;

  --font_size_h1_pre: 4rem;
  --font_size_h1_lower_pre: 3.3rem;
  --font_size_h2_pre: 2rem;
  --font_size_h3_pre: 1.6rem;


  /* APPLIED FONT SIZES */

  --font_size_textblock: calc(var(--font_size_textblock_pre) * var(--font_multiplier));
  --font_size_textlogo: calc(var(--font_size_textlogo_pre) * var(--font_multiplier));
  --font_size_navbar: calc(var(--font_size_navbar_pre) * var(--font_multiplier_navbar));

  --font_size_p_homepage: calc(var(--font_size_p_homepage_pre) * var(--font_multiplier));
  --font_size_hinweis_pflichtfeld: calc(var(--font_size_hinweis_pflichtfeld_pre) * var(--font_multiplier));

  --font_size_h1: calc(var(--font_size_h1_pre) * var(--font_multiplier));
  --font_size_h1_lower: calc(var(--font_size_h1_lower_pre) * var(--font_multiplier));
  --font_size_h2: calc(var(--font_size_h2_pre) * var(--font_multiplier));
  --font_size_h3: calc(var(--font_size_h3_pre) * var(--font_multiplier));

  /* OTHER SIZES */

  --border_radius_divs: 16px;
  --border_radius_button: 50px;
  --border_radius_input: 50px;


  --color_font_main: #236c95;

  --color_background_divs: #D6EAFC;

  --color_font_link_footer: #555;
  --color_font_link_footer_hover_lighter: #777;
  --color_font_link_footer_hover_darker: #222;

  /* --color_syndrom_tooltip: rgba(0, 0, 0, 0.1); */
  --color_syndrom_tooltip: rgba(200, 200, 200, 0.8);


}

@media(max-width: 720px) {
  :root {
    /* PRE FONT SIZES */
    --font_size_textblock_pre: 1rem;
    --font_size_textlogo_pre: 1.4rem;
    --font_size_navbar_pre: 1.2rem;

    --font_size_h1_pre: 2rem;
    --font_size_h1_lower_pre: 1.7rem;
    --font_size_h2_pre: 1.2rem;
    --font_size_h3_pre: 1.4rem;

    /* APPLIED FONT SIZES */

    --font_size_textblock: calc(var(--font_size_textblock_pre) * var(--font_multiplier));
    --font_size_textlogo: calc(var(--font_size_textlogo_pre) * var(--font_multiplier));
    --font_size_navbar: calc(var(--font_size_navbar_pre) * var(--font_multiplier));

    --font_size_h1: calc(var(--font_size_h1_pre) * var(--font_multiplier));
    --font_size_h1_lower: calc(var(--font_size_h1_lower_pre) * var(--font_multiplier));
    --font_size_h2: calc(var(--font_size_h2_pre) * var(--font_multiplier));
    --font_size_h3: calc(var(--font_size_h3_pre) * var(--font_multiplier));
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-y: auto;
  background-position: center center;
  font-family: "Montserrat", sans-serif;
  position: relative;
  min-height: 100vh;

  /* background: linear-gradient(180deg, rgb(49, 152, 209) 0%, rgba(35, 108, 149, 0.71) 72.000002861%, rgba(0, 0, 0, 0) 100%); */
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding-bottom: 20px;
  overflow-y: scroll;
  /* overflow-x: hidden; */

  /* zoom: 0.9; */
}

body::before {
  content: "";
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  /* height: 300px; */
  height: 100vh;
  background: linear-gradient(180deg, rgb(49, 152, 209) 0%, rgba(35, 108, 149, 0.71) 72%, rgba(0, 0, 0, 0) 100%);

  /* für evtl. dark mode
  background: linear-gradient(180deg, rgb(49, 152, 209) 0%, rgba(35, 108, 149, 0.71) 72%, rgba(33, 38, 41, 100) 100%); */

  pointer-events: none;
  /* Damit das Pseudo-Element keine Mausereignisse abfängt */
  z-index: -9999;
  /* Sicherstellen, dass es über allem anderen liegt */
}




@media all and (min-width: 992px) {
  body:after {
    content: "";
    position: absolute;
    background: url('../images/medicine_final_crop.png') no-repeat;
    background-size: contain;
    width: 152px;
    height: 145px;

    left: 81%;
    /* Justiere, um das Bild horizontal auszurichten */
    top: 190px;
    /* Justiere, um das Bild vertikal auszurichten */
    z-index: -9;
  }
}



.flex {
  display: flex;
}

.display-none {
  display: none;
}

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

h1 a {
  font-size: 32px;
  font-weight: 500;
}

h1 a:hover {
  color: #fff;
}

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

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.align-center {
  align-items: center;
}

button {
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  border: 0;
}

.align-end {
  align-items: flex-end;
}

.text-light {
  color: #fff;
  background-color: transparent;
}

.text-center {
  text-align: center;
}

.container {
  max-width: 1920px;
  margin: 0 auto;
  /* padding: 0 20px; */
  padding: 0 1%;
}

input {
  font-family: "Montserrat", sans-serif;
}

/* .btn-green {
  color: #fff;
  background-color: #9c3;
  border-color: #9c3;
} */

header {
  /* display: flex; */
  /* justify-content: space-between; */
  /* flex-direction: row; */

  padding: 5px;
  padding-top: 10px;
  padding-right: 15px;

  position: -webkit-sticky;
  /* Safari */
  position: sticky;
  top: 0;
  z-index: 1000;

  background-color: rgb(49, 152, 209);
  box-shadow: 0 0 10px rgba(35, 108, 149, 0.71);
  /* border-bottom:2px solid grey; */
}

/* 
  NAVBAR
*/

.flex-always-space-between {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
}

.flex-break_to_row_if_tablet {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

@media(max-width: 1024px) {
  .flex-break_to_row_if_tablet {
    flex-direction: column;
  }
}

.menu .logo h1 {
  /* font-size: 32px; */
  font-size: var(--font_size_h2);
  font-weight: 600;
  line-height: 39.01px;
  text-align: left;
}

.logo_text {
  display: flex;
  align-items: center;
  margin-bottom: 0px;
  font-size: var(--font_size_textlogo);
  font-weight: 600;
}

.logo_text:hover {
  color: white;
}

.menu nav ul {
  display: inline-flex;
}

.li-navbar {
  font-family: "Montserrat", sans-serif;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
}

.navbar-user {
  color: #fff;
  font-size: var(--font_size_textblock);
  font-style: italic;

}

nav ul a {
  padding: 10px 20px;
  font-size: var(--font_size_navbar);
  font-weight: 500;
  line-height: 29.26px;
  color: #fff;
}

nav ul a:hover {
  color: #fff;
  text-decoration: none;
  opacity: .8;
}

#nav_primary {
  flex-direction: row;
  margin: 0px;
}

@media(max-width: 1024px) {
  #nav_primary {
    flex-direction: column;
    margin-bottom: 15px;
  }
}


.scrollable-container-on-small-screen {
  overflow-x: auto;
  max-width: 75vw;
  /* outline: 1px solid #aaa; */
  /* padding:15px; */
}

.scroll-outline {
  outline: 1px solid #aaa;
  /* padding:15px; */
}

@media(min-width: 1025px) {
  #nav_primary {
    display: flex !important;
  }
}

.nav_primary_as_class {
  display: flex;
  /* flex-direction: row;
  margin: 0px; */
}

/* @media(max-width: 1024px) {
  .nav_primary_as_class {
    display: none;
    margin-bottom: 15px;
  }
} */



#ul_nav_primary {
  flex-direction: row;
}

@media(max-width: 1024px) {
  #ul_nav_primary {
    flex-direction: column;
  }
}

.primary_menu_item {
  /* display: block; */
}

.primary_menu_hamburger {
  display: none;
  font-weight: bold;
}

.primary_menu_hamburger:hover {
  cursor: pointer;
}

@media(max-width: 1024px) {

  .primary_menu_hamburger {
    display: block;
  }

  #navbar_primary {
    flex-direction: column;
  }
}

@media(max-width: 1024px) {
  #nav_secondary {
    flex-direction: column;
  }
}

/* 
  BUTTON
*/

.dfts {
  background-color: #fff;
  font-size: var(--font_size_textblock);
  padding: 10px;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--border_radius_button);
}

.dfts:hover {
  opacity: .8;
}

.container_headline {
  /* font-size: 2rem; */
  font-size: var(--font_size_h2);
  font-weight: bold;
}

.container_headline_homepage {
  /* font-size: 2rem; */
  font-size: var(--font_size_h2);
  /* font-weight: bold; */
  font-weight: 500;
  margin-bottom: .5rem;
  line-height: 1.2;
}

/* homepage design */
.homepage {
  padding: 150px 0;
  position: relative;
}

.homepage-main-h1 {
  position: relative;
  margin-bottom: 40px;
  font-size: var(--font_size_h1);
}

@media all and (min-width: 992px) {
  .homepage-main-h1 {
    /* font-size: 66px; */
    font-size: var(--font_size_h1);
    font-weight: 600;
  }

  .homepage-main-h1:after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../images/title-border.png);
    background-repeat: no-repeat;
    height: 20px;
    width: 62%;
  }
}


.h1-homepage-lower {
  /* font-size: 50px; */
  font-size: var(--font_size_h1_lower);
  /* margin-bottom: 20px; */
  font-weight: bolder;
}

@media all and (min-width: 1366px) {
  .homepage-main-h1 {
    /* font-size: 65px; */
    font-size: var(--font_size_h1);
    font-weight: 700;
    line-height: 109.71px;
  }

  .homepage-main-h1:before {
    width: 999px;
  }
}

.homepage p {
  font-weight: 300;
  margin-bottom: 50px;
  margin-top: 50px;
}

@media all and (min-width: 992px) {
  .homepage p {
    font-size: 35px;
  }
}

@media all and (min-width: 1366px) {
  .homepage p {
    /* font-size: 38px; */
    font-size: var(--font_size_p_homepage);
    line-height: 46.32px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}

.dft {
  background-color: #fff;
  /* color: #236c95; */
  color: var(--color_font_main);
  font-weight: 600;
  line-height: 29.26px;
  /* border-radius: 50px; */
  border-radius: var(--border_radius_button);
  padding: 10px 20px;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  margin: auto;
  transition: 0.3 all ease-in-out;
}

.dft-menu {
  background-color: #fff;
  /* background-color: #D5EAF6; */
  /* color: #236c95; */
  color: var(--color_font_main);
  /* font: 24px; */
  font-size: var(--font_size_textblock);
  font-weight: 600;
  line-height: 29.26px;
  /* border-radius: 50px; */
  border-radius: var(--border_radius_button);
  /* padding: 10px 20px; */
  padding: 10px;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  margin: auto;
  transition: 0.3 all ease-in-out;
}

@media all and (min-width: 1366px) {
  .dft {
    /* font-size: 24px; */
    font-size: var(--font_size_textblock);
    padding: 20px 30px;
  }
}


@media all and (min-width: 1366px) {
  .dft-menu {
    /* font-size: 24px; */
    font-size: var(--font_size_textblock);
    /* padding: 20px; */
  }
}

.dft:hover,
.dft-menu:hover {
  opacity: 0.8;
}


/********************************************** register-page *************************************************/
.register-page {
  padding: 50px 0;
}

.register-page .reg-page {
  justify-content: space-around;
}

.register-page .reg-page .register-page-content {
  width: 50%;
  text-align: right;
}

.register-page .reg-page .register-page-content h1 {
  /* font-size: 70px; */
  /* font-size: 4.5rem; */
  font-size: var(--font_size_h1);
  line-height: 85.33px;
  margin-bottom: 75px;
  font-weight: 700;
}

.register-page .reg-page .register-page-content label {
  font-size: 38px;
  font-weight: 300;
  line-height: 46.32px;
  text-align: right;
}

.register-page .reg-page .register-page-content input {
  /* border-radius: 50px; */
  border-radius: var(--border_radius_button);
  padding: 10px;
  outline: 0;
  border: 0;
  font-size: 20px;
  width: 255px;
}

.register-page .reg-page .register-page-content .name {
  display: flex;
  justify-content: end;
  align-items: center;
  grid-gap: 10px;
  padding: 10px 0;
}

.register-page .reg-page .register-page-content .name:last-child {
  padding-bottom: 0;
}

.register-page .reg-page .reg-right {
  display: flex;
  justify-content: end;
  grid-gap: 20px;
  margin-top: 20px;
}

.reg-right button {
  width: 255px;
  font-size: 20px;
}

.reg-right button:hover {
  opacity: 0.8;
}

/* efopage */
/* .efopage {
  padding: 50px 0;
} */

/* .efopage .efo-content {
  max-width: 70%;
} */

/* .efopage h1 {
  font-size: 70px;
  font-size: 4.5rem;
  margin-bottom: 25px;
  text-align: end;
} */

/* .efopage p {
  font-size: 48px;
  text-align: end;
} */

/* .efopage .btn {
  margin-top: 24px;
  font-size: var(--font_size_textblock);
  justify-content: end;
  display: flex;
  grid-gap: 30px;
} */

/* .efopage .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 30px;
} */

/* */
.login-main-page {
  padding: 50px 0;
}

.login-main-page h1 {
  /* font-size: 70px; */
  /* font-size: 4.2rem; */
  font-size: var(--font_size_h1);
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 100px;
}

.login-main-page p {
  /* color: #236c95; */
  color: var(--color_font_main);
  /* font-size: 38px; */
  /* font-weight: 300; */
  font-weight: 400;
  /* max-width: 80%; */
}

.login-main-page form {
  padding: 50px 0;
}

@media(max-width: 1024px) {
  .login-main-page form {
    padding: 15px 0;
  }
}

.login-main-page label {
  font-size: var(--font_size_textblock);
  font-weight: 400;
  line-height: 46.32px;
  text-align: right;
  margin: 0 5px 0 0;
}

@media (max-width: 1366px) {
  .login-main-page label {
    text-align: left;
  }
}

.login-main-page input {
  border: 1px solid grey;
  margin: 4px;
  border-radius: var(--border_radius_button);
  padding: 15px 25px;
  outline: 0;
  width: 61.8%;
  font-size: 1.3rem;
  height: 50px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1366px) {
  .login-main-page input {
    width: 100%;
  }
}

.login-main-page .name {
  display: flex;
  align-items: end;
  grid-gap: 20px;
  padding: 10px 0;
  justify-content: end;
}

.login-main-page .name:last-child {
  padding-bottom: 0;
}

.login-main-page .btn-login {
  align-items: center;
  grid-gap: 25px;
  margin-top: 25px;
}

.justify-between {
  justify-content: space-between;
}

.btn-login .dfts {
  width: 335px;
  color: var(--color_font_main);
}

/* conact page */

/* .contact-page {
  padding: 50px 0;
} */

/* .contact-page h1 {
  font-size: 70px;
  font-size: 4.5rem;
  margin-bottom: 40px;
  font-weight: 700;
  width: 50%;
  text-align: center;
} */

/* .contact-page-detail-text {
  text-align: left;
  font-size: 38px;
  font-weight: 300;
  max-width: 80%;
  color: #fff;
} */

/* .contact-page form {
  max-width: 50%;
  padding: 50px 0;
  display: inline-block;
} */

/* .contact-page label {
  font-size: 38px;
  font-weight: 300;
  line-height: 46.32px;
  text-align: right;
  color: #fff;
} */

/* .contact-page input,
.contact-page select,
.contact-page textarea {
  border-radius: 50px;
  border-radius: var(--border_radius_button);
  padding: 15px 25px;
  outline: 0;
  border: 0;
  font-size: 24px;
  font-size: var(--font_size_textblock);
  width: 335px;
  appearance: none;
} */

/* .contact-page .name {
  display: flex;
  align-items: end;
  grid-gap: 20px;
  padding: 10px 0;
  justify-content: end;
} */

/* .contact-page .name:last-child {
  padding-bottom: 0;
} */

/* .contact-page .btn-login {
  justify-content: end;
  align-items: center;
  grid-gap: 25px;
  margin-top: 25px;
} */

/* .contact-page .btn-login button {
  height: 60px;
  border: 0;
  cursor: pointer;
} */

/* .sumsg {
  font-size: 34px;
  color: green;
} */

textarea::-webkit-scrollbar {
  display: none;
}

/* .sumsg-cont {
  max-width: 45%;
  float: right;
  background: #D6EAFC;
  background: var(--color_background_divs);
  padding: 80px;
  border-radius: 150px;
  margin-top: 150px;
} */

/* about page */
.about-page {
  padding: 50px 0;
  /* max-width: 85%; */
}

.about-page h1 {
  /* font-size: 70px; */
  font-size: 4.5rem;
  margin-bottom: 40px;
  font-weight: 700;
}

/* .about-content {
  max-width: 80%;
  justify-content: space-between;
} */

.main-input {
  width: 60%;
}

.main-input textarea {
  width: 100%;
  height: 100%;
  border: 0;
  /* border-radius: 50px; */
  border-radius: var(--border_radius_button);
  padding: 25px;
}

.main-input input:focus-visible {
  outline: none;
  border: 0;
}

.btn-section {
  width: 40%;
}

.btn-sec {
  display: flex;
  flex-direction: column;
  gap: 30px;
  /* background: #D6EAFC; */
  background: var(--color_background_divs);
  padding: 50px;
  /* border-radius: 50px; */
  border-radius: var(--border_radius_button);
}

.about-page .btn-section {
  padding: 0 50px;
}

.about-page .btn-section button:last-child {
  margin-bottom: 100px;
}

/* kondition page */
.konditionen {
  padding-bottom: 40px;

}

.konditionen .kondi {
  max-width: 70%;
}

.konditionen .form-div {
  position: relative;
}

.store-success {
  padding: 20px;
  background: var(--color_background_divs);
  text-align: center;
  max-width: 50%;
  margin: 0 auto;
  font-size: var(--font_size_textblock);
  border-radius: var(--border_radius_divs);
  color: var(--color_font_main);
  margin-bottom: 20px;
}

.store-warning {
  padding: 20px;
  background: var(--color_background_divs);
  text-align: center;
  max-width: 50%;
  margin: 0 auto;
  font-size: var(--font_size_textblock);
  border-radius: var(--border_radius_divs);
  outline: 4px solid red;
  color: var(--color_font_main);
  margin-bottom: 20px;
}

.homepage-success {
  padding: 20px;
  background: var(--color_background_divs);
  text-align: center;
  max-width: 50%;
  margin: 0 auto;
  font-size: var(--font_size_textblock);
  border-radius: var(--border_radius_divs);
  border: 2px solid #EB582D;
  font-weight: bolder;
  color: var(--color_font_main);
  margin-top: 20px;
}

.homepage-warning {
  padding: 20px;
  background: var(--color_background_divs);
  text-align: center;
  max-width: 50%;
  margin: 0 auto;
  font-size: var(--font_size_textblock);
  border-radius: var(--border_radius_divs);
  border: 4px solid red;
  color: var(--color_font_main);
  margin-top: 20px;

  font-weight: bolder;
}

.notif-success {
  padding: 20px;
  background: var(--color_background_divs);
  text-align: center;
  max-width: 50%;
  margin: 0 auto;
  font-size: var(--font_size_textblock);
  border-radius: var(--border_radius_divs);
  color: var(--color_font_main);
  margin-bottom: 40px;
}

.notif-info {
  padding: 20px;
  background: var(--color_background_divs);
  text-align: center;
  max-width: 50%;
  margin: 0 auto;
  font-size: var(--font_size_textblock);
  border-radius: var(--border_radius_divs);
  color: var(--color_font_main);
  margin-bottom: 40px;
}

.banner {
  padding: 20px;
  background: var(--color_background_divs);
  text-align: left;
  max-width: 69%;
  margin: 0 auto;
  font-size: var(--font_size_textblock);
  border-radius: var(--border_radius_divs);
  color: var(--color_font_main);
  margin-bottom: 40px;
}

.konditionen .kondi h1 {
  text-align: right;
  font-family: "Montserrat-Bold", sans-serif;
  /* font-size: 70px; */
  font-size: 4.5rem;
  font-weight: 700;
  position: relative;
  padding-top: 85px;
  padding-bottom: 50px;
}

.konditionen form {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-bottom: 50px;
  gap: 5px;
  max-width: 75%;
}

.konditionen label {
  font-size: 30px;
  font-weight: 300;
  line-height: 46.32px;
  text-align: right;
}

.konditionen input {
  /* border-radius: 50px; */
  border-radius: var(--border_radius_input);
  padding: 10px;
  outline: 0;
  border: 0;
  font-size: 20px;
}

.konditionen .name {
  display: flex;
  justify-content: end;
  align-items: center;
  grid-gap: 10px;
  padding: 10px 0;
}

.konditionen .name:last-child {
  padding-bottom: 0;
}

.konditionen .third-input .btn {
  padding: 10px 15px;
  font-size: 20px;
}

.error {
  color: red;
}

.error li {
  line-height: 28px;
  /* font-size: 24px; */
  font-size: var(--font_size_textblock);
  padding: 10px 0;
}

.background-none {
  background: none;
}

.email-error {
  text-align: right;
}



.login-box .card-body form {
  max-width: 50%;
  padding: 50px 0;
}

.ml-0 {
  margin-right: 0 !important;
}

/* Disable scrolling */
body.noscroll {
  overflow: hidden;
  /* overflow-y: scroll; */
}

/* Styles for the popup */
.popup {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: scroll;
}

.popup-content {
  margin: 15% auto;
  max-width: 500px;
  position: relative;
}

.close-btn {
  color: #ffffff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  right: 50px;
}

.akkordeon_headline {
  display: inline-block;
  padding: 10px 20px;
  cursor: pointer;
  /* font-size: larger;
  font-weight: 600; */
  /* font-size: 1.7rem; */
  font-size: var(--font_size_h2);
  font-weight: bold;
}

.akkordeon_headline_konditionen {
  display: inline-block;
  padding: 10px 20px;
  cursor: pointer;
  /* font-size: larger; */
  /* font-weight: 600; */
  /* text-decoration: underline; */
}

.akkordeon_headline .akkordeon_out {
  background-color: #007BFF;
  color: white;
}

.akkordeon_textfeld {
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding-left: 45px;
  padding-right: 20px;
  max-width: 75ch;
}

.akkordeon_in {
  max-height: 0;
}

/* @media responsive */
.faq-container {
  flex-wrap: wrap;
  padding: 20px;
  background: var(--color_background_divs);
  text-align: left;
  margin: 0 16% 0 7%;
  font-size: var(--font_size_textblock);
  border-radius: var(--border_radius_divs);
  color: var(--color_font_main);
  margin-bottom: 40px;
}

@media (max-width: 1366px) {
  .faq-container {
    margin: 0 7% 0 7%;
  }
}

.hr-faq {
  border: 1px solid #236c95;
  width: 100%;
}

.faq-syndromfolge {
  margin: 30px;
  padding: 5px;
}

.td-führt-zu {
  min-width: 50px;
  text-align: center;
}

.faq-kaskade,
.faq-kaskade-nested {
  text-align: center;
  table-layout: fixed;
  /* width: 100%; */
}

.faq-kaskade-thead {
  border: 1px solid black;
}

.faq-am {
  background-color: light-dark(#AED1EF, #AED1EF);
  border: 1px solid grey;
  min-width: 15ch;
}

.faq-häufigkeit {
  background-color: light-dark(#FFF2CC, #FFF2CC);
  border: 1px solid grey;
}

.faq-syndrom {
  background-color: light-dark(#FED7A8, #FED7A8);
  border: 1px solid grey;
}

.simple-table {
  border: 1px solid black;
  text-align: center;

}

.td-w-border {
  border: 1px solid black;
  min-width: 13ch;
  padding: 5px;
}

.faq-list {
  list-style-type: circle;
  list-style-position: outside;
  margin-left: 35px;
  padding: 0;
}

.ul-quellen {
  margin-bottom: 0px;
  border: 0!important;
  padding: 0;
  /* overflow-y: scroll; */
  /* height: 20vh; */
  text-align: left;
}

@media(max-width: 720px) {
  .faq-list {
    margin-left: 0px;
  }
}


.faq-list-item-no-ind {
  list-style-type: none;
  list-style-position: outside;
  margin-left: 35px;
  padding: 0;
}

.ordered-list-jur {
  list-style-type: decimal;
  list-style-position: outside;
  margin-left: 35px;
  padding: 0;
}

.faq-list-item {
  margin-left: 35px;
}

.ordered-list-item-jur {
  margin-left: 35px;
  list-style-type: decimal;
}

.td-text-align-right {
  text-align: right;
  padding-left: 5ch;
}

.td-text-align-left-margin {
  text-align: left;
  padding-left: 3ch;
}

.td-grey-border {
  border: 1px solid grey;
}

.td-black-border {
  border: 1px solid black;
  padding: 5px;
}

.td-black-border-bottom {
  border-bottom: 1px solid black;
}

.td-grey-border-bottom {
  border-bottom: 1px solid grey;
}

.faq-possible {
  text-decoration: underline;
  padding-right: 2ch;
  vertical-align: top;
  min-width: 19ch;
}

.faq-stand {
  text-align: right;
  font-style: italic;
  padding-right: 2ch;
}

.link-text {
  color: rgb(35, 108, 149);
  font-weight: bolder;
}

.faq-list-item-dot {
  margin-left: 35px;
  list-style-type: circle;
}

.faq-list-item-alphabet {
  margin-left: 35px;
  list-style-type: lower-alpha;
}


.notif-register-redirect {
  outline: 5px solid red;
  font-weight: bolder;
  padding: 20px;
  text-align: center;
  width: 70%;
  margin: 0 auto;
  font-size: var(--font_size_textblock);
  border-radius: var(--border_radius_divs);
  color: var(--color_font_main);
  margin-bottom: 40px;
}

#quellen_space {
  padding: 10px;
}

.li-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* line-height: 1.2; */
}

footer {
  width: 100%;
  /* position: absolute; */
  margin-top: 50px;
  min-height: 100px;
  bottom: 0px;
  justify-content: center;
}

.ul-footer {
  margin-bottom: 0px;
  justify-content: center;
  align-items: center;
}

.a-footer {
  color: var(--color_font_link_footer);
  font-size: var(--font_size_navbar);
  font-weight: 500;

}

.a-footer:hover {
  color: var(--color_font_link_footer_hover_lighter);

}

.a-Konditionen {
  color: var(--color_font_link_footer);
  font-weight: 500;
  text-decoration: underline;

}

.a-Konditionen:hover {
  color: var(--color_font_link_footer_hover_darker);
  text-decoration: underline;
}



.a-navbar {
  padding: 1ch;
  display: flex;
  align-items: center;
  height: 100%;
  font-size: var(--font_size_navbar);

}

@media(max-width: 1024px) {
  .a-navbar {
    padding: 0.3ch;

  }
}

.a-navbar:hover {
  color: white;
  opacity: 0.8;
}

.a-navbar-active {
  border-bottom: 7px solid rgb(253, 216, 53);
  box-sizing: border-box;
}

.div-navbar-placeholder {
  width: 90%;
  padding: 0px;
}

@media(max-width: 1024px) {
  .div-navbar-placeholder {
    margin-bottom: 15px;

  }
}

.div-navbar-active {
  outline: 4px solid rgb(253, 216, 53);
}

/* BREAK TO ROW ON SMALLER SCREEN */
.even-columns {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  width: 100%;

}

@media (max-width: 720px) {
  .even-columns {
    display: contents;
  }
}

.even-columns_never_break {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  width: 100%;
}

@media (max-width: 1366px) {
  .even-columns {
    grid-auto-flow: row;
  }
}

.even-columns-banner {
  display: flex;
  justify-content: space-between;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  width: 100%;
}

@media (max-width: 1366px) {
  .even-columns-banner {
    flex-direction: column-reverse
  }
}

.even_columns_gap {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  width: 100%;
  gap: 25px;
}

.homepage-p {
  font-size: var(--font_size_textblock);
  padding: 2rem;
  background: var(--color_background_divs);
  margin: 2rem;
  border-radius: var(--border_radius_divs);
  color: var(--color_font_main);
}

@media (max-width: 720px) {
  .homepage-p {
    font-size: var(--font_size_textblock);
    padding: 1rem;
    background: var(--color_background_divs);
    margin: 1rem;
    border-radius: var(--border_radius_divs);
    color: var(--color_font_main);
  }
}

.homepage-p_klein {
  font-size: var(--font_size_textblock);
  padding: 2rem;
  background: var(--color_background_divs);
  margin: 2rem;
  border-radius: var(--border_radius_divs);
  color: var(--color_font_main);
}

@media(max-width: 1024px) {
  .homepage-p_klein {
    padding: 0.8rem;
  }
}

.homepage-div-container {
  margin-top: 10rem;
  /* min-height: 70vh; */
}

.homepage-contact-label {
  font-size: var(--font_size_textblock);
  margin: 0 5px 0 0;

  text-align: right;
  align-content: center;
}

@media (max-width: 1366px) {
  .homepage-contact-label {
    text-align: left;
  }
}

.homepage-contact-input {
  padding: 4px 25px;
  border-radius: var(--border_radius_input);
  margin: 5px;
  width: 100%;
  border: 1px solid grey;
  outline: 0;
  font-size: var(--font_size_textblock);
}

/* .homepage-sumsg-cont {
  border: 2px solid grey;
  padding: 20px;
  border-radius: 35px;
  margin: 20px;
} */

:target {
  scroll-margin-top: 100px;
  /* Höhe des Sticky Menüs */
}

.div-invalid-feedback {
  width: 100%;
  margin-top: .25rem;
  font-size: 80%;
  color: #DC3545;
}



.div-invalid-feedback-wrapper {
  text-align: right;
}

.div_pflichtfelder_hinweis {
  color: black;

  font-size: var(--font_size_hinweis_pflichtfeld);
  text-align: right;
}

.center_element {
  display: flex;
  justify-content: center;
  align-content: center;
}

/* 
@media(max-width: 1024px) {
  .center_element {
    display: contents;
  }
} */

.center_element_overflowing {
  display: flex;
  /* justify-content: center; */
  align-content: center;
}


.center_element_no_matter_the_screensize {
  display: flex;
  justify-content: center;
  align-content: center;
}


.center_element_workflow_faq {
  /* display: flex; */
  justify-content: center;
  align-content: center;
}

.h_main_site {
  color: white;
  padding-left: 2.1%;
  font-size: 4.5rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.div_login_maske {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  background: var(--color_background_divs);
  text-align: left;
  /* margin: 0 16% 0 16%; */
  max-width: 69%;
  font-size: var(--font_size_textblock);
  border-radius: var(--border_radius_divs);
  color: var(--color_font_main);
  margin-bottom: 40px;
}

@media(max-width: 1366px) {
  .div_login_maske {
    max-width: 84%;
  }
}

@media(max-width: 1024px) {
  .div_login_maske {
    max-width: 90%;
  }
}

@media(max-width: 720px) {
  .div_login_maske {
    max-width: 96%;
  }
}

@media(max-width: 480px) {
  .div_login_maske {
    max-width: 98%;
  }
}

.div_login_maske_wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 0px;
  text-align: left;
  max-width: 68%;
  font-size: var(--font_size_textblock);
  border-radius: var(--border_radius_divs);
  color: var(--color_font_main);
  margin-bottom: 40px;
}

.div_login_maske_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  background: var(--color_background_divs);
  text-align: left;
  font-size: var(--font_size_textblock);
  border-radius: var(--border_radius_divs);
  color: var(--color_font_main);
  margin-bottom: 40px;
}

.div_maske_row {
  width: 100%;
  padding: 5px;
}

.form_login_maske {
  width: 100%;
}

.div_input_maske {
  text-align: right;
  margin: 0 15px 0 0;
  align-content: center;
}

.div_input_maske {
  margin: 0;
}

.min_height_1_2_rem {
  min-height: 1.2rem;
}

.div_invalid_feedback_login {
  margin-bottom: .25rem;
  font-size: 80%;
  color: #dc3545;
  text-align: left;
  padding-left: 10px;
}

.a_login_register_link {
  color: var(--color_font_link_footer_hover_darker);
  font-size: 1rem;
}

.a_login_register_link:hover {
  color: var(--color_font_link_footer_hover_lighter);
}

.div_login_register_link {
  text-align: right;
}

.button_input_login_maske {
  /* width: 335px; */
  /* text-align: center; */
  /* justify-self:left; */
  background-color: white;
}



.input_login_maske {
  outline: 1px solid grey;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset;
  box-shadow: 0 0 0 1000px white inset;
  -webkit-text-fill-color: black;
  /* Optional, um Textfarbe zu ändern */
}

.form-control-invalid-input {
  padding-right: calc(1.5em + .75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(.375em + .1875rem) center;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.textarea_kontakt {
  min-height: 2.5rem !important;
}

.p_konditionen_info {
  width: 100%;
  font-size: var(--font_size_textblock);
  font-weight: 400;
}

.footer-main {
  margin-top: 50px;
  bottom: 0px;
}

.link-jur {
  text-decoration: underline;
  color: #777;
}

.link-jur:hover {
  text-decoration: underline;
  color: black;
}

.homepage-workflow {
  font-size: 1rem;
  width: 100%;
  text-align: center;
}

.homepage-workflow-io {
  background-color: #AED1EF;
  outline: 1px solid #999;
  border-radius: 10px;
  font-size: var(--font_size_textblock);
  font-weight: 600;
}

.homepage-workflow-a-box {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  min-height: var(--min_height_wrkflow);
}

.dot {
  display: flex;
  height: 11.5rem;
  width: 11.5rem;
  border: 1px solid #999;
  background-color: #AED1EF;
  border-radius: 50%;
  font-size: var(--font_size_textblock);

  vertical-align: middle;
  align-items: center;
  justify-content: center;
}

@media(max-width: 1024px) {
  .dot {
    height: 8rem;
    width: 8rem;
  }
}

@media(max-width: 480px) {
  .dot {
    height: 5rem;
    width: 5rem;
  }
}

.homepage-workflow-a-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem;
}

@media(max-width: 1024px) {
  .homepage-workflow-a-wrapper {
    margin: 1.2rem;
  }
}

@media(max-width: 480px) {
  .homepage-workflow-a-wrapper {
    margin: 0.7rem;
  }
}

.homepage-workflow-a-box-unbordered-big {
  width: 42%;
  min-height: var(--min_height_wrkflow);
  margin: 10px;
  outline: 1px solid #999;
  border-radius: 40px;


}

.homepage-workflow-a-box-unbordered {
  /* display:flex; */
  width: 6%;
  min-height: var(--min_height_wrkflow);
  margin: 10px;
}

.div-workflow-middle {
  display: flex;
  min-height: var(--min_height_wrkflow);
  justify-content: space-around;
  flex-direction: column;
}

.workflow-arrow {
  font-size: 1.7rem;
}

.workflow-link-faq {
  font-size: 1rem;
  color: rgb(35, 108, 149);
  font-style: italic;
  font-size: var(--font_size_textblock);
}

.workflow-link-faq:hover {

  color: rgb(35, 108, 149);
  font-style: italic;
  text-decoration: underline;
}

.hand_on_hover:hover {
  cursor: pointer;
}



.column_slide {
  padding: 20px;
  background: var(--color_background_divs);
  font-size: var(--font_size_textblock);
  border-radius: var(--border_radius_divs);
  color: var(--color_font_main);
  margin-bottom: 40px;
  min-height: 28ch;
}

/* Ab max-width: 768px soll das Layout anders sein (also für Desktop größer) */
@media (min-width: 1367px) {
  #slideshow_container {
    display: none;
    /* Slideshow auf großen Bildschirmen deaktivieren */
  }

}

/* --media_size_tablet_min: 1367px;
--media_size_tablet_max: 1366px; */

/* Ab max-width: 768px soll das Layout anders sein (also für Desktop größer) */
@media (max-width: 1366px) {
  #three_cols_desktop {
    display: none;
  }

}

/* Fortschrittsbalken */
.progress-bar {
  position: relative;
  width: 100%;
  height: 8px;
  background-color: #ddd;
  bottom: 0px;
  border-radius: 5px;
}

.progress-fill {
  position: absolute;
  width: 0;
  height: 100%;
  background-color: rgb(35, 108, 149);
}

.single_slide_container {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  min-height: 24ch;
  justify-content: space-between;
}

#too_many_requests {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.too_many_requests_inner {
  width: 35%;
  border: 5px solid orange;
  border-radius: var(--border_radius_divs);
  /* font-size: larger; */
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin: 20px;
}

.user_tabelle_links {
  margin: 5px;
  text-align: right;
  font-weight: 600;
}

.user_tabelle_rechts {
  margin: 5px;
  text-align: left;
}

.faq-element {
  width: 100%;
}



.tooltip_syndrom_homepage {
  position: relative;
  /* display: inline-block; */
  /* border-bottom: 1px dotted black; */
  min-width: 7ch;
}

.tooltip_syndrom_homepage .tooltiptext_syndrom_homepage {

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top: 2.5rem;
  left: -50%;
  left: -7.5ch;

  visibility: hidden;
  width: 20ch;
  background-color: var(--color_syndrom_tooltip);
  color: #000;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  border: 1px solid #999;


}

.tooltip_syndrom_homepage:hover .tooltiptext_syndrom_homepage {
  visibility: visible;
}

.tooltip_syndrom_homepage .tooltiptext_syndrom_homepage::after {
  content: " ";
  position: absolute;
  top: -5px;
  right: 10ch;
  /* To the left of the tooltip */
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;

  border-color: transparent var(--color_syndrom_tooltip) transparent transparent;
  border-color: transparent transparent #999 transparent;
}

.underline_dotted {
  text-decoration: underline dotted;
  text-underline-offset: 0.3em;
}