/* line 5, ../../../../../../../../../var/lib/gems/2.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* line 22, ../../../../../../../../../var/lib/gems/2.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html {
  line-height: 1;
}

/* line 24, ../../../../../../../../../var/lib/gems/2.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
ol, ul {
  list-style: none;
}

/* line 26, ../../../../../../../../../var/lib/gems/2.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 28, ../../../../../../../../../var/lib/gems/2.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* line 30, ../../../../../../../../../var/lib/gems/2.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q, blockquote {
  quotes: none;
}
/* line 103, ../../../../../../../../../var/lib/gems/2.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

/* line 32, ../../../../../../../../../var/lib/gems/2.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
a img {
  border: none;
}

/* line 116, ../../../../../../../../../var/lib/gems/2.1.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* line 21, ../../../../../../../../../var/lib/gems/2.1.0/gems/susy-2.2.6/sass/susy/language/susy/_box-sizing.scss */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* -----------------------------------
 * Slidebars
 * Version 0.10.3
 * http://plugins.adchsm.me/slidebars/
 *
 * Written by Adam Smith
 * http://www.adchsm.me/
 *
 * Released under MIT License
 * http://plugins.adchsm.me/slidebars/license.txt
 *
 * -------------------
 * Slidebars CSS Index
 *
 * 001 - Box Model, Html & Body
 * 002 - Site
 * 003 - Slidebars
 * 004 - Animation
 * 005 - Helper Classes
 *
 * ----------------------------
 * 001 - Box Model, Html & Body
 */
/* line 25, ../components/sass/_slidebars.scss */
html, body, #sb-site, .sb-site-container, .sb-slidebar {
  /* Set box model to prevent any user added margins or paddings from altering the widths or heights. */
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 34, ../components/sass/_slidebars.scss */
html, body {
  width: 100%;
  overflow-x: hidden;
  /* Stops horizontal scrolling. */
}

/* line 39, ../components/sass/_slidebars.scss */
html {
  height: 100%;
  /* Site is as tall as device. */
}

/* line 43, ../components/sass/_slidebars.scss */
body {
  min-height: 100%;
  height: auto;
  position: relative;
  /* Required for static Slidebars to function properly. */
}

/* Site scroll locking - prevent site from scrolling when a Slidebar is open, except when static Slidebars are only available. */
/* line 50, ../components/sass/_slidebars.scss */
html.sb-scroll-lock.sb-active:not(.sb-static) {
  overflow: hidden;
}

/* ----------
 * 002 - Site
 */
/* line 58, ../components/sass/_slidebars.scss */
#sb-site, .sb-site-container {
  /* You may now use class .sb-site-container instead of #sb-site and use your own id. However please make sure you don't set any of the following styles any differently on your id. */
  width: 100%;
  min-height: 100vh;
  position: relative;
  z-index: 1;
  /* Site sits above Slidebars */
  background-color: #ffffff;
  /* Default background colour, overwrite this with your own css. I suggest moving your html or body background styling here. Making this transparent will allow the Slidebars beneath to be visible. */
}

/* Micro clearfix by Nicolas Gallagher, ensures the site container hits the top and bottom of the screen. */
/* line 68, ../components/sass/_slidebars.scss */
#sb-site:before, #sb-site:after, .sb-site-container:before, .sb-site-container:after {
  content: ' ';
  display: table;
}

/* line 73, ../components/sass/_slidebars.scss */
#sb-site:before, #sb-site:after, .sb-site-container:before, .sb-site-container:after {
  clear: both;
}

/* ---------------
 * 003 - Slidebars
 */
/* line 81, ../components/sass/_slidebars.scss */
.sb-slidebar {
  height: 100%;
  overflow-y: auto;
  /* Enable vertical scrolling on Slidebars when needed. */
  position: fixed;
  top: 0;
  z-index: 0;
  /* Slidebars sit behind sb-site. */
  display: none;
  /* Initially hide the Slidebars. Changed from visibility to display to allow -webkit-overflow-scrolling. */
  background-color: #222222;
  /* Default Slidebars background colour, overwrite this with your own css. */
}

/* line 91, ../components/sass/_slidebars.scss */
.sb-slidebar, .sb-slidebar * {
  -webkit-transform: translateZ(0px);
  /* Fixes issues with translated and z-indexed elements on iOS 7. */
}

/* line 95, ../components/sass/_slidebars.scss */
.sb-left {
  left: 0;
  /* Set Slidebar to the left. */
}

/* line 99, ../components/sass/_slidebars.scss */
.sb-right {
  right: 0;
  /* Set Slidebar to the right. */
}

/* line 103, ../components/sass/_slidebars.scss */
html.sb-static .sb-slidebar,
.sb-slidebar.sb-static {
  position: absolute;
  /* Makes Slidebars scroll naturally with the site, and unfixes them for Android Browser < 3 and iOS < 5. */
}

/* line 108, ../components/sass/_slidebars.scss */
.sb-slidebar.sb-active {
  display: block;
  /* Makes Slidebars visibile when open. Changed from visibility to display to allow -webkit-overflow-scrolling. */
}

/* line 112, ../components/sass/_slidebars.scss */
.sb-style-overlay {
  z-index: 9999;
  /* Set z-index high to ensure it overlays any other site elements. */
}

