/***************************************************************
 *
 *  (c) 2017 Christian Jung <c.jung@conception.cc>, conception GmbH
 *
 *   GRID 2017 - NoFlex
 *
 ***************************************************************/
/***************************************************************
 *
 *  (c) 2017 Christian Jung <c.jung@conception.cc>, conception GmbH
 *
 *   Basic Definition of project's grid and base colors
 *
 ***************************************************************/
/* Colors */
/***************************************************************
 *
 *  (c) 2017 Christian Jung <c.jung@conception.cc>, conception GmbH
 *
 *   Collection of global mixins
 *
 ***************************************************************/
/***************************************************************
 *
 *  (c) 2017 Christian Jung <c.jung@conception.cc>, conception GmbH
 *
 *   Import different keyframe animations
 *
 ***************************************************************/
@keyframes shake {
  8%, 41% {
    transform: translateX(-10px); }
  25%, 58% {
    transform: translateX(10px); }
  75% {
    transform: translateX(-5px); }
  92% {
    transform: translateX(5px); }
  0%, 100% {
    transform: translateX(0); } }
/***************************************************************
 *
 *  (c) 2017 Christian Jung <c.jung@conception.cc>, conception GmbH
 *
 *   Atomic Classes for single purposes, often @extended
 *
 ***************************************************************/
.center-block {
  margin-left: auto;
  margin-right: auto; }

.inline {
  display: inline-block; }

.clear:before, .clear:after, .clearfix:before, .clearfix:after {
  content: " ";
  display: table; }
.clear:after, .clearfix:after {
  clear: both; }

.noscroll {
  overflow: hidden; }

.pull-left {
  float: left; }

.pull-right {
  float: right; }

.hide {
  display: none; }

.show {
  display: block; }

.trans-50 {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50); }

.trans-75 {
  opacity: 0.75;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  filter: alpha(opacity=75); }

.trans-85 {
  opacity: 0.85;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
  filter: alpha(opacity=85); }

.static {
  position: static; }

.svg-icon {
  line-height: 100%;
  display: inline-block; }
  .svg-icon svg {
    width: 100%;
    height: auto;
    -webkit-transition: ease fill 0.3s;
    transition: ease fill 0.3s;
    -webkit-transition: transform ease 0.6s;
    transition: transform ease 0.6s; }
  .svg-icon.black svg {
    background-color: transparent;
    fill: transparent; }
    .svg-icon.black svg polygon, .svg-icon.black svg path, .svg-icon.black svg rect, .svg-icon.black svg circle, .svg-icon.black svg line, .svg-icon.black svg polyline {
      stroke: black;
      fill: none; }
    .svg-icon.black svg .fill {
      fill: black; }
  .svg-icon.darkgrey svg {
    background-color: transparent;
    fill: transparent; }
    .svg-icon.darkgrey svg polygon, .svg-icon.darkgrey svg path, .svg-icon.darkgrey svg rect, .svg-icon.darkgrey svg circle, .svg-icon.darkgrey svg line, .svg-icon.darkgrey svg polyline {
      stroke: #333333;
      fill: none; }
    .svg-icon.darkgrey svg .fill {
      fill: #333333; }
  .svg-icon.white svg {
    background-color: transparent;
    fill: transparent; }
    .svg-icon.white svg polygon, .svg-icon.white svg path, .svg-icon.white svg rect, .svg-icon.white svg circle, .svg-icon.white svg line, .svg-icon.white svg polyline {
      stroke: white;
      fill: none; }
    .svg-icon.white svg .fill {
      fill: white; }
  .svg-icon .fill {
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s; }
  .svg-icon svg .no-stroke {
    stroke: none !important; }

.standard-padding {
  padding: 63px 60px 35px 60px; }
  @media (max-width: 1800px) {
    .standard-padding {
      padding: 3rem 3.5rem 2.2rem 3.5rem; } }
  @media (max-width: 1520px) {
    .standard-padding {
      padding: 3rem 2.8rem 2rem 2.8rem; } }
  @media (max-width: 1050px) {
    .standard-padding {
      padding: 2.2rem 2rem 2rem 2rem; } }
  @media (max-width: 760px) {
    .standard-padding {
      padding: 2rem; } }

/***************************************************************
 *
 *  (c) 2017 Christian Jung <c.jung@conception.cc>, conception GmbH
 *
 *   reset-Part, "normalize.css v.4.1.1" + additional custom tweeks
 *
 ***************************************************************/
/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
  overflow: hidden; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  /* 1 */
  display: block; }

/**
 * Add the correct display in IE 9-.
 */
audio,
canvas,
progress,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Add the correct display in IE 10-.
 * 1. Add the correct display in IE.
 */
template,
[hidden] {
  display: none; }

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 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 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * 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; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 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 */ }

/* Forms
   ========================================================================== */
/**
 * 1. Change font properties to `inherit` in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  border: 0; }

/**
 * Restore the font weight unset by the previous rule.
 */
optgroup {
  font-weight: bold; }

/**
 * 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; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: none;
  /* 2 */ }

:focus {
  outline: none; }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: color 9999s ease-out, background-color 9999s ease-out;
  -webkit-transition-delay: 9999s; }

input, select, textarea {
  border-radius: 0;
  border: 0px; }

/**
 * Remove the inner border and padding in Firefox.
 */
:focus,
::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  border: 0;
  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; }

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 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 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
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 and cancel buttons in Chrome and Safari on OS X.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54; }

/**
 * 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 */ }

h1, h2, h3, h4, h5, p {
  margin: 0px;
  padding: 0px; }

ul, ol {
  list-style: none;
  margin: 0px;
  padding: 0px; }

.rangeslider,
.rangeslider__fill {
  display: block;
  -moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px; }

.rangeslider {
  background: #e6e6e6;
  position: relative; }

.rangeslider--horizontal {
  height: 20px;
  width: 100%; }

.rangeslider--vertical {
  width: 20px;
  min-height: 150px;
  max-height: 100%; }

.rangeslider--disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  opacity: 0.4; }

.rangeslider__fill {
  background: #00ff00;
  position: absolute; }

.rangeslider--horizontal .rangeslider__fill {
  top: 0;
  height: 100%; }

.rangeslider--vertical .rangeslider__fill {
  bottom: 0;
  width: 100%; }

.rangeslider__handle {
  background: white;
  border: 1px solid #ccc;
  cursor: pointer;
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4xIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g");
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(0, 0, 0, 0.1)));
  background-image: -moz-linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
  -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%; }

.rangeslider__handle:after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjEzIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==");
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0.13)), color-stop(100%, rgba(255, 255, 255, 0)));
  background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.13), rgba(255, 255, 255, 0));
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.13), rgba(255, 255, 255, 0));
  background-image: linear-gradient(rgba(0, 0, 0, 0.13), rgba(255, 255, 255, 0));
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%; }

.rangeslider__handle:active, .rangeslider--active .rangeslider__handle {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjEiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4xMiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==");
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.12)));
  background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.12));
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.12));
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.12)); }

.rangeslider--horizontal .rangeslider__handle {
  top: -10px;
  touch-action: pan-y;
  -ms-touch-action: pan-y; }

.rangeslider--vertical .rangeslider__handle {
  left: -10px;
  touch-action: pan-x;
  -ms-touch-action: pan-x; }

input[type="range"]:focus + .rangeslider .rangeslider__handle {
  -moz-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
  -webkit-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
  box-shadow: 0 0 8px rgba(255, 0, 255, 0.9); }

/***************************************************************
 *
 *  (c) 2017 Christian Jung <c.jung@conception.cc>, conception GmbH
 *
 *   Standard-Grid by c.jung@conception.cc, generated according to values in _variables.scss
 *
 ***************************************************************/
