.content-slider{overflow:hidden;visibility:hidden;position:relative}.slider-wrapper{overflow:hidden;position:relative}.slider-wrapper>*{float:left;width:100%;position:relative}.slider-control{height:30px;position:relative}.slider-control a,.slider-control .slider-menu{position:absolute;top:9px;display:inline-block}.slider-control .slider-prev{left:0}.slider-control .slider-next{right:0}.slider-control .slider-menu{top:0;width:50%;left:50%;margin-left:-25%;font-size:27px;text-align:center}.slider-control .slider-menu b{color:#bbb;cursor:pointer}.slider-control .slider-menu b.active{color:#666}
@charset "UTF-8";
.contao-cookiebar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  font-size: 0;
  text-align: center;
  padding: 15px;
  max-height: 100vh;
  box-sizing: border-box;
  pointer-events: none;
  overflow: hidden;
}
.contao-cookiebar * {
  box-sizing: border-box;
}
.contao-cookiebar:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.contao-cookiebar .cc-inner {
  display: inline-block;
  overflow-y: auto;
  max-height: 100%;
  max-width: 100%;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  font-size: 1rem;
  text-align: left;
}
.contao-cookiebar.cc-top .cc-inner {
  vertical-align: top;
}
.contao-cookiebar.cc-top.cc-active .cc-inner {
  animation: cookiebar-top-in 0.5s ease-in-out forwards;
}
.contao-cookiebar.cc-top.cc-saved .cc-inner {
  animation: cookiebar-top-out 0.5s ease-in-out forwards;
}
.contao-cookiebar.cc-bottom .cc-inner {
  vertical-align: bottom;
}
.contao-cookiebar.cc-bottom.cc-active .cc-inner {
  animation: cookiebar-bottom-in 0.5s ease-in-out forwards;
}
.contao-cookiebar.cc-bottom.cc-saved .cc-inner {
  animation: cookiebar-bottom-out 0.5s ease-in-out forwards;
}
.contao-cookiebar.cc-middle .cc-inner {
  vertical-align: middle;
}
.contao-cookiebar.cc-middle.cc-active .cc-inner {
  animation: cookiebar-middle-in 0.5s ease-in-out forwards;
}
.contao-cookiebar.cc-middle.cc-saved .cc-inner {
  animation: cookiebar-middle-out 0.5s ease-in-out forwards;
}
.contao-cookiebar.cc-left {
  text-align: left;
}
.contao-cookiebar.cc-right {
  text-align: right;
}
.contao-cookiebar .cc-head h1:first-child, .contao-cookiebar .cc-head h2:first-child, .contao-cookiebar .cc-head h3:first-child, .contao-cookiebar .cc-head h4:first-child, .contao-cookiebar .cc-head h5:first-child, .contao-cookiebar .cc-head h6:first-child {
  margin-top: 0;
}
.contao-cookiebar .cc-head p {
  margin-bottom: 15px;
}
.contao-cookiebar .cc-btn {
  display: inline-block;
  cursor: pointer;
  width: 100%;
  padding: 8px 14px;
  margin-bottom: 8px;
  font-size: 15px;
  outline: 0 none;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  color: #444;
  background: #f5f5f5;
}
.contao-cookiebar .cc-btn:hover {
  background: #ececec;
}
.contao-cookiebar .cc-btn.success {
  background: #4e9e3e;
  border-color: #3e7830;
  color: #fff;
}
.contao-cookiebar .cc-btn.success:hover {
  background: #4c933f;
}
.contao-cookiebar .cc-btn:last-child {
  margin-bottom: 0;
}
.contao-cookiebar label {
  position: relative;
  display: block;
  padding: 8px 13px 8px 0;
  line-height: 1.2;
}
.contao-cookiebar label.group {
  font-weight: 600;
}
.contao-cookiebar input {
  position: absolute;
  width: 1px;
  height: 1px;
  outline: 0 none;
  opacity: 0;
}
.contao-cookiebar input + label {
  padding: 8px 13px 8px 50px;
  cursor: pointer;
}
.contao-cookiebar input + label:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 35px;
  height: 18px;
  margin: 0;
  box-sizing: content-box;
  border-radius: 10px;
  background: #fff;
  border: 2px solid #9c9b99;
  transition: border-color 0.2s;
}
.contao-cookiebar input + label:after {
  display: block;
  content: "";
  position: absolute;
  top: 10px;
  left: 4px;
  width: 14px;
  height: 14px;
  border-radius: 10px;
  background: #9c9b99;
  transition: background 0.2s, margin-left 0.2s, padding 0.2s;
}
.contao-cookiebar input + label:active:after {
  padding-left: 5px;
}
.contao-cookiebar input.cc-group-half + label:after {
  background: linear-gradient(to right, #9c9b99 0%, #9c9b99 50%, #399d32 50%, #399d32 100%);
}
.contao-cookiebar input:checked + label:after {
  background: #399d32;
  margin-left: 17px;
}
.contao-cookiebar input:checked + label:active:after {
  margin-left: 12px;
}
.contao-cookiebar input:checked + label:before {
  background: #dcf3db;
  border-color: #399d32;
}
.contao-cookiebar input:disabled + label {
  pointer-events: none;
}
.contao-cookiebar input:disabled + label:after {
  background: #c8c7c5;
}
.contao-cookiebar input:disabled + label:before {
  background: #f4f4f4;
  border-color: #c8c7c5;
}
.contao-cookiebar.cc-active .cc-inner {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.contao-cookiebar.cc-active.cc-blocked {
  pointer-events: auto;
  animation: cookiebar-overlay-in 0.5s ease-in-out forwards;
}
.contao-cookiebar.cc-saved.cc-inner {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.contao-cookiebar.cc-saved.cc-blocked {
  pointer-events: none;
  animation: cookiebar-overlay-out 0.5s ease-in-out forwards;
}

@media (min-width: 768px) {
  .contao-cookiebar .cc-btn {
    width: auto;
    margin-bottom: 0;
  }
  .contao-cookiebar .cc-inner {
    max-width: 750px;
  }
}
@keyframes cookiebar-overlay-in {
  0% {
    background: rgba(0, 0, 0, 0);
  }
  100% {
    background: rgba(0, 0, 0, 0.75);
  }
}
@keyframes cookiebar-overlay-out {
  0% {
    background: rgba(0, 0, 0, 0.75);
  }
  100% {
    background: rgba(0, 0, 0, 0);
    visibility: hidden;
  }
}
@keyframes cookiebar-top-in {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cookiebar-top-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
  }
}
@keyframes cookiebar-middle-in {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes cookiebar-middle-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
  }
}
@keyframes cookiebar-bottom-in {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cookiebar-bottom-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
  }
}
.cookiebar_default {
  color: #444444;
}
.cookiebar_default p {
  color: #868686;
  line-height: 1.4;
}
.cookiebar_default .cc-inner {
  padding: 25px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  background: #fff;
}
.cookiebar_default .cc-group {
  position: relative;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  margin-bottom: 10px;
}
.cookiebar_default .cc-group > label {
  margin: 5px 130px 5px 10px;
}
.cookiebar_default .cc-group .cc-detail-btn {
  position: absolute;
  right: 0;
  top: 0;
  border: 0 none;
  outline: 0 none;
  background: transparent;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: initial;
  cursor: pointer;
  padding: 13px;
  color: #a2a2a2;
}
.cookiebar_default .cc-group .cc-detail-btn span:nth-child(2) {
  display: none;
}
.cookiebar_default .cc-group .cc-detail-btn.cc-active span:nth-child(1) {
  display: none;
}
.cookiebar_default .cc-group .cc-detail-btn.cc-active span:nth-child(2) {
  display: inline;
}
.cookiebar_default .cc-group .cc-detail-btn:hover {
  color: #717171;
}
.cookiebar_default .cc-group .cc-detail-btn-details {
  display: inline-block;
  border: 0 none;
  outline: 0 none;
  background: transparent;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: initial;
  cursor: pointer;
  color: #a2a2a2;
  text-decoration: underline;
  padding: 0;
  margin: 0 0 10px;
}
.cookiebar_default .cc-group .cc-detail-btn-details span:nth-child(2) {
  display: none;
}
.cookiebar_default .cc-group .cc-detail-btn-details.cc-active span:nth-child(1) {
  display: none;
}
.cookiebar_default .cc-group .cc-detail-btn-details.cc-active span:nth-child(2) {
  display: inline;
}
.cookiebar_default .cc-group .cc-detail-btn-details:hover {
  color: #717171;
}
.cookiebar_default .cc-cookies {
  display: none;
  background: #fbfbfb;
  border-radius: 0 0 5px 5px;
}
.cookiebar_default .cc-cookies > p {
  font-size: 0.875rem;
}
.cookiebar_default .cc-cookies > p, .cookiebar_default .cc-cookies > .cc-cookie {
  margin: 0;
  padding: 15px;
  border-top: 1px solid #e6e6e6;
}
.cookiebar_default .cc-cookies .cc-cookie .cc-cookie-info {
  font-size: 0.875rem;
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #efefef;
}
.cookiebar_default .cc-cookies .cc-cookie .cc-cookie-info > div + div {
  margin-top: 5px;
}
.cookiebar_default .cc-cookies .cc-cookie .cc-cookie-info + button.cc-detail-btn-details {
  margin-top: 15px;
}
.cookiebar_default .cc-cookies .cc-cookie .cc-cookie-desc > p {
  margin-bottom: 0;
}
.cookiebar_default .cc-cookies .cc-cookie label.cookie + p, .cookiebar_default .cc-cookies .cc-cookie label.cookie + .cc-cookie-info, .cookiebar_default .cc-cookies .cc-cookie label.cookie + button.cc-detail-btn-details {
  margin-top: 10px;
}
.cookiebar_default .cc-cookies .cc-cookie p {
  margin: 0 0 15px;
  font-size: 0.875rem;
}
.cookiebar_default .cc-footer, .cookiebar_default .cc-info {
  text-align: center;
}
.cookiebar_default .cc-info {
  margin-top: 15px;
}
.cookiebar_default .cc-info > p {
  font-size: 0.875rem;
}
.cookiebar_default .cc-info > a {
  display: inline-block;
  font-size: 0.813rem;
  color: #a2a2a2;
  text-decoration: none;
}
.cookiebar_default .cc-info > a:hover {
  color: #717171;
}
.cookiebar_default .cc-info > a + a:before {
  display: inline-block;
  content: "·";
  margin-right: 5px;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

body,form,figure{margin:0;padding:0}img{border:0}header,footer,nav,section,aside,article,figure,figcaption{display:block}body{font-size:100.01%}select,input,textarea{font-size:99%}#container,.inside{position:relative}#main,#left,#right{float:left;position:relative}#main{width:100%}#left{margin-left:-100%}#right{margin-right:-100%}#footer{clear:both}#main .inside{min-height:1px}.ce_gallery>ul{margin:0;padding:0;overflow:hidden;list-style:none}.ce_gallery>ul li{float:left}.ce_gallery>ul li.col_first{clear:left}.float_left{float:left}.float_right{float:right}.block{overflow:hidden}.clear,#clear{height:.1px;font-size:.1px;line-height:.1px;clear:both}.invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.custom{display:block}#container:after,.custom:after{content:"";display:table;clear:both}
@font-face {
      font-family: 'fontello';
      src: url('/files/theme/layout/styles/frontend/fonts/fontello/font/fontello.eot?62128701');
      src: url('/files/theme/layout/styles/frontend/fonts/fontello/font/fontello.eot?62128701#iefix') format('embedded-opentype'),
           url('/files/theme/layout/styles/frontend/fonts/fontello/font/fontello.woff?62128701') format('woff'),
           url('/files/theme/layout/styles/frontend/fonts/fontello/font/fontello.ttf?62128701') format('truetype'),
           url('/files/theme/layout/styles/frontend/fonts/fontello/font/fontello.svg?62128701#fontello') format('svg');
      font-weight: normal;
      font-style: normal;
    }




*{
    border: none;
    outline: none;
}

html{
font-size:100.1%;
overflow-x:hidden;
-webkit-overflow-scrolling: touch;
 -webkit-text-size-adjust: 100%;
}
 
body, html {
height:100%;
min-height:100%;
}

body{
display: flex;
min-height: 100vh;
flex-direction: column;
}

.ce_logo .logo{
    margin-bottom: 1rem;
}

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

.ce_colorslider .headlinecontainer > *{
    font-size:50px;
}
.ce_colorslider .holder {
position:relative;
}

.parallax-container .headlinecontainer > * {
    font-size: 80px;
}

.ce_parallaxImage .caption > .row > .holder{
    padding: 2rem;
}
strong {
font-weight:700;
}


  #wrapper {
    flex: 1 0 auto;
  }
/*Ende sticky footer*/

/*inputrendering*/
input,textarea,select{
/*Safari*/
-webkit-appearance: none;
border-radius:0;
-webkit-border-radius:0;
}

figure > img, .image_container > img{
max-width:100%;
height:auto;
    
}

/*set images to maxwidth 100%*/
figure{
line-height:0;
    margin: 0;
}

figure > img, .image_container > img{
max-width:100%;
height:auto;
}

a{
color:inherit;
}
 
 
a:focus{
}
/*Ende Basics*/



 a {
transition:all 0.2s ease;
-webkit-transition:all 0.2s ease;
-moz-transition:all 0.2s ease;
-o-transition:all 0.2s ease;
-ms-transition:all 0.2s ease; 
text-decoration: none;
color:inherit;
 }


.table{
display:table;
width:100%;
}

.table-wrapper {
  display: table;
  vertical-align: middle;
  text-align: center;
  width: 100%;
  height: 100%;
  table-layout:fixed;
}

.row{
display:table-row;
position:relative;
}

.row > *{
display:table-cell;
}

.vtop{
    vertical-align: top
}

.vmiddle{
    vertical-align: middle
}

.vbottom{
    vertical-align: bottom
}


.headlinecontainer{
margin-bottom:2rem;
}

.headlinecontainer > *{
margin:0;

}



ul li{

}

#main .inside .ce_text.block .text > ul li{
list-style:disc;
list-style-position: outside;
line-height:2.1rem;
}

.preHeadline{
   font-weight: 600; 
      text-shadow: 1px 1px 8px rgba(0,0,0,0.8);
}
 
h1, .h1 {
  font-size:1.7em;
  line-height:1.2em;
  letter-spacing:0.03em;
  margin-bottom:0.5em;
}

.parent_kueche-kaufen .teasergrid h2, .ce_pageteaser h2,h2, .h2, .zitat {
    font-size: 38px;
    line-height: 1.4;
}

 h3, .h3 {
font-size:38px;
    margin-bottom: 0;
     line-height: 1.2;
}

h4,.h4{
  font-size:23px;  
}


#main .inside .stars.block.ce_text ul li{
    margin-bottom: 2rem;
        line-height: 1.2;
    list-style-type: none;

}

h5, .h5{
font-size:16px;
font-weight:600;
}
h6{}

.megamenue.mod_navigation > ul > li > * {
    font-size: 18px;
    letter-spacing: 0.03rem;
}

.megamenue.mod_navigation > ul > li.trail > a,.megamenue.mod_navigation > ul > li.trail > span {
    text-decoration: underline;
}
 
p{
margin-bottom:20px;
}

p:last-of-type{
margin-bottom:0;
}
 
ul,ol{
margin:0;
    padding:0;
}
 

 
li{
list-style-type:none;
}



#main {

}


/*Teaser*/

.ce_page_teasers_element span, .ce_page_teasers_element a{
    display: block;
}
.teasergrid > div, .teasergrid > ul {
  margin: 0 -10px -10px;
  display: table;
  width: calc(100% + 10px);
}

