


/* ----------------------------- General ---------------------------*/
	

html, body {
    height:100%;
    overflow-x:hidden;
    -webkit-overflow-scrolling: touch;
}


/* Forms */
input, textarea {
	border-radius: 4px;
    color: black;
    display: inline-block;
    font-size: 15px;
    font-family:'focoregular', Helvetca, Arial, sans-serif;
    line-height: 20px;
    margin-bottom: 10px;
    padding: 4px 6px;
    vertical-align: middle;
    margin-bottom: 0;
    vertical-align: middle;
	background-color: #FFFFFF;
    border: 1px solid #CCCCCC;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
}
input:focus, textarea:focus {
	border-color: rgba(103, 155, 47, 0.6);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(103, 155, 47, 0.6);
    outline: 0 none;
}
input {
	height: 20px;
}

#wrapper {
	position:relative;
	width:100%;
	height:100%;
}
/* Info Box */
.frameCount-item {
	display:block;
}


/* ------------------------ Header ------------------------------- */
#header {
	position:relative;
	z-index:999;
	width:100%;
	height:auto;
}
.headerWrapper {
	margin: 0 auto;
	width: 1260px;
	background-color: white;
}

/*  Navigation  */

#navigation {
	float:left;
	height:165px;	
	position:relative;
	z-index:1000;
	
}
#navigation ul {
	list-style-type:none;	
}
#navigation li {
	display: inline-block;	
	width:130px;
	text-align:center;
	padding: 0;
	margin-right:4px;
	vertical-align:top;
}
#navigation li.mainMenu-1st a {
	font-size: 22px;
	color:rgb(0,0,0);
	border-bottom:4px solid white;
	width:100%;
	height:110px;
	display:inline-block;
	padding-top:70px;
	background-color:white;
	/* For Safari 3.1 to 6.0 */
	-webkit-transition-property:background-color,border-color;
	-webkit-transition-duration:0.3s;
	-webkit-transition-timing-function:linear;
	-webkit-transition-delay:0;
	/* Standard syntax */
	transition-property:background-color,border-color;
	transition-duration:0.3s;
	transition-timing-function:linear;
	transition-delay:0;
}
#navigation li.mainMenu-1st > a:hover {
	background-color:rgb(240,240,240);
	border-bottom:4px solid var(--apocolor);
}
#navigation li.mainMenu-1st-ifsub > a:hover,
#navigation li.mainMenu-1st-actsub > a:hover {
	background-color:rgb(240,240,240);
	border-bottom:4px solid rgb(240,240,240);
	cursor:pointer;
}
#navigation li.mainMenu-1st-actsub a {
	background-color:rgb(240,240,240);
	border-bottom:4px solid var(--apocolor);
}
#navigation li.mainMenu-1st-ifsub-hover a {
	background-color:rgb(240,240,240);
	border-bottom:4px solid rgb(240,240,240);
}
#navigation li.mainMenu-1st-act a {
	background:rgb(240,240,240);
	border-bottom:4px solid var(--apocolor);
}

/* 2nd */

#navigation .navigation-2nd {
	margin-left:0;
	padding-left:0;
}
#navigation .navigation-2nd li {
	height:57px;
	background-color:white;
}
#navigation .navigation-2nd li a {
	font-size:14px;
	line-height:57px;
	height:57px;
	padding-top:0;
	border-top:1px solid white;
	border-bottom:none;
	box-sizing: border-box;
	
}
#navigation .navigation-2nd li:nth-child(1) a {
	background-color:rgba(232,231,229,1);
}
#navigation .navigation-2nd li:nth-child(1) a:hover {
	background-color:rgba(232,231,229,0.2);
}
#navigation .navigation-2nd li:nth-child(2) a {
	background-color:rgba(225,224,220,1);
}
#navigation .navigation-2nd li:nth-child(2) a:hover {
	background-color:rgba(225,224,220,0.2);
}
#navigation .navigation-2nd li:nth-child(3) a {
	background-color:rgba(217,215,210,1);
}
#navigation .navigation-2nd li:nth-child(3) a:hover {
	background-color:rgba(217,215,210,0.2);
}
#navigation .navigation-2nd li:last-child a {
	border-bottom:4px solid var(--apocolor);
}

#navigation li.mainMenu-1st-ifsub ul,
#navigation li.mainMenu-1st-actsub ul {
    opacity: 0;
    visibility: hidden;
    height:0;
    -webkit-transition: all .3s linear;
       -moz-transition: all .3s linear;
        -ms-transition: all .3s linear;
         -o-transition: all .3s linear;
            transition: all .3s linear;
}
#navigation li.mainMenu-1st-ifsub:hover ul,
#navigation li.mainMenu-1st-actsub:hover ul {
    opacity: 1;
    visibility: visible;
}

/* Mobile */
#navigation .menu-responsive-button {
	display: none;
	margin:60px	0 0 20px;
	cursor:pointer;
}
#navigation .menu-responsive-button .line {
	width:46px;
	height: 4px;
	margin:9px 0;
	background-color:var(--apocolor);
}
#wrapperMobile {
	position:relative;
	width:100%;
}
#navigationMobile {
	position:absolute;
	left:-180px;
	top:0;
	width:180px;
	height: 100%;
	background-color: var(--apocolor);
	z-index:2000;
}

#navigationMobile .mainMenu-1st {
	background-color: white;
}
#navigationMobile .mainMenu-1st a {
	height:48px;
	line-height:48px;
	padding-left:20px;
	color:white;
	font-size:22px;
	background-color: var(--apocolor);
	display:block;
	border-bottom:3px solid var(--apocolor);
	/* For Safari 3.1 to 6.0 */
	-webkit-transition-property:background-color,border-color,color;
	-webkit-transition-duration:0.3s;
	-webkit-transition-timing-function:linear;
	-webkit-transition-delay:0;
	/* Standard syntax */
	transition-property:background-color,border-color,color;
	transition-duration:0.3s;
	transition-timing-function:linear;
	transition-delay:0;
}
#navigationMobile .mainMenu-1st a:hover {
	background-color: rgba(108,140,49, 0.2);
	border-bottom:3px solid white;
	color:var(--apocolor);
}
#navigationMobile .mainMenu-1st:last-child {
	/*border-bottom:1px solid rgb(108,140,49);*/
}
#navigationMobile .mainMenu-2nd a {
	font-size:14px;
	padding-left:40px;
	
}


/*  Logo  */
.headerLogo {
	float:right;
	margin:18px 0 0 0;
}

.headerImage {
	clear:both;
	padding:0;
	position:relative;
}


#bar{
  width: 0%;
  max-width: 100%;
  height: 4px;
  background: #679B2F;
}
#progressBar{
  width: 100%;
  background: #EDEDED;
}


/* ------------------------ Header bottom ------------------------------- */

