html {
  scroll-behavior: smooth;
}


body {
    color: #000000;
    letter-spacing: 1px;
}

#scroll-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    padding-top: 2px;
    background-color: #579fad;
    color: #fff;
    text-align: center;
    font-size: 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color .3s, opacity .5s, visibility .5s;
    transition: 0.3s;
    z-index: 1;
    }
    
#scroll-to-top:hover {
	color: #2f4d76;
	background-color: #82c0d7;
}



/* anfang kalender ernaehrung */

.ernaehrung-table {
    border-collapse: separate;
    border-spacing: 10px;
    background-color: #f9f9f9;
	width: 90%;
}

.ernaehrung-table th, .ernaehrung-table td {
    padding: 10px;
    text-align: right;
}

.ernaehrung-table th {
    color: #254c77;
}

.kalenderliste	{
	padding-top: 10px;
	padding-bottom:60px;
	color:#254c77;
	font-size: 0.8rem;
}

.aktiv {
    color: #9fc1c3;
    background-color: #254c77;
}

.bereich {
    height: 0;
    overflow: hidden;
    transition: height 2s ease; /* Smooth transition */
}
.bereich.offen {
    height: auto; /* Wird durch JavaScript auf die richtige Höhe gesetzt */
}

.collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.collapsible.open {
    max-height: 100px; /* Passe diese Höhe an */
}


.arial	{
  font-family: arial;
}


/* -------------- progress bar ----------------------- */

.progress-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 55vw;
  position: relative;
  margin: 20px auto;
}

.progress-bar {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 100%;
  height: 4px;
  background-color: #2c5779; /* dunkles Blau */
  transform: translateY(-50%);
  z-index: 0;
}

.step {
  width: 60px;
  height: 60px;
  background-color: #9fc1c3; /* Grünlich */
  color: #2c5779;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 1;
}

.step_active {
  background-color: #d2e6de;
  color: #002a5e;
}


/* -------------------   ADMEDINO --------------------------------- */

.leckerli-one-regular {
  font-family: "Leckerli One", cursive;
  font-weight: 400;
  font-style: normal;
}


.font-karriereblau	{
	color: #1397db;
}



.square-image {
  width: 100%;
  padding-top: 100%; /* 1:1 seitenverhältnis */
  background-size: cover;
  background-position: center;
  border-radius: 0px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.quadrat {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 5px;
}

.legende {
  display: flex;
  align-items: center;
  gap: 8px; /* Abstand zwischen Quadrat und Text */
  margin-bottom: 4px;
}

.aktiv-eltern {
    color: #254c77;
    background-color: #9fc1c3;
}

.aktiv-admedino {
    color: #FFFFFF;
    background-color: #1397db;
}



/* ---------------------- timeline ---------------------------- */

.timeline {
  position: relative;
  max-width: 80vw;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #9fc1c3;; /* deine Timeline-Farbe */
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.timeline-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.timeline-item.show {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 30px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #9fc1c3;;
  border: 0px solid white;
  /* box-shadow: 0 0 0 2px #90e0e0; */
  z-index: 1;
}

.timeline-item.left::before {
  right: -8px;
}

.timeline-item.right::before {
  left: -8px;
}

.timeline-content {
  padding: 5px 10px;
}

.date {
  color: #9fc1c3;;
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
}


/* ------------------ende timeline ---------------------------- */

/* ------------------ slider ************************************/

.slider-container {
      height: 38vw;
      background-size: cover;
      background-position: right;
      transition: background-image 1s ease-in-out;
      position: relative;
    }


.slider-wrapper {
      position: relative;
      width: 100%;
      height: 38vw;
      overflow: hidden;
    }

    .slider-layer {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: right;
      transition: opacity 1s ease-in-out;
      z-index: 0;
    }

    .slider-layer.top {
      z-index: 1;
      opacity: 0;
    }

    .slider-content {
	  position: absolute;
	  top: 0;
	  left: 0;
	  padding: 2vw;
	  z-index: 2;
	}




/* --------------ende slider ************************************/


#arrow {
    transition: transform 0.5s ease; /* Smooth rotation */
}
#arrow.drehen {
    transform: rotate(180deg); /* Dreht den Pfeil um 180 Grad */
}

.kalender_row	{
	padding-left:15px; 
	padding-right:75px;
}

/* ende kalender ernaehrung */

/** hand und mobil
.unsichtbar_desktop	{display: inline;}
.unsichtbar_handy	{ display: inline;}

*/

.left	{
	text-align: left;
}

.right	{
	text-align: right;
}

 .br-mobile {
            display: none;
        }


.littleMenu, .littleMenu_2023 {
    padding-top: 10px;
}

.logo	{
	width: 15vw;
	height: auto;
	padding-bottom: 20px;
}

.login	{
	width: 300px;
	height: auto;
	padding: 20px;
	font-size: 0.8em;
}

.container		{
    width:85vw;
    max-width:85vw;
}

.container_60		{
    width:60vw;
    max-width:60vw;
    margin-right: auto;
	margin-left: auto;
}

.container_small		{
    width:50vw;
    max-width:50vw;
    margin-right: auto;
	margin-left: auto;
}

.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #FFF;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  margin-bottom: 20px;
  border-radius: .25rem;
  appearance: auto;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  z-index: 99999;
}


.form-control_labor {
  display: block;
  width: 66%;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  background-color: #FFF;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  margin-bottom: 20px;
  border-radius: .25rem;
  appearance: auto;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  height: 60px;
  margin-top: 8vh;
  text-align: center;
}

.foto_hochformat	{
	height: 100%;
	width:auto;
}

.unsichtbar_desktop	{
	display: none;
}


.auswahlkaestchen {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  padding-left:5px;
}


.ueberschrift_gross		{
	font-weight: bolder;
	font-size: 4rem;
}


.kalenderwoche	{
  font-size: 2rem;
}


.chirurgie_portrait	{
  min-height:30vw;
}
	
.overlay-text {
   position: absolute;
     bottom: 20%;
     color: white;
     border-radius: 0rem;
     white-space: nowrap;
} 

.overlay-highlight {
     background-color: #1397db; /* Ersetze durch deinen gewünschten Hexcode */
     padding: 0.4rem 0.4rem 0.4rem 0.8rem;
	 display: inline;
	 line-height: 3rem;
}

.overlay-text-center {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  color: #FFFFFF;
  text-align: center;
  white-space: nowrap;
} 

.karriere-box {
      background: transparent;
      border: 1px solid white;
      width: 90%;
      min-height: 30vh;
      margin: 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      color: white;
      text-align: center;
      overflow: visible; 
    }

    .karriere-icon-circle-1 {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      position: absolute;
	  top: 0;
	  transform: translateY(-50%); /* <<< neu: halb nach oben verschoben */
      background-color: #1397db;
    }
    
    .karriere-icon-circle-2 {
      width: 80px;
      height: 80px;
      border: 2px solid white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      position: absolute;
      font-size: 2rem;
    }

    .karriere-label {
      margin-top: 2.5rem;
      font-size: 1rem;
      font-weight: bold;
    }

.image-container {
      position: relative;
      height: 20vh;
      padding-top: 150%; /* Verhältnis für Hochformat */
      background-size: cover;
      background-position: center;
    }

/* ---------- psyhologie ------------ */


<div id="preload">
	<img src="path/image-01.png" width="1" height="1" alt="Image 01" />
	<img src="path/image-02.png" width="1" height="1" alt="Image 02" />
	<img src="path/image-03.png" width="1" height="1" alt="Image 03" />
</div>

#preload {display: none}


.rechts	{
	text-align:right;
}


.gruen	{

	background: url(/files/admedia.de/content/images/psychologische_beratung/psychologie_gruen_2.jpg);
	background: url(/files/admedia.de/content/images/psychologische_beratung/psychologie_gruen.jpg);
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center; height:30vw;
}

.gruen:hover	{

	background: url(/files/admedia.de/content/images/psychologische_beratung/psychologie_gruen_2.jpg); 
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center; height:30vw;
	transition: background 300ms linear;
    -webkit-transition: background 300ms linear;
    -ms-transition: background 300ms linear;
    -o-transition: background 300ms linear;
    -ms-transition: background 300ms linear;
}


.gelb	{

	background: url(/files/admedia.de/content/images/psychologische_beratung/psychologie_gelb.jpg); 
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center; height:30vw;
}

.gelb:hover	{

	background: url(/files/admedia.de/content/images/psychologische_beratung/psychologie_gelb_2.jpg); 
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center; height:30vw;
	transition: 0,5s;
}

.rot	{

	background: url(/files/admedia.de/content/images/psychologische_beratung/psychologie_rot.jpg); 
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center; height:30vw;
}

.rot:hover	{

	background: url(/files/admedia.de/content/images/psychologische_beratung/psychologie_rot_2.jpg); 
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center; height:30vw;
	transition: 0,5s;
}

.psychologie	{
	padding-top: 22vw;
}

.50_foto	{
	min-height:35vw;
}


/* -------- FAQ ---------------------- */

.card-header {
  padding: .5rem 1rem;
  margin-bottom: 0;
  background-color: #eaf2f3;
  border-bottom: 0px;
  padding-left: 10vw;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 0px;
  border-top: 5px solid #fff;
  border-radius: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
  padding-left: 12vw;
  padding-right: 12vw;
  text-align:left;
  color:#555555;
  font-size:0.9rem;
}

.card-body .li {
	padding-left: 30px;
}


.btn-link {
  color: #254c77;
}

.btn-link:hover {
  color: #0a58ca;
}

.btn:hover {
  color: #212529;
}

.btn-link {
  font-weight: 400;
  color: #0d6efd;
  color: #254c77;
  text-decoration: none;
}

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-decoration: none;
  vertical-align: middle;
  background-color: transparent;
  border: 0px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  border-radius: 0;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(13,110,253,.25);
}


.logo_startseite {
    width: 17vw;
    height: auto;
    padding-bottom: 20px;
    padding-left: 4%;
}

.logo_startseite_move {
    width: 7vw;
    height: auto;
    padding-bottom: 20px;
    padding-left: 4%;
    padding-top: 12px; 
    margin-left:100px;
}

a	{
	text-decoration: none;
	color: #2f4d76;
}

.empty	{
	color: #999999;
}


.mod_search .input-group {
    width: 24.5%;
    float: right;
    padding-top: 30px;
}

.btn-primary {
    color: #ffffff;
    background-color: #f59c00;
    border-color: #f5b300;
}

.btn-primary:hover	{
	background-color: #f5b300;
	border-color: #f59c00;
}

.footer_nav	{
		
	background-color: #CCCCCC;
	background-color: #9fc1c3;
	padding-top: 50px;
	padding-bottom: 50px;
}


.container_footer	{
	width: 100%;
}



 .fotorecover {
		min-height: 30vw;
 }



.width_50	{
	width: 50%;
}

.karrieremovie	{
	width:70%;
}

.move	{
	width:100vw;
}

.width_80	{
	margin-left: 10%;
	margin-right: 10%;
}

.textblock	{
	text-align: justify; 
	width: 80%; 
	margin-left: 10%; 
	padding-bottom: 0px;
}

.jusify_desktop	{
	text-align: justify; 
}

.klein	{
	color: #444444;
	font-size: 0.75em;
    line-height: 1.6;
}


.big	{
	font-size: 4em;
}


.footer_1 a	{
	color:#FFFFFF;
	line-height: 2em;
	font-size: 0.8em;
	margin-bottom: 30px;
}

.footer_1 .active	{
	color:#254c77;
	line-height: 2em;
	font-size: 0.9em;
	margin-top: 0px;
}

.footer_1 a:hover	{
	color:#254c77;
}

.footer_2 a	{
	color:#254c77;
	color:#FFFFFF;
	line-height: 2em;
	font-size: 0.8em;
}

