
/**
 * Display sizes
 *
 * 1. Phone portrait
 * 2. Phone landscape
 * 3. Tablet portrait
 * 4. Tablet landscape
 * 5. Desktop
 * 6. Desktop large
 */
/**
 * Media-query min-width
 */
/**
 * Media-query max-width
 */
/**
 * Layout / Content sizes
 */
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 22px 16px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  -o-transition-property: opacity, filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger.is-active:hover {
  opacity: 1;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #d10a11;
}

.hamburger-box {
  width: 40px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 2px;
  background-color: #d10a11;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  -webkit-transition-duration: 0.075s;
  -o-transition-duration: 0.075s;
  transition-duration: 0.075s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  -webkit-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
  -o-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  -webkit-transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition-delay: 0.12s;
  -o-transition-delay: 0.12s;
  transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
  -o-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.index #article_content {
  overflow: visible;
  z-index: 25;
}
@media only screen and (min-width: 1024px) {
  .index #article_content {
    height: 410px;
  }
}
.index #article_content .ce_wrapper {
  position: relative;
  width: 340px;
  margin: 64px auto 32px auto;
}
@media only screen and (min-width: 1024px) {
  .index #article_content .ce_wrapper {
    position: absolute;
    margin: 0;
    left: 40px;
    top: 80px;
  }
}
@media only screen and (min-width: 1024px) {
  .index #article_content .ce_wrapper {
    width: 380px;
    left: 40px;
    top: 80px;
  }
}
.index #article_content .ce_wrapper .info {
  margin: 20px 37px 10px;
  font-size: 19px;
}
@media only screen and (min-width: 1024px) {
  .index #article_content .ce_wrapper .info {
    font-size: 15px;
  }
}
.index #article_content .ce_image {
  display: none;
  top: auto;
  left: 360px;
  bottom: -14px;
}
@media only screen and (min-width: 1024px) {
  .index #article_content .ce_image {
    display: block;
  }
}
.index #article_content img {
  display: block;
}

.daheim-betreut #article_content .ce_image {
  top: auto;
  left: 253px;
  bottom: -14px;
}

.einrichtungen-heime #article_content .ce_image,
.buero-betrieb #article_content .ce_image {
  bottom: 0;
  left: 0;
}

.kindergaerten-schulen #article_content .ce_image {
  left: 480px;
  bottom: 0;
}
.kindergaerten-schulen #article_content .ce_image.apple {
  left: 790px;
  bottom: -19px;
}

.einrichtungen-heime #article_content .ce_wrapper {
  bottom: 0;
}
@media only screen and (min-width: 1024px) {
  .einrichtungen-heime #article_content .ce_wrapper {
    left: 480px;
  }
}

.buero-betrieb #article_content .ce_wrapper {
  bottom: 0;
}
@media only screen and (min-width: 1024px) {
  .buero-betrieb #article_content .ce_wrapper {
    left: 555px;
  }
}

@media only screen and (min-width: 1024px) {
  .bestellservice.impressum #article_content .ce_wrapper,
  .bestellservice.datenschutz #article_content .ce_wrapper {
    width: 700px;
  }
}

@media only screen and (max-width: 1023px) {
  .liefergebiet .article_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.liefergebiet .article_content .ce_wrapper {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.liefergebiet .article_content .cd_image {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}

#article_content .ce_image.siegel {
  display: none;
  position: absolute;
  bottom: auto;
  z-index: 15;
}
@media only screen and (max-width: 1023px) {
  #article_content .ce_image.siegel {
    top: 10px;
    left: 24px;
    width: 80px;
  }
}
@media only screen and (min-width: 1024px) {
  #article_content .ce_image.siegel {
    display: block;
    bottom: 10px;
    left: 50px;
  }
}

#article_content .siegel {
  display: none;
}
@media only screen and (min-width: 1024px) {
  #article_content .siegel {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .daheim-betreut #article_content .siegel {
    bottom: 10px;
    left: 50px;
  }
}
@media only screen and (min-width: 1024px) {
  .kindergaerten-schulen #article_content .siegel {
    bottom: 20px;
    left: 300px;
  }
}
@media only screen and (min-width: 1024px) {
  .einrichtungen-heime #article_content .siegel {
    bottom: 30px;
    left: 780px;
  }
}
@media only screen and (min-width: 1024px) {
  .buero-betrieb #article_content .siegel {
    bottom: 30px;
    left: 830px;
  }
}

.walls-io,
.no-walls-io {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  padding: 0 16px 32px 16px;
}
@media only screen and (min-width: 1024px) {
  .walls-io,
  .no-walls-io {
    padding: 0 280px 64px 135px;
  }
}

.no-walls-io {
  display: none;
}
.no-walls-io .cookieConsentToggle {
  position: relative;
  width: auto;
  height: auto;
  bottom: auto;
  right: auto;
  padding: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
  text-decoration: underline;
}

* {
  padding: 0;
  margin: 0;
}

html,
body {
  background: transparent url("/files/dm/layout/css/img/square_menueservice.jpg") repeat;
  font-family: "MyriadProLight", "Open Sans", serif;
  font-size: 16px;
  font-weight: 300;
  height: 100%;
  color: #635a50;
}
@media only screen and (max-width: 1023px) {
  html.mobile-menu-open,
  body.mobile-menu-open {
    position: relative;
    overflow: hidden;
    height: 100%;
  }
}

h2 {
  font-family: lovepotionno10, lucidagrande, arial, sans-serif;
  font-size: 40px;
  line-height: 40px;
  font-weight: normal;
  padding-bottom: 5px;
}
@media only screen and (min-width: 1024px) {
  h2 {
    font-size: 54px;
    line-height: 54px;
  }
}
h2 span {
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  margin: 0 8px;
  /*line-height   : 60px;*/
  background-color: #d10a11;
  color: #ffffff;
  border-radius: 50%;
}
@media only screen and (min-width: 1024px) {
  h2 span {
    width: 52px;
    height: 52px;
  }
}

#wrapper {
  max-width: 1024px;
  min-width: 360px;
  margin: 0 auto;
  padding-top: 112px;
  transform-origin: top center;
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  -ms-transform-origin: top center;
  -o-transform-origin: top center;
}
@media only screen and (min-width: 1024px) {
  #wrapper {
    padding-top: 0;
  }
}

#main {
  background-color: #D3F0F2;
}
@media only screen and (min-width: 1024px) {
  #main .inside {
    overflow: hidden;
  }
}

.line {
  display: inline-block;
  border-top: 2px solid #6C645B;
  font-size: 1px;
  width: 64px;
  vertical-align: middle;
  margin: 0 6px;
}

.subtitle {
  text-transform: uppercase;
  max-width: 345px;
  margin: 0 auto;
  overflow: hidden;
}
.subtitle p {
  display: inline-block;
  position: relative;
}
.subtitle p:before, .subtitle p:after {
  content: " ";
  display: inline-block;
  border-top: 2px solid #6C645B;
  height: 5px;
  width: 175px;
  position: absolute;
  top: 7px;
}

p.subtitle:after, p.subtitle:before {
  content: " ";
  display: inline-block;
  border-top: 2px solid #6C645B;
  height: 5px;
  width: 175px;
  position: absolute;
  top: 7px;
}

