/*
	Theme Name: Stern-Apotheke Martfeld 2026
	Theme URI: https://www.stern-apotheke-martfeld.de/
	Description: Stern-Apotheke Martfeld 2026 Theme
	Version: 1.0
	Author: Christoph Karnebogen, Mirco Hueneke
	Author URI: http://www.diewildengestalten.de
*/

/* ------------------- WEBFONT IMPORT (GOOGLE FONTS) ------------------- */

/* caveat-700 - BOLD */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Caveat';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/caveat-v23-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-regular - REGULAR */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/lato-v25-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-italic - ITALIC */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: italic;
  font-weight: 400;
  src: url('fonts/lato-v25-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-700 - BOLD */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/lato-v25-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-900 - HEAVY */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Lato';
  font-style: normal;
  font-weight: 900;
  src: url('fonts/lato-v25-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}




/* ------------------- VARIABLES ------------------- */
/* fuer IE extra script css-vars.js laden */
:root {
	--sa-green: #87bd25;
	--sa-lightgreen: #f4f8ea;
	--sa-red: #d13f4b;
	
	--container-size: 1140px;
	
	--info-bar-space: 90px;
}



/* ------------------- BASIC ------------------- */

body{
	font-family: 'Lato';
	font-style: normal;
	font-weight: 400;
	color: #3c3c3c;
	font-size: 18px;
	line-height: 1.67;
}

::focus {
    outline: 0 !important;
}

.effect, a{
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

p:last-child{
	margin-bottom: 0;
}

a {
	color: inherit;
}

a:hover {
	color: inherit;
}




/* --------------- HEADINGS AND TXT --------------- */

h1, h2{
	font-family: 'Caveat';
	font-style: normal;
	font-weight: 700;	
	font-size: 80px;
	margin-bottom: -5px;
	margin-left: -40px;
}

.text-center h1, .text-center h2{ margin-left: 0; }

h3{
	font-family: 'Caveat';
	font-style: normal;
	font-weight: 700;	
	font-size: 40px;
	margin-bottom: 50px;
    line-height: 1;
    margin-top: 10px;
}

h4{
	font-weight: 700;	
	font-size: 20px;
	margin-bottom: 20px;
	text-transform: uppercase;
}





/* -------------------- COLORS -------------------- */

.sa-green{ color: var(--sa-green); }
.bg-sa-green { --bg: var(--sa-green); }
.bg-sa-lightgreen { --bg: var(--sa-lightgreen); }
.white{ color: white; }




/* ------------------- NAVIGATION ------------------- */

.navbar {
    padding: 0;
    position: absolute;
    top: 0;
    z-index: 50;
	width: 100%;
	padding-right: 65px;
}

.navbar-brand {
	background-color: white;
    padding: 20px 45px 20px 20px;
	border-bottom-right-radius: 20px;
}

.navbar-brand img{
	width: 360px;
}

.navbar-nav .nav-link {
    background-color: white;
    border-radius: 100px;
    padding: 5px 20px !important;
    margin-left: 15px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    color: var(--sa-green);
}

.navbar-nav .nav-link:hover {
	padding: 5px 25px !important;
}

.menu-small a {
    text-transform: none !important;
}

.menu-green a{
	background-color: var(--sa-green) !important;
	color: white !important;	
}

.bun, .patty{
	background-color: white;
	height: 3px;
	width: 38px;
	display: block;
	margin-bottom: 6px;
	transform: rotate(0deg);
	-webkit-transition: all 0.3s ease-in-out !important;
	-moz-transition: all 0.3s ease-in-out !important;
	-ms-transition: all 0.3s ease-in-out !important;
	-o-transition: all 0.3s ease-in-out !important;
	transition: all 0.3s ease-in-out !important;
}

.bun-bottom{
	margin-bottom: 0;
}

.fake-patty{ position: absolute;
	margin-top: -9px;
	transform: rotate(0deg);
	-webkit-transition: transform 0.3s ease-in-out;
	-moz-transition: transform 0.3s ease-in-out;
	-ms-transition: transform 0.3s ease-in-out;
	-o-transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
}

.navbar.active .bun, .navbar.active .patty{
	background-color: white;
}

.navbar.active .patty{
	transform: rotate(-45deg);
}

.navbar.active .fake-patty{
	transform: rotate(45deg) !important;
	-webkit-transition: transform 0.3s ease-in-out;
	-moz-transition: transform 0.3s ease-in-out;
	-ms-transition: transform 0.3s ease-in-out;
	-o-transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
}

.navbar.active .bun{
	opacity: 0;
}

.navbar-toggler {
    padding: 0;
    border: none;
    z-index: 50;
    position: absolute;
    top: 40px;
    right: 40px;
}










/* ----------------- FOOTER ----------------- */

footer{
	background-color: var(--sa-green);	
	padding: 40px 0;
	color: white;
}

.footer-logo{
	width: 300px;
}

.flex-col{
	display: flex;
}

.link-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
	padding-left: 60px;
}

.dwg{
	font-size: 13px;
}

footer a:hover{
	text-decoration: none;
}








/* ----------------- FORMULAR ----------------- */

.wpcf7{
  --text: #2c2c2c;
  --muted: #6b6b6b;
  --radius: 999px;
  --radius-box: 28px;
  --border: 3px;
  --field-h: 54px;

  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  max-width: 740px;
  margin: 0 auto;
	margin-top: 50px;
}

.wpcf7 .wpcf7-form label{
  display: block;
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 10px;
}

.label-spacer{
	padding-left: 20px;
}

.label-spacer p{
	margin-bottom: 10px;
}


/* Falls du Labels als Text im <p> hast (ohne <label>) */
.wpcf7 .wpcf7-form p{
  font-size: 18px;
}

/* Inputs/Textarea/Select */
.wpcf7 .wpcf7-form-control.wpcf7-text,
.wpcf7 .wpcf7-form-control.wpcf7-email,
.wpcf7 .wpcf7-form-control.wpcf7-tel,
.wpcf7 .wpcf7-form-control.wpcf7-url,
.wpcf7 .wpcf7-form-control.wpcf7-number,
.wpcf7 .wpcf7-form-control.wpcf7-select,
.wpcf7 .wpcf7-form-control.wpcf7-textarea{
  width: 100%;
  box-sizing: border-box;
  border: var(--border) solid var(--sa-green);
  outline: none;
  padding: 14px 18px;
  font-size: 18px;
  line-height: 1.2;
  color: var(--text);
  background: #fff;
}

/* Pill-Form für normale Felder */
.wpcf7 .wpcf7-form-control.wpcf7-text,
.wpcf7 .wpcf7-form-control.wpcf7-email,
.wpcf7 .wpcf7-form-control.wpcf7-tel,
.wpcf7 .wpcf7-form-control.wpcf7-url,
.wpcf7 .wpcf7-form-control.wpcf7-number,
.wpcf7 .wpcf7-form-control.wpcf7-select{
  height: var(--field-h);
  border-radius: var(--radius);
}

/* Textarea */
.wpcf7 .wpcf7-form-control.wpcf7-textarea{
  min-height: 260px;
  border-radius: var(--radius-box);
  resize: vertical;
}

/* Focus */
.wpcf7 .wpcf7-form-control:focus{
  box-shadow: 0 0 0 4px rgba(134,177,59,.18);
}

/* Placeholder */
.wpcf7 .wpcf7-form-control::placeholder{
  color: #9a9a9a;
}

/* CF7 Response / Fehler */
.wpcf7 .wpcf7-response-output{
  border: 0;
  margin: 16px 0 0;
  padding: 0;
  text-align: center;
  font-size: 16px;
}

.wpcf7 .wpcf7-not-valid-tip{
  color: #b00020;
  font-size: 14px;
  margin-top: 8px;
}

.info{
	text-align: right;
	font-size: 13px !important;
	margin-bottom: 30px;
}

/* ===== CF7 Submit: Text optisch zentriert + Pfeil rechts ===== */
.hidden-submit{
    display: none !important;
}

.wpcf7 .cta-pill{
	margin-top: 0px;
}

.cf7-fake-submit{
	padding: 0 !important;
}













/* ----------------- ELEMENTS ----------------- */

#lay-dsim {
    padding: 250px 0 150px 0;
}

.ds-im h1 {
    margin-bottom: 50px;
	color: var(--sa-green);
}

.ds-im h2 {
    margin-top: 50px;
    text-align: left;
    font-size: 30px;
    margin-bottom: 10px;
	margin-left: 0;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
    font-weight: bold !important;
}

.ds-im h3 {
    margin-bottom: 10px;
    margin-top: 40px;
    text-align: left;
    font-weight: 900 !important;
    font-size: 20px;
	font-family: 'Lato';
	font-style: normal;
	font-weight: 400;
	line-height: 1.3;
}

.ds-im h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 30px;
}