.footer_2 .active	{
	color:#254c77;
	line-height: 2em;
	font-size: 0.9em;
	margin-top: 0px;
}

.footer_2 a:hover	{
	color:#FFFFFF;
	color:#254c77;
}

.mod_article {
    overflow: hidden;
    padding-top: 60px;
    padding-bottom: 20px;
}

.articleHeader .container-fluid {
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 40vw;
}

.articleHeader_karriere .container-fluid {
  background-size: cover;
  background-repeat: no-repeat;
  height: 49vw;
}

.articleHeader_karriere_2 .container-fluid {
  background-size: cover;
  background-repeat: no-repeat;
  height: auto;
}


.rahmen_links	{
	border-left: 5px solid #fff;
}


.fliesstext	{
	 text-align: justify; 
	 width: 80%; 
	 margin-left: 10%; 
	 padding-bottom: 0px;
}

.fliesstext_titel	{
	 text-align: center; 
	 width: 80%; 
	 margin-left: 10%; 
	 padding-bottom: 0px;
}

/*  --------------- laschen ---------------- */

.shop {
    position: fixed;
    top: 0px;
    right: 25.5%;
    padding-top: 5px;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #2f4d76;
    background-color: #f59c00;
    background-color: #2f4d76;
    border-radius: 0px 0px 5px 5px;
    color: #FFFFFF;
    z-index: 2;
}

.shop:hover	{
    background-color: #3e9be9;
    padding-bottom: 20px;
    transition: 0.5s;
}

.shop_2023 {
    position: absolute;
	/*	top: 30vw; allgemein  */
	top: 30vw; /* weihnachten  */
	right: 0px;
	/*	background-color: #f59c00;	/*  silvester  */
	background-color: #2f4d76;
	padding: 22px 20px 10px 30px;
	border-radius: 40px 0px 0px 40px;
	color: #FFFFFF;
	font-size: 2em;
	z-index: 2;
	transition: 0.5s;
}

.shop_2023:hover	{
    background-color: #3e9be9;
    padding-right: 40px;
    transition: 0.5s;
}



.praxis_online {
    position: fixed;
	top: 14vw;
	right: 0px;
	background-color: #f59c00;
	background-color: #2c5779;
	padding: 22px 20px 10px 30px;
	border-radius: 40px 0px 0px 40px;
	color: #FFFFFF;
	font-size: 1em;
	z-index: 2;
	transition: 0.5s;
}

.praxis_online:hover	{
    background-color: #3e9be9;
    padding-left: 50px;
    transition: 0.5s;
}


.achtsamkeit_online {
    position: fixed;
	top: 14vw;
	right: 0px;
	background-color: #f59c00;
	background-color: #82c0d7;
	background-color: #24aadb;
	padding: 22px 20px 10px 30px;
	border-radius: 40px 0px 0px 40px;
	color: #FFFFFF;
	font-size: 1em;
	z-index: 2;
	transition: 0.5s;
}

.achtsamkeit_online:hover	{
    background-color: #3e9be9;
    padding-left: 50px;
    transition: 0.5s;
}


.orange_online {
    position: fixed;
	top: 14vw;
	right: 0px;
	background-color: #f59c00;
	background-color: #82c0d7;
	background-color: #f59c00;
	padding: 22px 20px 10px 30px;
	border-radius: 40px 0px 0px 40px;
	color: #FFFFFF;
	font-size: 1em;
	z-index: 2;
	transition: 0.5s;
}

.orange_online:hover	{
    background-color: #82c0d7;
    padding-left: 50px;
    transition: 0.5s;
}

.blau_online {
    position: fixed;
	top: 14vw;
	right: 0px;
	background-color: #f59c00;
	background-color: #82c0d7;
	background-color: #254c77;
	padding: 22px 20px 10px 30px;
	border-radius: 40px 0px 0px 40px;
	color: #FFFFFF;
	font-size: 1em;
	z-index: 2;
	transition: 0.5s;
}

.blau_online:hover	{
    background-color: #82c0d7;
    padding-left: 50px;
    transition: 0.5s;
}


.hellblau_online {
    position: fixed;
	top: 14vw;
	right: 0px;
	background-color: #f59c00;
	background-color: #82c0d7;
	background-color: #254c77;
	background-color: #9fc1c3;
	padding: 22px 20px 10px 30px;
	border-radius: 40px 0px 0px 40px;
	color: #FFFFFF;
	color: #254c77;
	font-size: 1em;
	z-index: 2;
	transition: 0.5s;
}

.hellblau_online:hover	{
    background-color: #82c0d7;
    padding-left: 50px;
    transition: 0.5s;
}





#praxis_online {
    position: fixed;
	top: 14vw;
	right: 0px;
	background-color: #f59c00;
	background-color: #2c5779;
	padding: 22px 20px 10px 30px;
	border-radius: 40px 0px 0px 40px;
	color: #FFFFFF;
	font-size: 1em;
	z-index: 2;
	transition: 0.5s;
}

#praxis_online:hover	{
    background-color: #3e9be9;
    padding-left: 50px;
    transition: 0.5s;
}


.icon_lasche	{
	width:80px;
	padding-top:20px;
}


#dr_klapper {
    position: fixed;
	top: 222px;
	right: 0px;
	background-color: #000000;
	padding: 30px 30px 30px 30px;
	border-radius: 0px 0px 0px 0px;
	color: #FFFFFF;
	font-size: 1em;
	line-height: 1.5;
	z-index: 2;
	transition: 0.5s;
	width: 25vw;
}


.standortmenue	{
	position: fixed;
	top: 0px;
	left:8vw;
}


.lasche_chemnitz, .lasche_freiberg, .lasche_plauen, .lasche_waldenburg, .lasche_grau {
    padding-top: 10px;
    width: 7vw;
    padding-bottom: 15px;
    border-radius: 0px 0px 5px 5px;
    color: #FFFFFF;
    font-size: 0.7vw;
    z-index: 2;
}


.lasche_chemnitz	{
	background-color: #2c5779;
}

.lasche_freiberg {
	background-color: #9fc1c3;
}

.lasche_plauen {
	background-color: #8dbfb4;
}

.lasche_waldenburg {
	background-color: #82c0d7;;
}

.lasche_grau {
	background-color: #F7F7F7;
	color: #2c5779;
}



.lasche_chemnitz:hover, .lasche_freiberg:hover, .lasche_plauen:hover, .lasche_waldenburg:hover, .lasche_grau:hover	{
    background-color: #EFEFEF;
    transition: 0.5s;
}






/*  ----------- ende laschen ---------------- */



.covid {
    position: fixed;
    top: 0px;
    right: 33%;
    padding-top: 5px;
    padding-left: 30px;
    padding-right: 30px;
    background-color: #2f4d76;
    background-color: #f59c00;
    background-color: #2f4d76;
    border-radius: 0px 0px 5px 5px;
    color: #FFFFFF;
    z-index: 2;
}

.covid:hover	{
    background-color: #3e9be9;
    padding-bottom: 20px;
    transition: 0.5s;
}




.job_links	{
	padding-left: 8%;
}

.job	{
	margin-top: 40px;
	margin-bottom: 30px;
}

#button.show {
    opacity: 1;
    visibility: visible;
}
#button:hover {
    cursor: pointer;
    background-color: #579fad;
}
#button {
    display: inline-block;
    background-color: #2f4d76;
    width: 35px;
    height: 35px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 60px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}



/* --------------------------------  Accordeon   ------------------------------------- */

.panel-heading {
  padding: 0;
	border:0;
}
.panel-title>a, .panel-title>a:active{
	display:block;
	padding:15px;
	color:#555;
	font-size:16px;
	font-weight:bold;
	text-transform:uppercase;
	letter-spacing:1px;
	word-spacing:3px;
	text-decoration:none;
}
.panel-heading  a:before {
   font-family: 'Glyphicons Halflings';
   content: "\e114";
   content: "<i class="fa fa-chevron-right"></i>";
   float: right;
   transition: all 0.5s;
}
.panel-heading.active a:before {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	transform: rotate(180deg);
}



/* --------------------------------  margin und padding ------------------------------- */


.hoehe_170	{
	min-height: 170px;
}


.m_10	{
	margin-top:10px;
}

.m_20	{
	margin-top:20px;
}

.m_30	{
	margin-top:30px;
}

.m_50	{
	margin-top:50px;
}

.m_80	{
	margin-top:80px;
}


.m_100	{
	margin-top:100px;
}

.p_150_20	{
	padding-left: 150px;
}


.padding_10	{
	padding-left: 10px;
	padding-right: 10px;
}


.p_desktop_50	{
	padding: 50px;
}

.p_0	{
	padding: 0px;
}

.p_10	{
	padding-top: 10px;
}

.p_20	{
	padding-top: 20px;
}

.p_30	{
	padding-top: 30px;
}

.p_50	{
	padding-top: 50px;
}

.p_100	{
	padding-top: 100px;
}

.p_150	{
	padding-top: 150px;
}

.p_200	{
	padding-top: 200px;
}

.p_b_10	{
	padding-bottom: 10px;
}

.p_b_20	{
	padding-bottom: 20px;
}

.p_b_30	{
	padding-bottom: 30px;
}

.p_b_50	{
	padding-bottom: 50px;
}

.p_b_100	{
	padding-bottom: 100px;
}

.p_b_150	{
	padding-bottom: 150px;
}

.p_b_200	{
	padding-bottom: 200px;
}


.p_top_0	{
	padding-top:0px;
}



.p_left_0{
	padding-left:0px;
}

.p_left_20{
	padding-left:20px;
}

.p_left_30{
	padding-left:30px;
}

.p_left_50{
	padding-left:50px;
}

.p_left_100{
	padding-left:100px;
}

.p_left_25_prozent{
	padding-left:25%;
}

.m_neg_20	{
	margin-top: -20px;
}

.m_neg_50	{
	margin-top: -50px;
}

.m_neg_60	{
	margin-top: -60px;
}

.m_neg_75	{
	margin-top: -75px;
}

.m_neg_85	{
	margin-top: -85px;
}


.m_neg_100, .m_neg_100_desktop	{
	margin-top: -100px;
}

.m_neg_60_desktop	{
	margin-top: -60px;
}

.m_neg_80_desktop	{
	margin-top: -80px;
}

.m_neg_140_desktop	{
	margin-top: -140px;
}

.m_neg_150	{
	margin-top: -150px;
}

.m_neg_200	{
	margin-top: -200px;
}


.m_neg_bottom_30	{
	margin-bottom: -30px;
}

.m_neg_bottom_50	{
	margin-bottom: -50px;
}


.p_18	{
	padding-left: 18px;
}


.p_left_50	{
	padding-left: 50px;
}

.p_right_30	{
	padding-right: 30px;
}

.m_auto	{
	margin-top: auto;
}


.container_startseite	{
	width: 84%;
	margin-left: 9%;
	margin-top: 20vh;
}

.RV_rot	{
	color: #eb5754;
}


.hellgrau	{
	background-color: #f0f2f5;
	background-color: #F7F7F7;
}


.hellgrau_light	{
	background-color: #eaf2f3;
}

.hellgrau_light_2	{
	background-color: #ddece8;
}

.hellgrau_dark	{
	background-color: #efefef;
}

.dunkelblau	{
	background-color: #2c5779;
	color: #FFFFFF;
}

.karriereblau	{
	background-color: #1397db;
	color: #FFFFFF;
}

.mittelblau	{
	background-color: #9fc1c3;
}

.bg_rot	{
	background-color: #a60101;
}

.bg_gruen	{
	background-color: #339900;
}

.eins {
    overflow: hidden;
    margin-top: -70px;
}

.zwei {
    overflow: hidden;
    margin-top: -30px;
}