.subtitle p:before {
  left: 100%;
  margin-left: 7px;
}
.subtitle p:after {
  right: 100%;
  margin-right: 7px;
}

p.subtitle:before, p.subtitle:after {
  border-color: #ff0000;
}

a {
  text-decoration: none;
  outline: none;
}
.ce_text a {
  color: #d10a11;
}
a:active, a:focus {
  text-decoration: none;
  outline: none;
}
a[href^="tel:"] {
  color: #d10a11;
  text-decoration: none !important;
}
.phone a[href^="tel:"] {
  color: #fff;
}
.hiddenlayer .phone a[href^="tel:"] {
  color: #d10a11;
}

img {
  max-height: 100%;
  vertical-align: top;
}

.right {
  float: right;
}

.left {
  float: left;
}

#cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #fff;
  padding: 0 10px;
  width: 100%;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}
#cookie-bar p {
  display: block;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  #cookie-bar p {
    margin: 15px 0;
    display: inline-block;
  }
}
#cookie-bar .cookie-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 0;
}
@media only screen and (min-width: 1024px) {
  #cookie-bar .cookie-button {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
#cookie-bar .cookie-button a {
  display: inline-block;
  color: #006B2D;
  margin: 5px 0;
  float: right;
}
#cookie-bar .cookie-button a.cb-enable {
  display: inline-block;
  border: 0;
  margin: 0;
  margin: 0 10px;
  padding: 5px 30px;
  color: #fff;
  background-color: #006B2D;
  border-radius: 5px;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
#cookie-bar .cookie-button a.cb-disable {
  text-align: center;
}

.cb-remove {
  display: inline-block;
  border: 0;
  margin: 0;
  margin: 10px 0;
  padding: 5px 30px;
  color: #fff;
  background-color: #006B2D;
  border-radius: 5px;
  -webkit-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

/*======== Header ========*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  height: 64px;
  line-height: 64px;
  width: 100%;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  z-index: 999;
}
@media only screen and (min-width: 1024px) {
  #header {
    position: relative;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
@media only screen and (min-width: 1024px) {
  #header .inside {
    padding-left: 32px;
  }
}

.mobile-header {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  z-index: 998;
  height: 48px;
  background: #d6bf99 url("img/wood-tile.jpg") repeat-x;
  text-align: right;
  padding-top: 4px;
  padding-right: 32px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}
@media only screen and (min-width: 1024px) {
  .mobile-header {
    position: absolute;
    top: -48px;
    left: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .ueber-uns .mobile-header, .bestellservice .mobile-header {
    top: 48px;
    z-index: 1;
  }
}
@media only screen and (min-width: 1024px) {
  .impressum .mobile-header, .datenschutz .mobile-header {
    top: 0px;
    z-index: 1;
  }
}
@media only screen and (min-width: 1024px) {
  .liefergebiet .mobile-header {
    top: 0;
    z-index: 1;
  }
}
.mobile-header #siegel {
  display: block !important;
  position: absolute;
  top: 10px !important;
  left: 24px !important;
  width: 80px !important;
  bottom: auto !important;
}
@media only screen and (min-width: 1024px) {
  .mobile-header #siegel {
    display: none !important;
  }
}

#dm {
  float: left;
  margin-right: 11px;
}
#dm a {
  color: #006B2D;
  text-decoration: none;
  text-transform: uppercase;
}
#dm span {
  color: #D1161A;
}
#dm #logo {
  height: 64px;
  padding: 8px 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#sub_navigation,
nav {
  font-family: MyriadProRegular, "Open Sans", arial, sans-serif;
  font-weight: 400;
}

#sub_navigation {
  width: calc(100% - 69px);
}

#header .mod_customnav {
  float: right;
  text-transform: none;
}

.mod_navigation {
  float: left;
}

nav li,
#sub_navigation li,
#content_navigation li {
  float: left;
  list-style: none;
  display: block;
  padding: 0 11px;
}

#sub_navigation {
  display: none;
  height: 48px;
  line-height: 48px;
  background-color: #006B2D;
  padding-left: 69px;
  position: relative;
  overflow: visible;
  z-index: 2;
}
@media only screen and (min-width: 1024px) {
  #sub_navigation {
    display: block;
  }
}
#sub_navigation:after {
  content: "";
  background: url("/files/dm/layout/css/img/shadow.png") no-repeat 0 0;
  display: block;
  height: 8px;
  width: 884px;
  position: absolute;
  bottom: -8px;
  left: 50%;
  margin-left: -442px;
}
#sub_navigation a,
#sub_navigation span {
  color: #97d7b2;
  text-decoration: none;
  text-transform: uppercase;
}
#sub_navigation a:hover,
#sub_navigation span:hover {
  color: #ffffff;
}
#sub_navigation .active {
  color: #ffffff;
  cursor: default;
}
#sub_navigation span.active:before {
  content: ">";
  padding-right: 3px;
}

#logo_main {
  display: none;
  position: absolute;
  top: 0;
  right: 35px;
  width: 213px;
  height: 251px;
  padding: 0;
  z-index: 30;
}
.phone a {
  font-family: lovepotionno10bold, lucidagrande, arial, sans-serif;
  font-size: 36px;
  color: #ffffff;
}

#logo_main .phone {
  position: absolute;
  top: 0;
  left: 25px;
  line-height: 48px;
}

.phone p:before {
  content: " ";
  display: inline-block;
  background: url("/files/dm/layout/css/img/sprites.png") no-repeat -155px -100px;
  width: 25px;
  height: 27px;
  margin-right: 9px;
}

#zoom {
  display: none;
}
@media only screen and (min-width: 1024px) {
  #zoom {
    display: block;
    position: fixed;
    top: 50%;
    left: 0;
    width: 54px;
    height: 140px;
    margin-top: -70px;
    z-index: 50;
  }
}
#zoom span {
  display: block;
  cursor: pointer;
  width: 54px;
  height: 70px;
  text-indent: -9999px;
  background: url("/files/dm/layout/css/img/sprite_zoombtn.png") no-repeat 0 0;
}
#zoom .in.disabled {
  background-position: -55px 0;
}
#zoom .out {
  background-position: -55px -70px;
}
#zoom .out.disabled {
  background-position: 0 -70px;
}

/*======== Startseite ========*/
@media only screen and (min-width: 1024px) {
  .index .ce_hyperlink {
    transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -webkit-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
  }
}
.index .ce_hyperlink a {
  background: url("/files/dm/layout/css/img/sprite_woodbtn.png") no-repeat 0 -50px;
  width: 263px;
  height: 47px;
  display: inline-block;
  text-indent: -9999px;
}
.index .ce_hyperlink.btn2 a {
  background-position: 0 -250px;
}

#flyout_navigation {
  position: absolute;
  z-index: 35;
  overflow: visible;
  left: 65px;
  top: 0;
  display: none;
}
#flyout_navigation nav {
  background-color: #006B2D;
  height: 160px;
  padding: 0 15px;
}
#flyout_navigation > div {
  background: url("/files/dm/layout/css/img/square_flyout.jpg") -2px 7px repeat;
  width: 100%;
  height: 32px;
}
#flyout_navigation li {
  margin-top: 23px;
  text-align: center;
  padding: 0 30px;
}
#flyout_navigation a {
  color: #97d7b2;
  font-size: 13px;
  display: inline-block;
  width: 90px;
}
#flyout_navigation a:hover {
  color: #ffffff;
}
#flyout_navigation img {
  display: block;
  margin-bottom: 8px;
}
#flyout_navigation ul {
  display: none;
}