html {
  font-size: 16px; }

.wrap {
  margin: 0 auto;
  width: 1820px;
  padding-left: 12px;
  padding-right: 12px;
  transition: ease all .5s;
  position: relative; }

.row {
  margin-left: -12px;
  margin-right: -12px;
  position: relative; }
  .row:before, .row:after {
    content: " ";
    display: table; }
  .row:after {
    clear: both; }

.gutter--left {
  margin-left: 12px; }

.gutter--right {
  margin-right: 12px; }

.gutter--top {
  margin-top: 12px; }

.gutter--bottom {
  margin-bottom: 12px; }

.row.no-gutters {
  margin-right: 0;
  margin-left: 0; }
  .row.no-gutters > [class^="col-"], .row.no-gutters > [class*=" col-"] {
    padding-right: 0;
    padding-left: 0; }

.no-padding {
  padding-left: 0;
  padding-right: 0; }

/* Creates columns and makes use of .col-* as class-name, where * is the number of columns to fill */
.col-helper, [class*='col-'] {
  padding-left: 12px;
  padding-right: 12px;
  float: left;
  position: relative; }

.col-1 {
  width: 8.3333333333%; }

.offset-1 {
  margin-left: 8.3333333333%; }

.col-2 {
  width: 16.6666666667%; }

.offset-2 {
  margin-left: 16.6666666667%; }

.col-3 {
  width: 25%; }

.offset-3 {
  margin-left: 25%; }

.col-4 {
  width: 33.3333333333%; }

.offset-4 {
  margin-left: 33.3333333333%; }

.col-5 {
  width: 41.6666666667%; }

.offset-5 {
  margin-left: 41.6666666667%; }

.col-6 {
  width: 50%; }

.offset-6 {
  margin-left: 50%; }

.col-7 {
  width: 58.3333333333%; }

.offset-7 {
  margin-left: 58.3333333333%; }

.col-8 {
  width: 66.6666666667%; }

.offset-8 {
  margin-left: 66.6666666667%; }

.col-9 {
  width: 75%; }

.offset-9 {
  margin-left: 75%; }

.col-10 {
  width: 83.3333333333%; }

.offset-10 {
  margin-left: 83.3333333333%; }

.col-11 {
  width: 91.6666666667%; }

.offset-11 {
  margin-left: 91.6666666667%; }

.col-12 {
  width: 100%; }

.offset-12 {
  margin-left: 100%; }

/* Creates every help and grid class for all breakpoints */
@media (max-width: 4000px) {
  html {
    font-size: 16px; }

  .wrap {
    width: calc(1844px - 24px); }

  .wrap-full-full {
    width: 100vw !important;
    margin: 0;
    padding: 0; }

  .row {
    margin-left: -12px;
    margin-right: -12px; }

  .gutter {
    margin: 12px; }

  .gutter--left {
    margin-left: 12px; }

  .gutter--right {
    margin-right: 12px; }

  .gutter--top {
    margin-top: 12px; }

  .gutter--bottom {
    margin-bottom: 12px; }

  .col-helper, [class*='col-'] {
    padding-left: 12px;
    padding-right: 12px; }

  .hide-full {
    display: none; }

  .show-full {
    display: block; }

  .col-full-1 {
    width: 8.3333333333%; }

  .offset-full-1 {
    margin-left: 8.3333333333%; }

  .col-full-2 {
    width: 16.6666666667%; }

  .offset-full-2 {
    margin-left: 16.6666666667%; }

  .col-full-3 {
    width: 25%; }

  .offset-full-3 {
    margin-left: 25%; }

  .col-full-4 {
    width: 33.3333333333%; }

  .offset-full-4 {
    margin-left: 33.3333333333%; }

  .col-full-5 {
    width: 41.6666666667%; }

  .offset-full-5 {
    margin-left: 41.6666666667%; }

  .col-full-6 {
    width: 50%; }

  .offset-full-6 {
    margin-left: 50%; }

  .col-full-7 {
    width: 58.3333333333%; }

  .offset-full-7 {
    margin-left: 58.3333333333%; }

  .col-full-8 {
    width: 66.6666666667%; }

  .offset-full-8 {
    margin-left: 66.6666666667%; }

  .col-full-9 {
    width: 75%; }

  .offset-full-9 {
    margin-left: 75%; }

  .col-full-10 {
    width: 83.3333333333%; }

  .offset-full-10 {
    margin-left: 83.3333333333%; }

  .col-full-11 {
    width: 91.6666666667%; }

  .offset-full-11 {
    margin-left: 91.6666666667%; }

  .col-full-12 {
    width: 100%; }

  .offset-full-12 {
    margin-left: 100%; }

  .offset-full-0 {
    margin-left: 0; } }
@media (max-width: 1800px) {
  html {
    font-size: 16px; }

  .wrap {
    width: calc(1650px - 24px); }

  .wrap-desktop-large-full {
    width: 100vw !important;
    margin: 0;
    padding: 0; }

  .row {
    margin-left: -12px;
    margin-right: -12px; }

  .gutter {
    margin: 12px; }

  .gutter--left {
    margin-left: 12px; }

  .gutter--right {
    margin-right: 12px; }

  .gutter--top {
    margin-top: 12px; }

  .gutter--bottom {
    margin-bottom: 12px; }

  .col-helper, [class*='col-'] {
    padding-left: 12px;
    padding-right: 12px; }

  .hide-desktop-large {
    display: none; }

  .show-desktop-large {
    display: block; }

  .col-desktop-large-1 {
    width: 8.3333333333%; }

  .offset-desktop-large-1 {
    margin-left: 8.3333333333%; }

  .col-desktop-large-2 {
    width: 16.6666666667%; }

  .offset-desktop-large-2 {
    margin-left: 16.6666666667%; }

  .col-desktop-large-3 {
    width: 25%; }

  .offset-desktop-large-3 {
    margin-left: 25%; }

  .col-desktop-large-4 {
    width: 33.3333333333%; }

  .offset-desktop-large-4 {
    margin-left: 33.3333333333%; }

  .col-desktop-large-5 {
    width: 41.6666666667%; }

  .offset-desktop-large-5 {
    margin-left: 41.6666666667%; }

  .col-desktop-large-6 {
    width: 50%; }

  .offset-desktop-large-6 {
    margin-left: 50%; }

  .col-desktop-large-7 {
    width: 58.3333333333%; }

  .offset-desktop-large-7 {
    margin-left: 58.3333333333%; }

  .col-desktop-large-8 {
    width: 66.6666666667%; }

  .offset-desktop-large-8 {
    margin-left: 66.6666666667%; }

  .col-desktop-large-9 {
    width: 75%; }

  .offset-desktop-large-9 {
    margin-left: 75%; }

  .col-desktop-large-10 {
    width: 83.3333333333%; }

  .offset-desktop-large-10 {
    margin-left: 83.3333333333%; }

  .col-desktop-large-11 {
    width: 91.6666666667%; }

  .offset-desktop-large-11 {
    margin-left: 91.6666666667%; }

  .col-desktop-large-12 {
    width: 100%; }

  .offset-desktop-large-12 {
    margin-left: 100%; }

  .offset-desktop-large-0 {
    margin-left: 0; } }