.active	{
    margin-top: 0px;
    color: #254c77;
}

.mod_article_bottom {
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 100px;
}

h5, h4, h3, h2, h1	{
    color: #254c77;
}


.light h4, .light h2 {
  font-size: 35px;
  font-weight: lighter;
}


.saunatabelle	{
	width: 80%; 
	margin-left: 10%;
}

.menue_klein	{
    font-size: 0.8em;
    color: #254c77;
    padding-left: 12px;
}


.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 1rem;
    list-style: none;
    font-size: 0.8rem;
    padding-left: 4.6%;
}

.mod_breadcrumb.block li:first-of-type {
    display: none;
}



.bindestrich	{
	display: none;
}


.breadcrumb .a	{
	color:#0d6efd;
}

.breadcrumb .active {
    margin-top: 0px;
}


.job_font	{
    font-size: 1em;
    color: #254c77;
    padding-left: 12px;
}


.lulo {
    font-family: 'Lulo-Clean-W01-One-Bold', sans-serif;
}



.formular_bewerbung	{
	
	margin-bottom: 10px;
}

.button_bewerbung	{
	
	margin-bottom: 30px;
	width: 50%;
	padding: 10px;
	font-family: 'Lulo-Clean-W01-One-Bold', sans-serif;
	font-size: 10px;
	border: 2px solid;
   	border-color: #444444;
	color: #000000;
	text-decoration: none;
	background-color: #FFFFFF;
	margin-top: 80px;
}

.button_bewerbung_2 {
  margin-bottom: 20px;
  width: 25%;
  padding: 10px;
  font-family: 'Lulo-Clean-W01-One-Bold', sans-serif;
  font-size: 10px;
  border: 2px solid;
    border-top-color: currentcolor;
    border-right-color: currentcolor;
    border-bottom-color: currentcolor;
    border-left-color: currentcolor;
  border-color: #444444;
  color: #000000;
  text-decoration: none;
  background-color: #FFFFFF;
  margin-top: 20px;
}

.button_bewerbung, .button_bewerbung_2:hover {
    background-color: #EFEFEF;
    transition: 0.3s;
}

.button_labor	{
	
	margin-bottom: 20px;
	width: 66%;
	height: 60px;
	padding: 10px;
	font-family: 'Lulo-Clean-W01-One-Bold', sans-serif;
	font-size: 1rem;
	border: 1px solid;
   	border-color: #ced4da;
   	background-color:#2c5779;
	color: #FFFFFF;
	text-decoration: none;
}

.button_labor:hover {
    background-color: #82c0d7;
    transition: 0.3s;
}



.formular_PLZ	{
	
	margin-bottom: 10px;
	width: 50%;
	height: 60px;
}

.button_PLZ	{
	
	margin-bottom: 30px;
	width: 50%;
	padding: 10px;
	font-family: 'Lulo-Clean-W01-One-Bold', sans-serif;
	font-size: 10px;
	border: 2px solid;
   	border-color: #444444;
	color: #000000;
	text-decoration: none;
	background-color: #FFFFFF;
	margin-top: 20px;
}

.button_PLZ:hover {
    background-color: #EFEFEF;
    transition: 0.3s;
}

.formular_ueberschrift	{
	border:0px;
	background-color:#F7F7F7;
	color: #254c77;
	font-size: 1.5rem;
	padding-top: 25px;
}


/* --------------------------------  karriere ------------------------------- */

.box .content .pfeil	{
	font-size:4em;
	padding-top: 30px;
	transition: 0.3s;
}

.box .content .pfeil:hover	{
	padding-top: 50px;
	transition: 0.3s;
}


#geheimeschemnitzdiv	{
	transition: 0.3s;
}

#geheimeswaldenburgdiv	{
	transition: 0.3s;
}

.karrieredetail	{
	padding-left: 25%;
	padding-top: 50px; 
	padding-bottom: 50px;
}

.height_25vw	{
	 height:25vw;
	}

/* --------------------------------  bildstreifen titel ------------------------------- */


.ambulante_reha_titel	{
	background-image:url(/files/admedia.de/content/images/ambulante_reha/ADMEDIA_Ambulante_Rehabilitation_Titel.jpg);
}

.reha_antrag	{
	background-image:url(/files/admedia.de/content/images/ambulante_reha/ambulante_reha_antrag.jpg);
}

.reha_behandlungskonzept	{
		background-image:url(/files/admedia.de/content/images/ambulante_reha/ambulante_reha_behandlungskonzept.jpg);
	}
	
.corona	{
		background-image:url(/files/admedia.de/content/images/ambulante_reha/corona_AK_5.jpg);
	}
	
.reha_wohnortnah	{
		background-image:url(/files/admedia.de/content/images/ambulante_reha/wohnortnah_2.jpg);
	}

.ADMEDIA_olympia {
	background-image:url(/files/admedia.de/content/images/ambulante_reha/ADMEDIA_olympia.jpg);
}


.ADMEDIA_eric	{
	background-image:url(/files/admedia.de/content/images/aktuelles/eric_frenzel/ADMEDIA_eric_frenzel.jpg);
}

.ADMEDIA_nico	{
	background-image:url(/files/admedia.de/content/images/aktuelles/nico_ihle/nico_ihle_titel.jpg);
}

.ADMEDIA_social_media {
	background-image:url(/files/admedia.de/content/images/social_media/ADMEDIA_social_titel.jpg);
}



.plauen {
	background-image:url(/files/admedia.de/content/images/plauen/plauen_titel.jpg);
}

.PRM_plauen {
	background-image:url(/files/admedia.de/content/images/plauen/PRM_plauen_2.jpg);
}

.plauen_team {
	background-image:url(/files/admedia.de/content/images/plauen/panorama_titel_team.jpg);
}

.plauen_haus {
	background-image:url(/files/admedia.de/content/images/plauen/panorama_titel_haus.jpg);
}



.chemnitz_17_haus {
	background-image:url(/files/admedia.de/content/images/chemnitz_rehazentrum/chemnitz_17_foyer_3.jpg);
}

.chemnitz_17_team {
	background-image:url(/files/admedia.de/content/images/aktuelles/ADMEDIA_muddy_angel.jpg);
}

.chemnitz_17_titel {
	background-image:url(/files/admedia.de/content/images/chemnitz_rehazentrum/chemnitz_rehazentrum_titel_hybrid.jpg);
}

.amputationsbetreuung {
	background-image:url(/files/admedia.de/content/images/amputation/amputationsbehandlung.jpg);
}




.chemnitz_35_titel {
	/* background-image:url(/files/admedia.de/content/images/chemnitz_physiotherapie/planitzwiese_35_pano_2.jpg); */
	background-image:url(/files/admedia.de/content/images/aktuelles/chemnitz_guten_morgen_1.jpg);
	background-image:url(/files/admedia.de/content/images/chemnitz_physiotherapie/panorama_plawi_35_10.jpg);
	background-image:url(/files/admedia.de/content/images/chemnitz_rehazentrum/chemnitz_rehazentrum_titel_1.jpg);
	background-image:url(/files/admedia.de/content/images/chemnitz_rehazentrum/chemnitz_rehazentrum_titel_hybrid.jpg);
}


.psychologische_beratung {
	background-image:url(/files/admedia.de/content/images/psychologische_beratung/psychologische_beratung.jpg);
}

.achtsamkeit {
	background-image:url(/files/admedia.de/content/images/achtsamkeit/achtsamkeit.jpg);
	background-position:bottom;
}

.rv-fit {
	background-image:url(/files/admedia.de/content/images/RV_FIT/titel_RV_fit.jpg);
	background-position:center;
}

.rueckenaktiv {
	background-image:url(/files/admedia.de/content/images/freiberg/slider_rueckenaktiv.jpg);
	background-position:center;
}

.achtsamkeit_steifen_1 {
	background-image:url(/files/admedia.de/content/images/achtsamkeit/achtsamkeit_dialog_dark.jpg);
	background-position:center;
	min-height: 30vw;
}


.freiberg_titel {
	background-image:url(/files/admedia.de/content/images/freiberg/freiberg_titel.jpg);
	background-image:url(/files/admedia.de/content/images/freiberg/freiberg_titel_BB.jpg);
}


.MTT	{
		background-image:url(/files/admedia.de/content/images/MTT/AMM_titel.jpg);
	}


.AMM	{
		background-image:url(/files/admedia.de/content/images/AMM/AMM_titelfoto.jpg);
	}
	
.AMM_konzept	{
		background-image:url(/files/admedia.de/content/images/AMM/AMM_konzept.jpg);
	}

.AMM_team	{
		background-image:url(/files/admedia.de/content/images/AMM/AMM_team.jpg);
	}


.return_to_activity	{
		background-image:url(/files/admedia.de/content/images/return_to_activity/return_activity_titel.jpg);
	}

.functional_screening	{
		background-image:url(/files/admedia.de/content/images/functional_screening/functional_screening_titel.jpg);
	}


.ergotherapie_titel	{
		background-image:url(/files/admedia.de/content/images/ergotherapie/ergotherapie_titel_11.jpg);
	}

.ergotherapie_computer	{
		background-image:url(/files/admedia.de/content/images/ergotherapie/ergotherapie_computer.jpg);
	}
	
.ergotherapie_werkmeister	{
		background-image:url(/files/admedia.de/content/images/ergotherapie/ergotherapie_werkmeister.jpg);
	}

.ergotherapie_handtherapie	{
		background-image:url(/files/admedia.de/content/images/ergotherapie/ergotherapie_handtherapie_titel.jpg);
	}
	
.ergotherapie_schmerztherapie	{
		background-image:url(/files/admedia.de/content/images/ergotherapie/ergotherapie_schmerztherapie.jpg);
	}
	
.ergotherapie_triggerpunkt	{
		background-image:url(/files/admedia.de/content/images/ergotherapie/ergotherapie_triggerpunkt.jpg);
	}


.physiotherapie_titel	{
	background-image:url(/files/admedia.de/content/images/physiotherapie/physiotherapie_titel_1.jpg);
}

.physiotherapie_manuelle_therapie	{
		background-image:url(/files/admedia.de/content/images/physiotherapie/physiotherapie_neurophysiologisch.jpg);
	}
	
.physiotherapie_bewegungsbad	{
		background-image:url(/files/admedia.de/content/images/physiotherapie/bewegungsbad_titel.jpg);
	}

.physiotherapie_KG	{
		background-image:url(/files/admedia.de/content/images/physiotherapie/geraetegestuetzte_KG_titel.jpg);
	}

.physiotherapie_neurophysiologie	{
		background-image:url(/files/admedia.de/content/images/physiotherapie/physiotherapie_neurophysiologisch.jpg);
	}

.physiotherapie_massagen	{
		background-image:url(/files/admedia.de/content/images/physiotherapie/physiotherapie_massagen_titel.jpg);
	}

.physiotherapie_amputation	{
		background-image:url(/files/admedia.de/content/images/physiotherapie/amputationsbetreuung_titel.jpg);
	}



.ernaehrung_start	{
		background-image:url(/files/admedia.de/content/images/ernaehrungsberatung/ernaehrung_2.jpg);
	}

.ernaehrung_einzelgespraech	{
		background-image:url(/files/admedia.de/content/images/ernaehrungsberatung/ernaehrung_vorsorge.jpg);
	}

.ernaehrung_ratgeber	{
		background-image:url(/files/admedia.de/content/images/ernaehrungsberatung/streifen_ernaehrung_ratgeber.jpg);
	}
	
.ernaehrung_betrieb	{
		background-image:url(/files/admedia.de/content/images/ernaehrungsberatung/ernaehrung_betrieb.jpg);
	}



.wellness	{
		background-image:url(/files/admedia.de/content/images/wellness/wellness_titel.jpg);
	}