/*======== Ueber uns ========*/
#article_content,
.article_content {
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  #article_content,
  .article_content {
    margin-top: 48px;
  }
}

#article_content .mod_article {
  display: none;
}
#article_content .active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  #article_content .active {
    display: block;
  }
}

.ueber-uns #article_content {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .ueber-uns #article_content {
    height: 500px;
    margin-top: 96px;
  }
}
.ueber-uns #article_content figure {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .ueber-uns #article_content figure {
    height: 500px;
  }
}

@media only screen and (min-width: 1024px) {
  .liefergebiet .article_content {
    height: 500px;
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .liefergebiet .article_content .ce_image figure {
    height: 500px;
    width: 100%;
  }
}

.neuigkeiten #article_content {
  /*height: 750px;*/
  height: auto;
}

#article_content .ce_image,
.article_content .ce_image {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}
@media only screen and (min-width: 1024px) {
  #article_content .ce_image,
  .article_content .ce_image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
}

#article_content .ce_wrapper,
.article_content .ce_wrapper {
  text-align: center;
  z-index: 20;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media only screen and (min-width: 1024px) {
  #article_content .ce_wrapper,
  .article_content .ce_wrapper {
    position: absolute;
  }
}

.ce_wrapper.box {
  background: #ffffff;
  padding-top: 32px;
}
@media only screen and (min-width: 1024px) {
  .ce_wrapper.box {
    top: 30px;
    left: 35px;
    width: 345px;
    overflow: hidden;
    padding: 30px 15px 5px;
    border-radius: 9px 9px 9px 9px;
    -webkit-border-radius: 9px 9px 9px 9px;
    -moz-border-radius: 9px 9px 9px 9px;
    background: rgba(255, 255, 255, 0.92);
  }
}
@media only screen and (min-width: 1024px) {
  .ce_wrapper.box.big {
    width: 485px;
  }
}

.ie8 .ce_wrapper.box,
.ie7 .ce_wrapper.box {
  background: none;
  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr="#eaFFFFFF", EndColorStr="#eaFFFFFF");
  -ms-filter: "progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#eaFFFFFF', EndColorStr='#eaFFFFFF')";
}

.ce_wrapper.box .info {
  padding: 18px 25px;
  font-size: 19px;
}
@media only screen and (min-width: 1024px) {
  .ce_wrapper.box .info {
    font-size: 16px;
    max-height: 305px;
  }
}

.ueber-uns #article_content .news {
  position: relative;
  padding: 32px 16px;
}
@media only screen and (min-width: 1024px) {
  .ueber-uns #article_content .news {
    padding-left: 135px;
    padding-right: 380px;
    margin-bottom: 100px;
    min-height: 360px;
  }
}
@media only screen and (min-width: 1024px) {
  .ueber-uns #article_content #neuigkeiten .news {
    padding-top: 86px;
    padding-left: 135px;
    padding-right: 380px;
    margin-bottom: 0;
    min-height: auto;
  }
}
.ueber-uns .bx-viewport {
  min-height: 320px !important;
}
.ueber-uns #article_content .news_content_footer {
  position: relative;
  width: 100%;
}
.site_content {
  position: relative;
  width: 100%;
  overflow: visible !important;
  z-index: 23;
}
.site_content > div {
  position: absolute;
}

.mod_newsmenu {
  display: none;
}

.neuigkeiten .mod_newsmenu {
  display: block;
  padding: 32px 16px;
  right: 0;
  text-align: right;
}
@media only screen and (min-width: 1024px) {
  .neuigkeiten .mod_newsmenu {
    top: 240px;
    right: 70px;
    padding: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .neuigkeiten .mod_newsmenu .news-select {
    display: none;
  }
}
.neuigkeiten .mod_newsmenu ul {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .neuigkeiten .mod_newsmenu ul {
    display: block;
  }
}
.neuigkeiten .mod_newsmenu li {
  font-family: lovepotionno10, lucidagrande, arial, sans-serif;
  font-weight: normal;
  font-size: 25px;
  margin-bottom: 10px;
}
.neuigkeiten .mod_newsmenu li a {
  display: inline-block;
  position: relative;
}
.neuigkeiten .mod_newsmenu li span {
  display: inline-block;
  position: relative;
  cursor: default;
}
.neuigkeiten .mod_newsmenu li a {
  color: #635a50;
}
.neuigkeiten .mod_newsmenu li a:hover {
  color: #D1161A;
}
.neuigkeiten .mod_newsmenu li span {
  color: #D1161A;
}
.neuigkeiten .mod_newsmenu li a:before,
.neuigkeiten .mod_newsmenu li span:before {
  content: "";
  display: inline-block;
  background: url("/files/dm/layout/css/img/sprites.png") no-repeat -171px -210px;
  width: 15px;
  height: 9px;
  vertical-align: middle;
  padding-right: 5px;
}
.neuigkeiten .mod_newsmenu li a:hover:before {
  background-position: -171px -200px;
}
.neuigkeiten .mod_newsmenu li span:before {
  background-position: -171px -200px;
}
.neuigkeiten .mod_newsmenu li span:after {
  content: "";
  display: block;
  width: 100%;
  height: 7px;
  background: url("/files/dm/layout/css/img/underline_contentslider.png") no-repeat 0 0;
  position: absolute;
  margin-left: 10px;
}
.neuigkeiten .mod_newsmenu li a:hover:after {
  content: "";
  display: block;
  width: 100%;
  height: 7px;
  background: url("/files/dm/layout/css/img/underline_contentslider.png") no-repeat 0 0;
  position: absolute;
  margin-left: 10px;
}

.ueber-uns #article_content .news .ce_image {
  position: static;
}
.ueber-uns #article_content .news figure {
  height: auto;
  width: auto;
  margin-top: 20px;
}
.ueber-uns #siegel {
  display: none;
  top: -40px;
  left: 24px;
  width: 80px;
}
@media only screen and (min-width: 1024px) {
  .ueber-uns #siegel {
    display: block;
    top: 290px;
    left: auto;
    right: 230px;
    width: auto;
  }
}

@media only screen and (min-width: 1024px) {
  .menueservice #siegel {
    top: 300px;
    left: auto;
    right: 215px;
    width: auto;
  }
}

@media only screen and (min-width: 1024px) {
  .neuigkeiten #siegel {
    right: inherit;
    top: 77px;
    left: 40px;
    width: auto;
  }
}

@media only screen and (min-width: 1024px) {
  .kueche #siegel {
    top: 315px;
    left: auto;
    right: 130px;
    width: auto;
  }
}