.teasergrid > div > *, .teasergrid > ul > *,
body .ce_gallery > ul li{
    float: left;
    margin:0 5px 10px;
}


.teasergrid > div > * .inside, .teasergrid > ul > * .inside,
.teasergrid > div > * .inside > *, .teasergrid > ul > * .inside > *{
    height: 100%;
}


.teasergrid > .itemsperRow_1 > *{
    width:calc(100% / 1 );
        margin:0;
}

.index .teasergrid > div.itemsperRow_1{
    padding: 0;
    padding: 0;
width: 100%;
margin: 0 auto;
}
.teasergrid > .itemsperRow_2 > *,ul.cols_2 > li{
 width:calc( (100% - (4 * 5px)) / 2 )
}

.teasergrid > .itemsperRow_3 > *, ul.cols_3 > li{
    width:calc( (100% - (6 * 5px)) / 3 )
}

.teasergrid > .itemsperRow_4 > *, ul.cols_4 > li{
    width:calc( (100% - (8 * 5px)) / 4 )
}

.teasergrid > .itemsperRow_5 > *, ul.cols_5 > li{
     width:calc( (100% - (10 * 5px)) / 5 )
}

.teasergrid > .itemsperRow_6 > *, ul.cols_6 > li{
     width:calc( (100% - (12 * 5px)) / 6 )
}



.gallery ul.cols_2 > li{
 width:calc(100% / 2 );
}

.gallery ul.cols_3 > li{
 width:calc(100% / 3 );
}

.gallery ul.cols_4 > li{
 width:calc(100% / 4 );
}

.gallery ul.cols_5 > li{
 width:calc(100% / 5 );
}

.gallery ul.cols_6 > li{
 width:calc(100% / 6 );
}

ul.cols_3 > li {
  width: calc( 100% / 3 );
}

#main .inside .block .gallery.teasergrid > ul > li{
    margin:0; 
}

.headerleft::after {
    content: '';
    display: table;
    width: 100%;
    height: 1px;

}

.headerleft > *{
    display: inline-block;
    vertical-align: middle;
}

.headerleft > .search{
    float: right;
    display: table;
}

/*heroimage*/


.ce_heroImage .bgImage{
line-height: 0;    
    height: calc(100vh - (100vh / 6));
    max-height: 980px;
    min-height: 450px;
    height: auto;
}


img.ce_heroImage{
    width: 100%;
    height: auto;
    opacity: 0;
}

p{
    margin-top: 0;
}

.ce_heroImage > .inside{
    
}



.ce_heroImage .caption .headlinecontainer{
    margin-bottom: 0;
}

.ce_heroImage .caption .headlinecontainer > *, #herosection .flexslider .caption .headlinecontainer > *  {
    font-size: 62px;
    line-height: 1.2;
    margin: 0;
}

.ce_heroImage .caption,#herosection .flexslider .caption {
   position: absolute;
z-index: 999;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: table;
box-sizing: border-box;
}

.ce_heroImage .caption .row > .inside,#herosection .flexslider .caption .inside{
    vertical-align: bottom;
}


.ce_heroImage .caption .row > .inside > div, #herosection .flexslider .caption .inside > div{

    display: table;
    padding: 4rem 0 2rem;
    box-sizing: border-box;
}

#herosection .ce_heroImage,#herosection img.ce_flexslider {
   
}


#herosection .ce_heroImage .caption .row > .inside > div > div, #herosection .flexslider .caption .inside > div > div{
max-width: 650px;
color: #fff;
background: rgba(0,0,0,.6);
padding:2rem 4rem;
padding-left: calc( ((100vw - 1280px) / 2) + 2rem);
    margin-bottom: 4rem;

}


 #herosection .flexslider .caption .inside > div {

     background: transparent;
}

#slider .hero {
  height: calc(100vh - (100vh / 6)); 
}
.parent_angebotskuechen #slider .hero {
  height: auto; 
}


.flexslider .slides img,#slider .hero img{
   
    max-width: 100%;
    height: auto;
}

#slider .hero > li{
    height: 100%;
}

.mod_article.bgColored > .block > .block, .mod_article > .block > .block,#maincontent > .block{
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem 4rem;
    box-sizing: border-box;
}

.mod_article > .block > .block.fullsize, .mod_article.bgColored > .block{
   max-width: none;
    padding:0;
}

.image_container{
    line-height: 0;
}

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

.floating_above .teasergrid{
    margin-bottom: 2rem;
}

.floating_below .teasergrid{
    margin-top: 2rem;
}





.floating_left .teasergrid > .itemsperRow_2 > *,
.floating_right .teasergrid > .itemsperRow_2 > *{
float:none;
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
}


.floating_right .teasergrid > div, .floating_right .teasergrid > ul,
.floating_left .teasergrid > div, .floating_left .teasergrid > ul{
   margin: 0;

}

.teasergrid a, .teasergrid a span{
    display: block;
}



/*.ce_gallerytext.element_float_left .row > *, .ce_gallerytext.element_float_right .row > *{
    vertical-align: top;
}*/


.ce_gallerytext.element_float_left .image, .ce_gallerytext.element_float_right .image{
    width: 35%;
}


.ce_gallerytext.element_float_left .image{
    padding-right: 4rem;
}

.ce_gallerytext.element_float_right .image{
    padding-left: 4rem;
}


.ce_gallerytext .floating_right li.last, .ce_gallerytext .floating_left li.last{
    margin-bottom: 0;
}


.center .teasergrid > ul {
    width: auto;
    text-align: center;
}

.center .teasergrid > ul > li{
 
}

.fullwidth.mod_article > .block > .block{
    max-width: none;
padding: 4rem 0 4rem;
margin: 0;
}

.fullwidth.mod_article > .ce_image.block img{
    width: 100%;
}

.fullwidth.mod_article > .block.mod_filter_tag_module{

}


.fullwidth.mod_article > .block.mod_filter_tag_module .headlinecontainer{
max-width: 1280px;
margin: 0 auto;
padding: 6rem 2rem 8rem;
    padding-bottom: 8rem;
box-sizing: border-box;
}

.ce_image figcaption.caption {
  line-height: 1.2;
  padding: 20px 0;
}


.fullwidth.mod_article > .block.element_float_left{
    padding-right:calc( ((100vw - 1280px) / 2) + 2rem);
}


.fullwidth.mod_article > .block.element_float_right{
    padding-left:calc( ((100vw - 1280px) / 2));
}


.fullwidth.mod_article > .block.element_float_right > .table{
    padding-left: 2rem;
}

.fullwidth.mod_article > .ce_gallerytext .image{
    width: 50%;
    vertical-align: middle;
}


.ce_text.not_float_below{
    margin-bottom: 2rem;
}


.ce_text.not_float_above{
    margin-top: 2rem;
}


.ce_flexslider .row > *{
    width: 50%;
    vertical-align: top;
}


.ce_flexslider.element_align_float_right .row > .flexslider{
    padding-left:4rem;
}

.ce_flexslider.element_align_float_left .row > .flexslider{
    padding-right:4rem;
}

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

.ce_flexslider .ce_text.align_below{
    margin-top: 20px;
}

.ce_flexslider .ce_text.align_above{
    margin-bottom: 20px;
}

.twocol .float_left,.twocol .float_right{
    float: none;
}

.twocol .row > *{
    width: 50%;
}

.valign_top.twocol .row > *{
    vertical-align: top;
}

.valign_middle.twocol .row > *{
    vertical-align: middle;
}

.valign_bottom.twocol .row > *{
    vertical-align: bottom;
}


.twocol .textholder.not_left, .twocol .textholder.not_above{
    padding-left: 4rem
}


.twocol .textholder.not_right,.twocol .textholder.not_below{
    padding-right: 4rem
}


.fullwidth.mod_article > .block.ce_parallaxImage{
    padding: 0;
}

.parallax-container {
    position: relative;
    overflow: hidden;
    height: 650px;
}

.parallax-container .parallax {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}


.parallax-container .parallax img {
    opacity: 0;
    position: absolute;
    left: 50%;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.ce_parallaxImage .caption{
    max-width: 1280px;
    padding: 0 2rem;
    box-sizing: border-box;
    text-align: center;
    margin: 0 auto;
    margin-top: 0;
    margin-bottom: 0;
    display: table;
    height: 100%;
}

.ce_parallaxImage .caption > .row{}

.ce_parallaxImage .caption > .row > *{
 vertical-align: top;
    padding-top: 4rem;
}

.ce_parallaxImage .caption > .row > .holder{
    padding-top: 10%;
}

.image_container{
    text-align: center;
}

.image_container.float_above, .ce_player .ce_text.not_floating_below{
    margin-bottom: 2rem;
}


.image_container.float_below, .ce_player .ce_text.not_floating_above{
    margin-top: 2rem;
}

.image_container.float_left{
    margin-right: 4rem
}

header{
  /*  position: absolute; */
    width: 100%;
   /* background: #3c3c3c;*/
}

.heropage header:not(.clone), .parent_angebote.nohero header:not(.clone){
   
}

.heropage header:not(.clone):hover{
    
}

.nohero header{
    position: relative;
}


#footerbottom > .inside{
    position: relative;
    z-index: 999;
    max-width: 1280px;
    width: 100%;
    margin:0 auto;
    padding:20px 2rem;
    box-sizing: border-box;
}

footer .footer > .inside{
  background: whiteSmoke;
}
footer {

color: #fff;

}


header > .inside{
   display: table;
    width: 100%;
    box-sizing: border-box;
    max-width: 1280px;
    padding: 0 2rem;
    margin: 0 auto;
    color: white;
    z-index: 100;
}
.menu-btn {
cursor:pointer;
}

.headercenter{
    text-align: center;
    vertical-align: bottom;
}

header > .row > .headerleft,header > .row > .headerright{
    vertical-align: top;
}

.headercenter > *{
    margin: 0 auto;
}

header.clone {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
    transition: 0.2s transform cubic-bezier(.3,.73,.3,.74);
       background:black;
    width: 100%;
    z-index: 1001;
}

body.down header.clone {
    transform: translateY(0);
}

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

header .row > *{
    vertical-align: top;
    padding:20px 0;
}


header .mod_navigation ul > li{
    /*float: left;
    margin-right: 20px;
    text-transform: uppercase;
    font-weight: bolder;*/
}

header .mod_navigation ul > li.last{
    margin-left: 0;
}

.mod_logo{
    max-width: 380px;
    margin: 0 auto;
}

#header.clone .mod_logo{
    max-width: 200px;
}


.headerright > .mod_logo{
    float:right;
}

#main > .inside{
    padding: 0 0 6rem;
}



video {
    width: 100%;
    box-sizing: border-box;
}


body .slicknav_btn{
    top:40px;
    position: absolute;
}


.slicknav_menu .mod_logo {
    max-width: 200px;
    margin: 10px 20px;
}

body .slicknav_menu {
    background: white;
    display: none;
}

#responsivenav{
    display: none;
}

body .slicknav_menu .slicknav_icon-bar{
    background: gray;
}

.bgColored{
    position: relative;
      background: rgba(0,0,0,0.11);
}


.bgColored.margTop, .bgColored.margBottom{
    background: transparent;
}
.bgColored > .block:after{
    background: rgba(0,0,0,0.11);
     position: absolute;
        content: '';
    z-index: -20;
     height: 100%;
    width: 100%;
       top: 0;
    left: 0;
    display: none;
}


.bgColored.margBottom > .block:after, .bgColored.margTop > .block:after{
    display: block
}

.bgColored.margBottom > .block:after{

        
    height: 60%;
   
 

}

.slider-control{
    margin-top: 2rem;
}


.bgColored.margTop > .block:after{
    background: rgba(0,0,0,0.11);
    position: absolute;
    height: 60%;
    width: 100%;
    top: auto;
    left: 0;
    content: '';
    z-index: -1;
    bottom: 0;
}
.mod_article.margBottom > .block {
    padding-bottom: 4rem;
}


.ce_bewerbungsbox .row > .imagecol,.ce_bewerbungsbox_full > .imagecol {
    width: auto;
    margin: -5rem -10rem -5rem 0;
    float: right;
    width: auto;
}

.ce_bewerbungsbox .imageholder,.ce_bewerbungsbox_full .imageholder {

    width: 450px;
    height: 450px;
    display: table;
}

.image_container.rounded {
    /*border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
    height: 100%;
    width: 100%;
    box-sizing: border-box;*/
}

.mod_article > .ce_bewerbungsbox,.mod_article > .ce_bewerbungsbox_full {

    padding: 4rem 2rem;
max-width: 1080px;
    overflow: visible;
}

.mod_article > .ce_bewerbungsbox > .table, .mod_article > .ce_bewerbungsbox_full > .table {
    background: #cd0d17;
    /*max-width: 960px;*/
    padding: 2rem;
    box-sizing: border-box;
    margin: 0 auto;

       width:calc((100% - 10rem) + 2rem) 
}

.mod_article > .ce_bewerbungsbox_full > .table{
    padding: 0;
}

.ce_bewerbungsbox .row > *, .ce_bewerbungsbox_full .row > *{
    vertical-align: middle;
    width: 50%;
    box-sizing: border-box;
}


.ce_bewerbungsbox .textcol,.ce_bewerbungsbox_full .textcol {
    text-align: center;
    color: white;
    padding: 0;
        padding-right: 0px;
    width: auto;
    padding-right: 2rem;
}

.ce_bewerbungsbox .textcol.not_left, .ce_bewerbungsbox_full .textcol.not_left {
    padding-left: 2rem;
}

.ce_bewerbungsbox .textcol.not_right{
    padding-right: 2rem;
}

.ce_bewerbungsbox_full .textcol.not_left {
    padding-right: 0;
}

.ce_bewerbungsbox .headlinecontainer{
    margin-bottom: 4rem;
}

.ce_bewerbungsbox .headlinecontainer > *{
   font-size: 48px;
/*hyphens: auto;*/
line-height: 1.2;
letter-spacing: 0.03rem;
}


.ce_bewerbungsbox a,.ce_bewerbungsbox_full a {
    text-transform: uppercase;
    text-align: center;
    border: 1px solid;
   padding: 15px 30px 16px;
    background: #fff;
    color: #333;
    border-radius: 30px;
    font-weight: 700;
    display: table;
    margin: 0 auto;

    line-height:1.2;
    font-size: 36px;
}
.ce_bewerbungsbox a:hover,.ce_bewerbungsbox_full a:hover {
    box-shadow: 3px 3px 5px rgba(0,0,0,0.3);
}

a.cta {
    text-transform: uppercase;
    text-align: center;
   padding: 15px 30px 16px;
    background: #cd0d17;
    color: #fff;
    border-radius: 30px;
  
    display: table;
	margin-top:2rem;

    font-weight: 400;
    line-height:1.2;
    font-size: 20px;
}

.gallery.floating_below{
    margin-top: 4rem;
}

.ce_gallerytext.element_float_left .teasergrid > .itemsperRow_1 > *{
    margin-left: 0;
    margin-right: 0;
}





/* .mod_article.margBottom + .mod_article > .block {
    padding-top: 6rem;
}*/



.safari .ce_heroImage .table{
    display: block;
}


.safari .ce_heroImage .table > .row{
    display: table;
    width: 100%;
    height: 100%;
}

.padded, .mod_article > .block.padded {
    padding-left: 4rem;
      padding-right: 4rem;
}



.readmore {
    display: table;
    border: 1px solid rgba(0,0,0,0.3);
    padding: 10px 2rem;
    line-height: 1;
    margin-top: 2rem;
    text-align: right;
    float: right;
    min-width: 60px;
    text-align: center;
    text-transform: uppercase;
    font-size: 1rem;
}