/* line 116, ../components/sass/_slidebars.scss */
.sb-momentum-scrolling {
  -webkit-overflow-scrolling: touch;
  /* Adds native momentum scrolling for iOS & Android devices. */
}

/* Slidebar widths for browsers/devices that don't support media queries. */
/* line 121, ../components/sass/_slidebars.scss */
.sb-slidebar {
  width: 30%;
}

/* line 125, ../components/sass/_slidebars.scss */
.sb-width-thin {
  width: 15%;
}

/* line 129, ../components/sass/_slidebars.scss */
.sb-width-wide {
  width: 45%;
}

@media (max-width: 480px) {
  /* Slidebar widths on extra small screens. */
  /* line 134, ../components/sass/_slidebars.scss */
  .sb-slidebar {
    width: 70%;
  }

  /* line 138, ../components/sass/_slidebars.scss */
  .sb-width-thin {
    width: 55%;
  }

  /* line 142, ../components/sass/_slidebars.scss */
  .sb-width-wide {
    width: 85%;
  }
}
@media (min-width: 481px) {
  /* Slidebar widths on small screens. */
  /* line 148, ../components/sass/_slidebars.scss */
  .sb-slidebar {
    width: 55%;
  }

  /* line 152, ../components/sass/_slidebars.scss */
  .sb-width-thin {
    width: 40%;
  }

  /* line 156, ../components/sass/_slidebars.scss */
  .sb-width-wide {
    width: 70%;
  }
}
@media (min-width: 768px) {
  /* Slidebar widths on medium screens. */
  /* line 162, ../components/sass/_slidebars.scss */
  .sb-slidebar {
    width: 40%;
  }

  /* line 166, ../components/sass/_slidebars.scss */
  .sb-width-thin {
    width: 25%;
  }

  /* line 170, ../components/sass/_slidebars.scss */
  .sb-width-wide {
    width: 55%;
  }
}
@media (min-width: 992px) {
  /* Slidebar widths on large screens. */
  /* line 176, ../components/sass/_slidebars.scss */
  .sb-slidebar {
    width: 30%;
  }

  /* line 180, ../components/sass/_slidebars.scss */
  .sb-width-thin {
    width: 15%;
  }

  /* line 184, ../components/sass/_slidebars.scss */
  .sb-width-wide {
    width: 45%;
  }
}
@media (min-width: 1200px) {
  /* Slidebar widths on extra large screens. */
  /* line 190, ../components/sass/_slidebars.scss */
  .sb-slidebar {
    width: 20%;
  }

  /* line 194, ../components/sass/_slidebars.scss */
  .sb-width-thin {
    width: 5%;
  }

  /* line 198, ../components/sass/_slidebars.scss */
  .sb-width-wide {
    width: 35%;
  }
}
/* ---------------
 * 004 - Animation
 */
/* line 207, ../components/sass/_slidebars.scss */
.sb-slide, #sb-site, .sb-site-container, .sb-slidebar {
  -webkit-transform: translate(0px);
  -moz-transform: translate(0px);
  -o-transform: translate(0px);
  transform: translate(0px);
  -webkit-transition: -webkit-transform 400ms ease;
  -moz-transition: -moz-transform 400ms ease;
  -o-transition: -o-transform 400ms ease;
  transition: transform 400ms ease;
  -webkit-transition-property: -webkit-transform, left, right;
  /* Add left/right for Android < 4.4. */
  -webkit-backface-visibility: hidden;
  /* Prevents flickering. This is non essential, and you may remove it if your having problems with fixed background images in Chrome. */
}

/* --------------------
 * 005 - Helper Classes
 */
/* line 226, ../components/sass/_slidebars.scss */
.sb-hide {
  display: none;
  /* Optionally applied to control classes when Slidebars is disabled over a certain width. */
}

/* line 1, ../components/sass/_base.scss */
html {
  overflow-y: scroll;
}

/* line 5, ../components/sass/_base.scss */
body {
  color: black;
  font-family: Helvetica,Arial,sans-serif;
  font-size: 14px;
}

/* line 11, ../components/sass/_base.scss */
p {
  font-size: 13px;
  line-height: 16px;
  margin-bottom: 13px;
}

/* line 17, ../components/sass/_base.scss */
h1 {
  color: #eb6b09;
  font-size: 20px;
  font-weight: bold;
  line-height: 25px;
  margin-bottom: 15px;
  margin-left: 30px;
}

/* line 27, ../components/sass/_base.scss */
h2 {
  color: #eb6b09;
  font-weight: bold;
  margin: 18px 0;
  line-height: 1.2em;
  font-size: 16px;
}
@media (min-width: 550px) {
  /* line 27, ../components/sass/_base.scss */
  h2 {
    font-size: 18px;
  }
}
@media (min-width: 800px) {
  /* line 27, ../components/sass/_base.scss */
  h2 {
    font-size: 22px;
  }
}
/* line 40, ../components/sass/_base.scss */
#footer-columns h2 {
  font-size: 16px;
}

/* line 45, ../components/sass/_base.scss */
h3 {
  color: #eb6b09;
  font-size: 14px;
  font-weight: normal;
  margin: 14px 0;
}

/* line 52, ../components/sass/_base.scss */
a {
  color: #eb6b09;
  text-decoration: none;
}
/* line 55, ../components/sass/_base.scss */
a:hover {
  text-decoration: underline;
}