@media (max-width: 1680px) {
  html {
    font-size: 16px; }

  .wrap {
    width: calc(1540px - 24px); }

  .wrap-desktop-medium-full {
    width: 100vw !important;
    margin: 0;
    padding: 0; }

  .row {
    margin-left: -12px;
    margin-right: -12px; }

  .gutter {
    margin: 12px; }

  .gutter--left {
    margin-left: 12px; }

  .gutter--right {
    margin-right: 12px; }

  .gutter--top {
    margin-top: 12px; }

  .gutter--bottom {
    margin-bottom: 12px; }

  .col-helper, [class*='col-'] {
    padding-left: 12px;
    padding-right: 12px; }

  .hide-desktop-medium {
    display: none; }

  .show-desktop-medium {
    display: block; }

  .col-desktop-medium-1 {
    width: 8.3333333333%; }

  .offset-desktop-medium-1 {
    margin-left: 8.3333333333%; }

  .col-desktop-medium-2 {
    width: 16.6666666667%; }

  .offset-desktop-medium-2 {
    margin-left: 16.6666666667%; }

  .col-desktop-medium-3 {
    width: 25%; }

  .offset-desktop-medium-3 {
    margin-left: 25%; }

  .col-desktop-medium-4 {
    width: 33.3333333333%; }

  .offset-desktop-medium-4 {
    margin-left: 33.3333333333%; }

  .col-desktop-medium-5 {
    width: 41.6666666667%; }

  .offset-desktop-medium-5 {
    margin-left: 41.6666666667%; }

  .col-desktop-medium-6 {
    width: 50%; }

  .offset-desktop-medium-6 {
    margin-left: 50%; }

  .col-desktop-medium-7 {
    width: 58.3333333333%; }

  .offset-desktop-medium-7 {
    margin-left: 58.3333333333%; }

  .col-desktop-medium-8 {
    width: 66.6666666667%; }

  .offset-desktop-medium-8 {
    margin-left: 66.6666666667%; }

  .col-desktop-medium-9 {
    width: 75%; }

  .offset-desktop-medium-9 {
    margin-left: 75%; }

  .col-desktop-medium-10 {
    width: 83.3333333333%; }

  .offset-desktop-medium-10 {
    margin-left: 83.3333333333%; }

  .col-desktop-medium-11 {
    width: 91.6666666667%; }

  .offset-desktop-medium-11 {
    margin-left: 91.6666666667%; }

  .col-desktop-medium-12 {
    width: 100%; }

  .offset-desktop-medium-12 {
    margin-left: 100%; }

  .offset-desktop-medium-0 {
    margin-left: 0; } }
@media (max-width: 1520px) {
  html {
    font-size: 16px; }

  .wrap {
    width: calc(1380px - 24px); }

  .wrap-desktop-small-full {
    width: 100vw !important;
    margin: 0;
    padding: 0; }

  .row {
    margin-left: -12px;
    margin-right: -12px; }

  .gutter {
    margin: 12px; }

  .gutter--left {
    margin-left: 12px; }

  .gutter--right {
    margin-right: 12px; }

  .gutter--top {
    margin-top: 12px; }

  .gutter--bottom {
    margin-bottom: 12px; }

  .col-helper, [class*='col-'] {
    padding-left: 12px;
    padding-right: 12px; }

  .hide-desktop-small {
    display: none; }

  .show-desktop-small {
    display: block; }

  .col-desktop-small-1 {
    width: 8.3333333333%; }

  .offset-desktop-small-1 {
    margin-left: 8.3333333333%; }

  .col-desktop-small-2 {
    width: 16.6666666667%; }

  .offset-desktop-small-2 {
    margin-left: 16.6666666667%; }

  .col-desktop-small-3 {
    width: 25%; }

  .offset-desktop-small-3 {
    margin-left: 25%; }

  .col-desktop-small-4 {
    width: 33.3333333333%; }

  .offset-desktop-small-4 {
    margin-left: 33.3333333333%; }

  .col-desktop-small-5 {
    width: 41.6666666667%; }

  .offset-desktop-small-5 {
    margin-left: 41.6666666667%; }

  .col-desktop-small-6 {
    width: 50%; }

  .offset-desktop-small-6 {
    margin-left: 50%; }

  .col-desktop-small-7 {
    width: 58.3333333333%; }

  .offset-desktop-small-7 {
    margin-left: 58.3333333333%; }

  .col-desktop-small-8 {
    width: 66.6666666667%; }

  .offset-desktop-small-8 {
    margin-left: 66.6666666667%; }

  .col-desktop-small-9 {
    width: 75%; }

  .offset-desktop-small-9 {
    margin-left: 75%; }

  .col-desktop-small-10 {
    width: 83.3333333333%; }

  .offset-desktop-small-10 {
    margin-left: 83.3333333333%; }

  .col-desktop-small-11 {
    width: 91.6666666667%; }

  .offset-desktop-small-11 {
    margin-left: 91.6666666667%; }

  .col-desktop-small-12 {
    width: 100%; }

  .offset-desktop-small-12 {
    margin-left: 100%; }

  .offset-desktop-small-0 {
    margin-left: 0; } }
@media (max-width: 1390px) {
  html {
    font-size: 14px; }

  .wrap {
    width: calc(1300px - 24px); }

  .wrap-desktop-smallest-full {
    width: 100vw !important;
    margin: 0;
    padding: 0; }

  .row {
    margin-left: -12px;
    margin-right: -12px; }

  .gutter {
    margin: 12px; }

  .gutter--left {
    margin-left: 12px; }

  .gutter--right {
    margin-right: 12px; }

  .gutter--top {
    margin-top: 12px; }

  .gutter--bottom {
    margin-bottom: 12px; }

  .col-helper, [class*='col-'] {
    padding-left: 12px;
    padding-right: 12px; }

  .hide-desktop-smallest {
    display: none; }

  .show-desktop-smallest {
    display: block; }

  .col-desktop-smallest-1 {
    width: 8.3333333333%; }

  .offset-desktop-smallest-1 {
    margin-left: 8.3333333333%; }

  .col-desktop-smallest-2 {
    width: 16.6666666667%; }

  .offset-desktop-smallest-2 {
    margin-left: 16.6666666667%; }

  .col-desktop-smallest-3 {
    width: 25%; }

  .offset-desktop-smallest-3 {
    margin-left: 25%; }

  .col-desktop-smallest-4 {
    width: 33.3333333333%; }

  .offset-desktop-smallest-4 {
    margin-left: 33.3333333333%; }

  .col-desktop-smallest-5 {
    width: 41.6666666667%; }

  .offset-desktop-smallest-5 {
    margin-left: 41.6666666667%; }

  .col-desktop-smallest-6 {
    width: 50%; }

  .offset-desktop-smallest-6 {
    margin-left: 50%; }

  .col-desktop-smallest-7 {
    width: 58.3333333333%; }

  .offset-desktop-smallest-7 {
    margin-left: 58.3333333333%; }

  .col-desktop-smallest-8 {
    width: 66.6666666667%; }

  .offset-desktop-smallest-8 {
    margin-left: 66.6666666667%; }

  .col-desktop-smallest-9 {
    width: 75%; }

  .offset-desktop-smallest-9 {
    margin-left: 75%; }

  .col-desktop-smallest-10 {
    width: 83.3333333333%; }

  .offset-desktop-smallest-10 {
    margin-left: 83.3333333333%; }

  .col-desktop-smallest-11 {
    width: 91.6666666667%; }

  .offset-desktop-smallest-11 {
    margin-left: 91.6666666667%; }

  .col-desktop-smallest-12 {
    width: 100%; }

  .offset-desktop-smallest-12 {
    margin-left: 100%; }

  .offset-desktop-smallest-0 {
    margin-left: 0; } }