/*.ce_bewerbungsbox .imagecol:before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background:url(/files/theme/layout/images/icons/Kreis_testimonials.png) 50% 50% no-repeat scroll transparent;
}*/


.mod_article.fullwidth > .ce_bewerbungsbox > .table {
    padding-left: calc(((100% - 1280px) / 2) + 2rem);
    width: 100%;
    padding-right: calc(((100% - 1280px) / 2) + 2rem);
}

.mod_article.fullwidth > .ce_bewerbungsbox .row > .imagecol {
    width: auto;
    margin: -5rem 0 -5rem 0;
}



.ce_kachelelement video{
    height: 100%;
    width: 100%;
}
.ce_kachelelement .row > * {
    width: 50%;
}


.vAlign_top.ce_kachelelement .row > * {
    vertical-align: top
}

.vAlign_middle.ce_kachelelement .row > * {
    vertical-align: middle
}


.vAlign_bottom.ce_kachelelement .row > * {
    vertical-align: bottom
}

.ce_kachelelement .notfloat_right > .inside {
    padding: 0 4rem 0 2rem;
}


.ce_kachelelement .notfloat_left > .inside {
    padding: 0 2rem 0 4rem;
}


.ce_kachelelement .caption{
    display: none;
}


.ce_kachelelement .notfloat_right {
    padding-left: calc(((100% - 1280px) / 2));
}


.ce_kachelelement .notfloat_left {
    padding-right: calc(((100% - 1280px) / 2));
}


.bgImage > img{
    max-width: 100%;
    height: auto;
    opacity: 0;
}

.ce_heroImage .bgImage > img{
    width: 100%;
    height: 100%;
    opacity: 1;
    object-fit: cover;
    object-position: 50% 50%;
}

.row .imageholder.setwidth{
    width: auto;
}

.row > .setwidth.width_1_3col {

    width: calc(100% - (2 * (100% / 3)));

}

.row > .setwidth.width_2_3col ,.setwidth.width_2_3col {
    width: calc(2 * (100% / 3));
}

.row > .setwidth.width_2_2col {
    width: calc(1 * (100% / 2));
}

.mod_article > .block.noPadBottom{
    padding-bottom:0;
}


.ce_gallery > ul li{
    margin: 0 10px 20px 10px;
    float: left;

}


.ce_gallery > ul{
    margin: 0 -10px -20px;
}

.ce_gallery > ul.cols_1 > li{
    width: 100%;
    float: none;
    margin: 0;
}

.ce_gallery > ul.cols_2 > li{
    width: calc((100% - (4 * 10px)) / 2);
}

.ce_gallery > ul.cols_3 > li{
    width: calc((100% - (6 * 10px)) / 3);
}

.ce_gallery > ul.cols_4 > li{
    width: calc((100% - (8 * 10px)) / 4);
}

.ce_gallery > ul.cols_2 li:nth-child(2n+1){
    
}


.ce_gallery > ul.cols_2 li:nth-child(2n+2){
    
}


.ce_longHead > *{
    margin: 0;
}

.mod_article > .block.setwidth .setwidth.width_2_3col{
    padding-left: calc(1 * (100% / 9));
}

.mod_onepage_navigation > .inside{
    background: silver;
padding: 4rem;
}
.mod_onepage_navigation ul{
    padding-left: 15px;
}

.mod_onepage_navigation ul li::before {
    content: '•';
    margin-right: 0.2rem;
    margin-left: -15px;
}


/*Searchmodal*/
.openBtn {
    padding: 0;
    line-height: 0;
    display: inline-block;
    vertical-align: middle;
    background: transparent;
    margin-left: 2rem;
}

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

.openBtn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.openBtn:hover {
 opacity: 0.8;
}

.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
}


.overlay-content {
  position: relative;
  top: 46%;
  width: 80%;
  text-align: center;
  margin-top: 30px;
  margin: auto;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  cursor: pointer;
  color: white;
}

.overlay .closebtn:hover {
  color: #ccc;
}


[type="search"] {
width: 100%;
}


.mod_search form {
    display: table;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}

.mod_search form > .formbody{
   display: table-row;  
}

.mod_search form > .formbody > *{
   display: table-cell;
    vertical-align: middle;
}


.mod_search form .widget-text {
    background: white;
    width: calc(100% - 200px);
}


.mod_search form .widget-submit {
    width: 200px;
    border: 2px solid gray;
    background: gray;
}


.mod_search form .widget-submit > * {
    width: 100%;
    background: transparent;
    text-transform: uppercase;
    cursor: pointer;
    color: white;
}

.fullsize .ce_text,.ce_imagerow .ce_text{
   max-width: 1280px;
margin: 0 auto;
padding: 6rem 2rem 8rem;
box-sizing: border-box;
}

.fullsize .ce_text.not_float_below{
    padding-bottom: 4rem;
}

.fullsize .ce_text.not_float_above{
    padding-top: 4rem;
}

.bgColored > .block{
    padding-top: 3rem;
        padding-bottom: 3rem;
}

.bgColored.colorWhite .headlinecontainer > h2, .bgColored.colorWhite .headline > h2, .bgColored.colorWhite h2{
 color: white;   
}

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

.ce_teaserGrid .itemsperRow_grid > *, .ce_gridGallery .itemsperRow_grid > *{
    float: left;
    margin: 0 10px 20px;
    height:450px;
}

.itemsperRow_grid > .item_1_3col{
    width: calc( (100% - (6 * 10px)) / 3);
}

.itemsperRow_grid > .item_2_3col{
   width: calc( (100% - (4 * 10px)) - ( (100% - (6 * 10px)) / 3));
}

 .itemsperRow_grid > .item_3_3col{
    width: calc(100%);
}

.itemsperRow_grid > .item_3_3col.noimage{
    height: auto;
}



 .itemsperRow_grid .image_container img{
    max-width: 100%;
    height:100%;
}


.ce_teaserGrid .noimage .inside, .ce_gridGallery .noimage .inside {
    display: table;
    height: 100%;
    width: 100%;
    background: #333;
    color: white;
    box-sizing: border-box;
}


.ce_teaserGrid .flexslider ul.slides, .ce_teaserGrid .flexslider ul.slides > li,.ce_teaserGrid .itemsperRow_grid video,.ce_teaserGrid .itemsperRow_grid > * div, .ce_teaserGrid .teasergrid a, .ce_teaserGrid .teasergrid a span{
    height: 100%;
}


.ce_teaserGrid video {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}


.ce_teaserGrid .itemsperRow_grid > .item_3_3col.noimage .inside{
    padding: 2rem;
}

.fullwidth .ce_teaserGrid .itemsperRow_grid > *{
        height: 480px;
    position: relative;
    }


.fullwidth .ce_teaserGrid .itemsperRow_grid > .reference .banner {
    background: #cd0d17;
    display: block;
    padding: 10px 2rem;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    height: 60px;
    width: 100%;
}

.ce_teaserGrid .teasergrid .reference .teasercaption > .inside{
    background: rgba(0,0,0,0.8);
    color: white;
}

.fullwidth .ce_teaserGrid .itemsperRow_grid > * .banner img {
    width: auto;
    height: 100%;
    margin: 0 auto;
}


#herosection .mod_article > .block {
    position: relative;
    max-width: none;
 
    padding: 0;
    width: 100%;
}

.fullwidth.mod_article > .block.ce_teaserGrid{
    padding: 0;
}



#herosection .ce_heroImage{
height: calc(100vh - (100vh / 6));
    }


#herosection video {
    height: calc(100vh - (100vh / 6));
    object-fit: cover;
}

.index .teasergrid > div {
 
    display: table;
    width: auto;
    box-sizing: unset;
    min-width: 100%;

}

.megamenue.block, .filters > .inside {
    overflow: visible;
    display: table;
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.navImage{
    line-height: 0;
}

.navImage > img{
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.megamenue h4{
    margin-top: 0;
}


.megamenu .column{
    margin-bottom: 2rem;
}


#magazin.megamenu .column,#kuechenratgeber.megamenu .column{
    display: table;
}

#magazin.megamenu .column > div, #kuechenratgeber.megamenu .column > div{
    display: table-cell;
    width: 50%;
    vertical-align: top;
}

header nav #magazin.megamenu .column, #kuechenratgeber.megamenu .column{
    display: table;
}

header nav #magazin.megamenu .column:nth-child(1n),#kuechenratgeber.megamenu .column:nth-child(1n){
   width: 50%;
float: left;
margin-left: 0; 
    margin-right: 0; 
}

header nav #magazin.megamenu .column:nth-child(2n),#kuechenratgeber.megamenu .column:nth-child(2n){
   width: 50%;
float: right;
margin-left: 0; 
    margin-right: 0;  
}


header nav #magazin.megamenu .column:nth-child(3n),#kuechenratgeber.megamenu .column:nth-child(3n){
float: none;
width: 50%;
}

#magazin.megamenu .column > div.navbox, #kuechenratgeber.megamenu div.navbox{
    padding-right: 3rem;
}

.megamenu .holder{
    padding: 2rem;
}

#ratgeber.megamenu .holder:before {
content:'';
display:block;
float:left;
width:calc(25% - 4rem);
height:500px;
background:url(../../files/theme/layout/images/lemans.jpg) 50% 50%;
background-size:cover;
margin-right:4rem;
}

header nav #ratgeber .column {
width: calc(25% - 4rem);
margin-right: 4rem;
}


.megamenu > .holder .column > div > li > a{
     font-family: cubano, sans-serif;
    font-weight: 400;
    font-size:1em;
    margin-bottom: 0;
}


header{
    z-index: 1000;
}

#main .inside .block ul li {
    line-height: 1.4;
    margin-bottom: 10px;
    position: relative;
}

#main .inside .star.block ul li {
margin-bottom: 1rem;
}

.rowmatch.noimage .content{
    font-size: 42px;
line-height: 1.2;

font-weight: 400;
    color: white;
    padding: 2rem;
}

.ce_teaserGrid .teasergrid .teasercaption {
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 1.2;
    text-align: left;
    z-index: 99;
}

.ce_teaserGrid .teasergrid .teasercaption > .inside {
    display: table;
    background: white;
    margin: 0 2rem;
    padding: 5px 2rem 15px;
    height: auto;
    line-height: 1.2;
    font-family: cubano,sans-serif;
    font-weight: 400;
    font-size: 25px;
    max-width: 260px;
}

/*handle grid*/
.grid {
padding: 0 10px 5px;
  overflow: hidden;
/*  -moz-animation-name: appear-grid;
  -moz-animation-iteration-count: 1;
  -moz-animation-timing-function: ease-out;
  -moz-animation-duration: 0.8s;
  -webkit-animation-name: appear-grid;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-out;
  -webkit-animation-duration: 0.8s;
  animation-name: appear-grid;
  animation-iteration-count: 1;
  animation-timing-function: ease-out;
  animation-duration: 0.8s;*/
}

.grid * {
  box-sizing: border-box;
}

.mod_list_shot_module .grid {
padding: 0 0 5px;
    margin: 0 10px -10px;
    box-sizing: border-box;
}

.grid:after {
  content: '';
  display: block;
  clear: both;
}

.grid-item,.grid-sizer {
  width: calc((100% - (6 * 10px)) / 3);
    margin: 0 10px 20px;
}
.grid-item{
  float: left;
  position: relative;
    overflow: hidden;
  }

.grid-item > .grid-item-inside {
/*border:5px solid transparent;*/
      position: relative;
}
.grid-item > .grid-item-inside {
    border-bottom: 0;
}

.grid-item-inside a, .grid-item-inside > span {
    display: block;
    position: relative;
    transition: all 0.2s;
}

.pageitem .contentholder {
    max-width: none;
    margin: 0;
    display: block;
}

.contentholder {
    background-color: transparent;
}

.imageholder::after {
   /* position: absolute;
    height: 100%;
    width: 100%;
    content: '';*/
}

.imageholder .teaserImage {
    line-height: 0;
    width: 100%;
    display: block;
    position: realtive;
}

.grid-item img {
    width: 100%;
    height: 100%;
}

.grid .caption {
    text-shadow: none;
    display: table;
    width: 100%;
}

.angebote .teaserheadline{
    margin: 0;
}


.grid .caption .teaserheadline{
font-size: 1.4em;
}

#main .grid .caption > .inside {
min-height:180px;
}

p > a{
    text-decoration: underline;
}

.grid .caption > .inside {

    padding: 0 20px 20px 20px;
    display: inline-block;
}

.grid-item-inside .caption span {
    display: block;
}


.teaserheadline {
    font-size: 2.2rem;
    line-height: 2rem;
    margin: 1rem 0;

    text-transform: uppercase;
    font-weight: 400;
}




.grid-item-inside .caption span.preteaserhead {
    font-size: 18px;
    display: inline-block;
    line-height: 130%;
}

.angebote .grid-item-inside .caption span.preteaserhead {
    line-height: inherit;
}

.angebote .teaserheadline {
    font-size: inherit;
    text-transform: none;
    line-height: 1;
    margin-top: 0.3rem;
    font-size: inherit;
}

.angebote .energydata.table{
    display: none;
}


.grid-item .imageholder .teaserImage{
    background: black;
}

.grid-item:hover .imageholder .teaserImage img{
    opacity: 0.8;
}

.row > .col {
    float: left;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 .75rem;
    min-height: 1px;
    width: auto;
}

.index #carousel {
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
    height: 100%;
    overflow: visible;
}

.index #carousel > *, .index #carousel > * > ul{
    height: 100%;
}



#carousel.flexslider ul.slides > li {
  margin-right: 15px;
  width: 120px !important;
}

#carousel.flexslider .slides img{
    opacity: unset;
    margin-bottom:10px;
}


.index #carousel.flexslider ul.slides > li, .index #carousel.flexslider ul.slides > li img{
    margin-bottom: 0;
}

.index #carousel.flexslider .slides img {
   
    display: none;
}
.index #carousel.flexslider ul.slides > li{
    margin-right: 0;
height: calc((100% / 5));
    float: none !important;
    width: 240px !important;
}

#main .inside .block .flexslider ul.slides > li{
    margin-bottom: 0;
}
#carousel.flexslider ul.slides > li .figcaption{
    font-size: 14px;
    display: block;
    line-height: 1.2rem;
}


.mod_single_direct_module #carousel{
    /*display: none;*/
}

.tablerow.section > .block.nopadtopbottom{
    padding-top: 0;
    padding-bottom: 0;
}

.slidertoggler span{
    display: inline-block;
    vertical-align: middle;
}

.slidertoggler .icon {
    width: 20px;
    line-height: 0;
    margin-left: 10px;
}




.slidertoggler .icon img {
    width: 100%;
    height: auto;
    transform: rotate(-90deg);
}

.slidertoggler.open .icon img {
        transform: rotate(0deg);
}

.tablerow.section > .block{
 max-width: 1280px;
margin: 0 auto;
   padding: 3rem 2rem 4rem;
box-sizing: border-box;   
}

.fullwidth.mod_article > .mod_single_direct_module.block{
    padding: 0;
}

#main > .inside {
    padding: 0;
}

.table > .table-row > * {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
}

.table > .table-row > .not_left, .table > .table-row > .float_right {
    padding-left: 2rem;
}

.table > .table-row > .not_right, .table > .table-row > .float_left {
    padding-right: 2rem;
}

.table > .table-row > .float_right, .table > .table-row > .float_left {
    float: none;
}


.tablerow.section > .ce_introtext.block.first {
    padding: 3rem 2rem 0;
    margin-bottom: 0;
}