.sauna	{
		background-image:url(/files/admedia.de/content/images/wellness/sauna_titel.jpg);
	}

.schnuppertag	{
		background-image:url(/files/admedia.de/content/images/aktuelles/slider_labor_titel.jpg);
	}

.admedino	{
		background-image:url(/files/admedia.de/content/images/aktuelles/streifen_admedino.jpg);
	}


.nachsorge	{
		background-image:url(/files/admedia.de/content/images/nachsorge/ADMEDIA_nachsorge_titel.jpg);
	}
	
.rehasport	{
		background-image:url(/files/admedia.de/content/images/nachsorge/ADMEDIA_rehasport_titel.jpg);
	}

.osteopathie	{
		background-image:url(/files/admedia.de/content/images/osteopathie/osteopathie_titel.jpg);
	}

.logopaedie	{
		background-image:url(/files/admedia.de/content/images/logopaedie/ADMEDIA_Logopaedie_Titel.jpg);
	}



.praxis_start	{
		background-image:url(/files/admedia.de/content/images/gemeinschaftspraxis/praxis_2_3.jpg);
	}
	
.praxis_team	{
		background-image:url(/files/admedia.de/content/images/gemeinschaftspraxis/praxis_team_2.jpg);
	}

.praxis_impressum	{
		background-image:url(/files/admedia.de/content/images/gemeinschaftspraxis/impressum_praxis_6.jpg);
	}
	
.praxis_rezept	{
		background-image:url(/files/admedia.de/content/images/gemeinschaftspraxis/praxis_rezept.jpg);
	}
	
.praxis_termin	{
		background-image:url(/files/admedia.de/content/images/gemeinschaftspraxis/praxis_termin.jpg);
	}
	
	
.praxis_datenschutz	{
		background-image:url(/files/admedia.de/content/images/gemeinschaftspraxis/impressum_praxis_7.jpg);
	}


.chirurgie_start	{
		background-image:url(/files/admedia.de/content/images/chirurgie/slider_chirurgie_11.jpg);
	}

.chirurgie_ambulant	{
		background-image:url(/files/admedia.de/content/images/chirurgie/slider_chirurgie_8.jpg);
	}
	
.chirurgie_team	{
		background-image:url(/files/admedia.de/content/images/chirurgie/slider_chirurgie_13.jpg);
	}
	
.chirurgie_beratung	{
		background-image:url(/files/admedia.de/content/images/chirurgie/slider_chirurgie_12.jpg);
	}
	


.labor_start	{
		background-image:url(/files/admedia.de/content/images/labor/labor_start.jpg);
		background-image:url(/files/admedia.de/content/images/labor/labor_suche.jpg);
	}

/* --------------------------------  bildstreifen innen ------------------------------- */


.streifen_404 {
	background-image: url(/files/admedia.de/content/images/404/404_leitung.jpg); 
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
}


.streifen_ernaehrung_1 {
	background-image: url(/files/admedia.de/content/images/ernaehrungsberatung/ernaehrung_1.jpg); 
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
}

.streifen_ernaehrung_2 {
	background-image: url(/files/admedia.de/content/images/ernaehrungsberatung/bistro_streifen_spiegel.jpg); 
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
}


.ADMEDIA_olympia_streifen_1 {
	background-image:url(/files/admedia.de/content/images/ambulante_reha/streifen_olympia.jpg);
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
}

.ADMEDIA_wohnortnah_streifen_1	{
	background-image:url(/files/admedia.de/content/images/ambulante_reha/wohnortnah.jpg);
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
}


.ADMEDIA_wohnortnah_streifen_2 {
	background-image:url(/files/admedia.de/content/images/ambulante_reha/wohnortnah_3.jpg);
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
}

.ADMEDIA_covid_streifen_1 {
	background-image:url(/files/admedia.de/content/images/ambulante_reha/nordic_streifen.jpg);
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
}

.ADMEDIA_startseite {
	/* background-image:url(/files/admedia.de/content/images/startseite/outdoor_streifen.jpg); */
	background-image:url(/files/admedia.de/content/images/startseite/outdoor_streifen_2.jpg);
	/* background-image:url(/files/admedia.de/content/images/aktuelles/ADMEDIA_silvester_start.jpg); */
	background-repeat:no-repeat; 
	background-size:cover; 
	min-height: 37vw;
	background-position: center top;
}

.ADMEDIA_startseite_2025 {
	/* background-image:url(/files/admedia.de/content/images/startseite/outdoor_streifen.jpg); */
	background-image:url(/files/admedia.de/content/images/startseite/online_shop_www.jpg);
	/* background-image:url(/files/admedia.de/content/images/aktuelles/ADMEDIA_silvester_start.jpg); */
	background-repeat:no-repeat; 
	background-size:cover; 
	min-height: 37vw;
	background-position: center top;
}

.ADMEDIA_erlebnistag {
	background-image:url(/files/admedia.de/content/images/aktuelles/erlebnistag_2024_desktop.jpg);
	background-repeat:no-repeat; 
	background-size:cover; 
	min-height: 37vw; 
	background-position: center top;
}

.ADMEDIA_erlebnistag_2024_startseite	{
	background-image:url(/files/admedia.de/content/images/startseite/erlebnistag_slider_2.jpg);
	background-repeat:no-repeat; 
	background-size:cover; 
	min-height: 37vw; 
	background-position: center top;
}


.ADMEDIA_silvester {
	/* background-image:url(/files/admedia.de/content/images/startseite/outdoor_streifen.jpg); */
	background-image:url(/files/admedia.de/content/images/aktuelles/ADMEDIA_silvester_start.jpg);
	background-repeat:no-repeat; 
	background-size:cover; 
	min-height: 37vw;
	background-position: center top;
}


.ADMEDIA_weihnachten_2023	{
	background-image:url(/files/admedia.de/content/images/aktuelles/slider_WBZ_weihnachten_2023_1.jpg);
	background-repeat:no-repeat; 
	background-size:cover; 
	min-height: 41vw;
	background-position: center top;
}

.streifen_instagram_1 {
	background-image:url(/files/admedia.de/content/images/social_media/streifen_instagram_2.jpg);
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
}


.streifen_instagram_2 {
	background-image:url(/files/admedia.de/content/images/social_media/ADMEDIA_social_titel_2.jpg);
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
	min-height: 800px;
}


.ernaehrung_kalender {
	background-image:url(/files/admedia.de/content/images/ernaehrungsberatung/monatskalender_2025.jpg);
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:left;
	min-height: 700px;
}


.streifen_mediazin {
	background-image:url(/files/admedia.de/content/images/aktuelles/mediazin_streifen.jpg);
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
}


.ADMEDIA_RV_FIT {
	background-image:url(/files/admedia.de/content/images/RV_FIT/slider_RV_FIT.jpg);
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
}



.ADMEDIA_fitness_streifen_1 {
	background-image:url(/files/admedia.de/content/images/ambulante_reha/fitness_streifen.jpg);
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
}

.ADMEDIA_bistro_streifen_1 {
	background-image:url(/files/admedia.de/content/images/ambulante_reha/bistro_streifen.jpg);
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
}


.ADMEDIA_formular_steifen_1	{
	background-image:url(/files/admedia.de/content/images/ambulante_reha/formular_streifen.jpg);
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
}
	

.ADMEDIA_annett_nix	{
	background-image:url(/files/admedia.de/content/images/freiberg/aerztin_FG.jpg);
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
	min-height:33vw;
	}
	
.heike_truschinski	{
	background-image:url(/files/admedia.de/content/images/chemnitz_rehazentrum/start_arzt_4.jpg);
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
	min-height:33vw;
	}
	
.ADMEDIA_parkplatz_35	{
	background-image:url(/files/admedia.de/content/images/chemnitz_physiotherapie/parkplatz_35_1.jpg);
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
	min-height:33vw;
	}

.flyer_online	{
	background-image:url(/files/admedia.de/content/images/download/streifen_flyer_digital.jpg);
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
	min-height:33vw;
	}


.ADMEDIA_PT_FG	{
	background-image:url(/files/admedia.de/content/images/aktuelles/team_physio_FG.jpg);
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
	min-height:33vw;
	}
	
.herzsport	{
	background-image:url(/files/admedia.de/content/images/freiberg/herzsport_FG.jpg);
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
	min-height:33vw;
	}
	
	
.ADMEDIA_elektro_up	{
	background-image:url(/files/admedia.de/content/images/ambulante_reha/elektro_up.jpg);
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
	}
	
.ADMEDIA_yoga	{
	background-image:url(/files/admedia.de/content/images/aktuelles/streifen_yoga.jpg);
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
}
	
	
.ADMEDIA_kinderschwimmen	{
	background-image:url(/files/admedia.de/content/images/aktuelles/streifen_kinderschwimmen.jpg);
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
}
	
.ADMEDIA_return_to_activity	{
	background-image:url(/files/admedia.de/content/images/return_to_activity/streifen_return_activity.jpg);
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
}
	
	

.ADMEDIA_download_steifen_1	{
		background-image:url(/files/admedia.de/content/images/ambulante_reha/formular_streifen_3.jpg);
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
	}


.ernaehrung_streifen_1	{
	background-image: url(/files/admedia.de/content/images/ernaehrungsberatung/ernaehrung_1.jpg); 
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
}

.ADMEDIA_smart_shopping	{
	background-image: url(/files/admedia.de/content/images/aktuelles/smart_shopping.jpg); 
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
}

.ADMEDIA_praevention_streifen	{
	background-image: url(/files/admedia.de/content/images/aktuelles/praevention_streifen.jpg); 
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
}


.ergotherapie_ganzheitlich_steifen_1	{
	background-image: url(/files/admedia.de/content/images/ergotherapie/ergotherapie_ganzheitlichkeit.jpg); 
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
}


.wellness_ernaehrung_streifen_1	{
		background-image: url(/files/admedia.de/content/images/wellness/wellness_ernaehrung.jpg); 
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
	}

.wellness_ernaehrung_streifen_2	{
		background-image: url(/files/admedia.de/content/images/wellness/bistro_streifen_spiegel.jpg); 
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
	}


.ADMEDIA_move {
	background-image:url(/files/admedia.de/content/images/move/admedia_move_2.jpg);
	background-repeat:no-repeat; 
	background-size:cover; 
	background-position:center;
}





.wellness_hotstone_streifen_1	{
		background-image: url(/files/admedia.de/content/images/wellness/wellness_hot_stone.jpg); 
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
	}
	
.wellness_sauna_streifen_1	{
		background-image: url(/files/admedia.de/content/images/wellness/sauna_streifen_2.jpg); 
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
	}


.AMM_streifen_1	{
		background-image: url(/files/admedia.de/content/images/AMM/AMM_kettlebell.jpg); 
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
}



.logopaedie_streifen_1	{
		background-image: url(/files/admedia.de/content/images/logopaedie/logopaedie_streifen.jpg); 
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
}

.karriere_FG_streifen_1	{
		background-image: url(/files/admedia.de/content/images/jobangebote/karriere_2022_FG_2.jpg); 
		background-image: url(/files/admedia.de/content/images/jobangebote/karriere_2022_FG_3.jpg); 
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
}



.labor_hygiene	{
		background-image: url(/files/admedia.de/content/images/labor/labor_hygiene_3.jpg); 
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
}

/* ----------------------------------------------  ende bildstreifen ------------------------------------- */






/* ------------  MENÜ ----------------------------- */
/*
#navbar-responsive-3 {
    border: 0px solid black;
    background-color: white;
    min-width: 300px;
    position: fixed;
    right: 0px;
    top: 210px;
    text-align: left;
    padding:40px;
    z-index:1000;
    transition: 0.2 ;
}
*/
#navbar-responsive-3 {
	border: 0px solid black;
	background-color: white;
	text-align: left;
	padding-right: 20px;
	padding-bottom: 40px;
	z-index: 1000;
	transition: 0.2s;
	margin-top: 68px;
	position: absolute;
	right: 0;
	width: 440px;
	padding-top:40px;
	line-height: 2rem;
}