/*======== Bestellservice ========*/
.bestellservice #article_content {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .bestellservice #article_content {
    margin-top: 96px;
  }
}
.bestellservice #article_content figure {
  width: 100%;
}
.bestellservice #article_content .ce_wrapper {
  background: #fff;
  padding: 32px 16px;
}
@media only screen and (min-width: 1024px) {
  .bestellservice #article_content .ce_wrapper {
    background: transparent;
    padding: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .bestellservice #article_content .ce_wrapper {
    width: 523px;
    overflow-y: auto;
    position: static;
    margin: 70px 0 90px 137px;
  }
}

@media only screen and (min-width: 1024px) {
  .bestellservice.impressum #article_content,
  .bestellservice.datenschutz #article_content {
    margin-top: 48px;
  }
}

@media only screen and (max-width: 1023px) {
  .bestellservice .site_content {
    padding: 64px 0 32px 0;
  }
}

@media only screen and (max-width: 1023px) {
  .bestellservice .site_content > div {
    position: relative;
  }
}

.ueber-uns .news .layout_full .ce_text,
.bestellservice #article_content .ce_wrapper .info {
  margin-top: 20px;
  text-align: left;
  line-height: 20px;
  font-size: 19px;
}
@media only screen and (min-width: 768px) {
  .ueber-uns .news .layout_full .ce_text,
  .bestellservice #article_content .ce_wrapper .info {
    font-size: 15px;
  }
}

.ueber-uns .info p,
.ueber-uns .news .ce_text p {
  line-height: 20px;
  margin-top: 15px;
}

.bestellservice #article_content .ce_wrapper .info p {
  line-height: 20px;
  margin-top: 15px;
}

.news .ce_text p:first-child,
.info p:first-child {
  margin-top: 0;
}

.ueber-uns .news .layout_full .subtext,
.bestellservice #article_content .ce_wrapper .subtext {
  font-size: 19px;
  margin-top: 15px;
  text-align: center;
  line-height: 23px;
}

.ueber-uns .ce_text a {
  text-decoration: underline;
}

.bestellservice .info ul {
  list-style-type: none;
  margin-top: 15px;
}
.bestellservice .info li {
  background: url("/files/dm/layout/css/img/bullet.png") no-repeat 3px 6px;
  padding-left: 15px;
}
.bestellservice #siegel {
  display: none;
  position: absolute;
  top: -40px;
  left: 24px;
  width: 80px;
}
@media only screen and (min-width: 1024px) {
  .bestellservice #siegel {
    display: block;
    top: 145px;
    left: 60px;
    width: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .bestellservice #price {
    top: 328px;
    right: 51px;
  }
}

.einrichtungen-heime-service #price,
.kindergaerten-schulen-service #price {
  display: none;
}

@media only screen and (min-width: 1024px) {
  .bestellservice #menu {
    top: 148px;
    right: 51px;
  }
}

@media only screen and (max-width: 1023px) {
  #menu,
  #price {
    text-align: center;
  }
}

@media only screen and (max-width: 1023px) {
  #menu .ce_image,
  #price .ce_image {
    display: none;
  }
}

@media only screen and (min-width: 1024px) {
  #menu .ce_hyperlink,
  #price .ce_download {
    position: absolute;
    right: -15px;
    top: 110px;
  }
}
@media only screen and (min-width: 1024px) {
  #menu .ce_hyperlink,
  #price .ce_download {
    transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -webkit-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
  }
}

#menu .ce_hyperlink a {
  background: url("/files/dm/layout/css/img/sprite_woodbtn.png") no-repeat 0 -150px;
  width: 263px;
  height: 47px;
  display: inline-block;
  text-indent: -9999px;
}

#price .ce_download a {
  background: url("/files/dm/layout/css/img/sprite_woodbtn.png") no-repeat 0 -200px;
  width: 263px;
  height: 47px;
  display: inline-block;
  text-indent: -9999px;
}

.news_content_footer {
  background: url("/files/dm/layout/css/img/square.jpg") 0 0 repeat;
}
@media only screen and (min-width: 1024px) {
  .news_content_footer {
    height: 103px;
  }
}

.content_footer {
  background: url("/files/dm/layout/css/img/square.jpg") 0 0 repeat;
}
@media only screen and (max-width: 1023px) {
  .content_footer.site_content {
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 16px 0;
  }
}
@media only screen and (min-width: 1024px) {
  .content_footer {
    height: 103px;
  }
}
.content_footer .ce_wrapper {
  background: rgba(255, 255, 255, 0.86);
  border-radius: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
}
@media only screen and (max-width: 1023px) {
  .content_footer .ce_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto;
    padding: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .content_footer .ce_wrapper {
    display: block;
    width: 515px;
    height: 117px;
    position: absolute;
    left: 136px;
    top: -56px;
    padding: 0;
    margin: 0 16px 16px;
  }
}
.content_footer .ce_wrapper > div a {
  font-size: 47px;
  line-height: 47px;
}
.content_footer .ce_wrapper div:first-child {
  font-family: lovepotionno10, lucidagrande, arial, sans-serif;
  font-weight: normal;
  float: left;
  height: 100%;
  font-size: 54px;
  color: #5b5247;
}
@media only screen and (min-width: 1024px) {
  .content_footer .ce_wrapper div:first-child {
    line-height: 115px;
    margin: 0 27px;
  }
}
.content_footer .ce_wrapper .phone a {
  color: #d10a11 !important;
  padding-top: 12px;
}
.content_footer .ce_wrapper .phone p:before {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .content_footer .ce_wrapper .phone p:before {
    display: inline-block;
    background: url("/files/dm/layout/css/img/sprites.png") no-repeat -110px -160px;
    width: 32px;
    height: 35px;
    margin-right: 12px;
  }
}
.content_footer .ce_wrapper .mail a {
  font-family: lovepotionno10bold, lucidagrande, arial, sans-serif;
  color: #006B2D;
  padding-bottom: 12px;
}
.content_footer .ce_wrapper .mail a:before {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .content_footer .ce_wrapper .mail a:before {
    display: inline-block;
    content: " ";
    display: inline-block;
    background: url("/files/dm/layout/css/img/sprites.png") no-repeat 0 -196px;
    width: 38px;
    height: 24px;
    margin-right: 6px;
  }
}

.ie8 .content_footer .ce_wrapper,
.ie7 .content_footer .ce_wrapper {
  background: none;
  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr="#dbFFFFFF", EndColorStr="#dbFFFFFF");
  -ms-filter: "progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#dbFFFFFF', EndColorStr='#dbFFFFFF')";
}

.kindergaerten-schulen-service .content_footer .order,
.einrichtungen-heime-service .content_footer .order,
.content_footer .request {
  display: none;
}
.kindergaerten-schulen-service .content_footer .order a[href^="tel:"],
.einrichtungen-heime-service .content_footer .order a[href^="tel:"],
.content_footer .request a[href^="tel:"] {
  color: #d10a11 !important;
}

.kindergaerten-schulen-service .content_footer .request,
.einrichtungen-heime-service .content_footer .request {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 1024px) {
  .kindergaerten-schulen-service .content_footer .request,
  .einrichtungen-heime-service .content_footer .request {
    display: block;
  }
}

#content_footer .phone p {
  margin-top: 12px;
}