/*.image_container img{
width: 100%;    
} */

.hero .flexslider .slides img{
    width: 100%;
    height: auto;
    display: block;
}


.tablerow.section > .block:not(.col){
    max-width: none;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}



.tablerow.section > .block:not(.col) figure img{
    width: auto;
}



.fullwidth.mod_article > .block.ce_bewerbungsbox{
    padding: 5rem 0 6rem;
}

.filters > .inside {
   /* max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: table;
    width: 100%;*/
    padding: 2rem calc(2rem + 25px);
}


.filters > .inside > *{
    float: left;
    margin-right: 2vw;
}

.ui-group strong{
    display: block;
}

.dk-select .disabled{
    display: none;
}

/* clear fix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

.ui-group {
  display: inline-block;
  margin-right: 20px;
}

.parent_angebote.nohero header:not(.clone){
    position: absolute;
}

.tablerow.section > .block.nopadbottom{
    padding-bottom: 0;
}

#main .inside .block .teasergrid ul li:last-of-type{
    margin-bottom: 0;
}

.slidertoggler, #carousel li{
    cursor: pointer;
}

body.gray{
    background:#3c3c3c;
    color:white;
}

.ce_pageteaser.subpages .teasergrid > .itemsperRow_2 > *{
    width: calc( (100% - (4 * 2rem)) / 2 );
    margin: 0 2rem 4rem;
}


.ce_pageteaser.subpages  .teasergrid {
    margin: 10px -2rem -4rem;
}

.ce_pageteaser.subpages .readmore{
    display: none;
}

@-moz-keyframes appear-grid {
  0% {
    -moz-transform: translateY(-200px);
    opacity: 0;
  }
  100% {
    -moz-transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes appear-grid {
  0% {
    -webkit-transform: translateY(-200px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    opacity: 1;
  }
}

@keyframes appear-grid {
  0% {
    transform: translateY(-200px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.energydata {
    box-sizing: border-box;
    padding-top: 20px;
    border-top: 0;
    position: absolute;
    right: 5px;
    top: 0;
    width: 45px;
    z-index: 30;
}

.energydata span {
    display: block;
}

.energydata > .row > * {
    display: block;
    width: 45px;
    padding: 0;
    float: none;
}

.energydata > .row > * .table {
    margin: 0 10px 0 0;
}

.energydata > .row > * .row {
    display: block;
    margin-bottom: 10px;
}

.energydata > .row > * .icon {
    height: 30px;
    width: auto;
    text-align: center;
    vertical-align: middle;
    line-height: 0;
    display: none;
}

.energydata > .row > * .arrow {
    padding-left: 5px;
    line-height: 0;
}

.energydata > .row > * img {
    height: auto;
    width: 100%;
    max-width: none;
}

.not_above .energydata {
    display: table;
    width: auto;
    padding: 0;
    background: none;
    height: auto;
    position: relative;
}

.not_above .energydata > * {
    display: block;
    white-space: nowrap;
    float: left;
    margin-right: 3rem;
}

.not_above .energydata > * > * {
    display: inline-block;
    white-space: normal;
    vertical-align: middle;
}
.not_above .energydata > * > .pdf {
    display: block;
    margin-top: 1rem;
}

.not_above .energydata > * > .icon {
    height: 50px;
    line-height: 0;
    padding-right: 2%;
}

.not_above .energydata > * > .eek {
    width: 70px;
    line-height: 0;
}

.not_above .energydata img{
    max-width: 100%;
}
.not_above .energydata .icon > img {
    height: 100%;
    width: auto;
}

.not_above .energydata a {
    color: #cd0d17;
    text-decoration: underline;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body .fancybox-container{
    z-index:9999999;
}

.mod_single_direct_module .price{
    font-size: inherit;
}

q{
    font-style: italic;
}

q {
  quotes: "“" "”" "‘" "’";
}
q::before {
    content: open-quote;
}
q::after {
    content: close-quote;
}

.author{
    margin-top: 2rem;
}

.gray .mod_article.first > .block.noPadBottom{
    padding-top: 12rem;
}

.gray .ce_pageteaser{
    padding-top: 5rem;
}

.filters strong{
    display: none;
}

body .dk-selected{
    border: 1px solid #aaa;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    font-size: 15px;
    background: rgba(255,255,255,0.2);
}


body  .dk-selected::after{
    border: none;
}


body .dk-selected::before {
    /*border: none;
        border-bottom-color: currentcolor;
    border-bottom-color: rgba(77,89,91,1);
    background: url(/files/theme/layout/images/icons/searchglass.svg) no-repeat scroll 0% 100% transparent;
        background-size: auto;
    background-size: auto;
    content: '';
    display: inline-block;
    height: 28px;
    width: 28px;
    background-size: contain;
    vertical-align: middle;
    top: 0;
    position: absolute;
    margin: .5em;
    right: 0;
    float: right;
    opacity: 0.6;*/
}

body .dk-select{
    line-height: inherit;
}


body #main .inside .block ul.dk-select-options li {
    line-height: 1;
    margin-bottom: 0;
    padding: 10px 20px;
    font-size: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.3);
}


body .dk-select-options .dk-option-highlight, body .dk-option-selected {
    background-color: rgba(0, 0, 0, 0.2);
    color: #333;
    
}

body .dk-select-options{
    max-height: none;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
}

.fullwidth.mod_article > .block.mod_list_shot_module{
    padding-top: 1rem;
}

.price{
    margin-top: 0.5rem;
}

.more{
    margin-top: 2rem;
    display: block;
    cursor: pointer;
    text-align: center;
}


.more .readmore{
    margin: 0 auto;
    float: none;
    cursor: pointer;
}

.teasergrid > .itemsperRow_3 > .holder{
    width: 100%;
}

.mod_filter_tag_module .teasergrid > .itemsperRow_3{
    overflow: hidden;
}

.teasergrid p > a, .teasergrid p >a span, .teasergrid p > strong > a {
    display: inline-block;
}

.text .desc{
    margin-top: 1rem;
}

.angebote .grid .caption > .inside{
    padding: 10px 20px 20px;
    display: block;
}



.slideup {
    position: absolute;
    bottom: 50px;
    display: none;
    transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    left: 0;
    z-index: 9999999;
}


.slideup.fix {
    position: fixed;
    display: block;
    bottom: 0;
    z-index: 90;
    width: 100%;
}

.slideup .toggleSlide {
  width: 200px;
  margin: 0 auto;
    margin-left: auto;
  top: -70px;
  position: absolute;
  background: #004f9d;
  color: white;
  height: 50px;
  line-height: 50px;
  text-align: center;
  padding: 10px 20px;
  left: 50%;
  margin-left: -110px;
  display: table;
  cursor: pointer;
       z-index: 9999999;
}


.slideup .slide {
    width: 100%;
    background: white;
    display: none;
    color: white;
    left: 0px;
    right: 0px;
}

.slideup .slide .sliderinner .slidercontent {
    padding: 0;
}

.slideup span {
    display: block;
    text-transform: uppercase;
    font-size: 18px;
 
	line-height:130%;
}

.slideup span img{
    max-width: 210px;
    margin-top: 0.5rem;
}

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

.radio_container.list > span, .planung .radio_container > span {
    display: block;
    border: 1px solid rgba(0,0,0,0.2);
    margin-bottom: 20px;
    padding: 20px 20px 15px;
}



.radio_container.list > span > *, .planung .radio_container > span {
    display: inline-block;
    vertical-align: middle;
    width: 49.5%;
}


fieldset.planung .radio_container{
    text-align: center;
}

fieldset.planung .radio_container > span {
    display: inline-block;
    width: auto;
    min-width: 180px;
    text-align: left;
}





.radio_container.list > span > label{
    width: calc(100% - 50px);
}

.radio_container.list > span > input{
    width: 25px;
    position: relative;
}
.checkbox_container input:after,
.radio_container.list > span > input:after, fieldset.planung .radio_container > span input:after{
    content: '';
    height: 20px;
    width: 20px;
    border: 2px solid gray;
    display: block;
    border-radius: 50%;
    float: right;
}

.checkbox_container input,
.radio_container.list > span > input, fieldset.planung .radio_container > span input{
    position: relative;
}
.checkbox_container input:checked:before,
.radio_container.list > span > input::before,fieldset.planung .radio_container > span input:before {
    content: '';
    height: 16px;
    width: 16px;
    border: 2px solid white;
    display: block;
    border-radius: 50%;
    float: right;
    position: absolute;
    z-index: 999;
    right: 2px;
    top: 2px;
    
}

.checkbox_container input:checked:before{
    left: 2px;
}


.checkbox_container input:checked:after,
.radio_container.list > span > input:checked:after,fieldset.planung .radio_container > span input:checked:after {
     border: 2px solid #cd0d17;
       background: #cd0d17;
}


.kuechentester-werden .formbody > fieldset{
    display: none;
    position: relative;
}

.kuechentester-werden .formbody > fieldset.first{
    display: block;
}

.kuechentester-werden input,.kuechentester-werden label{
      cursor: pointer;
}


.kuechentester-werden legend {
    text-align: center;
    display: table;
    width: 100%;
    text-transform: uppercase;
    font-family: cubano, sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.4;
    max-width: 650px;
    margin: 0 auto 2rem;
}

.preloader{
    width: 100%;
    display: table;
    margin-top: 2rem;
    text-align: center;
}

.errormsg{
       color: #cd0d17;
    font-size: 14px;
}




.readmoreholder{
      background: #cd0d17;
    color: #fff;
    border: 2px solid #fff;
}

.kuechentester-werden fieldset .widget-text{
    text-align: center;
}

.kuechentester-werden input.text {
    border: 1px solid rgba(0,0,0,0.2);
    width: 100%;
    max-width: 680px;
    padding: 10px;
    box-sizing: border-box;
    margin: 0 auto;
        margin-bottom: 0px;
    text-align: left;
    margin-bottom: 20px;
}


.kuechentester-werden .radio_container.list label {
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.3;
}

.kuechentester-werden .radio_container.list label:before,  fieldset.planung .radio_container label:before {
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    background: url('/files/theme/layout/images/icons/stern.png') no-repeat scroll 50% 50% transparent;
        background-size: auto;
    background-size: contain;
    vertical-align: middle;
    margin-right: 20px;
    transform: rotate(-15deg);
 
}


.radio_container.list {
    max-width: 780px;
    margin: 0 auto;
}

.teasergrid label{
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
    line-height: 0;
}


.teasergrid label .caption{
    position: absolute;
top: 0;
left: 0;
line-height: 0;
    height: 100%;
    width: 100%;
}

.teasergrid label .caption .cell {
    vertical-align: bottom;
    line-height: 1.2;
}
.teasergrid label input{
    display: none;
}

.teasergrid label .caption .cell > .inside {
    display: table;
    margin: 0 auto;
}

.teasergrid label .caption .cell > .inside > div {
    background: rgba(255,255,255,0.8);
    padding: 10px 20px;
    font-family: cubano, sans-serif;
    font-weight: 400;
    display: table;
    margin: 0 20px 2rem;
    font-size: 36px;
}


fieldset.planung .radio_container > span, fieldset.planung .radio_container > span > *{
    display: inline-block
}

fieldset.planung .radio_container > span > *{
    vertical-align: middle;
}


fieldset.planung .radio_container > span:first-of-type{
    margin-right: 8vw;
}

fieldset.planung .radio_container > span > input {
    margin-left: 15px;
    margin-top: -0.2rem;
}


.widget-checkbox,.widget-explanation {
    max-width: none;
    margin: 0;
    box-sizing: border-box;
}

.widget-checkbox fieldset{
    padding: 0;
    margin-bottom: 20px;
}


.checkbox_container input::after{
    margin-right:10px; 
}



.widget-checkbox fieldset {
    margin-bottom: 20px;
    padding: 10px 20px 15px;
}

.checkbox_container label > * {
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    line-height: 1.4;
}

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

.widget-submit button{
    margin-top: 4rem;
}

.widget-explanation {
    color: silver;
    font-size: 14px;
    margin-top: 2rem;
    text-align: center;
    line-height: 1.3;
}

.safari .teasergrid label .caption{
    display: block;
    width: 100%;
    height: 100%;
}

.safari .teasergrid label .caption.table > .row{
   display: table; 
       width: 100%;
    height: 100%;
}

.kuechentester-werden .radio_container.list label {
    padding-right: 20px;
    box-sizing: border-box;
}

.kuechentester-werden .radio_container.list label .labeltext{
    display: inline-block;
vertical-align: middle;

}

.noslideup .slideup{
    display: none;
}

.message.ajaxconfirm{
    max-width: 680px;
text-align: center;
margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}


.message.ajaxconfirm .readmoreholder {
    display: table;
    margin: 0 auto;
    margin-top: 3rem;
}

.message.ajaxconfirm .readmoreholder a{
    margin-top: 0;
}


#herosection .fullwidth.mod_article > .block {
    max-width: none;
    padding:0;
    margin: 0;
}

.kuechentester-werden .star h2,.partner-werden .star h2{
    position: relative;
}

.stars ul li:before, .partner-werden .star h2:before, .kuechentester-werden .star h2:before{
    content:'';
    display: ruby-base;
    width: 80px;
    height:80px;
    background: url(/files/theme/user/images/kuechentesterwerden/stern.svg) no-repeat scroll 50% 50% transparent;
    background-size:contain;
    vertical-align: middle;
    margin-right: 10px;
    margin-left: -90px;
    position: absolute;
    top: -0.5rem;
}


.partner-werden .star h2:before, .kuechentester-werden .star h2:before{
 top: -1rem;    
}

.stars.block{
    overflow: visible;
}

.kuechentester-werden  a{
  
}

.kuechentester-werden .readmore{
      margin: 4rem auto 0;
    float: none;
    font-family: cubano, sans-serif;
    font-weight: 400;
    font-size: 30px;  
    line-height: 1.3;
    background: #cd0d17;
    color: white;
}


.kuechentester-werden .text h2{
    margin-bottom: 0.5rem;
}


.star.block{
    overflow: visible;
}

#herosection .flexslider .caption .headlinecontainer{
    margin: 0;
}

.preloader .readmore,.widget-submit button {
    background: #cd0d17;
    color: #fff;
    border: 2px solid #fff;
    margin: 0 auto;
    float: none;
    font-size: 20px;
    padding: 13px 3rem 15px;
    line-height: 1.2;
    min-width: 150px;
    border-radius: 5px;
    cursor: pointer;
}
.ce_text ul {
margin:2rem;
}

.ce_text.twocol ul {
margin:0;
}


.ce_text ul li p{
margin:0;
}

.datenschutz .mod_article > .block {
padding:0 2rem 2rem;
}
.mod_article > .block.ce_cookiebarOpener a{
text-decoration:underline;
}
.cookiebar_default .cc-info {
margin-top: 15px;
height: 80px;
overflow: auto;
font-size:12px;
}
.cookiebar_default .cc-info {
text-align:left;
}
.cc-head {
font-family: cubano,sans-serif;
font-weight: 400;
}

.star.twocol .textholder.not_above {
    padding-left: 8rem;
}

.underline .headlinecontainer > * {
    display: table;
    text-decoration: underline;
}


.ce_heroImage.valign_top .caption .row > .inside{
    vertical-align: top;
}

.kuechentester-werden .ce_heroImage.valign_top .readmore{
    margin-left: 4rem;
}


.kuechentester-werden .step7 .widget-text::before {
    content: 'ca.';
    width: 20px;
    display: inline-block;
    vertical-align: middle;
    color: gray;
    margin-right: 20px;
}