.headerBottom {
  background-color: var(--apocolor);
}
.headerBottom .frame.opening-popup {
	filter: drop-shadow(rgba(0, 0, 0, 0.15) 0px 2px 5px);
	background-color:white;
	position:absolute;
	right:-164px;
	top:-18px;
	padding:20px 30px;
	border-radius:10px;
	display:none;
	font-size:14px;
	font-weight:500;
}
@keyframes example {
  0%   {display: block;opacity:0;}
  100% {display: block;opacity: 1;}
}
.headerBottom .frame.opening-popup.active {
	display: block;
	animation-name: example;
  	animation-duration: 2s;
}
.headerBottom .frame.opening-popup .close {
	content:"+";
	position:absolute;
	right:0;
	top:0;
	z-index:1;
	color:var(--fontcolor);
	font-size: 28px;
	width:28px;
	height:28px;
	text-align:center;
	transform:rotate(45deg);
	cursor:pointer;
}
.headerBottom .frame.opening-popup::after {
	content:"";
	width: 0px;
	height: 0px;
	transform:rotate(360deg);
	border-style: solid;
	border-width: 15px 20px 15px 0;
	border-color: transparent rgb(255,255,255) transparent transparent;
	position:absolute;
	left:-15px;
	top:17px;
}
.headerBottom .frame.opening-popup tr.active {
	background-color:var(--apocoloropak);
	font-weight:700;
}

.opening-popup td {
	text-align:left;
	color: var(--fontcolor);
	padding:0 5px;
}
.opening-popup td:first-child {
	padding-right:0;
}
.emergency-plan a:hover {
	color:white;
}
@media only screen  and (max-width: 1499px) {
	.headerBottom .frame.opening-popup {
		right:405px;
	}
	.headerBottom .frame.opening-popup::after {

		transform:rotate(180deg);
		left:initial;
		right:-20px;
		top:17px;
	}
	.headerBottom .wrapper {
		overflow:initial;
	}
}
@media only screen  and (max-width: 768px) {
	.headerBottom .frame.opening-popup {
		display:none !important;
	}
}



/* ------------------------ Content ------------------------------- */
main {
	min-height: calc(100vh - 300px);
}

/* default */
#mainWrap {
	display:table;
	margin: 0 auto;
	padding:100px 70px 100px 70px;
	width: 1120px;
	background-color: rgb(240,240,240);
	position:relative;
}
#mainWrap section, #mainWrap aside {
	display:table-cell;
	vertical-align: top;
}
#mainWrap aside{
	width:330px;
}
#content {
	height:100%;
	width:100%;
	font-size: 22px;
	line-height: 31px;
	padding-right:60px;
	/* text-align:justify; */
	-webkit-hyphens: auto;
 	-moz-hyphens: auto;
 	-ms-hyphens: auto;
 	hyphens: auto;
}

#content h1, #content h2, #content h3, #content h4, #content h5 {
	text-align:left;
}
#content article {
	position:relative; /* braucht es für die Footer Position*/
    width:100%;
    /*min-height:400px;*/
}
#content article:last-child .articleContainer {
	

}
#content .csc-header h1 {
	margin-bottom:16px;
}
#content .csc-header h1 a {
	color:var(--apocolor);
}
#content .csc-header h1 a:hover {
	color:rgb(222,13,43);;
}

/* Form Content */ 

.Tx-Formhandler .row {
	clear:both;
	margin-bottom: 15px;
}
.Tx-Formhandler .row-files {
	margin-bottom: 0;
}
.Tx-Formhandler .row .large-3 {
	float:left;
	width:19%;
}
.Tx-Formhandler .row .large-9 {
	margin-left:20%;
}
.Tx-Formhandler .row-text {
	width:78%;
}
.Tx-Formhandler .row-files p {
	line-height:1px;
}
#content input, #content textarea {
	width:70%;
}
#content input[type=checkbox] {
	width:auto;
	display:inline-block;
	margin:-4px 8px 0 0;
}
#content input[type=radio] {
	width:auto;
	display:inline-block;
	margin:-4px 8px 0 0;
}
#content .contact-type-private, #content .contact-type-commercial {
	display:inline-block;
	margin-right:8px;
}
#content input[type=submit] {
	background-color: #EBEBEB;
    color: black;
    height:36px;
    width:auto;
    margin-left:20%;
    border-color: #ADADAD;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
}
#content input[type=submit]:hover {
	cursor:pointer;
	border-color: rgba(103, 155, 47, 0.6);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(103, 155, 47, 0.6);
    outline: 0 none;
}
#content input[disabled=disabled] {
	background-color: rgb(250,250,250);
    border-color: #ADADAD;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    transition: border 0.2s linear 0s, box-shadow 0.2s linear 0s;
}
#content input[disabled=disabled]:hover {
	cursor:default;
    border-color: #ADADAD;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
	
}

#content small.error {
	font-size:15px;
	color:rgb(222,13,43);
	display:block;
}
#content label.error {
	color:rgb(222,13,43);
}
#content .mandatoryText {
	font-size:15px;
	color:rgb(222,13,43);
}
#content .ajaxVerification {
	position:absolute;
	left:124px;
	margin-top:-30px
}

/* Camera */



#content .form-file-allow {
	font-size:15px;
}
#show-picture {
	width:70%;
	height:auto;
	margin-top:5px;
}

/* Openstreetmap */
.openstreetmap iframe {
	width:730px;
	height:500px;
}

/* Angebot des Monats */
#page-190 #content, 
#page-207 #content {
	padding-right:0px;
}
#page-190 #content article.angebotWoche, 
#page-207 #content article.angebotWoche {
	width:350px;
	float:left;
	margin-right:30px;
}
#page-190 #content article.angebotWoche:nth-child(4), 
#page-207 #content article.angebotWoche:nth-child(4),
#page-190 #content article.angebotWoche:nth-child(7), 
#page-207 #content article.angebotWoche:nth-child(7) {
	margin-right:0 !important;
}
#page-190 h1 + h2, #page-207 h1 + h2 {
	font: 15px "focolight", Helvetica, Arial, sans-serif;
	font-style:normal;
	margin-bottom:20px;
}
#page-190 #content article.angebotWoche h2, 
#page-207 #content article.angebotWoche h2 {
	color:var(--apocolor);
	padding-left:10px;
}
#page-190 #content article.angebotWoche .textpicText, 
#page-207 #content article.angebotWoche .textpicText {
	padding:0 10px;
	font-size:15px;
	line-height: 20px;
	color:var(--apocolor);
	text-align:left;
	
}
#page-190 #content article.angebotWoche .textpicText {
	border-top:4px solid var(--apocolor);
	margin-top: -5px;
	padding-top:10px;
	text-align:center;
}
#page-190 #content article.angebotWoche img, 
#page-207 #content article.angebotWoche img {

}

#page-190 #content article.angebotWoche .csc-textpic-caption, 
#page-207 #content article.angebotWoche .csc-textpic-caption {
	margin-top:4px;
	padding:10px 0;
	color:rgb(255,255,255);
	font-size:28px;
	font-family:'focobold', Helvetca, Arial, sans-serif;
	text-align:center;
	background-color: var(--apocolor);

}
#page-190 #content article.angebotWoche .csc-textpic-caption p, 
#page-207 #content article.angebotWoche .csc-textpic-caption p {
	background-color: var(--apocolor);

}

#page-190 #content article.angebotWoche .csc-textpic-caption strike, 
#page-207 #content article.angebotWoche .csc-textpic-caption strike {
	background: url(../image/strike.png) no-repeat center;
	text-decoration: none;
	font-family:'focolight', Helvetca, Arial, sans-serif;
	font-size:20px;
	display:inline-block;
	padding:0 5px;
}
#page-190 #content article.angebotWoche .csc-textpic-caption strike.special-offer, 
#page-207 #content article.angebotWoche .csc-textpic-caption strike.special-offer {
	background-image:none;
}