.neuigkeiten .ce_imagetext,
.content_footer > .ce_imagetext {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .neuigkeiten .ce_imagetext,
  .content_footer > .ce_imagetext {
    display: block;
    position: absolute;
    top: 20px;
    right: 80px;
    background: url("/files/dm/layout/css/img/sprites.png") no-repeat 0 -100px;
    width: 151px;
    height: 58px;
  }
}

.ce_menulayer {
  top: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 220px;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(126, 126, 126, 0.7);
  box-shadow: 0 4px 4px 0 rgba(126, 126, 126, 0.7);
  padding: 10px 6px;
  position: absolute;
  overflow: visible;
  z-index: 30;
  text-align: center;
  opacity: 0;
}
@media only screen and (min-width: 1024px) {
  .ce_menulayer {
    top: 106px;
    right: 33px;
    left: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.ie8 .ce_menulayer,
.ie7 .ce_menulayer {
  background: none;
  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr="#eaFFFFFF", EndColorStr="#eaFFFFFF");
  -ms-filter: "progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#eaFFFFFF', EndColorStr='#eaFFFFFF')";
}

.ie8 .ce_menulayer select {
  font-size: 16px;
}
.ie8 .ce_menulayer .chosen-container .chosen-single,
.ie8 .ce_menulayer .chosen-container .chosen-results {
  font-size: 16px;
}

.ce_menulayer .list_download .headline {
  display: block;
  font-family: lovepotionno10bold, lucidagrande, arial, sans-serif;
  font-size: 35px;
  color: #006B2D;
  margin-bottom: 5px;
}
.ce_menulayer .list_download li {
  font-size: 18px;
  line-height: 25px;
  list-style-type: none;
  cursor: pointer;
  padding-bottom: 10px;
}
.ce_menulayer .list_download li a {
  color: #006B2D;
}
.ce_menulayer .list_download li a:hover {
  color: #d10a11;
}
.ce_menulayer .submit {
  font-family: lovepotionno10bold, lucidagrande, arial, sans-serif;
  font-size: 35px;
  color: #006B2D;
  display: block;
  position: absolute;
  bottom: 3px;
  left: 50px;
  z-index: 1;
}
.ce_menulayer .submit:hover {
  color: #d10a11;
}
.ce_menulayer .submit:before {
  content: "";
  display: inline-block;
  background: transparent url("/files/dm/layout/css/img/sprites.png") no-repeat -170px -160px;
  width: 23px;
  height: 37px;
  padding-right: 3px;
  margin-bottom: -6px;
}
.ce_menulayer .submit:hover:before {
  background-position: -144px -160px;
}
.ce_menulayer .chosen-container {
  z-index: 2;
}

/*======== Liefergebiet ========*/
.liefergebiet .ce_wrapper .sub,
.liefergebiet .ce_wrapper .info {
  position: relative;
  z-index: 2;
  padding-top: 15px;
  font-size: 19px;
}
@media only screen and (min-width: 768px) {
  .liefergebiet .ce_wrapper .sub,
  .liefergebiet .ce_wrapper .info {
    font-size: 15px;
  }
}
.liefergebiet .ce_wrapper.box {
  max-height: 345px;
  padding-bottom: 70px;
}
@media only screen and (max-width: 1023px) {
  .liefergebiet #siegelbild {
    position: absolute;
    top: 0;
  }
}
.liefergebiet #siegel {
  display: none;
  position: absolute;
  top: 10px;
  left: 24px;
  width: 80px;
}
@media only screen and (min-width: 1024px) {
  .liefergebiet #siegel {
    display: block;
    left: auto;
    top: -150px;
    right: 40px;
  }
}
.liefergebiet .ce_wrapper .info {
  text-align: center;
  font-family: lovepotionno10, lucidagrande, arial, sans-serif;
  font-weight: bold;
  font-size: 28px;
  color: #006B2D;
}
.liefergebiet .ce_wrapper:after {
  content: "";
  display: block;
  background: transparent url("/files/dm/layout/img/map.png") 0 0 no-repeat;
  width: 100%;
  height: 127px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

/*======== Footer ========*/
#footer {
  background-color: #006B2D;
  position: relative;
  overflow: visible;
}
#footer .inside:after {
  display: none;
}
@media only screen and (min-width: 1024px) {
  #footer .inside:after {
    background: url("/files/dm/layout/css/img/shadow.png") no-repeat 0 -8px;
    content: "";
    display: block;
    height: 8px;
    position: absolute;
    top: -8px;
    left: 50%;
    margin-left: -442px;
    width: 884px;
  }
}
#footer .inside:before {
  content: " ";
  display: block;
  width: 100%;
  height: 10px;
  border-bottom: 1px #99C4AB dashed;
}
#footer h2 {
  text-align: center;
  color: #ffffff;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
#footer .subtitle {
  color: #97d7b2;
  text-align: center;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
@media only screen and (max-width: 1023px) {
  #footer .subtitle {
    font-family: lovepotionno10, lucidagrande, arial, sans-serif;
    font-size: 32px;
    line-height: 32px;
    font-weight: normal;
    margin-top: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  #footer .subtitle {
    max-width: 520px;
    margin: auto;
    padding-bottom: 15px;
  }
}
#footer .subtitle p:before, #footer .subtitle p:after {
  display: none;
}
@media only screen and (min-width: 1024px) {
  #footer .subtitle p:before, #footer .subtitle p:after {
    display: block;
    border-top: 2px solid #99C4AB;
  }
}