.kuechentester-werden .step7 .widget-text:after{
    content: '€';
       width:20px;
        display: inline-block;
    vertical-align: middle;
     color: gray;
    margin-left: 20px;
}

.kuechentester-werden .step7 .widget-text input.text {
    width: calc(100% - 160px);
    max-width: 450px;
}
.longhead #herosection .ce_heroImage .caption .row>.inside>div>div, #herosection .flexslider .caption .inside>div>div {
max-width: 770px;
}
.parent_kueche-kaufen .mod_article.fullwidth>.ce_bewerbungsbox .row>.imagecol {
display:none;
}
.parent_kueche-kaufen .ce_bewerbungsbox .textcol.not_right {
padding-right:0;
}
.flex-direction-nav a{
display:none;
}

.preloader{
    display: none;
}

.step7 .preloader{
display: block;
}

.safari #herosection .flexslider .caption{
    display: block
}

.safari #herosection .flexslider .caption .row{
    display: table;
    height: 100%;
}

.teasergrid > .itemsperRow_3 > .holder{
    display: table;
}

.kuechentester-werden .radio_container.list label .labeltext {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 70px);
}

.nobr {white-space: nowrap;}


.ce_bewerbungsbox_full .imageholder{
    position: relative;
}

.ce_bewerbungsbox_full .imageholder .caption{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px;
    box-sizing: border-box;
}

.ce_bewerbungsbox_full .imageholder .caption .table{
    height: 100%;
}

.ce_bewerbungsbox_full .imageholder .caption .table .row > *{
    vertical-align: bottom;
}


.ce_bewerbungsbox_full .imageholder .caption .table .row > * .headline {
  margin-bottom: 4rem;
  max-width: 460px;
  margin: 0 auto 4rem;
  text-align: center;
}


.ce_bewerbungsbox_full .imageholder .caption .table .row > * .headline > *{
    margin: 0;
    text-align: center;
}

.ce_bewerbungsbox_full .imageholder .caption .table .row > * .headline > * >span {
  display: table;
  background: #cd0d17;
  color: white;
  margin: 0 auto;
  padding: 0.1rem 0.5rem 0.1rem;
  font-size: 32px;
}

.ce_bewerbungsbox_full .imageholder .caption .table .row > * .headline span.headrow_large {
  font-size: 42px;
  background: transparent;
  display: block;
  line-height: 1;
  padding: 0;
}

.ce_bewerbungsbox_full .imageholder .caption .table .row > * .headline span.headrow_large > span {
  display: table;
  background: #cd0d17;
  color: white;
  margin: 0 auto;
  padding: 0.1rem 0.5rem 0.1rem;
}

.ce_bewerbungsbox_full .row > *{
    vertical-align: top;
}
.ce_bewerbungsbox_full .row > .textcol{
    padding-left: 3rem;
    text-align: left;
}

.vorteile{
    margin-top: 2rem;
}

.ce_bewerbungsbox_full a{
    margin: 0;
    margin-top: 2rem;
    
}

.ce_bewerbungsbox_full .vorteile .headlinecontainer > *{
    text-decoration: underline;
}

.ce_bewerbungsbox_full .row > .imagecol{
    width: auto;
}

.ce_bewerbungsbox_full ul.checked li{
    font-weight: 800;
}


.ce_bewerbungsbox_full ul.checked li::before {
  content: '';
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url(/files/theme/layout/images/icons/haken.svg) no-repeat scroll 50% 50% transparent;
    background-size: auto;
  background-size: contain;
  margin-right: 10px;
  margin-left: -30px;
}

.ce_bewerbungsbox_full{
   background: #cd0d17; 
}

.mod_article > .ce_bewerbungsbox_full > .table {
  width:   100%;
    max-width: 1280px;
}

.fullwidth.mod_article > .ce_bewerbungsbox_full.block {
  max-width: none;
  padding: 4rem 2rem 4rem;
  margin: 0;
}

.ce_bewerbungsbox_full .imageholder{
    width: 470px;
}

.video_container > video{
    width: 100%;
    height: 100%;
}
.element_float_above.ce_player .headlinecontainer {
padding-top:3rem;
}





footer > .inside  .footerright .mod_navigation > ul{

      column-fill: balance;
     
     -moz-column-gap: 20px;
          column-gap: 20px;
    orphans: 3;
    widows: 3;
     -webkit-column-gap: 20px;
      columns: 2 200px;
     -moz-columns: 2 200px;
     -webkit-columns: 2 200px;
}

footer > .inside .footerright .mod_navigation > ul > li {
  break-after: column;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  line-height: 1.65;
    display:inline-block;
}

#footerbottom ul > li.first {
    margin: 0;
}


#footerbottom .row > *{
    vertical-align: middle;
}

footer > .inside .row > *{
    width: 50%;
}
footer > .inside .row > .right{
    vertical-align: bottom;
}

footer > .inside .mod_navigation h3 {
  font-size: 16px;
  margin: 0 0 10px;
}
footer > .inside{
    
    font-size: 14px;
    
}

footer .socials{
    text-align: right;
}

footer .socials ul > li{
    display: inline-block;
    vertical-align: middle;
}

footer .socials ul > li img{
    margin-left: 30px;
}

footer .socials ul > li.facebook img{
margin-left: 0;
}

footer > .inside .mod_navigation > ul{
    width: 420px;
}

.navcontent {
  padding: 20px;
    padding-top: 20px;
  padding-top: 10rem;
}

.ce_kitchenteaser .table{
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    display: table;
}

.ce_kitchenteaser .table > .row{
       display: table-row;
}

.ce_kitchenteaser .table > .row > *{
       display: table-cell;
    vertical-align: bottom;
}

.ce_kitchenteaser .text{
    padding: 20px;
    box-sizing: border-box;
}

.ce_kitchenteaser .preHeadline > span {
  display: table;
  border-bottom: 3px solid green;
  line-height: 1.2;
}

.ce_kitchenteaser .price {
  font-size: 50px;
  line-height: 1.2;
}

.ce_kitchenteaser .owl-carousel .price {
float:left;
}

.parallax-container .headlinecontainer > *,.ce_kitchenteaser .price, .parallax-container .text{
    text-shadow: 1px 1px 8px rgba(0,0,0,0.8);
}

#slider .image_container{
    display: table;
    width: 100%;
    height: auto;
}

.mod_article > .block.ce_colorslider{
    position: relative;
    padding: 0;
}



#carousel.flexslider .slides{
    transform: none !important;
    -webkit-transform: none !important;
}


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

.preheadline > *,.headline > *{
    margin: 0;
}

.index .mod_article > .block{
    padding: 20px 2rem;
}

.ce_kachelelement .notfloat_right > .inside, .ce_kachelelement .notfloat_left > .inside{
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.index .mod_article > .block.textbanner{
    padding: 3rem 2rem;
}

.index .mod_article > .block.ce_colorslider{
    padding: 0 2rem;
    position: static;
}

.index .mod_article > .block.ce_colorslider > .holder{
    position: relative;
}

.teasergrid{

}

.index .mod_article > .block.ce_text{
    padding: 4rem 2rem;
}

.index .mod_article.fullwidth > .block{
    max-width: none;
    padding: 20px 0;
}
/*
.index .ce_gallery > ul li{
    margin: 0;
}

.index .ce_gallery > ul {
  margin: 0 0 -20px;
}
*/
.menu-btn img{
    max-width: 26px;
    margin-right:10px;
}


.menu-btn > *{
    display: inline-block;
    vertical-align: middle;
}

header i.font-icon {
font-size: 25px;
}

header i.font-icon.icon-calendar-empty {
font-size: 23px;
}

header .menu-btn > .font-icon {
  padding-right: 5px;
}

.menu-btn span {
  font-size: 16px;
}


.sharenav li span{
  font-size: 16px;  
}
.menu-btn > *{
    display: inline-block;
    vertical-align: middle;
}
.sharenav{
    text-align: right;
}

.sharenav li{
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
    text-align: center;
}

.sharenav li a, .sharenav li span{
    display: block;
}

.sharenav li:first-of-type{
    margin-left: 0;
}

.sharenav li img{
    height: 18px;
    width: auto;
}

.sharenav li span {
  display: block;
  line-height: 1.4;
  font-size: 14px;
}

.headerbottom .sharenav{
    margin-left: 20px;
}

.headerbottom .sharenav li span {
    font-size: 18px;
    font-weight: 300;
}

li.lightbox a, .ce_gallery > ul li a{
    position: relative;
    line-height: 0;
    display: block;
}

li.lightbox a:before,#carousel li.imageelement:before,
.ce_gallery > ul li a:before,
.mediaholder a[data-fancybox="gallery"]:before {
  content: '';
  height: 20px;
  width: 20px;
  background: url(/files/theme/layout/images/lupe.svg) no-repeat scroll 50% 50% transparent;
    background-size: auto;
  background-size: 20px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px;
}

#carousel li.imageelement:before {
    right: auto;
    left:0;
    background: url(/files/theme/layout/images/plus.svg) no-repeat scroll 50% 50% transparent;
    background-size: 20px;
    top:auto;
    bottom:0;
}
#carousel li.imageelement{
 transition:all 0.2s ease;
-webkit-transition:all 0.2s ease;
-moz-transition:all 0.2s ease;
-o-transition:all 0.2s ease;
-ms-transition:all 0.2s ease; 
  transform-origin: 100% 50%;
    position: relative;
}
#carousel li.imageelement:hover, #carousel li.imageelement.flex-active-slide{
     transform: scale(1.2);
    
    z-index: 99;
}

#carousel .flex-viewport, .ce_colorslider{
    overflow: visible !important;
}

.stoerer{
    position: absolute;
    width: 280px;
    right: 2rem;
    top: 2rem;
    z-index: 999;
}

.stoerer img{
    max-width: 100%;
}

.index .mod_article.fullwidth > .block.ce_text{
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
}

.mod_article > .noPadBottom,.noPadBottom{
    padding-bottom: 0 !important;
}

.mod_article > .noPadTop, .noPadTop{
    padding-top: 0 !important;
}

.mod_article > .padTopSmall, .padTopSmall{
      padding-top: 10px !important;
}

.mod_article > .padBottomSmall, .padBottomSmall{
      padding-bottom: 10px !important;
}

.mod_article > .noPad{
      padding-bottom: 0 !important;
    padding-top: 0 !important;
}

.index .mod_article.fullwidth > .block.textbanner{
    padding: 3rem 2rem;
}

.socialsidebar{
    position: absolute;
    top:0;
    z-index: 999;
}


.socialsidebar.sticky {
  position: fixed;
}

.socialsidebar span{
    display: block;
    line-height: 0;
    text-align: center;
    padding: 10px;
}

.socialsidebar img{
    height: auto;
    width: 20px;
}


.houzz span{
    background: #4DBD15;
}
.facebook span{
    background: #3D68C0;
}
.pinterest span{
background:#EB3145;
}
.instagram span{
    background: #446291;
}
.youtube span{
    background: #EF2F16;
}
.whatsapp span,
.nlwhatsapp span{
    background: #12D25A;
}
.phone span{
    background: #EF2F16;
}
.tiktok span{
    background: #000000;
}

.messanger span{
    background:#1C8BF8;
}

.twitter span {
  background: rgb(29, 155, 240);
}



.mail span{
    background: #F4CD2F;
}

.socialsidebar .facebook img{
    height:20px;
    width: auto;
}

.footerright{
    display: table;
    float: right;
}

footer > .inside .footerright .mod_navigation > ul {
  width: auto;
  columns: unset;
}
footer > .inside .footerright .mod_navigation > ul > li:after{
    content: ' | ';
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
}


footer > .inside .footerright .mod_navigation > ul > li:last-of-type:after{
    display: none;
}

body .flex-control-nav.flex-control-paging{
    z-index: 9;
}

body .flexslider{
    overflow: hidden;
}
/*Terminvereinbarung*/

input, button.submit {

    margin: 0;
  
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

}


.terminanfrage .list_item {
    width: 100%;
    margin: 0;
    text-align: center;
    position: relative;
    min-height: 1px;
    padding: 0 5px;
    width: 100%;

margin: 0;

text-align: center;

position: relative;

min-height: 1px;

-webkit-box-flex: 0;

-ms-flex: 0 0 25%;

flex: 0 0 25%;

max-width: 25%;

padding: 0;
display: inline-block;
float:left;
}

.terminanfrage label {

    max-width: 100%;
    width: 100%;
display: inline-block;


}

.terminanfrage span.item-label {

    display: block;
    box-sizing: border-box;
    margin: 0;
    padding: 20px 10px;
    line-height: 14px;
    background: #eee;
    color: gray;
    cursor: pointer;
    height: auto;
    margin: 0.45rem;

font-size:17px;


}

.terminanfrage input[type="radio"], .terminanfrage input[type="checkbox"] {

    box-sizing: border-box;
    padding: 0;
display:none;
}



.terminanfrage input:checked + span.item-label {

    -webkit-filter: none;
    -moz-filter: none;
    filter: none;
    background: rgba(209, 34, 41, 0.8);
    color: var(--bodyfontcolor);

}

[type="radio"]:not(:checked) + span::before, [type="radio"]:not(:checked) + span::after, 
[type="radio"]:checked + span:before, [type="radio"]:checked + span::after
 {
    display: none;
}

.datefinder .widget{
width:40%;
display:inline-block;
white-space:normal;
vertical-align:top;
}

.terminanfrage fieldset{
padding:0;
}



.widget-submit {
margin-top:20px;
}

body .datepicker-date-display, body .datepicker-table td.is-selected,body .btn,body .btn-large,body .btn-small,body .btn:hover,body .btn-large:hover,body .btn-small:hover{
background-color:rgb(209, 34, 41);
color:var(--bodyfontcolor) !important;
}


.select-wrapper input.select-dropdown:focus, body input:not([type]):focus:not([readonly]),body input[type="text"]:not(.browser-default):focus:not([readonly]), body input[type="password"]:not(.browser-default):focus:not([readonly]), input[type="email"]:not(.browser-default):focus:not([readonly]), input[type="url"]:not(.browser-default):focus:not([readonly]), input[type="time"]:not(.browser-default):focus:not([readonly]), input[type="date"]:not(.browser-default):focus:not([readonly]), input[type="datetime"]:not(.browser-default):focus:not([readonly]), input[type="datetime-local"]:not(.browser-default):focus:not([readonly]), input[type="tel"]:not(.browser-default):focus:not([readonly]), input[type="number"]:not(.browser-default):focus:not([readonly]), input[type="search"]:not(.browser-default):focus:not([readonly]), textarea.materialize-textarea:focus:not([readonly]) {

    border-bottom: 1px solid var(--bodyfontcolor) !important;
    -webkit-box-shadow: none;
    box-shadow: none;

}

input:not([type]), input[type="text"]:not(.browser-default), input[type="password"]:not(.browser-default), input[type="email"]:not(.browser-default), input[type="url"]:not(.browser-default), input[type="time"]:not(.browser-default), input[type="date"]:not(.browser-default), input[type="datetime"]:not(.browser-default), input[type="datetime-local"]:not(.browser-default), input[type="tel"]:not(.browser-default), input[type="number"]:not(.browser-default), input[type="search"]:not(.browser-default), textarea.materialize-textarea,textarea{

border: 1px solid var(--bordercolor);
background: rgba(255,255,255,0.2);
color: var(--bodyfontcolor);
padding: 5px 10px;
box-sizing: border-box;
    min-height: 3rem;
}