.navbar.mod_bs_navbar{
	padding: 0;
}
.navbar .container{
	max-width: 100%;
}
.navbar.mod_bs_navbar .container{
	padding: 0;
}
#navbar-responsive-3 .active {
	margin-top: 0px;
}

.sibling  {
	text-decoration: none;
	color: #555555;
	color: #9fc1c3;
}

.submenu {
	text-decoration: none;
	color: #999999;
	color: #9fc1c3;
	margin-top: 20px;
	margin-bottom: 20px;
}


.trail  {
	text-decoration: none;
	color: #254c77;
}

.a level_3  {
	text-decoration: none;
	color: #CCCCCC;
}

.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: .5rem 0;
    margin: 0;
    font-size: 0.8rem;
    color: #555555;
    text-align: right;
    list-style: none;
    background-color: #FFFFFF;
    background-clip: padding-box;
    border: 0px solid rgba(0,0,0,.15);
    border-radius: 0rem;
    transition: 0.3s;
}

.dropdown-item	{
	color: #666666;
}


.level_1	{
  list-style-type: none;
}


.level_2	{
  list-style-type: none;
}



.container_nav	{
    float: right;
    box-shadow:  0px 0px 0px 0px black;
    }

.navbar-light .navbar-toggler {
    color: rgba(0,0,0,.55);
    margin-top: 20px;
    border-color: rgba(0,0,0,.0);
}

.navbar-toggler {
    font-size: 2rem;
    line-height: 1;
    font-weight: bold;
}

.navbar-light .navbar-nav .nav-link {
    color: #254c77;
}


/* -------------  STANDORTE  ---------------------- */

.standorte p	{
	font-size: 0.8em;
	color: #444444;
}

.standorte h5	{
	font-size: 0.9em;
	font-family: 'Helvetica', sans-serif;
    font-weight: bold;
}

.standorte h4	{
	
	font-size: 2em;
	padding-bottom: 30px;
}



.standortliste p	{
	font-size: 0.9em;
	color: #444444;
}

.standortliste h5	{
	font-size: 0.9em;
	font-family: 'Helvetica', sans-serif;
    font-weight: bolder;
}

.standortliste h4	{
	
	font-size: 1.8em;
	padding-bottom: 30px;
}


/* -------------  KARRIERE   ---------------------- */

.karriere p	{
	font-size: 0.9em;
	color: #444444;
}

.karriere p strong	{
	color: #2f4d76;
	font-size: 1.0em;
}

.karriere p em	{
	color: #2f4d76;
}


.karriere h1 {
    color: #99c4cb;
    font-family: 'helvetica', "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif;
    font-size: 2em;
    margin-bottom: 30px;
    line-height: 38px;
    margin-top: 8px;
}

.karriere h5	{
	font-size: 1.2em;
	font-family: 'Helvetica', sans-serif;
    font-weight: bold;
}

.karriere h4	{
	
	font-size: 1.2em;
	font-family: 'Helvetica', sans-serif;
    font-weight: bold;
}


.arrow::before {
    content: "<i class="fa fa-chevron-right"></i>";
}


/* ------------- TEXTE ELEMENTE ---------------------- */


.el3 .centerHolder	{
	
	margin-top: 140px;
	margin-bottom: 80px;
	
}

.el3 .centerHolder_frei	{
	
	margin-top: auto;
	margin-bottom: auto;
	
}



.el1 h3, .el1 h1, .el3 h3, .el3 h1	{
    font-weight: bolder;
    font-size: 3.2vw;
}

.headline_small 	{
    font-weight: bolder;
    font-size: 2.5vw;
}

.el3 h2	{
    font-weight: bolder;
    font-size: 5vw;
}


.el2 h2 {
    font-weight: bold;
    font-size: 1.1vw;
}

.el2 h4 {
    font-weight: bold;
    font-size: 1.1vw;
}


.el2 .ce_text{
    padding-left: 40px;
    padding-right: 40px;
    min-height: 150px;
}

.hoehe_240	{
	 min-height: 240px;
}


.el2 p	{
	color: #444444;
	font-size: 0.8vw;
	/* min-height: 130px; */
}


.el3 h4 {
    font-size: 1.2vw;
}

.el3 p	{
	font-size: 0.9vw;
}

/* -------------  MENÜBOXEN ---------------------- */


.c0:hover	{
    background-color: #f5b300;
    transition: 0.3s;
}

.c1:hover	{
    background-color: #20456d;
    transition: 0.3s;
}


.c1_standort	{
	background-image:url(files/admedia.de/content/images/standorte/hintergrund_chemnitz.jpg);
	background-position: center; 
	background-size: cover;
	background-repeat: no-repeat;
}


.c2:hover	{
    background-color: #7bb3a7;
    transition: 0.3s;
}
.c3:hover	{
    background-color: #8bbabd;
    transition: 0.3s;
}
.c4:hover	{
    background-color: #6cb0c9;
    transition: 0.3s;
}

.c6	{
	background-color: #9dcbda;
	transition: 0.3s;
}

.c6:hover	{
    background-color: #6cb0c9;
    transition: 0.3s;
}

.c7	{
	background-color: #b7d7e2;
	transition: 0.3s;
}

.c7:hover	{
    background-color: #9dcbda;
    transition: 0.3s;
}


.c8	{
	background-color: #82c0d7;
	transition: 0.3s;
}

.c9	{
	background-color: #b7d7e2;
	transition: 0.3s;
}


.c11 {
	background-color: #80a8c7;
	transition: 0.3s;
}


.c12	{
	background-color: #82c0d7;
}

.c13 {
	background-color: #254c77;
}


.c14	{
	background-color: #1397db;
}



.c22	{
	background-color: #2c5779;
}

.c24 {
	background-color: #82c0d7;
}



.c10:hover	{
	background-color: #c3bfb2;
	transition: 0.3s;
}


.el3 .holder.auszeit	{
	background-color: #a8a396;
}

p .10 {
	margin-top: 10px;
}

.box .content .single	{
	border: 0px solid;
}

.box.box2 .textHolder {
    margin-left: 15%;
    margin-right: 15%;
}

.box_icon	{
	
	background-size:contain;
	background-position:center; 
	margin-left:auto; 
	margin-right: auto; 
	margin-bottom: 30px;
	
}

.box .content .textHolder .strong_2 {
	font-family: 'Helvetica', sans-serif;
    font-size: 1.8vw;
    font-weight: bold;
    letter-spacing: 1px;
}
.box .content .textHolder .light_2 {
    font-size: 1vw;
    font-weight: lighter;
    padding-top: 10px;
    letter-spacing: 1px;
}

.box .content .textHolder .strong {
	font-family: 'Helvetica-Bold', sans-serif;
    font-size: 1.8vw;
	letter-spacing: 5px;
}

.box .content .textHolder .light {
    font-size: 1.6vw;
}

.box .content .textHolder_arzt .strong {
	font-family: 'Helvetica-Bold', sans-serif;
    font-size: 1.1vw;
    line-height: 1;
    font-weight: bold;
	letter-spacing: 5px;
}

.box .content .textHolder_arzt .light {
    font-size: 1.6vw;
    font-weight: lighter;
	letter-spacing: 6px;
	margin-top: -15px;
}

.box .content .centerHolder_arzt {
	height: auto;
	margin-top: auto;
	margin-top: 25%;
	margin-bottom: auto;
	display: block;
	text-align: center;
	
}


.box .content .centerHolder_praxis p	{
		font-size: 0.8vw;
	}


.box_1	{
	padding-top:100px;
	padding-bottom:100px;
	border-right: 5px solid #fff;
}

.box_2	{
	padding-top:100px;
	padding-bottom:100px;
	border-left: 5px solid #fff;
	border-right: 5px solid #fff;
}

.box_3	{
	padding-top:100px;
	padding-bottom:100px;
	border-left: 5px solid #fff;
}

.box_4	{
	padding-top:50px;
	padding-bottom:50px;
	border-left: 5px solid #fff;
}

.box_1 h3, .box_2 h3, .box_3 h3	{
	padding-bottom:50px;
}


/* -------------  FOTO  ---------------------- */

.foto_100	{
	width: 100%;
	height: auto;
	display: block;
}

.foto_100 img{
	width: 100%;
	height: auto;
	display: block;
}



.foto_praxis	{
	 min-height:500px;
	 margin-top:10px;
}



/* Überschrift zentriert 
.gallery-title {
    text-align: center;
    text-transform: capitalize;
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: sans-serif;
}

/* Galerieblock 
.gallery-block {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25vw, 1fr));
    gap: 10px;
    margin-bottom: 40px;
}

*/

/* Bilder 
.gallery-block img {
    width: 100%;
    display: block;
    border-radius: 6px;
    object-fit: cover;
}

.gallery {
  margin: 0 auto;
}

.gallery::before {
  content: "";
  width: 25%;       
  display: block;
}

.item {
  width: 25%;      
  margin-bottom: 10px;
  float: left;    
}

.item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

*/



/* -------------  HAUPTFARBEN  ----------------- */


.signalgruen	{
	color:#66CD00;
}

.back_signalgruen	{
	background-color:#66CD00;
	color:#FFFFFF;
	padding: 0.2em 0; /* Etwas Abstand oben und unten */
	padding-left: 0.4em;
	padding-right: 0.4em;
	margin-left: -0.4em;
    display: inline;
}

.blau	{
	color:#254c77;
}

.blau a:hover{
	color:#8dbfb4
}

.blau_strong	{
	color: #254c77;
	font-weight: bold;
}

.hellblau	{
	color:#9fc1c3;
}


.grau	{
	color:#444444;
	font-family: arial; ;
}

.weiss	{
	color:#FFFFFF;
}

.rot	{
	color: #a60101;
}

.weiss	{
	color: #FFFFFF;
}

.gruen	{
	color: #339900;
}

.ausfall{
	color: #ff0000;
	text-decoration: line-through;
	text-decoration: none;
}
.ausfall::after {
    content: "\00a0 (Ausfall)"; 
}


/* ------------------------------------------------------------  grosse desktops  ------------------------------------------------------------ */

@media only screen and (min-width: 2000px)	{

/* ------------- TEXTE ELEMENTE ---------------------- */


	

	.el3 .centerHolder	{
		
		margin-top: 140px;
		margin-bottom: 80px;
		
	}
	
	.hidden-desktop	{
		display:none;
	}
	
	.el3 .centerHolder_frei	{
	
		margin-top: auto;
		margin-bottom: auto;
		
	}
	
	
	.el1 h3, .el1 h1, .el3 h3, .el3 h1	{
	    font-weight: bolder;
	    font-size: 4rem;
	}
	
	.el1 h2, .el3 h2	{
	    font-weight: bolder;
	    font-size: 5vw;
	}
	
	.el1 h2	{
	    font-weight: lighter;
	    font-size: 2rem;
	}
	
	.el2 h2 {
	    font-weight: bold;
	    font-size: 1.1vw;
	}
	
	.el2 h4 {
	    font-weight: bold;
	    font-size: 1.1vw;
	}
	
	
	.el2 .ce_text{
	    padding-left: 40px;
	    padding-right: 40px;
	    min-height: 150px;
	}
	
	
	.el2 p	{
		color: #444444;
		font-size: 1em;
	}
	
	
	.el3 h4 {
	    font-size: 1.2vw;
	}
	
	.el3 p	{
		font-size: 0.8vw;
	}
	
	
	.el2 .ce_text {
	  min-height: 190px;
	}
	
	.light h4 {
	  font-size: 30px;
	  font-weight: lighter;
	}	


}