.contact_container {
  margin: 50px auto;
  overflow: visible;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .contact_container {
    width: 806px;
  }
}
.contact_container .captcha_text {
  color: #97d7b2;
}
.contact_container .contact_info {
  display: none;
  text-align: center;
  font-family: lovepotionno10, lucidagrande, arial, sans-serif;
  font-weight: normal;
  color: #ffffff;
}
@media only screen and (min-width: 1024px) {
  .contact_container .contact_info {
    display: block;
    background: transparent url("/files/dm/layout/img/team.jpg") 0 0 no-repeat;
    width: 334px;
    height: 443px;
    float: right;
  }
}
.contact_container .contact_info .first {
  margin-top: 45px;
  font-size: 30px;
}
.contact_container .contact_info .first:before {
  content: " ";
  display: block;
  background: url("/files/dm/layout/css/img/sprites.png") no-repeat 0 -160px;
  width: 101px;
  height: 17px;
  margin: 0 auto;
}
.contact_container .contact_info .last {
  font-size: 25px;
}
.contact_container .contact_info .last span {
  display: inline-block;
  height: 32px;
  background: transparent url("/files/dm/layout/css/img/underline_contact.png") no-repeat bottom center;
  text-decoration: none !important;
}
.contact_container .contact_info .last:after {
  content: " ";
  display: block;
  background: url("/files/dm/layout/css/img/sprites.png") no-repeat 0 -178px;
  width: 101px;
  height: 17px;
  margin: 18px auto 0;
}
@media only screen and (min-width: 1024px) {
  .contact_container .contact_info .phone {
    margin-top: 193px;
  }
}
.contact_container .contact_info--mobile {
  margin-top: 32px;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  display: block;
}
@media only screen and (min-width: 1024px) {
  .contact_container .contact_info--mobile {
    display: none;
  }
}
.contact_container .contact_info--mobile .first {
  font-size: 30px;
}
.contact_container .contact_info--mobile .first::before {
  display: none;
}
.contact_container .contact_info--mobile .phone {
  font-size: 30px;
}
.contact_container .contact_info--mobile .last {
  font-size: 60px;
}
.contact_container .contact_info--mobile .last::after {
  display: none;
}
.contact_container .mod_form {
  padding: 20px 0 0 2px;
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}
@media only screen and (min-width: 1024px) {
  .contact_container .mod_form {
    width: 400px;
    float: left;
  }
}
.contact_container .mod_form label {
  display: none;
}
.contact_container input,
.contact_container textarea,
.contact_container select,
.contact_container .chosen-container-single .chosen-single {
  color: #006B2D;
  background-color: #f1f1f1;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border: 1px solid #085528;
  font-family: "MyriadProLight", "Open Sans", serif;
  font-size: 18px;
}
@media only screen and (max-width: 1023px) {
  .contact_container input,
  .contact_container textarea,
  .contact_container select,
  .contact_container .chosen-container-single .chosen-single {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.contact_container input,
.contact_container select,
.contact_container .chosen-container-single .chosen-single {
  margin-bottom: 11px;
  height: 37px;
  padding-left: 33px;
}
@media only screen and (min-width: 1024px) {
  .contact_container input,
  .contact_container select,
  .contact_container .chosen-container-single .chosen-single {
    width: 357px;
  }
}
.contact_container textarea {
  margin-bottom: 8px;
  height: 121px;
  padding: 13px 22px 13px 33px;
}
@media only screen and (min-width: 1024px) {
  .contact_container textarea {
    width: 335px;
    min-width: 335px;
    max-width: 335px;
  }
}
.contact_container .chosen-container-single .chosen-single {
  margin-bottom: 0;
}
.contact_container .chosen-container-active.chosen-with-drop {
  border-bottom: 0;
}
.contact_container .chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #085528;
  border-bottom: 0;
}
.contact_container .chosen-container-active.chosen-with-drop.error .chosen-single {
  border: 2px solid #d10a11;
  border-bottom: 0;
}
.contact_container .chosen-container {
  height: 37px;
  margin-bottom: 11px;
}
.contact_container .chosen-container-single .chosen-drop {
  border: 1px solid #085528;
  border-top: 0;
  border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  overflow: hidden;
}
.contact_container .chosen-container-single.error .chosen-drop {
  border: 2px solid #d10a11;
  border-top: 0;
}
@media only screen and (min-width: 1024px) {
  .contact_container .chosen-container-single.error .chosen-drop {
    width: 394px;
  }
}
.contact_container .chosen-single span {
  line-height: 37px;
  text-transform: uppercase;
}
.contact_container .chosen-results {
  background-color: #f1f1f1;
  padding-bottom: 13px;
}
.contact_container .chosen-results li {
  color: #006B2D;
  font-size: 18px;
  line-height: 20px;
  margin: 0 19px 0 30px;
  padding: 3px 3px;
  cursor: pointer;
  list-style: none;
}
.contact_container .chosen-results .result-selected,
.contact_container .chosen-results .highlighted {
  background-color: #006B2D;
  color: #ffffff;
}
.contact_container .chosen-container-single .chosen-single div {
  width: 40px;
}
.contact_container .chosen-container-single .chosen-single b {
  width: 15px;
  height: 8px;
  background: url("/files/dm/layout/css/img/sprites.png") no-repeat -85px -200px;
  margin-top: 15px;
}
.contact_container .chosen-container-active.chosen-with-drop .chosen-single b {
  background-position: -155px -200px;
}
.contact_container .mod_form select {
  border: 0;
  text-transform: uppercase;
  padding-left: 30px;
}
@media only screen and (min-width: 1024px) {
  .contact_container .mod_form select {
    width: 392px;
  }
}

::-webkit-input-placeholder {
  color: #006B2D;
  text-transform: uppercase;
}

::-moz-placeholder {
  color: #006B2D;
  text-transform: uppercase;
}

:-ms-input-placeholder {
  color: #006B2D;
  text-transform: uppercase;
}

::-ms-input-placeholder {
  color: #006B2D;
  text-transform: uppercase;
}

::placeholder {
  color: #006B2D;
  text-transform: uppercase;
}

.placeholder {
  text-transform: uppercase;
}

@media only screen and (max-width: 1023px) {
  .contact_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media only screen and (max-width: 1023px) {
  .contact_container .mod_form {
    width: calc(100% - 32px);
  }
}
.contact_container .mod_form select option:first-child {
  display: none;
}
.contact_container .mod_form .chosen-results li {
  text-transform: uppercase;
}
.contact_container .mod_form .chosen-results li:first-child {
  display: none;
}
.contact_container .mod_form .explanation {
  color: #97d7b2;
}
.contact_container .mod_form .explanation a {
  color: #fff;
  text-decoration: underline;
}
.contact_container .mod_form .submit_message {
  text-transform: uppercase;
  color: #97d7b2;
  display: none;
  margin-bottom: 20px;
  font-size: 18px;
}
.contact_container .contact_form .submit_message {
  display: block;
}
.contact_container p.error {
  color: #97d7b2;
}
.contact_container .chosen-container-single.error .chosen-single,
.contact_container textarea.error,
.contact_container input.error {
  border: 2px solid #d10a11;
}
.contact_container .mod_form .submit_container {
  position: relative;
  height: 45px;
  overflow: visible;
}
.contact_container .mod_form input[type=submit] {
  margin-top: 10px;
  background: url("/files/dm/layout/css/img/sprite_woodbtn.png") no-repeat 0 0;
  width: 263px;
  height: 47px;
  display: block;
  border: none;
  text-indent: -9999px;
  outline: none;
}
@media only screen and (min-width: 1024px) {
  .contact_container .mod_form input[type=submit] {
    position: absolute;
    right: 10px;
    top: -10px;
    margin-top: 0;
    transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -webkit-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
  }
}

.contact_address {
  display: none;
  position: absolute;
  bottom: -365px;
  z-index: 10;
}
@media only screen and (min-width: 768px) {
  .contact_address {
    bottom: -125px;
    right: 16px;
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .contact_address {
    right: -80px;
  }
}
.contact_address--mobile {
  position: relative;
  bottom: auto;
  display: block;
  text-align: center;
  padding: 16px 0 32px 0;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .contact_address--mobile {
    display: none;
  }
}

.footer_container.socialmedia {
  background-color: #ffffff;
}
@media only screen and (min-width: 768px) {
  .footer_container.socialmedia {
    padding: 33px 215px 22px 65px;
    height: 100px;
  }
}

@media only screen and (max-width: 767px) {
  #logo_footer {
    padding: 32px 0;
  }
}
#logo_footer figure {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #logo_footer {
    float: left;
  }
}

.footer_container .socialmedia_links {
  text-align: center;
  padding-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .footer_container .socialmedia_links {
    text-align: left;
    float: right;
    padding-top: 12px;
    padding-bottom: 0;
  }
}
.footer_container .socialmedia_links a {
  display: inline-block;
  width: 45px;
  height: 45px;
  margin-right: 10px;
}
.footer_container .socialmedia_links p {
  font-family: lovepotionno10, helvetica, arial, sans-serif;
  font-size: 25px;
  color: #5b5247;
  letter-spacing: 1px;
  padding-bottom: 2px;
}