body .btn,body .btn-large,body .btn-small{
margin: 1rem 0.5rem;
}

 body .datepicker-table td.is-today,body .datepicker-cancel,body .datepicker-clear,body .datepicker-today,body .datepicker-done {

    color: rgb(209, 34, 41);

}

body .dropdown-content li > a,body .dropdown-content li > span{
color:#333;
}

body .datepicker-table td{
border-radius:0;
}

.datepicker-controls .select-month input{
width:auto;
}

body textarea {
height:auto;
    width: 100%;
    min-height: 3rem;
    background-color: transparent;
   border: 1px solid #9e9e9e;
    padding: 10px;
    font-size: 16px;
box-sizing: content-box;
color:var(--bodyfontcolor);
}

.widget.widget-text > *, .widget.widget-textarea > * {
  width: 100%;
    box-sizing: border-box;
    font-size: 16px;
}

.widget{
    margin-bottom: 20px;
}

.widget.w50{
    float: left;
    width: calc((100% - 2rem) / 2);
    margin-right: 2rem;
    margin-bottom: 2rem;
}

.widget.w50.clr{
    margin-right: 0;
}

.widget.datepicker{
    padding: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
}

.widget.datepicker input{
        border-radius: 0;
        -webkit-border-radius: 0;
}

.formbody > fieldset{
    margin-bottom: 20px;
}


.formbody > fieldset > legend{
  margin-bottom: 20px;
  text-transform: uppercase;
}

.widget-submit{
    text-align: right;
}

.checkbox_container label > span{
    width: calc(100% - 38px);
    vertical-align: top;
}

.checkbox_container label > div{
    vertical-align: top;
    margin-right: 10px;
}

.not_thumbnailed .flexslider {

}

body .not_thumbnailed .flex-control-nav {
  bottom: -40px;
}

body .not_thumbnailed .image{
    margin-bottom: 20px;
}

video {
  width: 100%;
  box-sizing: border-box;
  height: 100%;
    object-fit: cover;
}

#maincontent > .block{
    padding: 3rem 2rem 4rem;
}






#header .row {
  display: table;
  width: 100%;
}

#header .row > *{
    display: table-cell;
	width: 33.33333%;
}

#carousel .flex-direction-nav,#slider .flex-direction-nav{
    display: none;
}



.index .mod_article.fullwidth > .block.ce_parallaxImage{
    padding-bottom: 4rem;
}

.mediaholder{
    position: relative;
}


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

.mediaholder .stoerer{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: auto;
}

    
.vAlign_top.ce_kachelelement .stoerer .row > *{
    vertical-align: top;
    text-align: center;
    padding: 4rem 20px;
box-sizing: border-box;
}


.map {
  height: 450px;
  box-sizing: border-box;
  position: relative;
}


.map > iframe {
  border: 0;
  object-fit: fill;
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
}

.footertop .textblock {
  padding: 2rem 2rem 2rem 4rem;
  font-size: 15px;
  line-height: 1.75;
}


.footertop .textblock .headlinecontainer {
  margin-bottom: 20px;
}

.footertop .textblock p{
    margin-bottom: 0.5rem;
}

.footertop .textblock h1,.footertop .textblock h2, .footertop .textblock h3, .footertop .textblock h4, .footertop .textblock h5, .footertop .textblock h6{
    margin: 0;
}

.footertop {
  background: whitesmoke;
  color: #333;
  display: table;
  width: 100%;
}

.teasergrid a span.pricebox, .teasergrid .pricebox{
    display: table;
    width: 100%;
}

.teasergrid a span.pricebox > span, .teasergrid .pricebox > div{
    display: table-row;
}

span.pricebox > span > *, .pricebox > div > *{
    display: table-cell;
}

span.pricebox > span > .cta, .pricebox > div > .cta{
    text-align: right;
}

.cta span {
  display: table;
  text-align: center;
  background: rgba(0,0,0,0.8);
  float: right;
  line-height: 1;
  padding: 10px 20px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.03rem;
}


.cta span:after {
    content: '';
    display: inline-block;
    background: url(/files/theme/layout/images/icons/next_white.svg) no-repeat scroll 50% 50% transparent ;
    width: 10px;
    height: 10px;
}


.more img{
    width: 30px;
}

body .flex-direction-nav a.flex-next::before,
body .flex-direction-nav a.flex-prev::before{
    display: none;
}

body .flex-direction-nav .flex-next{
    right: 50px !important;
    opacity: 1 !important;
}

body .flex-direction-nav .flex-prev{
    left: 50px !important;
    opacity: 1 !important;
}


.slider-control .slider-prev{
    left: 20px ;
    opacity: 1 !important;
}


.slider-control .slider-next{
    right: 20px ;
    opacity: 1 !important;
}


body .flex-direction-nav a, .slider-control a > span {
  background: rgba(255,255,255,0.55);
  text-align: center !important;
  display: block;
  height: auto;
  line-height: 0;
  width: 10px;
  height: 10px;
  padding: 15px;
  border-radius: 50%;
}
body .flex-direction-nav a:hover {
background: rgba(255,255,255,0.75);
}

.slider-control{
    position: static;
}

.slider-control a{
    position: absolute;
    height: 100%;
    top: 0;
}

.slider-control a > span {
    display: block;
    position: relative;
    top: 50%;
    margin-top: -12.5px;
}

body .flex-direction-nav a img, .slider-control a img {
  width: 10px;
  height: auto;
  margin-top:-3px;
}

#main .inside .block ul.flex-direction-nav li {
  line-height: 0;
margin: 0;
    position: static;
}


#main .inside .block ul.flex-direction-nav{
  *height: 0;
  position: absolute;
  top: 0;
  height: 100%;
    width: 100%;
}

.map .errorText {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  background: white;
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.2);
  box-sizing: border-box;
    position: relative;
    z-index: 999;
}


.map .errorText .showCookies {
  display: table;
  margin: 2rem auto 20px;
  border: 2px solid;
  padding: 10px 20px;
  line-height: 1;
cursor: pointer;
}

.map .errorText .showCookies:hover {
    background: black;
    color: white;
}

 
.index #article-3.mod_article.fullwidth > .block.first{
    
}

item_1_3col{}


.ce_gridGallery .teasergrid{
    display: table;
    width: 100%;
}


.ce_gridGallery .teasergrid > div{
    display: table-row;
}

.ce_gridGallery .teasergrid > div > *{
  /*  float: none;
    display: table-cell;
    vertical-align: top; */
    margin: 0;
    height: 100%;
}


.ce_gridGallery .itemsperRow_grid > .item_1_3col {
  width: calc(100% / 3);
}

.ce_gridGallery .itemsperRow_grid > .item_2_3col {
  width: calc(100% - (100% / 3));
}

.ce_gridGallery .itemsperRow_grid > * {
    height: auto;
}

.ce_gridGallery a{
    position: relative;
display: table;
height: 100%;
}
.ce_imagerow a:before,
.ce_gridGallery a:before {
  content: '';
  height: 20px;
  width: 20px;
  background: url(/files/theme/layout/images/lupe.svg) no-repeat scroll 50% 50% transparent;
    background-size: auto;
  background-size: auto;
  background-size: 20px;
  display: block;
  position: absolute;
  right: 10px;
  top: 0;
  padding: 10px;
}
.ce_imagerow .row > * {
position:relative;
}

.ce_gridGallery .teasergrid a span{
    display: table;
    height: 100%;
}

.ce_imagerow .ce_text {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  box-sizing: border-box;
}

.ce_imagerow .bgImage > img{
    opacity: 1;
    object-fit: cover;
    object-position: center;
    
}

 .font-icon {
      font-family: "fontello";
      font-style: normal;
      font-weight: normal;
      speak: never;
     
      display: inline-block;
      text-decoration: inherit;
      width: 1em;
      margin-right: .2em;
      text-align: center;
      /* opacity: .8; */
     
      /* For safety - reset parent styles, that can break glyph codes*/
      font-variant: normal;
      text-transform: none;
     
      /* fix buttons height, for twitter bootstrap */
      line-height: 1em;
     
      /* Animation center compensation - margins should be symmetric */
      /* remove if not needed */
      margin-left: .2em;
     
      /* You can be more comfortable with increased icons size */
      /* font-size: 120%; */
     
      /* Font smoothing. That was taken from TWBS */
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
     
      /* Uncomment for 3D effect */
      /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
    }


body.bg_black,.ce_kitchenteaser .table > .row > .text,
body.bg_black #header, body.bg_black #header.clone,
body.bg_black header > .inside{
    color:white;
}

body.bg_black,body.bg_black footer,
body.bg_black #header, body.bg_black #header.clone {
  background: black;
}

body.bg_white,body.bg_white .pushy,body.bg_white footer,
body.bg_white #header, body.bg_white #header.clone,
body.bg_white header > .inside{
    color:#333;
}



body.bg_white,body.bg_white .pushy,
body.bg_white #header, body.bg_white #header.clone {
   
  background: white;
    
}
body.bg_white .site-overlay{
  background-color: rgba(255, 255, 255, 0.5);  
    
}

body .pushy-open-left .site-overlay, body .pushy-open-right .site-overlay{
     z-index: 9999999999;
}

body.bg_black .site-overlay{
  background-color: rgba(0, 0, 0, 0.5);  
}

body{
    background: white;
}
.stoerer_logo{
    margin-bottom: 2rem;
}

.linkholder {
  display: table;
}

.center .linkholder {
  display: table;
  margin: 0 auto;
}

.ce_flexslider.ce_responsiveSlider img{
    opacity: unset
}

.mod_article > .ce_responsivebanner.block{
    max-width: 980px;
    margin: 0 auto;
}

.mod_article > .ce_responsivebanner.block.videocontent{
    max-width: 1280px;
}

.mod_article > .ce_responsivebanner.block.videocontent > .inside{
    line-height: 0;
}

.mod_article > .ce_responsivebanner.block > .inside {
  background: rgb(234, 234, 234);
  display: table;
  box-sizing: border-box;
    width: 100%;
}

.mod_article > .ce_responsivebanner.block > .inside img,.mod_article > .ce_responsivebanner.block > .inside picture{
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
}

.ce_textBanner .headline{
    margin: 0 auto 4rem;
}

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

.logo{
    margin: 0 auto;
}

.stoerer_logo {
    margin-bottom: 2rem;
    padding: 0 20px;
    box-sizing: border-box;
}

.logo > *, .logo img{
    width: 100%;
}


.ce_flexslider .ce_text.align_below {
  margin-top: 20px;
  padding-top: 0;
    padding-bottom: 0;
}


.bg_black footer > .inside .footerright .mod_navigation > ul > li{
      color: #fff; 
}

.zitatslider .bgImage{
    background: none !important;
}

.zitatslider .bgImage img{
    opacity: 1;
    margin: 0 auto;
    max-width: calc(100% - (2 * 8rem));
}

.owl-carousel .owl-nav button.owl-next span, .owl-carousel .owl-nav button.owl-prev span {
  background: var(--kundenfarbe);
  display: block;
  height: 30px;
  width: 30px;
  padding: 0;
  line-height: 25px;
  font-size: 34px;
  color: white;
  border-radius: 50%;
margin-top: -80px;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{
   position: absolute;
height: 100%;
top: 0;
    background: transparent !important;
width: 2rem;
}

.owl-carousel .owl-nav button.owl-next{
    right: -4rem;
}

.owl-carousel .owl-nav button.owl-prev{
      left: -4rem; 
}

.ce_owlslider{
    overflow: visible;
}

.slider-control .slider-menu{
    position: relative;
}

.slider-menu b{
    margin: 0 5px;
}

.ce_flexslider .ce_text.align_above{
    padding-bottom: 2rem;
}

.mod_article .block.ce_ImageBox {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 6rem 2rem 6rem;
}


.ce_ImageBox .textholder{
    background: whiteSmoke;
    padding: 2rem;
    box-sizing: border-box;
}

.ce_ImageBox .logoholder{
    margin-top: 2rem;
}

.slider-control .slider-prev,.slider-control .slider-next{
    display: none;
}

.center .textholder .linkholder,.textholder .linkholder,.ce_player .linkholder{
    margin-top: 3rem;
}

.maxwidth,.maxWidth{
    max-width: 980px;
    margin: 0 auto;
}

.ce_gallery li{
    margin-right: 20px;
}

.ce_gallery li:last-of-type{
    margin-right: 0;
}

p.small{font-size: 14px;line-height: 1.4;
}
.mod_article.fullwidth .block.maxWidth, .mod_article .block.maxWidth, #maincontent > .block.maxWidth{
    max-width: 1280px;
    margin: 0 auto;
}

.ce_kitchenteaser .linkholder, .linkholder, .center .linkholder{
    margin: 3rem auto 2rem;
}

 #test.mod_article > .block >.block {
  max-width: 980px;
  margin: 0 auto;
}

#test .row > * {
  width: auto;
}

#test .row > .mediaholder {
  background-size: contain !important;
  width: 350px;
}

#test .row > .mediaholder img{
    width: 100%;
    height: auto;
}

.mod_article.bgimage,.mod_article.bgimage > .block{
    position: relative;
}

.mod_article.bgimage > .bgImage{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}


.ce_kachelelement .mediaholder > .bgImage > img{
    height: 100%;
    width: 100%;
}

body .headerbottom .sf-menu a, body .headerbottom .sf-menu strong{
    padding: .75em 1em;
}

.headerbottom .sf-menu strong{
    display: block;
}

body .headerbottom li.submenu > a,body .headerbottom li.submenu > strong{
    padding-right: 2.5em;
}

body .sf-menu ul{
    display: none;
}

body .sf-menu > li {
  float: left;
  margin-right: 20px;
  text-transform: none;
  font-weight: 300;
}

body .headerbottom .sf-menu a,body .headerbottom .sf-menu strong{
  color: inherit;
}


li.submenu > a:after,li.submenu > strong:after,
li.trail > a:after,li.trail > strong:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1em;
  margin-top: -3px;
  height: 0;
  width: 0;
  border: 5px solid transparent;
    border-top-color: transparent;
  border-top-color: #dFeEFF;
  border-top-color: rgba(0,0,0,.5);
}

li.submenu > a,li.submenu > strong,
li.trail > a,li.trail > strong{
  padding-right: 2.5em;
  *padding-right: 1em;
    position: relative;
}

.headerbottom,.headertop{
    padding: 2rem 0 0;
}

.headerbottom {
    display: table;
    margin: 0 auto;
}

.headerbottom .mod_navigation{
 
    margin: 0 auto;
}

.morepager .fullwidth.mod_article > .block > .block{
    padding-top: 0;
}

.slicknav_nav{
    width: 100%
}

body nav.slicknav_nav, body nav.slicknav_nav a:hover{
    background: var(--kundenfarbe);
}

body .sf-menu > li.last{
    margin-right: 0;
}



.headerbottom > *{
    display: inline-block;
    vertical-align: bottom;
}

body .headerbottom .sf-menu a,body .headerbottom .sf-menu strong{
    line-height: 1.2;
    font-size: 18px;

}


.headerbottom .sharenav {
  padding-bottom: .75em;
    line-height: 1.2;
}

body .headerbottom .sf-menu ul.submenu a, body .headerbottom .sf-menu ul.submenu strong {
  padding: 10px 20px;
    font-size: 16px;
}

.variante_v2.ce_kitchenteaser .text {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
  white-space: nowrap;
}

.variante_v2.ce_kitchenteaser .text > *{
 display: inline-block;
    vertical-align: middle;
    width: 49.5%;
    white-space: normal;
}

.variante_v2.ce_kitchenteaser .text > .preHeadline > span {
  background: red;
  border: none;
  padding: 10px 20px;
  text-shadow: none;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.03rem;
}