#page-190 #content article:nth-child(5), 
#page-207 #content article:nth-child(5) {
	clear:both;
}
#page-190 #content article:nth-child(8), 
#page-207 #content article:nth-child(8) {
	clear:both;
	font-size:15px;
	padding-top:30px;
	line-height: 20px;
}

/* List */

#content ul {
	margin-left: 20px;
}

/* Schiffsversorgung */
article#c751 {
	font-size: 18px;
	position:absolute;
	top:0;
	right:0;
	padding:10px 70px 0 0;
}


/* Video */

.video-embed-item {
	width:100%;
}

/* read more */


.hidden-text-more { /* https://keithjgrant.com/posts/2023/04/transitioning-to-height-auto/ */
	cursor:pointer;
	display:none;
	color:var(--apocolor);
}
.hidden-text {
  display: block;
}

@media only screen and (max-width: 767.9px) {
	.accordion-text {
		margin-bottom:80px;
	}
	.hidden-text-more {
		display:block;
	}
	.hidden-text {
	  	display: grid;
	  	grid-template-rows: 0fr;
	  	transition: grid-template-rows 0.5s ease-out;
	}
	
	.hidden-text.active {
	  	grid-template-rows: 1fr;
	}
	
	.hidden-text-inner {
	  	overflow: hidden;
	}
}

/* spaces */

main.ahorn .frame-layout-0,
main.gehlsdorfer .frame-layout-0 {
	margin-bottom: 80px;
}
main.ahorn .frame-layout-5,
main.gehlsdorfer .frame-layout-5 { /* ohne Abstand danach */
	margin-bottom:0;
}




/* ------------------------ Aside ------------------------------- */ 
#asideContent {
	font-size:18px;
}
aside article h1 {
	background-color:var(--apocolor);
	color:white;
	font-size:24px;
	padding:14px;
	border-bottom:3px solid rgb(240,240,240);
}
aside article {
	margin-top:40px;
}
aside article:first-child,
aside article:nth-child(2),
aside article:last-child {
	margin-top:0px;
}
aside article {
	background-color:rgb(225,235,213);
	line-height: 20px;
}
aside article:first-child {
	background-color:rgb(225,235,213);
	line-height: 28px;
}
aside .asideAngeboteItem article:first-child {
	background-color:transparent;
	line-height:initial;
}


aside article .pureText {
	padding:14px;
}

aside .contenttable td {
    border-top: none;
    padding:0;
}

/* Notdienstplan */
aside .nodienstplanPDF {
	background-color:rgb(225,235,213);
	margin-top:-5px;
	padding:0 14px 14px 14px;
}
/* Zertifikate */
aside #c745 {
	margin-top:0;
	padding:18px 44px 10px 44px;
	border-top: 3px solid rgb(240, 240, 240);
}

img[alt="Ausbildung Pharmazeuten"] {
	margin-left:0;
}
img[alt="Derkra Zertifikat"] {
	margin-right:10px;
}

/* Angebot der Woche */
aside .notfall {
	background-color:rgb(225,235,213);
	padding:0 14px 14px 14px;
}
aside .notfall a {
font-family: 'focobold',Helvetca,Arial,sans-serif;
    font-weight: normal;
    color: #679b2f;
}
/* Angebot der Woche */

.angeboteAside {
	background-color:white;
	border:1px solid var(--apocolor);
	margin-top:50px;
	padding-bottom:10px;
	cursor:pointer;
	
}
.angeboteAside .asideAngeboteItem:first-child {
	background: url(../image/angebot_weiss.png) no-repeat 0 29px transparent;
	background-size: 260px 10px;
	color:var(--apocolor);
	font-size:28px;
	margin:-30px 15px 20px 15px;
	padding:14px;
	border-bottom:none;
}
.angeboteAside .asideAngeboteItem:first-child h1 {
	background-color: transparent;
	color:var(--apocolor);
	margin-top:0;
	padding-top:0;
	border:none;
}

.angeboteAside .csc-textpic-caption {
	padding:5px 0 5px 0;
	color:rgb(255,255,255);
	font-size:16px;
	font-family:'focobold', Helvetca, Arial, sans-serif;
	text-align:center;
	background-color: var(--apocolor);
}

.angeboteAside .csc-textpic-caption strike {
	color:rgb(255,255,255);
	font-family:'focolight', Helvetca, Arial, sans-serif;
	font-size:12px;
}
.angeboteAside .csc-textpic-caption strike.special-offer {
	text-decoration: none;
	font-size:8px;	
}
.angeboteAside .asideAngeboteItem .asideAngeboteItemText {
	display:none;
}
.angeboteAside .asideAngeboteItem:nth-child(8) .asideAngeboteItemText {
	display:block;
}
.angeboteAside .asideAngeboteItem h1 {
	display:none;
}
.angeboteAside .asideAngeboteItem:first-child h1 {
	display:block;
}
.angeboteAside .asideAngeboteItem:nth-child(2),
.angeboteAside .asideAngeboteItem:nth-child(3),
.angeboteAside .asideAngeboteItem:nth-child(4),
.angeboteAside .asideAngeboteItem:nth-child(5),
.angeboteAside .asideAngeboteItem:nth-child(6),
.angeboteAside .asideAngeboteItem:nth-child(7) {
	float:left;
	margin-right:10px;
}
.angeboteAside .asideAngeboteItem:nth-child(2),
.angeboteAside .asideAngeboteItem:nth-child(5) {
	margin-left:20px;
}
.angeboteAside .asideAngeboteItem:nth-child(8) {
	clear:left;
	margin:0 20px 0 20px;
	color:var(--apocolor);
	font-family:'focolight', Helvetca, Arial, sans-serif;
	font-size:12px;
}
.angeboteAside .csc-textpic-caption p:last-child {
	border-bottom:2px solid white;
	padding-bottom:5px;
	margin-bottom:-5px;
}
.angeboteAside .csc-textpic-caption {
	border-bottom: 2px solid var(--apocolor);
}

/* Openstreetmap */

#page-198 .openstreetmapRechts, #page-198 .openstreetmapRechts + a {
	display:none !important;
}

/* Notdienste */
#Notdienste .ndHeader {
	cursor:pointer;
	/*background: url(../image/arrow_open_box.png) no-repeat 0 0 var(--apocolor) ;*/
}
#Notdienste .ndHeader h1 {
	background: url(../image/arrow_open_box_hover.png) no-repeat 285px 20px var(--apocolor);
}
#Notdienste .ndBox {
	 position: relative;  
	 background-color: white; 
	 padding: 14px; 
	 margin: 0;
	 border:1px solid var(--apocolor);
	 border-top:none;
	 display:none;
}
#Notdienste .ndFormBox {
	position: relative;  
	width: 100%;
}

#Notdienste .ndFormBox form {
	padding: 0; 
	border: 0;
	margin: 0;
}

#Notdienste .ndFormBox fieldset {
	height: 44px; 
	background: #fff url(../image/Deutsche_Apotheke_Logo.png) no-repeat 2px 5px; 
	background-size: 32px auto;
	padding: 0; 
	margin: 0;
}

#Notdienste .ndFormBox .text {
	position: absolute; 
	top: 7px; 
	left: 43px;  
	width: 210px; 
	background-color: #fff; 
	color:black;
}

#Notdienste .ndFormBox .img {
	position: relative; 
	left: 275px; 
	height:30px;
	width:15px;
	padding: 0; 
	margin: 7px 0 0 0;
	border:0;
	background-color:none;
	box-shadow:none;
}
	