.socialmedia_links .mail {
  background: url("/files/dm/layout/css/img/sprites.png") no-repeat -50px 0;
}
.socialmedia_links .facebook {
  background: url("/files/dm/layout/css/img/sprites.png") no-repeat 0 0;
}
.socialmedia_links .twitter {
  background: url("/files/dm/layout/css/img/sprites.png") no-repeat -100px 0;
}
.socialmedia_links .mail:hover {
  background: url("/files/dm/layout/css/img/sprites.png") no-repeat -50px -50px;
}
.socialmedia_links .facebook:hover {
  background: url("/files/dm/layout/css/img/sprites.png") no-repeat 0 -50px;
}
.socialmedia_links .twitter:hover {
  background: url("/files/dm/layout/css/img/sprites.png") no-repeat -100px -50px;
}

.footer_container.copyright {
  background-color: #d3f0f2;
  height: 40px;
  text-align: center;
}
.footer_container.copyright p {
  font-family: MyriadProRegular, "Open Sans", arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 40px;
  color: #98B7BD;
}
@media only screen and (min-width: 768px) {
  .footer_container.copyright p {
    margin-right: 70px;
    float: right;
  }
}

/*======== Impressum / Aktion ========*/
.fancybox-overlay {
  background: rgba(255, 255, 255, 0.5);
  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr="#80FFFFFF", EndColorStr="#80FFFFFF");
  -ms-filter: "progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#80FFFFFF', EndColorStr='#80FFFFFF')";
}

.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.fancybox-skin {
  background: #ffffff;
  color: #635a50;
  text-shadow: none;
  border-radius: 0;
}

.fancybox-close {
  background: url("/files/dm/layout/css/img/fancybox_close.png") no-repeat 0 0;
  width: 50px;
  height: 50px;
  top: -25px;
  right: -25px;
}

.fancybox-skin .mCSB_container {
  margin-right: 0;
}

.fancybox-inner {
  padding: 10px 0;
  background-color: #d3f0f2;
  overflow: hidden !important;
}
.fancybox-inner figure {
  background-color: #d3f0f2;
}

.hiddenlayer {
  display: none;
  text-align: center;
  background: #ffffff;
  z-index: 100;
}
.hiddenlayer .subtitle p {
  padding-bottom: 14px;
}
.hiddenlayer .content p {
  text-align: left;
  line-height: 20px;
}
.hiddenlayer h2 {
  line-height: 64px;
}
.hiddenlayer .wrapper {
  margin: 0 auto;
  background-color: #d3f0f2;
  padding: 40px 16px 35px;
}
@media only screen and (min-width: 1024px) {
  .hiddenlayer .wrapper {
    padding: 40px 125px 35px;
  }
}

#promo .wrapper {
  padding-top: 20px;
  padding-bottom: 0;
}

.hiddenlayer .sub,
.hiddenlayer .detail {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.5px;
}
.hiddenlayer .red {
  color: #d10a11;
}

#promo .phone p:before {
  background: url("/files/dm/layout/css/img/sprites.png") no-repeat -155px -128px;
  width: 24px;
  height: 26px;
  margin-right: 12px;
}
#promo .red p {
  padding-bottom: 5px;
}

.hiddenlayer .sub {
  display: inline-block;
  position: relative;
  overflow: visible;
  color: #006B2D;
}
.hiddenlayer .sub:before, .hiddenlayer .sub:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 25px;
  background: url("/files/dm/layout/css/img/sprites.png") no-repeat;
  position: absolute;
  top: -3px;
}
.hiddenlayer .sub:before {
  background-position: -113px -198px;
  left: -16px;
}
@media only screen and (min-width: 768px) {
  .hiddenlayer .sub:before {
    left: -25px;
  }
}
.hiddenlayer .sub:after {
  background-position: -134px -198px;
  right: -16px;
}
@media only screen and (min-width: 768px) {
  .hiddenlayer .sub:after {
    right: -25px;
  }
}
.hiddenlayer p {
  padding-bottom: 22px;
}
.hiddenlayer p a {
  color: #635a50;
}

/*======== Slider ========*/
.npslider-aktion .bx-pager {
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 800px;
  margin-left: -400px;
  text-align: center;
}

.npslider-news {
  height: auto !important;
}
.npslider-news .bx-pager {
  margin-top: 30px;
}

.bx-pager.only-child {
  display: none;
  margin: 0;
}

.bx-pager-item {
  display: inline-block;
  margin-left: 10px;
}
.bx-pager-item:first-child {
  margin-left: 0;
}

.bx-pager a {
  display: inline-block;
  width: 10px;
  height: 10px;
  text-indent: -9999px;
  background: url("/files/dm/layout/css/img/sprites.png") no-repeat -102px -200px;
}
.bx-pager a:hover, .bx-pager a.active {
  background-position: -102px -210px;
}

.npslider-aktion .bx-controls-direction {
  position: absolute;
  bottom: 24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media only screen and (min-width: 1024px) {
  .npslider-aktion .bx-controls-direction {
    bottom: 5px;
    right: 65px;
    left: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.npslider-news .bx-controls-direction {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
}
.bx-controls-direction .bx-prev {
  background-position: -150px 0;
}
.npslider-news .bx-controls-direction .bx-prev {
  left: -90px;
}
.bx-controls-direction .bx-next {
  background-position: -150px -50px;
}
.npslider-news .bx-controls-direction .bx-next {
  right: -90px;
}
.bx-controls-direction a {
  display: inline-block;
  width: 46px;
  height: 48px;
  text-indent: -9999px;
  background: url("/files/dm/layout/css/img/sprites.png") no-repeat;
}
.bx-controls-direction a.disabled {
  display: none;
}
.npslider-news .bx-controls-direction a {
  position: absolute;
  top: 0;
}

#aktions-slider {
  background: #ffffff;
  margin-top: -16px;
}
#aktions-slider figure {
  position: relative;
  width: 100%;
  padding-top: 20%;
}
@media only screen and (min-width: 1024px) {
  #aktions-slider figure {
    position: relative;
    height: 216px;
    width: 1024px;
    margin: 0;
    padding-top: 0;
  }
}
#aktions-slider figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 1024px) {
  #aktions-slider figure img {
    position: relative;
    top: auto;
    left: auto;
  }
}
@media only screen and (max-width: 1023px) {
  #aktions-slider .ce_slide_promo,
  #aktions-slider .ce_slide_news {
    padding-bottom: 72px;
  }
}
#aktions-slider .ce_slide_promo a {
  margin: 10px auto;
  background: url("/files/dm/layout/css/img/sprite_woodbtn.png") 0 -100px no-repeat;
  width: 263px;
  height: 47px;
  display: block;
  border: none;
  text-indent: -9999px;
  outline: none;
}
@media only screen and (min-width: 1024px) {
  #aktions-slider .ce_slide_promo a {
    margin: 0;
    position: absolute;
    bottom: 20px;
    left: 220px;
    transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -webkit-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
  }
}
#aktions-slider .layout_short {
  position: relative;
  height: 216px;
  background: transparent url("/files/dm/bilder/slider_news.jpg") 0 0 no-repeat;
}
#aktions-slider .teaser_wrapper {
  padding: 16px;
}
@media only screen and (min-width: 1024px) {
  #aktions-slider .teaser_wrapper {
    position: absolute;
    left: 265px;
    right: auto;
    top: 40px;
    width: 487px;
    padding: 0;
  }
}
@media only screen and (max-width: 1023px) {
  #aktions-slider .teaser_wrapper p {
    font-size: 19px;
  }
}
#aktions-slider .teaser_wrapper h2 a {
  color: #5b5247;
}
#aktions-slider .teaser_wrapper a {
  color: #d10a11;
}
#aktions-slider .teaser_wrapper .more {
  font-family: MyriadProRegular, "Open Sans", arial, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #d10a11;
}