.variante_v2.ce_kitchenteaser .text > .preHeadline > span:after {
    content:'>';
    display: inline-block;
margin-top:-2px;
        
}

.variante_v2 .teasergrid a span.pricebox > span,.variante_v2 .teasergrid .pricebox > div{
    float: right;
}

.variante_v2.ce_kitchenteaser .price {
  font-size: 43px;
  line-height: 1.2;
    font-weight: 700;
}


.variante_v2.ce_kitchenteaser .price > *{
    display: inline;
    
}

.variante_v2.ce_kitchenteaser .price > .currency{
    font-size: 32px;
      font-weight: 500;
}
.variante_v2.ce_kitchenteaser .table > .row > .text .pricebox{
    
}

.ce_kitchenslider .item span,.ce_kitchenslider .item a{
  display: block; 
}

.ce_kitchenslider .item{
    width: 100%
}

.ce_kitchenslider .item span.table,.ce_kitchenteaser .preHeadline > span{
        display: table;
}

.ce_kitchenslider .item span.table > span.row{
    display: table-row;
}

.ce_kitchenslider .item .inside{
    height: 100%;
}

.mod_kuechelist > .headlinecontainer{
    text-align: center;
}

body .ce_kitchenslider .owl-carousel .owl-nav button{
    margin-top: 30px;
}

body .ce_kitchenslider .owl-carousel .owl-nav button.owl-prev{
    left: 0;
}

body .ce_kitchenslider .owl-carousel .owl-nav button.owl-next{
    right: 0;
}
#maincontent > .ce_aktion {
background:var(--kundenfarbe);
max-width:100%;
}
#maincontent > .ce_aktion .inside {
max-width: 1280px;
margin: 0 auto;
}
.xing{
    background: #0698a0;
}

.linkedin{
    background: #0a66c2;
}
.ce_kitchenslider .item span.cta{
float:right;
}
.ce_kitchenslider .item span.price {
float:left;
}

.ce_owlItemSlider .item{
    border: 1px solid rgba(0,0,0,0.2);
}

.ce_owlItemSlider .item a  span{
    display: block;
}

.ce_owlItemSlider .item .textholder{
    padding: 10px;
}

.ce_owlItemSlider .item .textholder .headline{
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
@media all and (max-width: 1680px){
    .megamenue.mod_navigation > ul > li > * {
    font-size: 16px;
    letter-spacing: 0;
}
      header nav > ul > li > a, header nav > .headerlogo{
        padding: 10px;
    }
    
    
     header nav > .headerlogo{
        padding: 10px 0 10px 15px;
    }
    
 
 
}


@media all and (max-width: 1400px){
    .stars ul li::before, .partner-werden .star h2::before, .kuechentester-werden .star h2::before {
        margin-left: -90px;
       
    } 
    
    .stars ul,.star > h2{
        padding-left: 90px;
    }
}

@media all and (max-width: 1300px){
#herosection .fullwidth.mod_article .ce_player.block {
display: table;
}
    
    .stars ul li {
        font-size: 32px;
    }
    
    .ce_heroImage .caption, #herosection .flexslider .caption{
        position: relative;
    }
    
    #herosection .flexslider .caption .inside > div{
        padding: 0;
        width: 100%;
    }
    
  

    
    .fullwidth .ce_teaserGrid .itemsperRow_grid > *{
        height: 380px;
    }

    
    .index #herosection .fullwidth.mod_article .ce_player.block .caption .row,.index #herosection .flexslider .caption .row{
        display: block;
    }
    
    


    #herosection .ce_heroImage, #slider .hero{
        height: auto;
    }
    
    #slider .hero img{
        display: block;
    }
    
#herosection .ce_heroImage .caption .row > .inside > div > div,#herosection .flexslider .caption .inside > div > div {
    width: 100%;
    max-width: none;
    padding: 2rem;
    margin: 0;
    box-sizing: border-box;
}
    .ce_heroImage .caption .row > .inside {
    display: table;
    width: 100%;
        margin: 0;
    }
    

#herosection .ce_heroImage .caption .row > .inside > div > div,#herosection .flexslider .caption .inside > div > div {

    width: 100%;
    max-width: none;
    padding: 2rem;

}
    
    .ce_heroImage .caption .row > .inside > div{
        padding: 0;
        width: 100%;
        margin-bottom: 2rem;
    }
}
    
    
@media all and (max-width: 1280px){
    body .sf-menu > li{
        margin-right: 10px;
    }
    
    body .headerbottom .sf-menu a, body .headerbottom .sf-menu strong {
  padding: .75em 0.5em;
        font-size: 16px;
}
    
    .megamenue.mod_navigation > ul > li > * {
    font-size: 17px;
    letter-spacing: 0;
}
    
    .ce_teaserGrid .itemsperRow_grid > .item_1_3col,.ce_teaserGrid .itemsperRow_grid > .item_2_3col {
    width: calc( (100% - (4 * 10px)) / 2);
}
    
    .ce_heroImage .caption .row > .inside > div > div{    
    padding: 2rem 4rem 2rem 4rem;
}
    
    header nav > ul > li > a {
    padding: 10px;
}
 
    .filters > .inside{
        padding: 2rem 30px;
    }
    
 
    .megamenue.block{
        padding: 0 10px;
    }
    header{
		/*display: none*/
	}

.slicknav_nav ul.level_2 li > * {
padding: 5px 20px 5px 30px;
}

#wrapper {
/*margin-top:94px;*/
}
  
    
.index #herosection video {
    height: auto;
    object-fit: cover;
}
    .fullwidth.mod_article .block.element_float_left{
        padding-right: 2rem;
    }
}

@media all and (max-width: 1030px){
    .fullwidth .ce_teaserGrid .itemsperRow_grid > *{
        height: 380px;
    }
    
    .grid-item, .grid-sizer {
    width: calc((100% - (4 * 10px)) / 2);
}
    
}

@media all and (max-width: 980px){
    
   body > div.slicknav_menu{
        display: block;
    }
}

@media all and (max-width: 960px){
    
    .mod_single_direct_module .price{
        font-size: 23px;
    }
      .ce_kitchenteaser .price{
        font-size: 40px;
    }
    
.not_above .energydata > * {
    white-space: normal;
    width: calc((100% - (1 * 30px)) / 2);
    display: block;
    float: left;
    text-align: left;
    margin-bottom: 2rem;
    margin-right: 30px;
}
    
    .not_above .energydata > *:nth-child(2n+2) {
        margin-right:0;
    }
    
    
    
    .grid-item-inside .caption span.preteaserhead{
        font-size: 1.2rem;
    }
    
    
.angebote .teaserheadline {
    font-size: 1.65rem !important;
    line-height: 2.2rem !important;
    margin: .5rem 0 1rem;
}
    
    .grid .caption > .inside {
    padding: 0 0 20px 0;
    display: inline-block;
}
    
#herosection .ce_heroImage,#slider .hero, #herosection img.ce_flexslider,.ce_heroImage .bgImage{
    height: auto;

        min-height: 0;
    }
    

#herosection .flexslider .caption .inside > div {
    padding: 0;
    width: 100%;
}
    
    .mod_onepage_navigation > .inside{
        padding: 2rem;
    }
    .ce_bewerbungsbox .row > .imagecol {
    width: auto;
    margin: 0;
    float: none;
    width: auto;
        display: table-header-group;
}
    .mod_single_direct_module .owl-carousel .price {
        float:left;
    }
    .ce_bewerbungsbox .textcol.not_right, .ce_bewerbungsbox .textcol.not_right{
        float: none;
              display: table-footer-group;
    }
    
    .ce_bewerbungsbox .imageholder{
        margin: 0 auto;
    }
    
    .mod_article > .ce_bewerbungsbox > .table{
        margin: 0 auto;
        padding: 40px;
    }
}

@media all and (max-width: 930px){
    
    #herosection .flexslider .slides img{
    max-height: none;
}

    
    .index .mod_article > .block > .block,.bgColored{
        padding: 20px 0
    }
    
    
    .slider-control .slider-next,.slider-control .slider-prev{
        display: none;
    }
    
      .ce_sliderStart > h2{
        margin-bottom: 2rem;
    }
    
    .more{
        text-align: center;
    }
    
    .index .mod_article.fullwidth .block.ce_logo,.ce_logo{
        max-width: 280px;
        margin: 0 auto;
        padding: 20px;
    }    

.mediaholder .stoerer{
    width: 100%;
    height: auto;
    top: auto;
    left: auto;
    right: auto;
    position: relative;
}
    
    .vAlign_top.ce_kachelelement .stoerer .row > * {
  vertical-align: none;
  text-align: center;
  padding: 20px;
  display: block;
  width: 100%;
}

    
    
      #herosection .stoerer{
        width: 200px;
    }
    
  .ce_bewerbungsbox_full .row > .imagecol,.ce_kachelelement .row > .mediaholder {
  display: table-header-group;
}
    
      .ce_bewerbungsbox_full .row > .textcol {
  display: table-footer-group;
}
    
    
.index .mod_article.fullwidth .block.textbanner,.index .mod_article .block.textbanner {
  padding: 20px;
}
    
    .ce_kachelelement .row > .textholder > .inside{
        padding: 20px 0;
    }
    

    .index .mod_article .block.ce_colorslider .headlinecontainer,.ce_player .headlinecontainer, .ce_player .ce_text{
        padding: 0 20px;
    }
    
      .fullwidth .ce_kachelelement .row > .textholder > .inside{
        padding: 20px;
    }
    
    .ce_bewerbungsbox_full .row > .imagecol .imageholder {
  margin: 0 auto 2rem;
        position: relative;
}
  
    
    .ce_bewerbungsbox_full .row > .imagecol .imageholder {
         margin: 0 auto 2rem;
  position: relative;
    }
    
   .ui-group strong {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.03rem;
}
    
    
    .ce_heroImage .bgImage{
        background-size: 170% !important;
                background-position: 50% 20% !important;
    }
    
    .ce_bewerbungsbox .textcol .inner{
        padding: 0 20px;
    }
    
    
    .ce_bewerbungsbox .headlinecontainer {
    margin-bottom: 2rem;
}
    
    
    .row > *, .valign_middle.twocol .row > * .text,.ce_text.first > .headlinecontainer, .ce_pageteaser.first > .headlinecontainer{
        margin-top: 20px;
    }
    
    .ce_heroImage .caption .row > .inside > div{
        margin-bottom: 0;
    }
    
       .filters > .inside{
        padding: 0 20px 2rem;
    }
    .ce_heroImage .caption .row > .inside > div > div{
        padding:2rem 4rem;
    }
    
    .table > .table-row > * {
    display: block;
    width: 100%;
        padding-right: 0;
        padding-left: 0;
}
    
    .table > .table-row > .not_left, .table > .table-row > .float_right{
      padding-right: 0;
        padding-left: 0;  
    }
    
     .table > .table-row > .not_right, .table > .table-row > .float_left{
      padding-right: 0;
        padding-left: 0;  
    }
    
    
    .table > .table-row > .float_right, .table > .table-row > .float_left{
        display: table-header-group;
    }
    

    
    
    .table > .table-row > .float_right img, .table > .table-row > .float_left img{
        margin-top: 2rem;
        margin-bottom: 20px;
    }
    
    .table > .table-row > .not_right,.table > .table-row > .not_left, .valign_top.twocol .row > .imageholder{
        display: table-footer-group;
    }
    
    .tablerow.section > .block{
        padding: 2rem;
    }
    
  
    
    .ce_bewerbungsbox .imageholder{
        width: auto;
        height: auto;
    }
    .ce_heroImage .caption{
        
    }
    
    .ce_heroImage .caption .row > .inside > div{
        padding: 0;
        width: 100%;
    }
    
    .ce_heroImage .caption .row > .inside > div > div{
        max-width: none;
        padding: 2rem;
        background: rgba(0,0,0,.8);
    }
    
    .twocol .textholder.not_left, .twocol .textholder.not_above{
        padding-left: 2rem;
    }

    .mod_article > .block > .block,.fullwidth.mod_article > .block > .block{
        padding: 2rem;
    }
    
    #main > .inside {
   /* padding: 3rem 0;*/
}
    
    .ce_kachelelement .notfloat_left > .inside {
    padding: 2rem 0;
}
    
    .padded{
        padding: 0;
    }
    
   .mod_article > .block > .block.padded{
        padding: 2rem 20px;
    }
      #footer h2 {
    text-align:left;
}
      .row, .valign_middle.twocol .row{
        display: table;
          width: 100%;
    }
    
    .rowmatch.noimage .row{
        display: table-row;
    }
    
        .rowmatch.noimage .row > *{
        display: table-cell;
    }
    
.row > *, .valign_middle.twocol .row > *{
        display: table-header-group;
    }
    
    .row > *, .valign_middle.twocol .row > .imageholder{
        display: table-footer-group;
    }
    
    .teasergrid .row {
    display: table-row;
    position: relative;
}
    
     .index #herosection .fullwidth.mod_article > .block > .ce_player.block .caption,.index #herosection .flexslider .caption,.ce_gridList .teasergrid > div > * .image_container,.vAlign_middle.ce_kachelelement .row > .mediaholder {
display: table-footer-group;
position: relative;
}
        
     .index #herosection .fullwidth.mod_article > .block > .ce_player.block .video_container, .ce_gridList .teasergrid > div > * .text,.vAlign_middle.ce_kachelelement .row > .textholder, .valign_top.twocol .row > .textholder{
display: table-header-group;
}
    
    
        .safari .teasergrid .row {
    display: table;

}
    
        .teasergrid .row > * {
    display: table-cell;
 }
    
    .row  .textholder.not_left  > .headlinecontainer{
        margin-top: 20px;
    }
    
    .row  .textholder.not_right  > .text, .valign_middle.twocol .row > * .text, .twocol .textholder.not_left > .text{
        margin-bottom: 20px;
    }
    
    
    .float_above img{
        width: 100%;
        height: auto;
    }
    
       .row > .float_above img {
         margin-bottom: 2rem;
}
    
    .fullwidth.mod_article > .block > .block.element_float_right{
        padding-left: 0
            box-sizing:border-box;
            
    }
    

    .ce_kachelelement .mediaholder .flexslider,.ce_gallerytext .row .ce_text .headlinecontainer{
        margin-top: 2rem;
    }
    
    .image.gallery.floating_right .teasergrid{
        margin-top: 2rem;
    }
      
    .fullwidth.mod_article > .block > .block.element_float_right > .table{
        padding-right: 0;
            box-sizing:border-box;
    }
    
    .mediaholder.flexslider{
        
    }
    
    .index .teasergrid > div{
        padding: 0;
    }
    
    .ce_kachelelement .notfloat_right > .inside{
        padding: 0;
    }
    
    .bgColored.margTop > .block > .block:after{
        height: 100%
    }
    
    
     .fullwidth.mod_article > .block > .block.element_float_left > .table{
        padding-left: 0;
         box-sizing:border-box;
    }
    
    .fullwidth.mod_article > .block > .block.element_float_left{
        padding: 2rem;
    }
    
    
    .image_container img{
        width: 100%;
    }

    .ce_colorslider .headlinecontainer > *,h2 {
  font-size: 40px;
  line-height: 1.2;
        text-align: center;
}
    
      .ce_textBanner .headline > *,.ce_textBanner .headline > h2{
          font-size: 40px;
          text-align: left;
    }
    
    .ce_bewerbungsbox .textcol{
        display: table-footer-group;
    }
    
    .ce_bewerbungsbox .textcol .boxtext{
        margin-top: 2rem;
        padding: 0;
    }
    
    .bgColored.margBottom > .block > .block ::after {
    height: 100%;
}
    
    .gallery.floating_below{
        margin-top: 2rem;
    }
    
    .ce_bewerbungsbox .textcol.not_left .inner{
        padding:  0 20px 20px;
    }
    
    .ce_bewerbungsbox .imageholder{
        padding: 0 20px;
    }
    .ce_pageteaser.subpages .teasergrid{
        margin: 2rem 0;
    }
    
       .ce_pageteaser.subpages .name h4{
        margin: 10px 0 0;
    }
    
    .fullwidth.mod_article > .block > .block.mod_list_shot_module{
        padding: 0;
    }
    
    .slideup span{
        font-size: 18px;
    }
    
    .slideup span br{
        display: none;
    }
    
  .slideup span img {
    max-width: 130px;
	height:auto;
}
    .slideup .toggleSlide{
        bottom: 0;
        padding: 5px 10px;
        
        
    }
    
    .linkholder {
        margin-bottom: 4rem;
    }
    
    .kuechentester-werden .ce_heroImage.valign_top .readmore{
        margin-left: auto;
    }
    .ce_heroImage.valign_top .caption .row > .inside > div > div {
    max-width: none;
    padding: 0;
    background: transparent;
}
    
    .ce_bewerbungsbox_full .imageholder .caption .table > .row{
        display: table-row;
    }
    
    .ce_bewerbungsbox_full .imageholder .caption .table > .row > *{
        display: table-cell;
    }
    
    footer .row > *{
        display: table-cell;
    }
}