@media (min-width: 800px) {
  /* line 60, ../components/sass/_base.scss */
  .lupe {
    cursor: url("../images/zoom.png"), pointer;
  }
}

/* line 1, ../components/sass/_layout.scss */
#page-wrapper {
  margin: auto;
  position: relative;
  max-width: 800px;
  width: 100%;
}
@media (min-width: 800px) {
  /* line 1, ../components/sass/_layout.scss */
  #page-wrapper {
    -moz-box-shadow: #6a6a6a 0 0 10px;
    -webkit-box-shadow: #6a6a6a 0 0 10px;
    box-shadow: #6a6a6a 0 0 10px;
    margin-bottom: 10px;
    max-width: 765px;
  }
}

/* line 13, ../components/sass/_layout.scss */
#content {
  padding: 20px 35px;
  position: relative;
}
/* line 16, ../components/sass/_layout.scss */
body.page-start #content {
  padding: 20px 20px;
}
/* line 19, ../components/sass/_layout.scss */
body.page-produkte #content {
  padding: 20px 0 0;
}
/* line 22, ../components/sass/_layout.scss */
body.page-galerie #content, body.node-type-doppelseite #content {
  padding: 20px 0;
}

@media (min-width: 800px) {
  /* line 30, ../components/sass/_layout.scss */
  body.page-galerie #content:before, body.node-type-doppelseite #content:before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 10px;
    margin-top: -21px;
    -moz-box-shadow: #6a6a6a 0 -10px 10px -10px inset;
    -webkit-box-shadow: #6a6a6a 0 -10px 10px -10px inset;
    box-shadow: #6a6a6a 0 -10px 10px -10px inset;
  }
}

/* Header */
/* line 45, ../components/sass/_layout.scss */
#header {
  overflow: hidden;
  margin-bottom: 20px;
  padding-top: 20px;
}

/* line 51, ../components/sass/_layout.scss */
#logo {
  float: left;
  margin-left: 20px;
  margin-right: 20px;
}
@media (min-width: 800px) {
  /* line 51, ../components/sass/_layout.scss */
  #logo {
    margin-left: 35px;
  }
}

/* Anpassungen Slidebar */
/* line 62, ../components/sass/_layout.scss */
#menu_mobile {
  cursor: pointer;
  margin: 0 20px 20px;
  float: right;
}
@media (min-width: 660px) {
  /* line 62, ../components/sass/_layout.scss */
  #menu_mobile {
    display: none;
  }
}

/* line 72, ../components/sass/_layout.scss */
#slide_menu > ul.menu {
  padding: 40px 20px;
}
/* line 75, ../components/sass/_layout.scss */
#slide_menu > ul.menu li {
  margin-bottom: 1em;
  list-style-type: none;
  list-style-image: none;
}
/* line 80, ../components/sass/_layout.scss */
#slide_menu > ul.menu li ul {
  margin: 10px 0;
}
/* line 82, ../components/sass/_layout.scss */
#slide_menu > ul.menu li ul li {
  margin-left: 30px;
}
/* line 88, ../components/sass/_layout.scss */
#slide_menu a {
  color: white;
}

/* line 93, ../components/sass/_layout.scss */
#navigation {
  float: right;
  background: #BFBFC1;
  font-size: 0;
  -moz-border-radius-topleft: 10px;
  -webkit-border-top-left-radius: 10px;
  border-top-left-radius: 10px;
  -moz-border-radius-bottomleft: 10px;
  -webkit-border-bottom-left-radius: 10px;
  border-bottom-left-radius: 10px;
  -moz-box-shadow: #6a6a6a 2px 2px 6px;
  -webkit-box-shadow: #6a6a6a 2px 2px 6px;
  box-shadow: #6a6a6a 2px 2px 6px;
  display: none;
}
@media (min-width: 660px) {
  /* line 93, ../components/sass/_layout.scss */
  #navigation {
    display: block;
  }
}
/* line 104, ../components/sass/_layout.scss */
#navigation ul {
  list-style: none;
}
/* line 106, ../components/sass/_layout.scss */
#navigation ul li {
  list-style: none;
  display: inline-block;
  padding: 10px 0;
  margin: 0;
  font-size: 13px;
}
/* line 112, ../components/sass/_layout.scss */
#navigation ul li a {
  border-left: 1px solid white;
  padding: 0 10px;
}
/* line 116, ../components/sass/_layout.scss */
#navigation ul li.first a {
  border: none;
}
/* line 121, ../components/sass/_layout.scss */
#navigation ul ul {
  display: none;
  position: absolute;
  background: #BFBFC1;
  margin-top: 9px;
  margin-left: -25px;
  -moz-box-shadow: #6a6a6a 2px 2px 6px;
  -webkit-box-shadow: #6a6a6a 2px 2px 6px;
  box-shadow: #6a6a6a 2px 2px 6px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  padding: 0 5px;
}
/* line 133, ../components/sass/_layout.scss */
#navigation a {
  color: black;
}
/* line 135, ../components/sass/_layout.scss */
#navigation a:hover {
  color: #eb6b09;
  text-decoration: none;
}
/* line 139, ../components/sass/_layout.scss */
#navigation a.active {
  color: white;
}