#Notdienste .ndBox #finderTextAponet {
	position: relative; 
	margin: 10px 0 0 0;
	font-size: 12px; 
	line-height: 14px; 
	width: 100%; 
	height:60px;
	padding: 10px 0;
	margin: 0;
	background-color: white;
}
#Notdienste .ndBox .textAponet {
	position: relative; 
	float:left;
	padding-left: 5px;
}
#Notdienste .ndBox .imagelinkAponet {
	position: relative;
	background-image: none;
	float:right;
	padding-right: 5px;
}
#Notdienste .ndBox .imagelinkAponet a {
	background-image: none; 
	color: #fff; 
	text-decoration: none;
	float:right;
}


.bfarm {
	text-align:center;
	padding:20px 0 10px;
}
.bfarm img{
	width:110px;
	height:auto;
}

.tx-ahornoffers {
	position:relative;
	padding-top:80px;
}

.tx-ahornoffers::before {
	content:"";
	display:block;
	position:absolute;
	top:-80px;
	bottom:-20px;
	left:calc(-50vw + 590px);
	right:calc(-50vw + 590px);;
}

@media only screen  and (max-width: 1180px) {
	.tx-ahornoffers::before {

		left:-20px;
		right:-20px;
	}
}

@media only screen  and (max-width: 680px) {
	.tx-ahornoffers {
		padding-top:40px;
		/*background-color:rgba(103,155,47,0.1);*/
	}
	
}



/* ------------------------ Footer ------------------------------- */

#footerContent .footer {
	font-size:14px;
	margin:0;
	padding:0;
	color:rgb(0,0,0);
	width:100%;
}
#footerContent .footer article {
	min-height:auto;
	margin: 0 auto;
	padding:7px 0 30px 0;
	width: 1260px;
	text-align:center;
	border-bottom:8px solid var(--apocolor);
	background-color: rgb(240,240,240);
}



#footer .menu-selected-pages li a{
	padding:0 5px;
	border-right:1px solid white;
}
#footer .menu-selected-pages li:last-child a{
	border-right:none;
}

app-chat-button {
	display:none !important;
}
.chat-widget {
    /*transform: scale(1.4);*/
    right: 0;
    bottom: 0;
	position:fixed;

}


#superchat-widget-content-root {
	margin-bottom:60px !important;
}
.ahorn-phone {
	position:fixed;
	right:11px;
	bottom:85px;
	z-index:10100;
}
.ahorn-phone .phone0:hover {
	background-color:var(--apocolor);
}
.ahorn-phone a:hover {
	color:var(--apocolor);
}
.ahorn-phone:hover {
	transform-origin: center;
	transform:scale(1.1);
}
.ahorn-phone svg{
	width:57px;
	height:57px;
}
.link-mea-shop {
	position:fixed;
	right:11px;
	bottom:20px;
}
.link-mea-shop:hover {
	transform-origin: center;
	transform:scale(1.1);
}
#Mea-Shop {
	width:57px;
	height:57px;
}
/* ------------------------ Divers ------------------------------- */


.copyright-freepik {
	font-size:9.5px;
	text-align:right;
	position:absolute;
	bottom:40px;
	right:-75px;
	transform: rotate(-90deg);
}
.copyright-freepik a {
	color:#679C2B
}
.copyright {
  font-size: 9.5px;
  text-align: right;
  position: absolute;
  bottom: 110px;
  right: 0;
  transform: rotate(-90deg);
  transform-origin: right bottom;
}
.copyright a {
	color:#679C2B
}
/* PLZ Lieferservice */
#c826 h5 {
	display:inline-block;
	padding:7px;
	margin:7px;
	background-color: rgb(225,235,213);
	color:var(--apocolor);
	border:1px solid var(--apocolor);
	border-radius:2px;
}

.job-offers {
	background-color:rgb(222,13,43);
	width:240px;
	height:240px;
	border-radius:50%;
	color:white;
	text-align:center;
	vertical-align:middle;
	position:absolute;
	z-index:1001;
	top:-200px;
	right:-20px;
	transform: rotate(5deg);
}
.job-offers span {
	display:table-cell;
	vertical-align:middle;
	height:240px;
	font-weight:bold;
}
.job-offers span a {
	color:white;
	display:inline-block;
	margin-top:8px;
	border:1px solid white;
	border-radius:15px;
	padding:0 5px;
}

@media only screen and (min-width: 808px) and (max-width: 1024px) {
	
	.job-offers {
		top:-230px;
		right:-36vw;
		width:200px;
		height:200px;
	}
	.job-offers span {
		height:200px;
	}
}
@media only screen  and (max-width: 694px) {
	.job-offers {
		width:180px;
		height:180px;
	}
	.job-offers span {
		height:180px;
		font-size: 16px;
		line-height: 22px;
	}
}
@media only screen  and (max-width: 499px) {
	.job-offers {
		top:-80px;
	}
}

/* ========================================================================== */
/* ================================= 1024 =================================== */