/* ------------------------------------------------------------  TABLET & LAPTOP  ------------------------------------------------------------ */

@media only screen and (max-width: 1200px)	{
	
	
	/*************
	.unsichtbar_desktop	{visibility: visible;}
	.unsichtbar_handy	{visibility: hidden;}
	**********/

	.shop {
	    position: fixed;
	    top: 0px;
	    right: 35%;
	}
	
	.hidden-desktop	{
		display:none;
	}
	
	.bindestrich	{
		display: flex;
	}
	
	
	.el3 .centerHolder	{
	
		margin-top: 140px;
		margin-bottom: 80px;
	}
	
	.el3 .centerHolder_frei	{
	
		margin-top: auto;
		margin-bottom: auto;
		
	}
	
	
	.el1 h3, .el1 h1, .el3 h3, .el3 h1	{
	    font-weight: bolder;
	    font-size: 3.8vw;
	}
	
	.el1 h2, .el3 h2	{
	    font-weight: lighter;
	    font-size: 2vw;
	}
	
	.el2 h4 {
	    font-weight: bold;
	    font-size: 1.5vw;
	}
	
	
	.el2 .ce_text{
	    padding-left: 40px;
	    padding-right: 40px;
	    min-height: 150px;
	}
	
	
	.el2 p	{
		color: #444444;
		font-size: 1.2vw;
		/* min-height: 80px; */
		min-height: 20px;
	}
	
	
	.el3 h4 {
	    font-size: 1.7vw;
	}
	
	.el3 p	{
		font-size: 1.2vw;
	}

	.box .content .centerHolder_praxis h4, h3 {
	  padding-bottom: 10px;
	}
	
	.box .content .centerHolder_praxis p {
	  line-height: 1.2;
	  font-size: 0.8vw;
	}
	
	.box_1 p, .box_2 p	{
		font-size: 0.85em;
	}
	
	.light h4 {
	  font-size: 30px;
	  font-weight: lighter;
	}

}





/* -----------------------------------------------------------  MOBIL  ----------------------------------------------------------------------- */