@media all and (max-width: 850px){
    
    
    .widget.w50{
        width: 100%;
    }
  .ce_teaserGrid .itemsperRow_grid > .item_2_3col, .ce_teaserGrid .itemsperRow_grid > .item_1_3col,.ce_teaserGrid .itemsperRow_grid > .item_3_3col {
    width: calc((100% - 20px) / 1);
    }
    
    
    .fullwidth .ce_teaserGrid .video_container,.fullwidth .ce_teaserGrid .image_container {
        height: 450px;
    }
    
    .fullwidth .ce_teaserGrid .itemsperRow_grid > * {
    height: auto;
}
    
    .ce_teaserGrid .teasergrid .teasercaption,.fullwidth .ce_teaserGrid .itemsperRow_grid > .reference .banner {

    position: relative;
}
    .ce_teaserGrid .teasergrid .teasercaption{
        height: auto;
    }
    
    .ce_teaserGrid .teasergrid .reference .teasercaption > .inside{
        background: transparent;
        color: inherit;
    }
        
    
    
    
    
    .ce_teaserGrid .teasergrid .teasercaption > .inside {
    display: block;
    background: #fff;
    margin: 0;
    padding: 10px 0 5px;
    height: auto;
    line-height: 1.2;
    font-family: cubano,sans-serif;
    font-weight: 400;
    font-size: 25px;
    max-width: none;
}
    
    
    .mod_article > .block > .block, .fullwidth.mod_article > .block > .block{
        padding: 10px;
    }
    
    .ce_teaserGrid .itemsperRow_grid .image_container img{
        max-width: 100%;
    }
    

    
  .mod_article > .block > .block.padded {
    padding-left: 10px;
    padding-right: 10px;
}
}


@media all and (max-width: 780px){
    
.grid-item, .grid-sizer {
    width: 100%;
}
    
    .angebote #main > .inside {
    padding: 0;
}
    
      footer .row > *{
        display: table-footer-group;
    }
    
    footer .footertop .table {
        display: block;
    }
    
    footer .footertop .row {
        display: table;
        width: 100%;
    }
footer .footertop .row > * {
  display: block;
  width: 100%;
  padding: 2rem 20px;
  box-sizing: border-box;
}
    
    footer .footertop .row > .map{
        padding: 0;
        margin: 0;
    }
    
    
    
    footer .socials{
        text-align: left;
        margin-bottom: 20px;
    }
    
    #footerbottom .mod_customnav {
  display: table;
  float: none;
}
    
    footerbottom ul > li {
  float: left;
  margin-left: 20px;
  font-size: 14px;
}
}


@media all and (max-width: 750px){
      .stoerer{
        width: 150px;
    }
    
    .parallax-container .headlinecontainer > *{
        font-size: 40px;
    }
    
  .ce_parallaxImage .caption > .row > .holder {
  padding: 20px 20px 40px;
  display: block;
}
    
    .ce_parallaxImage .caption{
        padding: 0 20px;
    }
    
    .slideup .toggleSlide{
       /* left: auto;
        right: 0;*/
        top: auto;
    }
    
   body .flex-direction-nav a{
        width: 10px;
        height: 10px;
    }
    
    body .flex-direction-nav a img {
  width: 10px;
  height: 10px;
  display: inline-block;
  vertical-align: middle;
}

body .flex-direction-nav a img, .slider-control a img {
margin-top:0;
}
    
    body .flex-direction-nav .flex-prev{
        left: 10px !important;
    }
    
      body .flex-direction-nav .flex-next{
        right: 10px !important;
    }
    
    .index #carousel{
        position: relative;
    }
    
    .index #carousel.flexslider ul.slides > li {
  margin-right: 0;
 
  float: left !important;
        height: 60px;
  width: calc(100vw / 5) !important;
}
    
    header > .inside{
        padding: 0 10px;
    }
    
  
    
    .mod_logo {
  max-width: 280px;
        margin: 20px auto;
}
    
  .parent_angebotskuechen .section #carousel.flexslider ul.slides > li{
      width: calc((100vw - (4 * 16px)) / 4) !important;
      max-width: 120px;
    }
    
    #carousel.flexslider ul.slides > li .figcaption {
  font-size: 12px;
  display: block;
  line-height: 1.2;
        hyphens: auto;
}
    
    #maincontent > .block {
  padding: 20px 2rem 20px;
}
    
    .ce_introtext .headlinecontainer > *{
        font-size: 23px;
line-height: 1.4em;
    }
}


@media all and (max-width: 680px){
    .socialsidebar img {
	width:15px;
	}
	.socialsidebar .facebook img {
	height:15px;
	}
	.socialsidebar span {
display: block;
line-height: 0;
text-align: center;
padding: 5px;
}
    
    .mod_single_direct_module #carousel{
        padding: 20px 0;
    }

    .ce_gridGallery .itemsperRow_grid > .item_1_3col,.ce_gridGallery .itemsperRow_grid > .item_2_3col,.ce_gridGallery .itemsperRow_grid > .item_3_3col {
  width: 100%;
        display: block;
        margin: 0 0 10px;
}
.ce_gallery > ul.cols_2 > li {
width: 100%;
}

.ce_gridGallery .itemsperRow_grid > * {
    height: auto;
}
.headline img {
width:100%;
}

    .teasergrid > div, .teasergrid > ul{
        margin: 0;
    }
    
    .fullwidth.mod_article > .block > .ce_bewerbungsbox_full.block{
        padding: 0 0 4rem;
    }
    
    .ce_bewerbungsbox_full a{
        font-size: 30px;
        padding: 15px 20px 16px;
    }
    
    .ce_bewerbungsbox_full .row > .imagecol .imageholder{
        width: 100%;
    }
    
    .ce_bewerbungsbox_full .row > .imagecol .imageholder img{
        height: 450px;
        width: auto;
    }
    
    .ce_bewerbungsbox_full .row > .textcol > .inner{
        padding: 0 2rem;
    }
    
    body{
       /* hyphens: auto;
        -webkit-hyphens: auto;*/
    }
    
    #herosection .ce_heroImage .caption .row > .inside > div > div, #herosection .flexslider .caption .inside > div > div{
        padding: 20px 10px;
    }
    
    .tablerow.section > .block > .block,.tablerow.section > .ce_introtext.block.first{
        padding: 2rem 20px;
    }
    
    .fullwidth.mod_article > .block > .block.ce_bewerbungsbox{
        padding-bottom: 0
    }
    
    .parallax-container{
        /*height: 380px;*/
        height:auto;
    }
    
        #herosection .flexslider .caption .headlinecontainer > *  {
    font-size: 26px;
}
    
    #herosection .flexslider .caption .headlinecontainer{
        margin: 0;
    }
    
    #herosection .flexslider .caption .inside > div > div {
        padding: 20px 10px;
    }
    
    
.ce_pageteaser.subpages .teasergrid > .itemsperRow_2 > *{
        width: 100%;
        margin: 0 0 2rem;
    }
    
    
    ce_pageteaser.subpages .teasergrid > div {
    margin: 10px 0 -2rem;
}
    
    
  .filters > .inside > * {
  
        display: block;
        margin-bottom: 20px;
      margin-right: 20px;
      width: calc((100% - 20px) / 2);
    }
    
    .filters > .inside > *:nth-child(2n+2) {
        margin-right: 0;
    }
    
    .filters > .inside > *:last-of-type{
        margin-bottom: 0;
    }
    
    body .dk-select, body .dk-select-multi{
        width: 100%;
    }
    
    .headlinecontainer{
        margin-bottom: 20px;
    }
    
  
    
  body {
  font-size: 16px;
  line-height: 1.75;
}
    
    #main > .inside{
        padding: 0;
    }
    
    .ce_heroImage .caption .headlinecontainer > *{
        font-size: 26px;
    }
    
    .ce_heroImage .caption .row > .inside > div > div{
        padding: 20px;
    }
    
    .ce_bewerbungsbox .headlinecontainer > *{
        font-size: 38px;
    }
    
    .mod_article > .ce_bewerbungsbox > .table{
        width: 100%;
    }
    
    .teasergrid > .itemsperRow_3 > *, ul.cols_3 > li,.teasergrid > .itemsperRow_2 > *, ul.cols_2 > li {
    width: 100%;
        margin: 0 0 10px;
        float: none;
}
    .mod_article.bgColored > .block > .block, .mod_article > .block > .block, #maincontent > .block{
        padding: 2rem 10px;
    }
    
    .teasergrid > .itemsperRow_3 > .last, ul.cols_3 > li.last,.teasergrid > .itemsperRow_2 > .last, ul.cols_2 > li.last {
        margin-bottom:0;
    }
    .fullwidth.mod_article > .block > .block.element_float_left > .table{
        padding: 0;
    }
    
    
    .fullwidth.mod_article > .block > .block.element_float_left{
        padding: 20px;
    }
    
   .index #main > .inside{
       /* padding-top: 2rem */
    }
    
.fullwidth .ce_teaserGrid .video_container,.fullwidth .ce_teaserGrid .image_container {
        height: 340px;
    }
    
    
   .ce_pageteaser .readmore {
        float: none;
        display: table;
    }
    
  form#kuchentester-werden .teasergrid > .itemsperRow_2,
    form#kuchentester-werden .teasergrid > .itemsperRow_3{
  margin: 10px -10px -20px;
  width: auto;
  box-sizing: border-box;
}
    
    form#kuchentester-werden .teasergrid > .itemsperRow_2 > *,
        form#kuchentester-werden .teasergrid > .itemsperRow_3 > *{
        width: calc( (100% - (4 * 10px)) / 2 );
        float:left;
        margin: 0 10px 20px;
    }
    
     .kuechentester-werden .radio_container.list label::before, fieldset.planung .radio_container label::before {
        display: none;
    }
    
    
    
    .kuechentester-werden legend,.kuechentester-werden .teasergrid label .caption .cell > .inside > div{
        font-size: 20px;
        line-height: 1.2;
    }
    
    .kuechentester-werden .radio_container.list > span, .kuechentester-werden .planung .radio_container > span{
        padding: 15px 15px 10px;
    }
    
    .kuechentester-werden .radio_container.list label .labeltext{
        font-size: 16px;
        hyphens: initial;
        width: 100%;
    }

    .checkbox_container label > span {
        width: calc(100% - 45px);
    }

    
.kuechentester-werden .teasergrid label .caption .cell > .inside > div {
  font-size: 14px;
  line-height: 1.2;
  margin: 0 0 20px;
  padding: 10px 10px;
}
    
   form#kuchentester-werden fieldset {
  padding: 0;
}
    
    
    form#kuchentester-werden .widget-checkbox fieldset {

  padding: 10px 10px 15px;
}
#herosection #slider .slides img {
/*min-height: 330px;*/
}
.ce_kachelelement.smallwidth .row > .mediaholder,
.ce_kachelelement.col33 .row > .mediaholder {
width:100%;
}
.ce_kachelelement.smallwidth .row > .textholder,
.ce_kachelelement.col33 .row > .textholder {
width:100%;
}
}


@media all and (max-width: 590px){
   
     body > div.slicknav_menu .mod_logo {
  max-width: 200px;
  margin: 10px;
}
    
      .menu-btn span{
         display: none;
    }
    
    
    footer > .inside .mod_navigation > ul{
        width: auto;
    }
    
    #footerbottom ul > li {
  float: none;
  margin-left: 0;
  text-align: left;
}
    
    footer .socials ul > li img {
  margin-left: 10px;
        width: 30px;
        height: 30px;
}
    
    footer .socials {
  text-align: left;
  margin-bottom: 10px;
}
    
    
    .radio_container.list > span > *, .planung .radio_container > span{
        vertical-align: top;
    }
	#herosection .fullwidth.mod_article > .block > .ce_player.block {
		width:150%;
	}
	#herosection video {
		width:150%;
		max-height:300px;
	}
	.mod_article > .block > .block.ce_player, .fullwidth.mod_article > .block > .block.ce_player {
	padding:10px 0;
	}
    
    .ce_ImageBox .textholder{
        padding: 20px;
    }

	.ce_heroImage .bgImage {
	background-size: cover!important;
	min-height:320px;
	}
	.zitat,
	.ce_bewerbungsbox .headlinecontainer > * {
	font-size:24px;
	hyphens:none;
	-webkit-hyphens:none;
	}
	.mod_filter_tag_module .headlinecontainer {
		margin-top:4rem;
	}
	#main .grid .caption>.inside {
		min-height: 100px;
	}
}

@media all and (max-width: 530px){
    .terminanfrage .list_item {
       max-width: 50%;
    }
    
         .stoerer{
        width: 100px;
    }
}

@media all and (max-width: 460px){
    .ce_bewerbungsbox_full .imageholder .caption .table .row > * .headline > * > span{
        font-size: 25px;
    }
    
    .ce_bewerbungsbox_full .imageholder .caption .table .row > * .headline span.headrow_large{
        font-size: 36px;
    }
    .mod_logo{
        max-width: 220px;
    }
    
    .vAlign_top.ce_kachelelement .stoerer .row > *{
        max-width: 210px;
margin: 0 auto
    }
h1, h2, .h2 {
font-size: 36px;
}
}

@media all and (max-width: 480px){
    #header .row > .headerright > *{
        display: none;
    }  
    
    #header .row > .headercenter{
       
    }
    
    .mod_logo{
        margin: 0 auto;
    }
    
   #herosection .stoerer {
  width: 100px;
  top: 10px;
  right: 4rem;
}
}

@media all and (max-width: 400px){
    
  .filters > .inside > * {
  
        display: block;
        margin-bottom: 20px;
      margin-right: 0;
      width: 100%;
    }
    
    .filters > .inside > *:nth-child(2n+2) {
        margin-right: 0;
    }
	.ce_bewerbungsbox a {
	font-size:30px;
	}
}
@media all and (max-width: 350px){
       .ce_bewerbungsbox_full .imageholder .caption .table .row > * .headline > * > span{
        font-size: 21px;
    }
    
    .ce_bewerbungsbox_full .imageholder .caption .table .row > * .headline span.headrow_large{
        font-size: 32px;
    }
    
     .terminanfrage .list_item {
       max-width: none;
    }
}