.ds-im ul {
    padding-left: 15px;
}

.ds-im a {
    color: var(--sa-green);
	word-break: break-all;
}

.ds-im ol p {
	padding-left: 15px;
	margin-bottom: 15px;
}

#lay-intro{
	padding-top: calc( 150px + var(--info-bar-space) );
	padding-bottom: 0;
}

#lay-services{
	padding: 150px 0;
	position: relative;
	overflow-x: clip;
}

#lay-app{
	padding: 150px 0;
}

#lay-social{
	padding: 150px 0;
	overflow-x: clip;
}

#lay-contact{
	padding: 150px 0;
}

#lay-cta{
	padding: 150px 0;
}

.img-edge{
	width: calc( 100% + ( 100vw - var(--container-size) ) / 2 + 15px );
}

.service-wrap-space{
	margin-bottom: 30px;
}

.service-wrap{
	background-color: white;
	border-radius: 20px;
	padding: 30px;
	height: 100%;
	
    filter: drop-shadow(0px 0px 40px rgba(0, 0, 0, 0.15));
}

.service-description {
    line-height: 1.2;
    margin-bottom: 13px;
	font-size: 16px;
}

.service-description:last-child {
	margin-bottom: 0;
}

.img-icon{
	height: 50px;
	margin-bottom: 40px;
	margin-top: 10px;
}