@media only screen and (max-width: 992px)	{
    body	{
        background-color: #FFFFFF;
    }
    
    .row	{
    	--bs-gutter-x: 1rem;
	}
	
	.container, .container_small, container_60		{
	    width:100vw;
	    max-width:100vw;
	}
	
	.container_small		{
	    padding:20px;
	    text-align:left;
	}
	
	.hidden-handy	{
		display:none;
	}
	
	.chirurgie_portrait	{
		  min-height:50vw;
		}
	
	
	.gruen, .gruen:hover, .gelb, .gelb:hover, .rot, .rot:hover	{
	
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center; 
		height:100vw;
	}
	
	.psychologie	{
		padding-top: 70vw;
	}
	
	
	.ernaehrung-table {
	    border-collapse: separate;
	    border-spacing: 0px;
	    background-color: #f9f9f9;
		width: 100%;
		margin-left: 0px;
	}
		

	.50_foto	{
		min-height:60vw;
	}
	
	
	.ueberschrift_gross {
	  font-weight: bolder;
	  font-size: 3rem;
	}
	
	.kalenderwoche	{
		  font-size: 1.4rem;
		}
		
	.kalender_row	{
		padding-left:0px; 
		padding-right:0px;
	}	
	
	
	/*************
	.unsichtbar_desktop	{display: inline;}
	.unsichtbar_handy	{ display: none;}
	***********/
	
	.br-mobile {
                display: inline;
    }
	
	
	.hidden-desktop	{
		display:block;
	}
    
    .container, .container_fluid	{
    	padding-left: 15px;
    	padding-right: 15px;
    }
    
    .littleMenu	{
    	padding-top: 10px;
    	padding-bottom: 70px;
    	padding-right:35px;
	}
    
    .logo, .logo_startseite	{
	width: 80vw;
	height: auto;
	}
	
	.logo_startseite_move {
	  width: 32vw;
	  height: auto;
	  padding-bottom: 20px;
	  padding-left: 4%;
	  margin-right:0px;
	}
	
	.foto_hochformat	{
		width: 100%;
		height:auto;
	}
	
	
	
	.jusify_desktop	{
		text-align: left; 
	}
	
	
	.karrieremovie	{
		width:100%;
	}

	
	
	.card-header {
	 padding-left: 20px;
	}
	
	.card-body {
	  flex: 1 1 auto;
	  padding: 1rem 1rem;
	  padding-left: 30px;
	}
	
	
	.button_labor	{
		width: 100%;
	}
	
	.form-control_labor {
		margin-top: 30px;
		width: 100%;
	}
	
	.to_top_30	{
		margin-top: 30px;
	}
	
	
	.to_top_50	{
		margin-top: 50px;
	}
	
	.to_top_100	{
		margin-top: 100px;
	}
	
	.m_neg_100_desktop, .m_neg_60_desktop, .m_neg_80_desktop	{
		margin-top:0px;
	}
	
	
	.p_left_50	{
		padding-left: calc(var(--bs-gutter-x)/ 2);
	}
	
	.p_right_50	{
		padding-right: 20px;
	}
		
	.p_left_25_prozent{
		padding-left:20px;
	}
	
	.menue_klein {
	  font-size: 0.6em;
	  line-height: 2.2;
	}
	
	.m_neg_bottom_30, .m_neg_bottom_50	{
		margin-bottom: 0px;
	}
	
	
	.m_neg_85	{
		margin-top: -80px;
	}

	
	
	.box .content .pfeil {
	  font-size: 2em;
	}
	
	.karrieredetail {
	  padding-left: 20px;
	  padding-top: 30px;
	  padding-bottom: 30px;
	}
	
	.height_25vw	{
	 height:25vh;
	}
	
	
	
	#praxis_online {
	    position: fixed;
		top: 65vh;
		right: 0px;
	}
	
	.icon_lasche	{
		width:50px;
		padding-top:15px;
	}
	
	
	
	.shop {
    position: fixed;
    left: 20px;
    right: auto;
    padding-left: 20px;
    padding-right: 20px;
	}
	
	
	.covid {
	  position: fixed;
	  top: 30px;
	  left: 0px;
	  right: auto;
	  padding-top: 5px;
	  padding-left: 18px;
	  padding-right: 20px;
	  border-radius: 0px 0px 10px 0px;
	}
	
	.saunatabelle	{
		width: 98%; 
		margin-left: 2%;
	}
	
	.breadcrumb	{
		display:none;
	}
	
	
	.bindestrich	{
	display: flex;
	}
	
	
	.container_footer	{
    padding:20px;
    }
	
	.mod_search .input-group {
		width: 95%;
    	float: right;
    	padding-top: 30px;
    	padding-right: 10px;
	}
    
    .light h4 {
		font-size: 1.6em;
    }
    
    
    .arzt p {
		margin-bottom: 10px;
    }
    
    .adresse	{
    	font-size: 0.9rem;
    }
    
    .fliesstext, .fliesstext_titel	{
		 text-align: left; 
		 width: 98%; 
		 margin-left: 1%;
		 padding-bottom: 0px;
	}
    
    .p_150_20	{
		padding-left: 20px;
	}
    
    .auswahlkaestchen {
		  display: block;
		  margin-bottom: 40px;
		  padding-left:30px;
	}

	
    
    /* ----------------------------------------------  bildstreifen ----------------------------------------- */
    
    
    
    .ambulante_reha_titel	{
		background-image:url(/files/admedia.de/content/images/ambulante_reha/ADMEDIA_Ambulante_Rehabilitation_Titel_mobil.jpg);
	}
	
	.reha_antrag	{
		background-image:url(/files/admedia.de/content/images/ambulante_reha/ambulante_reha_antrag_mobil.jpg);
	}
	
	.reha_behandlungskonzept	{
		background-image:url(/files/admedia.de/content/images/ambulante_reha/ambulante_reha_behandlungskonzept_mobil.jpg);
	}
	
	.reha_wohnortnah	{
		background-image:url(/files/admedia.de/content/images/ambulante_reha/wohnortnah_2_mobil.jpg);
	}
	
	
	.ADMEDIA_olympia {
		background-image:url(/files/admedia.de/content/images/ambulante_reha/ADMEDIA_olympia_mobil.jpg);
	}
	
	
	.ADMEDIA_social_media {
	background-image:url(/files/admedia.de/content/images/social_media/ADMEDIA_social_mobil.jpg);
	}
	
	.ADMEDIA_nico	{
	background-image:url(/files/admedia.de/content/images/aktuelles/nico_ihle/nico_ihle_titel_mobil.jpg);
	}
	
	.PRM_plauen {
		background-image:url(/files/admedia.de/content/images/plauen/PRM_plauen_mobil.jpg);
	}
	
	
	.achtsamkeit {
		background-image:url(/files/admedia.de/content/images/achtsamkeit/achtsamkeit_mobil.jpg);
	}
	
	
	.achtsamkeit_steifen_1 {
		background-image:url(/files/admedia.de/content/images/achtsamkeit/achtsamkeit_dialog_dark_mobil.jpg);
		min-height: 120vh;
	}
	
	
	.corona	{
		background-image:url(/files/admedia.de/content/images/ambulante_reha/corona_AK_5.jpg);
	}

	.flyer_online	{
		background-image:url(/files/admedia.de/content/images/download/streifen_flyer_digital_mobil.jpg);
		}
	
	.MTT	{
		background-image:url(/files/admedia.de/content/images/MTT/AMM_titel_mobil.jpg);
	}
	
	.AMM	{
		background-image:url(/files/admedia.de/content/images/AMM/AMM_titelfoto_mobil.jpg);
	}

	.AMM_konzept	{
		background-image:url(/files/admedia.de/content/images/AMM/AMM_konzept_mobil.jpg);
	}

	.AMM_team	{
		background-image:url(/files/admedia.de/content/images/AMM/AMM_team_mobil.jpg);
	}
	

	.return_to_activity	{
		background-image:url(/files/admedia.de/content/images/return_to_activity/return_activity_titel_mobil.jpg);
	}
	
	.functional_screening		{
		background-image:url(/files/admedia.de/content/images/functional_screening/functional_screening_mobil.jpg);
	}

	
	.ergotherapie_titel	{
		background-image:url(/files/admedia.de/content/images/ergotherapie/ergotherapie_titel_11_mobil.jpg);
	}
	
	.ergotherapie_computer	{
		background-image:url(/files/admedia.de/content/images/ergotherapie/ergotherapie_computer_mobil.jpg);
	}
	
	.ergotherapie_werkmeister	{
		background-image:url(/files/admedia.de/content/images/ergotherapie/ergotherapie_werkmeister_mobil.jpg);
	}

	.ergotherapie_handtherapie	{
		background-image:url(/files/admedia.de/content/images/ergotherapie/ergotherapie_handtherapie_titel_mobil.jpg);
	}
	
	.ergotherapie_schmerztherapie	{
		background-image:url(/files/admedia.de/content/images/ergotherapie/ergotherapie_schmerztherapie_mobil.jpg);
	}
	
	.ergotherapie_triggerpunkt	{
		background-image:url(/files/admedia.de/content/images/ergotherapie/ergotherapie_triggerpunkt_mobil.jpg);
	}

	
	.psychologische_beratung {
		background-image:url(/files/admedia.de/content/images/psychologische_beratung/psychologische_beratung_mobil.jpg);
	}
	
	
	.physiotherapie_titel	{
		background-image:url(/files/admedia.de/content/images/physiotherapie/physiotherapie_titel_1_mobil.jpg);
	}
	
	.physiotherapie_manuelle_therapie	{
		background-image:url(/files/admedia.de/content/images/physiotherapie/physiotherapie_neurophysiologisch_mobil.jpg);
	}

	.physiotherapie_bewegungsbad	{
		background-image:url(/files/admedia.de/content/images/physiotherapie/bewegungsbad_titel_mobil.jpg);
	}

	.physiotherapie_KG	{
		background-image:url(/files/admedia.de/content/images/physiotherapie/geraetegestuetzte_KG_titel_mobil.jpg);
	}

	.physiotherapie_neurophysiologie	{
			background-image:url(/files/admedia.de/content/images/physiotherapie/physiotherapie_neurophysiologisch_mobil.jpg);
		}

	.physiotherapie_massagen	{
		background-image:url(/files/admedia.de/content/images/physiotherapie/physiotherapie_massagen_titel_mobil.jpg);
	}

	.physiotherapie_amputation	{
		background-image:url(/files/admedia.de/content/images/physiotherapie/amputationsbetreuung_titel_mobil.jpg);
	}


	.ernaehrung_start	{
		background-image:url(/files/admedia.de/content/images/ernaehrungsberatung/ernaehrung_2_mobil.jpg);
	}

	.ernaehrung_einzelgespraech	{
		background-image:url(/files/admedia.de/content/images/ernaehrungsberatung/ernaehrung_vorsorge_mobil.jpg);
	}

	.ernaehrung_ratgeber	{
		background-image:url(/files/admedia.de/content/images/ernaehrungsberatung/streifen_ernaehrung_ratgeber_mobil.jpg);
	}

	.ernaehrung_betrieb	{
		background-image:url(/files/admedia.de/content/images/ernaehrungsberatung/ernaehrung_betrieb_mobil.jpg);
	}


	.rehasport	{
		background-image:url(/files/admedia.de/content/images/nachsorge/ADMEDIA_rehasport_titel_mobil.jpg);
	}



	.wellness	{
		background-image:url(/files/admedia.de/content/images/wellness/wellness_titel_mobil.jpg);
	}
	
	.sauna	{
		background-image:url(/files/admedia.de/content/images/wellness/sauna_titel_mobil.jpg);
	}

	.nachsorge	{
		background-image:url(/files/admedia.de/content/images/nachsorge/ADMEDIA_nachsorge_titel_mobil.jpg);
	}

	.osteopathie	{
		background-image:url(/files/admedia.de/content/images/osteopathie/osteopathie_titel_mobil.jpg);
	}

	.logopaedie	{
		background-image:url(/files/admedia.de/content/images/logopaedie/ADMEDIA_Logopaedie_Titel_mobil.jpg);
	}
	
	.functional_screening	{
		background-image:url(/files/admedia.de/content/images/return_to_activity/functional_screening_titel_mobil.jpg);
	}
	
	.praxis_start	{
		background-image:url(/files/admedia.de/content/images/gemeinschaftspraxis/praxis_2_3_mobil.jpg);
	}
	
	.praxis_team	{
		background-image:url(/files/admedia.de/content/images/gemeinschaftspraxis/praxis_team_2_mobil.jpg);
	}
	
	.praxis_impressum, .praxis_datenschutz	{
		background-image:url(/files/admedia.de/content/images/gemeinschaftspraxis/impressum_praxis_4_mobil.jpg);
	}


	.schnuppertag	{
		background-image:url(/files/admedia.de/content/images/aktuelles/slider_labor_titel_mobil.jpg);
	}

	.admedino	{
		background-image:url(/files/admedia.de/content/images/aktuelles/streifen_admedino_mobil.jpg);
	}
	
	.ADMEDIA_move {
		background-image:url(/files/admedia.de/content/images/move/admedia_move_mobil.jpg);
}
	
	.rueckenaktiv {
		background-image:url(/files/admedia.de/content/images/freiberg/slider_rueckenaktiv_mobil.jpg);
		background-position:center;
	}
	
	.labor_start	{
		height: auto;
		min-height:70vh;
	}


	/* --------------------------------  bildstreifen innen ------------------------------- */
	
	
	.streifen_404 {
		background-image: url(/files/admedia.de/content/images/404/404_leitung_mobil.jpg); 
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height: 500px;
	}
	
	
	.herzsport	{
		background-image:url(/files/admedia.de/content/images/aktuelles/streifen_yoga_mobil.jpg);
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height:50vh;
		}
	

	.ADMEDIA_olympia_streifen_1 {
		background-image:url(/files/admedia.de/content/images/ambulante_reha/streifen_olympia_mobil.jpg);
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height: 600px;
	}
	
	.ADMEDIA_wohnortnah_streifen_1 {
		background-image:url(/files/admedia.de/content/images/ambulante_reha/wohnortnah_mobil.jpg);
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height: 500px;
	}
	
	.ADMEDIA_wohnortnah_streifen_2 {
		background-image:url(/files/admedia.de/content/images/ambulante_reha/wohnortnah_mobil.jpg);
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height: 600px;
	}
	
	.ADMEDIA_fitness_streifen_1 {
		background-image:url(/files/admedia.de/content/images/ambulante_reha/fitness_streifen_mobil.jpg);
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height: 700px;
	}
	
	
	.streifen_instagram_1 {
		background-image:url(/files/admedia.de/content/images/social_media/streifen_instagram_mobil.jpg);
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height: 1200px;
	}
	
	
	.streifen_mediazin {
		background-image:url(/files/admedia.de/content/images/aktuelles/mediazin_streifen_mobil.jpg);
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
			min-height: 800px;
	}

	
	.ADMEDIA_startseite {
		/* background-image:url(/files/admedia.de/content/images/startseite/outdoor_streifen_mobil.jpg); */
		background-image:url(/files/admedia.de/content/images/startseite/outdoor_streifen_2_mobil.jpg);
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height: 800px;
	}
	
	.ADMEDIA_erlebnistag {
		background-image:url(/files/admedia.de/content/images/aktuelles/erlebnistag_2024_mobil.jpg);
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position: right;
		width: 100vw;
		min-height: 660px;
	}
	
	
	.ADMEDIA_erlebnistag_2024_startseite	{
		background-image:url(/files/admedia.de/content/images/startseite/erlebnistag_slider_mobil_2.jpg);
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position: right;
		width: 100vw;
		min-height: 660px;
	}
	
	
	
	.ADMEDIA_silvester {
		/* background-image:url(/files/admedia.de/content/images/startseite/outdoor_streifen_mobil.jpg); */
		background-image:url(/files/admedia.de/content/images/startseite/outdoor_streifen_2_mobil.jpg);
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height: 800px;
	}
	
	.ADMEDIA_weihnachten_2023	{
		background-image:url(/files/admedia.de/content/images/aktuelles/weihnachten_2024_mobil.jpg);
		background-repeat:no-repeat; 
		background-size:cover; 
		min-height: 110vw;
		background-position: center bottom;
	}
	
	
	.ernaehrung_kalender {
		background-image:url(/files/admedia.de/content/images/ernaehrungsberatung/monatskalender_2025_mobil.jpg);
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:left;
		min-height: 700px;
	}
	
	
	.ADMEDIA_annett_nix	{
		background-image:url(/files/admedia.de/content/images/freiberg/aerztin_FG_mobil.jpg);
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height: 800px;
		}
		
		
	.heike_truschinski	{
		background-image:url(/files/admedia.de/content/images/chemnitz_rehazentrum/start_arzt.jpg);
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height:800px;
		}
		
	.ADMEDIA_parkplatz_35	{
		background-image:url(/files/admedia.de/content/images/chemnitz_physiotherapie/parkplatz_35_4_mobil.jpg);
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height:800px;
		}

	.ADMEDIA_RV_FIT {
		background-image:url(/files/admedia.de/content/images/RV_FIT/slider_RV_FIT_mobil.jpg);
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height:1000px;
	}
	
	
	.ADMEDIA_elektro_up	{
		background-image:url(/files/admedia.de/content/images/ambulante_reha/elektro_up_mobil.jpg);
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height: 800px;
	}
	
	.ADMEDIA_yoga	{
		background-image:url(/files/admedia.de/content/images/aktuelles/streifen_yoga_mobil.jpg);
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height: 800px;
	}
	
	.ADMEDIA_kinderschwimmen	{
		background-image:url(/files/admedia.de/content/images/aktuelles/streifen_kinderschwimmen_mobil.jpg);
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height: 800px;
	}
	
	
	.ADMEDIA_return_to_activity	{
		background-image:url(/files/admedia.de/content/images/return_to_activity/streifen_return_activity_mobil.jpg);
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height: 700px;
	}
	
	
	.streifen_instagram_2 {
		background-image:url(/files/admedia.de/content/images/social_media/ADMEDIA_social_titel_2_mobil.jpg);
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height: 700px;
	}
	
	
	.ADMEDIA_bistro_streifen_1 {
		background-image:url(/files/admedia.de/content/images/ambulante_reha/bistro_streifen_mobil.jpg);
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height: 600px;
	}


	.ADMEDIA_smart_shopping	{
		background-image: url(/files/admedia.de/content/images/aktuelles/smart_shopping_mobil.jpg); 
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height: 600px;
	}
	
	
	.ADMEDIA_praevention_streifen	{
		background-image: url(/files/admedia.de/content/images/aktuelles/streifen_kinderschwimmen_mobil.jpg); 
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height: 600px;
	}

	
	.ADMEDIA_formular_steifen_1	{
		background-image:url(/files/admedia.de/content/images/ambulante_reha/formular_streifen_mobil.jpg);
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height: 600px;
	}
	
	.ADMEDIA_download_steifen_1	{
		background-image:url(/files/admedia.de/content/images/ambulante_reha/formular_streifen_3_mobil.jpg);
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height: 900px;
	}


	.ergotherapie_ganzheitlich_steifen_1	{
		background-image: url(/files/admedia.de/content/images/ergotherapie/ergotherapie_ganzheitlichkeit_mobil.jpg); 
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height: 550px;
	}

	.streifen_ernaehrung_1, .streifen_ernaehrung_2 {
		background-image: url(/files/admedia.de/content/images/ernaehrungsberatung/ernaehrung_1_mobil.jpg); 
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
	}
	
	
	
	.ernaehrung_streifen_1	{
		background-image: url(/files/admedia.de/content/images/ernaehrungsberatung/ernaehrung_1_mobil.jpg); 
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height: 600px;
	}
	
	
	.wellness_ernaehrung_streifen_1	{
		background-image: url(/files/admedia.de/content/images/wellness/wellness_ernaehrung_mobil.jpg); 
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height: 600px;
	}

	.wellness_hotstone_streifen_1	{
		background-image: url(/files/admedia.de/content/images/wellness/wellness_hot_stone_mobil.jpg); 
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height: 600px;
	}
	
	.wellness_sauna_streifen_1	{
		background-image: url(/files/admedia.de/content/images/wellness/sauna_streifen_2_mobil.jpg); 
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height: 600px;
	}



	.AMM_streifen_1	{
		background-image: url(/files/admedia.de/content/images/AMM/AMM_kettlebell_mobil.jpg); 
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height: 600px;
	}
    
    
    .logopaedie_streifen_1	{
		background-image: url(/files/admedia.de/content/images/logopaedie/logopaedie_streifen_mobil.jpg); 
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height: 700px;
	}
	
	
	.karriere_FG_streifen_1	{
		background-image: url(/files/admedia.de/content/images/jobangebote/karriere_2022_FG_3_mobil.jpg); 
		background-repeat:no-repeat; 
		background-size:cover; 
		background-position:center;
		min-height: 850px;
}
    
    
    
    /* ----------------------------------------------  ende bildstreifen ------------------------------------- */
    
    .articleHeader .container-fluid {
    	min-height: 50vh;
    	margin-top: 5px;
	}
	
	.articleHeader_karriere .container-fluid {
	  height: 100%;
	  margin-top: 5px;
	}
	
	
	.labor_start	{
		height: auto;
		min-height:70vh;
	}
	
	
    
    .fotorecover	{
    	min-height:66vw;
    }
    
    .foto_100 img	{
		background-size:cover;
		background-position:center;
		width:100vw;
		min-height: 20vh;
		margin-left: 0;
	}
	
	.rahmen_links	{
		border-left: 0px solid #fff;
	}
	
	.foto_praxis	{
		 min-height:270px;
		 margin-top:10px;
	}
	
	.textblock	{
		text-align: justify; 
		width: 90%; 
		margin-left: 5%; 
		padding-bottom: 0px;
	}
    
    
    .el2 .ce_text:first-of-type {
    padding-left: 0px;
    padding-right: 0px;
	}
	
	.el2 .ce_text {
	    padding-left: 0px;
	    padding-right: 0px;
	    min-height: 100px;
	}
    
    .el3 .centerHolder	{
    	padding-left: 15px;
    	padding-right: 15px;
		margin-top: 60px;
		margin-bottom: 30px;
	
	}
    
    
    
    .el1 h3, .el1 h1, .el3 h3, .el3 h1	{
    	font-size: 7vw;
    	padding-top:20px;
	}
	
	.el3 h2, el3 h1	{
    	font-size: 12vw;
	}
	
	
	.el1 h2		{
    	font-size: 5vw;
    	font-weight:lighter;
    	/* text-align: left; */
	}
	
	
	.el1 p {
	    font-size: 0.9rem;
	    font-weight: normal;
	}
    
    .el1 p, .el3 p {
	    margin-top: 0px;
	}
    
    .el1 {
      padding-top: 10px;
	  padding-bottom: 10px;
	}
	
	
	.el1 .streifenueberschrift	{
		padding-top:30px;
		font-size: 12vw;
	}
	
	
	.el2 h4 {
	    font-size: 1.3em;
	}
	
	.el2 p	{
		font-size: 0.9em;
	}
	
	.el3 h4 {
	    font-size: 1.3em;
	}
	
	.el3 p	{
		font-size: 0.9em;
	}
	
	.headline_small {
	  font-weight: bolder;
	  font-size: 6vw;
	  text-align: center;
	}
	
	
	.p_left_100	{
		padding-left: 30px;
	}
	
	.margin_alle_null	{
		margin: 0px;
	}
	
	.padding_alle_null	{
		padding: 0px;
	}
    
    .ce_hyperlink.hyperlink	{
    	margin-top: 30px;
    	margin-bottom: 60px;
    }
    
    .ce_hyperlink.hyperlink_2 {
	  margin-top: 30px;
	  margin-bottom: 0px;
	}
    
    
    .eins {
    overflow: hidden;
    margin-top: -50px;
	}
	
	.littleMenu {
	   padding-bottom: 30px;
	   /* visibility: hidden; */
	}
	
	.littleMenu_2023	{
		visibility: hidden;
	}
	
	.shop_2023 {
	    position: fixed;
		top: 0px;
		right: 80vw;
		background-color: #f59c00;
		background-color: #2f4d76;
		padding: 5px 10px 0px 10px;
		border-radius: 0px 0px 10px 10px;
		color: #FFFFFF;
		font-size: 1.5em;
		z-index: 2;
	}
    
        
    .box .content {
	    border: 3px solid #fff;
	    padding: 5px;
	}
	.box:first-of-type .content {
	    border-left: 3px solid #fff;
	}
	.box:last-of-type .content {
	    border-right: 3px solid #fff;
	}
	
	.box:first-of-type .content .single	{
		border: 0px;
	}
	
	
	.box_1	{
		padding-top:100px;
		padding-bottom:100px;
		border: 0px;
	}
	
	.box_2, .box_3	{
		padding-top:100px;
		padding-bottom:100px;
		border: 0px;
		border-top: 10px solid #fff;
	}
	
	.box_4	{
		border: 0px;
		border-top: 10px solid #fff;
	}
	
	
	
	.box_1 p, .box_2, .box_3 p	{
		font-size: 0.8em;
	}
	
    
    .arzt {
	    /* margin-top: -5%; */
	}
    
    .box .content .textHolder .strong	{
	    font-size: 3vw;
	    font-weight: bold;
	    letter-spacing: 4px;
	}
	.box .content .textHolder .light	{
	    font-size: 2vw;
	    font-weight: 400;
	    letter-spacing: 3px;
	}
	

	.box .content .centerHolder_arzt {
	    margin-top: 17%;
	}
		
	.box .content .textHolder_arzt .strong	{
	    font-size: 2vw;
	    font-weight: bold;
	    line-height: 1.8;
	    letter-spacing: 5px;
	    margin-bottom: 5px;
	}
	.box .content .textHolder_arzt .light	{
	    font-size: 3vw;
	    font-weight: 400;
	    letter-spacing: 3px;
	    margin-top: 0px;
	}
	
	
	
	.box .content .textHolder p {
    	min-height: 20px;
    	line-height: 2.3;
	}
	
	.box .content .textHolder .strong .arzt {
		font-size:1vw;
		font-weight: bold;
	    letter-spacing: 5px;
	}
	
	.box .content .textHolder .strong_2 {
		font-family: 'Helvetica', sans-serif;
	    font-size: 4.5vw;
	    font-weight: bold;
	    letter-spacing: 1px;
	    line-height: 1.1;
		padding-bottom: 10px;
	}
	
	.box .content .textHolder .strong .long {
    	letter-spacing: 3px;
	}
	
	
	
	.box .content .textHolder .light_2 {
	    font-size: 3vw;
	    font-weight: lighter;
	    padding-top: 10px;
	    letter-spacing: 1px;
	    line-height: 1;
	}
		
		
		
	.box .content .centerHolder_praxis p	{
		font-size: 1em;
	}
	
	.box .content .centerHolder_praxis {
		  margin-top: 15%;
		  padding-left: calc(var(--bs-gutter-x)/ 2);
		}
	
	
	.box_icon	{
		margin-bottom: 5px;
	}
	
	
	.minimal	{
    	font-size: 0.6em;
    }
	
	
	.mobil_min_100	{
		margin-top: -100px;
	}
	
	.job, .job_links	{
		padding-left: 20px;
	}
	
	.b_50	{
		padding-bottom: 50px;
	}
	
	
	
	.formular_PLZ	{
	
		margin-bottom: 10px;
		width: 100%;
		height: 60px;
		}
	
	.button_PLZ	{
		
		margin-bottom: 30px;
		width: 100%;
		padding: 10px;
		font-family: 'Lulo-Clean-W01-One-Bold', sans-serif;
		font-size: 10px;
		border: 2px solid;
	   	border-color: #444444;
		color: #000000;
		text-decoration: none;
		background-color: #FFFFFF;
		margin-top: 20px;
	}
	
	.button_PLZ:hover {
	    background-color: #EFEFEF;
	    transition: 0.3s;
	}
	
	.button_bewerbung_2	{
		width: 100%;
	}
	
	.centerHolderlabor	{
		 margin-top:12%;
	}
	
	.p_desktop_50	{
		padding-left: 0px;
		padding-right:20px;
		padding-top:20px;
	}
	
}