.ce_slide_news,
.ce_slide_promo {
  position: relative;
}

.hamburger {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1;
  z-index: 1000;
  outline: none;
}
@media only screen and (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

#content_navigation {
  width: 100%;
  background-color: #ffffff;
  padding: 32px 0;
}
@media only screen and (min-width: 1024px) {
  #content_navigation {
    padding: 0;
  }
}
@media only screen and (min-width: 1024px) {
  #content_navigation {
    height: 110px;
  }
}
#content_navigation ul {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (min-width: 1024px) {
  #content_navigation ul {
    display: block;
  }
}
#content_navigation li {
  font-family: lovepotionno10, lucidagrande, arial, sans-serif;
  font-size: 32px;
  line-height: 64px;
  font-weight: normal;
  margin: 0 auto;
  padding: 0;
  position: relative;
  float: none;
  display: block;
}
@media only screen and (min-width: 1024px) {
  #content_navigation li {
    display: inline-block;
    line-height: 110px;
    margin: 0 32px;
    width: auto;
    font-size: 25px;
  }
}
#content_navigation li.active:before {
  display: none;
  content: "";
  background: transparent url("/files/dm/layout/css/img/sprites.png") -43px -200px no-repeat;
  width: 40px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -20px;
}
@media only screen and (min-width: 1024px) {
  #content_navigation li.active:before {
    display: block;
  }
}
.einrichtungen-heime #content_navigation li.active:before {
  margin-left: 6px;
}
.buero-betrieb #content_navigation li.active:before {
  margin-left: -27px;
}
.kindergaerten-schulen #content_navigation li.active:before {
  margin-left: -2px;
}
#content_navigation span {
  cursor: default;
}
#content_navigation .underline {
  display: none;
  width: 100%;
  height: 7px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media only screen and (min-width: 1024px) {
  #content_navigation .underline {
    bottom: 30px;
  }
}
#content_navigation .underline img {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#content_navigation a:hover + .underline,
#content_navigation span.active + .underline {
  display: block;
}
#content_navigation a,
#content_navigation span {
  color: #635a50;
}
#content_navigation a span,
#content_navigation span span {
  display: inline-block;
  text-align: center;
  width: 23px;
  height: 23px;
  line-height: 25px;
  background-color: #d10a11;
  color: #ffffff;
  border-radius: 50%;
}

.nav li a {
  text-decoration: none;
  color: #635a50;
}
.nav li.active, .nav li.open, .nav li:hover {
  background-color: #006B2D;
  color: #ffffff;
}
.nav span.active {
  cursor: default;
}
.nav--main {
  display: none;
  text-transform: uppercase;
}
@media only screen and (min-width: 1024px) {
  .nav--main {
    display: block;
  }
}
.nav--main .level_1 > li:first-child {
  display: none;
}
.nav--main li.trail {
  background: #006B2D;
}
.nav--main li.trail a,
.nav--main li.trail span {
  color: #fff;
}
.nav--main li:hover a, .nav--main li.active a {
  color: #fff;
}
.nav--main .level_2 {
  display: none;
  position: absolute;
  top: 64px;
  left: 64px;
  z-index: 999;
  padding: 20px 20px 40px 20px;
  background: #006B2D;
}
.nav--main .level_2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 32px;
  content: "";
  display: block;
  background: url("img/square_flyout.jpg");
}
.nav--main .level_2 li {
  text-align: center;
  padding: 0 30px;
  width: 90px;
  line-height: normal;
}
.nav--main .level_2 li:first-child {
  display: block;
}
.nav--main .level_2 li a,
.nav--main .level_2 li span {
  display: block;
  color: #fff;
}
.nav--main .level_2 li a img,
.nav--main .level_2 li span img {
  display: block;
  margin: 0 auto;
}
.nav--main .level_2 li a span,
.nav--main .level_2 li span span {
  display: inline-block;
  height: 32px;
  padding-top: 10px;
  font-size: 13px;
  opacity: 0.7;
}
.nav--main .level_2 li a.active span,
.nav--main .level_2 li span.active span {
  opacity: 1;
}
.nav--main .level_2 li a:hover span,
.nav--main .level_2 li span:hover span {
  opacity: 1;
}
.nav--imprint {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .nav--imprint {
    display: block;
  }
}
.nav--imprint li:hover a {
  color: #ffffff;
}

#mobile-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: fixed;
  top: 64px;
  right: -100%;
  z-index: 999;
  width: 300px;
  height: calc(100vh - 64px);
  padding: 16px 32px 32px;
  background: #fff;
  -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: right 300ms ease-in-out;
  -o-transition: right 300ms ease-in-out;
  transition: right 300ms ease-in-out;
}
#mobile-modal.is-open {
  right: 0;
}
#mobile-modal .nav--mobile:last-child {
  margin-top: 32px;
  border-top: 1px solid #d10a11;
  padding-top: 16px;
}
#mobile-modal .nav--mobile li {
  float: none;
  display: block;
  background: transparent;
}
#mobile-modal .nav--mobile li.active {
  color: #d10a11;
}
#mobile-modal .nav--mobile .level_1 {
  text-transform: uppercase;
}
#mobile-modal .nav--mobile .level_1 li {
  position: relative;
  padding-left: 16px;
}
#mobile-modal .nav--mobile .level_1 li::before {
  position: absolute;
  left: 0;
  top: 4px;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("img/list-icon.png");
  background-repeat: no-repeat;
}
#mobile-modal .nav--mobile .level_1 li.active, #mobile-modal .nav--mobile .level_1 li.open, #mobile-modal .nav--mobile .level_1 li:hover, #mobile-modal .nav--mobile .level_1 li:focus {
  color: #d10a11;
}
#mobile-modal .nav--mobile .level_1 span,
#mobile-modal .nav--mobile .level_1 a {
  display: block;
  margin-bottom: 8px;
}
#mobile-modal .nav--mobile .level_2 {
  margin-bottom: 16px;
  text-transform: none;
}
#mobile-modal .nav--mobile .level_2 li {
  margin-bottom: 4px;
}
#mobile-modal .nav--mobile .level_2 li::before {
  display: none;
}

/*======== Clearfix ========*/
.clearfix {
  zoom: 1;
}
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
/*# sourceMappingURL=main.css.map */