#lay-services .container{
	position: relative;
	z-index: 1;
}

.bg-star {
    height: calc(100% + 100px);
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
}

.eapps-instagram-feed-posts-grid-load-more{
	display: none !important;
}

.owl-item .owl-item-content{
	height: 850px;
	background-size: cover;
	background-position: center center;
	position: relative;
}

.owl-item-content h2 {
    position: absolute;
    top: 250px;
    left: 50%;
    margin-left: 0;
    transform: translateX(-50%);
    color: white;
    font-size: 95px;
    font-weight: 900;
	line-height: 0.9;
	z-index: 5;
    text-shadow: 0 0 25px black;
	white-space: nowrap;
}

.owl-carousel {
  position: relative;
}

.owl-theme .owl-dots {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.owl-theme .owl-dots .owl-dot span {
	width: 16px;
	height: 16px;
	
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.owl-theme .owl-dots .owl-dot.active span {
	border: 2px solid white;
	background-color: transparent !important;
}

.owl-theme .owl-dots .owl-dot span {
    margin: 0px 0px;
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: white !important;
}

.carousel-wrapper {
  position: relative;
}

.slider-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.2);
    position: absolute;
    z-index: 1;
	mix-blend-mode: multiply;
}

.info-bar {
    position: absolute;
    bottom: calc( var(--info-bar-space) * -1 );
    left: 0;
    z-index: 10;
	width: 100%;
}

.white-box{
	background-color: white;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom: 10px solid var(--sa-green);
	padding: 50px;
}

.green-box{
	background-color: var(--sa-green);
	border-radius: 20px;
	padding: 50px 30px;
	height: 100%;
	text-align: center;
}

.icon-insta{
	width: 50px;
	margin-bottom: 0px;
}

.social-spacer{
	height: 50px;
}

.round-left{
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
}

.buttons-container{
  display: flex;
  position: relative;
}