@media only screen and (max-width: 768px)	{
	
	.box .content .textHolder .strong	{
	    font-size: 4.0vw;
	    font-weight: bold;
	    letter-spacing: 2px;
	}
	.box .content .textHolder .light	{
	    font-size: 3.5vw;
	    font-weight: 400;
	    letter-spacing: 3px;
	}
	
	.box .content .centerHolder_praxis p {
	  font-size: 0.8em;
	}

	.box .content .centerHolder_praxis h4, h3 {
	  padding-bottom: 10px;
	}
	
	.karriere h1 {
	    color: #99c4cb;
	    font-family: 'helvetica', "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif;
	    font-size: 1.7em;
	    margin-bottom: 30px;
	    line-height: 30px;
	    margin-top: 8px;
	}

}


/**************** switch exklusiv desktop und mobil ***************/

/* Mobile */
@media only screen and (max-width: 768px) {
  .unsichtbar_handy {
    display: none;
  }
  .unsichtbar_tablet, .unsichtbar_desktop {
    display: block; /* Falls auf mobilen Geräten die Tablet- und Desktop-Inhalte angezeigt werden sollen */
  }
}

/* Tablets */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .unsichtbar_tablet {
    display: none;
  }
  .unsichtbar_handy, .unsichtbar_desktop {
    display: block;
  }
}

/* Desktop */
@media only screen and (min-width: 1025px) {
  .unsichtbar_desktop {
    display: none;
  }
  .unsichtbar_handy, .unsichtbar_tablet {
    display: block;
  }
}

/**************** ende switch *************************************/


/* -------------  LINKBOX  ---------------------- */

.ce_hyperlink.hyperlink	{
	font-family: 'Lulo-Clean-W01-One-Bold', sans-serif;
	font-size: 10px;
	border: 2px solid;
	border-color: #444444;
	background-color: #FFFFFF;
}

.ce_hyperlink.hyperlink_gross	{
	font-family: 'Lulo-Clean-W01-One-Bold', sans-serif;
	font-size: 16px;
	border: 2px solid;
	border-color: #444444;
	color:#FFFFFF;
	background-color: #82c0d7;
}

.ce_hyperlink.hyperlink_ernaehrung	{
	font-family: 'Lulo-Clean-W01-One-Bold', sans-serif;
	background-color: #1fb601;
	border: 2px solid;
	border-color: #444444;
	color: #FFFFFF;
	cursor: pointer;
	padding-top: 20px;
	padding-bottom: 20px;
	font-size: 14px;
	max-width: 280px;
	overflow: hidden;
	text-align: center;
}

.ce_hyperlink.hyperlink_ernaehrung:hover {
	/* background-color: #2c5779; */
	background-color: #24aadb;
	transition: 0.3s;
}

.ce_hyperlink.hyperlink_admedino {
  font-family: 'Lulo-Clean-W01-One-Bold', sans-serif;
  background-color: #1397db;
  border: 2px solid;
    border-top-color: currentcolor;
    border-right-color: currentcolor;
    border-bottom-color: currentcolor;
    border-left-color: currentcolor;
  border-color: #444444;
  color: #FFFFFF;
  cursor: pointer;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 14px;
  max-width: 280px;
  overflow: hidden;
  text-align: center;
}

.ce_hyperlink.hyperlink_admedino:hover {
	/* background-color: #2c5779; */
	background-color: #24aadb;
	transition: 0.3s;
}

.ce_hyperlink.hyperlink_admedino_orange {
  font-family: 'Lulo-Clean-W01-One-Bold', sans-serif;
  background-color:#f59c00;
  border: 2px solid;
    border-top-color: currentcolor;
    border-right-color: currentcolor;
    border-bottom-color: currentcolor;
    border-left-color: currentcolor;
  border-color: #444444;
  color: #FFFFFF;
  cursor: pointer;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 14px;
  max-width: 280px;
  overflow: hidden;
  text-align: center;
}

.ce_hyperlink.hyperlink_admedino_orange:hover {
	/* background-color: #2c5779; */
	background-color: #24aadb;
	transition: 0.3s;
}

.ce_hyperlink.hyperlink_karriere	{
	font-family: 'Lulo-Clean-W01-One-Bold', sans-serif;
	font-size: 10px;
	border: 2px solid;
	border-color: #444444;
	background-color: #2c5779;
	
}
.ce_hyperlink.hyperlink_karriere a{
	color: #FFFFFF;
}


.ce_hyperlink.hyperlink:hover {
	background-color: #EFEFEF;
	transition: 0.3s;
}

.ce_hyperlink.hyperlink_karriere:hover {
	background-color: #8dbfb4;
	color:#FFFFFF;
	transition: 0.3s;
}