@media (max-width: 1050px) {
  html {
    font-size: 14px; }

  .wrap {
    width: calc(1000px - 20px); }

  .wrap-ipad-landscape-full {
    width: 100vw !important;
    margin: 0;
    padding: 0; }

  .row {
    margin-left: -10px;
    margin-right: -10px; }

  .gutter {
    margin: 10px; }

  .gutter--left {
    margin-left: 10px; }

  .gutter--right {
    margin-right: 10px; }

  .gutter--top {
    margin-top: 10px; }

  .gutter--bottom {
    margin-bottom: 10px; }

  .col-helper, [class*='col-'] {
    padding-left: 10px;
    padding-right: 10px; }

  .hide-ipad-landscape {
    display: none; }

  .show-ipad-landscape {
    display: block; }

  .col-ipad-landscape-1 {
    width: 8.3333333333%; }

  .offset-ipad-landscape-1 {
    margin-left: 8.3333333333%; }

  .col-ipad-landscape-2 {
    width: 16.6666666667%; }

  .offset-ipad-landscape-2 {
    margin-left: 16.6666666667%; }

  .col-ipad-landscape-3 {
    width: 25%; }

  .offset-ipad-landscape-3 {
    margin-left: 25%; }

  .col-ipad-landscape-4 {
    width: 33.3333333333%; }

  .offset-ipad-landscape-4 {
    margin-left: 33.3333333333%; }

  .col-ipad-landscape-5 {
    width: 41.6666666667%; }

  .offset-ipad-landscape-5 {
    margin-left: 41.6666666667%; }

  .col-ipad-landscape-6 {
    width: 50%; }

  .offset-ipad-landscape-6 {
    margin-left: 50%; }

  .col-ipad-landscape-7 {
    width: 58.3333333333%; }

  .offset-ipad-landscape-7 {
    margin-left: 58.3333333333%; }

  .col-ipad-landscape-8 {
    width: 66.6666666667%; }

  .offset-ipad-landscape-8 {
    margin-left: 66.6666666667%; }

  .col-ipad-landscape-9 {
    width: 75%; }

  .offset-ipad-landscape-9 {
    margin-left: 75%; }

  .col-ipad-landscape-10 {
    width: 83.3333333333%; }

  .offset-ipad-landscape-10 {
    margin-left: 83.3333333333%; }

  .col-ipad-landscape-11 {
    width: 91.6666666667%; }

  .offset-ipad-landscape-11 {
    margin-left: 91.6666666667%; }

  .col-ipad-landscape-12 {
    width: 100%; }

  .offset-ipad-landscape-12 {
    margin-left: 100%; }

  .offset-ipad-landscape-0 {
    margin-left: 0; } }
@media (max-width: 1020px) {
  html {
    font-size: 14px; }

  .wrap {
    width: calc(760px - 20px); }

  .wrap-ipad-portrait-full {
    width: 100vw !important;
    margin: 0;
    padding: 0; }

  .row {
    margin-left: -10px;
    margin-right: -10px; }

  .gutter {
    margin: 10px; }

  .gutter--left {
    margin-left: 10px; }

  .gutter--right {
    margin-right: 10px; }

  .gutter--top {
    margin-top: 10px; }

  .gutter--bottom {
    margin-bottom: 10px; }

  .col-helper, [class*='col-'] {
    padding-left: 10px;
    padding-right: 10px; }

  .hide-ipad-portrait {
    display: none; }

  .show-ipad-portrait {
    display: block; }

  .col-ipad-portrait-1 {
    width: 8.3333333333%; }

  .offset-ipad-portrait-1 {
    margin-left: 8.3333333333%; }

  .col-ipad-portrait-2 {
    width: 16.6666666667%; }

  .offset-ipad-portrait-2 {
    margin-left: 16.6666666667%; }

  .col-ipad-portrait-3 {
    width: 25%; }

  .offset-ipad-portrait-3 {
    margin-left: 25%; }

  .col-ipad-portrait-4 {
    width: 33.3333333333%; }

  .offset-ipad-portrait-4 {
    margin-left: 33.3333333333%; }

  .col-ipad-portrait-5 {
    width: 41.6666666667%; }

  .offset-ipad-portrait-5 {
    margin-left: 41.6666666667%; }

  .col-ipad-portrait-6 {
    width: 50%; }

  .offset-ipad-portrait-6 {
    margin-left: 50%; }

  .col-ipad-portrait-7 {
    width: 58.3333333333%; }

  .offset-ipad-portrait-7 {
    margin-left: 58.3333333333%; }

  .col-ipad-portrait-8 {
    width: 66.6666666667%; }

  .offset-ipad-portrait-8 {
    margin-left: 66.6666666667%; }

  .col-ipad-portrait-9 {
    width: 75%; }

  .offset-ipad-portrait-9 {
    margin-left: 75%; }

  .col-ipad-portrait-10 {
    width: 83.3333333333%; }

  .offset-ipad-portrait-10 {
    margin-left: 83.3333333333%; }

  .col-ipad-portrait-11 {
    width: 91.6666666667%; }

  .offset-ipad-portrait-11 {
    margin-left: 91.6666666667%; }

  .col-ipad-portrait-12 {
    width: 100%; }

  .offset-ipad-portrait-12 {
    margin-left: 100%; }

  .offset-ipad-portrait-0 {
    margin-left: 0; } }
@media (max-width: 760px) {
  html {
    font-size: 14px; }

  .wrap {
    width: calc(98% - 12px); }

  .wrap-mobile-full {
    width: 100vw !important;
    margin: 0;
    padding: 0; }

  .row {
    margin-left: -6px;
    margin-right: -6px; }

  .gutter {
    margin: 6px; }

  .gutter--left {
    margin-left: 6px; }

  .gutter--right {
    margin-right: 6px; }

  .gutter--top {
    margin-top: 6px; }

  .gutter--bottom {
    margin-bottom: 6px; }

  .col-helper, [class*='col-'] {
    padding-left: 6px;
    padding-right: 6px; }

  .hide-mobile {
    display: none; }

  .show-mobile {
    display: block; }

  .col-mobile-1 {
    width: 8.3333333333%; }

  .offset-mobile-1 {
    margin-left: 8.3333333333%; }

  .col-mobile-2 {
    width: 16.6666666667%; }

  .offset-mobile-2 {
    margin-left: 16.6666666667%; }

  .col-mobile-3 {
    width: 25%; }

  .offset-mobile-3 {
    margin-left: 25%; }

  .col-mobile-4 {
    width: 33.3333333333%; }

  .offset-mobile-4 {
    margin-left: 33.3333333333%; }

  .col-mobile-5 {
    width: 41.6666666667%; }

  .offset-mobile-5 {
    margin-left: 41.6666666667%; }

  .col-mobile-6 {
    width: 50%; }

  .offset-mobile-6 {
    margin-left: 50%; }

  .col-mobile-7 {
    width: 58.3333333333%; }

  .offset-mobile-7 {
    margin-left: 58.3333333333%; }

  .col-mobile-8 {
    width: 66.6666666667%; }

  .offset-mobile-8 {
    margin-left: 66.6666666667%; }

  .col-mobile-9 {
    width: 75%; }

  .offset-mobile-9 {
    margin-left: 75%; }

  .col-mobile-10 {
    width: 83.3333333333%; }

  .offset-mobile-10 {
    margin-left: 83.3333333333%; }

  .col-mobile-11 {
    width: 91.6666666667%; }

  .offset-mobile-11 {
    margin-left: 91.6666666667%; }

  .col-mobile-12 {
    width: 100%; }

  .offset-mobile-12 {
    margin-left: 100%; }

  .offset-mobile-0 {
    margin-left: 0; } }