@media only screen and (min-width: 1054px) and (max-width: 1260px) {
    
	#header:before {
        content: "";
    }
    
    /* ----------------------------- General ---------------------------*/
    
    img {
    	/*max-width: 1024px;*/
    	height: auto;
    }
    
    /* ------------------------ Header ------------------------------- */
	
	.headerWrapper {
		width: 100%;
	}
	
	/*  Logo  */
	.headerLogo {
		float:right;
		margin:18px 60px 0 0;
	}
	
	/* Header caption */
	.headerImage .csc-textpic-caption {
		font-size:3vw;
		line-height:4.15vw;
	}

	#page-210 .headerImage .csc-textpic-caption {	/* Schiffsversorgung */
		top: 40px;
		left:40px; 
	}

	#page-211 .headerImage .csc-textpic-caption { /* Heimversorgung */
		top: 40px;
		right:40px;
	}
	
	/* Owl Slider */
	
	.owl-item .csc-textpic-caption {
		font-size:0;
		line-height:0;
	}
	.owl-item .csc-textpic-caption .infotext { 
		/*font-size:38px;
		line-height:50px;*/
		top: 40px;
		left:40px;
		font-size:3vw;
		line-height:3.968vw;
	}
	.owl-item  .csc-textpic-caption.Impfpass .infotext { 
		/*font-size:26px;
		line-height:34px;*/
	}
	.owl-item .csc-textpic-caption .infolinkContainer {
		/*border:2px solid white;
		bottom:250px;*/
		bottom:19.1vw;
	}
	.owl-item .csc-textpic-caption .infolink {
		/*font-size:38px;
		line-height:62px;*/
		font-size:3vw;
		padding:0 40px;
		line-height: 5vw;
	}
	.owl-item .Heimversorgung .infolinkContainer { /* Heimversorgung */
		bottom:19vw;
	}
	.owl-item .Schiffsversorgung .infolinkContainer { /* Schiffsersorgung */
		bottom:19vw;
		left:14.2vw;
	}
	.owl-item .Rezepte-Freiumschlag .infotext {  /* Freiumschlag */
		top: 6.2vw;
		left:49vw;
		margin-right:3.2vw;
	}
	.owl-item .Rezepte-Freiumschlag .infolinkContainer { /* Freiumschlag */
		bottom:8vw;
		right:17vw;
	}
	.owl-item .vorort .infotext {  /* Vor Ort */
		top: auto;
		left:80px;
		bottom:80px;
	}
	.owl-item .meashop .infotext {  /* Mea Shop */
		top: 80px;
		left:80px;
		font-size: 38px;
	}
	.owl-item .csc-textpic-caption.PoC-NAT .infolinkContainer{  /* PoC-NAT */
		left:40px;
		bottom:150px;	
	}
	.owl-item .meashop .infolinkContainer {
		bottom:auto;
		left:80px;
		top:200px;
		right:auto;
	}
	.owl-item .Schnelltest .infotext {  /* Schnelltests */
		font-size:26px;
		line-height:34px;
	}
	
	.owl-theme .owl-controls .owl-buttons .owl-prev {
		top:18vh;
	}

	.owl-theme .owl-controls .owl-buttons .owl-next {
		top:18vh;
	}
	
	/* Apotheken App */
	.owl-item .Apotheken-App .infotext {
		top:4.762vw;
		left:4.762vw;
	}
	.owl-item .Apotheken-App li {
		font-size:1.825vw;
		background-size:auto 45% ;
		background-position: 0 0.952vw;
		padding-left:3.175vw;
	}
	.owl-item .stores {
		top:24.619vw;
		left:7.936vw;
	}
	.owl-item .stores a {
		width:14.286vw;
		height:4.524vw;
		margin-right:3.17vw;
	}

    /* ------------------------ Content ------------------------------- */
    
    #mainWrap {
		padding:40px 60px 40px 60px;
		width: auto;
	}
	#content {
		/*padding-left:60px;*/
		
	}
	

	/* Map */
	#page-198 #content .csc-textpic-image img {
		width:100%;
		height:auto;
	}

	
	/* Form Content */ 
	#content .ajaxVerification {
		left:104px;
		margin-top:-30px
	}
	.Tx-Formhandler .row .large-3 {
		float:left;
		width:19%;
	}
	.Tx-Formhandler .row .large-9 {
		margin-left:20%;
	}
	.Tx-Formhandler .row-text {
		width:100%;
	}
	#content input, #content textarea {
		width:100%;
	}
	
	/* Angebote */ 
	
	#page-190 #content {
		text-align:center;
		vertical-align:top;
	}
	#page-190 #content article.angebotWoche {
		width:300px;
		float:none;
		display:inline-block;
		vertical-align:top;
		text-align:center;
		margin-left:auto;
		margin-right:auto;
	}
	#page-190 #content article.angebotWoche img {
    	max-width: 300px;
    	height: auto;
    }
    #page-190 #content article:last-child {
    	text-align:left;
    }
    
    /* Schiffsversorgung */
	article#c751 {
		font-size: 18px;
		position:absolute;
		top:0;
		right:0;
		padding:10px 60px 0 0;
	}
	#page-210 #mainWrap {
		padding-top:60px;
	}
	
	#content .image-embed-item {
		width:100%;
	}
	
	/* ------------------------ Aside ------------------------------- */ 
	
	#page-190 #asideContent {
		display:none;
	}
	
	#mainWrap aside {
		width: 300px;
	}
	aside #c745 {
		padding: 18px 34px 10px;
	}
	.angeboteAside img {
		/*max-width: 80px;*/
	}
	.rightMap {
		display:block;
		width:300px;
		overflow:hidden;
	}
	.rightMap img {
		margin-left:-10px;
	}
	
	/* ------------------------ Footer ------------------------------- */

	
    #footerContent .footer article {
		width: 100%;
	}
    
    
}

/* ========================================================================== */
/* ================================= 1240 Mobile Menu =================================== */
@media only screen and (max-width: 1239px) {
	/* Navigation */
	#navigation li {
		display:none;
	}
	#navigation .menu-responsive-button {
		display:block;
	}
	#navigationMobile {
		left:-180px;
	}
	
	/*  Logo  */
	.headerLogo {
		float:right;
		margin:18px 60px 0 0;
	}
}

@media only screen and (max-width: 860px) {
	#footer .menu-selected-pages {
		margin-left:-5px;
	}
	#footer .frame-type-menu_pages {
		float:none;
	}
	#footer .frame-type-text {
	  float: none;
	}
}

/* ========================================================================== */
/* ================================= 768 =================================== */