.button-green,
.button-red{
  flex: 1 1 0;
  color: #fff;
	display: block;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.button-green:hover{
	text-decoration: none;
	color: white;
	transform: translateX(-10px);
}

.button-red:hover{
	text-decoration: none;
	color: white;
	transform: translateX(10px);
}

.button-green{ 
	background: var(--sa-green); 
	border-top-left-radius: 999px;
	border-bottom-left-radius: 999px;
	padding: 30px 100px 30px 70px;
}

.button-green span, .button-red span{
	display: block;
	font-weight: 900;
	margin-top: 5px;
}

.button-green span img, .button-red span img {
    height: 15px;
    margin-left: 10px;
    margin-top: -3px;
}

.button-red{ 
	background: var(--sa-red); 
	border-top-right-radius: 999px;
	border-bottom-right-radius: 999px;
	padding: 30px 70px 30px 100px;
}

.buttons-cart{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;                 /* = Höhe der gesamten Button-Zeile */
  aspect-ratio: 1 / 1;          /* => Breite = Höhe */
  background: #fff;
  border-radius: 999px;
  display: grid;
  place-items: center;
  z-index: 3;
}

.buttons-cart img{
	width: 50px;
}

#lay-cta h3 {
    margin-bottom: 100px;
}

.green-box img {
    height: 50px;
    display: block;
    margin: 0 auto;
    margin-bottom: 15px;
}

.cta-pill {
    display: inline-flex;
    align-items: stretch;
    border-radius: 999px;
    border: 3px solid white;
	color: white;
	margin-top: 80px;
}

.cta-pill-text {
    display: flex;
    align-items: center;
    padding: 5px 20px;
    background: var(--sa-green);
    border-radius: 999px;
    z-index: 5;
	font-weight: 700;
}

.cta-pill-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    background: #fff;
    color: var(--sa-green);
    font-size: 35px;
    border-top-right-radius: 999px;
    border-bottom-right-radius: 999px;
    margin-left: -20px;
    padding-left: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    line-height: 1;
}

.cta-pill-arrow img{
    position: absolute;
    width: 10px;
}

.cta-pill:hover{
	text-decoration: none;
	color: white;
}

.cta-pill:hover .cta-pill-text{
	padding: 5px 25px;
}

.cta-pill-invert.cta-pill{
    border: 3px solid var(--sa-green);	
}

.cta-pill-invert .cta-pill-text {
    background: white;
	color: var(--sa-green);
}

.cta-pill-invert  .cta-pill-arrow {
    background: var(--sa-green);
    color: white;
}

.treeD-headline{
	margin-top: 150px;
	margin-bottom: 50px;
	padding: 0 40px;
	text-align: center;
}

.treeD-container {
    width: 100%;
    height: 750px;
    background-color: grey;
    position: relative;
    z-index: 1;
}

.rounded{
	border-radius: 20px !important;
}

.contact-img{
	margin-top: 100px;
}

.caption {
    display: block;
    font-style: italic;
    font-weight: 400;
    text-align: right;
    font-size: 13px;
    margin-top: 15px;
    margin-right: 15px;
	margin-bottom: 30px;
}

.iconbox-wrapper{
	display: flex;
    align-items: center;
	padding-top: 15px;
	padding-bottom: 15px;
}

.iconbox-wrapper:first-child{
	padding-top: 0;	
}

.iconbox-wrapper img{
	max-width: 50px;
	max-height: 50px;
}

.iconbox-img{
	width: 80px;
}

.iconbox-text{
	
}

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

.daily-box{
	width: 100px;
}

.green-box-headline {
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
    display: block;
    margin-bottom: 30px;
    margin-top: 20px;
    line-height: 1.2;
}

.green-box .cta-pill{
	margin-top: 20px;
    pointer-events: none;
    justify-content: end;
	font-size: 17px;
}

.green-box  .cta-pill:hover .cta-pill-text {
    padding: 5px 20px;
}

.green-box .cta-pill-arrow img{
	margin-bottom: 0;
}

.green-box {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.green-box:hover {
	text-decoration: none;
	color: white;
}

.green-box:hover {
	opacity: 0.9;
}

.social-link{
	margin-top: 20px;
	display: block;
}

.social-link img{
	width: 20px;
	margin-left: 30px;
	margin-right: 15px;
}

.intro-img-wrap{
	margin-top: 150px;
	position: relative;
}

.intro-star {
    width: 175px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.wpcf7 form.sent > *:not(.wpcf7-response-output) {
  display: none;
}

#lay-app .img-edge {
    filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.75));
}

.map-wrap {
  position: relative;
  height: 100%;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
}