@media (max-width: 330px) {
  html {
    font-size: 14px; }

  .wrap {
    width: calc(100% - 12px); }

  .wrap-mobile-small-full {
    width: 100vw !important;
    margin: 0;
    padding: 0; }

  .row {
    margin-left: -6px;
    margin-right: -6px; }

  .gutter {
    margin: 6px; }

  .gutter--left {
    margin-left: 6px; }

  .gutter--right {
    margin-right: 6px; }

  .gutter--top {
    margin-top: 6px; }

  .gutter--bottom {
    margin-bottom: 6px; }

  .col-helper, [class*='col-'] {
    padding-left: 6px;
    padding-right: 6px; }

  .hide-mobile-small {
    display: none; }

  .show-mobile-small {
    display: block; }

  .col-mobile-small-1 {
    width: 8.3333333333%; }

  .offset-mobile-small-1 {
    margin-left: 8.3333333333%; }

  .col-mobile-small-2 {
    width: 16.6666666667%; }

  .offset-mobile-small-2 {
    margin-left: 16.6666666667%; }

  .col-mobile-small-3 {
    width: 25%; }

  .offset-mobile-small-3 {
    margin-left: 25%; }

  .col-mobile-small-4 {
    width: 33.3333333333%; }

  .offset-mobile-small-4 {
    margin-left: 33.3333333333%; }

  .col-mobile-small-5 {
    width: 41.6666666667%; }

  .offset-mobile-small-5 {
    margin-left: 41.6666666667%; }

  .col-mobile-small-6 {
    width: 50%; }

  .offset-mobile-small-6 {
    margin-left: 50%; }

  .col-mobile-small-7 {
    width: 58.3333333333%; }

  .offset-mobile-small-7 {
    margin-left: 58.3333333333%; }

  .col-mobile-small-8 {
    width: 66.6666666667%; }

  .offset-mobile-small-8 {
    margin-left: 66.6666666667%; }

  .col-mobile-small-9 {
    width: 75%; }

  .offset-mobile-small-9 {
    margin-left: 75%; }

  .col-mobile-small-10 {
    width: 83.3333333333%; }

  .offset-mobile-small-10 {
    margin-left: 83.3333333333%; }

  .col-mobile-small-11 {
    width: 91.6666666667%; }

  .offset-mobile-small-11 {
    margin-left: 91.6666666667%; }

  .col-mobile-small-12 {
    width: 100%; }

  .offset-mobile-small-12 {
    margin-left: 100%; }

  .offset-mobile-small-0 {
    margin-left: 0; } }
/***************************************************************
 *
 *  (c) 2017 Christian Jung <c.jung@conception.cc>, conception GmbH
 *
 *   Basic font definition & typography for standard-selectors like headlines and paragraphs
 *
 ***************************************************************/
.regular, * {
  font-family: 'HelveticaNeueLt', Helvetica; }

.bold, h1, .like-h1 {
  font-family: 'HelveticaNeueMd', Helvetica; }

h1, .like-h1 {
  color: #fff;
  background-color: #bb2b39; }

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

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

.uppercase {
  text-transform: uppercase; }

/***************************************************************
 *
 *  (c) 2017 Christian Jung <c.jung@conception.cc>, conception GmbH
 *
 *   Standalone components like buttons and teaser
 *
 ***************************************************************/
html {
  background-color: #EFEFEF; }

#menu-overlay {
  position: absolute;
  height: 0;
  padding-top: 56.25%;
  width: 100%;
  background-size: contain !important; }
  #menu-overlay.video-playing {
    background: transparent none !important; }

audio {
  z-index: 15;
  position: absolute;
  right: 7rem;
  top: 3rem; }

img, h2.finish-text {
  display: none; }

img.finish-text {
  margin-top: 20%;
  flex-shrink: 0; }

h1 {
  text-align: center;
  margin: 0 auto; }

video, img {
  width: 100% !important;
  height: auto !important;
  pointer-events: none; }

#hammer-first-reverse, #hammer-second-reverse, #hammer-third-reverse,
#wrench-first-reverse, #wrench-second-reverse, #wrench-third-reverse {
  z-index: 4 !important;
  min-width: 100% !important; }

body.loading.step3 .on-demand-media.active, body.loading.step4 .on-demand-media.active {
  opacity: 0;
  -webkit-transition: opacity 2s;
  /* Safari */
  transition: opacity 2s; }

.on-demand-media#drill-only-reel, .on-demand-media#drill-hole-reel, .on-demand-media#hammer-first-reel, .on-demand-media#hammer-second-reel, .on-demand-media#hammer-third-reel, .on-demand-media#hammer-first-reverse, .on-demand-media#hammer-second-reverse, .on-demand-media#hammer-third-reverse, .on-demand-media#wrench-first-reel, .on-demand-media#wrench-second-reel, .on-demand-media#wrench-third-reel, .on-demand-media#wrench-first-reverse, .on-demand-media#wrench-second-reverse, .on-demand-media#wrench-third-reverse, .on-demand-media#wrench-first-closeup-reel, .on-demand-media#wrench-second-closeup-reel, .on-demand-media#wrench-third-closeup-reel {
  z-index: 5;
  display: none;
  height: auto !important;
  width: auto !important; }
.on-demand-media.active {
  display: block !important; }
.on-demand-media.active + .hole {
  display: block !important; }
.on-demand-media#drill-hole-reel {
  z-index: 4; }

.outdoor .step1 #menu-overlay {
  background: transparent url("../../outdoor/img/still_frames/bg_step1.jpg"); }
.outdoor .step2 #menu-overlay {
  background: transparent url("../../outdoor/img/still_frames/bg_step2.jpg"); }
.outdoor .step2.pump-bg #menu-overlay {
  background: transparent url("../../outdoor/img/still_frames/bg_step2_b.jpg"); }
.outdoor .step2.finished #menu-overlay {
  background: transparent url("../../outdoor/img/still_frames/step2_overlay_finished.jpg"); }
.outdoor .step2.finished .wrapper {
  display: none !important; }
.outdoor .step3 #menu-overlay {
  background: transparent url("../../outdoor/img/still_frames/bg_step3.jpg"); }
.outdoor .step3.loading #menu-overlay {
  background: transparent url("../../outdoor/img/still_frames/bg_step3_preload.jpg"); }
.outdoor .step4 #menu-overlay {
  background: transparent url("../../outdoor/img/still_frames/bg_step4.jpg"); }
.outdoor .step4.loading #menu-overlay {
  background: transparent url("../../outdoor/img/still_frames/bg_step4_preload.jpg"); }

.indoor .step1 #menu-overlay {
  background: transparent url("../../indoor/img/still_frames/bg_step1.jpg"); }
.indoor .step2 #menu-overlay {
  background: transparent url("../../indoor/img/still_frames/bg_step2.jpg"); }
.indoor .step2.pump-bg #menu-overlay {
  background: transparent url("../../indoor/img/still_frames/bg_step2_b.jpg"); }
.indoor .step2.finished #menu-overlay {
  background: transparent url("../../indoor/img/still_frames/step2_overlay_finished.jpg"); }
.indoor .step2.finished .wrapper {
  display: none !important; }
.indoor .step3 #menu-overlay {
  background: transparent url("../../indoor/img/still_frames/bg_step3.jpg"); }
.indoor .step3.loading #menu-overlay {
  background: transparent url("../../indoor/img/still_frames/bg_step3_preload.jpg"); }
.indoor .step4 #menu-overlay {
  background: transparent url("../../indoor/img/still_frames/bg_step4.jpg"); }
.indoor .step4.loading #menu-overlay {
  background: transparent url("../../indoor/img/still_frames/bg_step4_preload.jpg"); }

.intro .jump-to-steps, .intro .info-box {
  display: none; }