/* Footer - Columns */
/* line 147, ../components/sass/_layout.scss */
#footer-columns {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
/* line 12, ../../../../../../../../../var/lib/gems/2.1.0/gems/susy-2.2.6/sass/susy/output/support/_clearfix.scss */
#footer-columns:after {
  content: " ";
  display: block;
  clear: both;
}
@media (min-width: 800px) {
  /* line 151, ../components/sass/_layout.scss */
  #footer-columns:before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 10px;
    -moz-box-shadow: #6a6a6a 0 -10px 10px -10px inset;
    -webkit-box-shadow: #6a6a6a 0 -10px 10px -10px inset;
    box-shadow: #6a6a6a 0 -10px 10px -10px inset;
  }
  /* line 159, ../components/sass/_layout.scss */
  body.page-produkte #footer-columns:before, body.page-node-39 #footer-columns:before {
    content: none;
  }
}
/* line 165, ../components/sass/_layout.scss */
#footer-columns #footerbox_wrap {
  clear: both;
  margin: 0 20px;
}
@media (min-width: 800px) {
  /* line 165, ../components/sass/_layout.scss */
  #footer-columns #footerbox_wrap {
    padding-top: 20px;
    margin: 0 35px;
    padding-top: 0;
  }
}
/* line 175, ../components/sass/_layout.scss */
#footer-columns .footerbox {
  padding-bottom: 20px;
  border-bottom: 1px solid #eb6b09;
}
/* line 178, ../components/sass/_layout.scss */
#footer-columns .footerbox.last {
  border: none;
}
@media (min-width: 800px) {
  /* line 175, ../components/sass/_layout.scss */
  #footer-columns .footerbox {
    padding-top: 20px;
    margin-top: 30px;
    margin-bottom: 20px;
    padding-top: 0;
    padding-bottom: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 33.33333%;
    float: left;
    padding-left: 2.08333%;
    padding-right: 2.08333%;
    border-left: 1px solid #eb6b09;
    border-bottom: none;
  }
  /* line 190, ../components/sass/_layout.scss */
  #footer-columns .footerbox.last {
    border-right: 1px solid #eb6b09;
    border-left: 1px solid #eb6b09;
  }
}
/* line 195, ../components/sass/_layout.scss */
#footer-columns .footerbox > div {
  margin-left: 13px;
  margin-right: 13px;
}
/* line 200, ../components/sass/_layout.scss */
#footer-columns .footerbox p {
  margin-bottom: 0;
}
/* line 204, ../components/sass/_layout.scss */
#footer-columns .footerbox .more-link {
  font-size: 20px;
}
/* line 206, ../components/sass/_layout.scss */
#footer-columns .footerbox .more-link:hover {
  text-decoration: none;
  color: #333;
}

/* Footer */
/* line 217, ../components/sass/_layout.scss */
#footer {
  background: #9c9d9f;
  margin-top: 16px;
  font-size: 10px;
}
@media (min-width: 800px) {
  /* line 217, ../components/sass/_layout.scss */
  #footer {
    -moz-box-shadow: black 0 10px 10px -10px inset;
    -webkit-box-shadow: black 0 10px 10px -10px inset;
    box-shadow: black 0 10px 10px -10px inset;
  }
}
/* line 225, ../components/sass/_layout.scss */
#footer a {
  color: black;
}
/* line 229, ../components/sass/_layout.scss */
#footer #block-menu-menu-footer {
  display: inline-block;
}
/* line 233, ../components/sass/_layout.scss */
#footer ul {
  display: inline-block;
  list-style: none;
  margin: 0 35px;
}
/* line 237, ../components/sass/_layout.scss */
#footer ul li {
  list-style: none;
  margin: 25px 10px 25px 0;
  font-size: 13px;
}
@media (min-width: 800px) {
  /* line 237, ../components/sass/_layout.scss */
  #footer ul li {
    display: inline-block;
    margin: 25px 10px 25px 0;
    font-size: 10px;
  }
}
/* line 249, ../components/sass/_layout.scss */
#footer #copyright {
  float: right;
  margin: 25px;
}

/* line 2, ../components/sass/_module_start.scss */
body.page-start #content {
  text-align: center;
}
/* line 4, ../components/sass/_module_start.scss */
body.page-start #content p {
  font-size: 14px;
  line-height: 20px;
}

/* line 11, ../components/sass/_module_start.scss */
#startslider {
  position: relative;
  max-width: 714px;
  width: 100%;
  margin: 0 auto 20px;
}
/* line 17, ../components/sass/_module_start.scss */
#startslider li {
  display: none;
  margin: 0;
  padding: 0;
}
/* line 21, ../components/sass/_module_start.scss */
#startslider li.first {
  display: block;
}
/* line 25, ../components/sass/_module_start.scss */
#startslider img {
  height: auto;
}
/* line 28, ../components/sass/_module_start.scss */
#startslider .startrahmen {
  position: absolute;
  left: 0;
  width: 100%;
}