.map-click-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(255,255,255,.15);
  font-weight: 600;
	color: white;
}

.map-click-layer.is-hidden {
  display: none;
}

















/* ------------------------------------------------ MOBILE ------------------------------------------------ */

@media screen and (max-width: 767.98px) { 
	
	:root {
		--container-size: 100%;
	}
	
	.container{
		padding-left: 40px;
		padding-right: 40px;
	}
	
	#lay-intro .container{
		padding-left: 80px;
	}
	
	h1, h2 {
		font-size: 70px;
		margin-bottom: 20px;
		line-height: 0.8;
	}
	
	.buttons-container {
		flex-wrap: wrap;
	}
	
	.flex-col {
		flex-wrap: wrap;
	}
	
	.buttons-cart {
		height: unset;
		width: 100%;
		max-width: 300px;
	}
	
	.img-edge {
		width: calc(100% + 80px);
		margin-left: -40px;
	}

	.info-bar {
		position: relative;
		bottom: 0;
    	margin-top: -100px;
	}
	
	.owl-item-content h2 {
		font-size: 45px;
		top: 212px;
		left: calc(50% - 40px);
	}
	
	.navbar-brand img {
		width: 200px;
	}
	
	.owl-item .owl-item-content {
		height: 500px;
	}
	
	.white-box {
		padding: 30px;
	}
	
	.iconbox-wrapper img {
		margin-bottom: 20px;
	}
	
	.iconbox-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
	}
	
    .iconbox-img {
        width: 100%;
    }
	
	.middle-spacer{
		margin-top: 50px;
		margin-bottom: 50px;
	}
	
	.navbar {
		padding-right: 0;
	}
	
	.navbar-collapse {
		margin-top: 35px;
	}
	
	.navbar-nav .nav-link {
		margin: 5px 40px;
		text-align: center;
	}
	
	.owl-theme .owl-dots {
		right: 30px;
	}

	#lay-intro {
		padding-top: 100px;
	}
	
	.treeD-headline {
		margin-top: 100px;
	}
	
	.cta-pill {
		margin-top: 50px;
		font-size: 15px;
	}
	
	#lay-services {
		padding: 100px 0;
	}
	
	#lay-app {
		padding: 100px 0;
	}
	
	#lay-app .container{
		padding-left: 80px;
	}
	
	.hyphenate {
	  overflow-wrap: break-word;   /* verhindert Layout-Breaks */
	  word-wrap: break-word;       /* Legacy Support */

	  -webkit-hyphens: auto;       /* Safari / ältere iOS */
	  -moz-hyphens: auto;          /* Firefox alt */
	  -ms-hyphens: auto;           /* alte Edge/IE */
	  hyphens: auto;               /* Standard */
	}
	
	.app-img{
		margin-top: 80px;
	}
	
	#lay-social {
		padding: 100px 0;
	}
	
	#lay-contact {
		padding: 100px 0;
	}
	
	.mobile-space{
		padding-left: 40px;
	}
	
	.button-green {
		border-top-left-radius: 999px;
		border-top-right-radius: 999px;
		border-bottom-left-radius: 0;
		padding: 80px 50px 200px 50px;
		flex: 0 0 100%;
	}
	
	.button-red {
		border-bottom-right-radius: 999px;
		border-bottom-left-radius: 999px;
		border-top-right-radius: 0;
		padding: 200px 50px 80px 50px;
		flex: 0 0 100%;
	}
	
	.link-wrapper {
		padding-left: 0;
		margin-top: 20px;
		text-align: center;
		width: 100%;
	}
	
	.dwg {
		margin-top: 10px;
	}
	
	#lay-cta {
		padding: 100px 0;
	}
	
}
/* ------------------------------------------------ Extra small devices ------------------------------------------------ */

@media screen and (max-width: 575.98px) { 
	

	
}





/* ------------------------------------------------ TABLET ------------------------------------------------ */

@media (min-width: 768px) and (max-width: 991.98px) { 
	
	:root {
		--container-size: 720px;
	}
	
}






/* ------------------------------------------------ Small Computers ------------------------------------------------ */

@media (min-width: 992px) and (max-width: 1199.98px) { 
	
	:root {
		--container-size: 960px;
	}	
	
}