.step1 .counter-wrap.drill {
  display: block; }
.step1 .ui-underground.drill {
  display: flex; }
.step1 .info-box .text.step-1 {
  display: block; }

/**
  PUMP
 */
.step2 .ui-underground.pump {
  display: flex; }
  .step2 .ui-underground.pump .brushing.wrapper {
    margin-top: 40px; }
  .step2 .ui-underground.pump .wrapper {
    background: #fff;
    margin: 0;
    margin-bottom: 20px;
    padding: 1rem;
    text-align: right;
    display: flex;
    flex-direction: row;
    justify-content: space-between; }
    .step2 .ui-underground.pump .wrapper div.numbers {
      width: 50%;
      float: left;
      margin-top: 20px;
      text-align: center; }
      .step2 .ui-underground.pump .wrapper div.numbers .amount {
        font-size: 60px; }
    .step2 .ui-underground.pump .wrapper .button {
      margin: 0;
      width: 120px;
      text-align: center; }
.step2 .info-box .text.step-2 {
  display: block; }

/**
  HAMMER
 */
.step3 .counter-wrap.hammer {
  display: block; }
.step3 .ui-underground.hammer, .step3 #plate-overlay-step3 {
  display: flex; }
.step3.finished img#step3-finished {
  display: block; }
.step3.finished .wrapper {
  display: none; }
.step3 .info-box .text.step-3 {
  display: block; }

/**
  WRENCH
 */
.step4 .counter-wrap.wrench {
  display: block; }
.step4 #plate-overlay-step4, .step4 .ui-underground.wrench {
  display: block; }
.step4 .ui-underground.wrench input[type='range'] {
  margin-top: 60%; }
.step4.finished img#step4-finished, .step4.finished #wrench-third-closeup-reel {
  display: block; }
.step4 .info-box .text.step-4 {
  display: block; }
.step4 .info-box {
  bottom: 48px;
  left: 357px; }

body.finished .finish-text {
  display: block; }
body.finished h2.initial, body.finished .ui-underground input[type='range'], body.finished .counter-wrap {
  display: none; }

.video-playing .button-start, .video-playing .reel-later, .video-playing .misc-image, .video-playing h1, .video-playing .finished-overlay, .video-playing .counter-wrap {
  display: none !important; }

body {
  padding-top: 0; }

.menu-overlay {
  position: absolute;
  z-index: 60;
  top: 24px;
  bottom: 24px;
  right: 24px;
  display: none;
  left: 24px;
  background: #fff; }
  .menu-overlay.open {
    display: block; }
  .menu-overlay .head-part {
    background: #f9f9f9;
    text-align: center;
    padding: 34px 0; }
    .menu-overlay .head-part .close-wrap {
      position: absolute;
      right: 24px;
      top: 24px;
      cursor: pointer; }
      .menu-overlay .head-part .close-wrap:hover span {
        background-color: #a0a0a0; }
      .menu-overlay .head-part .close-wrap span {
        background: #d7d7d7 url("../img/icons/cross.png") center center no-repeat;
        height: 50px;
        width: 50px;
        display: inline-block; }
      .menu-overlay .head-part .close-wrap p {
        display: inline-block;
        position: relative;
        bottom: 20px;
        margin-right: 15px; }
  .menu-overlay .content-wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding-top: 5vh;
    width: 70%;
    margin: 0 auto; }
    .menu-overlay .content-wrap .application-tile {
      width: 30%;
      margin: 0 15px;
      flex: 1 0 auto;
      border: 1px solid #EFEFEF;
      position: relative; }
      .menu-overlay .content-wrap .application-tile .text-holder {
        padding: 25px 25px 125px; }
      .menu-overlay .content-wrap .application-tile h3 {
        font-size: 20px;
        margin-bottom: 10px; }
      .menu-overlay .content-wrap .application-tile p {
        font-size: 16px;
        line-height: 1.3; }
      .menu-overlay .content-wrap .application-tile .button {
        position: absolute;
        left: 25px;
        bottom: 25px; }
        .menu-overlay .content-wrap .application-tile .button.adjust-right {
          left: auto;
          right: 25px; }
      .menu-overlay .content-wrap .application-tile img {
        display: block; }

.counter-wrap-alt {
  text-align: center; }
  .counter-wrap-alt .decimals {
    font-size: 40px; }

.counter-wrap {
  position: absolute;
  bottom: 15%;
  right: 40%;
  min-width: 150px;
  display: none; }
  .counter-wrap .counter-element {
    background-color: rgba(255, 255, 255, 0.4);
    color: rgba(0, 0, 0, 0.9);
    text-align: center;
    padding: 0.5rem 2rem;
    width: 100%; }
    .counter-wrap .counter-element .decimals {
      font-size: 6rem;
      display: block;
      line-height: 5rem;
      font-weight: bold; }
  .counter-wrap.wrench {
    right: 29%;
    bottom: 25%; }

nav {
  z-index: 10;
  position: absolute;
  height: 0;
  padding-top: 56.25%;
  width: 100%; }
  nav .button-start {
    display: block;
    margin: 0 auto; }
  nav .jump-to-steps {
    position: absolute;
    bottom: 48px;
    left: 48px; }
    nav .jump-to-steps button {
      display: inline-block;
      margin-right: 3px; }

.info-box {
  background: #bb2b39;
  padding: 10px;
  position: absolute;
  left: 48px;
  height: 140px;
  bottom: 135px;
  width: 302px;
  opacity: 0.9; }
  .info-box p + p {
    margin-top: 0; }
  .info-box .text {
    color: #fff;
    display: none; }

video {
  display: none; }
  video .playing {
    display: block; }

.absolute, .on-demand-media#drill-only-reel, .on-demand-media#drill-hole-reel, .on-demand-media#hammer-first-reel, .on-demand-media#hammer-second-reel, .on-demand-media#hammer-third-reel, .on-demand-media#hammer-first-reverse, .on-demand-media#hammer-second-reverse, .on-demand-media#hammer-third-reverse, .on-demand-media#wrench-first-reel, .on-demand-media#wrench-second-reel, .on-demand-media#wrench-third-reel, .on-demand-media#wrench-first-reverse, .on-demand-media#wrench-second-reverse, .on-demand-media#wrench-third-reverse, .on-demand-media#wrench-first-closeup-reel, .on-demand-media#wrench-second-closeup-reel, .on-demand-media#wrench-third-closeup-reel, video, .misc-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.ui-underground {
  position: absolute;
  top: 24px;
  right: 24px;
  bottom: 24px;
  width: 25vw;
  max-width: 400px;
  padding: 6rem 2rem 2rem;
  background-color: rgba(255, 255, 255, 0.9);
  display: none;
  flex-direction: column; }

.misc-image {
  display: none; }
  .misc-image.frame {
    display: block !important;
    z-index: 20; }

@media (min-aspect-ratio: 16 / 9) {
  #menu-overlay, nav {
    width: auto;
    height: auto;
    padding-top: 0; } }
@media (max-aspect-ratio: 16 / 9), (aspect-ratio: 16 / 9) {
  #menu-overlay, nav {
    width: 100vw;
    height: 56.25vw; }

  .intro .start-wrap {
    margin-top: -40%; } }