@media only screen and (min-width: 808px) and (max-width: 1053px) {
	#header:before {
        content: "";
    }
    /* ----------------------------- General ---------------------------*/
    
    img {
    	/*max-width: 768px;*/
    	height: auto;
    }
    
    /* ------------------------ Header ------------------------------- */
	
	.headerWrapper {
		width: 100%;
	}
	
	/* Navigation */
	#navigation li {
		display:none;
	}
	#navigation .menu-responsive-button {
		display:block;
	}
	#navigationMobile {
		left:-180px;
	}
	
	/*  Logo  */
	.headerLogo {
		float:right;
		margin:18px 60px 0 0;
	}
	
	/* Header caption */
	.headerImage .csc-textpic-caption {
		font-size:3vw;
		line-height:4.15vw;
	}

	#page-210 .headerImage .csc-textpic-caption {	/* Schiffsversorgung */
		top: 40px;
		left:40px; 
	}

	#page-211 .headerImage .csc-textpic-caption { /* Heimversorgung */
		top: 40px;
		right:40px;
	}
	
	/* Owl Slider */
	
	.owl-item .csc-textpic-caption {
		font-size:0;
		line-height:0;
	}
	.owl-item .csc-textpic-caption .infotext { 
		/*font-size:38px;
		line-height:50px;*/
		top: 40px;
		left:40px;
		font-size:3vw;
		line-height:4.15vw;
	}
	.owl-item  .csc-textpic-caption.Impfpass .infotext { 
		/*font-size:26px;
		line-height:34px;*/
	}
	.owl-item .csc-textpic-caption .infolinkContainer {
		/*border:2px solid white;
		bottom:250px;*/
		bottom:20vw;
	}
	.owl-item .csc-textpic-caption .infolink {
		/*font-size:38px;
		line-height:62px;*/
		font-size:3vw;
		padding:0 40px;
		line-height: 4.2vw;
	}
	.owl-item .Heimversorgung .infolinkContainer { /* Heimversorgung */
		bottom:17vw;
	}
	.owl-item .Schiffsversorgung .infolinkContainer { /* Schiffsersorgung */
		bottom:17vw;
		left:14.2vw;
	}
	.owl-item .Rezepte-Freiumschlag .infotext {  /* Freiumschlag */
		top: 6.2vw;
		left:49vw;
		margin-right:3.2vw;
	}
	.owl-item .Rezepte-Freiumschlag .infolinkContainer { /* Freiumschlag */
		bottom:8vw;
		right:17vw;
	}
	.owl-item .vorort .infotext {  /* Vor Ort */
		top: auto;
		left:40px;
		bottom:80px;
	}
	.owl-item .meashop .infotext {  /* Mea Shop */
		top: 80px;
		left:80px;
		font-size: 38px;
		line-height: 50px;
	}
	.owl-item .meashop .infolinkContainer {
		bottom:auto;
		left:80px;
		top:200px;
		right:auto;
	}
	.owl-item .csc-textpic-caption.PoC-NAT .infolinkContainer{  /* PoC-NAT */
		left:40px;
		bottom:120px;	
	}
	.owl-item .image-caption.Schnelltest {  /* Schnelltests */
		width:51%;
	}
	.owl-item .Schnelltest .infotext {  /* Schnelltests */
		margin-right:auto;
		text-align:left;
		color: var(--apocolor);
		hyphens:auto;
	}
	
	.owl-theme .owl-controls .owl-buttons .owl-prev {
		top:13vh;
	}

	.owl-theme .owl-controls .owl-buttons .owl-next {
		top:13vh;
	}
	
	/* Apotheken App */
	.owl-item .Apotheken-App .infotext {
		top:4.762vw;
		left:4.762vw;
	}
	.owl-item .Apotheken-App li {
		font-size:1.825vw;
		background-size:auto 45% ;
		background-position: 0 0.952vw;
		padding-left:3.175vw;
	}
	.owl-item .stores {
		top:24.619vw;
		left:7.936vw;
	}
	.owl-item .stores a {
		width:14.286vw;
		height:4.524vw;
		margin-right:3.17vw;
	}
	
	
	
		
    /* ------------------------ Content ------------------------------- */
    
    

	#mainWrap {
		padding:40px 60px 40px 60px;
		width: auto;
	}
	#content {
		font-size:18px;
		line-height:26px;
	}
	#content h1, #content h1 a, #content h2, #content h2 a, #content h3, #content h4, #content h5, #content h6 {
    font-size: 22px;
	}

	
	/* Form */
	#c695 h1, #c697 h1 {
		margin-left: 110px;
	}
	
	#content input, #content textarea {
		width: 100%;
	}
	.Tx-Formhandler .row-text {
		width:100%;
	}
	.Tx-Formhandler .row .large-3 {
		width:115px;
	}
	.Tx-Formhandler .row .large-9 {
		margin-left: 120px;
	}
	#content input[type=submit] {
		margin-left:110px;
	}
	#content .ajaxVerification {
		left:98px;
		margin-top:-30px
	}
	
	/* Map */
	#page-198 #content .csc-textpic-image img {
		width:100%;
		height:auto;
	}
	
	
	/* Angebote */ 
	
    #page-190 #content {
		text-align:center;
		vertical-align:top;
	}
	#page-190 #content article.angebotWoche {
		width:216px;
		float:none;
		display:inline-block;
		vertical-align:top;
		text-align:center;
		margin-left:auto;
		margin-right:auto;
	}
	#page-190 #content article.angebotWoche img {
    	max-width: 216px;
    	height: auto;
    }
    #page-190 #content article:last-child {
    	text-align:left;
    }
    
    
	/* Schiffsversorgung */
	article#c751 {
		font-size: 18px;
		position:absolute;
		top:0;
		right:0;
		padding:10px 60px 0 0;
	}
	#page-210 #mainWrap {
		padding-top:60px;
	}
	
	#content .image-embed-item {
		width:100%;
	} 
	
	/* ------------------------ Aside ------------------------------- */ 
	
	#page-190 #asideContent {
		display:none;
	}
	
	#mainWrap aside {
		width: 245px;
		padding-right:0;
	}
	aside #c745 {
		padding: 18px 24px 10px;
	}
	aside #c745 img {
		max-width: 70px;
		height:auto;
	}
	.angeboteAside img {
		/*max-width: 80px;*/
	}
	.rightMap {
		display:block;
		width:245px;
		overflow:hidden;
	}
	.rightMap img {
		margin-left:-35px;
	}
	aside article h1 {
		font-size:18px;
		padding: 10px 14px;
	}
	aside .angeboteAside h1 {
		font-size: 18px;
	}
	
	.rightMap img {
		max-width:100%;
		height:auto;
	}
	
	/* ------------------------ Footer ------------------------------- */

	#footerContent .footer article {
		width: auto;
		padding:7px 40px 30px 40px;
	}
    
    
}


/* ========================================================================== */
/* ================================= 480 =================================== */