/* line 2, ../components/sass/_module_produkte.scss */
#produkt-bilder li {
  margin: 0;
  padding: 25px 20px 5px;
  border-bottom: 1px solid #eb6b09;
}
/* line 6, ../components/sass/_module_produkte.scss */
#produkt-bilder li.first {
  padding-top: 0;
}
/* line 10, ../components/sass/_module_produkte.scss */
#produkt-bilder .show_produkttext {
  display: none;
}
/* line 14, ../components/sass/_module_produkte.scss */
#produkt-bilder .produkt-bild {
  width: 100%;
  height: auto;
}
/* line 19, ../components/sass/_module_produkte.scss */
#produkt-bilder .close_produkttext {
  display: none;
}
@media (min-width: 800px) {
  /* line 1, ../components/sass/_module_produkte.scss */
  #produkt-bilder {
    height: 405px;
  }
  /* line 25, ../components/sass/_module_produkte.scss */
  #produkt-bilder li {
    position: absolute;
    display: none;
    padding: 0;
    border: none;
    left: 0;
    right: 0;
  }
  /* line 32, ../components/sass/_module_produkte.scss */
  #produkt-bilder li.first {
    display: block;
  }
  /* line 36, ../components/sass/_module_produkte.scss */
  #produkt-bilder li img.produkt-bild {
    width: auto;
    border: 10px solid white;
    display: block;
    text-align: center;
    margin: auto;
  }
  /* line 42, ../components/sass/_module_produkte.scss */
  #produkt-bilder li img.produkt-bild.loaded {
    border: 10px solid #9c9d9f;
    -moz-box-shadow: #6a6a6a 0 0 10px;
    -webkit-box-shadow: #6a6a6a 0 0 10px;
    box-shadow: #6a6a6a 0 0 10px;
  }
  /* line 48, ../components/sass/_module_produkte.scss */
  #produkt-bilder li .close_produkttext {
    display: block;
    cursor: pointer;
    float: right;
    margin-top: 18px;
  }
  /* line 55, ../components/sass/_module_produkte.scss */
  #produkt-bilder li .show_produkttext {
    position: absolute;
    top: 12px;
    right: 56px;
    cursor: pointer;
    display: none;
  }
  /* line 64, ../components/sass/_module_produkte.scss */
  #produkt-bilder .produkt-text {
    position: absolute;
    background-image: url("../images/textfeld-produkte.png");
    color: white;
    left: 330px;
    padding: 3px 10px 8px;
    position: absolute;
    top: 34px;
    width: 371px;
    z-index: 1000;
  }
  /* line 74, ../components/sass/_module_produkte.scss */
  #produkt-bilder .produkt-text h2 {
    color: white;
    font-size: 1.2em;
    margin: 0;
    padding: 15px 0 10px;
    text-align: center;
  }
}

/* line 85, ../components/sass/_module_produkte.scss */
#p-carousel-wrap {
  position: relative;
  min-height: 83px;
  display: none;
  background: #9c9d9f;
  padding-top: 18px;
  padding-bottom: 2px;
}
@media (min-width: 800px) {
  /* line 85, ../components/sass/_module_produkte.scss */
  #p-carousel-wrap {
    display: block;
  }
}
/* line 96, ../components/sass/_module_produkte.scss */
#p-carousel-wrap #p-c-prev, #p-carousel-wrap #p-c-next {
  position: absolute;
  cursor: pointer;
  width: 29px;
  height: 42px;
  top: 32px;
}
/* line 102, ../components/sass/_module_produkte.scss */
#p-carousel-wrap #p-c-prev.end, #p-carousel-wrap #p-c-next.end {
  opacity: 0.5;
}
/* line 107, ../components/sass/_module_produkte.scss */
#p-carousel-wrap #p-c-prev {
  background: url(../images/produkt-left.png);
  left: 30px;
}
/* line 112, ../components/sass/_module_produkte.scss */
#p-carousel-wrap #p-c-next {
  background: url(../images/produkt-right.png);
  right: 30px;
}

/* line 119, ../components/sass/_module_produkte.scss */
#produkt-carousel {
  margin-left: auto;
  margin-right: auto;
}
/* line 122, ../components/sass/_module_produkte.scss */
#produkt-carousel li {
  display: none;
  background: url(../images/produktrahmen-vorschau.png) no-repeat;
  height: 72px;
  padding: 7px 0 0 8px;
  width: 87px;
  margin: 0 10px;
  cursor: pointer;
}
/* line 130, ../components/sass/_module_produkte.scss */
#produkt-carousel li.aktiv {
  background: url(../images/produktrahmen-vorschau-aktiv.png) no-repeat;
}

/* line 136, ../components/sass/_module_produkte.scss */
#popup_bild {
  display: none;
  max-width: 100%;
}

/* line 141, ../components/sass/_module_produkte.scss */
.produkt-big {
  max-width: 100%;
}