.btn.menu {
  z-index: 50;
  color: #fff;
  background: #323232;
  display: inline-block;
  padding: 12px;
  position: absolute;
  text-align: right;
  cursor: pointer;
  right: 48px;
  top: 48px;
  font-size: 0;
  width: 50px;
  height: 50px; }
  .btn.menu span {
    position: relative;
    margin-top: 6px;
    margin-bottom: 6px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block !important;
    margin: 0; }
    .btn.menu span, .btn.menu span::before, .btn.menu span::after {
      display: block;
      width: 25px;
      height: 1px;
      background-color: #fff;
      outline: 1px solid transparent;
      -webkit-transition-property: background-color, -webkit-transform;
      -moz-transition-property: background-color, -moz-transform;
      -o-transition-property: background-color, -o-transform;
      transition-property: background-color, transform;
      -webkit-transition-duration: 0.3s;
      -moz-transition-duration: 0.3s;
      -o-transition-duration: 0.3s;
      transition-duration: 0.3s; }
    .btn.menu span::before, .btn.menu span::after {
      position: absolute;
      content: ""; }
    .btn.menu span::before {
      top: -6px; }
    .btn.menu span::after {
      top: 6px; }
  .btn.menu:hover {
    background-color: #a0a0a0; }

.border-left {
  position: absolute;
  z-index: 990;
  display: block;
  left: 24px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: #fff; }

.border-top {
  position: absolute;
  z-index: 990;
  display: block;
  top: 24px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: #fff; }

.border-right {
  position: absolute;
  z-index: 990;
  display: block;
  right: 24px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: #fff; }

.border-bottom {
  position: absolute;
  z-index: 990;
  display: block;
  bottom: 24px;
  right: 24px;
  left: 24px;
  height: 1px;
  background: #fff; }

.loadscreen-overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 500; }
  .loadscreen-overlay h2 {
    text-align: center;
    position: relative;
    top: 45%; }

button.square {
  opacity: 0.85;
  width: 70px;
  height: 70px; }
  button.square.active, button.square:hover {
    background-color: #bb2b39; }

.btn.btn--red {
  background-color: #bb2b39;
  color: #fff; }
  .btn.btn--red:hover {
    opacity: 0.85; }

.btn--restart {
  position: absolute;
  text-align: right;
  cursor: pointer;
  right: 108px;
  top: 48px;
  z-index: 5;
  margin: 0;
  height: 50px;
  line-height: 1; }

.button.is-primary:hover .refresh.icon {
  border-top: solid 1px #323232;
  border-bottom: solid 1px #323232;
  border-right: solid 1px #323232; }
.button.is-primary:hover .refresh.icon:before {
  border-top: solid 1px #323232;
  border-left: solid 1px #323232; }
.button.is-primary:hover .arrow-right.icon {
  background-color: #323232; }
.button.is-primary:hover .arrow-right.icon:before {
  border-top: solid 1px #323232;
  border-right: solid 1px #323232; }

.button.is-primary:focus .refresh.icon {
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff; }
.button.is-primary:focus .refresh.icon:before {
  border-top: solid 1px #fff;
  border-left: solid 1px #fff; }
.button.is-primary:focus .arrow-right.icon {
  background-color: #fff; }
.button.is-primary:focus .arrow-right.icon:before {
  border-top: solid 1px #fff;
  border-right: solid 1px #fff; }

.button.step-back-to-selector {
  background-color: #323232;
  color: #fff;
  text-decoration: none; }

.button-wrap {
  display: none; }

body.finished .button-wrap {
  display: flex;
  bottom: 2rem;
  justify-content: space-between;
  flex-direction: row;
  margin-top: auto;
  flex-wrap: wrap;
  position: absolute;
  width: 27vw;
  max-width: 350px; }
  body.finished .button-wrap.button-wrap--configurator {
    padding-top: 2rem; }
    body.finished .button-wrap.button-wrap--configurator .button {
      background-color: #bb2b39; }
  body.finished .button-wrap .button {
    margin: 0 !important; }

.nav-step1 {
  background: #fff url("../img/icons/bohren.png") no-repeat center center;
  background-size: contain; }
  .nav-step1.active, .nav-step1:hover {
    background: #fff url("../img/icons/bohren_white.png") no-repeat center center;
    background-size: contain; }

.nav-step2 {
  background: #fff url("../img/icons/blasen.png") no-repeat center center;
  background-size: contain; }
  .nav-step2.active, .nav-step2:hover {
    background: #fff url("../img/icons/pumpen_white.png") no-repeat center center;
    background-size: contain; }

.nav-step3 {
  background: #fff url("../img/icons/haemmern.png") no-repeat center center;
  background-size: contain; }
  .nav-step3.active, .nav-step3:hover {
    background: #fff url("../img/icons/haemmern_white.png") no-repeat center center;
    background-size: contain; }

.nav-step4 {
  background: #fff url("../img/icons/schrauben.png") no-repeat center center;
  background-size: contain; }
  .nav-step4.active, .nav-step4:hover {
    background: #fff url("../img/icons/schrauben_white.png") no-repeat center center;
    background-size: contain; }

.misc-image {
  z-index: 9; }

input[type=range] {
  /*removes default webkit styles*/
  -webkit-appearance: none;
  border: transparent;
  width: 300px;
  display: block;
  cursor: pointer;
  background: transparent; }

input[type=range].vertical {
  transform: rotate(90deg);
  margin-top: 93%;
  width: 170%;
  margin-left: -120px; }

input[type=range].vertical-reversed {
  transform: rotate(270deg);
  margin-top: 60%;
  width: 100%; }

input[type=range].reversed {
  transform: rotate(180deg); }

input[type=range]::-webkit-slider-runnable-track {
  width: 300px;
  height: 15px;
  background: transparent url("../img/bg_slider_repeat.png") center center repeat-x;
  border: none;
  border-radius: 3px; }

input[type=range]:focus {
  outline: none; }

input[type=range]:focus::-webkit-slider-runnable-track {
  background: transparent url("../img/bg_slider_repeat.png") center center repeat-x; }

input[type=range]::-moz-range-track {
  width: 300px;
  height: 5px;
  background: transparent url("../img/bg_slider_repeat.png") center center repeat-x;
  border: none;
  border-radius: 3px; }

/*hide the outline behind the border*/
input[type=range]:-moz-focusring {
  outline: 1px solid white;
  outline-offset: -1px; }

input[type=range]::-ms-fill-lower {
  background: transparent; }

input[type=range]::-ms-fill-upper {
  background: transparent; }

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 1px solid black;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  margin-top: -27.5px;
  background-color: #fff; }

.drill input[type=range]::-webkit-slider-thumb {
  background: #fff url("../img/icons/bohren_reverse.jpg") no-repeat center center;
  background-size: 40px; }

.hammer input[type=range]::-webkit-slider-thumb {
  background: #fff url("../img/icons/haemmern.png") no-repeat center center;
  background-size: 40px; }

.wrench input[type=range]::-webkit-slider-thumb {
  background: #fff url("../img/icons/schrauben.png") no-repeat center center;
  background-size: 40px; }

input[type=range]:focus::-ms-fill-lower {
  background: transparent; }

input[type=range]:focus::-ms-fill-upper {
  background: transparent; }

input[type=range]::-ms-tooltip {
  display: none; }

input[type=range]::-moz-range-thumb {
  border: 1px solid black;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background-color: #fff; }

input[type=range]::-ms-track {
  width: 300px;
  height: 70px;
  background: transparent url("../img/bg_slider.png") center center no-repeat;
  border-color: transparent;
  border-width: 6px 0;
  color: transparent; }

input[type=range]::-ms-thumb {
  border: 1px solid black;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background: #fff; }

.drill input[type=range]::-ms-thumb {
  background: #fff url("../img/icons/bohren_reverse.jpg") no-repeat center center;
  background-size: 40px; }

.hammer input[type=range]::-ms-thumb {
  background: #fff url("../img/icons/haemmern.png") no-repeat center center;
  background-size: 40px; }

.wrench input[type=range]::-ms-thumb {
  background: #fff url("../img/icons/schrauben.png") no-repeat center center;
  background-size: 40px; }

.config-step {
  display: none; }

.start-wrap {
  text-align: center; }
  .start-wrap h1, .start-wrap .like-h1 {
    display: inline-block;
    background: #323232;
    padding: 0 34px;
    margin-bottom: 5px;
    font-size: 68px;
    line-height: 1.3; }
  .start-wrap p {
    display: inline-block;
    background: rgba(255, 255, 255, 0.85);
    color: #323232;
    line-height: 1.3;
    padding: 10px;
    margin-bottom: 10vh; }

body.intro .config-step--intro {
  display: block; }
body.intro .start-wrap {
  margin-top: 16%; }
body.intro .button-switch-to--select {
  margin: 0 auto;
  display: block; }

body.select .start-wrap {
  margin-top: 5%; }
body.select .config-step--select {
  display: block; }
body.select .select-application {
  max-width: 70%;
  margin: 0 auto; }
  body.select .select-application img {
    width: 45%;
    display: block; }

html.start #menu-overlay {
  background: transparent url("../img/bg_start.jpg"); }

a.button.is-primary.inactive {
  cursor: not-allowed;
  background: #f5f5f5;
  border-color: #f5f5f5; }
  a.button.is-primary.inactive:hover {
    color: #fff; }

.content-wrap.content-wrap--indoor, .content-wrap.content-wrap--outdoor {
  display: none; }
  .content-wrap.content-wrap--indoor .application-tile, .content-wrap.content-wrap--outdoor .application-tile {
    width: 90%;
    margin: 0 auto;
    max-width: 1100px; }

.content-wrap.content-wrap--selector {
  width: 60%; }

.menu-overlay .content-wrap--selector .product-image {
  position: absolute;
  max-width: 90%; }
.menu-overlay .content-wrap--selector .application-tile .text-holder {
  padding: 25px 25px 225px; }

p.error {
  position: absolute;
  color: #bb2b39;
  display: none; }

p.success {
  position: absolute;
  color: #4f9300;
  display: none;
  margin: 0; }

.select-anchor-table {
  width: 100%; }
  .select-anchor-table thead tr {
    background-color: #323232;
    color: #fff; }
  .select-anchor-table tbody tr {
    cursor: pointer;
    background-color: #f9f9f9; }
    .select-anchor-table tbody tr:hover, .select-anchor-table tbody tr.selected {
      background-color: #a0a0a0; }
  .select-anchor-table th {
    line-height: 1.4;
    font-weight: 400;
    font-size: 14px; }
  .select-anchor-table td {
    text-align: center;
    padding: 0 5px; }

h2.alt {
  display: none; }

@media (max-width: 1050px) {
  html {
    padding-top: 0; }

  #menu-overlay, nav {
    width: 100%; }

  body {
    overflow-x: scroll; }

  button {
    padding: 0.75rem 0.5rem; }

  .border-left {
    left: 10px;
    top: 10px;
    bottom: 10px;
    width: 1px; }

  .border-top {
    top: 10px;
    left: 10px;
    right: 10px; }

  .border-right {
    right: 10px;
    top: 10px;
    bottom: 10px; }

  .border-bottom {
    bottom: 10px;
    right: 10px;
    left: 10px; }

  .btn--restart {
    top: 24px; }

  .btn.menu {
    right: 24px;
    top: 24px;
    font-size: 0; }
    .btn.menu span {
      margin: 0; }

  .menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0; }
    .menu-overlay .content-wrap .application-tile {
      width: 45%; }

  .ui-underground {
    width: 30vw;
    padding: 1.5rem;
    padding-top: 5rem;
    top: 12px;
    right: 12px;
    bottom: 12px; }
    .ui-underground.pump .description {
      line-height: 1; }
    .ui-underground.pump .counter-wrap-alt .decimals {
      font-size: 30px; }
    .ui-underground.pump .wrapper .button {
      max-width: 80px; }
    .ui-underground.wrench {
      max-width: initial;
      width: auto;
      top: initial;
      left: 12px;
      height: 120px;
      padding-top: 2rem; }
      .ui-underground.wrench input[type='range'] {
        margin-top: 0 !important;
        width: 400px;
        position: absolute;
        right: 5%;
        bottom: 41%; }
      .ui-underground.wrench .button-wrap {
        position: absolute;
        bottom: 2rem; }
        .ui-underground.wrench .button-wrap .step-restart {
          position: relative;
          left: 20px; }
      .ui-underground.wrench img.finish-text {
        margin-top: 0;
        max-width: 33%;
        float: right; }
    .ui-underground.drill .decimals {
      font-size: 35px;
      padding: 0; }
    .ui-underground.drill input[type=range] {
      margin-top: 0;
      width: 125%;
      position: absolute;
      left: 85px;
      top: 340px; }

  nav .info-box {
    bottom: -62px;
    right: 12px;
    left: initial;
    font-size: 1rem;
    height: 50px;
    width: 70%;
    line-height: 1;
    text-align: center; }
    .step4 nav .info-box {
      bottom: -62px;
      left: initial; }
  nav .jump-to-steps {
    left: 12px;
    bottom: -62px; }
    nav .jump-to-steps button.square {
      height: 50px;
      width: 50px; }

  .on-demand-media {
    max-width: 100%; }

  .step3 .counter-wrap {
    bottom: 7%;
    right: 35%; }

  .step4 .counter-wrap {
    right: 13%; }

  .step4.finished .ui-underground {
    left: initial;
    top: 12px;
    height: auto;
    max-width: 350px; }
    .step4.finished .ui-underground .finish-text {
      max-width: 100%;
      margin-top: 20%;
      float: initial; }
  .step4.finished .counter-wrap.wrench {
    right: 38%;
    bottom: 2%; }

  body.intro .start-wrap {
    margin-top: -40%; }

  body.select-application-area #menu-overlay div {
    display: none; }

  .content-wrap.content-wrap--indoor .application-tile,
  .content-wrap.content-wrap--outdoor .application-tile {
    width: 100%; }

  .menu-overlay .content-wrap {
    width: 90%; } }
/**
  Source: https://cssicon.space/#/icon/arrow-right
  CC0 Public Domain
 */
.arrow-right.icon {
  color: #000;
  margin-left: 2px;
  margin-top: 10px;
  width: 16px;
  height: 1px;
  background-color: #fff;
  position: relative;
  bottom: 4px; }

.arrow-right.icon:before {
  content: '';
  position: absolute;
  right: 1px;
  top: -5px;
  width: 10px;
  height: 10px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.refresh.icon {
  color: #000;
  position: relative;
  bottom: 0px;
  margin-left: 4px;
  margin-top: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
  border-left: solid 1px transparent;
  border-right: solid 1px #fff; }

.refresh.icon:before {
  content: '';
  position: absolute;
  left: 1px;
  top: 10px;
  width: 3px;
  height: 3px;
  border-top: solid 1px #fff;
  border-left: solid 1px #fff;
  -webkit-transform: rotate(-22.5deg);
  transform: rotate(-22.5deg); }

/***************************************************************
 *
 *  (c) 2017 Christian Jung <c.jung@conception.cc>, conception GmbH
 *
 *   Import sections of components
 *
 ***************************************************************/
@media print {
  @page {
    margin: 0.5cm; }
  .no-print {
    display: none !important; }

  .wrap {
    width: 100% !important; }

  [class*='col-'] {
    width: 100% !important; }

  body, html {
    background-color: white !important;
    background-image: none !important; } }

/*# sourceMappingURL=styles.css.map */