@media only screen and (min-width: 500px) and (max-width: 807px) {
    #header:before {
        content: "";
    }
    /* ----------------------------- General ---------------------------*/
    
    img {
    	/*max-width: 480px;*/
    	height: auto;
    }
    
    /* ------------------------ Header ------------------------------- */
	
	.headerWrapper {
		width: 100%;
	}
	
	/* Navigation */
	#navigation {
		height:132px;
	}
	#navigation li {
		display:none;
	}
	#navigation .menu-responsive-button {
		display:block;
		margin-top:52px;
	}
	#navigationMobile {
		left:-180px;
	}
	
	/*  Logo  */
	.headerLogo {
		float:right;
		margin:18px 20px 0 0;
	}
	.headerLogo img {
		width:190px;
		height:auto;
	}
	
	/* Header caption */
	.headerImage .csc-textpic-caption {
		font-size:3.5vw;
		line-height:4.8vw;
	}

	#page-210 .headerImage .csc-textpic-caption {	/* Schiffsversorgung */
		top: 20px;
		left:40px; 
	}

	#page-211 .headerImage .csc-textpic-caption { /* Heimversorgung */
		top: auto;
		bottom:10px;
		right:40px;
	}
	
	/* Owl Slider */
	
	.owl-item .csc-textpic-caption {
		font-size:0;
		line-height:0;
	}
	.owl-item .csc-textpic-caption .infotext { 
		/*font-size:38px;
		line-height:50px;*/
		top: 20px;
		left:40px;
		font-size:3vw;
		line-height:4.15vw;
	}
	.owl-item  .csc-textpic-caption.Impfpass .infotext { 
		/*font-size:20px;
		line-height:30px;*/
	}
	.owl-item .csc-textpic-caption .infolinkContainer {
		/*bottom:250px;*/
		bottom:20vw;
		border:1px solid white;
	}
	.owl-item .csc-textpic-caption .infolink {
		/*font-size:38px;
		line-height:62px;*/
		font-size:2.6vw;
		padding:0 20px;
		line-height: 3.8vw;
	}
	.owl-item .Heimversorgung .infotext { /* Heimversorgung */
		right:20px;
	}
	.owl-item .Heimversorgung .infolinkContainer { /* Heimversorgung */
		bottom:17vw;
		right:10vw;
	}
	.owl-item .Schiffsversorgung .infolinkContainer { /* Schiffsersorgung */
		bottom:17vw;
		left:17vw;
	}
	.owl-item .Rezepte-Freiumschlag .infotext {  /* Freiumschlag */
		top: 6.2vw;
		left:49vw;
		margin-right:3.2vw;
	}
	.owl-item .Rezepte-Freiumschlag .infolinkContainer { /* Freiumschlag */
		bottom:8vw;
		right:17vw;
	}
	.owl-item .vorort .infotext {  /* Vor Ort */
		top: auto;
		left:40px;
		bottom:80px;
	}
	.owl-item .meashop .infotext {  /* Mea Shop */
		top: 40px;
		left:40px;
		font-size: 24px;
		line-height: 36px;
	}
	.owl-item .meashop .infolinkContainer {
		bottom:auto;
		left:40px;
		top:120px;
		right:auto;
		font-size: 24px;
	}
	.owl-item .csc-textpic-caption.meashop .infolink {
	  font-size: 24px;
	  line-height: 36px;
	}
	.owl-item .csc-textpic-caption.PoC-NAT .infolinkContainer{  /* PoC-NAT */
		left:40px;
		bottom:15vw;	
	}
	.owl-item .csc-textpic-caption.Schnelltest {  /* Schnelltests */
		top:20px;
	}
	.owl-item .Schnelltest .infotext {  /* Schnelltests */
		top: 20px;
		left:20px;
		margin-right:auto;
		padding:5px;
		font-size:3vw;
		line-height: 3.6vw;
	}
	.owl-item .csc-textpic-caption.Impfpass .infolinkContainer { /* Impfpass */
		border:1px solid white;
	}
	.owl-item .csc-textpic-caption.Schnelltest .infolinkContainer {
		border:1px solid var(--apocolor);
	}
	
	.owl-item .Schnelltest .infotext .himmelfahrt {
		left:50vw;
	}
	
	
	
	.owl-theme .owl-controls .owl-buttons .owl-prev {
		display:none;
	}

	.owl-theme .owl-controls .owl-buttons .owl-next {
		display:none;
	}
	
	/* Apotheken App */
	.owl-item .Apotheken-App .infotext {
		top:4.762vw;
		left:4.762vw;
	}
	.owl-item .Apotheken-App li {
		font-size:1.825vw;
		background-size:auto 45% ;
		background-position: 0 0.952vw;
		padding-left:3.175vw;
	}
	.owl-item .stores {
		top:24.619vw;
		left:7.936vw;
	}
	.owl-item .stores a {
		width:14.286vw;
		height:4.524vw;
		margin-right:3.17vw;
	}
	
	.special-opening {
		top:30px;
		right:-100;
		padding:10px 100px;
		font-size:20px;
	}
    
    /* ------------------------ Content ------------------------------- */

	#mainWrap {
		padding:40px 40px 40px 40px;
		width: auto;
	}
	#mainWrap section, #mainWrap aside {
		display:block;
	}
	#content {
		font-size: 18px;
		line-height: 26px;
		padding-right:0;
	}

	#content h1, #content h1 a {
		font-size:22px;
		line-height:26px;
	}
	
	
	/* Form */
	#c695 h1, #c697 h1 {
		margin-left: 90px;
	}
	
	#content input, #content textarea {
		width: 90%;
	}
	.Tx-Formhandler .row-text {
		width:90%;
	}
	.Tx-Formhandler .row .large-9 {
		margin-left: 90px;
	}
	#content input[type=submit] {
		margin-left:90px;
	}
	#content .ajaxVerification {
		left:72px;
		margin-top:-15px
	}
	
	/* Map */
	#page-198 #content .csc-textpic-image img {
		width:100%;
		height:auto;
	}
	
	/* Angebote */ 
    
	#page-190 #content {
		text-align:center;
		vertical-align:top;
	}
	#page-190 #content article.angebotWoche {
		width:132px;
		float:none;
		display:inline-block;
		vertical-align:top;
		text-align:center;
		margin-left:auto;
		margin-right:auto;
	}
	#page-190 #content article.angebotWoche img {
    	max-width: 132px;
    	height: auto;
    }
    #page-190 #content article:last-child {
    	text-align:left;
    }
    
    
    #page-190 #content article.angebotWoche .csc-textpic-caption {
		font-size: 22px;
	}
    #page-190 #content article.angebotWoche .csc-textpic-caption strike {
		font-size: 16px;
		background-size: 100px 12px;
	}
	
	
	
	/* Owl */
	.owl-pagination {
		bottom:0px;
	}
    
	/* Schiffsversorgung */
	article#c751 {
		font-size: 15px;
		position:absolute;
		top:0;
		right:20px;
		padding:10px 10px 0 0;
	}
	#page-210 #mainWrap {
		padding-top: 60px;
	}
	
	#content .image-embed-item {
		width:100%;
	}
	
    
	/* ------------------------ Aside ------------------------------- */ 
	
	#mainWrap aside{
		width:auto;
		margin:40px 0;
	}
	
	#Notdienste .ndHeader h1 {
		background-position: 400px 20px ;
	}
	.angeboteAside  {
		text-align:center;
	}
	.angeboteAside .asideAngeboteItem:nth-child(1) {
		text-align:left;
	}
	.angeboteAside .asideAngeboteItem:nth-child(2), 
	.angeboteAside .asideAngeboteItem:nth-child(3), 
	.angeboteAside .asideAngeboteItem:nth-child(4) {
		margin-left:3%;
		margin-right:3%;
		display:inline-block;
		float:none;
	}
	
	.rightMap{
		text-align:center;
		display:block;
		background-color: rgb(218,218,218);
	}
	.rightMap img {
		max-width:100%;
		height:auto;
	}
	
	
	
	/* ------------------------ Footer ------------------------------- */

	#footerContent .footer article {
		width: auto;
		padding:7px 40px 30px 40px;
	}
    
}

/* ========================================================================== */
/* ================================= 680 =================================== */

@media only screen and (min-width: 1px) and (max-width: 680px) {
	.ahorn-phone {
		transform:scale(0.7);
		bottom:45px;
	} 
	.link-mea-shop {
		transform:scale(0.7);
		bottom:-5px;
	}
}

/* ========================================================================== */
/* ================================= 600 =================================== */

@media only screen and (min-width: 1px) and (max-width: 599px) {
	.owl-item .image-caption.Impfpass {
		top: 30px;
		left: 30px;
	}
}
/* ========================================================================== */
/* ================================= 320 =================================== */