/* line 3, ../components/sass/_module_referenzen.scss */
body.page-galerie #referenz-list li {
  margin: 0;
  border-bottom: 1px solid #eb6b09;
  padding: 20px 20px 20px;
}
/* line 7, ../components/sass/_module_referenzen.scss */
body.page-galerie #referenz-list li img {
  width: 100%;
  height: auto;
  display: block;
}
/* line 12, ../components/sass/_module_referenzen.scss */
body.page-galerie #referenz-list li h2 {
  text-align: center;
}
/* line 15, ../components/sass/_module_referenzen.scss */
body.page-galerie #referenz-list li.first h2 {
  margin-top: 0;
}
@media (min-width: 800px) {
  /* line 3, ../components/sass/_module_referenzen.scss */
  body.page-galerie #referenz-list li {
    border-bottom: none;
    display: none;
  }
  /* line 23, ../components/sass/_module_referenzen.scss */
  body.page-galerie #referenz-list li.first {
    display: block;
  }
}
/* line 37, ../components/sass/_module_referenzen.scss */
body.page-galerie #left {
  display: none;
}
@media (min-width: 800px) {
  /* line 37, ../components/sass/_module_referenzen.scss */
  body.page-galerie #left {
    display: block;
    /*      position: absolute;
          @include span (4 of 12);
          padding-right: 0;*/
    /*      &:after {
            content: '';
            position: absolute;
            top:0;
            width: 10px;
            height: 470px;
            left: 100%;
            margin-left: 10px;
            @include box-shadow($shadow_color 10px 0 9px -10px inset);
          }  */
  }
  /* line 57, ../components/sass/_module_referenzen.scss */
  body.page-galerie #left ul {
    margin: 0;
    padding: 0;
  }
  /* line 62, ../components/sass/_module_referenzen.scss */
  body.page-galerie #left li {
    display: none;
    clear: both;
    overflow: hidden;
    margin: 0 0 0 20px;
    padding: 10px 0;
    cursor: pointer;
  }
  /* line 69, ../components/sass/_module_referenzen.scss */
  body.page-galerie #left li img {
    float: left;
    margin-right: 18px;
    display: block;
    border: 4px solid #9c9d9f;
    -moz-box-shadow: #6a6a6a 0 0 7px;
    -webkit-box-shadow: #6a6a6a 0 0 7px;
    box-shadow: #6a6a6a 0 0 7px;
  }
  /* line 76, ../components/sass/_module_referenzen.scss */
  body.page-galerie #left li.aktiv img {
    border-color: #eb6b09;
  }
  /* line 79, ../components/sass/_module_referenzen.scss */
  body.page-galerie #left li div {
    float: right;
    width: 110px;
    font-size: 13px;
  }
  /* line 85, ../components/sass/_module_referenzen.scss */
  body.page-galerie #left #r-c-prev, body.page-galerie #left #r-c-next {
    cursor: pointer;
    margin: 10px auto;
    width: 19px;
    height: 14px;
  }
  /* line 91, ../components/sass/_module_referenzen.scss */
  body.page-galerie #left #r-c-prev {
    margin-top: 20px;
    background: url(../images/prev-vertical.png);
  }
  /* line 95, ../components/sass/_module_referenzen.scss */
  body.page-galerie #left #r-c-next {
    background: url(../images/next-vertical.png);
  }
  /* line 98, ../components/sass/_module_referenzen.scss */
  body.page-galerie #left .end {
    opacity: 0.5;
  }
}
@media (min-width: 800px) {
  /* line 103, ../components/sass/_module_referenzen.scss */
  body.page-galerie #right {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 66.66667%;
    float: right;
    padding-left: 2.08333%;
    padding-right: 2.08333%;
  }
  /* line 107, ../components/sass/_module_referenzen.scss */
  body.page-galerie #right .referenz-bild {
    border: 5px solid white;
  }
  /* line 109, ../components/sass/_module_referenzen.scss */
  body.page-galerie #right .referenz-bild.loaded {
    border: 5px solid #eb6b09;
    -moz-box-shadow: #6a6a6a 0 0 10px;
    -webkit-box-shadow: #6a6a6a 0 0 10px;
    box-shadow: #6a6a6a 0 0 10px;
  }
  /* line 115, ../components/sass/_module_referenzen.scss */
  body.page-galerie #right ul {
    position: relative;
  }
  /* line 118, ../components/sass/_module_referenzen.scss */
  body.page-galerie #right li {
    top: 0;
    position: absolute;
  }
  /* line 123, ../components/sass/_module_referenzen.scss */
  body.page-galerie #right h2, body.page-galerie #right li.first h2 {
    margin-top: 27px;
    min-height: 100px;
    text-align: left;
  }
}

/* line 4, ../components/sass/_module_pages.scss */
body.page-node-39 #content {
  border-bottom: 1px solid #eb6b09;
}
@media (min-width: 800px) {
  /* line 4, ../components/sass/_module_pages.scss */
  body.page-node-39 #content {
    border-bottom: none;
  }
}
@media (min-width: 800px) {
  /* line 10, ../components/sass/_module_pages.scss */
  body.page-node-39 .field-name-body {
    margin-left: 24px;
    margin-right: 24px;
  }
}
/* line 17, ../components/sass/_module_pages.scss */
body.page-node-39 .footerbox {
  padding-top: 20px;
}
/* line 21, ../components/sass/_module_pages.scss */
body.page-node-39 #serviceboxen {
  display: none;
}
@media (min-width: 800px) {
  /* line 21, ../components/sass/_module_pages.scss */
  body.page-node-39 #serviceboxen {
    display: block;
  }
  /* line 26, ../components/sass/_module_pages.scss */
  body.page-node-39 #serviceboxen > div {
    margin-top: 40px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 33.33333%;
    float: left;
    padding-left: 2.08333%;
    padding-right: 2.08333%;
    text-align: center;
  }
}
/* line 33, ../components/sass/_module_pages.scss */
body.page-node-39 #footerbox1:before {
  content: url("../../../files/Sonderkonstruktion.jpg");
}
/* line 36, ../components/sass/_module_pages.scss */
body.page-node-39 #footerbox2:before {
  content: url("../../../files/Wartung.jpg");
}
/* line 39, ../components/sass/_module_pages.scss */
body.page-node-39 #footerbox3:before {
  content: url("../../../files/Unfallgutachten.jpg");
}
@media (min-width: 550px) {
  /* line 44, ../components/sass/_module_pages.scss */
  body.page-node-39 .footerbox {
    overflow: hidden;
  }
  /* line 46, ../components/sass/_module_pages.scss */
  body.page-node-39 .footerbox > div {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 58.33333%;
    float: right;
    padding-left: 2.08333%;
    padding-right: 2.08333%;
  }
  /* line 49, ../components/sass/_module_pages.scss */
  body.page-node-39 .footerbox h2 {
    margin-top: 0;
  }
}
@media (min-width: 800px) {
  /* line 56, ../components/sass/_module_pages.scss */
  body.page-node-39 #footerbox1:before, body.page-node-39 #footerbox2:before, body.page-node-39 #footerbox3:before {
    content: none;
  }
  /* line 60, ../components/sass/_module_pages.scss */
  body.page-node-39 .footerbox h2 {
    margin-top: 18px;
  }
  /* line 63, ../components/sass/_module_pages.scss */
  body.page-node-39 .footerbox > div {
    margin: 0 13px;
    padding: 0;
    float: none;
    width: 100%;
  }
}