@media only screen and (min-width: 1px) and (max-width: 499px) {
    #header:before {
        content: "";
    }
    /* ----------------------------- General ---------------------------*/
    
    img {
    	/*max-width: 320px;*/
    	height: auto;
    }
    
    /* ------------------------ Header ------------------------------- */
	
	.headerWrapper {
		width: 100%;
	}
	
	/* Navigation */
	#navigation {
		height:100px;
	}
	#navigation li {
		display:none;
	}
	#navigation .menu-responsive-button {
		display:block;
		margin-top:39px;
	}
	#navigation .menu-responsive-button .line {
		width:40px;
		height: 3px;
		margin:8px 0;
		background-color:var(--apocolor);
	}
	#navigationMobile {
		left:-180px;
	}
	
	/* logo */
	
	.headerLogo {
		float:right;
		margin:18px 20px 0 0;
	}
	.headerLogo img {
		width:130px;
		height:auto;
	}
	
	/* Header caption */
	.headerImage .csc-textpic-caption {
		font-size:3.9vw;
		line-height:5.2vw;
	}

	#page-210 .headerImage .csc-textpic-caption {	/* Schiffsversorgung */
		top: 20px;
		left:20px; 
	}

	#page-211 .headerImage .csc-textpic-caption { /* Heimversorgung */
		top: auto;
		bottom:10px;
		right:20px;
	}
	
	/* Owl Slider */
	
	.owl-item .csc-textpic-caption {
		font-size:0;
		line-height:0;
	}
	.owl-item .csc-textpic-caption .infotext { 
		/*font-size:38px;
		line-height:50px;*/
		top: 20px;
		left:40px;
		font-size:3.6vw;
		line-height:4.15vw;
	}
	.owl-item .csc-textpic-caption .infolinkContainer {
		/*
		bottom:250px;*/
		bottom:15vw;
		border:1px solid white;
	}
	.owl-item .csc-textpic-caption .infolink {
		/*font-size:38px;
		line-height:62px;*/
		font-size:3vw;
		padding:0 10px;
		line-height: 4.2vw;
	}
	.owl-item .Heimversorgung .infotext { /* Heimversorgung */
		right:20px;
	}
	.owl-item .Heimversorgung .infolinkContainer { /* Heimversorgung */
		bottom:17vw;
		right:10vw;
	}
	.owl-item .Schiffsversorgung .infolinkContainer { /* Schiffsersorgung */
		bottom:17vw;
		left:20vw;
	}
	.owl-item .Rezepte-Freiumschlag .infotext {  /* Freiumschlag */
		top: 6.2vw;
		left:49vw;
		margin-right:3.2vw;
	}
	.owl-item .Rezepte-Freiumschlag .infolinkContainer { /* Freiumschlag */
		bottom:8vw;
		right:17vw;
	}
	.owl-item .vorort .infotext {  /* Vor Ort */
		top: auto;
		left:20px;
		bottom:20px;
	}
	.owl-item .meashop .infotext {  /* Mea Shop */
		top: 10px;
		left:20px;
		font-size: 20px;
		line-height: 30px;
	}
	.owl-item .meashop .infolinkContainer {
		bottom:auto;
		left:20px;
		top:80px;
		right:auto;
		font-size: 20px;
	}
	.owl-item .csc-textpic-caption.lieferservice .infotext{  /* Lieferservice */
		left:20px;
	}
	.owl-item .csc-textpic-caption.lieferservice .infolinkContainer {
		left:20px;
	}
	.owl-item .csc-textpic-caption.PoC-NAT .infotext{  /* PoC-NAT */
		width:50%;
		left:20px;
	}
	.owl-item .csc-textpic-caption.PoC-NAT p{ 
		display:inline;
	}
	.owl-item .csc-textpic-caption.PoC-NAT .infolinkContainer {
		left:20px;
		bottom:10px;
	}
	
	.owl-item .csc-textpic-caption.meashop .infolink {
	  font-size: 20px;
	  line-height: 30px;
	}
	.owl-theme .owl-controls .owl-buttons .owl-prev {
		display:none;
	}

	.owl-theme .owl-controls .owl-buttons .owl-next {
		display:none;
	}
	.owl-pagination {
		bottom:0px;
	}
	.owl-theme .owl-controls .owl-page span {
		border-radius: 20px;
		height: 8px;
		margin: 3px 4px;
		width: 8px;
	}
	
	
	/* Apotheken App */
	.owl-item .Apotheken-App .infotext {
		top:4.762vw;
		left:4.762vw;
		font-size: 22px;
		width:62.23vw;
		height:120px;
		line-height: 26px;
		background-color: var(--apocolor);
	}
	.owl-item .Apotheken-App li {
		font-size:1.825vw;
		background-size:auto 45% ;
		background-position: 0 0.952vw;
		padding-left:3.175vw;
		display:none;
	}
	.owl-item .stores {
		top:23vw;
		left:4.762vw;
	}
	.owl-item .stores a {
		width:17.910vw;
		height:5.671vw;
		margin-right:3.17vw;
	}
	
	.special-opening {
		top:30px;
		right:-100;
		padding:10px 100px;
		font-size:15px;
	}
	.owl-item .csc-textpic-caption.Schnelltest {  /* Schnelltests */
		top:20px;
		left:20px;
		background-color: rgba(255,255,255,0.9);
		width:calc(100vw - 50px);
	}
	.owl-item .csc-textpic-caption.Schnelltest .infolinkContainer {
		border:1px solid var(--apocolor);
		margin:10px 5px;
	}
	
	.owl-item .Schnelltest .infotext {  /* Schnelltests */
		
		padding:5px;
		font-size:3.5vw;
		
	}
	.owl-item .Schnelltest .infotext .himmelfahrt {
		left:50vw;
		font-size: 3.5vw;
		line-height: 4.15vw;
		width:30vw;
		height:30vw;
		padding-top:15px;
	}
	.owl-item .csc-textpic-caption.Impfpass .infolinkContainer { 
		border:1px solid white;
	}
	
    
    /* ------------------------ Content ------------------------------- */

	#mainWrap {
		padding:20px 20px 40px 20px;
		width: auto;
		display:block;
	}
	#content {
		font-size: 18px;
		line-height: 26px;
		padding-right:0;
	}
	#mainWrap section, #mainWrap aside{
		display:block;
	}
	#mainWrap aside{
		width:280px;
		padding-left:0;
		margin-top:40px;
	}
	
	#content h1, #content h1 a {
	font-size:22px;
	line-height:26px;
	}
	
	/* Form */
	#c695 h1, #c697 h1 {
		margin-left: 0;
	}
	#content input, #content textarea {
		width: 90%;
	}
	.Tx-Formhandler .row-text {
		width:90%;
	}
	.Tx-Formhandler .row .large-3 {
		width: 80px;
	}
	.Tx-Formhandler .row .large-9 {
		margin-left: 80px;
	}
	#content input[type=submit] {
		margin-left:80px;
	}
	#content .ajaxVerification {
		left:54px;
		margin-top:-15px
	}
	
	/* Map */
	#page-198 #content .csc-textpic-image img {
		width:100%;
		height:auto;
	}
	
	
	/* Angebote */ 
	#page-190 #content {
		text-align:center;
		vertical-align:top;
	}
	#page-190 #content article.angebotWoche {
		width:280px;
		margin:0 0 20px 0;
		float:none;
		display:inline-block;
	}
	#page-190 #content article.angebotWoche img {
    	max-width: 280px;
    	height: auto;
    }
    div.csc-textpic-center .csc-textpic-center-inner {
		float: none;
		right: 0;
	}
    div.csc-textpic-center .csc-textpic-center-outer {
		float: none;
		right: 0;
	}
	#page-190 #content article:nth-child(5), 
	#page-207 #content article:nth-child(5) {
		clear:both;
		font-size:12px;
		padding-top:20px;
	}
	
    #page-190 #content article:last-child {
    	text-align:left;
    }
	
    
	/* Schiffsversorgung */
	article#c751 {
		font-size: 15px;
		position:absolute;
		top:0;
		right:0;
		padding:10px 10px 0 0;
	}
	#page-210 #mainWrap {
		padding-top: 50px;
	}
    
    #content .image-embed-item {
		width:100%;
	}
	
	/* ------------------------ Aside ------------------------------- */ 
	
	#mainWrap aside{
		width:auto;
		margin:20px 0;
	}
	
	#Notdienste .ndHeader h1 {
		background-position: 260px 20px ;
	}
	
	#Notdienste .ndFormBox .text {  
		width: 190px; 
	}
	#Notdienste .ndFormBox .img {
		left: 255px; 
	}
	#Notdienste .ndBox .textAponet {
		width:70px;
	}
	
	/* Angebote */
	.angeboteAside  {
		text-align:center;
	}
	.angeboteAside .asideAngeboteItem:nth-child(1) {
		text-align:left;
	}
	.angeboteAside .asideAngeboteItem:nth-child(2), 
	.angeboteAside .asideAngeboteItem:nth-child(3), 
	.angeboteAside .asideAngeboteItem:nth-child(4) {
		display:inline-block;
		float:none;
		margin-left:3%;
		margin-right:3%;
	}
	.angeboteAside img {
		max-width: 75px;
	}
	
	.rightMap{
		text-align:center;
		display:block;
		background-color: rgb(218,218,218);
	}
	.rightMap img {
		max-width:100%;
		height:auto;
	}
	
	
	
	/* Zertifikate */
	aside #c745 {
		padding: 18px 20px 10px;
	}

	img[alt="Ausbildung Pharmazeuten"] {
		margin-left:20px;
	}
	img[alt="Derkra Zertifikat"] {
		margin-right:10px;
	}
	/* ------------------------ Footer ------------------------------- */

	#footerContent .footer article {
		width: auto;
		padding:7px 20px 30px 20px;
	}
	
	
}