/* line 73, ../components/sass/_module_pages.scss */
#content_header {
  margin-left: -10px;
  margin-right: -10px;
}
/* line 76, ../components/sass/_module_pages.scss */
#content_header img {
  max-width: 715px;
  width: 100%;
}

@media (min-width: 800px) {
  /* line 2, ../components/sass/_module_doppelseiten.scss */
  body.node-type-doppelseite .field-name-field-spaltelinks, body.node-type-doppelseite #left, body.page-galerie .field-name-field-spaltelinks, body.page-galerie #left {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 33.33333%;
    float: left;
    padding-left: 2.08333%;
    padding-right: 2.08333%;
  }
}
/* line 6, ../components/sass/_module_doppelseiten.scss */
body.node-type-doppelseite .field-name-field-spaltelinks .field-items, body.node-type-doppelseite #left .field-items, body.page-galerie .field-name-field-spaltelinks .field-items, body.page-galerie #left .field-items {
  margin-left: 35px;
  margin-right: 35px;
}
@media (min-width: 800px) {
  /* line 6, ../components/sass/_module_doppelseiten.scss */
  body.node-type-doppelseite .field-name-field-spaltelinks .field-items, body.node-type-doppelseite #left .field-items, body.page-galerie .field-name-field-spaltelinks .field-items, body.page-galerie #left .field-items {
    margin-left: 25px;
    margin-right: 25px;
  }
}
@media (min-width: 800px) {
  /* line 15, ../components/sass/_module_doppelseiten.scss */
  body.node-type-doppelseite .field-name-body, body.node-type-doppelseite #right, body.page-galerie .field-name-body, body.page-galerie #right {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 66.66667%;
    float: right;
    padding-left: 2.08333%;
    padding-right: 2.08333%;
  }
}
/* line 19, ../components/sass/_module_doppelseiten.scss */
body.node-type-doppelseite .field-name-body .field-items, body.node-type-doppelseite #right .field-items, body.page-galerie .field-name-body .field-items, body.page-galerie #right .field-items {
  margin-left: 35px;
  margin-right: 35px;
}
@media (min-width: 800px) {
  /* line 24, ../components/sass/_module_doppelseiten.scss */
  body.node-type-doppelseite .field-name-body:before, body.node-type-doppelseite #right:before, body.page-galerie .field-name-body:before, body.page-galerie #right:before {
    content: '';
    position: absolute;
    top: 9px;
    width: 10px;
    height: 100%;
    margin-left: -5px;
    -moz-box-shadow: #6a6a6a 10px 0 9px -10px inset;
    -webkit-box-shadow: #6a6a6a 10px 0 9px -10px inset;
    box-shadow: #6a6a6a 10px 0 9px -10px inset;
  }
}
@media (min-width: 800px) {
  /* line 38, ../components/sass/_module_doppelseiten.scss */
  body.node-type-doppelseite #content, body.page-galerie #content {
    margin-bottom: -10px;
    overflow: hidden;
    *zoom: 1;
  }
}
/* line 43, ../components/sass/_module_doppelseiten.scss */
body.node-type-doppelseite #img_about_us, body.page-galerie #img_about_us {
  margin-left: -10px;
}

/* line 49, ../components/sass/_module_doppelseiten.scss */
body.node-type-doppelseite #content {
  border-bottom: 1px solid #eb6b09;
}
/* line 50, ../components/sass/_module_doppelseiten.scss */
body.node-type-doppelseite #content p {
  font-size: 14px;
  line-height: 18px;
}
@media (min-width: 550px) {
  /* line 57, ../components/sass/_module_doppelseiten.scss */
  body.node-type-doppelseite #content .inner_left {
    margin-top: 30px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 33.33333%;
    float: left;
    padding-left: 2.08333%;
    padding-right: 2.08333%;
  }
  /* line 61, ../components/sass/_module_doppelseiten.scss */
  body.node-type-doppelseite #content .inner_right {
    margin-top: 30px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    float: right;
    padding-left: 2.08333%;
    padding-right: 2.08333%;
  }
}
@media (min-width: 800px) {
  /* line 49, ../components/sass/_module_doppelseiten.scss */
  body.node-type-doppelseite #content {
    border-bottom: none;
  }
  /* line 68, ../components/sass/_module_doppelseiten.scss */
  body.node-type-doppelseite #content .inner_left, body.node-type-doppelseite #content .inner_right {
    margin-top: 0;
    width: 100%;
  }
}

/* line 76, ../components/sass/_module_doppelseiten.scss */
p#p_oeffnungszeiten {
  margin-top: 20px;
}
@media (min-width: 800px) {
  /* line 76, ../components/sass/_module_doppelseiten.scss */
  p#p_oeffnungszeiten {
    margin-top: 60px;
  }
}

/* line 84, ../components/sass/_module_doppelseiten.scss */
body.page-node-37 .field-name-field-spaltelinks {
  font-size: 12px;
}
/* line 88, ../components/sass/_module_doppelseiten.scss */
body.page-node-37 #content p {
  font-size: 12px;
  line-height: 14px;
}

/* line 3, ../components/sass/_module_kontakt.scss */
body.page-contact #content {
  border-bottom: 1px solid #eb6b09;
  overflow: hidden;
}
@media (min-width: 800px) {
  /* line 3, ../components/sass/_module_kontakt.scss */
  body.page-contact #content {
    border-bottom: none;
  }
}
/* line 11, ../components/sass/_module_kontakt.scss */
body.page-contact input, body.page-contact textarea {
  max-width: 100%;
  border: 1px solid #eb6b09;
  box-shadow: 2px 2px 2px #888;
}
/* line 16, ../components/sass/_module_kontakt.scss */
body.page-contact input.form-radio,
body.page-contact input.form-checkbox {
  box-shadow: none;
}
/* line 21, ../components/sass/_module_kontakt.scss */
body.page-contact #edit-submit {
  border: none;
  box-shadow: none;
  margin-bottom: 10px;
}
/* line 27, ../components/sass/_module_kontakt.scss */
body.page-contact #edit-actions {
  text-align: center;
}
/* line 31, ../components/sass/_module_kontakt.scss */
body.page-contact label {
  margin-bottom: 5px;
}
/* line 35, ../components/sass/_module_kontakt.scss */
body.page-contact #kontaktoben {
  width: 100%;
}
/* line 39, ../components/sass/_module_kontakt.scss */
body.page-contact #kontakt_karte {
  width: 100%;
  margin-bottom: 10px;
}
/* line 44, ../components/sass/_module_kontakt.scss */
body.page-contact #kontaktlinks {
  display: none;
}
@media (min-width: 800px) {
  /* line 44, ../components/sass/_module_kontakt.scss */
  body.page-contact #kontaktlinks {
    display: block;
    margin-left: -15px;
  }
}
@media (min-width: 800px) {
  /* line 53, ../components/sass/_module_kontakt.scss */
  body.page-contact p {
    font-size: 14px;
    line-height: 18px;
  }
  /* line 57, ../components/sass/_module_kontakt.scss */
  body.page-contact h3 {
    font-size: 16px;
  }
  /* line 60, ../components/sass/_module_kontakt.scss */
  body.page-contact #kontakt-1r {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 33.33333%;
    float: right;
    padding-left: 2.08333%;
    padding-right: 2.08333%;
  }
  /* line 63, ../components/sass/_module_kontakt.scss */
  body.page-contact #kontakt-1l {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 66.66667%;
    float: left;
    padding-left: 2.08333%;
    padding-right: 2.08333%;
  }
  /* line 66, ../components/sass/_module_kontakt.scss */
  body.page-contact #kontakt-2l {
    clear: both;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 33.33333%;
    float: left;
    padding-left: 2.08333%;
    padding-right: 2.08333%;
  }
  /* line 70, ../components/sass/_module_kontakt.scss */
  body.page-contact #kontakt-2r {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 58.33333%;
    float: right;
    padding-left: 2.08333%;
    padding-right: 2.08333%;
    margin-top: 14px;
    overflow: hidden;
    *zoom: 1;
  }
  /* line 75, ../components/sass/_module_kontakt.scss */
  body.page-contact label {
    display: inline-block;
    width: 150px;
  }
  /* line 79, ../components/sass/_module_kontakt.scss */
  body.page-contact input.form-text {
    width: 50%;
  }
  /* line 83, ../components/sass/_module_kontakt.scss */
  body.page-contact #kontakt-2r > .form-item-kontakt-via > label {
    width: 150px;
    float: left;
  }
  /* line 87, ../components/sass/_module_kontakt.scss */
  body.page-contact #kontakt-2r > .form-item-kontakt-via #edit-kontakt-via {
    width: 150px;
    float: left;
  }
  /* line 90, ../components/sass/_module_kontakt.scss */
  body.page-contact #kontakt-2r > .form-item-kontakt-via #edit-kontakt-via label {
    display: inline;
  }
  /* line 93, ../components/sass/_module_kontakt.scss */
  body.page-contact #kontakt-2r > .form-item-kontakt-via #edit-kontakt-via input {
    vertical-align: baseline;
  }
}
/* line 99, ../components/sass/_module_kontakt.scss */
body.page-contact .color {
  color: #eb6b09;
}

body.page-node-109 strong {
  font-weight: bold;
}
