@charset "UTF-8";
/**
 * brandung SCSS boilerplate for old IE v2.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/**
 * brandung SCSS boilerplate v2.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/**
 *  core variables and mixins
 *  - modify this for custom colors, font-sizes, etc
 */
/**
 * Calculate PX to EM
 *
 * @param {number} $targetPx - pixel value without unit
 *
 */
/**
 * brandung variables.scss v2.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* Base sizes */
/* Body font size */
/* Device widths */
/* Container width */
/* Colors */
/* Navigation Flyout */
/* Scaffolding */
/* Z-indices */
/**
 * brandung mixins.scss v2.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Mixins
   ========================================================================== */
/**
 * Calculate percent value to given property
 * 
 * @param {string} $cssProperty - which property
 * @param {number} $targetSize - element size in pixel
 * @param {number} $contextSize - context element size in pixel
 * @param {boolean} $important - set !important property
 * 
 */
/**
 * Calculate PX font size to REM
 *
 * - add PX fallback for older browser
 *
 * @param {number} $size - element size in pixel
 * @param {number} $base - body font size in pixel
 *
 */
/**
 * Calculates given px value to rem value
 *
 * @param {string} $prop - css property name, e.g. font-size, line-height; Default: 'font-size'
 * @param {number} $size - size in px; Default: $body-font-size-px
 *
 */
/**
* Mixin for adding vendor prefixes to CSS attributes; useful for the following CSS attributes
*
* - border-radius
* - box-shadow
* - transition
* - transform
* - background-size
* - box-sizing
* - animate
*
* @param {string} $attribute - CSS attribute that needs vendor prefixes, e.g. border-radius or transition
* @param {string} $value - The specific CSS value, e.g. "translateX .2s ease-out"
*/
/**
* Mixin for adding svg background image + png fallback
*
* - add png fallback for older browser
*
* @param {string} $name - image name
* @param {string} $extension - file extension + folder
* @param {string} $color - background-color
* @param {number} $position - background position
* @param {string} $repeat - background repeat
*
* @reauire $old-ie variable from _sass-ie.scss
*
* Use:
* @include svg-bg('logo')
* @include svg-bg('logo', $color: #fff, ...);
*
*/
/**
* Clearfix
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
*     contenteditable attribute is included anywhere else in the document.
*     Otherwise it causes space to appear at the top and bottom of elements
*     that are clearfixed.
* 2. The use of `table` rather than `block` is only necessary if using
*     `:before` to contain the top-margins of child elements.
*
* Source: http://nicolasgallagher.com/micro-clearfix-hack/
*/
/**
* Grid mixins
*
* Generate semantic grid columns with these mixins.
* based on the bootstrap-sass partial
*/
/**
 * normalize
 * https://github.com/necolas/normalize.css
 */
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/**
 * h5bp main.css
 * https://github.com/h5bp/html5-boilerplate
 */
/*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */
audio,
canvas,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
   Browse Happy prompt
   ========================================================================== */
.browsehappy {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden;
}

/*
 * Hide only visually, but have it available for screen readers: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before, hr:before,
.clearfix:after,
main:after,
hr:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}


.clearfix:after,
main:after,
hr:after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request: h5bp.com/r
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
	 * Don't show links that are fragment identifiers,
	 * or use the `javascript:` pseudo protocol
	 */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
    /* h5bp.com/t */
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

/**
 * old-ie mixin
 * https://gridsetapp.com/
 */
/**
 * mCustomScrollbar main.css
 * http://manos.malihu.gr/jquery-custom-content-scroller/
 */
/*
== malihu jquery custom scrollbar plugin ==
Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
*/
/*
CONTENTS: 
	1. BASIC STYLE - Plugin's basic/essential CSS properties (normally, should not be edited). 
	2. VERTICAL SCROLLBAR - Positioning and dimensions of vertical scrollbar. 
	3. HORIZONTAL SCROLLBAR - Positioning and dimensions of horizontal scrollbar.
	4. VERTICAL AND HORIZONTAL SCROLLBARS - Positioning and dimensions of 2-axis scrollbars. 
	5. TRANSITIONS - CSS3 transitions for hover events, auto-expanded and auto-hidden scrollbars. 
	6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS 
		6.1 THEMES - Scrollbar colors, opacity, dimensions, backgrounds etc. via ready-to-use themes.
*/
/* 
------------------------------------------------------------------------------------------------------------------------
1. BASIC STYLE  
------------------------------------------------------------------------------------------------------------------------
*/
.mCustomScrollbar {
  -ms-touch-action: pinch-zoom;
  touch-action: pinch-zoom;
  /* direct pointer events to js */
}

.mCustomScrollbar.mCS_no_scrollbar, .mCustomScrollbar.mCS_touch_action {
  -ms-touch-action: auto;
  touch-action: auto;
}

.mCustomScrollBox {
  /* contains plugin's markup */
  position: relative;
  overflow: hidden;
  height: 100%;
  max-width: 100%;
  outline: none;
  direction: ltr;
}

.mCSB_container {
  /* contains the original content */
  overflow: hidden;
  width: auto;
  height: auto;
}

/* 
------------------------------------------------------------------------------------------------------------------------
2. VERTICAL SCROLLBAR 
y-axis
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_inside > .mCSB_container {
  margin-right: 30px;
}

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 0;
}

/* non-visible scrollbar */
.mCS-dir-rtl > .mCSB_inside > .mCSB_container {
  /* RTL direction/left-side scrollbar */
  margin-right: 0;
  margin-left: 30px;
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-left: 0;
}

/* RTL direction/left-side scrollbar */
.mCSB_scrollTools {
  /* contains scrollbar markup (draggable element, dragger rail, buttons etc.) */
  position: absolute;
  width: 16px;
  height: auto;
  left: auto;
  top: 0;
  right: 0;
  bottom: 0;
}

.mCSB_outside + .mCSB_scrollTools {
  right: -26px;
}

/* scrollbar position: outside */
.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools,
.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
  /* RTL direction/left-side scrollbar */
  right: auto;
  left: 0;
}

.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools {
  left: -26px;
}

/* RTL direction/left-side scrollbar (scrollbar position: outside) */
.mCSB_scrollTools .mCSB_draggerContainer {
  /* contains the draggable element and dragger rail markup */
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: auto;
}

.mCSB_scrollTools a + .mCSB_draggerContainer {
  margin: 20px 0;
}

.mCSB_scrollTools .mCSB_draggerRail {
  width: 2px;
  height: 100%;
  margin: 0 auto;
  border-radius: 16px;
}

.mCSB_scrollTools .mCSB_dragger {
  /* the draggable element */
  cursor: pointer;
  width: 100%;
  height: 30px;
  /* minimum dragger height */
  z-index: 1;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  /* the dragger element */
  position: relative;
  width: 4px;
  height: 100%;
  margin: 0 auto;
  border-radius: 16px;
  text-align: center;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  width: 12px;
  /* auto-expanded scrollbar */
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 8px;
  /* auto-expanded scrollbar */
}

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown {
  display: block;
  position: absolute;
  height: 20px;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
}

.mCSB_scrollTools .mCSB_buttonDown {
  bottom: 0;
}

/* 
------------------------------------------------------------------------------------------------------------------------
3. HORIZONTAL SCROLLBAR 
x-axis
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_horizontal.mCSB_inside > .mCSB_container {
  margin-right: 0;
  margin-bottom: 30px;
}

.mCSB_horizontal.mCSB_outside > .mCSB_container {
  min-height: 100%;
}

.mCSB_horizontal > .mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden {
  margin-bottom: 0;
}

/* non-visible scrollbar */
.mCSB_scrollTools.mCSB_scrollTools_horizontal {
  width: auto;
  height: 16px;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
}

.mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  bottom: -26px;
}

/* scrollbar position: outside */
.mCSB_scrollTools.mCSB_scrollTools_horizontal a + .mCSB_draggerContainer {
  margin: 0 20px;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 2px;
  margin: 7px 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 30px;
  /* minimum dragger width */
  height: 100%;
  left: 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 4px;
  margin: 6px auto;
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  height: 12px;
  /* auto-expanded scrollbar */
  margin: 2px auto;
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 8px;
  /* auto-expanded scrollbar */
  margin: 4px 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
  display: block;
  position: absolute;
  width: 20px;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
  left: 0;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
  right: 0;
}

/* 
------------------------------------------------------------------------------------------------------------------------
4. VERTICAL AND HORIZONTAL SCROLLBARS 
yx-axis 
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_container_wrapper {
  position: absolute;
  height: auto;
  width: auto;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin-right: 30px;
  margin-bottom: 30px;
}

.mCSB_container_wrapper > .mCSB_container {
  padding-right: 30px;
  padding-bottom: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_vertical {
  bottom: 20px;
}

.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  right: 20px;
}

/* non-visible horizontal scrollbar */
.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden + .mCSB_scrollTools.mCSB_scrollTools_vertical {
  bottom: 0;
}

/* non-visible vertical scrollbar/RTL direction/left-side scrollbar */
.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  right: 0;
}

/* RTL direction/left-side scrollbar */
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  left: 20px;
}

/* non-visible scrollbar/RTL direction/left-side scrollbar */
.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  left: 0;
}

.mCS-dir-rtl > .mCSB_inside > .mCSB_container_wrapper {
  /* RTL direction/left-side scrollbar */
  margin-right: 0;
  margin-left: 30px;
}

.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden > .mCSB_container {
  padding-right: 0;
}

.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden > .mCSB_container {
  padding-bottom: 0;
}

.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 0;
  /* non-visible scrollbar */
  margin-left: 0;
}

/* non-visible horizontal scrollbar */
.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden {
  margin-bottom: 0;
}

/* 
------------------------------------------------------------------------------------------------------------------------
5. TRANSITIONS  
------------------------------------------------------------------------------------------------------------------------
*/
.mCSB_scrollTools,
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
  -webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
  transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail {
  -webkit-transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
  transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
}

/* 
------------------------------------------------------------------------------------------------------------------------
6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS  
------------------------------------------------------------------------------------------------------------------------
*/
/*
----------------------------------------
6.1 THEMES
----------------------------------------
*/
/* default theme ("light") */
.mCSB_scrollTools {
  opacity: 0.75;
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
}

.mCS-autoHide > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools {
  opacity: 0;
  filter: "alpha(opacity=0)";
  -ms-filter: "alpha(opacity=0)";
}

.mCustomScrollbar > .mCustomScrollBox > .mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollbar > .mCustomScrollBox ~ .mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollBox:hover > .mCSB_scrollTools,
.mCustomScrollBox:hover ~ .mCSB_scrollTools,
.mCS-autoHide:hover > .mCustomScrollBox > .mCSB_scrollTools,
.mCS-autoHide:hover > .mCustomScrollBox ~ .mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
}

.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.4);
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)";
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
}

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85);
  filter: "alpha(opacity=85)";
  -ms-filter: "alpha(opacity=85)";
}

.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  filter: "alpha(opacity=90)";
  -ms-filter: "alpha(opacity=90)";
}

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
  background-image: url(mCSB_buttons.png);
  /* css sprites */
  background-repeat: no-repeat;
  opacity: 0.4;
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)";
}

.mCSB_scrollTools .mCSB_buttonUp {
  background-position: 0 0;
  /*
    sprites locations
    light: 0 0, -16px 0, -32px 0, -48px 0, 0 -72px, -16px -72px, -32px -72px
    dark: -80px 0, -96px 0, -112px 0, -128px 0, -80px -72px, -96px -72px, -112px -72px
    */
}

.mCSB_scrollTools .mCSB_buttonDown {
  background-position: 0 -20px;
  /*
    sprites locations
    light: 0 -20px, -16px -20px, -32px -20px, -48px -20px, 0 -92px, -16px -92px, -32px -92px
    dark: -80px -20px, -96px -20px, -112px -20px, -128px -20px, -80px -92px, -96px -92px, -112 -92px
    */
}

.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: 0 -40px;
  /*
    sprites locations
    light: 0 -40px, -20px -40px, -40px -40px, -60px -40px, 0 -112px, -20px -112px, -40px -112px
    dark: -80px -40px, -100px -40px, -120px -40px, -140px -40px, -80px -112px, -100px -112px, -120px -112px
    */
}

.mCSB_scrollTools .mCSB_buttonRight {
  background-position: 0 -56px;
  /*
    sprites locations
    light: 0 -56px, -20px -56px, -40px -56px, -60px -56px, 0 -128px, -20px -128px, -40px -128px
    dark: -80px -56px, -100px -56px, -120px -56px, -140px -56px, -80px -128px, -100px -128px, -120px -128px
    */
}

.mCSB_scrollTools .mCSB_buttonUp:hover,
.mCSB_scrollTools .mCSB_buttonDown:hover,
.mCSB_scrollTools .mCSB_buttonLeft:hover,
.mCSB_scrollTools .mCSB_buttonRight:hover {
  opacity: 0.75;
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
}

.mCSB_scrollTools .mCSB_buttonUp:active,
.mCSB_scrollTools .mCSB_buttonDown:active,
.mCSB_scrollTools .mCSB_buttonLeft:active,
.mCSB_scrollTools .mCSB_buttonRight:active {
  opacity: 0.9;
  filter: "alpha(opacity=90)";
  -ms-filter: "alpha(opacity=90)";
}

/* theme: "dark" */
.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.15);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px 0;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -20px;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -40px;
}

.mCS-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -56px;
}

/* ---------------------------------------- */
/* theme: "light-2", "dark-2" */
.mCS-light-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 1px;
}

.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 4px;
  margin: 6px auto;
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85);
}

.mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px 0;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -20px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -40px;
}

.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -56px;
}

/* theme: "dark-2" */
.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 1px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 1px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px 0;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -20px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -40px;
}

.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -56px;
}

/* ---------------------------------------- */
/* theme: "light-thick", "dark-thick" */
.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
  width: 4px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 2px;
}

.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 4px;
  margin: 6px 0;
}

.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 6px;
  margin: 5px auto;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85);
}

.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -16px 0;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -16px -20px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -20px -40px;
}

.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -20px -56px;
}

/* theme: "dark-thick" */
.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 2px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -96px 0;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -96px -20px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -100px -40px;
}

.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -100px -56px;
}

/* ---------------------------------------- */
/* theme: "light-thin", "dark-thin" */
.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}

.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 2px;
}

.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
}

.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 2px;
  margin: 7px auto;
}

/* theme "dark-thin" */
.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.15);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px 0;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -20px;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -40px;
}

.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -56px;
}

/* ---------------------------------------- */
/* theme "rounded", "rounded-dark", "rounded-dots", "rounded-dots-dark" */
.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}

.mCS-rounded.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger {
  height: 14px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 14px;
  margin: 0 1px;
}

.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 14px;
}

.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 14px;
  margin: 1px 0;
}

.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  width: 16px;
  /* auto-expanded scrollbar */
  height: 16px;
  margin: -1px 0;
}

.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 4px;
  /* auto-expanded scrollbar */
}

.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
  height: 16px;
  /* auto-expanded scrollbar */
  width: 16px;
  margin: 0 -1px;
}

.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 4px;
  /* auto-expanded scrollbar */
  margin: 6px 0;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp {
  background-position: 0 -72px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown {
  background-position: 0 -92px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: 0 -112px;
}

.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight {
  background-position: 0 -128px;
}

/* theme "rounded-dark", "rounded-dots-dark" */
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.15);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -80px -72px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -80px -92px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -80px -112px;
}

.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -80px -128px;
}

/* theme "rounded-dots", "rounded-dots-dark" */
.mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail {
  width: 4px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  background-color: transparent;
  background-position: center;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==");
  background-repeat: repeat-y;
  opacity: 0.3;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)";
}

.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  height: 4px;
  margin: 6px 0;
  background-repeat: repeat-x;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -16px -72px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -16px -92px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -20px -112px;
}

.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -20px -128px;
}

/* theme "rounded-dots-dark" */
.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII=");
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -96px -72px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -96px -92px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -100px -112px;
}

.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -100px -128px;
}

/* ---------------------------------------- */
/* theme "3d", "3d-dark", "3d-thick", "3d-thick-dark" */
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-repeat: repeat-y;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  background-repeat: repeat-x;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

/* theme "3d", "3d-dark" */
.mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger,
.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger {
  height: 70px;
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 70px;
}

.mCS-3d.mCSB_scrollTools,
.mCS-3d-dark.mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)";
}

.mCS-3d.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  border-radius: 16px;
}

.mCS-3d.mCSB_scrollTools .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
  width: 8px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.5), inset -1px 0 1px rgba(255, 255, 255, 0.2);
          box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.5), inset -1px 0 1px rgba(255, 255, 255, 0.2);
}

.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #555;
}

.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 8px;
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 8px;
  margin: 4px 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5), inset 0 -1px 1px rgba(255, 255, 255, 0.2);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.5), inset 0 -1px 1px rgba(255, 255, 255, 0.2);
}

.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  width: 100%;
  height: 8px;
  margin: 4px auto;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}

.mCS-3d.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}

/* theme "3d-dark" */
.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1);
          box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1);
}

.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}

.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}

/* ---------------------------------------- */
/* theme: "3d-thick", "3d-thick-dark" */
.mCS-3d-thick.mCSB_scrollTools,
.mCS-3d-thick-dark.mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=30)";
  -ms-filter: "alpha(opacity=30)";
}

.mCS-3d-thick.mCSB_scrollTools,
.mCS-3d-thick-dark.mCSB_scrollTools,
.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
  border-radius: 7px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  border-radius: 5px;
}

.mCSB_inside + .mCS-3d-thick.mCSB_scrollTools_vertical,
.mCSB_inside + .mCS-3d-thick-dark.mCSB_scrollTools_vertical {
  right: 1px;
}

.mCS-3d-thick.mCSB_scrollTools_vertical,
.mCS-3d-thick-dark.mCSB_scrollTools_vertical {
  -webkit-box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
          box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
}

.mCS-3d-thick.mCSB_scrollTools_horizontal,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
  bottom: 1px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.5);
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4);
          box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4);
  width: 12px;
  margin: 2px;
  position: absolute;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #555;
}

.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 12px;
  width: auto;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
          box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}

.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}

/* theme: "3d-thick-dark" */
.mCS-3d-thick-dark.mCSB_scrollTools {
  -webkit-box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1), inset 0 0 14px rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4), inset -1px 0 0 rgba(0, 0, 0, 0.2);
          box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4), inset -1px 0 0 rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #777;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer {
  background-color: #fff;
  background-color: rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
          box-shadow: inset 1px 1px 16px rgba(0, 0, 0, 0.1);
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}

.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}

/* ---------------------------------------- */
/* theme: "minimal", "minimal-dark" */
.mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical,
.mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical {
  right: 0;
  margin: 12px 0;
}

.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal {
  bottom: 0;
  margin: 0 12px;
}

/* RTL direction/left-side scrollbar */
.mCS-dir-rtl > .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical,
.mCS-dir-rtl > .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical {
  left: 0;
  right: auto;
}

.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
}

.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger,
.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger {
  height: 50px;
}

.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger,
.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger {
  width: 50px;
}

.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  filter: "alpha(opacity=20)";
  -ms-filter: "alpha(opacity=20)";
}

.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.5);
  filter: "alpha(opacity=50)";
  -ms-filter: "alpha(opacity=50)";
}

/* theme: "minimal-dark" */
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
  filter: "alpha(opacity=20)";
  -ms-filter: "alpha(opacity=20)";
}

.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.5);
  filter: "alpha(opacity=50)";
  -ms-filter: "alpha(opacity=50)";
}

/* ---------------------------------------- */
/* theme "light-3", "dark-3" */
.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
  width: 6px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
}

.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
}

.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 6px;
  margin: 5px 0;
}

.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  width: 12px;
}

.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail,
.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
  height: 12px;
  margin: 2px 0;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}

.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}

/* theme "dark-3" */
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}

.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}

/* ---------------------------------------- */
/* theme "inset", "inset-dark", "inset-2", "inset-2-dark", "inset-3", "inset-3-dark" */
.mCS-inset.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
  width: 12px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.2);
}

.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 6px;
  margin: 3px 5px;
  position: absolute;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 6px;
  margin: 5px 3px;
  position: absolute;
  width: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail {
  width: 100%;
  height: 12px;
  margin: 2px 0;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -32px -72px;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -32px -92px;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -40px -112px;
}

.mCS-inset.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -40px -128px;
}

/* theme "inset-dark", "inset-2-dark", "inset-3-dark" */
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.1);
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp {
  background-position: -112px -72px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown {
  background-position: -112px -92px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: -120px -112px;
}

.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight {
  background-position: -120px -128px;
}

/* theme "inset-2", "inset-2-dark" */
.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,
.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail {
  border-color: #000;
  border-color: rgba(0, 0, 0, 0.2);
}

/* theme "inset-3", "inset-3-dark" */
.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.6);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.85);
}

.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.75);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.85);
}

.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
}

/* ---------------------------------------- */
/**
 * vendor utilities
 * - remove comment when mixin is needed
 */
/**
 * layout and grid
 * - brandung grid
 * - based on the bootstrap v3 gridset
 *
 * - brandung layout files
 * - here you can add new files if needed
 */
/**
 * brandung header.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: relative;
}

.header .print-only {
  display: none;
}

.header__scroll-smaller {
  height: 75px;
}

.header__container {
  position: fixed;
  z-index: 50;
  width: 100%;
}

.header__teaser {
  margin-top: 200px;
  display: block;
}

.header__teaser-headline h1,
.header__teaser-headline h2 {
  margin: 0;
  line-height: 48px;
  font-size: 52px;
  color: #fff;
}

.header__teaser-headline h1 {
  font-weight: 800;
}

.header__teaser-headline h2 span {
  color: #ff7400;
}

.header__teaser-subline {
  font-size: 16px;
  line-height: 20px;
}

.header__teaser-headline h1,
.header__teaser-headline h2 {
  font-size: 32px;
  line-height: 32px;
}

.header__teaser {
  margin-top: -50%;
}

.header__teaser-headline h1,
.header__teaser-headline h2 {
  font-size: 32px;
  line-height: 32px;
}

.header__teaser-headline h1,
.header__teaser-headline h2 {
  font-size: 52px;
  line-height: 52px;
}

@font-face {
  font-family: 'ameos';
  src: url("../fonts/ameos.eot?-v3mw6u");
  src: url("../fonts/ameos.eot?#iefix-v3mw6u") format("embedded-opentype"), url("../fonts/ameos.woff2?-v3mw6u") format("woff2"), url("../fonts/ameos.ttf?-v3mw6u") format("truetype"), url("../fonts/ameos.woff?-v3mw6u") format("woff"), url("../fonts/ameos.svg?-v3mw6u#ameos") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.icon-before:before,
.icon-after:after,
.icon-only:before, .vjs-default-skin .vjs-big-play-button:before, .vjs-big-play-button:before,
.box-content a:after,
.box-content__orange a:after,
.box-content__orange-library a:before,
.clinic-pages .clinic-pages__right-article ul li a:after, main .button-orange a:after,
.button-orange a:after, .button-orange-library a:after, .button-blue a:after, .button-bordered:after, .button-grey-bordered a:before, .footer__description p > a:after, .slick-initialized.mod-stage-slider .slick-prev:before, .slick-initialized.mod-stage-slider .slick-next:before, .blog__header .blog__filter .select-wrapper:after, .blog__header .blog__filter .submit-wrapper button:after, .blog__static-container .headline-link:after, .blog__static .item-link:after, .blog__slider-container .headline-link:after, .blog__slider .item-link:after, .blog__slider .slick-prev:before, .blog__slider .slick-next:before, .blog__slider--fullwidth .slick-prev:before, .blog__slider--fullwidth .slick-next:before, .blog__article-link:after, .share-me .shariff-button a:before, .filter-category-front-page .sub-menu__hint:after, .slider-front-page .slick-prev:before, .slider-front-page .slick-next:before, .teaser-full-width__right-article a:not(.button-bordered):after, .downloads__save:before, .sub-navigation__headline:before, .sub-navigation__active, .sub-navigation__list-item.active, .sub-navigation-mobile__headline:before, .sub-navigation-mobile__active, .sub-navigation-mobile__list-item.active, .accordion__headline:after, .accordion__headline.is-active:after, .breadcrumb li:after, .content-lightbox__next:before, .content-lightbox__prev:before, .content-lightbox__close:before, .teasers__small .teasers__description a:after, .teasers__medium .teasers__description a:after, .teasers__large .teasers__description a:after, .tx-indexedsearch .tx-indexedsearch-searchbox table tr:nth-child(2) td:first-child:before, .tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:first-child a:before, .tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:last-child a:after, .tx-indexedsearch__subline a:after, .date-picker__select select:before, .date-picker__select .selectboxit-container .selectboxit .selectboxit-arrow-container .selectboxit-arrow:before, .date-picker select:before, .dp-popup div.dp-nav-prev a:before, .dp-popup div.dp-nav-next a:before, .pagination li.previous a:before, .pagination li.next a:before, .contact-form .selectboxit-container .selectboxit-arrow-container .selectboxit-arrow:before, .contact-form button:after, .events__subline a:after, .news-list__subline a:after, .teaser-width-content-fluid__subline a:after, .gallery .slick-prev:before, .gallery .slick-next:before, .caption__search-icon:after, .mod-finder__expert .expert__details a:after,
.vjs-default-skin:hover .vjs-big-play-button:before,
.vjs-default-skin .vjs-big-play-button:focus:before, .header-pages__stage .slick-prev:before, .header-pages__stage .slick-next:before {
  font-family: 'ameos';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  padding: 0 .3rem;
  font-size: 200%;
  vertical-align: middle;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-after:before {
  display: none;
}

.icon-before:after {
  display: none;
}

.share-me .shariff-button.whatsapp a:before {
  content: "\e800";
}

.slick-initialized.mod-stage-slider .slick-prev:before, .blog__slider .slick-prev:before, .blog__slider--fullwidth .slick-prev:before, .slider-front-page .slick-prev:before, .content-lightbox__prev:before, .gallery .slick-prev:before, .header-pages__stage .slick-prev:before {
  content: "\e600";
}

.footer__description p > a:after, .slick-initialized.mod-stage-slider .slick-next:before, .blog__header .blog__filter .select-wrapper:after, .blog__slider .slick-next:before, .blog__slider--fullwidth .slick-next:before, .slider-front-page .slick-next:before, .content-lightbox__next:before, .date-picker__select select:before, .date-picker__select .selectboxit-container .selectboxit .selectboxit-arrow-container .selectboxit-arrow:before, .date-picker select:before, .contact-form .selectboxit-container .selectboxit-arrow-container .selectboxit-arrow:before, .gallery .slick-next:before, .header-pages__stage .slick-next:before {
  content: "\e601";
}


.box-content a:after,
.box-content__orange a:after,
.box-content__orange-library a:before,
.clinic-pages .clinic-pages__right-article ul li a:after, main .button-orange a:after,
.button-orange a:after, .button-orange-library a:after, .button-blue a:after, .button-bordered:after, .button-grey-bordered a:before, .blog__header .blog__filter .submit-wrapper button:after, .blog__static-container .headline-link:after, .blog__static .item-link:after, .blog__slider-container .headline-link:after, .blog__slider .item-link:after, .blog__article-link:after, .teaser-full-width__right-article a:not(.button-bordered):after, .sub-navigation__headline:before, .sub-navigation-mobile__headline:before, .breadcrumb li:after, .teasers__small .teasers__description a:after, .teasers__medium .teasers__description a:after, .teasers__large .teasers__description a:after, .tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:first-child a:before, .tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:last-child a:after, .tx-indexedsearch__subline a:after, .dp-popup div.dp-nav-prev a:before, .dp-popup div.dp-nav-next a:before, .pagination li.previous a:before, .pagination li.next a:before, .contact-form button:after, .events__subline a:after, .news-list__subline a:after, .teaser-width-content-fluid__subline a:after, .mod-finder__expert .expert__details a:after {
  content: "\e602";
}

.mod-header-search.active .search-toggle:before, .content-lightbox__close:before {
  content: "\e60b";
}

.sub-navigation__active, .sub-navigation__list-item.active, .sub-navigation-mobile__active, .sub-navigation-mobile__list-item.active, .accordion__headline.is-active:after {
  content: "\e60c";
}

.downloads__save:before {
  content: "\e60d";
}

.share-me .shariff-button.facebook a:before {
  content: "\e60e";
}

.share-me .shariff-button.googleplus a:before {
  content: "\e610";
}

.share-me .shariff-button.mail a:before {
  content: "\e614";
}

.accordion__headline:after {
  content: "\e61b";
}

.tx-indexedsearch .tx-indexedsearch-searchbox table tr:nth-child(2) td:first-child:before {
  content: "\e623";
}

.share-me .shariff-button.twitter a:before {
  content: "\e627";
}

.caption__search-icon:after {
  content: "\e632";
}

.icon-before.icon-cross-scale:before,
.icon-after.icon-cross-scale:after,
.icon-only.icon-cross-scale:before,
.icon-cross-scale.vjs-big-play-button:before,
.icon-cross-scale:before {
  content: "";
}

.icon-before.icon-career:before,
.icon-after.icon-career:after,
.icon-only.icon-career:before,
.icon-career.vjs-big-play-button:before,
.icon-career:before {
  content: "";
}

.icon-before.icon-instagram:before,
.icon-after.icon-instagram:after,
.icon-only.icon-instagram:before,
.icon-instagram.vjs-big-play-button:before,
.icon-instagram:before {
  content: "";
}

.icon-before.icon-landingpage:before,
.icon-after.icon-landingpage:after,
.icon-only.icon-landingpage:before,
.icon-landingpage.vjs-big-play-button:before,
.icon-landingpage:before {
  content: "";
}

.icon-before.icon-work-for-us:before,
.icon-after.icon-work-for-us:after,
.icon-only.icon-work-for-us:before,
.icon-work-for-us.vjs-big-play-button:before,
.icon-work-for-us:before {
  content: "";
}

.icon-before.icon-jobs:before,
.icon-after.icon-jobs:after,
.icon-only.icon-jobs:before,
.icon-jobs.vjs-big-play-button:before,
.icon-jobs:before {
  content: "";
}

.icon-before.icon-advancement:before,
.icon-after.icon-advancement:after,
.icon-only.icon-advancement:before,
.icon-advancement.vjs-big-play-button:before,
.icon-advancement:before {
  content: "";
}

.icon-before.icon-apprentice:before,
.icon-after.icon-apprentice:after,
.icon-only.icon-apprentice:before,
.icon-apprentice.vjs-big-play-button:before,
.icon-apprentice:before {
  content: "";
}

.icon-before.icon-worker:before,
.icon-after.icon-worker:after,
.icon-only.icon-worker:before,
.icon-worker.vjs-big-play-button:before,
.icon-worker:before {
  content: "";
}

.icon-before.icon-student2:before,
.icon-after.icon-student2:after,
.icon-only.icon-student2:before,
.icon-student2.vjs-big-play-button:before,
.icon-student2:before {
  content: "";
}

.icon-before.icon-student:before,
.icon-after.icon-student:after,
.icon-only.icon-student:before,
.icon-student.vjs-big-play-button:before,
.icon-student:before {
  content: "";
}

.icon-before.icon-seniors:before,
.icon-after.icon-seniors:after,
.icon-only.icon-seniors:before,
.icon-seniors.vjs-big-play-button:before,
.icon-seniors:before {
  content: "";
}

.icon-before.icon-a:before,
.icon-after.icon-a:after,
.icon-only.icon-a:before,
.icon-a.vjs-big-play-button:before,
.icon-a:before {
  content: "";
}

.icon-before.icon-e:before,
.icon-after.icon-e:after,
.icon-only.icon-e:before,
.icon-e.vjs-big-play-button:before,
.icon-e:before {
  content: "";
}

.icon-before.icon-m:before,
.icon-after.icon-m:after,
.icon-only.icon-m:before,
.icon-m.vjs-big-play-button:before,
.icon-m:before {
  content: "";
}

.icon-before.icon-o:before,
.icon-after.icon-o:after,
.icon-only.icon-o:before,
.icon-o.vjs-big-play-button:before,
.icon-o:before {
  content: "";
}

.icon-before.icon-s:before,
.icon-after.icon-s:after,
.icon-only.icon-s:before,
.icon-s.vjs-big-play-button:before,
.icon-s:before {
  content: "";
}

.icon-before.icon-video:before,
.icon-after.icon-video:after,
.icon-only.icon-video:before,
.icon-video.vjs-big-play-button:before,
.icon-video:before {
  content: "";
}

.icon-before.icon-stop:before,
.icon-after.icon-stop:after,
.icon-only.icon-stop:before,
.icon-stop.vjs-big-play-button:before,
.icon-stop:before {
  content: "";
}

.icon-before.icon-pdf:before,
.icon-after.icon-pdf:after,
.icon-only.icon-pdf:before,
.icon-pdf.vjs-big-play-button:before,
.icon-pdf:before {
  content: "";
}

.icon-before.icon-angehorige-betreuer:before,
.icon-after.icon-angehorige-betreuer:after,
.icon-only.icon-angehorige-betreuer:before,
.icon-angehorige-betreuer.vjs-big-play-button:before,
.icon-angehorige-betreuer:before {
  content: "";
}

.icon-before.icon-bewohner-angehorige:before,
.icon-after.icon-bewohner-angehorige:after,
.icon-only.icon-bewohner-angehorige:before,
.icon-bewohner-angehorige.vjs-big-play-button:before,
.icon-bewohner-angehorige:before {
  content: "";
}

.icon-before.icon-institute-b:before,
.icon-after.icon-institute-b:after,
.icon-only.icon-institute-b:before,
.icon-institute-b.vjs-big-play-button:before,
.icon-institute-b:before {
  content: "";
}

.icon-before.icon-institute-f:before,
.icon-after.icon-institute-f:after,
.icon-only.icon-institute-f:before,
.icon-institute-f.vjs-big-play-button:before,
.icon-institute-f:before {
  content: "";
}

.icon-before.icon-institute-fw:before,
.icon-after.icon-institute-fw:after,
.icon-only.icon-institute-fw:before,
.icon-institute-fw.vjs-big-play-button:before,
.icon-institute-fw:before {
  content: "";
}

.icon-before.icon-institute-w:before,
.icon-after.icon-institute-w:after,
.icon-only.icon-institute-w:before,
.icon-institute-w.vjs-big-play-button:before,
.icon-institute-w:before {
  content: "";
}

.icon-before.icon-institute-a:before,
.icon-after.icon-institute-a:after,
.icon-only.icon-institute-a:before,
.icon-institute-a.vjs-big-play-button:before,
.icon-institute-a:before {
  content: "";
}

.icon-before.icon-interessenten:before,
.icon-after.icon-interessenten:after,
.icon-only.icon-interessenten:before,
.icon-interessenten.vjs-big-play-button:before,
.icon-interessenten:before {
  content: "";
}

.icon-before.icon-default:before,
.icon-after.icon-default:after,
.icon-only.icon-default:before,
.icon-default.vjs-big-play-button:before,
.icon-default:before {
  content: "";
}

.icon-before.icon-clinic-forensik:before,
.icon-after.icon-clinic-forensik:after,
.icon-only.icon-clinic-forensik:before,
.icon-clinic-forensik.vjs-big-play-button:before,
.icon-clinic-forensik:before {
  content: "";
}

.icon-before.icon-clinic-reha:before,
.icon-after.icon-clinic-reha:after,
.icon-only.icon-clinic-reha:before,
.icon-clinic-reha.vjs-big-play-button:before,
.icon-clinic-reha:before {
  content: "";
}

.icon-before.icon-clinic-institut:before,
.icon-after.icon-clinic-institut:after,
.icon-only.icon-clinic-institut:before,
.icon-clinic-institut.vjs-big-play-button:before,
.icon-clinic-institut:before {
  content: "";
}

.icon-before.icon-leistungsangebot:before,
.icon-after.icon-leistungsangebot:after,
.icon-only.icon-leistungsangebot:before,
.icon-leistungsangebot.vjs-big-play-button:before,
.icon-leistungsangebot:before {
  content: "";
}

.icon-before.icon-whatsapp:before,
.icon-after.icon-whatsapp:after,
.icon-only.icon-whatsapp:before,
.icon-whatsapp.vjs-big-play-button:before,
.icon-whatsapp:before {
  content: "";
}

.icon-before.icon-arrow-left:before,
.icon-after.icon-arrow-left:after,
.icon-only.icon-arrow-left:before,
.icon-arrow-left.vjs-big-play-button:before,
.icon-arrow-left:before {
  content: "";
}

.icon-before.icon-arrow-right:before,
.icon-after.icon-arrow-right:after,
.icon-only.icon-arrow-right:before,
.icon-arrow-right.vjs-big-play-button:before,
.icon-arrow-right:before {
  content: "";
}

.icon-before.icon-arrow-small:before,
.icon-after.icon-arrow-small:after,
.icon-only.icon-arrow-small:before,
.icon-arrow-small.vjs-big-play-button:before,
.icon-arrow-small:before {
  content: "";
}

.icon-before.icon-arrow-top:before,
.icon-after.icon-arrow-top:after,
.icon-only.icon-arrow-top:before,
.icon-arrow-top.vjs-big-play-button:before,
.icon-arrow-top:before {
  content: "";
}

.icon-before.icon-clinic-aerzte:before,
.icon-after.icon-clinic-aerzte:after,
.icon-only.icon-clinic-aerzte:before,
.icon-clinic-aerzte.vjs-big-play-button:before,
.icon-clinic-aerzte:before {
  content: "";
}

.icon-before.icon-clinic-eingliederung:before,
.icon-after.icon-clinic-eingliederung:after,
.icon-only.icon-clinic-eingliederung:before,
.icon-clinic-eingliederung.vjs-big-play-button:before,
.icon-clinic-eingliederung:before {
  content: "";
}

.icon-before.icon-clinic-krankenhaus:before,
.icon-after.icon-clinic-krankenhaus:after,
.icon-only.icon-clinic-krankenhaus:before,
.icon-clinic-krankenhaus.vjs-big-play-button:before,
.icon-clinic-krankenhaus:before {
  content: "";
}

.icon-before.icon-clinic-patienten:before,
.icon-after.icon-clinic-patienten:after,
.icon-only.icon-clinic-patienten:before,
.icon-clinic-patienten.vjs-big-play-button:before,
.icon-clinic-patienten:before {
  content: "";
}

.icon-before.icon-clinic-poliklinikum:before,
.icon-after.icon-clinic-poliklinikum:after,
.icon-only.icon-clinic-poliklinikum:before,
.icon-clinic-poliklinikum.vjs-big-play-button:before,
.icon-clinic-poliklinikum:before {
  content: "";
}

.icon-before.icon-clinic-pflege:before,
.icon-after.icon-clinic-pflege:after,
.icon-only.icon-clinic-pflege:before,
.icon-clinic-pflege.vjs-big-play-button:before,
.icon-clinic-pflege:before {
  content: "";
}

.icon-before.icon-clinic-mobilepflege:before,
.icon-after.icon-clinic-mobilepflege:after,
.icon-only.icon-clinic-mobilepflege:before,
.icon-clinic-mobilepflege.vjs-big-play-button:before,
.icon-clinic-mobilepflege:before {
  content: "";
}

.icon-before.icon-clinic-cross-scale:before,
.icon-after.icon-clinic-cross-scale:after,
.icon-only.icon-clinic-cross-scale:before,
.icon-clinic-cross-scale.vjs-big-play-button:before,
.icon-clinic-cross-scale:before {
  content: "";
}

.icon-before.icon-clinic-seniors:before,
.icon-after.icon-clinic-seniors:after,
.icon-only.icon-clinic-seniors:before,
.icon-clinic-seniors.vjs-big-play-button:before,
.icon-clinic-seniors:before {
  content: "";
}

.icon-before.icon-clinic-standorte:before,
.icon-after.icon-clinic-standorte:after,
.icon-only.icon-clinic-standorte:before,
.icon-clinic-standorte.vjs-big-play-button:before,
.icon-clinic-standorte:before {
  content: "";
}

.icon-before.icon-clinic-sporty:before,
.icon-after.icon-clinic-sporty:after,
.icon-only.icon-clinic-sporty:before,
.icon-clinic-sporty.vjs-big-play-button:before,
.icon-clinic-sporty:before {
  content: "";
}

.icon-before.icon-clinic-care:before,
.icon-after.icon-clinic-care:after,
.icon-only.icon-clinic-care:before,
.icon-clinic-care.vjs-big-play-button:before,
.icon-clinic-care:before {
  content: "";
}

.icon-before.icon-close:before, nav.mainnav.is-active .icon-before.navigation-toggle:before, .mod-header-contact .icon-before.toggleBtn.btn-active:before,
.icon-after.icon-close:after,
.icon-only.icon-close:before,
nav.mainnav.is-active .icon-only.navigation-toggle:before,
nav.mainnav.is-active .navigation-toggle.vjs-big-play-button:before,
.mod-header-contact .icon-only.toggleBtn.btn-active:before,
.mod-header-contact .toggleBtn.btn-active.vjs-big-play-button:before,
.icon-close.vjs-big-play-button:before,
.icon-close:before,
nav.mainnav.is-active .navigation-toggle:before,
.mod-header-contact .toggleBtn.btn-active:before {
  content: "";
}

.icon-before.icon-close-dropdown:before,
.icon-after.icon-close-dropdown:after,
.icon-only.icon-close-dropdown:before,
.icon-close-dropdown.vjs-big-play-button:before,
.icon-close-dropdown:before {
  content: "";
}

.icon-before.icon-download:before,
.icon-after.icon-download:after,
.icon-only.icon-download:before,
.icon-download.vjs-big-play-button:before,
.icon-download:before {
  content: "";
}

.icon-before.icon-facebook:before,
.icon-after.icon-facebook:after,
.icon-only.icon-facebook:before,
.icon-facebook.vjs-big-play-button:before,
.icon-facebook:before {
  content: "";
}

.icon-before.icon-fax:before,
.icon-after.icon-fax:after,
.icon-only.icon-fax:before,
.icon-fax.vjs-big-play-button:before,
.icon-fax:before {
  content: "";
}

.icon-before.icon-googleplus:before,
.icon-after.icon-googleplus:after,
.icon-only.icon-googleplus:before,
.icon-googleplus.vjs-big-play-button:before,
.icon-googleplus:before {
  content: "";
}

.icon-before.icon-karriere:before,
.icon-after.icon-karriere:after,
.icon-only.icon-karriere:before,
.icon-karriere.vjs-big-play-button:before,
.icon-karriere:before {
  content: "";
}

.icon-before.icon-kompetenzen:before,
.icon-after.icon-kompetenzen:after,
.icon-only.icon-kompetenzen:before,
.icon-kompetenzen.vjs-big-play-button:before,
.icon-kompetenzen:before {
  content: "";
}

.icon-before.icon-kontakt:before,
.icon-after.icon-kontakt:after,
.icon-only.icon-kontakt:before,
.icon-kontakt.vjs-big-play-button:before,
.icon-kontakt:before {
  content: "";
}

.icon-before.icon-mail:before,
.icon-after.icon-mail:after,
.icon-only.icon-mail:before,
.icon-mail.vjs-big-play-button:before,
.icon-mail:before {
  content: "";
}

.icon-before.icon-mediathek-documents:before,
.icon-after.icon-mediathek-documents:after,
.icon-only.icon-mediathek-documents:before,
.icon-mediathek-documents.vjs-big-play-button:before,
.icon-mediathek-documents:before {
  content: "";
}

.icon-before.icon-mediathek-images:before,
.icon-after.icon-mediathek-images:after,
.icon-only.icon-mediathek-images:before,
.icon-mediathek-images.vjs-big-play-button:before,
.icon-mediathek-images:before {
  content: "";
}

.icon-before.icon-mediathek-multimedia:before,
.icon-after.icon-mediathek-multimedia:after,
.icon-only.icon-mediathek-multimedia:before,
.icon-mediathek-multimedia.vjs-big-play-button:before,
.icon-mediathek-multimedia:before {
  content: "";
}

.icon-before.icon-mediathek-press:before,
.icon-after.icon-mediathek-press:after,
.icon-only.icon-mediathek-press:before,
.icon-mediathek-press.vjs-big-play-button:before,
.icon-mediathek-press:before {
  content: "";
}

.icon-before.icon-mediathek-richtlinien:before,
.icon-after.icon-mediathek-richtlinien:after,
.icon-only.icon-mediathek-richtlinien:before,
.icon-mediathek-richtlinien.vjs-big-play-button:before,
.icon-mediathek-richtlinien:before {
  content: "";
}

.icon-before.icon-menu:before,
.icon-after.icon-menu:after,
.icon-only.icon-menu:before,
.icon-menu.vjs-big-play-button:before,
.icon-menu:before {
  content: "";
}

.icon-before.icon-open-dropdown:before,
.icon-after.icon-open-dropdown:after,
.icon-only.icon-open-dropdown:before,
.icon-open-dropdown.vjs-big-play-button:before,
.icon-open-dropdown:before {
  content: "";
}

.icon-before.icon-paragraph:before,
.icon-after.icon-paragraph:after,
.icon-only.icon-paragraph:before,
.icon-paragraph.vjs-big-play-button:before,
.icon-paragraph:before {
  content: "";
}

.icon-before.icon-password-secured:before,
.icon-after.icon-password-secured:after,
.icon-only.icon-password-secured:before,
.icon-password-secured.vjs-big-play-button:before,
.icon-password-secured:before {
  content: "";
}

.icon-before.icon-phone:before,
.icon-after.icon-phone:after,
.icon-only.icon-phone:before,
.icon-phone.vjs-big-play-button:before,
.icon-phone:before {
  content: "";
}

.icon-before.icon-presse:before,
.icon-after.icon-presse:after,
.icon-only.icon-presse:before,
.icon-presse.vjs-big-play-button:before,
.icon-presse:before {
  content: "";
}

.icon-before.icon-print:before,
.icon-after.icon-print:after,
.icon-only.icon-print:before,
.icon-print.vjs-big-play-button:before,
.icon-print:before {
  content: "";
}

.icon-before.icon-save:before,
.icon-after.icon-save:after,
.icon-only.icon-save:before,
.icon-save.vjs-big-play-button:before,
.icon-save:before {
  content: "";
}

.icon-before.icon-share:before,
.icon-after.icon-share:after,
.icon-only.icon-share:before,
.icon-share.vjs-big-play-button:before,
.icon-share:before {
  content: "";
}

.icon-before.icon-standorte:before,
.icon-after.icon-standorte:after,
.icon-only.icon-standorte:before,
.icon-standorte.vjs-big-play-button:before,
.icon-standorte:before {
  content: "";
}

.icon-before.icon-suche:before,
.icon-after.icon-suche:after,
.icon-only.icon-suche:before,
.icon-suche.vjs-big-play-button:before,
.icon-suche:before {
  content: "";
}

.icon-before.icon-suche-fachgebiet:before,
.icon-after.icon-suche-fachgebiet:after,
.icon-only.icon-suche-fachgebiet:before,
.icon-suche-fachgebiet.vjs-big-play-button:before,
.icon-suche-fachgebiet:before {
  content: "";
}

.icon-before.icon-suche-person:before,
.icon-after.icon-suche-person:after,
.icon-only.icon-suche-person:before,
.icon-suche-person.vjs-big-play-button:before,
.icon-suche-person:before {
  content: "";
}

.icon-before.icon-suche-region:before,
.icon-after.icon-suche-region:after,
.icon-only.icon-suche-region:before,
.icon-suche-region.vjs-big-play-button:before,
.icon-suche-region:before {
  content: "";
}

.icon-before.icon-twitter:before,
.icon-after.icon-twitter:after,
.icon-only.icon-twitter:before,
.icon-twitter.vjs-big-play-button:before,
.icon-twitter:before {
  content: "";
}

.icon-before.icon-unternehmen:before,
.icon-after.icon-unternehmen:after,
.icon-only.icon-unternehmen:before,
.icon-unternehmen.vjs-big-play-button:before,
.icon-unternehmen:before {
  content: "";
}

.icon-before.icon-werte1:before,
.icon-after.icon-werte1:after,
.icon-only.icon-werte1:before,
.icon-werte1.vjs-big-play-button:before,
.icon-werte1:before {
  content: "";
}

.icon-before.icon-werte2:before,
.icon-after.icon-werte2:after,
.icon-only.icon-werte2:before,
.icon-werte2.vjs-big-play-button:before,
.icon-werte2:before {
  content: "";
}

.icon-before.icon-werte3:before,
.icon-after.icon-werte3:after,
.icon-only.icon-werte3:before,
.icon-werte3.vjs-big-play-button:before,
.icon-werte3:before {
  content: "";
}

.icon-before.icon-werte4:before,
.icon-after.icon-werte4:after,
.icon-only.icon-werte4:before,
.icon-werte4.vjs-big-play-button:before,
.icon-werte4:before {
  content: "";
}

.icon-before.icon-werte5:before,
.icon-after.icon-werte5:after,
.icon-only.icon-werte5:before,
.icon-werte5.vjs-big-play-button:before,
.icon-werte5:before {
  content: "";
}

.icon-before.icon-werte6:before,
.icon-after.icon-werte6:after,
.icon-only.icon-werte6:before,
.icon-werte6.vjs-big-play-button:before,
.icon-werte6:before {
  content: "";
}

.icon-before.icon-werte7:before,
.icon-after.icon-werte7:after,
.icon-only.icon-werte7:before,
.icon-werte7.vjs-big-play-button:before,
.icon-werte7:before {
  content: "";
}

.icon-before.icon-xing:before,
.icon-after.icon-xing:after,
.icon-only.icon-xing:before,
.icon-xing.vjs-big-play-button:before,
.icon-xing:before {
  content: "";
}

.icon-before.icon-youtube:before,
.icon-after.icon-youtube:after,
.icon-only.icon-youtube:before,
.icon-youtube.vjs-big-play-button:before,
.icon-youtube:before {
  content: "";
}

.icon-before.icon-zoom-in:before,
.icon-after.icon-zoom-in:after,
.icon-only.icon-zoom-in:before,
.icon-zoom-in.vjs-big-play-button:before,
.icon-zoom-in:before {
  content: "";
}

.icon-before.icon-zoom-out:before,
.icon-after.icon-zoom-out:after,
.icon-only.icon-zoom-out:before,
.icon-zoom-out.vjs-big-play-button:before,
.icon-zoom-out:before {
  content: "";
}

.icon-before.icon-clinic-test-tube:before,
.icon-after.icon-clinic-test-tube:after,
.icon-only.icon-clinic-test-tube:before,
.icon-clinic-test-tube.vjs-big-play-button:before,
.icon-clinic-test-tube:before {
  content: "";
}

.icon-before.icon-yt:before,
.icon-after.icon-yt:after,
.icon-only.icon-yt:before,
.icon-yt.vjs-big-play-button:before,
.icon-yt:before {
  content: "";
}

.vjs-default-skin .vjs-big-play-button:before {
  content: "\e90e";
}

/**
 * brandung layout.scss v2.0.0
 *
 * @require vendor/gridset
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global Layout
	 ========================================================================== */
* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  width: 100%;
  position: relative;
}

body {
  color: #5f5d5e;
  font-size: 87.5%;
  line-height: 1.6;
  font-family: 'Open Sans', sans-serif;
  background: transparent !important;
}

body.main-nav__overlay:before {
  content: '';
  display: block;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  /*position: absolute;*/
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

main {
  background: none;
}

main a {
  color: #ff7400;
  text-decoration: none;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

main a:hover {
  color: #ff3300;
  text-decoration: underline;
}

main a.blue {
  color: #134894;
}

main a.blue:hover {
  color: #4f84d0;
  text-decoration: underline;
}

main a.blue[class*="icon-"]:hover {
  text-decoration: none;
}

main a[class*="icon-"]:hover {
  text-decoration: none;
}

main a[class*="icon-"]:hover span {
  text-decoration: underline;
}

/* ==========================================================================
  Content Elements
  ========================================================================== */
noscript {
  color: #fff;
  margin: 0.2em 0;
  background: #5f5d5e;
  padding: 0.2em 0;
  text-align: center;
}

noscript p {
  margin: 0 auto;
  max-width: 1200;
}

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

hr {
  margin: 20px 0;
}

.frame-type-header h1 {
  color: #134894;
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  margin: 25px 15px 15px 15px;
  font-size: 30px;
  line-height: 35px;
  margin: 25px 30px 15px 30px;
}

.subpage-headline h1 {
  font-size: 20px;
  line-height: 28px;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 47px;
  font-size: 31px;
  line-height: 40px;
}

.subpage-headline h1.single-line {
  margin-top: 74px;
}

.subpage-headline h1 span {
  display: block;
}

.subpage-headline.is-in-other h1 {
  color: #fff;
  margin-bottom: 0;
}

.frame-layout-90,
.frame-layout-90 h1,
.frame-layout-90 h2,
.frame-layout-90 h3,
.frame-layout-90 p {
  color: #134894 !important;
}

.frame-content-box {
  margin-right: auto;
  margin-left: auto;
  max-width: 83.123em;
}

/* BE-Layouts */
.corporate_sub_nomenu #main > .container {
  padding-right: 60px;
  padding-left: 47px;
}

/* ==========================================================================
   media queries -
   for viewport detection only!
   ========================================================================== */
/* Featurephones and Smartphones (portrait) */
body:after {
  content: 'featurephone';
  position: absolute;
  top: -100em;
  left: -100em;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Smartphones (landscape)  */
body:after {
  content: 'smartphone';
  position: absolute;
  top: -100em;
  left: -100em;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Tablet (portrait) */
body:after {
  content: 'tablet';
  position: absolute;
  top: -100em;
  left: -100em;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Desktop */
/* Full HD and Retina */
/* Full HD and xxl */
/**
 * brandung grid.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Grid
   ========================================================================== */
.container {
  margin-right: auto;
  margin-left: auto;
  /*padding-left:  ($gutter / 2);
	padding-right: ($gutter / 2);*/
  /*min-width: ($container-min-width / $body-font-size-px) + em;*/
  max-width: 85.71429em;
  background: transparent;
}

.container:before, .container:after {
  content: " ";
  display: table;
}

.container:after {
  clear: both;
}

.container h1 {
  margin-top: 0;
}

.row {
  /*margin-left:  ($gutter / -2);
	margin-right: ($gutter / -2);*/
  margin-bottom: 15px;
}

.row:before, .row:after {
  content: " ";
  display: table;
}

.row:after {
  clear: both;
}

.col-xs-1, .col-s-1, .col-m-1, .col-l-1, .col-xl-1, .col-xs-2, .col-s-2, .col-m-2, .col-l-2, .col-xl-2, .col-xs-3, .col-s-3, .col-m-3, .col-l-3, .col-xl-3, .col-xs-4, .col-s-4, .col-m-4, .col-l-4, .col-xl-4, .col-xs-5, .col-s-5, .col-m-5, .col-l-5, .col-xl-5, .col-xs-6, .col-s-6, .col-m-6, .accordion__list li, .col-l-6, .col-xl-6, .col-xs-7, .col-s-7, .col-m-7, .col-l-7, .col-xl-7, .col-xs-8, .col-s-8, .col-m-8, .col-l-8, .col-xl-8, .col-xs-9, .col-s-9, .col-m-9, .col-l-9, .col-xl-9, .col-xs-10, .col-s-10, .col-m-10, .col-l-10, .col-xl-10, .col-xs-11, .col-s-11, .col-m-11, .col-l-11, .col-xl-11, .col-xs-12, .header__teaser, .accordion__list li, .col-s-12, .col-m-12, .col-l-12, .col-xl-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .header__teaser, .accordion__list li {
  float: left;
}

.col-xs-1 {
  width: 8.33333%;
}

.col-xs-2 {
  width: 16.66667%;
}

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

.col-xs-4 {
  width: 33.33333%;
}

.col-xs-5 {
  width: 41.66667%;
}

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

.col-xs-7 {
  width: 58.33333%;
}

.col-xs-8 {
  width: 66.66667%;
}

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

.col-xs-10 {
  width: 83.33333%;
}

.col-xs-11 {
  width: 91.66667%;
}

.col-xs-12, .header__teaser, .accordion__list li {
  width: 100%;
}

.col-s-1, .col-s-2, .col-s-3, .col-s-4, .col-s-5, .col-s-6, .col-s-7, .col-s-8, .col-s-9, .col-s-10, .col-s-11, .col-s-12 {
  float: left;
}

.col-s-1 {
  width: 8.33333%;
}

.col-s-2 {
  width: 16.66667%;
}

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

.col-s-4 {
  width: 33.33333%;
}

.col-s-5 {
  width: 41.66667%;
}

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

.col-s-7 {
  width: 58.33333%;
}

.col-s-8 {
  width: 66.66667%;
}

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

.col-s-10 {
  width: 83.33333%;
}

.col-s-11 {
  width: 91.66667%;
}

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

.col-m-1, .col-m-2, .col-m-3, .col-m-4, .col-m-5, .col-m-6, .accordion__list li, .col-m-7, .col-m-8, .col-m-9, .col-m-10, .col-m-11, .col-m-12 {
  float: left;
}

.col-m-1 {
  width: 8.33333%;
}

.col-m-2 {
  width: 16.66667%;
}

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

.col-m-4 {
  width: 33.33333%;
}

.col-m-5 {
  width: 41.66667%;
}

.col-m-6, .accordion__list li {
  width: 50%;
}

.col-m-7 {
  width: 58.33333%;
}

.col-m-8 {
  width: 66.66667%;
}

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

.col-m-10 {
  width: 83.33333%;
}

.col-m-11 {
  width: 91.66667%;
}

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

/**
 * brandung sprite-icons.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-03-14
 * MIT License (MIT)
 */
/* ==========================================================================
   Sprites
   ========================================================================== */
/**
 * brandung typo.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-03-14
 * MIT License (MIT)
 */
/* ==========================================================================
   Webfonts
   ========================================================================== */
h1,
.h1 {
  font-size: 60px;
  font-size: 3.75rem;
  font-weight: 400;
  color: #707173;
  line-height: 52px;
  margin: 65px 0;
}

h2,
.h2 {
  font-size: 52px;
  font-size: 3.25rem;
  font-weight: 400;
  color: #707173;
  line-height: 46px;
  margin: 15px 0;
}

h3,
.h3 {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #707173;
  line-height: 42px;
}

h4,
.h4 {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 400;
  color: #707173;
  line-height: 32px;
}

.headline-bigcaps {
  font-size: 30px;
  font-size: 1.875rem;
  color: #134894;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 50px;
}

.headline-bigcaps span {
  font-size: 52px;
  font-size: 3.25rem;
}

h5,
.h5,
.text-no-icon__headline,
.sub-navigation__header,
.sub-navigation-mobile__header,
.tx-indexedsearch__headline,
.sub-navigation__list,
.sub-navigation-mobile__list,
.news-list__headline {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #707173;
  line-height: 26px;
  margin: 5px 0;
}

h6,
.h6 {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #ff7400;
  line-height: 18px;
  margin: 5px 0;
}

.h7, .tx-indexedsearch time,
.news-extention-front-page__highlight span,
.news-extention-front-page__last-article span {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  color: #ff7400;
}

.col-l-8 h1,
.col-l-8 .h1 {
  margin-top: 16px;
  margin-bottom: 20px;
}

.col-l-8 h2,
.col-l-8 .h2 {
  margin-top: 22px;
}

.col-l-8 h3,
.col-l-8 .h3 {
  margin-top: 30px;
  margin-bottom: 20px;
}

p {
  overflow: hidden;
}

.ci {
  color: #ff7400;
}

ul > p {
  display: none;
}

li > p {
  display: none !important;
}

.subtext {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #707173;
}

.parent-sub-navigation, .sub-navigation__headline, .sub-navigation-mobile__headline {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #707173;
}

.sub-sub-navigation, .sub-navigation__list-item li a, .sub-navigation-mobile__list-item li a {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  color: #707173;
}

figcaption,
.figure-caption {
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 300;
  color: #707173;
}

/**
 * brandung helpers.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-03-14
 * MIT License (MIT)
 */
/* ==========================================================================
   Helper classes
   ========================================================================== */

.container-fluid,
.header__scroll-smaller {
  width: 100%;
  background: transparent;
}


.full-width-transparent {
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  padding: 30px 0 120px 0;
  position: absolute;
  z-index: 1;
  margin-top: -150px;
}


.content-fluid {
  position: relative;
}


.content-fluid h1 {
  margin-bottom: 52px;
  font-weight: 600;
}

.clearfix, main:after, hr {
  display: block;
  content: ".";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden;
}

.clear-container {
  width: 100%;
}

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

.slick-initialized.mod-stage-slider .slick-dots, .accordion__list ul, .breadcrumb ul, .media-library, .tx-indexedsearch, .pagination ul, .news-list, .gallery .slick-dots li, .tab-filter, .header-pages__stage .slick-dots,
.unstyled,
.sub-navigation ul,
.sub-navigation-mobile ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blueText {
  color: #134894 !important;
}

.orangeText {
  color: #ff7400 !important;
}

.whiteText {
  color: #fff;
}

.left {
  display: inline;
  float: left;
}

.right {
  display: inline;
  float: right;
}

.center {
  display: block;
  margin: 0 auto;
  text-align: center;
}

.clear {
  clear: both;
}

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

.align-left,
.text-left {
  text-align: left;
}

.align-center,
.footer__top-icon li,
.text-center {
  text-align: center;
}

.nopadding-h {
  padding-left: 0;
  padding-right: 0;
}


.nopadding-left {
  padding-left: 0;
}


.nopadding {
  padding: 0;
}


.padding {
  padding: 20px 0;
}

.nomargin-bottom {
  margin-bottom: 0 !important;
}

.show-grid [class*="col-"] {
  background: #ccc;
  outline: 1px solid red;
}

.show-grid header {
  background: rgba(0, 255, 0, 0.5);
}

.show-grid footer {
  background: rgba(0, 255, 255, 0.5);
}


.margin-left {
  margin-left: 0;
  margin-right: 20px;
}


.margin-left img {
  margin: 0;
}

.mod-header-contact .toggleBtn, .contact-teaser__description a, .share-me .shariff-button a, .news-extention-front-page__highlight a, .news-extention-front-page__last-article a, .downloads, .sub-navigation a, .sub-navigation li a, .sub-navigation__list-item li a, .sub-navigation-mobile a, .sub-navigation-mobile li a, .sub-navigation-mobile__list-item li a, .breadcrumb li:last-child a, .breadcrumb li a, .media-library a, .teasers__small .teasers__description a, .teasers__medium .teasers__description a, .teasers__large .teasers__description a, .tx-indexedsearch__subline a, .news-list__subline a, .teaser-width-content-fluid__subline a,
.no-link-style {
  text-decoration: none;
  border: none;
}

.mod-header-contact .toggleBtn:hover, .contact-teaser__description a:hover, .share-me .shariff-button a:hover, .news-extention-front-page__highlight a:hover, .news-extention-front-page__last-article a:hover, .downloads:hover, .sub-navigation a:hover, .sub-navigation__list-item li a:hover, .sub-navigation-mobile a:hover, .sub-navigation-mobile__list-item li a:hover, .breadcrumb li a:hover, .media-library a:hover, .teasers__small .teasers__description a:hover, .teasers__medium .teasers__description a:hover, .teasers__large .teasers__description a:hover, .tx-indexedsearch__subline a:hover, .news-list__subline a:hover, .teaser-width-content-fluid__subline a:hover,
.no-link-style:hover {
  border: none;
}


.transparent {
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  padding: 30px 0 120px 0;
  position: absolute;
  z-index: 1;
  margin-top: -150px;
}


.border {
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
}


.no-marginbottom {
  margin-bottom: 0;
}


.bold-orange {
  font-weight: 800;
  color: #ff7400;
}


.button-margin-top {
  margin-top: 50px;
}

.events__subline a,
.no-style-decoration a {
  color: #ff7400;
  text-decoration: none;
  border-bottom: none;
}

.events__subline a:hover,
.no-style-decoration a:hover {
  border: none;
}

.events__subline a:visited,
.no-style-decoration a:visited {
  color: #ff7400;
  border: none;
}


.box-content {
  padding: 30px 0;
  position: relative;
}


.box-content a {
  color: #ff7400;
  text-decoration: none;
}


.box-content a:after {
  color: #ff7400;
}


.box-content h4 {
  color: #134894;
  margin-bottom: 20px;
}


.box-content__orange a:after {
  color: #fff;
}


.box-content__orange-library a {
  text-align: center;
}


.box-content__orange-library a:before {
  font-size: 32px;
  font-size: 2rem;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  position: absolute;
  color: #fff;
  right: 0;
  left: 0;
  top: 50%;
  margin-top: -16px;
  margin-right: -140px;
}


.nomargin-h {
  margin: 0;
}


.content-fluid-transparent {
  clear: both;
  padding: 0;
}


.clinic-pages h3 {
  color: #134894;
}


.clinic-pages .clinic-pages__right-article ul {
  padding-left: 0;
}


.clinic-pages .clinic-pages__right-article ul li {
  list-style: none;
}


.clinic-pages .clinic-pages__right-article ul li a {
  color: #134894;
  text-decoration: none;
  font-weight: 700;
}

.fancybox-title-inside-wrap {
  overflow: hidden;
}

.fancybox-skin {
  background: #fff;
}


.nopadding-bottom {
  padding-bottom: 0 !important;
}

.util-hidden {
  display: none;
}

.cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* First headline should top-align with left sub menu */
.corporate_sub_withmenu #main .col-l-8 .frame:first-child h3,
.location_sub #main .col-l-8 .frame:first-child h3 {
  margin-top: -5px;
}

/**
 * brandung buttons.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-03-14
 * MIT License (MIT)
 */
/* ==========================================================================
   Buttons
   ========================================================================== */
main .button-orange a,
.button-orange a {
  padding: 15px 30px;
  background: #ff7400;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  -webkit-box-shadow: 4px 2px 5px 0 rgba(91, 91, 91, 0.75);
          box-shadow: 4px 2px 5px 0 rgba(91, 91, 91, 0.75);
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

main .button-orange a:after,
.button-orange a:after {
  font-size: 40px;
  font-size: 2.5rem;
}

main .button-orange a:visited,
.button-orange a:visited {
  background: #ff7400;
  color: #fff;
}

main .button-orange a:hover,
.button-orange a:hover {
  background: #ff5e00;
}

.button-orange-library a {
  padding: 15px 30px;
  background: #ff7400;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  -webkit-box-shadow: 4px 2px 5px 0 rgba(91, 91, 91, 0.75);
          box-shadow: 4px 2px 5px 0 rgba(91, 91, 91, 0.75);
}

.button-orange-library a:after {
  font-size: 40px;
  font-size: 2.5rem;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.button-orange-library a:visited {
  background: #ff7400;
  color: #fff;
}

.button-blue a {
  padding: 15px 30px;
  background: #134894;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
}

.button-blue a:after {
  font-size: 40px;
  font-size: 2.5rem;
}

.button-blue a:visited {
  color: #fff;
}

.button-bordered {
  padding: 15px 30px 15px 40px;
  border: 2px solid #134894;
  color: #134894;
  text-decoration: none;
  border-radius: 50px;
  width: 100%;
}

.button-bordered:after {
  font-size: 40px;
  font-size: 2.5rem;
}

.button-bordered:visited {
  color: #134894;
  border-color: #134894;
}

.button-bordered:hover {
  text-decoration: none;
  color: #4f84d0;
  border-color: #4f84d0;
}

.button-bordered:hover span {
  text-decoration: underline;
}

.button-grey-bordered a {
  padding: 15px 30px 15px 60px;
  border: 2px solid #5f5d5e;
  color: #134894;
  text-decoration: none;
  border-radius: 50px;
  position: relative;
}

.button-grey-bordered a:before {
  font-size: 40px;
  font-size: 2.5rem;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  color: #ff7400;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -20px;
  padding-right: 20px;
}

.button-grey-bordered a:visited {
  color: #134894;
  border-color: #134894;
}

.button-ameos {
  padding: 0px 5px;
  text-align: center;
}

main .button-orange.button-ameos a, .button-orange.button-ameos a {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

/**
 * brandung footer.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  position: absolute;
  width: 100%;
  background: #707173;
}

.footer h5 {
  color: #fff;
  margin-top: 40px;
}

.footer p {
  font-size: 12px;
  font-size: 0.75rem;
}

.footer p a:after {
  font-size: 16px;
  font-size: 1rem;
}

.footer__content {
  padding: 0;
}

.footer li {
  list-style-type: none;
  line-height: 32px;
}

.footer li > p {
  display: block !important;
}

.footer__top {
  background: #8d8d8f;
  color: #fff;
  height: 100px;
}

.footer__top > div {
  max-width: 1170px;
  display: block;
  margin: 0 auto;
}

.footer__top .container .row {
  margin: 0 !important;
}

.footer__top-icon {
  margin: 0;
  padding: 0;
  width: auto;
  float: right;
}

.footer__top-icon a {
  text-decoration: none;
  color: #fff;
  font-size: 32px;
  font-size: 2rem;
  display: block;
  height: 100%;
}

.footer__top-icon .icon-share:hover {
  cursor: pointer;
}

.footer__top-icon .theme-color {
  float: right !important;
}

.footer__top-icon p {
  padding: 0;
  color: #fff;
  font-weight: 600;
  font-size: 11px;
  margin-top: 0;
  line-height: 15px;
}

.footer__top-icon li {
  border-left: 2px solid #707173;
  float: left;
  width: 70px;
  height: 60px;
  padding: 0;
}

.footer__top-icon li span {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  display: block;
}

.footer__top-icon li.print {
  display: none;
}

.footer__top-icon span {
  padding-left: 10px;
  padding-top: 10px;
}

.footer__top-icon > li {
  width: 90px;
  height: 100px;
  padding: 10px 5px;
  max-width: 100px;
  background: transparent;
  float: right;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.footer__top-icon > li.print, .footer__top-icon > li.data-protection {
  display: block;
}

.footer__top-icon > li:first-child span,
.footer__top-icon > li.print span,
.footer__top-icon > li.data-protection span,
.footer__top-icon > li.sharing-btn > span,
.footer__top-icon > li.scroll-top span {
  padding: 10px 10px 0 0;
}

.footer__top-icon > li:hover, .footer__top-icon > li.opened {
  background: #b0b0b0;
}

.footer__top-icon-content {
  overflow: hidden;
  float: none;
  border-bottom: 2px solid #707173;
  float: right;
  border: none;
}

.footer__bottom {
  background: #707173;
  color: #fff;
  padding: 15px;
  overflow: auto;
}

.footer__description {
  width: 42%;
  display: inline-block;
  float: left;
  margin-right: 30px;
}

.footer__description p > a {
  color: #ff7400;
  text-decoration: none;
}

.footer__description p > a:hover span {
  text-decoration: underline;
}

.footer__description a {
  text-decoration: none;
}

.footer__description > div p {
  display: inline-block;
  padding-right: 30px;
}

.footer__description > div a {
  display: inline-block;
  vertical-align: text-bottom;
  margin: 0 7px;
}

.footer__description.icon-only, .vjs-default-skin .footer__description.vjs-big-play-button:before, .footer__description.vjs-big-play-button {
  padding-left: 2px;
}

.footer__description-icon {
  font-size: 20px;
  font-size: 1.25rem;
  width: 50px;
  height: 50px;
  display: block;
  background: #fff;
  color: #707173;
  border-radius: 50%;
  padding-top: 5px;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.footer__description-icon:hover {
  background: rgba(255, 255, 255, 0.85);
}

.footer__navigation {
  width: 50%;
  float: left;
}

.footer__navigation-item {
  overflow: auto;
  padding: 0;
  font-size: 12px;
  font-size: 0.75rem;
  /*li {
			width: 50%;
			display: inline-block;
			float: left;
			line-height: 25px;

			@include respond-min($breakpoint-min-l){
				width: 33%;
			}
		}*/
}

.footer__navigation-item .item__sublist {
  padding: 0;
  width: 120px;
  float: left;
}

.footer__navigation-item .item__sublist:last-of-type li:last-of-type {
  display: none;
}

.footer__navigation-item li {
  line-height: 25px;
}

.footer__navigation-item a {
  color: #fff;
  text-decoration: none;
}

.footer__navigation-item a:hover {
  text-decoration: underline;
}

/**
 * brandung navigation.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Navigation
   ========================================================================== */
.navigationBg {
  background: white;
  height: 60px;
  position: absolute;
  left: 0;
  right: 186px;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
  height: 100px;
  right: 140px;
}

.logo {
  background: url("/typo3conf/ext/bra_projectfiles_ameos/Resources/Public/img/ameos-logo.png");
  background-repeat: no-repeat;
  background-size: 100px;
  width: 105px;
  height: 50px;
  float: left;
  text-indent: -90em;
  overflow: hidden;
  bottom: 0;
  margin: 10px 0 0 10px;
  position: relative;
  z-index: 10;
  top: 5px;
  background-size: 130px;
  margin: 25px 20px 0 15px;
  width: 130px;
  z-index: 100;
}

.smallNav .logo {
  margin-top: 7px;
}

nav.mainnav {
  background-color: #fff;
  min-width: 800px;
}

nav.mainnav li {
  list-style-type: none;
}

nav.mainnav li a {
  color: #134894;
  text-decoration: none;
}

nav.mainnav li a:after {
  font-size: 20px;
  font-size: 1.25rem;
}

nav.mainnav > .container {
  position: relative;
  overflow: visible;
  margin-right: auto;
  margin-left: auto;
  max-width: 85.71429em;
  height: 70px;
  padding: 0 15px;
  height: 100px;
}

nav.mainnav .flyout {
  left: 0;
  right: 0;
  display: none;
  overflow: hidden;
  margin: 0 auto;
}

nav.mainnav .flyout .container {
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
}

nav.mainnav .flyout.toggleLevel .flyout {
  display: block;
}

nav.mainnav .flyout.toggleLevel .flyout li {
  height: 30px !important;
}

nav.mainnav .flyout.toggleLevel a {
  font-size: 14px;
  font-size: 0.875rem;
  float: left;
  display: inline-block;
  margin: 0 0 10px 6px;
  text-align: center;
  text-transform: uppercase;
}

nav.mainnav .level-1 {
  visibility: hidden;
  background: #fff;
  height: 100vh;
  padding: 20px;
  position: absolute;
  width: 100%;
  top: -20px;
  z-index: 80;
}

nav.mainnav .level-1 > li > a {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  text-align: left;
  text-decoration: none;
}

nav.mainnav .level-1 > li.nav-active > a {
  background: #5f5d5e !important;
  color: #fff !important;
}

nav.mainnav .level-1 > li.is-hover .flyout {
  z-index: 20;
  max-height: 1000px;
}

nav.mainnav .level-1 > li.is-hover > a {
  color: #5f5d5e;
}

nav.mainnav .hasChild + ul {
  padding-left: 10px;
}

nav.mainnav .hasChild + ul a {
  font-weight: 600;
}

nav.mainnav .level-1 > li {
  padding: 5px 0;
  font-weight: 600;
}

nav.mainnav .level-1 > li span {
  margin-right: 20px;
}

nav.mainnav .level-2 > li {
  margin: 15px 0 10px 55px;
}

nav.mainnav .level-2 > li a {
  line-height: 25px;
}

nav.mainnav .level-2 > li:last-child {
  margin-bottom: 10px;
}

nav.mainnav .level-3 > li {
  margin: 10px 0;
}

nav.mainnav .level-3 > li a {
  line-height: 20px;
}

nav.mainnav .hasChild + ul.level-3 {
  padding-left: 40px;
}

nav.mainnav .hasChild + ul.level-3 a {
  color: #769bac;
}

nav.mainnav.is-active .level-1 {
  visibility: visible;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  left: 0;
  margin: 0;
  margin-top: 102px;
  padding-bottom: 150px !important;
  min-height: 100vh;
  overflow-y: scroll;
  position: fixed;
  display: block;
  top: 0;
}

nav.mainnav .mobile-container,
nav.mainnav .navigation-toggle {
  height: 60px;
  width: 60px;
  top: 8px;
  right: 150px;
}

nav.mainnav .mobile-container {
  display: inline-block;
  position: absolute;
}

nav.mainnav .navigation-toggle {
  font-size: 10px;
  font-weight: 600;
  padding-bottom: 0;
  text-decoration: none;
  color: #134894;
  text-align: center;
  display: block;
  line-height: 15px;
  background: rgba(255, 255, 255, 0.9);
}

nav.mainnav .navigation-toggle:before {
  display: block;
  line-height: 25px;
  font-size: 30px;
  font-size: 1.875rem;
  padding-top: 9px;
}

nav.mainnav.is-active .navigation-toggle {
  background: #fff;
}

nav.mainnav .mobile-container,
nav.mainnav .navigation-toggle {
  height: 90px;
  width: 60px;
}

nav.mainnav .navigation-toggle {
  line-height: 20px;
  padding-top: 12px;
  font-size: 12px;
  font-weight: 600;
}

nav.mainnav .navigation-toggle:before {
  font-size: 35px;
  font-size: 2.1875rem;
}

@media (min-width: 1600px) {
  nav.mainnav > .container {
    max-width: 85.71429em;
  }
  .location_sub nav.mainnav .level-1 {
    margin-right: 120px;
  }
}

.mainnav__item-highlight {
  max-height: 100%;
}

.mainnav__item-highlight .mainnav__item-link {
  color: #769bac;
}

.smallNav .mainnav__item-highlight {
  max-height: 92%;
}

/**
 * brandung form.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Form
   ========================================================================== */
input {
  width: 100%;
  padding: 10px;
  background: #ebebeb;
}

input:focus {
  outline: none;
}

.row {
  margin-bottom: 0;
}

.placeholder::-webkit-input-placeholder:after {
  content: '*';
  color: #ff7400;
}

select option {
  color: #555 !important;
  font-weight: 600;
}

input,
select,
textarea {
  font-size: 14px;
  font-size: 0.875rem;
}

.selectboxit-container * {
  font-size: 18px;
  font-size: 1.125rem;
  font-size: 14px;
  font-size: 0.875rem;
}

.date-picker__select span.selectboxit-text {
  max-width: 95% !important;
}

.powermail_fieldwrap fieldset {
  border: 1px solid white;
}

/**
 * brandung typo3.scss v1.0.0
 *
* Copyright brandung GmbH & Co.KG
* http://www.brandung.de/
*
* Date: 2014-03-14
* MIT License (MIT)
*/
/* Typo3 search*/
.tx-indexedsearch .tx-indexedsearch-res .tx-indexedsearch-info.info {
  padding: 5px 0;
  font-size: 12px;
  background: transparent;
}

.frame-space-before-extra-small {
  margin-top: 10px;
}

.frame-space-before-small {
  margin-top: 20px;
}

.frame-space-before-medium {
  margin-top: 40px;
}

.frame-space-before-large {
  margin-top: 60px;
}

.frame-space-before-extra-large {
  margin-top: 100px;
}

.frame-space-after-extra-small {
  margin-bottom: 10px;
}

.frame-space-after-small {
  margin-bottom: 20px;
}

.frame-space-after-medium {
  margin-bottom: 40px;
}

.frame-space-after-large {
  margin-bottom: 60px;
}

.frame-space-after-extra-large {
  margin-bottom: 100px;
}

/**
* ie-rules
*/
/**
 * brandung ie-rules.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
  IE Rules
  ========================================================================== */
/* IE < 9 */
/* IE < 8 */
.lt-ie8 header,
.lt-ie8 nav,
.lt-ie8 #main,
.lt-ie8 footer {
  display: inline-block;
}

/*Import Modules*/
/**
 * brandung _mod-header-search.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015_10_15
 * MIT License (MIT)
 */
/* ==========================================================================
   mod-header-search
   ========================================================================== */
.mod-header-search {
  z-index: 100;
}

.mod-header-search form {
  width: 100%;
}

.mod-header-search input {
  border: none;
  right: 0;
  top: 62px;
  overflow: hidden;
  position: absolute;
  padding: 0;
  -webkit-transition: width .3s;
  /* Safari */
  transition: width .3s;
  height: 60px;
  width: 0;
  z-index: 2;
  margin-top: 0;
  background: #fff;
}

.mod-header-search .button-container {
  position: absolute;
  top: 0px;
  right: 25px;
  width: 51px;
  height: 51px;
  background: #fff;
  border: 1px solid #144995;
  border-radius: 5px;
  margin-top: 8px;
  top: 10px;
  width: 60px;
  height: 60px;
}

.mod-header-search .search-toggle,
.mod-header-search button {
  font-size: 10px;
  font-weight: 600;
  display: block;
  border: none;
  color: #144995;
  width: 100%;
  height: 100%;
  text-align: center;
  cursor: pointer;
  padding-top: 2px;
  font-size: 0.75rem;
}

.mod-header-search .search-toggle:before,
.mod-header-search button:before {
  display: block;
  text-align: center;
  margin-top: 0;
  padding-top: 5px;
  padding-left: 0;
}

.mod-header-search .search-toggle:before,
.mod-header-search button:before {
  margin-top: 5px;
}

.mod-header-search button {
  display: none;
}

.mod-header-search button:focus {
  outline: none;
}

.mod-header-search .search-toggle {
  top: 0;
}

.mod-header-search .search-toggle:before {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 25px;
}

.mod-header-search.active form {
  z-index: 10;
  position: absolute;
  right: 0;
}

.mod-header-search.active input {
  padding: 0 60px 0 10px;
  -webkit-transition: width .3s;
  /* Safari */
  transition: width .3s;
  height: 60px;
  width: 100%;
  max-width: 360px;
  border: 1px solid #555;
  margin-top: 0;
  margin-right: 25px;
  border-radius: 5px;
  margin-top: -17px;
  width: calc(100% - 25px);
}

.mod-header-search.active .search-toggle {
  color: #144995;
  top: 0;
}

.mod-header-search.active .search-toggle:before {
  font-size: 30px;
  font-size: 1.875rem;
}

.mod-header-search.active button {
  display: block;
  top: 62px;
  z-index: 5;
  height: 58px;
  background: transparent;
}

.mod-header-search.active button:before {
  font-size: 60px;
  font-size: 3.75rem;
  color: #555;
  right: 0;
  position: absolute;
  text-align: center;
  cursor: pointer;
  line-height: 0;
}

.mod-header-search .search-toggle {
  padding-top: 0px;
}

.mod-header-search .search-toggle:before {
  font-size: 3.375rem;
}

.mod-header-search input {
  top: 102px;
}

.mod-header-search.active button {
  width: 100px;
  top: 102px;
}

.mod-header-search.active button:before {
  right: 15px;
}

.mod-header-search.active input {
  padding-right: 100px;
}

/**
 * brandung _mod-header-contact.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015_10_15
 * MIT License (MIT)
 */
/* ==========================================================================
   mod-header-contact
   ========================================================================== */
.mod-header-contact {
  z-index: 100;
  position: absolute;
  right: 0;
  top: 0;
  color: #fff;
  text-align: center;
}

.mod-header-contact .button-container {
  position: absolute;
  top: 0px;
  right: 90px;
  width: 51px;
  height: 51px;
  background: #fff;
  border: 1px solid #144995;
  border-radius: 5px;
  margin-top: 8px;
  top: 10px;
  width: 60px;
  height: 60px;
}

.mod-header-contact .toggleBtn {
  bottom: 0;
  cursor: pointer;
  color: #144995;
  display: block;
  font-size: 10px;
  font-weight: 600;
  padding-bottom: 20px;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-size: 0.75rem;
  padding-top: 3px;
}

.mod-header-contact .toggleBtn:before {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 25px;
  padding-top: 7px;
  display: block;
}

.mod-header-contact .toggleBtn.btn-active {
  color: #ff7400;
  border: transparent;
}

.mod-header-contact .toggleBtn.btn-active:before {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 22px;
  padding-top: 9px;
}

.mod-header-contact .toggleBtn:before {
  font-size: 3rem;
}

.mod-header-contact ul {
  padding: 0;
  margin: 0;
}

.mod-header-contact li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.mod-header-contact--flyout {
  text-align: left;
  background: #fff;
  visibility: hidden;
  line-height: 24px;
  position: absolute;
  right: 0;
  width: 225px;
}

.mod-header-contact--flyout span {
  padding: 0 !important;
}

.mod-header-contact--flyout span,
.mod-header-contact--flyout a {
  color: #5f5d5e !important;
  text-decoration: none;
}

.mod-header-contact--flyout a:hover {
  text-decoration: underline;
}

.mod-header-contact--flyout .contact-link a span {
  font-size: 100%;
  display: inline;
}

.mod-header-contact--flyout .contact-link a:after {
  font-size: 20px;
  font-size: 1.25rem;
  color: #ff7400;
}

.mod-header-contact--flyout .contact-link a:hover {
  text-decoration: none;
}

.mod-header-contact--flyout .contact-link a:hover span {
  text-decoration: underline;
}

.mod-header-contact--flyout .meta-links {
  padding: 0 20px 30px 20px;
}

.mod-header-contact--flyout .meta-links a {
  font-size: 11px;
  display: block;
  margin: 8px 0;
  line-height: 15px;
}

.mod-header-contact--flyout .meta-links li:first-child {
  border-top: 1px solid #707173;
  padding-top: 15px;
}

.mod-header-contact--flyout .icon-before:before {
  padding: 0;
  margin-left: -5px;
}

.mod-header-contact--flyout ul {
  padding: 30px 15px 15px;
}

.toggleBtn.btn-active + .mod-header-contact--flyout {
  visibility: visible;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  top: 66px;
  left: -167px;
  border: 1px solid #555;
  border-radius: 5px;
  top: 66px;
}

/**
 * brandung _mod-smallnavigation.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015_10_15
 * MIT License (MIT)
 */
/* ==========================================================================
   mod-smallnavigation
   ========================================================================== */
.smallNav .mainnav {
  -webkit-box-shadow: -1px 2px 10px 0px rgba(112, 113, 115, 0.7);
  -o-box-shadow: -1px 2px 10px 0px rgba(112, 113, 115, 0.7);
  -ms-box-shadow: -1px 2px 10px 0px rgba(112, 113, 115, 0.7);
  box-shadow: -1px 2px 10px 0px rgba(112, 113, 115, 0.7);
}

.smallNav .mainnav .navigationBg {
  background-color: #fff;
  height: 65px;
}

.smallNav .mainnav .container {
  height: 65px;
}

.smallNav .mainnav .logo {
  background-size: 120px;
  height: 50px;
}

.smallNav .mainnav .level-1 {
  height: 70px;
}

.smallNav .mainnav .level-1 .icon-before {
  height: 20px;
}

.smallNav .mainnav .mobile-container,
.smallNav .mainnav .navigation-toggle {
  height: 57px;
}

.smallNav .mainnav .navigation-toggle {
  padding-top: 10px;
  font-size: 0;
  padding-top: 4px;
}

.smallNav .mainnav.is-active .level-1 {
  margin-top: 67px;
}

.smallNav .button-container {
  height: 31px;
}

.smallNav .mod-header-search .search-toggle {
  font-size: 0;
  padding-top: 0px;
}

.smallNav .mod-header-search .search-toggle:before {
  padding-top: 0px;
  margin-bottom: 2px;
  line-height: 20px;
}

.smallNav .mod-header-search.active button,
.smallNav .mod-header-search.active input {
  top: 67px;
}

.smallNav .mod-header-contact .toggleBtn {
  font-size: 0;
  padding-top: 0px;
}

.smallNav .mod-header-contact .toggleBtn:before {
  padding-top: 3px;
  margin-bottom: 2px;
}

.smallNav .mod-header-contact .toggleBtn.btn-active + .mod-header-contact--flyout {
  top: 67px;
}

/**
 * brandung cookie-layer.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2018-05-14
 * MIT License (MIT)
 */
/* ==========================================================================
   Cookie-Layer
   ========================================================================== */
.cookie-layer {
  display: none;
  background: #707173;
  margin-top: 60px;
  padding: 20px;
  position: fixed;
  width: 100%;
  z-index: 40;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 100px;
}

.cookie-layer__text {
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  float: left;
  margin: 0 auto;
  text-align: left;
  width: 100%;
  max-width: 980px;
  margin: 0 60px 0 0;
}

.cookie-layer__text a {
  color: #fff;
  text-decoration: underline;
}

.cookie-layer__close {
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
  float: right;
  position: absolute;
  right: 20px;
  text-align: right;
}

.cookie-layer.is-fixed {
  margin-top: 65px;
}

/**
 * brandung _mod-header-contact.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015_10_15
 * MIT License (MIT)
 */
/* ==========================================================================
   mod-stage-slider
   ========================================================================== */
.mod-stage-slider {
  display: block;
  max-height: 500px;
  overflow: hidden;
  margin-bottom: 0;
  margin-right: auto;
  margin-left: auto;
  max-width: 85.71429em;
  width: auto;
}

.mod-stage-slider.is-in-home {
  margin-bottom: 75px;
  border-bottom-right-radius: 51px;
}

.mod-stage-slider.stage-category-left-aligned-round-border {
  border-bottom-right-radius: 51px !important;
}

.mod-stage-slider.is-in-home, .mod-stage-slider.is-in-location, .mod-stage-slider.stage-category-left-aligned {
  max-width: 100%;
  width: auto;
  margin-right: 15px;
  min-height: 0;
  height: auto;
  margin-right: 25px;
}

.mod-stage-slider.is-in-institution, .mod-stage-slider.stage-category-boxed {
  margin-right: auto;
  margin-left: auto;
  max-width: 85.71429em;
  height: auto;
  min-height: auto;
  margin-right: 25px;
}

.mod-stage-slider.is-in-other {
  margin-right: 25px;
  margin-left: auto;
  max-width: calc(85.71429em - 30px);
  height: 177px;
  margin-bottom: 50px;
  border-bottom-right-radius: 51px;
  height: 240px;
}

.mod-stage-slider picture {
  display: none;
}

.mod-stage-slider picture:first-child {
  display: block;
}

.mod-stage-slider picture:first-child img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.slick-initialized.mod-stage-slider {
  display: block;
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding-top: 62px;
  padding-top: 100px;
}

.slick-initialized.mod-stage-slider picture {
  display: block;
}

.slick-initialized.mod-stage-slider .slick-prev {
  border: 0;
  background: none;
  font-size: 0;
  outline: none;
  position: absolute;
  top: 50%;
  margin-top: -116px;
  left: 0;
}

.slick-initialized.mod-stage-slider .slick-prev:before {
  font-size: 80px;
  font-size: 5rem;
  color: #ff7400;
  z-index: 20;
}

@media (max-width: 1550px) {
  .slick-initialized.mod-stage-slider .slick-prev:before {
    top: 70%;
  }
}

.slick-initialized.mod-stage-slider .slick-slide img {
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: -1;
  display: block;
}

.slick-initialized.mod-stage-slider .slick-next {
  border: 0;
  background: none;
  font-size: 0;
  outline: none;
  position: absolute;
  top: 50%;
  margin-top: -116px;
  right: 0;
}

.slick-initialized.mod-stage-slider .slick-next:before {
  font-size: 80px;
  font-size: 5rem;
  color: #ff7400;
  z-index: 9999;
}

@media (max-width: 1550px) {
  .slick-initialized.mod-stage-slider .slick-next:before {
    top: 70%;
  }
}

.slick-initialized.mod-stage-slider .slick-dots {
  position: absolute;
  bottom: 10px;
  right: 30px;
}

.slick-initialized.mod-stage-slider .slick-dots li {
  display: inline-block;
  margin: 0 10px;
  border: 2px solid #fff;
  width: 20px;
  height: 20px;
  border-radius: 30px;
}

.slick-initialized.mod-stage-slider .slick-dots li.slick-active {
  background: #fff;
}

.slick-initialized.mod-stage-slider .slick-dots li button {
  border-radius: 30px;
  border: none;
  background: transparent;
  outline: none;
  width: 20px;
  height: 20px;
  font-size: 0;
}

/**
 * brandung header-pages.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Header-Pages no Slider --> Stage on Subpages
   ========================================================================== */
.mod-stage-subpage {
  z-index: 0;
  overflow: hidden;
  height: 460px;
  padding-top: 62px;
  max-height: 500px;
  height: auto;
  max-height: 450px;
  height: auto;
  max-height: 600px;
  padding-top: 100px;
}

.mod-stage-subpage.stage-category-left-aligned-round-border {
  border-bottom-right-radius: 30px !important;
}

.mod-stage-subpage img {
  width: 100%;
}

.mod-stage-subpage.is-in-home {
  margin-bottom: 18px;
  border-bottom-right-radius: 30px;
  margin-bottom: 44px;
}

.mod-stage-subpage.is-in-location, .mod-stage-subpage.is-in-home, .mod-stage-subpage.stage-category-left-aligned {
  margin-right: 15px;
  margin-left: 0;
  width: auto;
  min-height: 0;
  height: auto;
  margin-right: 25px;
}

.mod-stage-subpage.is-in-institution, .mod-stage-subpage.stage-category-boxed {
  margin-right: auto;
  margin-left: auto;
  max-width: 85.71429em;
  height: auto;
  min-height: auto;
  margin-right: 25px;
  min-height: 240px;
}

.mod-stage-subpage.is-in-other {
  background-color: #134894;
  margin-right: 25px;
  margin-left: auto;
  max-width: calc(85.71429em - 30px);
  height: 177px;
  margin-bottom: 0;
  border-bottom-right-radius: 30px;
  height: 240px;
}

.subpage-headline {
  position: relative;
  z-index: 1;
}

.subpage-headline.is-in-other {
  margin-right: auto;
  margin-left: auto;
  max-width: 85.71429em;
  margin-top: -177px;
  min-height: 177px;
  padding-top: 50px;
  margin-top: -240px;
  min-height: 240px;
  padding-top: 80px;
}

/**
 * brandung main-stage_teaser_headline.scss v2.0.0
 *
 * @require vendor/gridset
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Main_stage_teaser_headline
   ========================================================================== */
.mod-stage-slider--title {
  position: absolute;
  margin-top: -150px;
  margin-bottom: 5px;
  max-width: 1170px;
  width: 100%;
  z-index: 1;
  height: 210px;
  margin-top: 80px;
  margin-bottom: 0;
  top: 0;
  margin-top: 140px;
}

.mod-stage-slider--title .headline,
.mod-stage-slider--title .subline {
  margin: 0 15px;
}

.mod-stage-slider--title h1 {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 25px;
  margin-bottom: 10px;
  line-height: normal;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
}

.mod-stage-slider--title h1 strong {
  font-weight: 800;
}

.mod-stage-slider--title .subline {
  display: none;
  font-size: 16px;
  font-weight: 600;
}

.mod-stage-slider--title .noslider img {
  height: auto;
}

.mod-stage-slider--title h1 {
  font-size: 35px;
  font-size: 2.1875rem;
  margin: 0;
  line-height: 35px;
  width: 60%;
}

.mod-stage-slider--title .subline {
  display: block;
  width: 60%;
}

@media (min-width: 1370px) {
  .mod-stage-slider--title {
    padding-left: 0;
  }
  .mod-stage-slider--title h1 {
    font-size: 52px;
    font-size: 3.25rem;
  }
}

/**
 * brandung _mod-stage-gradient.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015_10_15
 * MIT License (MIT)
 *
 *
 * This file seems to be obsolete, since white gradient has been removed.
 */
/* ==========================================================================
   white-gradient for Stages
   ========================================================================== */
.white-gradient {
  position: relative;
  display: block;
  clear: both;
  width: 100%;
  padding: 0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&amp;0.25+0,0.55+10,0.9+25,1+40 */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.25)), color-stop(10%, rgba(255, 255, 255, 0.55)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(40%, white), to(white));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.55) 10%, rgba(255, 255, 255, 0.9) 25%, white 40%, white 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#40ffffff', endColorstr='#ffffff',GradientType=0 );
  /* IE6-9 */
  padding: 40px 0;
  height: 350px;
}

.white-gradient + .white-gradient {
  display: none;
}

/*
//landingpage with stage-slider
.corporate,
.corporate_sub_nomenu {
	main {
		@include respond-min($breakpoint-min-m) {
			margin-top: 0;
		}
	}
}
*/
/*.corporate_sub_withmenu,
.location,
.page-not-found,
.location_sub*/
.stageImageTemplate {
  /*
	main {
		padding-top: 20px;
		margin-top: -100px;

		@include respond-min($breakpoint-min-xs) {
			margin-top: 0;
		}

		@include respond-min($breakpoint-min-s) {
			margin-top: 0;
		}

		@include respond-min($breakpoint-min-m) {
			margin-top: -270px;
			padding-top: 50px;
		}
	}
	*/
}

.stageImageTemplate .white-gradient {
  margin-top: -185px;
  height: 150px;
  margin-top: 0;
  height: 0;
  margin-top: 0;
  height: 0;
  margin-top: -80px;
  height: 182px;
}

.stageSliderTemplate {
  /*
	main {
		padding-top: 20px;
		margin-top: -100px;

		@include respond-min($breakpoint-min-s) {
			margin-top: -195px;
		}

		@include respond-min($breakpoint-min-m) {
			margin-top: -430px;
			padding-top: 50px;
		}
	}
	*/
  /*
	&.corporate {
		main {
			margin-top: -40px;

			@include respond-min($breakpoint-min-l) {
				margin-top: -70px;
			}
		}
	}
	*/
}

.stageSliderTemplate .white-gradient {
  margin-top: -60px;
  height: 150px;
  margin-top: -90px;
  height: 210px;
  margin-top: -200px;
  height: 480px;
}

.stageSliderTemplate .filter-category-front-page + .white-gradient {
  margin-top: -20px;
  height: auto;
}

/**
 * brandung _mod-stage-contactbox.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015_11_27
 * MIT License (MIT)
 */
/* ==========================================================================
   mod-stage-contactbox
   ========================================================================== */
.mod-stage-contactbox {
  position: relative;
  right: 0;
  background: #134894;
  border-bottom-right-radius: 30px;
  padding: 0 20px 0 50px;
  z-index: 2;
  width: auto;
  margin-top: 0;
  height: 70px;
  padding-left: calc((100vw - 85.71429em) /2);
  height: 60px;
}

.mod-stage-contactbox p {
  margin-bottom: 0;
}

.mod-stage-contactbox strong {
  color: #fff;
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 400;
}

.mod-stage-contactbox span {
  color: #fff;
}

.mod-stage-contactbox a {
  text-decoration: none;
}

.mod-stage-contactbox a:before {
  color: #ff7400;
  margin-left: -8px;
  vertical-align: bottom;
}

.mod-stage-contactbox a:hover span {
  text-decoration: underline;
}

.mod-stage-contactbox ul {
  padding: 0;
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-direction: row;
      flex-direction: row;
}

.mod-stage-contactbox li {
  list-style-type: none;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 24px;
  font-weight: 600;
  padding-top: 5px;
  margin-right: 0px;
  font-size: 16px;
  font-size: 1rem;
  padding-top: 14px;
  margin-right: 25px;
  line-height: 31px;
}

.mod-stage-contactbox li:first-child {
  padding-top: 10px;
}

.mod-stage-contactbox li:first-child {
  padding-top: 14px;
  line-height: 30px;
}

.mod-stage-contactbox .online-appointment {
  font-size: 12px;
  background: #ff7400;
  padding: 5px 10px;
  line-height: 20px;
  border-radius: 7px;
  display: block;
  margin-top: 5px;
  width: 142px;
  float: right;
  margin-top: -48px;
  padding: 5px 20px;
  font-size: 13px;
  margin-top: 0;
  float: none;
  width: auto;
  margin-top: 1px;
}

/* Location */
.is-in-location + .mod-stage-contactbox {
  margin-right: 15px;
  margin-left: 0;
  padding-left: 15px;
  width: auto;
  max-width: 100%;
  padding-left: 30px;
  margin-right: 25px;
}

/* Institution */
.is-in-institution + .mod-stage-contactbox {
  width: auto;
  margin-right: auto;
  margin-left: auto;
  max-width: 85.71429em;
  padding-left: 15px;
  margin-right: 25px;
  margin-bottom: 5px;
}

/**
 * UVA _mod-stage-custom.scss v1.0.0
 *
 * Copyright UVA
 * http://www.uva.de/
 *
 */
/* ==========================================================================
   mod-stage-custom
   ========================================================================== */
.mod-stage-custom {
  display: block;
  height: 200px;
  padding-top: 70px;
  overflow: hidden;
  min-height: auto;
  margin: 0 auto;
  background-color: #134894;
  height: 225px;
  padding-top: 100px;
}

.mod-stage-custom.stage-category-left-aligned, .mod-stage-custom.stage-category-left-aligned-round-border, .mod-stage-custom.stage-category-left-aligned-gradient-round-border {
  max-width: 100%;
  width: auto;
  margin-right: 15px;
  margin-right: 25px;
}

.mod-stage-custom.stage-category-boxed-free-image, .mod-stage-custom.stage-category-boxed-default {
  margin: 0 25px 0 10px;
  max-width: 1170px;
  border-bottom-right-radius: 30px;
  min-height: 177px;
  position: relative;
  min-height: 240px;
  margin: 0 25px 0 30px;
}

.mod-stage-custom.stage-category-boxed-free-image .mod-stage-slider, .mod-stage-custom.stage-category-boxed-default .mod-stage-slider {
  padding-top: 0;
}

.mod-stage-custom.stage-category-boxed-free-image.stage-has-image, .mod-stage-custom.stage-category-boxed-default.stage-has-image {
  height: auto;
  background-color: transparent;
}

.ameos-orange .mod-stage-custom {
  background-color: #ff7400;
}

.ameos-anthracite .mod-stage-custom {
  background-color: #646464;
}

.ameos-blue .mod-stage-custom {
  background-color: #0085C8;
}

.ameos-light-orange .mod-stage-custom {
  background-color: #F9B000;
}

.ameos-darkblue .mod-stage-custom {
  background-color: #134894;
}

.mod-stage-custom.stage-category-left-aligned-gradient-round-border {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#144995+0,0085c8+100 */
  background: #144995;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(#144995), to(#0085c8));
  background: linear-gradient(to right, #144995 0%, #0085c8 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#144995', endColorstr='#0085c8',GradientType=1 );
  /* IE6-9 */
  border-bottom-right-radius: 30px !important;
}

.mod-stage-custom.stage-category-boxed-free-image {
  padding-left: 0;
  height: 200px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 15px;
  padding-left: 50px;
  height: 300px  !important;
}

.mod-stage-custom.stage-category-boxed-free-image picture {
  padding-top: 20px;
  display: block;
  position: static;
  height: 100%;
  -ms-flex-preferred-size: 133px;
      flex-basis: 133px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.mod-stage-custom.stage-category-boxed-free-image picture img {
  height: 100%;
  width: auto;
}

.mod-stage-custom.stage-category-boxed-free-image picture {
  /*max-width: 250px;*/
  -ms-flex-preferred-size: 250px;
      flex-basis: 250px;
}

.subpage-headline-inline {
  position: relative;
  z-index: 1;
}

.stage-category-left-aligned .subpage-headline-inline h1,
.stage-category-left-aligned-round-border .subpage-headline-inline h1,
.stage-category-left-aligned-gradient-round-border .subpage-headline-inline h1 {
  margin-top: 0;
  padding-top: 50px;
  padding-left: 30px;
}

.stage-category-boxed-default .subpage-headline-inline {
  position: absolute;
  top: 110px;
  left: 0px;
  top: 130px;
}

.stage-category-boxed-default .subpage-headline-inline h1 {
  margin: 0;
  padding-left: 15px;
  color: #fff;
}

.stage-category-boxed-default .subpage-headline-inline h1.single-line {
  margin-top: 20px;
}

.subpage-headline-inline.stage-category-boxed-free-image h1 {
  font-size: 16px;
  line-height: 26px;
  padding-top: 0;
  margin-top: 36px;
  padding-left: 15px;
}

.subpage-headline-inline.stage-category-boxed-free-image h1 {
  font-size: 16px;
  line-height: 26px;
}

.subpage-headline-inline.stage-category-boxed-free-image h1 {
  font-size: 31px;
  line-height: 40px;
  padding-top: 35px !important;
}

/**
 * brandung search.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Search
   ========================================================================== */
.newsletter-footer {
  padding: 10px;
  overflow: hidden;
  position: relative;
  width: 100%;
  float: none;
  background: #707173;
}

.newsletter-footer .field {
  position: relative;
  float: right;
  width: 100%;
}

.newsletter-footer input {
  border: 2px solid #fff;
  border-radius: 30px;
  width: 100%;
  background: #707173;
  padding: 10px 50px 10px 21px;
  color: #fff;
  margin: 0;
  height: 55px;
  display: block;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.newsletter-footer input:hover, .newsletter-footer input:focus {
  background: #b0b0b0;
}

.newsletter-footer .pholder::-webkit-input-placeholder:after {
  content: 'Ihre E-Mail Adresse';
  color: #fff !important;
}

.newsletter-footer label {
  display: block;
}

.newsletter-footer button {
  border: none;
  font-size: 16px;
  font-size: 1rem;
  position: absolute;
  top: 7px;
  right: 5px;
  z-index: 1;
  margin-top: -1.6px;
  color: #707173;
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
  font-size: 20px;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.newsletter-footer button:hover {
  background: rgba(255, 255, 255, 0.9);
}

/**
 * brandung box.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-28
 * MIT License (MIT)
 */
/* ==========================================================================
   Box
   ========================================================================== */
.box {
  position: relative;
  padding: 20px;
  background-color: #ebebeb;
  margin: 60px 0;
}

.box > h1,
.box > h2 {
  margin-top: 0;
}

.box:first-child {
  margin-top: 0;
}

/**
 * brandung blog.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2018-06-19
 * MIT License (MIT)
 */
/* ==========================================================================
   Teasers
   ========================================================================== */
.blog {
  margin: 30px 0;
}

.blog__wrapper {
  padding: 100px 0 0;
}

.blog__header {
  background: #134894;
  margin: 0 auto;
  padding: 20px 25px;
}

.blog__header .headline {
  color: #fff;
  font-weight: 700;
  margin: 20px 0;
}

.blog__header .subline {
  color: #fff;
  margin: 20px 0;
}

.blog__header .text {
  color: #fff;
  margin: 20px 0;
}

.blog__header .blog__filter .select-wrapper {
  padding: 0 5px;
  padding: 0 15px;
}

.blog__header .blog__filter .select-wrapper:after {
  font-size: 32px;
  font-size: 2rem;
  color: white;
  font-weight: 900;
  float: right;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  position: absolute;
  top: 11px;
  background: #134894;
  border-radius: 50%;
  right: 30px;
  z-index: 10;
}

.blog__header .blog__filter .select-wrapper select {
  background: transparent;
  border: 2px solid #ff7400;
  border-radius: 50px;
  color: #fff;
  margin: 0 0 10px;
  outline: 0 none;
  padding: 12.5px 45px 12.5px 30px;
  position: relative;
  text-decoration: none;
  width: 100%;
  -moz-appearance: none;
  -webkit-appearance: none;
  z-index: 20;
}

.blog__header .blog__filter .submit-wrapper {
  text-align: center;
}

.blog__header .blog__filter .submit-wrapper button {
  background: #ff7400;
  border: 2px solid #ff7400;
  border-radius: 50px;
  color: #fff;
  outline: 0 none;
  padding: 3px 30px;
  text-decoration: none;
  margin: 0;
}

.blog__header .blog__filter .submit-wrapper button:after {
  font-size: 40px;
  font-size: 2.5rem;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.blog__static {
  background: #ebebeb;
  display: table;
  padding: 15px 15px 30px;
}

.blog__static-container {
  background: transparent;
  margin: 0 auto;
  padding: 0;
}

.blog__static-container.bg-grey {
  background: #ebebeb;
  margin: 0 auto;
}

.blog__static-container.bg-grey .breadcrumb {
  margin: 0 30px;
}

.blog__static-container .breadcrumb {
  margin: 0 30px;
}

.blog__static-container .blog__slider {
  background: transparent;
}

.blog__static-container .headline {
  color: #134894;
  font-weight: 700;
  margin: 0 0 20px;
  padding: 40px 25px 0;
  text-align: center;
  text-align: left;
}

.blog__static-container .headline span:before {
  font-size: 42px;
  font-size: 2.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #134894;
  border: 1px solid #134894;
  border-radius: 50%;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 10px;
  vertical-align: top;
}

.blog__static-container .headline-text {
  display: inline-block;
  float: none;
  font-weight: 700;
}

.blog__static-container .headline-link {
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
  font-size: 14px;
  font-size: 0.875rem;
  display: inline-block;
  float: none;
}

.blog__static-container .headline-link:after {
  text-decoration: none;
}

.blog__static-container .headline-link:hover {
  text-decoration: none;
  color: #ff3300;
}

.blog__static-container .headline-link:hover span {
  text-decoration: underline;
}

.blog__static .item {
  background: #fff;
  float: left;
  margin: 15px 10px;
  width: 100%;
  width: calc((100% / 3) - 20px);
}

.blog__static .item a:hover, .blog__static .item span:hover {
  text-decoration: none;
}

.blog__static .item-headbar {
  padding: 5px;
}

.blog__static .item-headbar span {
  color: #134894;
  font-weight: bold;
}

.blog__static .item-headbar span:before {
  font-size: 42px;
  font-size: 2.625rem;
}

.blog__static .item-body {
  padding: 5%;
}

.blog__static .item-image {
  height: auto;
  width: 100%;
}

.blog__static .item-image-link {
  display: table;
  position: relative;
}

.blog__static .item-type {
  font-size: 24px;
  font-size: 1.5rem;
  background: #ff7400;
  border-radius: 50%;
  bottom: 20px;
  color: #fff;
  left: 20px;
  position: absolute;
}

.blog__static .item-type:before {
  background: #ff7400;
  border-radius: 50%;
  padding: 0;
}

.blog__static .item-date {
  width: 100%;
}

.blog__static .item-headline {
  font-size: 24px;
  font-size: 1.5rem;
  color: #555;
  display: table;
}

.blog__static .item-excerpt {
  display: table;
}

.blog__static .item-link {
  font-weight: 700;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.blog__static .item-link:after {
  text-decoration: none;
}

.blog__static .item-link:hover {
  text-decoration: none;
  color: #ff3300;
}

.blog__slider {
  background: #ebebeb;
  padding: 15px 15px 30px;
  max-width: 85.71429em;
  margin: 0 auto;
}

.blog__slider-container {
  background: transparent;
  margin: 0 auto;
}

.blog__slider-container.bg-grey {
  background: #ebebeb;
  margin: 0 auto;
}

.blog__slider-container.bg-grey .breadcrumb {
  margin: 0 30px;
}

.blog__slider-container .breadcrumb {
  margin: 0 30px;
}

.blog__slider-container .blog__slider {
  background: transparent;
}

.blog__slider-container .headline {
  color: #134894;
  font-weight: 700;
  margin: 0 0 20px;
  padding: 40px 25px 0;
  text-align: center;
  text-align: left;
}

.blog__slider-container .headline span:before {
  font-size: 42px;
  font-size: 2.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #134894;
  border: 1px solid #134894;
  border-radius: 50%;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 10px;
  vertical-align: top;
}

.blog__slider-container .headline-text {
  display: inline-block;
  float: none;
  font-weight: 700;
  margin-left: 20px;
}

.blog__slider-container .headline-link {
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
  font-size: 14px;
  font-size: 0.875rem;
  display: inline-block;
  float: none;
}

.blog__slider-container .headline-link:after {
  text-decoration: none;
}

.blog__slider-container .headline-link:hover {
  text-decoration: none;
  color: #ff3300;
}

.blog__slider-container .headline-link:hover span {
  text-decoration: underline;
}

.blog__slider .item {
  background: #fff;
  margin: 10px;
  width: 100%;
}

.blog__slider .item a:hover, .blog__slider .item span:hover {
  text-decoration: none;
}

.blog__slider .item-headbar {
  padding: 5px;
}

.blog__slider .item-headbar span {
  color: #134894;
  font-weight: bold;
}

.blog__slider .item-headbar span:before {
  font-size: 42px;
  font-size: 2.625rem;
}

.blog__slider .item-body {
  padding: 5%;
}

.blog__slider .item-image {
  height: auto;
  width: 100%;
}

.blog__slider .item-image-link {
  display: table;
  position: relative;
}

.blog__slider .item-type {
  font-size: 24px;
  font-size: 1.5rem;
  background: #ff7400;
  border-radius: 50%;
  bottom: 20px;
  color: #fff;
  left: 20px;
  position: absolute;
}

.blog__slider .item-type:before {
  background: #ff7400;
  border-radius: 50%;
  padding: 0 0 0 1px;
}

.blog__slider .item-date {
  width: 100%;
}

.blog__slider .item-headline {
  font-size: 24px;
  font-size: 1.5rem;
  color: #555;
  display: table;
}

.blog__slider .item-excerpt {
  display: table;
}

.blog__slider .item-link {
  font-weight: 700;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.blog__slider .item-link:after {
  text-decoration: none;
}

.blog__slider .item-link:hover {
  text-decoration: none;
  color: #ff3300;
}

.blog__slider .slick-prev {
  border: 0;
  background: none;
  font-size: 0;
  outline: 0 none;
}

.blog__slider .slick-prev:before {
  font-size: 80px;
  font-size: 5rem;
  color: #ff7400;
  position: absolute;
  top: 50%;
  margin-top: -55px;
  left: -25px;
  width: 50px;
}

.blog__slider .slick-next {
  border: 0;
  background: none;
  font-size: 0;
  outline: 0 none;
}

.blog__slider .slick-next:before {
  font-size: 80px;
  font-size: 5rem;
  color: #ff7400;
  position: absolute;
  top: 50%;
  margin-top: -55px;
  right: 0;
  width: 50px;
}

.blog__slider .slick-next,
.blog__slider .slick-prev {
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.blog__slider .slick-next:hover,
.blog__slider .slick-prev:hover {
  opacity: .6;
}

.blog__slider--fullwidth {
  max-width: 85.71429em;
  margin: 0 auto;
}

.blog__slider--fullwidth-container {
  display: block;
  margin: 0 auto;
  padding: 0;
  position: relative;
  width: 100%;
}

.blog__slider--fullwidth .item {
  display: block;
  float: left;
  max-width: 85.71429em;
  width: 100%;
}

.blog__slider--fullwidth .item-image {
  display: block;
  height: auto;
  width: 100%;
  display: inline-block;
  float: left;
  width: 50%;
}

.blog__slider--fullwidth .item-info {
  display: table;
  height: auto;
  padding: 20px 40px;
  width: 100%;
  display: inline-block;
  float: right;
  width: 50%;
}

.blog__slider--fullwidth .item-label span {
  color: #134894;
  font-weight: bold;
}

.blog__slider--fullwidth .item-label span:before {
  margin-left: -15px;
}

.blog__slider--fullwidth .item-headline:hover {
  color: #ff3300;
  text-decoration: none;
}

.blog__slider--fullwidth .item-headline h5:hover {
  color: #ff3300;
  text-decoration: none;
}

.blog__slider--fullwidth .slick-prev {
  display: inline-block;
  border: 0;
  background: none;
  font-size: 0;
  left: 0;
  outline: 0 none;
  padding: 0;
  position: absolute;
  top: 50%;
}

.blog__slider--fullwidth .slick-prev:before {
  font-size: 80px;
  font-size: 5rem;
  color: #ff7400;
  position: absolute;
  top: 50%;
  margin-top: -55px;
  left: -20px;
  width: 50px;
}

.blog__slider--fullwidth .slick-next {
  display: inline-block;
  border: 0;
  background: none;
  font-size: 0;
  right: 0;
  outline: 0 none;
  padding: 0;
  position: absolute;
  top: 50%;
}

.blog__slider--fullwidth .slick-next:before {
  font-size: 80px;
  font-size: 5rem;
  color: #ff7400;
  position: absolute;
  top: 50%;
  margin-top: -55px;
  right: 0;
  width: 50px;
}

.blog__slider--fullwidth .slick-next,
.blog__slider--fullwidth .slick-prev {
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.blog__slider--fullwidth .slick-next:hover,
.blog__slider--fullwidth .slick-prev:hover {
  opacity: .6;
}

.blog__article {
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.blog__article h5 {
  margin-top: 30px;
}

.blog__article-label {
  padding: 5px;
}

.blog__article-label span {
  color: #134894;
  font-weight: bold;
}

.blog__article-label span:before {
  font-size: 42px;
  font-size: 2.625rem;
}

.blog__article-date {
  padding: 10px;
}

.blog__article-headline {
  margin: 10px 0;
  padding: 10px;
}

.blog__article-audio {
  background: #ff7400;
  border: 1px solid #ff7400;
  border-radius: 60px;
  display: block;
  height: 200px;
  margin: 30px 0;
  padding: 30px 40px;
  position: relative;
  width: 100%;
  height: 120px;
}

.blog__article-audio .audio-btn {
  background: #ff7400;
  border: 2px solid #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 3px 15px -4px #555;
          box-shadow: 0 3px 15px -4px #555;
  float: left;
  height: 60px;
  margin-right: 10px;
  outline: 0 none;
  width: 60px;
}

.blog__article-audio .audio-btn span {
  color: #fff;
}

.blog__article-audio .play {
  background: #ff7400;
  background-size: 50% 50%;
  background-position: center;
}

.blog__article-audio .pause {
  background: #ff7400;
  background-size: 50% 50%;
  background-position: center;
}

.blog__article-audio .audio-description {
  color: #fff;
  margin: 0 0 10px;
  margin: 5px;
}

.blog__article-audio .audio-timeline {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  float: left;
  height: 8px;
  margin: 10px 0;
  width: 100%;
  margin: 10px 20px;
  width: calc(100% - 200px);
  margin: 10px 20px;
  width: calc(100% - 300px);
}

.blog__article-audio .audio-timeslider {
  background: white;
  border-radius: 15px;
  height: 8px;
  width: 0;
}

.blog__article-audio .audio-timeview-current {
  color: #fff;
  float: left;
}

.blog__article-audio .audio-timeview-duration {
  color: #fff;
  float: right;
  float: left;
}

.blog__article-text {
  float: left;
  margin: 1em 0;
}

.blog__article-image {
  height: auto;
  width: 100%;
}

.blog__article-image--block {
  display: block;
  height: auto;
  width: 100%;
}

.blog__article-image--inline {
  display: table;
  width: 100%;
  width: 50%;
}

.blog__article-image--inline.left {
  float: none;
  margin: 0 0 10px 0;
  float: left;
  margin: 0 20px 10px 0;
}

.blog__article-image--inline.right {
  float: none;
  margin: 0 0 10px 0;
  float: right;
  margin: 0 0 10px 20px;
}

.blog__article-image-subline {
  font-size: 12px;
  font-size: 0.75rem;
  width: 100%;
}

.blog__article-link {
  font-weight: 700;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.blog__article-link:after {
  text-decoration: none;
}

.blog__article-link:hover {
  text-decoration: none;
  color: #ff3300;
}

.blog__article-list {
  margin: 10px 0;
  padding-left: 25px;
}

.html5videoplayer {
  text-align: center;
}

.news-backlink-wrap {
  margin: 15px 15px 20px;
}

/**
 * brandung bubbles.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Text-icon
   ========================================================================== */
.advantage-bubble {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  border: 3px solid #707173;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: left;
  height: 150px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 40px 20px 0;
  text-align: center;
  width: 150px;
}

.advantage-bubble:nth-child(3n + 1) {
  clear: left;
}

/**
 * brandung education.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2018-01-22
 * MIT License (MIT)
 */
/* ==========================================================================
   Text-icon
   ========================================================================== */
.education {
  margin: 20px 0;
}

.education__header {
  width: 100%;
  min-height: 150px;
  padding: 10px 0;
}

.education__header .date-picker__select {
  margin: 5px 0;
}

.education__list-item {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: table;
  margin: 30px 0;
  position: relative;
  width: 100%;
}

.education__subject {
  font-size: 12px;
  font-size: 0.75rem;
  background: #e5e5e5;
  display: table;
  float: left;
  height: 100%;
  margin-right: 5px;
  padding: 10px 10px 40px;
  width: calc(25% - 5px);
}

.education__subject-list {
  margin: 0;
  padding: 0;
}

.education__subject-item {
  list-style: none;
}

.education__subject-item:before {
  color: #555;
  content: "\e602";
  font-family: ameos;
}

.education__person {
  background: #f4f4f4;
  display: table;
  height: 100%;
  margin-left: 5px;
  padding: 10px 10px 40px;
  width: calc(75% - 5px);
}

.education__person span {
  display: block;
  line-height: 28px;
}

.education__headline {
  font-size: 24px;
  font-size: 1.5rem;
  color: #134894;
  margin: 0 !important;
}

.education__subline {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0 0 20px !important;
}

.education__btn {
  bottom: -12px;
  position: absolute;
  right: 25px;
}

.education__btn a:hover {
  color: #fff;
  text-decoration: none;
}

.education__submit {
  padding: 15px 30px;
  background: #ff7400;
  color: #fff;
  margin: 10px 0;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  -webkit-box-shadow: 4px 2px 5px 0 rgba(91, 91, 91, 0.75);
          box-shadow: 4px 2px 5px 0 rgba(91, 91, 91, 0.75);
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.education__submit:visited {
  background: #ff7400;
  color: #fff;
}

.education__submit:hover {
  background: #ff5e00;
}

/**
 * brandung contact-teaser.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-28
 * MIT License (MIT)
 */
/* ==========================================================================
   Contact-teaser
   ========================================================================== */
.contact-teaser {
  display: block;
  clear: both;
  overflow: auto;
  margin: 20px 0;
  padding-bottom: 20px;
  border-bottom: 2px solid #ebebeb;
}

.contact-teaser p {
  margin: 0;
  line-height: 1.5;
}

.contact-teaser__headline {
  color: #769bac;
  font-size: 20px;
  line-height: 16px;
  margin: 0 0 10px 0;
}

.contact-teaser p.contact-teaser__title {
  margin: 10px 0;
}

.contact-teaser p.contact-teaser__phone {
  margin: 10px 0 0 0;
}

.contact-teaser p.contact-teaser__phone + p.contact-teaser__phone {
  margin: 0;
}

.contact-teaser a {
  color: #5f5d5e;
  text-decoration: none;
}

.contact-teaser img {
  margin: 20px auto;
  display: block;
  float: none;
}

.contact-teaser span {
  margin-left: -8px;
}

.contact-teaser__description {
  display: block;
  overflow: hidden;
}

.contact-teaser__description a {
  color: #5f5d5e;
  border: none;
}

.contact-teaser__phone {
  margin: 0;
}

.contact-teaser__mail {
  margin: 0;
}

.contact-teaser__img-right {
  padding-top: 45px;
}

.contact-teaser img.left {
  float: left;
  margin: 0 20px 0 0;
}

.contact-teaser img.right {
  float: right;
  margin: 0 0 0 20px;
}

h4 + .contact-teaser {
  margin: 0;
}

/**
 * brandung share-me.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   Share-me
   ========================================================================== */
.footer__sharing {
  position: absolute;
  top: -70px;
  right: -16px;
  visibility: hidden;
  width: 100%;
  left: 0;
  overflow: auto;
  top: -80px;
}

.footer__sharing.is-active {
  visibility: visible;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.footer__sharing .share-me {
  margin: 15px auto;
}

.share-me {
  margin: 15px 0;
  height: 50px;
  max-width: 1170px;
  margin: 50px auto 0;
  display: block;
}

.share-me ul {
  padding: 22px 0 10px;
  margin: 0 20px;
  float: right;
  overflow: hidden;
}

.share-me li {
  width: 50px;
  height: 50px;
  display: inline;
  border-left: 1px solid #8d8d8f;
  padding: 0;
  width: 100px;
  height: 60px;
}

.share-me li:first-child {
  border: none;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.share-me li:last-child {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.share-me .theme-color {
  padding: 22px 0 10px;
  overflow: hidden;
  margin: -30px 0 0 0;
  height: 75px;
  float: left;
  height: 85px;
}

.share-me .theme-color li {
  display: inline-block;
  border-right: 1px solid #ccc;
}

.share-me .theme-color li a {
  padding: 0;
}

.share-me .theme-color span {
  display: inline;
}

.share-me .theme-color .share_text {
  padding: 0 !important;
  font-size: 14px !important;
  display: none;
}

.share-me .theme-color .share_text {
  display: block;
}

.share-me .theme-color li a {
  padding: 5px 0 0 5px;
}

.share-me .shariff-button {
  background: #ccc !important;
  color: #fff;
  margin-bottom: 0;
  padding: 5px 0;
}

.share-me .shariff-button span {
  display: none;
}

.share-me .shariff-button a {
  color: #fff;
  padding: 10px 30px 10px 10px;
  background: none;
  display: block;
  float: left;
}

.share-me .shariff-button a:before {
  font-size: 36px;
  font-size: 2.25rem;
}

.share-me .shariff-button.whatsapp a {
  float: right;
}

.share-me .shariff-button.whatsapp a:hover {
  color: #43d854;
}

.share-me .shariff-button.whatsapp a:hover .share_text {
  color: #43d854;
}

.share-me .shariff-button.whatsapp a {
  float: none;
}

.share-me .shariff-button.googleplus a:hover {
  color: #dd4b39;
}

.share-me .shariff-button.googleplus a:hover .share_text {
  color: #dd4b39;
}

.share-me .shariff-button.facebook a:hover {
  color: #3b5998;
}

.share-me .shariff-button.facebook a:hover .share_text {
  color: #3b5998;
}

.share-me .shariff-button.twitter a:hover {
  color: #00aced;
}

.share-me .shariff-button.twitter a:hover .share_text {
  color: #00aced;
}

.share-me .shariff-button.mail a {
  margin-left: -5px;
}

.share-me .shariff-button.mail a:after {
  display: none;
}

.share-me .shariff-button.mail a:hover {
  color: #ababab;
}

.share-me .shariff-button.mail a:hover .share_text {
  color: #ababab;
}

.share-me .shariff-button.mail a span.share_text {
  padding-left: 50px;
}

.share-me ul {
  padding: 10px 0 10px;
}

.share-me .shariff-button {
  padding: 0;
}

.share-me .shariff-button a {
  line-height: 50px;
}

.share-me .shariff-button a:before {
  float: left;
  margin-top: 5px;
}

.share-me .shariff-button span {
  display: block;
}

.share-me .shariff-button span.share_text {
  float: left;
  margin-top: -10px;
}

.share-me ul {
  margin-right: 0;
}

.share-me .shariff-button a {
  float: none;
}

/**
 * brandung start-page-filter.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   Start-page-filter
   ========================================================================== */
.filter-category-front-page {
  margin-top: 0;
  padding-bottom: 0;
  color: #134894;
  position: relative;
  width: 100%;
  margin-top: 0;
  width: calc(50% - 25px);
  margin-right: 25px;
  margin-left: auto;
}

.filter-category-front-page__subtitle {
  padding-left: 30px;
  font-weight: bold;
}

.filter-category-front-page__filter {
  position: relative;
  padding: 0;
  margin-bottom: -250px;
}

.filter-category-front-page__item {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  height: 45px;
  width: calc(100% - 30px);
  margin: 0 15px;
  display: table;
  -webkit-transition: background-color ease-in-out .2s;
  transition: background-color ease-in-out .2s;
  top: -255px;
  margin-bottom: 55px;
  height: 60px;
  top: 0;
  margin-bottom: 0;
  margin: 0;
}

.filter-category-front-page__item.js-filterExpertise a {
  position: absolute;
  left: 43px;
  top: 50%;
  display: block;
  width: 70%;
  line-height: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.filter-category-front-page__item.active {
  background-color: #ff7400;
  color: #fff;
}

.filter-category-front-page__item.active a, .filter-category-front-page__item.active input {
  color: #fff;
}

.filter-category-front-page__item.active a:hover, .filter-category-front-page__item.active input:hover {
  color: #134894;
}

.filter-category-front-page__item:hover {
  background: white;
  cursor: pointer;
}

.filter-category-front-page__item:hover a {
  color: #134894;
}

.filter-category-front-page__item span {
  position: relative;
}

.filter-category-front-page__item span:first-child {
  float: left;
}

.filter-category-front-page__item span:before {
  font-size: 47px;
  font-size: 2.9375rem;
  padding: 0;
}

.filter-category-front-page__item span:hover {
  color: #134894;
}

.filter-category-front-page__item span:last-child {
  float: right;
}

.filter-category-front-page__item p {
  position: relative;
  display: block;
  vertical-align: middle;
  margin: 0;
  height: 45px;
  background: rgba(20, 73, 149, 0.15);
}

.filter-category-front-page__item p a {
  color: #134894;
  text-decoration: none;
  line-height: 40px;
}

.filter-category-front-page__item p:hover {
  color: #134894;
}

.filter-category-front-page__item input {
  border: 0;
  width: 200px;
  padding: 10px 0;
  background-color: transparent;
  font-size: 16px;
  font-size: 1rem;
  margin: 0;
  margin-top: 5px;
}

.filter-category-front-page__item input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #134894;
}

.filter-category-front-page__item input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #134894;
  opacity: 1;
}

.filter-category-front-page__item input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #134894;
  opacity: 1;
}

.filter-category-front-page__item input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #134894;
}

.filter-category-front-page__sub-menu {
  float: left;
  width: calc(100% - 50px);
  margin-left: 15px;
  height: 200px;
  margin-top: -200px;
  padding-top: 20px;
  background-color: #fff;
  border: 1px solid #ebebeb;
  display: none;
  overflow: hidden;
  z-index: 10;
  position: absolute;
  margin-top: -180px;
}

.filter-category-front-page__sub-menu .mCustomScrollBox {
  background-color: #fff;
}

.filter-category-front-page__sub-menu li {
  list-style-type: none;
  margin-bottom: 10px;
}

.filter-category-front-page__sub-menu a {
  text-decoration: none;
  color: #134894;
}

.filter-category-front-page__sub-menu a:hover {
  color: #ff3300 !important;
}

.filter-category-front-page__sub-menu a:visited {
  color: #134894;
}

.filter-category-front-page__sub-menu .highlight {
  background: transparent;
  color: #ff7400;
}

.filter-category-front-page__sub-menu ul {
  margin: 10px 0 0 0;
  padding-left: 30px;
}

.filter-category-front-page__sub-menu .areas-list {
  margin-bottom: 20px;
}

.filter-category-front-page__sub-menu .allLocations-list .no-results {
  display: none !important;
}

.filter-category-front-page .mCSB_draggerRail {
  width: 2px;
  background-color: #ebebeb !important;
}

.filter-category-front-page .mCSB_dragger_bar {
  width: 8px !important;
  background-color: #b0b0b0 !important;
}

.filter-category-front-page .filter-expertise-sub-menu {
  position: absolute;
  left: 0;
}

.filter-category-front-page .filter-expertise-sub-menu .sub-menu__main, .filter-category-front-page .filter-expertise-sub-menu .sub-menu__sub, .filter-category-front-page .filter-expertise-sub-menu .sub-menu__hint {
  float: left;
  height: 90%;
}

.filter-category-front-page .sub-menu__sub {
  width: 50%;
}

.filter-category-front-page .sub-menu__sub li {
  margin-bottom: 6px;
}

.filter-category-front-page .sub-menu__hint {
  width: 360px;
  padding-left: 60px;
  padding-top: 60px;
}

.filter-category-front-page .sub-menu__hint:after {
  color: #ff3300;
  content: "\e601";
  font-size: 20px;
  font-weight: bold;
  margin-left: -6px;
}

.filter-category-front-page .sub-menu__hint h2 {
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 18px;
  line-height: 22px;
  color: #134894;
}

.filter-category-front-page .sub-menu__hint a {
  color: #ff3300;
  font-size: 15px;
}

.filter-category-front-page span.icon-suche {
  font-size: 26px;
  font-size: 1.625rem;
  color: #ff7400;
}

.filter-category-front-page__shadow {
  background: url("/Resources/Public/img/_dummyPics/shadow.png");
  background-repeat: no-repeat;
  background-position: center;
  padding: 0;
  position: relative;
}

.filter-category-front-page__filter {
  height: 70px;
  display: block;
}

.filter-category-front-page__sub-menu {
  font-size: 11px;
  font-size: 0.6875rem;
}

.filter-category-front-page__item {
  width: 100%;
  margin-bottom: 10px;
  border: none;
}

.filter-category-front-page__item:last-child {
  margin-right: 0;
}

.filter-category-front-page__item.js-filterExpertise a {
  left: 55px;
  line-height: 30px;
}

.filter-category-front-page__item p {
  font-size: 14px;
  font-size: 0.875rem;
  display: table-cell;
}

.filter-category-front-page__item p a {
  line-height: 40px;
}

.filter-category-front-page__item p span {
  width: 37px;
}

.filter-category-front-page__item p span:before {
  font-size: 50px;
  font-size: 3.125rem;
}

.filter-category-front-page__item p span:last-child {
  margin-right: 5px;
}

.filter-category-front-page__item input {
  font-size: 15px;
  font-size: 0.9375rem;
  width: 240px;
  margin: 9px 0;
  padding: 5px;
}

.filter-category-front-page__item:last-child {
  border-right: none;
}

@media (min-width: 1850px) {
  .filter-category-front-page {
    margin-top: 0;
  }
}

/**
 * brandung slider-front-page.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   SLider-front-page
   ========================================================================== */
.slider-front-page {
  position: relative;
  display: block;
  clear: both;
  width: 100%;
  overflow: hidden;
  padding: 20px 0 10px;
}

.slider-front-page button:focus {
  outline: none;
}

.slider-front-page .media-library__item-icon-big {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ff7400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
}

.slider-front-page .media-library__item-icon-big p {
  color: #ff7400;
  margin-top: -10px;
  font-weight: 600;
}

.slider-front-page .media-library__item-icon-big span {
  margin: -20px 0 0;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 200;
  max-height: 82px;
}

.slider-front-page .media-library__item-icon-big p {
  margin-top: 0;
}

.slider-front-page .media-library__item-icon-big span {
  font-size: 60px;
  font-size: 3.75rem;
}

.slider-front-page .slick-slide .media-library__item-icon-big {
  border: 2px solid #ff7400;
  padding: 10px;
}

.slider-front-page__slider-container {
  position: relative;
  background: #fff;
  background: rgba(255, 255, 255, 0.5);
  margin-top: -243px;
  background: rgba(255, 255, 255, 0.3);
}

.slider-front-page .slick-prev {
  border: 0;
  background: none;
  font-size: 0;
}

.slider-front-page .slick-prev:before {
  font-size: 80px;
  font-size: 5rem;
  color: #ff7400;
  position: absolute;
  top: 50%;
  margin-top: -55px;
  left: -20px;
  width: 50px;
}

.slider-front-page .slick-slide img {
  margin: 0 auto;
}

.slider-front-page .slick-next {
  border: 0;
  background: none;
  font-size: 0;
}

.slider-front-page .slick-next:before {
  font-size: 80px;
  font-size: 5rem;
  color: #ff7400;
  position: absolute;
  top: 50%;
  margin-top: -55px;
  right: 0;
  width: 50px;
}

.slider-front-page.blue .media-library__item-icon-big {
  color: #134894;
}

.slider-front-page.blue .media-library__item-icon-big p, .slider-front-page.blue .media-library__item-icon-big a {
  color: #134894;
}

.slider-front-page.blue .media-library__item-icon-big p:hover, .slider-front-page.blue .media-library__item-icon-big a:hover {
  color: #134894;
  text-decoration: none;
}

.slider-front-page.blue .slick-slide .media-library__item-icon-big {
  border: 2px solid #134894;
}

.slider-front-page.blue .slick-prev:before,
.slider-front-page.blue .slick-next:before {
  color: #134894;
}

/**
 * brandung news-extention-front-page.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   News-extention-front-page
   ========================================================================== */
.news-extention-front-page {
  background: #ebebeb;
  padding: 50px 20px;
  position: relative;
  /*padding: 80px 10px;*/
}

.news-extention-front-page h1, .news-extention-front-page h2, .news-extention-front-page h3, .news-extention-front-page h4, .news-extention-front-page h5, .news-extention-front-page h6 {
  word-break: break-word;
}

.news-extention-front-page__highlight, .news-extention-front-page__last-article {
  margin-bottom: 30px;
}

.news-extention-front-page__highlight span, .news-extention-front-page__last-article span {
  color: #0085C8;
}

.news-extention-front-page__highlight span a, .news-extention-front-page__last-article span a {
  color: #0085C8;
}

.news-extention-front-page__highlight span a:hover, .news-extention-front-page__last-article span a:hover {
  text-decoration: underline;
}

.news-extention-front-page__highlight span a:after, .news-extention-front-page__last-article span a:after {
  display: none;
}

.news-extention-front-page__highlight h3, .news-extention-front-page__last-article h3 {
  font-size: 25px;
  line-height: 30px;
  margin: 0;
  font-weight: 700;
  color: #134894;
}

.news-extention-front-page__highlight a, .news-extention-front-page__last-article a {
  color: #ff7400;
  text-decoration: none;
  /*&:after {
				@extend %icon-font-basics;
				@extend %icon-arrow-small;
			}*/
}

.news-extention-front-page__highlight a span, .news-extention-front-page__last-article a span {
  font-size: 14px;
  font-size: 0.875rem;
  color: #0085C8;
}

.news-extention-front-page__highlight a:visited, .news-extention-front-page__last-article a:visited {
  color: #0085C8;
}

.news-extention-front-page__highlight a:hover, .news-extention-front-page__last-article a:hover {
  text-decoration: none;
}

.news-extention-front-page__highlight a:hover span, .news-extention-front-page__last-article a:hover span {
  text-decoration: underline;
}

.news-extention-front-page__last-article h4 {
  margin: 0;
}

.news-extention-front-page__more {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: -16px;
  z-index: 1;
}

.news-extention-front-page__more a:hover {
  text-decoration: none;
  color: #fff;
}

.news-extention-front-page__more-blue {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: -20px;
  left: 0;
  z-index: 1;
  margin-top: -16px;
}

.news-extention-front-page__highlight, .news-extention-front-page__last-article {
  padding: 20px 30px 10px 10px;
}

/**
 * brandung teaser-full-width.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Teaser-full-width
   ========================================================================== */
.teaser-full-width {
  position: relative;
  overflow: visible;
  clear: both;
}

.teaser-full-width img {
  width: 100%;
}

.teaser-full-width .container {
  padding: 0;
  overflow: visible;
}

.teaser-full-width__right-article {
  position: relative;
  color: #fff;
  padding: 0 20px 60px;
  height: auto;
  margin-top: -110px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#cedae6+13,cedae6+13,cedae6+100&amp;0+0,1+31,1+98 */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(206, 218, 230, 0)), color-stop(13%, rgba(206, 218, 230, 0.42)), color-stop(31%, #cedae6), color-stop(98%, #cedae6), to(#cedae6));
  background: linear-gradient(to bottom, rgba(206, 218, 230, 0) 0%, rgba(206, 218, 230, 0.42) 13%, #cedae6 31%, #cedae6 98%, #cedae6 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00cedae6', endColorstr='#cedae6',GradientType=0 );
  /* IE6-9 */
}

.teaser-full-width__right-article a:not(.button-bordered) {
  color: #ff7400;
  text-decoration: none;
}

.teaser-full-width__right-article a:not(.button-bordered):hover span {
  text-decoration: underline;
}

.teaser-full-width__right-article h2 {
  padding-top: 50px;
  line-height: 30px;
  margin: 0;
  color: #fff;
  font-weight: 300;
}

.teaser-full-width__right-article h2 span {
  font-weight: 800;
  color: #134894;
}

.teaser-full-width__right-article p:last-of-type {
  margin-bottom: 30px;
}

.teaser-full-width__right-article br {
  display: none;
}

.teaser-full-width__right-article {
  margin-top: -155px;
}

.teaser-full-width__right-article h2 {
  font-size: 35px;
  font-size: 2.1875rem;
  line-height: 40px;
}

/**
 * brandung quotes-centered.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Quotes-centered
   ========================================================================== */
blockquote {
  position: relative;
  display: table;
  margin: 0;
}

blockquote small {
  margin: 20px 0 40px 0;
  display: block;
}

blockquote.blockquote__centered {
  display: block;
  margin: 0 auto;
  float: none;
  width: 70%;
}

blockquote.blockquote__centered h3 {
  text-align: center;
  font-weight: 300;
  font-style: italic;
}

blockquote.blockquote__centered small {
  text-align: center;
}

blockquote.blockquote__right {
  position: static;
  display: table-row;
  vertical-align: middle;
  padding: 0 40px;
  float: right;
  width: 50%;
}

blockquote.blockquote__right h3 {
  margin: 0;
  font-weight: 300;
  font-style: italic;
}

blockquote.blockquote__right small {
  text-align: left;
}

/**
 * brandung downloads.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   downloads
   ========================================================================== */
.downloads {
  background: #c2d9eb;
  padding: 5px 30px;
  border-radius: 50px;
  position: relative;
  margin: 15px 0;
  display: table;
  width: 100%;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
  text-decoration: none !important;
  color: #134894;
}

.downloads:hover {
  background: rgba(194, 217, 235, 0.8);
}

.downloads:visited {
  color: #134894;
}

.downloads p {
  margin: 5px 0;
  display: block;
  padding: 0 25px 0 0;
  color: #134894;
  width: 100%;
  overflow: visible;
}

.downloads p span {
  text-decoration: underline;
}

.downloads span {
  text-decoration: none;
}

.downloads__save span.icon-only, .downloads__save .vjs-default-skin span.vjs-big-play-button:before, .vjs-default-skin .downloads__save span.vjs-big-play-button:before, .downloads__save span.vjs-big-play-button {
  display: table-cell;
  vertical-align: middle;
  font-size: 20px;
  font-size: 1.25rem;
  color: #134894;
  float: left;
  padding-bottom: 10px;
}

.downloads__save span.icon-only.icon-pdf, .downloads__save .vjs-default-skin span.icon-pdf.vjs-big-play-button:before, .vjs-default-skin .downloads__save span.icon-pdf.vjs-big-play-button:before, .downloads__save span.icon-pdf.vjs-big-play-button {
  font-size: 33px;
  font-size: 2.0625rem;
  margin-left: -20px;
}

.downloads__save a {
  margin-top: -10px;
}

.downloads__save:before {
  font-size: 60px;
  font-size: 3.75rem;
  color: #134894;
  position: absolute;
  top: 50%;
  margin-top: -30px;
  right: 0;
  display: table-cell;
  padding-left: 20px;
  height: 100%;
}

.downloads__descriptions {
  padding-right: 25px;
  color: #134894;
  font-size: 13px;
  display: table-cell;
}

.downloads span.downloads__description {
  padding: 0 40px 0 0;
}

/**
 * brandung image-text.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   imgage-text
   ========================================================================== */
.image-text {
  clear: both;
  display: block;
}

.image-text a {
  float: none !important;
  margin: 0;
}

.image-text h6 {
  margin-top: 26px;
  font-size: 13px;
}

.image-text .right {
  margin: 0 0 10px 10px;
}

.image-text .right a {
  float: right;
}

.image-text .left {
  margin: 0 10px 10px 0;
}

.image-text .left a {
  float: left;
  display: block;
}

.image-text .right,
.image-text .left {
  max-width: 100%;
  max-width: 50%;
  max-width: 31.7%;
}

.image-text .right a,
.image-text .left a {
  display: block;
}

.image-text .caption + .caption + .caption + .image-text__articles {
  clear: both;
  padding-top: 10px;
}

.image-text .caption + .caption + .caption.left a .caption__search-icon,
.image-text .caption + .caption + .caption.right a .caption__search-icon {
  margin-left: -36px;
}

.image-text .image-text__articles p {
  overflow: visible;
}

.image-text .fancybox {
  float: left;
  width: auto;
}

.image-text .right .fancybox, .image-text__rightside .fancybox,
.image-text .left .fancybox, .image-text__leftside .fancybox {
  max-width: 300px;
}

.image-text__rightsite div > span:first-child,
.image-text__leftsite div > span:first-child {
  display: block;
}

.image-text__rightsite h4,
.image-text__leftsite h4 {
  display: inline-block;
  margin: 10px 0;
}

.image-text__rightsite p,
.image-text__leftsite p {
  overflow: visible;
}

.image-text__rightsite .caption,
.image-text__leftsite .caption {
  max-width: 300px;
}

.image-text__rightsite div[itemprop="location"] strong,
.image-text__rightsite > div > p > strong,
.image-text__leftsite div[itemprop="location"] strong,
.image-text__leftsite > div > p > strong {
  color: #ff7400;
}

.gallery__slider-container .caption {
  max-width: 100%;
  width: 100%;
}

.image-text__rightsite .caption {
  float: right;
  margin-left: 20px;
}

.image-text__rightsite .gallery__slider-container {
  float: right;
  margin-left: 20px;
  max-width: 40%;
  width: auto;
  padding: 10px 0 40px;
}

.image-text__rightsite .gallery__slider-container .caption {
  margin: 0;
}

.image-text__leftsite .caption {
  float: left;
  margin-right: 20px;
}

.image-text__leftsite .gallery__slider-container {
  float: left;
  margin-right: 20px;
}

.image-text__leftsite .gallery__slider-container .caption {
  margin: 0;
}

.image-wrapper {
  max-width: 320px;
  display: inline-block;
  float: right;
}

/**
 * brandung text-icon.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Text-icon
   ========================================================================== */
.text-icon {
  padding: 20px 10px;
  overflow: hidden;
  margin: 30px 0;
}

.text-icon__left span, .text-icon__right span {
  font-size: 80px;
  font-size: 5rem;
  color: #707173;
  border: 3px solid #707173;
  border-radius: 50%;
  height: 100px;
  width: 100px;
  padding: 20px 0 45px 11px;
  display: block;
}

.text-icon__left span, .text-icon__right span {
  height: 100px;
  width: 100px;
  padding: 20px 0 45px 11px;
}

.text-icon__left span:before, .text-icon__right span:before {
  font-size: 60px;
  font-size: 3.75rem;
  vertical-align: top;
}

.text-icon__left {
  float: left;
}

.text-icon__left span {
  margin-right: 30px;
}

.text-icon__right {
  float: right;
}

.text-icon__right span {
  margin-left: 30px;
}

.text-icon__decriptions {
  text-align: left;
}

.text-icon__decriptions h3, .text-icon__decriptions h4 {
  margin: 0;
}

.text-no-icon__subline {
  margin-bottom: 30px;
}

/**
 * brandung text-decoration.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Text-decoration
   ========================================================================== */
.text-decoration__footnote span {
  font-size: 11px;
  color: #707173;
}

/**
 * brandung sub-navigation.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-13
 * MIT License (MIT)
 */
/* ==========================================================================
   sub-navigation
   ========================================================================== */
.sub-navigation {
  background: #fff;
  padding: 0;
  margin-bottom: 30px;
  display: none;
}

.sub-navigation a {
  color: #134894;
  margin: 0;
}

.sub-navigation a:after {
  content: none;
}

.sub-navigation li {
  border-bottom: 2px solid #fff;
  margin: 0;
}

.sub-navigation li a {
  padding: 15px 30px;
  display: block;
}

.sub-navigation__header {
  color: #fff;
  background: #134894;
  padding: 20px 30px;
  margin: 0;
}

.corporate_sub_withmenu .sub-navigation__header {
  display: none;
}

.sub-navigation__header a,
.sub-navigation__header a:hover {
  color: #fff;
  text-decoration: none;
}

.sub-navigation__headline {
  position: relative;
  color: #134894 !important;
  padding: 20px;
  font-weight: 600;
  background: #ebebeb;
}

.sub-navigation__headline:before {
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -13px;
}

.sub-navigation__headline:hover {
  background-color: #ccc !important;
}

.sub-navigation__headline.active {
  background: #ebebeb;
  color: #ff7400 !important;
  font-weight: 600;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.sub-navigation__headline.active:before {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.sub-navigation__headline:after {
  display: none;
}

.sub-navigation .sub-navigation__headline-sub {
  color: #134894;
  padding: 3px 30px;
  background: #f4f4f4;
}

.sub-navigation .sub-navigation__headline-sub:hover {
  background-color: #ebebeb;
  color: #134894;
}

.sub-navigation .sub-navigation__headline-sub.active {
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #ff7400;
}

.sub-navigation .sub-navigation__headline-sub + .level2 li a {
  padding-left: 50px;
  background: #f9f9f9 !important;
}

.sub-navigation .sub-navigation__headline-sub + .level2 li a:hover {
  background-color: #ebebeb !important;
}

.sub-navigation .sub-navigation__headline-sub + .level2 li a.active {
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #ff7400;
}

.sub-navigation .sub-navigation__headline-sub + .level3 li a {
  padding-left: 70px;
  background: #fcfcfc !important;
}

.sub-navigation .sub-navigation__headline-sub + .level3 li a:hover {
  background-color: #ebebeb !important;
}

.sub-navigation__active {
  position: absolute;
  top: 50%;
  right: 15px;
}

.sub-navigation__list-item.active {
  background: #5f5d5e;
  color: #fff;
}

.sub-navigation__list-item li {
  background: #ebebeb;
  border: none !important;
}

.sub-navigation__list-item li a {
  color: #134894;
}

.sub-navigation__nochild {
  color: #134894;
}

.sub-navigation__nochild:before {
  display: none;
}

.sub-navigation .sub-navigation__list-item > ul {
  border-top: 2px solid #fff;
}

/**
 * brandung sub-navigation.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-13
 * MIT License (MIT)
 */
/* ==========================================================================
   sub-navigation
   ========================================================================== */
.sub-navigation-mobile {
  display: block;
  background: #fff;
  padding: 0;
  margin: 30px 0;
}

.sub-navigation-mobile a {
  color: #134894;
  margin: 0;
}

.sub-navigation-mobile a:after {
  content: none;
}

.sub-navigation-mobile li {
  border-bottom: 2px solid #fff;
  margin: 0;
}

.sub-navigation-mobile li a {
  padding: 15px 30px;
  display: block;
}

.sub-navigation-mobile__header {
  color: #fff;
  background: #134894;
  padding: 20px 30px;
  margin: 0;
}

.sub-navigation-mobile__header a,
.sub-navigation-mobile__header a:hover {
  color: #fff;
  text-decoration: none;
}

.sub-navigation-mobile__headline {
  position: relative;
  color: #134894 !important;
  padding: 20px;
  font-weight: 600;
  background: #ebebeb;
}

.sub-navigation-mobile__headline:before {
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -13px;
}

.sub-navigation-mobile__headline:hover {
  background: #e1e1e1 !important;
}

.sub-navigation-mobile__headline.active {
  background: #ebebeb;
  color: #ff7400 !important;
  font-weight: 600;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.sub-navigation-mobile__headline.active:before {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.sub-navigation-mobile__headline:after {
  display: none;
}

.sub-navigation-mobile .sub-navigation-mobile__headline-sub {
  color: #134894;
  padding: 3px 30px;
  background: #f4f4f4;
}

.sub-navigation-mobile .sub-navigation-mobile__headline-sub:hover {
  background: #fdfdfd !important;
  color: #134894;
}

.sub-navigation-mobile .sub-navigation-mobile__headline-sub.active {
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #ff7400;
}

.sub-navigation-mobile .sub-navigation-mobile__headline-sub + ul li a {
  padding-left: 50px;
  background: #f9f9f9 !important;
}

.sub-navigation-mobile .sub-navigation-mobile__headline-sub + ul li a:hover {
  background: #fefefe !important;
}

.sub-navigation-mobile .sub-navigation-mobile__headline-sub + ul li a.active {
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #ff7400;
}

.sub-navigation-mobile__active {
  position: absolute;
  top: 50%;
  right: 15px;
}

.sub-navigation-mobile__list-item.active {
  background: #5f5d5e;
  color: #fff;
}

.sub-navigation-mobile__list-item > ul {
  display: none;
}

.sub-navigation-mobile__list-item li {
  background: #ebebeb;
  border: none !important;
}

.sub-navigation-mobile__list-item li a {
  color: #134894;
}

.sub-navigation-mobile__nochild {
  color: #134894;
}

.sub-navigation-mobile__nochild:before {
  display: none;
}

.sub-navigation-mobile .sub-navigation-mobile__list-item > ul {
  border-top: 2px solid #fff;
}

/**
 * brandung accordion.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   Accordion
   ========================================================================== */
.accordion {
  margin: 30px 0;
  /* overflow: hidden; */
  clear: both;
  display: block;
  position: relative;
}

.accordion h4 + .contact-teaser {
  margin: 40px 0;
}

.accordion__headline {
  display: block;
  text-decoration: none;
  position: relative;
  padding: 20px 80px 20px 26px;
  color: #527c8f;
  font-weight: 700;
  cursor: pointer;
  background: #c1d9eb;
  border-radius: 35px;
  z-index: 0;
  font-size: 18px;
  font-size: 1.125rem;
}

.accordion__headline:hover {
  text-decoration: none;
}

.accordion__headline:last-child {
  cursor: default;
  padding: 0;
}

.accordion__headline:last-child:after {
  display: none;
}

.accordion__headline:after {
  font-size: 36px;
  font-size: 2.25rem;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  right: 10px;
}

.accordion__headline.is-active {
  margin: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion__headline.is-active:after {
  font-size: 36px;
  font-size: 2.25rem;
}

.accordion h1,
.accordion h2,
.accordion h3,
.accordion h4,
.accordion h5,
.accordion h6 {
  display: none;
}

.accordion__content {
  margin: 20px 0;
}

.accordion__content .contact-teaser {
  padding: 0;
}

.accordion__content .contact-teaser h5 {
  display: block;
  line-height: 25px;
}

.accordion__content .contact-teaser a {
  word-break: break-all;
}

.accordion__flyout {
  padding: 40px 25px 10px 25px;
  display: none;
  border: 2px solid #c1d9eb;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  background: #f9fbfd;
  border-top: 0;
  position: static;
  margin-top: -35px;
  overflow: hidden;
  height: auto;
}

.accordion__flyout--content img {
  margin: 0;
}

.accordion__list {
  padding: 30px 0;
}

.accordion__list ul {
  padding-left: 0;
}

.accordion__list li {
  line-height: 32px;
}

/**
 * brandung breadcrumb.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-20
 * MIT License (MIT)
 */
/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb {
  margin: 0 15px;
  overflow: hidden;
  display: block;
  margin-bottom: 50px;
  margin: 15px;
  margin-bottom: 50px;
}

.breadcrumb li {
  float: left;
  color: #5f5d5e;
  font-size: 12px;
  font-size: 0.75rem;
}

.breadcrumb li:after {
  color: #ff7400;
}

.breadcrumb li:last-child {
  padding-top: 2px;
}

.breadcrumb li:last-child:after {
  color: #707173;
  display: none;
}

.breadcrumb li:last-child a {
  color: #134894;
}

.breadcrumb li:last-child a:after {
  display: none;
}

.breadcrumb li a {
  color: #134894;
}

.breadcrumb li a:hover span {
  text-decoration: underline;
}

.breadcrumb li {
  font-size: 14px;
  font-size: 0.875rem;
}

/**
 * brandung Content-lightbox.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-28
 * MIT License (MIT)
 */
/* ==========================================================================
   Content-lightbox
   ========================================================================== */
.content-lightbox {
  background: #fff;
  padding: 30px;
  margin: 30px 0;
  overflow: hidden;
}

.content-lightbox__thumbnail:after {
  display: none;
}

.content-lightbox__next, .content-lightbox__prev {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  padding: 3px 5px 0 0;
  color: #fff;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.content-lightbox__next:before, .content-lightbox__prev:before {
  font-size: 50px;
  font-size: 3.125rem;
}

.content-lightbox__next:hover, .content-lightbox__prev:hover {
  color: #ff7400;
}

.content-lightbox__next {
  margin-top: -30px;
  right: 50%;
  margin-right: -46%;
}

.content-lightbox__prev {
  margin-top: -22px;
  left: 50%;
  margin-left: -48%;
}

.content-lightbox__title {
  padding: 0 10px 10px;
  background: rgba(255, 255, 255, 0.5);
}

.content-lightbox__title span {
  font-weight: 700;
}

.content-lightbox__title .image-quantity {
  float: right;
  font-style: italic;
  margin-left: 10px;
}

.content-lightbox__close {
  position: absolute;
  top: 0;
  right: 10px;
  background: none;
  color: #fff;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
  width: 43px;
}

.content-lightbox__close:before {
  font-size: 50px;
  font-size: 3.125rem;
  position: absolute;
  top: -13px;
}

.content-lightbox__content {
  border-radius: 0;
}

.content-lightbox__content:hover .content-lightbox__close {
  color: #ff7400;
}

/**
 * brandung media-library.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Media-library
   ========================================================================== */
.media-library {
  text-align: center;
  display: table;
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
}

.media-library ul {
  margin: 0 auto;
  overflow: hidden;
  width: auto;
  max-width: 100%;
  display: block;
  padding: 0;
  text-align: center;
}

.media-library li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 10px;
}

.media-library__item-icon-big, .media-library__item-icon {
  border-radius: 50%;
  -webkit-box-shadow: 5px 7px 18px 0px rgba(209, 207, 209, 0.85);
  -o-box-shadow: 5px 7px 18px 0px rgba(209, 207, 209, 0.85);
  -ms-box-shadow: 5px 7px 18px 0px rgba(209, 207, 209, 0.85);
  box-shadow: 5px 7px 18px 0px rgba(209, 207, 209, 0.85);
  border: 2px solid #555;
  height: 100px;
  width: 100px;
  right: 0;
  left: 0;
  margin: 0 auto 20px;
  text-align: center;
}

.media-library__item-icon-big .icon-only, .media-library__item-icon-big .vjs-default-skin .vjs-big-play-button:before, .vjs-default-skin .media-library__item-icon-big .vjs-big-play-button:before, .media-library__item-icon-big .vjs-big-play-button, .media-library__item-icon .icon-only, .media-library__item-icon .vjs-default-skin .vjs-big-play-button:before, .vjs-default-skin .media-library__item-icon .vjs-big-play-button:before, .media-library__item-icon .vjs-big-play-button {
  font-size: 30px;
  font-size: 1.875rem;
  color: #b0b0b0;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.media-library__item-icon-big span, .media-library__item-icon span {
  margin-left: 10px;
}

.media-library__item-icon-big p, .media-library__item-icon p {
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 14px;
  margin: 0;
  color: #555;
}

.media-library a {
  display: block;
  height: 100%;
}

.media-library a:hover {
  text-decoration: none;
}

.media-library a:hover .icon-only, .media-library a:hover .vjs-default-skin .vjs-big-play-button:before, .vjs-default-skin .media-library a:hover .vjs-big-play-button:before, .media-library a:hover .vjs-big-play-button {
  color: #ff7400;
}

.media-library ul {
  max-width: 770px;
  display: table-row;
}

.media-library li {
  display: table-cell;
  margin: 0;
}

.media-library__item-icon {
  height: 120px;
  width: 120px;
  text-align: center;
}

.media-library__item-icon .icon-only, .media-library__item-icon .vjs-default-skin .vjs-big-play-button:before, .vjs-default-skin .media-library__item-icon .vjs-big-play-button:before, .media-library__item-icon .vjs-big-play-button {
  font-size: 32px;
  font-size: 2rem;
}

.media-library__item-icon p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: normal;
}

.media-library__item-icon-big {
  height: 150px;
  width: 150px;
  text-align: center;
}

.media-library__item-icon-big .icon-only, .media-library__item-icon-big .vjs-default-skin .vjs-big-play-button:before, .vjs-default-skin .media-library__item-icon-big .vjs-big-play-button:before, .media-library__item-icon-big .vjs-big-play-button {
  font-size: 42px;
  font-size: 2.625rem;
}

.media-library__item-icon-big p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: normal;
}

/**
 * brandung teasers.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Teasers
   ========================================================================== */
.teasers {
  position: relative;
  width: 100%;
  height: 270px;
  margin: 30px 0;
  display: block;
  clear: both;
  background: #cedae6;
  overflow: hidden;
  height: 370px;
}

.teasers img {
  width: 100%;
}

.teasers__small .teasers__headline, .teasers__medium .teasers__headline, .teasers__large .teasers__headline {
  padding: 0 20px;
}

.teasers__small .teasers__headline h4, .teasers__medium .teasers__headline h4, .teasers__large .teasers__headline h4 {
  color: #134894;
  margin: 0;
  font-weight: 600;
}

.teasers__small .teasers__description, .teasers__medium .teasers__description, .teasers__large .teasers__description {
  padding: 0 20px;
}

.teasers__small .teasers__description a, .teasers__medium .teasers__description a, .teasers__large .teasers__description a {
  color: #134894;
}

.teasers__small .teasers__description a:hover, .teasers__medium .teasers__description a:hover, .teasers__large .teasers__description a:hover {
  color: #4f84d0;
}

.teasers__small .teasers__description a:hover span, .teasers__medium .teasers__description a:hover span, .teasers__large .teasers__description a:hover span {
  text-decoration: underline;
}

.teasers__small {
  position: absolute;
  top: 150px;
  padding-top: 0;
  height: 240px;
  width: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#cedae6+13,cedae6+13,cedae6+100&amp;0+0,1+31,1+98 */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(206, 218, 230, 0)), color-stop(13%, rgba(206, 218, 230, 0.42)), color-stop(31%, #cedae6), color-stop(98%, #cedae6), to(#cedae6));
  background: linear-gradient(to bottom, rgba(206, 218, 230, 0) 0%, rgba(206, 218, 230, 0.42) 13%, #cedae6 31%, #cedae6 98%, #cedae6 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00cedae6', endColorstr='#cedae6', GradientType=0);
  /* IE6-9 */
}

.teasers__small.light {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e4edf2+14,e4edf2+97&amp;0+1,1+32 */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, rgba(228, 237, 242, 0)), color-stop(14%, rgba(228, 237, 242, 0.42)), color-stop(32%, #e4edf2), color-stop(97%, #e4edf2));
  background: linear-gradient(to bottom, rgba(228, 237, 242, 0) 1%, rgba(228, 237, 242, 0.42) 14%, #e4edf2 32%, #e4edf2 97%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00e4edf2', endColorstr='#e4edf2', GradientType=0);
  /* IE6-9 */
}

.teasers > a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.teasers__small {
  top: 130px;
  padding-top: 23px;
}

a.teaser__link {
  height: 100%;
  width: 100%;
}

a.teaser__link p {
  color: #5f5d5e;
}

a.teaser__link:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: transparent;
  -webkit-transition: width .3s;
  transition: width .3s;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}

a.teaser__link:hover:after {
  background-color: rgba(255, 255, 255, 0.2);
}

/**
 * brandung search-form.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-28
 * MIT License (MIT)
 */
/* ==========================================================================
   Search-form
   ========================================================================== */
.tx-indexedsearch {
  position: relative;
}

.tx-indexedsearch .tx-indexedsearch-searchbox table {
  width: 100%;
}

.tx-indexedsearch .tx-indexedsearch-searchbox table + p {
  display: none;
}

.tx-indexedsearch .tx-indexedsearch-searchbox table td {
  width: 100%;
  display: block;
}

.tx-indexedsearch .tx-indexedsearch-searchbox table input.tx-indexedsearch-searchbox-sword {
  width: 100%;
}

.tx-indexedsearch .tx-indexedsearch-searchbox table tr:nth-child(2) {
  position: absolute;
  top: 15px;
  right: 35px;
}

.tx-indexedsearch .tx-indexedsearch-searchbox table tr:nth-child(2) td {
  width: 40px;
}

.tx-indexedsearch .tx-indexedsearch-searchbox table tr:nth-child(2) td:first-child {
  z-index: 1;
}

.tx-indexedsearch .tx-indexedsearch-searchbox table tr:nth-child(2) td:first-child:before {
  font-size: 80px;
  font-size: 5rem;
  position: absolute;
  top: 25px;
  right: -35px;
}

.tx-indexedsearch .tx-indexedsearch-searchbox table tr:nth-child(2) td:last-child {
  z-index: 10;
}

.tx-indexedsearch .tx-indexedsearch-searchbox table tr:nth-child(2) input {
  height: 60px;
  width: 60px;
  background: transparent;
  border: none;
  font-size: 0;
  position: relative;
}

.tx-indexedsearch .tx-indexedsearch-rules,
.tx-indexedsearch .tx-indexedsearch-icon,
.tx-indexedsearch .tx-indexedsearch-percent {
  display: none !important;
}

.tx-indexedsearch .tx-indexedsearch-info.info {
  display: block !important;
  background-color: transparent;
}

.tx-indexedsearch .tx-indexedsearch-res td.tx-indexedsearch-descr {
  font-style: normal !important;
}

.tx-indexedsearch .tx-indexedsearch-res td.tx-indexedsearch-descr .tx-indexedsearch-redMarkup {
  color: #ff7400 !important;
}

.tx-indexedsearch .tx-indexedsearch-res table {
  border-bottom: 1px solid #ebebeb;
  display: block;
}

.tx-indexedsearch .tx-indexedsearch-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 26px;
  margin: 5px 0;
}

.tx-indexedsearch .tx-indexedsearch-title a {
  color: #707173;
}

.tx-indexedsearch .tx-indexedsearch-browsebox {
  display: block;
  overflow: hidden;
  margin-bottom: 20px;
}

.tx-indexedsearch .tx-indexedsearch-browsebox > p {
  float: left;
  max-width: 240px;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox {
  background: #ebebeb;
  display: inline-block;
  border-radius: 30px;
  padding: 0;
  float: right;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li {
  float: left;
  display: inline-block;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li a {
  line-height: 29px;
  padding: 10px;
  display: inline-block;
  font-weight: 600;
  color: #707173;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li a:hover {
  text-decoration: none;
  color: #b0b0b0;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li.tx-indexedsearch-browselist-currentPage a {
  color: #ff7400;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:first-child a {
  font-size: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:first-child a:before {
  font-size: 30px;
  font-size: 1.875rem;
  color: #ff7400;
  padding: 0;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:first-child a:hover:before {
  opacity: .7;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:first-child.tx-indexedsearch-browselist-currentPage {
  padding-left: 20px;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:first-child.tx-indexedsearch-browselist-currentPage a {
  font-size: 15px;
  font-size: 0.9375rem;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:first-child.tx-indexedsearch-browselist-currentPage a:before {
  display: none;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:last-child a {
  font-size: 0;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:last-child a:after {
  font-size: 30px;
  font-size: 1.875rem;
  color: #ff7400;
  padding: 0;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:last-child a:hover:after {
  opacity: .7;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:last-child.tx-indexedsearch-browselist-currentPage {
  padding-right: 20px;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:last-child.tx-indexedsearch-browselist-currentPage a {
  font-size: 15px;
  font-size: 0.9375rem;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:last-child.tx-indexedsearch-browselist-currentPage a:after {
  display: none;
}

.tx-indexedsearch__article {
  padding: 0;
}

.tx-indexedsearch__container {
  border-top: 2px solid #ccc;
  padding: 20px 0;
  overflow: hidden;
}

.tx-indexedsearch__container img {
  max-width: 100%;
  max-height: 219px;
  margin: 9px 20px 0 0;
  float: left;
  max-width: 100%;
  max-height: 219px;
}

.tx-indexedsearch__subline a {
  color: #ff7400;
  font-weight: 700;
}

.tx-indexedsearch__paginate {
  padding: 30px 0 0;
}

.tx-indexedsearch__paginate p {
  margin-top: 0;
}

.tx-indexedsearch__paginate .pagination {
  /* li:last-child {
             border: none;
         }*/
}

.tx-indexedsearch__paginate .pagination ul {
  margin: 0;
}

.tx-indexedsearch__paginate h5 {
  color: #ff7400;
  font-size: 18px;
  margin-bottom: 25px;
}

.tx-indexedsearch .pagination li:last-child {
  border: 0;
  padding-top: 0;
}

.tx-indexedsearch input[type="text"] {
  width: 100%;
  padding: 18px 80px 18px 18px;
  font-size: 18px;
  border: 15px solid #ebebeb;
  background: #fff;
}

.tx-indexedsearch span.icon-only, .tx-indexedsearch .vjs-default-skin span.vjs-big-play-button:before, .vjs-default-skin .tx-indexedsearch span.vjs-big-play-button:before, .tx-indexedsearch span.vjs-big-play-button {
  position: absolute;
  top: 18px;
  right: 10px;
  color: #707173;
  font-size: 40px;
  font-size: 2.5rem;
}

.tx-indexedsearch span {
  color: #ff7400;
}

.tx-indexedsearch li:first-child {
  border-top: 0;
}

/**
 * brandung datepicker.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-05
 * MIT License (MIT)
 */
/* ==========================================================================
   Datepicker
   ========================================================================== */
.date-picker .row {
  padding: 10px 0;
}

.date-picker__select select {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
}

.date-picker__select select:before {
  font-size: 30px;
  font-size: 1.875rem;
  color: #ff7400;
  font-weight: 900;
}

.date-picker__select select .selectboxit-options,
.date-picker__select select .selectboxit-list {
  margin-top: 30px;
}

.date-picker__select .selectboxit-container {
  width: 100%;
}

.date-picker__select .selectboxit-container select {
  width: 100% !important;
  z-index: 197 !important;
}

.date-picker__select .selectboxit-container .selectboxit {
  width: auto;
  padding: 8px;
  background: #ebebeb;
  border-radius: 30px;
  border: none;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.date-picker__select .selectboxit-container .selectboxit .selectboxit-arrow-container .selectboxit-arrow {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 50%;
  margin-top: -13px;
  right: 20px;
}

.date-picker__select .selectboxit-container .selectboxit .selectboxit-arrow-container .selectboxit-arrow:before {
  font-size: 30px;
  font-size: 1.875rem;
  color: #ff7400;
  font-weight: 900;
}

.date-picker__select:hover .selectboxit {
  background: #e1e1e1 !important;
}

.date-picker__select span.selectboxit-text {
  width: 100% !important;
}

.date-picker__paginate {
  margin-bottom: 30px;
  overflow: hidden;
  clear: both;
  display: block;
}

.date-picker .pagination ul {
  margin: 10px;
}

.date-picker p {
  font-weight: 700;
  font-size: 15px;
}

.date-picker .dp-choose-date.is-active {
  background: #5f5d5e;
  color: #fff;
}

.date-picker input {
  cursor: pointer;
  float: right;
  width: 85%;
  padding: 13px;
  border: none;
  border-radius: 30px;
  background: #ebebeb;
  margin: 0;
  -webkit-box-shadow: inset 6px 7px 18px 0px rgba(209, 207, 209, 0.85);
  -o-box-shadow: inset 6px 7px 18px 0px rgba(209, 207, 209, 0.85);
  -ms-box-shadow: inset 6px 7px 18px 0px rgba(209, 207, 209, 0.85);
  box-shadow: inset 6px 7px 18px 0px rgba(209, 207, 209, 0.85);
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.date-picker input:hover {
  background: #e1e1e1;
}

.date-picker > input {
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
  background: #ff7400;
  color: #fff;
  float: right;
  display: block;
  width: auto;
  padding: 13px 25px;
  margin: 0 15px 15px 15px;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.date-picker > input:hover {
  background: #ff5e00;
}

.date-picker label {
  line-height: 40px;
}

div.dp-popup h2 {
  font-size: 18px;
  text-align: center;
  margin: 2px 0;
  padding: 0;
}

div.dp-popup {
  margin-top: 25px;
  margin-left: 10px;
}

.dp-popup {
  background: #e8e8e8 !important;
  padding: 0 !important;
  width: 303px !important;
  margin: 15px 0;
  line-height: 1.2em;
  border: 1px solid #ccc;
}

.dp-popup a {
  color: #000;
  text-decoration: none;
  padding: 3px 2px 0;
}

.dp-popup a.disabled {
  cursor: default;
}

.dp-popup div {
  background: #e8e8e8;
  padding: 5px 0;
}

.dp-popup div.dp-nav-prev, .dp-popup div.dp-nav-next {
  position: absolute;
  top: 0;
  background: none;
}

.dp-popup div .dp-nav-prev-month,
.dp-popup div .dp-nav-next-month {
  font-size: 18px;
  font-size: 1.125rem;
  color: #5f5d5e;
}

.dp-popup div .dp-nav-next-year,
.dp-popup div .dp-nav-prev-year {
  display: none;
}

.dp-popup div.dp-nav-prev {
  left: 4px;
}

.dp-popup div.dp-nav-prev a {
  float: left;
  cursor: pointer;
  color: #ff7400;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.dp-popup div.dp-nav-prev a.disabled {
  cursor: default;
}

.dp-popup div.dp-nav-next {
  right: 4px;
  margin-top: -2px;
}

.dp-popup div.dp-nav-next a {
  cursor: pointer;
  float: right;
  color: #ff7400;
}

.dp-popup div.dp-nav-next a.disabled {
  cursor: default;
}

.dp-popup td {
  cursor: pointer;
}

.dp-popup td.disabled {
  cursor: default;
}

.dp-calendar {
  padding: 0 !important;
}

.dp-calendar table.jCalendar {
  border: 0;
  background: #fff !important;
  border-spacing: 0;
  padding: 0;
}

.dp-calendar table.jCalendar th {
  font-size: 18px;
  background: #fff;
  color: #707173;
  font-weight: 300;
  padding: 10px;
}

.dp-calendar table.jCalendar td {
  background: #fff;
  color: #707173;
  font-size: 14px;
  padding: 8px 13px;
  text-align: center;
  border-top: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
}

.dp-calendar table.jCalendar td.other-month {
  background: #707173;
  color: #fff;
}

.dp-calendar table.jCalendar td.today {
  color: #ff7400;
}

.dp-calendar table.jCalendar td.selected {
  background: #5f5d5e;
  color: #fff;
}

.dp-calendar table.jCalendar td.selected.dp-hover {
  background: #ff7400;
  color: #fff;
}

.dp-calendar table.jCalendar td.dp-hover {
  background: #ff7400;
  color: #fff;
}

.dp-calendar table.jCalendar tr.activeWeekHover td {
  background: #fff;
  color: #000;
}

.dp-calendar table.jCalendar tr.selectedWeek td {
  background: #ccc;
  color: #fff;
}

.dp-calendar a#dp-close {
  font-size: 14px;
  padding: 4px 0;
  text-align: center;
  display: block;
}

.dp-calendar a#dp-close:hover {
  text-decoration: underline;
}

/**
* brandung pagination.scss v1.0.0
*
* Copyright brandung GmbH & Co.KG
* http://www.brandung.de/
*
* Date: 2015-05-13
* MIT License (MIT)
*/
/* ==========================================================================
	Pagination
========================================================================== */
.pagination {
  clear: both;
  display: block;
  height: 45px;
  margin: 30px 15px;
  text-align: center;
  height: 85px;
}

.pagination p {
  margin-top: 5px;
  color: #ff7400;
  font-weight: 600;
  float: left;
}

.pagination ul {
  margin: 0 auto;
  background: #ebebeb;
  padding: 7px 0;
  border-radius: 30px;
  height: 45px;
  float: right;
}

.pagination a {
  border: none;
  padding: 10px;
  text-decoration: none;
}

.pagination li {
  font-weight: 700;
  float: left;
  padding: 3px 0 0 0;
}

.pagination li:first-child.current {
  padding-left: 25px;
}

.pagination li:last-child.current {
  padding-right: 25px;
}

.pagination li.previous {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.pagination li.previous a {
  font-size: 0;
  padding: 0;
}

.pagination li.previous a:before {
  color: #ff7400;
  font-size: 30px;
  font-size: 1.875rem;
}

.pagination li.previous a:hover:before {
  opacity: .7;
}

.pagination li.next {
  padding-top: 0;
}

.pagination li.next a {
  font-size: 0;
  padding: 0;
  border-right: 0;
}

.pagination li.next a:before {
  color: #ff7400;
  font-size: 30px;
  font-size: 1.875rem;
}

.pagination li.next a:before {
  color: #ff7400;
}

.pagination li.next a:hover:before {
  opacity: .7;
}

.pagination li.current {
  color: #ff7400;
  padding: 3px 10px;
}

.pagination li a {
  color: #707173;
}

.pagination li a:hover {
  text-decoration: none;
  color: #b0b0b0;
}

.pagination li a.icon-before {
  color: #ff7400;
  font-size: 10px;
  font-size: 0.625rem;
  margin-top: -10px !important;
}

/**
 * brandung Contact-form.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-28
 * MIT License (MIT)
 */
/* ==========================================================================
   Contact-form
   ========================================================================== */
.contact-form {
  padding-bottom: 50px;
  /* +++ Custom selectboxIt: start +++ */
  /* === Custom selectboxIt: end === */
}

.contact-form:before, .contact-form:after {
  content: " ";
  display: table;
}

.contact-form:after {
  clear: both;
}

.contact-form .powermail_radio_inner {
  float: left;
}

.contact-form label,
.contact-form legend {
  display: none;
}

.contact-form .powermail_fieldset {
  margin: 0 -15px;
}

.contact-form .powermail_fieldwrap {
  width: 100%;
  padding: 0 15px;
  float: left;
  position: relative;
}

.contact-form .powermail_fieldwrap.powermail_fieldwrap_half {
  width: 50%;
}

.contact-form .powermail_fieldwrap.powermail_fieldwrap_quarter {
  width: 25%;
}

.contact-form .g-recaptcha {
  margin: 15px 0;
}

.contact-form .selectboxit-container {
  margin: 7px 0;
}

.contact-form .powermail_check_inner {
  display: table;
  margin-top: 20px;
  width: 100%;
}

.contact-form .powermail_check_inner label {
  display: table;
  float: left;
  margin-right: 5px;
  position: relative;
  padding-left: 30px;
}

.contact-form .powermail_check_inner label:before {
  position: absolute;
  display: block;
  top: 0;
  left: 1px;
  content: '';
  width: 20px;
  height: 20px;
  background: #ebebeb;
  cursor: pointer;
  outline: 1px solid #b0b0b0;
}

.contact-form .powermail_check_inner label.checked:before {
  background: #ff7400;
  border: 3px solid #ebebeb;
  padding: 5px;
  width: 4px;
  height: 4px;
  outline: 1px solid #b0b0b0;
}

.contact-form .powermail_check_inner:hover label:before {
  background: #e1e1e1 !important;
}

.contact-form .powermail_check_inner:hover label.checked:before {
  background: #ff7400 !important;
  border: 3px solid #e1e1e1;
}

.contact-form .powermail_check_inner input {
  position: absolute;
  top: 5px;
  left: 5px;
  margin: 0;
  opacity: 0;
  width: auto;
  z-index: -1;
}

.contact-form input {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  background: #ebebeb;
}

.contact-form textarea,
.contact-form select {
  width: 100%;
  background: #ebebeb;
  padding: 15px;
  border: 1px solid #ccc;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  margin: 15px 0;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover {
  background: #e1e1e1 !important;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #ff7400;
  outline: none;
}

.contact-form select {
  color: #333;
}

.contact-form .selectboxit-container {
  width: 100%;
  color: #333;
}

.contact-form .selectboxit-container select {
  width: 100% !important;
  color: #ccc;
  height: 50px !important;
  z-index: 1 !important;
}

.contact-form .selectboxit-container:hover .selectboxit {
  background: #e1e1e1 !important;
}

.contact-form .selectboxit-container .selectboxit {
  width: auto;
  padding: 8px;
  border-radius: 0;
  background: #ebebeb;
}

.contact-form .selectboxit-container .selectboxit .selectboxit-option-icon-container {
  margin: 0;
}

.contact-form .selectboxit-container .selectboxit-text {
  max-width: 90% !important;
}

.contact-form .selectboxit-container .selectboxit-arrow-container .selectboxit-arrow {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 50%;
  margin-top: -13px;
  right: 20px;
}

.contact-form .selectboxit-container .selectboxit-arrow-container .selectboxit-arrow:before {
  font-size: 30px;
  font-size: 1.875rem;
  color: #ff7400;
  font-weight: 900;
}

.contact-form .selectboxit-container span,
.contact-form .selectboxit-container .selectboxit-options a {
  height: auto;
  color: #999;
}

.contact-form .selectboxit-container .selectboxit-options a {
  width: auto;
}

.contact-form__radio label, .contact-form__checkbox label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  padding-top: 15px;
  margin-right: 15px;
  font-size: 15px;
}

.contact-form__radio label:before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  bottom: 1px;
  background: #ebebeb;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.contact-form__radio label:hover:before {
  background: #e1e1e1;
}

.contact-form__radio input[type="radio"] {
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0;
  width: auto;
  z-index: -1;
}

.contact-form__radio input[type="radio"]:checked + label:before {
  content: " ";
  background: #ff7400;
  font-size: 40px;
  text-align: center;
  line-height: 15px;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  border: 2px solid #ebebeb;
}

.contact-form__checkbox label:before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  bottom: 1px;
  background: #ebebeb;
  border-radius: 3px;
}

.contact-form__checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: auto;
}

.contact-form__checkbox input[type="checkbox"]:checked + label:before {
  content: " ";
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  text-align: center;
  line-height: 12px;
  width: 14px;
  height: 14px;
  background: #ff7400;
  border: 2px solid #ebebeb;
}

.contact-form .button-bordered {
  border: none;
  padding: 0;
}

.contact-form .button-bordered:after {
  display: none;
}

.contact-form button {
  padding: 5px 10px 5px 30px;
  border: 2px solid #134894;
  color: #134894;
  text-decoration: none;
  border-radius: 50px;
  background: #fff;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.contact-form button:after {
  font-size: 40px;
  font-size: 2.5rem;
}

.contact-form button:visited {
  color: #134894;
  border-color: #134894;
}

.contact-form button:hover {
  border-color: #4f84d0;
  color: #4f84d0;
}

.contact-form .parsley-error {
  border-color: #dd2121;
}

.contact-form .parsley-errors-list {
  padding-left: 0;
  margin-top: 0;
}

.contact-form .parsley-errors-list.filled {
  border: 2px solid #dd2121;
}

.contact-form .parsley-errors-list li {
  color: #dd2121;
  list-style-type: none;
}

.contact-form .parsley-errors-list#parsley-id-4 {
  margin-top: 15px;
}

.contact-form .parsley-errors-list#parsley-id-29 {
  margin-top: 10px;
}

.error .g-recaptcha iframe {
  border: 2px solid #dd2121;
}

/**
 * brandung Contact.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-28
 * MIT License (MIT)
 */
/* ==========================================================================
   Contact
   ========================================================================== */
.contact {
  font-weight: 600;
  margin-bottom: 40px;
  overflow: hidden;
}

.contact .address span {
  color: #707173;
}

.contact .icon-only:before, .contact .vjs-big-play-button:before,
.contact .icon-fax,
.contact a {
  color: #134894;
}

.contact .icon-fax {
  display: block;
}

.contact h4 span {
  color: #134894;
}

.contact p > a > span {
  border: none;
  color: #707173;
}

.contact p > a {
  border: none;
  color: #707173;
  text-decoration: none;
}

.contact p {
  margin: 0;
}

.contact__link a {
  color: #ff7400 !important;
  border-bottom: 1px solid #ff7400 !important;
}

.contact-list h3 {
  font-size: 24px;
  font-weight: 400;
  padding: 0 15px;
  line-height: 18px;
  color: #134894;
}

.contact-list p {
  margin: 2px 0;
}

.contact-list__headline {
  font-weight: 700;
}

.contact-list [class="col-"] span {
  font-size: 15px;
  font-size: 0.9375rem;
}

.contact-list span {
  display: block;
}

.contact-list span a {
  color: #5f5d5e;
  text-decoration: none;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.contact-list span a:hover {
  color: #ff3300;
  text-decoration: underline;
}

.contact-list hr {
  border: 1px solid #ccc;
}

/**
 * brandung events.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-05
 * MIT License (MIT)
 */
/* ==========================================================================
   Events
   ========================================================================== */
.events__content {
  padding: 20px 0;
  border-top: 2px solid #ccc;
  display: block;
  clear: both;
  overflow: hidden;
}

.events h5 {
  font-weight: 500;
  margin-bottom: 20px;
  display: inline-block;
}

.events .seminar-vacancies {
  margin-top: 0;
}

.events img {
  float: left;
  width: 100%;
  display: block;
  margin-bottom: 10px;
  max-width: 320px;
  margin-right: 20px;
  max-width: 300px;
  margin-bottom: 0;
  display: inline-block;
}

.events__datetime {
  font-size: 14px;
  margin-top: -5px;
  font-weight: 700;
}

.events__subline a {
  font-weight: 700;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.events__subline a:after {
  text-decoration: none;
}

.events__subline a:hover {
  text-decoration: none;
  color: #ff3300;
}

.events__subline a:hover span {
  text-decoration: underline;
}

.events .row {
  margin: 0;
}

.events .pagination ul {
  margin: 0;
}

.events h6 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #5f5d5e;
}

.events__btn {
  margin-top: 100px;
  margin-bottom: 30px;
}

.events__btn span.button-grey-bordered a {
  border-color: #5f5d5e;
  color: #5f5d5e;
}

.seminar-vacancies {
  padding: 5px 10px;
  float: right;
  display: inline-block;
  margin-top: 10px;
}

.seminar-vacancies.vacancies-available {
  background: #84BD84;
  color: #fff;
}

.seminar-vacancies.vacancies-notavailable {
  background: #C36363;
  color: #fff;
}

/*@import "partials/mod/imageOverlay";*/
/**
 * brandung news-list.scss v2.0.0
 *
 * @require vendor/gridset
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   News-list
   ========================================================================== */
.news-list li:last-child {
  border-bottom: 2px solid #ccc;
}

.news-list__container {
  border-top: 2px solid #ccc;
  padding: 20px 0;
  overflow: hidden;
}

.news-list__container img {
  max-width: 100%;
  max-height: 219px;
  margin: 9px 20px 0 0;
  float: left;
  max-width: 100%;
  max-height: 219px;
}

.news-list__headline {
  margin-top: 0;
}

.news-list time {
  font-size: 14px;
  margin-top: -5px;
  font-weight: 700;
}

.news-list__subline a {
  color: #ff7400;
  font-weight: 700;
}

.news-list__subline a:hover {
  text-decoration: none;
}

.news-list__subline a p {
  color: #5f5d5e;
  font-weight: normal;
}

.news-list__subline p {
  margin-bottom: 0;
}

.news-list__top-paginate {
  padding: 40px 0 10px 0;
}

.news-list__top-paginate h5 {
  color: #ff7400;
  font-size: 18px;
  margin-bottom: 25px;
}

.news-list__top-paginate .pagination ul {
  margin: 0;
}

.news-list__top-paginate .pagination li:last-child {
  border-bottom: 0;
}

.news-list__selection h5 {
  color: #ff7400;
  font-size: 18px;
  margin: 20px 0;
  font-weight: 600;
}

.news-list__bottom-paginate {
  padding: 30px 0 0 0;
}

.news-list__bottom-paginate .pagination ul {
  margin: 0;
}

.news-list__bottom-paginate h5 {
  color: #ff7400;
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 600;
}

/**
 * brandung blue-icon-circle.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-28
 * MIT License (MIT)
 */
/* ==========================================================================
   Blue-icon-circle
   ========================================================================== */
.blue-icon-circle {
  display: table;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 50px;
  margin-top: 130px;
}

.blue-icon-circle a {
  color: #134894;
  font-weight: 600;
  text-decoration: none;
  display: block;
  padding: 0 20px;
  max-width: 200px;
}

.blue-icon-circle a:hover {
  color: #4f84d0 !important;
  text-decoration: none;
}

.blue-icon-circle a:hover .blue-icon-circle__item-icon {
  border-color: #4f84d0;
}

.blue-icon-circle a:hover .blue-icon-circle__item-icon .icon-only, .blue-icon-circle a:hover .blue-icon-circle__item-icon .vjs-default-skin .vjs-big-play-button:before, .vjs-default-skin .blue-icon-circle a:hover .blue-icon-circle__item-icon .vjs-big-play-button:before, .blue-icon-circle a:hover .blue-icon-circle__item-icon .vjs-big-play-button,
.blue-icon-circle a:hover .blue-icon-circle__item-icon p {
  color: #4f84d0;
}

.blue-icon-circle ul {
  padding: 0;
}

.blue-icon-circle li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 10px 0;
}

.blue-icon-circle li a span {
  text-align: left;
}

.blue-icon-circle__item-icon, .blue-icon-circle__item {
  border-radius: 50%;
  -webkit-box-shadow: 5px 7px 18px 0px rgba(209, 207, 209, 0.85);
  -o-box-shadow: 5px 7px 18px 0px rgba(209, 207, 209, 0.85);
  -ms-box-shadow: 5px 7px 18px 0px rgba(209, 207, 209, 0.85);
  box-shadow: 5px 7px 18px 0px rgba(209, 207, 209, 0.85);
  border: 2px solid #134894;
  height: 100px;
  width: 100px;
  margin: 0 auto 20px;
}

.blue-icon-circle__item-icon + span, .blue-icon-circle__item + span {
  text-align: left;
  margin-left: 14px;
  margin-right: -14px;
  padding-right: 7px;
  display: block;
}

.blue-icon-circle__item-icon + span:after, .blue-icon-circle__item + span:after {
  font-family: ameos;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  padding: 0 .3rem;
  font-size: 28px;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e602";
  position: absolute;
  margin-top: -2px;
}

.blue-icon-circle__item-icon .icon-only, .blue-icon-circle__item-icon .vjs-default-skin .vjs-big-play-button:before, .vjs-default-skin .blue-icon-circle__item-icon .vjs-big-play-button:before, .blue-icon-circle__item-icon .vjs-big-play-button, .blue-icon-circle__item .icon-only, .blue-icon-circle__item .vjs-default-skin .vjs-big-play-button:before, .vjs-default-skin .blue-icon-circle__item .vjs-big-play-button:before, .blue-icon-circle__item .vjs-big-play-button {
  font-size: 25px;
  font-size: 1.5625rem;
  margin-left: 5px;
  top: 50%;
  right: 0;
  left: 0;
  color: #134894;
  text-align: center;
  width: 100%;
  display: block;
}

.blue-icon-circle__item-icon p, .blue-icon-circle__item p {
  margin-top: 5px;
  color: #134894;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
}

.blue-icon-circle__item p {
  margin-top: 40%;
}

.blue-icon-circle span:not(.icon-only):not(.vjs-big-play-button) {
  text-align: left;
  margin-left: 14px;
  margin-right: -14px;
  padding-right: 7px;
  display: block;
}

.blue-icon-circle ul {
  display: table-row;
}

.blue-icon-circle li {
  display: table-cell;
  margin: 0;
  width: 20%;
}

.blue-icon-circle li a {
  max-width: 190px;
  margin: 0 auto;
}

.blue-icon-circle__item-icon, .blue-icon-circle__item {
  height: 150px;
  width: 150px;
}

.blue-icon-circle__item-icon .icon-only, .blue-icon-circle__item-icon .vjs-default-skin .vjs-big-play-button:before, .vjs-default-skin .blue-icon-circle__item-icon .vjs-big-play-button:before, .blue-icon-circle__item-icon .vjs-big-play-button, .blue-icon-circle__item .icon-only, .blue-icon-circle__item .vjs-default-skin .vjs-big-play-button:before, .vjs-default-skin .blue-icon-circle__item .vjs-big-play-button:before, .blue-icon-circle__item .vjs-big-play-button {
  font-size: 40px;
  font-size: 2.5rem;
  margin-top: 10px;
}

.blue-icon-circle__item-icon p, .blue-icon-circle__item p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: normal;
}

/**
* brandung teaser-width-content-fluid.scss v1.0.0
*
* Copyright brandung GmbH & Co.KG
* http://www.brandung.de/
*
* Date: 2015-05-13
* MIT License (MIT)
*/
/* ==========================================================================
	teaser-width-content-fluid
========================================================================== */
.teaser-width-content-fluid {
  position: relative;
  background: #cedae6;
  display: block !important;
  float: left;
  display: inline-block;
  text-align: center;
  width: 50%;
}

.teaser-width-content-fluid img {
  width: 100%;
}

.teaser-width-content-fluid picture {
  display: block;
  position: relative;
}

.teaser-width-content-fluid__left, .teaser-width-content-fluid__right {
  position: relative;
  margin-top: -110px;
  padding: 0 20px 90px;
  overflow: hidden;
  display: block !important;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#cedae6+13,cedae6+13,cedae6+100&amp;0+0,1+31,1+98 */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(206, 218, 230, 0)), color-stop(13%, rgba(206, 218, 230, 0.42)), color-stop(31%, #cedae6), color-stop(98%, #cedae6), to(#cedae6));
  background: linear-gradient(to bottom, rgba(206, 218, 230, 0) 0%, rgba(206, 218, 230, 0.42) 13%, #cedae6 31%, #cedae6 98%, #cedae6 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00cedae6', endColorstr='#cedae6',GradientType=0 );
  /* IE6-9 */
}

.teaser-width-content-fluid__left {
  right: 0;
}

.teaser-width-content-fluid__right {
  left: 0;
}

.teaser-width-content-fluid__right-headline, .teaser-width-content-fluid__headline {
  padding-top: 50px;
  font-weight: 800;
  color: #134894;
  line-height: 30px;
  font-size: 32px;
  font-size: 2rem;
}

.teaser-width-content-fluid__right-headline span, .teaser-width-content-fluid__headline span {
  color: #fff;
  display: block;
  font-weight: 400;
}

.teaser-width-content-fluid__right-headline {
  color: #ff7400;
}

.teaser-width-content-fluid__right-headline span {
  color: #5f5d5e;
}

.teaser-width-content-fluid__subline a {
  color: #134894;
  font-weight: 600;
}

.teaser-width-content-fluid__subline a:hover {
  color: #4f84d0;
  text-decoration: none;
}

.teaser-width-content-fluid__subline a:hover span {
  text-decoration: underline;
}

.teaser-width-content-fluid__button {
  height: 45px;
  margin-top: 20px;
  position: absolute;
  bottom: 30px;
}

.teaser-width-content-fluid__button a {
  padding: 5px 0 5px 15px;
}

.teaser-width-content-fluid__left, .teaser-width-content-fluid__right {
  height: 100%;
}

.teaser-width-content-fluid__button a {
  padding: 15px 30px 15px 50px;
}

.teaser-width-content-fluid picture {
  max-height: 200px;
}

.full-teaser-wrapper {
  overflow: hidden;
  clear: both;
  position: relative;
}

/**
 * brandung gallery.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   gallery
   ========================================================================== */
.gallery {
  position: relative;
  /*@include respond-max($breakpoint-max-s) {
		&__caption {
			display: none;
		}
	}*/
}

.gallery__slider-container {
  background: #fff;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  padding: 40px 0;
  /*@include respond-max($breakpoint-max-s){
			background: rgba(255,255,255, 0.1);
		}*/
  background: rgba(255, 255, 255, 0.3);
}

.gallery__slider-container .slider-front-page .slick-slide img {
  max-width: 100%;
}

.gallery__slider-container .caption__flyout {
  padding: 0 20px 10px;
}

.gallery__slider-container .caption {
  max-width: none;
  margin-left: 0;
}

.gallery .slick-next,
.gallery .slick-prev {
  border: 0;
  color: #ebebeb;
  position: absolute;
  background: none;
  top: 50%;
  font-size: 0;
  margin-top: -55px;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.gallery .slick-next:focus,
.gallery .slick-prev:focus {
  outline: none;
}

.gallery .slick-next:hover,
.gallery .slick-prev:hover {
  color: #ff7400;
}

.gallery .slick-prev {
  left: 50%;
  margin-left: -47%;
  z-index: 10;
}

.gallery .slick-prev:before {
  font-size: 80px;
  font-size: 5rem;
  margin-left: -20px;
}

.gallery .slick-next {
  right: 50%;
  margin-right: -47%;
}

.gallery .slick-next:before {
  font-size: 80px;
  font-size: 5rem;
  margin-right: -25px;
}

.gallery .slick-dots {
  position: absolute;
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: -40px;
  list-style: none;
  text-align: center;
}

.gallery .slick-dots li {
  display: inline-block;
  padding: 2px;
  padding-top: 0;
  height: 15px;
  border-radius: 30px;
  background: #707173;
  margin: 5px;
  cursor: pointer;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.gallery .slick-dots li:hover {
  background: #b0b0b0;
}

.gallery .slick-dots li button {
  border: 0;
  background: transparent;
  font-size: 0;
  padding: 5px;
}

.gallery .slick-dots li button:focus {
  outline: none;
}

.gallery .slick-dots li.slick-active {
  background: #ff7400;
}

.gallery .slick-slide {
  float: left;
}

.gallery .slick-slide img {
  margin: 0 auto;
}

.gallery__caption {
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  bottom: 0;
  left: 0;
  color: #707173;
  width: 100%;
  padding: 10px 20px 20px 30px;
  display: none;
}

.gallery__count {
  padding: 0 20px 5px;
  text-align: right;
  position: relative;
  font-weight: 600;
  float: right;
  font-size: 12px;
  font-size: 0.75rem;
}

.gallery--slider-sync-container .gallery__head {
  margin-bottom: 2em;
}

.gallery--slider-sync-container .slick-dots li {
  background-color: transparent;
  opacity: 1;
}

.gallery--slider-sync-container .slick-active {
  width: 80px;
}

.gallery--slider-sync-container .slick-slider .slick-slide img {
  max-height: 487px;
}

.gallery--slider-sync-container .slick-slider:nth-child(2) .slick-track {
  height: 92px;
}

/**
 * brandung caption.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-20
 * MIT License (MIT)
 */
/* ==========================================================================
   Caption
   ========================================================================== */
.caption {
  position: relative;
}

.caption .caption__container {
  position: relative;
  margin: 0 auto;
  display: block;
  padding: 5px;
}

.caption img {
  display: block;
  margin: 0 auto;
}

.caption__flyout {
  position: absolute;
  background: #fff;
  opacity: .8;
  bottom: 0;
  height: auto;
  color: #000;
  width: 100%;
  padding: 0 20px;
}

.caption__flyout p {
  font-size: 12px;
  font-size: 0.75rem;
  margin: 0 0 5px 0;
}

.caption__flyout strong {
  display: block;
}

.caption__flyout.hide-caption {
  -webkit-transition: opacity 500ms;
  transition: opacity 500ms;
  opacity: 0;
}

.caption:hover .caption__flyout {
  opacity: .8;
  display: block !important;
}

.caption.left .caption__flyout, .caption.right .caption__flyout {
  height: auto !important;
}

.caption .fancybox {
  display: block;
}

.caption__search-icon {
  position: absolute;
  top: 50%;
  margin-top: -45px;
  left: 50%;
  margin-left: -30px;
  display: none;
}

.caption__search-icon:after {
  font-size: 60px;
  font-size: 3.75rem;
  color: #fff;
  opacity: .9;
}

.caption.left {
  display: inline-block;
}

.caption.left .caption__search-icon {
  margin-left: -40px;
}

.caption.right {
  display: inline-block;
}

.caption.right .caption__search-icon {
  margin-left: -36px;
}

.caption:hover .caption__search-icon {
  display: block;
}

.caption:hover .caption__flyout {
  display: block;
}

/**
 * brandung _mod-filter.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015_10_27
 * MIT License (MIT)
 */
/* ==========================================================================
   mod-filter
   ========================================================================== */
.mod-filter {
  padding-bottom: 0;
}

.mod-filter .selectboxit-container .selectboxit {
  margin-bottom: 30px;
}

.mod-filter .selectboxit-container .selectboxit .selectboxit-text {
  max-width: 80% !important;
}

/**
 * brandung _mod-finder.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015_11_27
 * MIT License (MIT)
 */
/* ==========================================================================
   mod-header-contact
   ========================================================================== */
.mod-finder {
  position: absolute;
  z-index: 100;
  top: 25px;
  left: -110vw;
  transition: left .5s ease;
  -webkit-transition: left .5s ease;
  -moz-transition: left .5s ease;
  -o-transition: left .5s ease;
  max-width: 100vw;
  height: 640px;
  width: calc(100vw - 15px);
  -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.37);
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.37);
  border-bottom-right-radius: 51px;
  /*margin-bottom: 50px;*/
  overflow: hidden;
  padding-bottom: 20px;
  background: #d8e7f2;
  background: radial-gradient(ellipse at center, #d8e7f2 0%, #9ac1d1 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d8e7f2', endColorstr='#9ac1d1', GradientType=1 );
  width: calc(100vw - 25px);
}

.mod-finder.visible {
  left: 0;
}

.mod-finder .container {
  position: relative;
  padding-top: 50px;
}

.mod-finder__map {
  display: none;
  position: relative;
  width: 100%;
}

@media (min-width: 1050px) {
  .mod-finder__map {
    display: block;
    width: 48%;
  }
}

.mod-finder .map__container {
  overflow: hidden;
  width: 100%;
}

.mod-finder .map__container.region {
  margin-left: 0;
  height: 640px;
}

.mod-finder .map__container img {
  max-width: none;
}

.mod-finder .map__container img.region1 {
  margin-left: -229px;
  margin-top: 50px;
  width: 1000px;
}

.mod-finder .map__container img.region3 {
  margin-left: -59px;
  margin-top: -44px;
  width: 800px;
}

.mod-finder .map__container img.region4 {
  margin-left: 0px;
  margin-top: -100px;
  width: 500px;
}

.mod-finder .map__container img.region5 {
  margin-left: 0px;
  margin-top: 0px;
  width: 750px;
}

.mod-finder__close {
  position: absolute;
  right: 0px;
  z-index: 10;
  cursor: pointer;
}

.mod-finder__filter {
  position: relative;
  width: 100%;
  padding-left: 20px;
  display: none;
}

.mod-finder__filter .filter__list {
  width: 400px;
  height: 80px;
  width: 100%;
  height: 40px;
}

.mod-finder__filter h2 {
  font-size: 20px;
}

.mod-finder__filter label {
  display: block;
  position: relative;
  padding-left: 30px;
  padding-bottom: 25px;
  float: left;
  width: 150px;
}

.mod-finder__filter label:before {
  position: absolute;
  display: block;
  top: 0;
  left: 1px;
  content: '';
  width: 20px;
  height: 20px;
  background: #ebebeb;
  cursor: pointer;
  outline: 1px solid #b0b0b0;
}

.mod-finder__filter label.checked:before {
  background: #ff7400;
  border: 3px solid #ebebeb;
  padding: 5px;
  width: 4px;
  height: 4px;
  outline: 1px solid #b0b0b0;
}

.mod-finder__filter:hover label.checked:before {
  background: #ff7400 !important;
  border: 3px solid #e1e1e1;
}

.mod-finder__filter .filter__results .item__sublist {
  float: left;
  width: 100%;
  width: 32%;
}

.mod-finder__filter .filter__results .nowidth li {
  width: auto;
}

.mod-finder__filter .filter__results ul {
  list-style-type: none;
  padding: 5px 0 0;
}

.mod-finder__filter .filter__results li {
  padding-bottom: 10px;
  padding-right: 30px;
  width: 100%;
}

.mod-finder__filter .filter__results a {
  display: block;
  text-decoration: none;
  color: #4f84d0;
}

.mod-finder__filter .filter__results a:hover {
  color: #ff3300;
}

.mod-finder__expert {
  margin-top: 60px;
  display: none;
}

.mod-finder__expert .expert__image {
  float: left;
  width: 170px;
  height: 300px;
  float: none;
  margin: auto;
  height: 100%;
}

.mod-finder__expert .expert__image img {
  max-width: 150px;
  border: 5px solid #e9f1f7;
}

.mod-finder__expert .expert__details {
  margin: 40px 20px 20px 20px;
}

.mod-finder__expert .expert__details h3 {
  padding: 0 0 10px 0;
  margin: 0;
  color: #ff7400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 18px;
}

.mod-finder__expert .expert__details h2 {
  padding: 0;
  margin: 0;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 28px;
  color: #375a68;
}

.mod-finder__expert .expert__details span {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-size: 1rem;
  color: #375a68;
}

.mod-finder__expert .expert__details p {
  font-size: 16px;
  font-size: 1rem;
  color: #375a68;
  line-height: 30px;
}

.mod-finder__expert .expert__details a {
  display: block;
  text-decoration: none;
  font-weight: 600;
}

.mod-finder__hotspots {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.mod-finder__hotspot {
  background-color: #006bae;
  border-radius: 50%;
  display: block;
  height: 12px;
  position: absolute;
  width: 12px;
}

.mod-finder__hotspot:after {
  background-color: #ff7400;
  border-radius: 50%;
  content: '';
  display: block;
  height: 6px;
  left: 3px;
  position: absolute;
  top: 3px;
  visibility: hidden;
  width: 6px;
}

.mod-finder__hotspot:hover {
  background-color: #fff;
}

.mod-finder__hotspot:hover:after {
  visibility: visible;
}

.finder-facts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1170px;
  margin: 0 15px;
  width: calc(50% - 15px);
  margin-right: 0;
  margin: 0 30px;
  margin-right: 0;
}

.finder-facts .fact {
  background: #134894;
  color: #fff;
  width: auto;
  padding: 0px 20px;
  font-size: 15px;
  line-height: 18px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 55px;
  height: 45px;
  width: auto;
  margin-right: 0;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 21px;
  height: 60px;
}

.finder-facts .fact:last-child {
  margin-right: 0;
}

.finder-facts .fact .highlight {
  font-size: 30px;
  line-height: 22px;
  margin-right: 5px;
}

.finder-facts .fact p {
  margin-top: 10px;
}

.finder-facts .fact .highlight {
  font-size: 36px;
  line-height: 26px;
}

.finder-facts .fact p {
  margin-top: 15px;
}

.modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(250, 250, 250, 0.9);
  z-index: 100;
  display: none;
}

/**
 * brandung standortsuche.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-11-26
 * MIT License (MIT)
 */
/* ==========================================================================
   Standortsuche
   ========================================================================== */
.standortsuche input {
  margin-top: 0;
  cursor: pointer;
  float: right;
  padding: 13px;
  border: none;
  border-radius: 30px;
  background: #ebebeb;
  padding-right: 45px;
  -webkit-box-shadow: inset 6px 7px 18px 0px rgba(209, 207, 209, 0.85);
  -o-box-shadow: inset 6px 7px 18px 0px rgba(209, 207, 209, 0.85);
  -ms-box-shadow: inset 6px 7px 18px 0px rgba(209, 207, 209, 0.85);
  box-shadow: inset 6px 7px 18px 0px rgba(209, 207, 209, 0.85);
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.standortsuche input:hover {
  background: #e1e1e1;
}

.standortsuche h6 {
  color: #5f5d5e;
  margin: 30px 0 15px 0;
}

.standortsuche .search-postal-code {
  position: relative;
  display: block;
  float: left;
  clear: both;
  width: 25%;
  overflow-y: auto;
  overflow-x: hidden;
}

.standortsuche .search-postal-code button {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0;
  background: transparent;
  border: none;
}

.standortsuche .search-postal-code button:before {
  font-size: 60px;
  font-size: 3.75rem;
  top: -8px;
  position: absolute;
  right: -10px;
}

.standortsuche .search-postal-code button:focus {
  outline: none;
}

.standortsuche .search-city {
  float: left;
  width: 70%;
  margin-left: 5%;
}

/**
 * brandung 404.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   404
   ========================================================================== */
.page-not-found main {
  margin-top: 0;
}

.page-not-found a.icon-arrow-right {
  text-decoration: none;
  color: #ff7400;
}

.page-not-found a.icon-arrow-right span {
  text-decoration: underline;
}

.page-not-found a.icon-arrow-right span:hover {
  text-decoration: none;
}

.page-not-found .mod-stage-slider--title {
  text-align: center;
  padding-right: 0;
}

.page-not-found .mod-stage-slider--title h1,
.page-not-found .mod-stage-slider--title .h1 {
  width: 100%;
  color: #707173;
  font-weight: 700;
  font-size: 25px;
  font-size: 1.5625rem;
}

.page-not-found .mod-stage-slider--title img {
  margin: 15px 0;
  width: 150px;
}

.page-not-found .mod-stage-404 {
  z-index: 0;
  overflow: hidden;
  padding-top: 62px;
  background: #c1d9eb;
  height: 550px;
}

.page-not-found .white-gradient {
  height: 340px;
}

.page-not-found .white-gradient .container {
  max-width: 500px;
  padding: 0 15px;
}

.page-not-found .mod-stage-404 {
  height: 620px;
}

.page-not-found .mod-stage-404 {
  padding-top: 102px;
}

.page-not-found .white-gradient .container {
  padding: 0;
}

.page-not-found .mod-stage-slider--title {
  margin-top: 130px;
}

.page-not-found .mod-stage-slider--title img {
  margin: 30px 0;
  width: inherit;
}

.page-not-found .mod-stage-slider--title h1,
.page-not-found .mod-stage-slider--title .h1 {
  font-size: 45px;
  font-size: 2.8125rem;
}

/**
 * brandung accordion.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-24
 * MIT License (MIT)
 */
/* ==========================================================================
   Accordion
   ========================================================================== */
.fancybox-video {
  position: relative;
  display: block;
  padding-bottom: 45%;
  padding-top: 25px;
  height: 0;
  overflow: hidden;
}

.fancybox-video:before, .fancybox-video:after {
  content: " ";
  display: table;
}

.fancybox-video:after {
  clear: both;
}

.fancybox-video.video-is-ready {
  padding-bottom: 56.25%;
  /* 16:9 */
}

.fancybox-video:hover {
  cursor: pointer;
}

.fancybox-video:hover:before {
  color: color("ci");
}

.fancybox-video:before {
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  margin: 0;
  opacity: 1;
  visibility: visible;
  font-size: 80px;
  font-size: 5rem;
  color: color("white");
  -webkit-transition: opacity 1s, visibility 1s,  color .3s;
  transition: opacity 1s, visibility 1s,  color .3s;
}

.fancybox-video.video-is-loading:before {
  content: icon(cog);
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
  color: color("ci");
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

.fancybox-video.video-is-ready:before,
.fancybox-video.video-is-ready .video-youtube-player__placeholder {
  opacity: 0;
  visibility: hidden;
  -webkit-animation: none;
          animation: none;
}

.fancybox-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-description {
  margin: 5px 0 0 0;
}

.html5videoplayer {
  position: relative;
  margin-bottom: 30px;
}

.html5videoplayer a .icon-only, .html5videoplayer a .vjs-default-skin .vjs-big-play-button:before, .vjs-default-skin .html5videoplayer a .vjs-big-play-button:before, .html5videoplayer a .vjs-big-play-button {
  color: #fff;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2rem;
}

@media (min-width: 768px) {
  .html5videoplayer a .icon-only, .html5videoplayer a .vjs-default-skin .vjs-big-play-button:before, .vjs-default-skin .html5videoplayer a .vjs-big-play-button:before, .html5videoplayer a .vjs-big-play-button {
    font-size: 4rem;
  }
}

.html5videoplayer a .icon-only:before, .html5videoplayer a .vjs-big-play-button:before {
  text-shadow: 1px 1px 1px #000;
}

.html5videoplayer a .icon-only:hover, .html5videoplayer a .vjs-default-skin .vjs-big-play-button:hover:before, .vjs-default-skin .html5videoplayer a .vjs-big-play-button:hover:before, .html5videoplayer a .vjs-big-play-button:hover {
  text-decoration: none;
}

.video-js {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  overflow: hidden;
}

@media (min-width: 800px) {
  .video-js {
    max-width: 800px;
    max-height: 500px;
  }
}

.video-js .vjs-tech {
  position: static;
}

.video-js video + div {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
}

.video-js.vjs-has-started video + div {
  width: 0;
  height: 0;
}

.video-js:hover.vjs-default-skin .vjs-big-play-button,
.video-js:hover.vjs-default-skin:hover .vjs-big-play-button,
.video-js:hover.vjs-default-skin .vjs-big-play-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  text-shadow: none;
}

.vjs-default-skin .vjs-big-play-button,
.vjs-default-skin:hover .vjs-big-play-button,
.vjs-default-skin .vjs-big-play-button:focus {
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  top: 50%;
  left: 50%;
}

.vjs-default-skin .vjs-big-play-button:before,
.vjs-default-skin:hover .vjs-big-play-button:before,
.vjs-default-skin .vjs-big-play-button:focus:before {
  content: "\e90e";
  color: #fff;
  text-shadow: 1px 1px 1px #000;
  font-size: 120px;
  font-size: 7.5rem;
  margin: -10px 0 0 -10px;
}

.old-browser-accept #jr_wrap,
.old-browser-accept #jr_overlay {
  display: none;
}

/**
* brandung tab-filter.scss v1.0.0
*
* Copyright brandung GmbH & Co.KG
* http://www.brandung.de/
*
* Date: 2017-12-11
* MIT License (MIT)
*/
/* ==========================================================================
   tab-filter
   ========================================================================== */
.tab-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
  margin-right: -5px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.tab-filter__item {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 5px;
  margin-right: 5px;
}

.tab-filter__item--wide {
  width: 100%;
  width: auto;
}

.tab-filter__input {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: auto;
}

.tab-filter__label {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid currentColor;
  border-radius: 5px;
  color: #5f5d5e;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px;
  text-align: center;
  width: 100%;
}

.tab-filter__label:hover {
  color: #ff7400;
}

.tab-filter__input:checked + .tab-filter__label {
  color: #134894;
  cursor: default;
}

/**
* brandung facility.scss v1.0.0
*
* Copyright brandung GmbH & Co.KG
* http://www.brandung.de/
*
* Date: 2017-12-11
* MIT License (MIT)
*/
/* ==========================================================================
   facility
   ========================================================================== */
.facility {
  font-size: 16px;
  font-size: 1rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #f9f9f9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 30px;
  padding: 15px;
  position: relative;
}

.facility p, .facility ul {
  margin: 0.5em 0;
}

.facility__headline {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 20px;
  line-height: 1.25rem;
  color: #134894;
  font-weight: bold;
  margin: 0;
}

.facility__subline {
  font-size: 16px;
  font-size: 1rem;
  line-height: 18px;
  line-height: 1.125rem;
  font-weight: normal;
  margin: 0 0 5px;
}

.facility__content-headline {
  font-size: 16px;
  font-size: 1rem;
  line-height: 18px;
  line-height: 1.125rem;
  font-weight: bold;
  margin: 15px 0 0;
}

.facility__content-headline:first-child {
  margin-top: 0;
}

.facility__btn {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin: 10px 0;
}

/**
 * uva frame-type-brafinderameos_institution.scss v1.0.0
 *
 * Copyright UVA GmbH
 * http://www.uva.de/
 *
 * Date: 2019-09-05
 * MIT License (MIT)
 */
/* ==========================================================================
   frame-type-brafinderameos_institution
   ========================================================================== */
.frame-type-brafinderameos_institution {
  margin-top: 75px;
}

.frame-type-brafinderameos_institution .col {
  padding-left: 10px;
}

.frame-type-brafinderameos_institution .col1 {
  width: auto;
}

.frame-type-brafinderameos_institution .col2 {
  margin-bottom: 50px;
}

.frame-type-brafinderameos_institution h1 {
  color: #134894;
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 15px;
}

.frame-type-brafinderameos_institution ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 5px;
}

.frame-type-brafinderameos_institution ul li {
  margin-bottom: 20px;
}

.frame-type-brafinderameos_institution ul a {
  color: #134894;
  text-decoration: none;
}

.frame-type-brafinderameos_institution ul a span {
  font-size: 17px;
  line-height: 24px;
  display: inline;
}

.frame-type-brafinderameos_institution ul a:hover span {
  text-decoration: underline;
}

.frame-type-brafinderameos_institution ul a:after {
  text-decoration: none;
  font-size: 22px;
  margin-top: -3px;
  display: inline-block;
}

.frame-type-brafinderameos_institution ul span {
  display: block;
  margin: 0;
  font-size: 12px;
  line-height: 18px;
}

.frame-type-brafinderameos_institution ul span.type {
  color: #0085C8;
}

.frame-type-brafinderameos_institution h1 {
  font-size: 30px;
  line-height: 35px;
}

.frame-type-brafinderameos_institution .col {
  padding-left: 30px;
}

/**
 * uva frame-type-brafinderameos_finder.scss v1.0.0
 *
 * Copyright UVA GmbH
 * http://www.uva.de/
 *
 * Date: 2019-09-05
 * MIT License (MIT)
 */
/* ==========================================================================
   frame-type-brafinderameos_finder
   ========================================================================== */
.frame-type-brafinderameos_finder {
  margin-top: 84px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 50px;
  margin-top: 60px;
}

.frame-type-brafinderameos_finder .filter-category-front-page {
  width: 50%;
}

.jobs-iframe {
  width: 100%;
  height: 315px;
  overflow: hidden;
  border: none;
}

/**
 * brandung SCSS boilerplate v2.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2016-02-02
 * MIT License (MIT)
 */
@media print {
  * {
    float: none !important;
    border: none !important;
    height: auto !important;
  }
  .wrapper {
    width: 100% !important;
    padding: 20px !important;
  }
  header .print-only {
    text-align: right !important;
    padding-top: 5px !important;
    border-top: solid 1px black !important;
    display: block !important;
    height: 50px !important;
    font-size: 10px !important;
  }
  header .print-only img {
    display: block !important;
    float: right !important;
    width: 100px !important;
    height: 32px !important;
    margin-bottom: 10px !important;
  }
  .breadcrumb {
    font-size: 12px;
    font-size: 0.75rem;
    margin-left: 0;
  }
  .breadcrumb li {
    float: left !important;
    display: inline-block !important;
    font-size: 10px !important;
  }
  .breadcrumb a:after {
    content: "" !important;
  }
  ul > li {
    list-style: disc !important;
  }
  .sub-navigation,
  .mainnav .level-1,
  .mainnav .mobile-container,
  .mod-header-contact,
  .mod-header-search,
  .mod-stage-slider,
  .mod-stage-subpage,
  .mod-stage-contactbox,
  .filter-category-front-page,
  .mod-finder,
  .white-gradient,
  .header__container,
  .news-extention-front-page__more.button-orange,
  img,
  picture,
  .caption,
  .button-bordered,
  .teaser-width-content-fluid__button a,
  .standortsuche,
  .sub-navigation-mobile,
  .downloads__save .icon-password-secured:before,
  .slider-front-page,
  .gallery__slider-container,
  .tx-indexedsearch-searchbox,
  .browsebox,
  .date-picker,
  .pagination,
  .mod-filter,
  .share-me,
  .contact-form .selectboxit-container .selectboxit,
  .footer__top,
  .footer__navigation {
    display: none !important;
  }
  .corporate_sub_withmenu main,
  .location main,
  .page-not-found main,
  .location_sub main {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .mod-stage-slider--title {
    display: block !important;
    position: relative !important;
    margin: 20px 0 !important;
  }
  .mod-stage-slider--title h1 {
    line-height: 30px !important;
  }
  .mod-stage-slider--title .headline,
  .mod-stage-slider--title .subline {
    margin: 0 !important;
  }
  .mod-stage-slider--title .subline {
    display: block !important;
    position: relative !important;
    font-size: 14px !important;
  }
  body,
  a span,
  a span {
    font-size: 12px !important;
  }
  .teaser-full-width__right-article,
  .teaser-width-content-fluid__right,
  .teaser-width-content-fluid__left {
    margin-top: 0;
  }
  .teasers {
    overflow: visible;
    height: auto;
  }
  .teasers__small {
    position: relative;
    top: 0;
  }
  .teaser-width-content-fluid__right-headline, .teaser-width-content-fluid__headline {
    padding-top: 0 !important;
  }
  .teaser-width-content-fluid__right-headline span, .teaser-width-content-fluid__headline span {
    display: inline-block;
  }
  .news-extention-front-page__highlight a:after,
  .news-extention-front-page__last-article a:after {
    content: "" !important;
  }
  .news-extention-front-page__highlight,
  .news-extention-front-page__last-article .col-s-12 {
    margin-bottom: 30px !important;
  }
  [class*="col-"],
  .teasers__headline,
  .teasers__description,
  .downloads,
  .text-icon,
  .teaser-width-content-fluid__left,
  .teaser-width-content-fluid__right,
  .teaser-full-width__right-article,
  .news-extention-front-page,
  .footer__bottom {
    padding-left: 0 !important;
  }
  input,
  select,
  textarea {
    border: 1px solid #000000 !important;
    padding: 5px !important;
    font-size: 12px !important;
    margin: 5px !important;
    position: relative !important;
    opacity: 1 !important;
  }
  .powermail_radio_inner.powermail_radio_inner_1 {
    float: left !important;
    display: inline-block !important;
  }
  h1,
  .h1 {
    font-size: 30px !important;
  }
  h2,
  .h2 {
    font-size: 25px !important;
  }
  h3,
  .h3 {
    font-size: 22px;
  }
  h4,
  .h4 {
    font-size: 20px;
  }
  h5,
  .h5,
  .text-no-icon__headline,
  .sub-navigation__header,
  .sub-navigation-mobile__header,
  .tx-indexedsearch__headline {
    font-size: 18px;
  }
  .accordion__headline {
    font-size: 14px;
    padding: 5px 0;
  }
  footer {
    border-top: solid 1px black !important;
    display: block !important;
    position: relative !important;
  }
}

/**
 * modules placeholder
 * - import all modules files
 *
 * - for grunt-build-process:
 * - package files by download builder
 * - add files by appendAssets task in project builder (bra-pd)
 */
/**
 * brandung 404.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   404
   ========================================================================== */
.page-not-found main {
  margin-top: 0;
}

.page-not-found a.icon-arrow-right {
  text-decoration: none;
  color: #ff7400;
}

.page-not-found a.icon-arrow-right span {
  text-decoration: underline;
}

.page-not-found a.icon-arrow-right span:hover {
  text-decoration: none;
}

.page-not-found .mod-stage-slider--title {
  text-align: center;
  padding-right: 0;
}

.page-not-found .mod-stage-slider--title h1,
.page-not-found .mod-stage-slider--title .h1 {
  width: 100%;
  color: #707173;
  font-weight: 700;
  font-size: 25px;
  font-size: 1.5625rem;
}

.page-not-found .mod-stage-slider--title img {
  margin: 15px 0;
  width: 150px;
}

.page-not-found .mod-stage-404 {
  z-index: 0;
  overflow: hidden;
  padding-top: 62px;
  background: #c1d9eb;
  height: 550px;
}

.page-not-found .white-gradient {
  height: 340px;
}

.page-not-found .white-gradient .container {
  max-width: 500px;
  padding: 0 15px;
}

.page-not-found .mod-stage-404 {
  height: 620px;
}

.page-not-found .mod-stage-404 {
  padding-top: 102px;
}

.page-not-found .white-gradient .container {
  padding: 0;
}

.page-not-found .mod-stage-slider--title {
  margin-top: 130px;
}

.page-not-found .mod-stage-slider--title img {
  margin: 30px 0;
  width: inherit;
}

.page-not-found .mod-stage-slider--title h1,
.page-not-found .mod-stage-slider--title .h1 {
  font-size: 45px;
  font-size: 2.8125rem;
}

/**
 * brandung accordion.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   Accordion
   ========================================================================== */
.accordion {
  margin: 30px 0;
  /* overflow: hidden; */
  clear: both;
  display: block;
  position: relative;
}

.accordion h4 + .contact-teaser {
  margin: 40px 0;
}

.accordion__headline {
  display: block;
  text-decoration: none;
  position: relative;
  padding: 20px 80px 20px 26px;
  color: #527c8f;
  font-weight: 700;
  cursor: pointer;
  background: #c1d9eb;
  border-radius: 35px;
  z-index: 0;
  font-size: 18px;
  font-size: 1.125rem;
}

.accordion__headline:hover {
  text-decoration: none;
}

.accordion__headline:last-child {
  cursor: default;
  padding: 0;
}

.accordion__headline:last-child:after {
  display: none;
}

.accordion__headline:after {
  font-size: 36px;
  font-size: 2.25rem;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  right: 10px;
}

.accordion__headline.is-active {
  margin: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion__headline.is-active:after {
  font-size: 36px;
  font-size: 2.25rem;
}

.accordion h1,
.accordion h2,
.accordion h3,
.accordion h4,
.accordion h5,
.accordion h6 {
  display: none;
}

.accordion__content {
  margin: 20px 0;
}

.accordion__content .contact-teaser {
  padding: 0;
}

.accordion__content .contact-teaser h5 {
  display: block;
  line-height: 25px;
}

.accordion__content .contact-teaser a {
  word-break: break-all;
}

.accordion__flyout {
  padding: 40px 25px 10px 25px;
  display: none;
  border: 2px solid #c1d9eb;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  background: #f9fbfd;
  border-top: 0;
  position: static;
  margin-top: -35px;
  overflow: hidden;
  height: auto;
}

.accordion__flyout--content img {
  margin: 0;
}

.accordion__list {
  padding: 30px 0;
}

.accordion__list ul {
  padding-left: 0;
}

.accordion__list li {
  line-height: 32px;
}

/**
 * brandung blue-icon-circle.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-28
 * MIT License (MIT)
 */
/* ==========================================================================
   Blue-icon-circle
   ========================================================================== */
.blue-icon-circle {
  display: table;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 50px;
  margin-top: 130px;
}

.blue-icon-circle a {
  color: #134894;
  font-weight: 600;
  text-decoration: none;
  display: block;
  padding: 0 20px;
  max-width: 200px;
}

.blue-icon-circle a:hover {
  color: #4f84d0 !important;
  text-decoration: none;
}

.blue-icon-circle a:hover .blue-icon-circle__item-icon {
  border-color: #4f84d0;
}

.blue-icon-circle a:hover .blue-icon-circle__item-icon .icon-only, .blue-icon-circle a:hover .blue-icon-circle__item-icon .vjs-default-skin .vjs-big-play-button:before, .vjs-default-skin .blue-icon-circle a:hover .blue-icon-circle__item-icon .vjs-big-play-button:before, .blue-icon-circle a:hover .blue-icon-circle__item-icon .vjs-big-play-button,
.blue-icon-circle a:hover .blue-icon-circle__item-icon p {
  color: #4f84d0;
}

.blue-icon-circle ul {
  padding: 0;
}

.blue-icon-circle li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 10px 0;
}

.blue-icon-circle li a span {
  text-align: left;
}

.blue-icon-circle__item-icon, .blue-icon-circle__item {
  border-radius: 50%;
  -webkit-box-shadow: 5px 7px 18px 0px rgba(209, 207, 209, 0.85);
  -o-box-shadow: 5px 7px 18px 0px rgba(209, 207, 209, 0.85);
  -ms-box-shadow: 5px 7px 18px 0px rgba(209, 207, 209, 0.85);
  box-shadow: 5px 7px 18px 0px rgba(209, 207, 209, 0.85);
  border: 2px solid #134894;
  height: 100px;
  width: 100px;
  margin: 0 auto 20px;
}

.blue-icon-circle__item-icon + span, .blue-icon-circle__item + span {
  text-align: left;
  margin-left: 14px;
  margin-right: -14px;
  padding-right: 7px;
  display: block;
}

.blue-icon-circle__item-icon + span:after, .blue-icon-circle__item + span:after {
  font-family: ameos;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  padding: 0 .3rem;
  font-size: 28px;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e602";
  position: absolute;
  margin-top: -2px;
}

.blue-icon-circle__item-icon .icon-only, .blue-icon-circle__item-icon .vjs-default-skin .vjs-big-play-button:before, .vjs-default-skin .blue-icon-circle__item-icon .vjs-big-play-button:before, .blue-icon-circle__item-icon .vjs-big-play-button, .blue-icon-circle__item .icon-only, .blue-icon-circle__item .vjs-default-skin .vjs-big-play-button:before, .vjs-default-skin .blue-icon-circle__item .vjs-big-play-button:before, .blue-icon-circle__item .vjs-big-play-button {
  font-size: 25px;
  font-size: 1.5625rem;
  margin-left: 5px;
  top: 50%;
  right: 0;
  left: 0;
  color: #134894;
  text-align: center;
  width: 100%;
  display: block;
}

.blue-icon-circle__item-icon p, .blue-icon-circle__item p {
  margin-top: 5px;
  color: #134894;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
}

.blue-icon-circle__item p {
  margin-top: 40%;
}

.blue-icon-circle span:not(.icon-only):not(.vjs-big-play-button) {
  text-align: left;
  margin-left: 14px;
  margin-right: -14px;
  padding-right: 7px;
  display: block;
}

.blue-icon-circle ul {
  display: table-row;
}

.blue-icon-circle li {
  display: table-cell;
  margin: 0;
  width: 20%;
}

.blue-icon-circle li a {
  max-width: 190px;
  margin: 0 auto;
}

.blue-icon-circle__item-icon, .blue-icon-circle__item {
  height: 150px;
  width: 150px;
}

.blue-icon-circle__item-icon .icon-only, .blue-icon-circle__item-icon .vjs-default-skin .vjs-big-play-button:before, .vjs-default-skin .blue-icon-circle__item-icon .vjs-big-play-button:before, .blue-icon-circle__item-icon .vjs-big-play-button, .blue-icon-circle__item .icon-only, .blue-icon-circle__item .vjs-default-skin .vjs-big-play-button:before, .vjs-default-skin .blue-icon-circle__item .vjs-big-play-button:before, .blue-icon-circle__item .vjs-big-play-button {
  font-size: 40px;
  font-size: 2.5rem;
  margin-top: 10px;
}

.blue-icon-circle__item-icon p, .blue-icon-circle__item p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: normal;
}

/**
 * brandung box.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-28
 * MIT License (MIT)
 */
/* ==========================================================================
   Box
   ========================================================================== */
.box {
  position: relative;
  padding: 20px;
  background-color: #ebebeb;
  margin: 60px 0;
}

.box > h1,
.box > h2 {
  margin-top: 0;
}

.box:first-child {
  margin-top: 0;
}

/**
 * brandung breadcrumb.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-20
 * MIT License (MIT)
 */
/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb {
  margin: 0 15px;
  overflow: hidden;
  display: block;
  margin-bottom: 50px;
  margin: 15px;
  margin-bottom: 50px;
}

.breadcrumb li {
  float: left;
  color: #5f5d5e;
  font-size: 12px;
  font-size: 0.75rem;
}

.breadcrumb li:after {
  color: #ff7400;
}

.breadcrumb li:last-child {
  padding-top: 2px;
}

.breadcrumb li:last-child:after {
  color: #707173;
  display: none;
}

.breadcrumb li:last-child a {
  color: #134894;
}

.breadcrumb li:last-child a:after {
  display: none;
}

.breadcrumb li a {
  color: #134894;
}

.breadcrumb li a:hover span {
  text-decoration: underline;
}

.breadcrumb li {
  font-size: 14px;
  font-size: 0.875rem;
}

/**
 * brandung caption.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-20
 * MIT License (MIT)
 */
/* ==========================================================================
   Caption
   ========================================================================== */
.caption {
  position: relative;
}

.caption .caption__container {
  position: relative;
  margin: 0 auto;
  display: block;
  padding: 5px;
}

.caption img {
  display: block;
  margin: 0 auto;
}

.caption__flyout {
  position: absolute;
  background: #fff;
  opacity: .8;
  bottom: 0;
  height: auto;
  color: #000;
  width: 100%;
  padding: 0 20px;
}

.caption__flyout p {
  font-size: 12px;
  font-size: 0.75rem;
  margin: 0 0 5px 0;
}

.caption__flyout strong {
  display: block;
}

.caption__flyout.hide-caption {
  -webkit-transition: opacity 500ms;
  transition: opacity 500ms;
  opacity: 0;
}

.caption:hover .caption__flyout {
  opacity: .8;
  display: block !important;
}

.caption.left .caption__flyout, .caption.right .caption__flyout {
  height: auto !important;
}

.caption .fancybox {
  display: block;
}

.caption__search-icon {
  position: absolute;
  top: 50%;
  margin-top: -45px;
  left: 50%;
  margin-left: -30px;
  display: none;
}

.caption__search-icon:after {
  font-size: 60px;
  font-size: 3.75rem;
  color: #fff;
  opacity: .9;
}

.caption.left {
  display: inline-block;
}

.caption.left .caption__search-icon {
  margin-left: -40px;
}

.caption.right {
  display: inline-block;
}

.caption.right .caption__search-icon {
  margin-left: -36px;
}

.caption:hover .caption__search-icon {
  display: block;
}

.caption:hover .caption__flyout {
  display: block;
}

/**
 * brandung Contact-form.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-28
 * MIT License (MIT)
 */
/* ==========================================================================
   Contact-form
   ========================================================================== */
.contact-form {
  padding-bottom: 50px;
  /* +++ Custom selectboxIt: start +++ */
  /* === Custom selectboxIt: end === */
}

.contact-form:before, .contact-form:after {
  content: " ";
  display: table;
}

.contact-form:after {
  clear: both;
}

.contact-form .powermail_radio_inner {
  float: left;
}

.contact-form label,
.contact-form legend {
  display: none;
}

.contact-form .powermail_fieldset {
  margin: 0 -15px;
}

.contact-form .powermail_fieldwrap {
  width: 100%;
  padding: 0 15px;
  float: left;
  position: relative;
}

.contact-form .powermail_fieldwrap.powermail_fieldwrap_half {
  width: 50%;
}

.contact-form .powermail_fieldwrap.powermail_fieldwrap_quarter {
  width: 25%;
}

.contact-form .g-recaptcha {
  margin: 15px 0;
}

.contact-form .selectboxit-container {
  margin: 7px 0;
}

.contact-form .powermail_check_inner {
  display: table;
  margin-top: 20px;
  width: 100%;
}

.contact-form .powermail_check_inner label {
  display: table;
  float: left;
  margin-right: 5px;
  position: relative;
  padding-left: 30px;
}

.contact-form .powermail_check_inner label:before {
  position: absolute;
  display: block;
  top: 0;
  left: 1px;
  content: '';
  width: 20px;
  height: 20px;
  background: #ebebeb;
  cursor: pointer;
  outline: 1px solid #b0b0b0;
}

.contact-form .powermail_check_inner label.checked:before {
  background: #ff7400;
  border: 3px solid #ebebeb;
  padding: 5px;
  width: 4px;
  height: 4px;
  outline: 1px solid #b0b0b0;
}

.contact-form .powermail_check_inner:hover label:before {
  background: #e1e1e1 !important;
}

.contact-form .powermail_check_inner:hover label.checked:before {
  background: #ff7400 !important;
  border: 3px solid #e1e1e1;
}

.contact-form .powermail_check_inner input {
  position: absolute;
  top: 5px;
  left: 5px;
  margin: 0;
  opacity: 0;
  width: auto;
  z-index: -1;
}

.contact-form input {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  background: #ebebeb;
}

.contact-form textarea,
.contact-form select {
  width: 100%;
  background: #ebebeb;
  padding: 15px;
  border: 1px solid #ccc;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  margin: 15px 0;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover {
  background: #e1e1e1 !important;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #ff7400;
  outline: none;
}

.contact-form select {
  color: #333;
}

.contact-form .selectboxit-container {
  width: 100%;
  color: #333;
}

.contact-form .selectboxit-container select {
  width: 100% !important;
  color: #ccc;
  height: 50px !important;
  z-index: 1 !important;
}

.contact-form .selectboxit-container:hover .selectboxit {
  background: #e1e1e1 !important;
}

.contact-form .selectboxit-container .selectboxit {
  width: auto;
  padding: 8px;
  border-radius: 0;
  background: #ebebeb;
}

.contact-form .selectboxit-container .selectboxit .selectboxit-option-icon-container {
  margin: 0;
}

.contact-form .selectboxit-container .selectboxit-text {
  max-width: 90% !important;
}

.contact-form .selectboxit-container .selectboxit-arrow-container .selectboxit-arrow {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 50%;
  margin-top: -13px;
  right: 20px;
}

.contact-form .selectboxit-container .selectboxit-arrow-container .selectboxit-arrow:before {
  font-size: 30px;
  font-size: 1.875rem;
  color: #ff7400;
  font-weight: 900;
}

.contact-form .selectboxit-container span,
.contact-form .selectboxit-container .selectboxit-options a {
  height: auto;
  color: #999;
}

.contact-form .selectboxit-container .selectboxit-options a {
  width: auto;
}

.contact-form__radio label, .contact-form__checkbox label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  padding-top: 15px;
  margin-right: 15px;
  font-size: 15px;
}

.contact-form__radio label:before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  bottom: 1px;
  background: #ebebeb;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.contact-form__radio label:hover:before {
  background: #e1e1e1;
}

.contact-form__radio input[type="radio"] {
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0;
  width: auto;
  z-index: -1;
}

.contact-form__radio input[type="radio"]:checked + label:before {
  content: " ";
  background: #ff7400;
  font-size: 40px;
  text-align: center;
  line-height: 15px;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  border: 2px solid #ebebeb;
}

.contact-form__checkbox label:before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  bottom: 1px;
  background: #ebebeb;
  border-radius: 3px;
}

.contact-form__checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: auto;
}

.contact-form__checkbox input[type="checkbox"]:checked + label:before {
  content: " ";
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  text-align: center;
  line-height: 12px;
  width: 14px;
  height: 14px;
  background: #ff7400;
  border: 2px solid #ebebeb;
}

.contact-form .button-bordered {
  border: none;
  padding: 0;
}

.contact-form .button-bordered:after {
  display: none;
}

.contact-form button {
  padding: 5px 10px 5px 30px;
  border: 2px solid #134894;
  color: #134894;
  text-decoration: none;
  border-radius: 50px;
  background: #fff;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.contact-form button:after {
  font-size: 40px;
  font-size: 2.5rem;
}

.contact-form button:visited {
  color: #134894;
  border-color: #134894;
}

.contact-form button:hover {
  border-color: #4f84d0;
  color: #4f84d0;
}

.contact-form .parsley-error {
  border-color: #dd2121;
}

.contact-form .parsley-errors-list {
  padding-left: 0;
  margin-top: 0;
}

.contact-form .parsley-errors-list.filled {
  border: 2px solid #dd2121;
}

.contact-form .parsley-errors-list li {
  color: #dd2121;
  list-style-type: none;
}

.contact-form .parsley-errors-list#parsley-id-4 {
  margin-top: 15px;
}

.contact-form .parsley-errors-list#parsley-id-29 {
  margin-top: 10px;
}

.error .g-recaptcha iframe {
  border: 2px solid #dd2121;
}

/**
 * brandung contact-teaser.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-28
 * MIT License (MIT)
 */
/* ==========================================================================
   Contact-teaser
   ========================================================================== */
.contact-teaser {
  display: block;
  clear: both;
  overflow: auto;
  margin: 20px 0;
  padding-bottom: 20px;
  border-bottom: 2px solid #ebebeb;
}

.contact-teaser p {
  margin: 0;
  line-height: 1.5;
}

.contact-teaser__headline {
  color: #769bac;
  font-size: 20px;
  line-height: 16px;
  margin: 0 0 10px 0;
}

.contact-teaser p.contact-teaser__title {
  margin: 10px 0;
}

.contact-teaser p.contact-teaser__phone {
  margin: 10px 0 0 0;
}

.contact-teaser p.contact-teaser__phone + p.contact-teaser__phone {
  margin: 0;
}

.contact-teaser a {
  color: #5f5d5e;
  text-decoration: none;
}

.contact-teaser img {
  margin: 20px auto;
  display: block;
  float: none;
}

.contact-teaser span {
  margin-left: -8px;
}

.contact-teaser__description {
  display: block;
  overflow: hidden;
}

.contact-teaser__description a {
  color: #5f5d5e;
  border: none;
}

.contact-teaser__phone {
  margin: 0;
}

.contact-teaser__mail {
  margin: 0;
}

.contact-teaser__img-right {
  padding-top: 45px;
}

.contact-teaser img.left {
  float: left;
  margin: 0 20px 0 0;
}

.contact-teaser img.right {
  float: right;
  margin: 0 0 0 20px;
}

h4 + .contact-teaser {
  margin: 0;
}

/**
 * brandung Contact.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-28
 * MIT License (MIT)
 */
/* ==========================================================================
   Contact
   ========================================================================== */
.contact {
  font-weight: 600;
  margin-bottom: 40px;
  overflow: hidden;
}

.contact .address span {
  color: #707173;
}

.contact .icon-only:before, .contact .vjs-big-play-button:before,
.contact .icon-fax,
.contact a {
  color: #134894;
}

.contact .icon-fax {
  display: block;
}

.contact h4 span {
  color: #134894;
}

.contact p > a > span {
  border: none;
  color: #707173;
}

.contact p > a {
  border: none;
  color: #707173;
  text-decoration: none;
}

.contact p {
  margin: 0;
}

.contact__link a {
  color: #ff7400 !important;
  border-bottom: 1px solid #ff7400 !important;
}

.contact-list h3 {
  font-size: 24px;
  font-weight: 400;
  padding: 0 15px;
  line-height: 18px;
  color: #134894;
}

.contact-list p {
  margin: 2px 0;
}

.contact-list__headline {
  font-weight: 700;
}

.contact-list [class="col-"] span {
  font-size: 15px;
  font-size: 0.9375rem;
}

.contact-list span {
  display: block;
}

.contact-list span a {
  color: #5f5d5e;
  text-decoration: none;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.contact-list span a:hover {
  color: #ff3300;
  text-decoration: underline;
}

.contact-list hr {
  border: 1px solid #ccc;
}

/**
 * brandung Content-lightbox.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-28
 * MIT License (MIT)
 */
/* ==========================================================================
   Content-lightbox
   ========================================================================== */
.content-lightbox {
  background: #fff;
  padding: 30px;
  margin: 30px 0;
  overflow: hidden;
}

.content-lightbox__thumbnail:after {
  display: none;
}

.content-lightbox__next, .content-lightbox__prev {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  padding: 3px 5px 0 0;
  color: #fff;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.content-lightbox__next:before, .content-lightbox__prev:before {
  font-size: 50px;
  font-size: 3.125rem;
}

.content-lightbox__next:hover, .content-lightbox__prev:hover {
  color: #ff7400;
}

.content-lightbox__next {
  margin-top: -30px;
  right: 50%;
  margin-right: -46%;
}

.content-lightbox__prev {
  margin-top: -22px;
  left: 50%;
  margin-left: -48%;
}

.content-lightbox__title {
  padding: 0 10px 10px;
  background: rgba(255, 255, 255, 0.5);
}

.content-lightbox__title span {
  font-weight: 700;
}

.content-lightbox__title .image-quantity {
  float: right;
  font-style: italic;
  margin-left: 10px;
}

.content-lightbox__close {
  position: absolute;
  top: 0;
  right: 10px;
  background: none;
  color: #fff;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
  width: 43px;
}

.content-lightbox__close:before {
  font-size: 50px;
  font-size: 3.125rem;
  position: absolute;
  top: -13px;
}

.content-lightbox__content {
  border-radius: 0;
}

.content-lightbox__content:hover .content-lightbox__close {
  color: #ff7400;
}

/**
 * brandung datepicker.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-05
 * MIT License (MIT)
 */
/* ==========================================================================
   Datepicker
   ========================================================================== */
.date-picker .row {
  padding: 10px 0;
}

.date-picker__select select {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
}

.date-picker__select select:before {
  font-size: 30px;
  font-size: 1.875rem;
  color: #ff7400;
  font-weight: 900;
}

.date-picker__select select .selectboxit-options,
.date-picker__select select .selectboxit-list {
  margin-top: 30px;
}

.date-picker__select .selectboxit-container {
  width: 100%;
}

.date-picker__select .selectboxit-container select {
  width: 100% !important;
  z-index: 197 !important;
}

.date-picker__select .selectboxit-container .selectboxit {
  width: auto;
  padding: 8px;
  background: #ebebeb;
  border-radius: 30px;
  border: none;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.date-picker__select .selectboxit-container .selectboxit .selectboxit-arrow-container .selectboxit-arrow {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 50%;
  margin-top: -13px;
  right: 20px;
}

.date-picker__select .selectboxit-container .selectboxit .selectboxit-arrow-container .selectboxit-arrow:before {
  font-size: 30px;
  font-size: 1.875rem;
  color: #ff7400;
  font-weight: 900;
}

.date-picker__select:hover .selectboxit {
  background: #e1e1e1 !important;
}

.date-picker__select span.selectboxit-text {
  width: 100% !important;
}

.date-picker__paginate {
  margin-bottom: 30px;
  overflow: hidden;
  clear: both;
  display: block;
}

.date-picker .pagination ul {
  margin: 10px;
}

.date-picker p {
  font-weight: 700;
  font-size: 15px;
}

.date-picker .dp-choose-date.is-active {
  background: #5f5d5e;
  color: #fff;
}

.date-picker input {
  cursor: pointer;
  float: right;
  width: 85%;
  padding: 13px;
  border: none;
  border-radius: 30px;
  background: #ebebeb;
  margin: 0;
  -webkit-box-shadow: inset 6px 7px 18px 0px rgba(209, 207, 209, 0.85);
  -o-box-shadow: inset 6px 7px 18px 0px rgba(209, 207, 209, 0.85);
  -ms-box-shadow: inset 6px 7px 18px 0px rgba(209, 207, 209, 0.85);
  box-shadow: inset 6px 7px 18px 0px rgba(209, 207, 209, 0.85);
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.date-picker input:hover {
  background: #e1e1e1;
}

.date-picker > input {
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
  background: #ff7400;
  color: #fff;
  float: right;
  display: block;
  width: auto;
  padding: 13px 25px;
  margin: 0 15px 15px 15px;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.date-picker > input:hover {
  background: #ff5e00;
}

.date-picker label {
  line-height: 40px;
}

div.dp-popup h2 {
  font-size: 18px;
  text-align: center;
  margin: 2px 0;
  padding: 0;
}

div.dp-popup {
  margin-top: 25px;
  margin-left: 10px;
}

.dp-popup {
  background: #e8e8e8 !important;
  padding: 0 !important;
  width: 303px !important;
  margin: 15px 0;
  line-height: 1.2em;
  border: 1px solid #ccc;
}

.dp-popup a {
  color: #000;
  text-decoration: none;
  padding: 3px 2px 0;
}

.dp-popup a.disabled {
  cursor: default;
}

.dp-popup div {
  background: #e8e8e8;
  padding: 5px 0;
}

.dp-popup div.dp-nav-prev, .dp-popup div.dp-nav-next {
  position: absolute;
  top: 0;
  background: none;
}

.dp-popup div .dp-nav-prev-month,
.dp-popup div .dp-nav-next-month {
  font-size: 18px;
  font-size: 1.125rem;
  color: #5f5d5e;
}

.dp-popup div .dp-nav-next-year,
.dp-popup div .dp-nav-prev-year {
  display: none;
}

.dp-popup div.dp-nav-prev {
  left: 4px;
}

.dp-popup div.dp-nav-prev a {
  float: left;
  cursor: pointer;
  color: #ff7400;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.dp-popup div.dp-nav-prev a.disabled {
  cursor: default;
}

.dp-popup div.dp-nav-next {
  right: 4px;
  margin-top: -2px;
}

.dp-popup div.dp-nav-next a {
  cursor: pointer;
  float: right;
  color: #ff7400;
}

.dp-popup div.dp-nav-next a.disabled {
  cursor: default;
}

.dp-popup td {
  cursor: pointer;
}

.dp-popup td.disabled {
  cursor: default;
}

.dp-calendar {
  padding: 0 !important;
}

.dp-calendar table.jCalendar {
  border: 0;
  background: #fff !important;
  border-spacing: 0;
  padding: 0;
}

.dp-calendar table.jCalendar th {
  font-size: 18px;
  background: #fff;
  color: #707173;
  font-weight: 300;
  padding: 10px;
}

.dp-calendar table.jCalendar td {
  background: #fff;
  color: #707173;
  font-size: 14px;
  padding: 8px 13px;
  text-align: center;
  border-top: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
}

.dp-calendar table.jCalendar td.other-month {
  background: #707173;
  color: #fff;
}

.dp-calendar table.jCalendar td.today {
  color: #ff7400;
}

.dp-calendar table.jCalendar td.selected {
  background: #5f5d5e;
  color: #fff;
}

.dp-calendar table.jCalendar td.selected.dp-hover {
  background: #ff7400;
  color: #fff;
}

.dp-calendar table.jCalendar td.dp-hover {
  background: #ff7400;
  color: #fff;
}

.dp-calendar table.jCalendar tr.activeWeekHover td {
  background: #fff;
  color: #000;
}

.dp-calendar table.jCalendar tr.selectedWeek td {
  background: #ccc;
  color: #fff;
}

.dp-calendar a#dp-close {
  font-size: 14px;
  padding: 4px 0;
  text-align: center;
  display: block;
}

.dp-calendar a#dp-close:hover {
  text-decoration: underline;
}

/**
 * brandung downloads.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   downloads
   ========================================================================== */
.downloads {
  background: #c2d9eb;
  padding: 5px 30px;
  border-radius: 50px;
  position: relative;
  margin: 15px 0;
  display: table;
  width: 100%;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
  text-decoration: none !important;
  color: #134894;
}

.downloads:hover {
  background: rgba(194, 217, 235, 0.8);
}

.downloads:visited {
  color: #134894;
}

.downloads p {
  margin: 5px 0;
  display: block;
  padding: 0 25px 0 0;
  color: #134894;
  width: 100%;
  overflow: visible;
}

.downloads p span {
  text-decoration: underline;
}

.downloads span {
  text-decoration: none;
}

.downloads__save span.icon-only, .downloads__save .vjs-default-skin span.vjs-big-play-button:before, .vjs-default-skin .downloads__save span.vjs-big-play-button:before, .downloads__save span.vjs-big-play-button {
  display: table-cell;
  vertical-align: middle;
  font-size: 20px;
  font-size: 1.25rem;
  color: #134894;
  float: left;
  padding-bottom: 10px;
}

.downloads__save span.icon-only.icon-pdf, .downloads__save .vjs-default-skin span.icon-pdf.vjs-big-play-button:before, .vjs-default-skin .downloads__save span.icon-pdf.vjs-big-play-button:before, .downloads__save span.icon-pdf.vjs-big-play-button {
  font-size: 33px;
  font-size: 2.0625rem;
  margin-left: -20px;
}

.downloads__save a {
  margin-top: -10px;
}

.downloads__save:before {
  font-size: 60px;
  font-size: 3.75rem;
  color: #134894;
  position: absolute;
  top: 50%;
  margin-top: -30px;
  right: 0;
  display: table-cell;
  padding-left: 20px;
  height: 100%;
}

.downloads__descriptions {
  padding-right: 25px;
  color: #134894;
  font-size: 13px;
  display: table-cell;
}

.downloads span.downloads__description {
  padding: 0 40px 0 0;
}

/**
 * brandung events.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-05
 * MIT License (MIT)
 */
/* ==========================================================================
   Events
   ========================================================================== */
.events__content {
  padding: 20px 0;
  border-top: 2px solid #ccc;
  display: block;
  clear: both;
  overflow: hidden;
}

.events h5 {
  font-weight: 500;
  margin-bottom: 20px;
  display: inline-block;
}

.events .seminar-vacancies {
  margin-top: 0;
}

.events img {
  float: left;
  width: 100%;
  display: block;
  margin-bottom: 10px;
  max-width: 320px;
  margin-right: 20px;
  max-width: 300px;
  margin-bottom: 0;
  display: inline-block;
}

.events__datetime {
  font-size: 14px;
  margin-top: -5px;
  font-weight: 700;
}

.events__subline a {
  font-weight: 700;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.events__subline a:after {
  text-decoration: none;
}

.events__subline a:hover {
  text-decoration: none;
  color: #ff3300;
}

.events__subline a:hover span {
  text-decoration: underline;
}

.events .row {
  margin: 0;
}

.events .pagination ul {
  margin: 0;
}

.events h6 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #5f5d5e;
}

.events__btn {
  margin-top: 100px;
  margin-bottom: 30px;
}

.events__btn span.button-grey-bordered a {
  border-color: #5f5d5e;
  color: #5f5d5e;
}

.seminar-vacancies {
  padding: 5px 10px;
  float: right;
  display: inline-block;
  margin-top: 10px;
}

.seminar-vacancies.vacancies-available {
  background: #84BD84;
  color: #fff;
}

.seminar-vacancies.vacancies-notavailable {
  background: #C36363;
  color: #fff;
}

/**
 * brandung start-page-filter.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   Start-page-filter
   ========================================================================== */
.filter-category-front-page {
  margin-top: 0;
  padding-bottom: 0;
  color: #134894;
  position: relative;
  width: 100%;
  margin-top: 0;
  width: calc(50% - 25px);
  margin-right: 25px;
  margin-left: auto;
}

.filter-category-front-page__subtitle {
  padding-left: 30px;
  font-weight: bold;
}

.filter-category-front-page__filter {
  position: relative;
  padding: 0;
  margin-bottom: -250px;
}

.filter-category-front-page__item {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  height: 45px;
  width: calc(100% - 30px);
  margin: 0 15px;
  display: table;
  -webkit-transition: background-color ease-in-out .2s;
  transition: background-color ease-in-out .2s;
  top: -255px;
  margin-bottom: 55px;
  height: 60px;
  top: 0;
  margin-bottom: 0;
  margin: 0;
}

.filter-category-front-page__item.js-filterExpertise a {
  position: absolute;
  left: 43px;
  top: 50%;
  display: block;
  width: 70%;
  line-height: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.filter-category-front-page__item.active {
  background-color: #ff7400;
  color: #fff;
}

.filter-category-front-page__item.active a, .filter-category-front-page__item.active input {
  color: #fff;
}

.filter-category-front-page__item.active a:hover, .filter-category-front-page__item.active input:hover {
  color: #134894;
}

.filter-category-front-page__item:hover {
  background: white;
  cursor: pointer;
}

.filter-category-front-page__item:hover a {
  color: #134894;
}

.filter-category-front-page__item span {
  position: relative;
}

.filter-category-front-page__item span:first-child {
  float: left;
}

.filter-category-front-page__item span:before {
  font-size: 47px;
  font-size: 2.9375rem;
  padding: 0;
}

.filter-category-front-page__item span:hover {
  color: #134894;
}

.filter-category-front-page__item span:last-child {
  float: right;
}

.filter-category-front-page__item p {
  position: relative;
  display: block;
  vertical-align: middle;
  margin: 0;
  height: 45px;
  background: rgba(20, 73, 149, 0.15);
}

.filter-category-front-page__item p a {
  color: #134894;
  text-decoration: none;
  line-height: 40px;
}

.filter-category-front-page__item p:hover {
  color: #134894;
}

.filter-category-front-page__item input {
  border: 0;
  width: 200px;
  padding: 10px 0;
  background-color: transparent;
  font-size: 16px;
  font-size: 1rem;
  margin: 0;
  margin-top: 5px;
}

.filter-category-front-page__item input::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #134894;
}

.filter-category-front-page__item input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #134894;
  opacity: 1;
}

.filter-category-front-page__item input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #134894;
  opacity: 1;
}

.filter-category-front-page__item input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #134894;
}

.filter-category-front-page__sub-menu {
  float: left;
  width: calc(100% - 50px);
  margin-left: 15px;
  height: 200px;
  margin-top: -200px;
  padding-top: 20px;
  background-color: #fff;
  border: 1px solid #ebebeb;
  display: none;
  overflow: hidden;
  z-index: 10;
  position: absolute;
  margin-top: -180px;
}

.filter-category-front-page__sub-menu .mCustomScrollBox {
  background-color: #fff;
}

.filter-category-front-page__sub-menu li {
  list-style-type: none;
  margin-bottom: 10px;
}

.filter-category-front-page__sub-menu a {
  text-decoration: none;
  color: #134894;
}

.filter-category-front-page__sub-menu a:hover {
  color: #ff3300 !important;
}

.filter-category-front-page__sub-menu a:visited {
  color: #134894;
}

.filter-category-front-page__sub-menu .highlight {
  background: transparent;
  color: #ff7400;
}

.filter-category-front-page__sub-menu ul {
  margin: 10px 0 0 0;
  padding-left: 30px;
}

.filter-category-front-page__sub-menu .areas-list {
  margin-bottom: 20px;
}

.filter-category-front-page__sub-menu .allLocations-list .no-results {
  display: none !important;
}

.filter-category-front-page .mCSB_draggerRail {
  width: 2px;
  background-color: #ebebeb !important;
}

.filter-category-front-page .mCSB_dragger_bar {
  width: 8px !important;
  background-color: #b0b0b0 !important;
}

.filter-category-front-page .filter-expertise-sub-menu {
  position: absolute;
  left: 0;
}

.filter-category-front-page .filter-expertise-sub-menu .sub-menu__main, .filter-category-front-page .filter-expertise-sub-menu .sub-menu__sub, .filter-category-front-page .filter-expertise-sub-menu .sub-menu__hint {
  float: left;
  height: 90%;
}

.filter-category-front-page .sub-menu__sub {
  width: 50%;
}

.filter-category-front-page .sub-menu__sub li {
  margin-bottom: 6px;
}

.filter-category-front-page .sub-menu__hint {
  width: 360px;
  padding-left: 60px;
  padding-top: 60px;
}

.filter-category-front-page .sub-menu__hint:after {
  color: #ff3300;
  content: "\e601";
  font-size: 20px;
  font-weight: bold;
  margin-left: -6px;
}

.filter-category-front-page .sub-menu__hint h2 {
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 18px;
  line-height: 22px;
  color: #134894;
}

.filter-category-front-page .sub-menu__hint a {
  color: #ff3300;
  font-size: 15px;
}

.filter-category-front-page span.icon-suche {
  font-size: 26px;
  font-size: 1.625rem;
  color: #ff7400;
}

.filter-category-front-page__shadow {
  background: url("/Resources/Public/img/_dummyPics/shadow.png");
  background-repeat: no-repeat;
  background-position: center;
  padding: 0;
  position: relative;
}

.filter-category-front-page__filter {
  height: 70px;
  display: block;
}

.filter-category-front-page__sub-menu {
  font-size: 11px;
  font-size: 0.6875rem;
}

.filter-category-front-page__item {
  width: 100%;
  margin-bottom: 10px;
  border: none;
}

.filter-category-front-page__item:last-child {
  margin-right: 0;
}

.filter-category-front-page__item.js-filterExpertise a {
  left: 55px;
  line-height: 30px;
}

.filter-category-front-page__item p {
  font-size: 14px;
  font-size: 0.875rem;
  display: table-cell;
}

.filter-category-front-page__item p a {
  line-height: 40px;
}

.filter-category-front-page__item p span {
  width: 37px;
}

.filter-category-front-page__item p span:before {
  font-size: 50px;
  font-size: 3.125rem;
}

.filter-category-front-page__item p span:last-child {
  margin-right: 5px;
}

.filter-category-front-page__item input {
  font-size: 15px;
  font-size: 0.9375rem;
  width: 240px;
  margin: 9px 0;
  padding: 5px;
}

.filter-category-front-page__item:last-child {
  border-right: none;
}

@media (min-width: 1850px) {
  .filter-category-front-page {
    margin-top: 0;
  }
}

/**
 * brandung gallery.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   gallery
   ========================================================================== */
.gallery {
  position: relative;
  /*@include respond-max($breakpoint-max-s) {
		&__caption {
			display: none;
		}
	}*/
}

.gallery__slider-container {
  background: #fff;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  padding: 40px 0;
  /*@include respond-max($breakpoint-max-s){
			background: rgba(255,255,255, 0.1);
		}*/
  background: rgba(255, 255, 255, 0.3);
}

.gallery__slider-container .slider-front-page .slick-slide img {
  max-width: 100%;
}

.gallery__slider-container .caption__flyout {
  padding: 0 20px 10px;
}

.gallery__slider-container .caption {
  max-width: none;
  margin-left: 0;
}

.gallery .slick-next,
.gallery .slick-prev {
  border: 0;
  color: #ebebeb;
  position: absolute;
  background: none;
  top: 50%;
  font-size: 0;
  margin-top: -55px;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.gallery .slick-next:focus,
.gallery .slick-prev:focus {
  outline: none;
}

.gallery .slick-next:hover,
.gallery .slick-prev:hover {
  color: #ff7400;
}

.gallery .slick-prev {
  left: 50%;
  margin-left: -47%;
  z-index: 10;
}

.gallery .slick-prev:before {
  font-size: 80px;
  font-size: 5rem;
  margin-left: -20px;
}

.gallery .slick-next {
  right: 50%;
  margin-right: -47%;
}

.gallery .slick-next:before {
  font-size: 80px;
  font-size: 5rem;
  margin-right: -25px;
}

.gallery .slick-dots {
  position: absolute;
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: -40px;
  list-style: none;
  text-align: center;
}

.gallery .slick-dots li {
  display: inline-block;
  padding: 2px;
  padding-top: 0;
  height: 15px;
  border-radius: 30px;
  background: #707173;
  margin: 5px;
  cursor: pointer;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.gallery .slick-dots li:hover {
  background: #b0b0b0;
}

.gallery .slick-dots li button {
  border: 0;
  background: transparent;
  font-size: 0;
  padding: 5px;
}

.gallery .slick-dots li button:focus {
  outline: none;
}

.gallery .slick-dots li.slick-active {
  background: #ff7400;
}

.gallery .slick-slide {
  float: left;
}

.gallery .slick-slide img {
  margin: 0 auto;
}

.gallery__caption {
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  bottom: 0;
  left: 0;
  color: #707173;
  width: 100%;
  padding: 10px 20px 20px 30px;
  display: none;
}

.gallery__count {
  padding: 0 20px 5px;
  text-align: right;
  position: relative;
  font-weight: 600;
  float: right;
  font-size: 12px;
  font-size: 0.75rem;
}

.gallery--slider-sync-container .gallery__head {
  margin-bottom: 2em;
}

.gallery--slider-sync-container .slick-dots li {
  background-color: transparent;
  opacity: 1;
}

.gallery--slider-sync-container .slick-active {
  width: 80px;
}

.gallery--slider-sync-container .slick-slider .slick-slide img {
  max-height: 487px;
}

.gallery--slider-sync-container .slick-slider:nth-child(2) .slick-track {
  height: 92px;
}

/**
 * brandung header-pages.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Header-Pages
   ========================================================================== */
.header-pages__stage {
  position: relative;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  height: 600px;
  max-height: 450px;
  min-height: 400px;
  max-height: 600px;
  min-height: 450px;
  height: 550px;
}

.header-pages__stage .slick-prev {
  border: 0;
  background: none;
  font-size: 0;
}

.header-pages__stage .slick-prev:before {
  font-size: 80px;
  font-size: 5rem;
  color: #ff7400;
  position: absolute;
  top: 50%;
  margin-top: -116px;
  left: 0;
  z-index: 20;
}

.header-pages__stage .slick-slide img {
  margin: 0 auto;
}

.header-pages__stage .slick-next {
  border: 0;
  background: none;
  font-size: 0;
}

.header-pages__stage .slick-next:before {
  font-size: 80px;
  font-size: 5rem;
  color: #ff7400;
  position: absolute;
  top: 50%;
  margin-top: -116px;
  right: 0;
  z-index: 9999;
}

.header-pages__stage .slick-dots {
  position: absolute;
  top: 50%;
  margin-top: -8%;
  left: 50%;
  margin-left: -20px;
}

.header-pages__stage .slick-dots li {
  display: inline-block;
  margin: 0 10px;
  border: 2px solid #fff;
  width: 20px;
  height: 20px;
  border-radius: 30px;
}

.header-pages__stage .slick-dots li button {
  border-radius: 30px;
  border: none;
  background: transparent;
  outline: none;
  width: 20px;
  height: 20px;
  font-size: 0;
}

.header-pages__stage .slick-active {
  background: #ff7400;
  border-radius: 30px;
  width: 20px;
  height: 20px;
  top: 20px;
}

/**
 * brandung image-text.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   imgage-text
   ========================================================================== */
.image-text {
  clear: both;
  display: block;
}

.image-text a {
  float: none !important;
  margin: 0;
}

.image-text h6 {
  margin-top: 26px;
  font-size: 13px;
}

.image-text .right {
  margin: 0 0 10px 10px;
}

.image-text .right a {
  float: right;
}

.image-text .left {
  margin: 0 10px 10px 0;
}

.image-text .left a {
  float: left;
  display: block;
}

.image-text .right,
.image-text .left {
  max-width: 100%;
  max-width: 50%;
  max-width: 31.7%;
}

.image-text .right a,
.image-text .left a {
  display: block;
}

.image-text .caption + .caption + .caption + .image-text__articles {
  clear: both;
  padding-top: 10px;
}

.image-text .caption + .caption + .caption.left a .caption__search-icon,
.image-text .caption + .caption + .caption.right a .caption__search-icon {
  margin-left: -36px;
}

.image-text .image-text__articles p {
  overflow: visible;
}

.image-text .fancybox {
  float: left;
  width: auto;
}

.image-text .right .fancybox, .image-text__rightside .fancybox,
.image-text .left .fancybox, .image-text__leftside .fancybox {
  max-width: 300px;
}

.image-text__rightsite div > span:first-child,
.image-text__leftsite div > span:first-child {
  display: block;
}

.image-text__rightsite h4,
.image-text__leftsite h4 {
  display: inline-block;
  margin: 10px 0;
}

.image-text__rightsite p,
.image-text__leftsite p {
  overflow: visible;
}

.image-text__rightsite .caption,
.image-text__leftsite .caption {
  max-width: 300px;
}

.image-text__rightsite div[itemprop="location"] strong,
.image-text__rightsite > div > p > strong,
.image-text__leftsite div[itemprop="location"] strong,
.image-text__leftsite > div > p > strong {
  color: #ff7400;
}

.gallery__slider-container .caption {
  max-width: 100%;
  width: 100%;
}

.image-text__rightsite .caption {
  float: right;
  margin-left: 20px;
}

.image-text__rightsite .gallery__slider-container {
  float: right;
  margin-left: 20px;
  max-width: 40%;
  width: auto;
  padding: 10px 0 40px;
}

.image-text__rightsite .gallery__slider-container .caption {
  margin: 0;
}

.image-text__leftsite .caption {
  float: left;
  margin-right: 20px;
}

.image-text__leftsite .gallery__slider-container {
  float: left;
  margin-right: 20px;
}

.image-text__leftsite .gallery__slider-container .caption {
  margin: 0;
}

.image-wrapper {
  max-width: 320px;
  display: inline-block;
  float: right;
}

/**
 * brandung main-stage_teaser_headline.scss v2.0.0
 *
 * @require vendor/gridset
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Main_stage_teaser_headline
   ========================================================================== */
.main-stage_teaser_headline {
  position: absolute;
  top: 50%;
  margin-top: -350px;
  margin-top: -140px;
  margin-top: 0;
  margin-top: -330px;
}

.main-stage_teaser_headline__headline h1,
.main-stage_teaser_headline__headline h2 {
  font-size: 52px;
  margin: 0;
  line-height: 54px;
  color: #fff;
}

.main-stage_teaser_headline__headline h1 {
  font-weight: 700;
}

.main-stage_teaser_headline__headline h2 {
  font-weight: 600;
}

.main-stage_teaser_headline__headline h2 span {
  color: #ff7400;
}

.main-stage_teaser_headline__subline {
  font-size: 16px;
  font-weight: 600;
}

.main-stage_teaser_headline__noslider h2 span {
  color: #134894 !important;
}

.main-stage_teaser_headline__subline {
  display: none;
}

.main-stage_teaser_headline h1, .main-stage_teaser_headline h2 {
  font-size: 35px;
  margin: 0;
  line-height: 35px;
  font-weight: 600;
}

.main-stage_teaser_headline h1 span, .main-stage_teaser_headline h2 span {
  font-weight: 800;
}

.main-stage_teaser_headline__subline {
  display: none;
}

.main-stage_teaser_headline h1, .main-stage_teaser_headline h2 {
  font-size: 35px;
  margin: 0;
  line-height: 35px;
  font-weight: 600;
}

.main-stage_teaser_headline h1 span, .main-stage_teaser_headline h2 span {
  font-weight: 800;
}

/**
 * brandung map.scss v2.0.0
 *
 * @require vendor/gridset
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Map
   ========================================================================== */
.map {
  width: 100%;
  height: 100%;
  margin: 30px 0;
}

/**
 * brandung media-library.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Media-library
   ========================================================================== */
.media-library {
  text-align: center;
  display: table;
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
}

.media-library ul {
  margin: 0 auto;
  overflow: hidden;
  width: auto;
  max-width: 100%;
  display: block;
  padding: 0;
  text-align: center;
}

.media-library li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 10px;
}

.media-library__item-icon-big, .media-library__item-icon {
  border-radius: 50%;
  -webkit-box-shadow: 5px 7px 18px 0px rgba(209, 207, 209, 0.85);
  -o-box-shadow: 5px 7px 18px 0px rgba(209, 207, 209, 0.85);
  -ms-box-shadow: 5px 7px 18px 0px rgba(209, 207, 209, 0.85);
  box-shadow: 5px 7px 18px 0px rgba(209, 207, 209, 0.85);
  border: 2px solid #555;
  height: 100px;
  width: 100px;
  right: 0;
  left: 0;
  margin: 0 auto 20px;
  text-align: center;
}

.media-library__item-icon-big .icon-only, .media-library__item-icon-big .vjs-default-skin .vjs-big-play-button:before, .vjs-default-skin .media-library__item-icon-big .vjs-big-play-button:before, .media-library__item-icon-big .vjs-big-play-button, .media-library__item-icon .icon-only, .media-library__item-icon .vjs-default-skin .vjs-big-play-button:before, .vjs-default-skin .media-library__item-icon .vjs-big-play-button:before, .media-library__item-icon .vjs-big-play-button {
  font-size: 30px;
  font-size: 1.875rem;
  color: #b0b0b0;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.media-library__item-icon-big span, .media-library__item-icon span {
  margin-left: 10px;
}

.media-library__item-icon-big p, .media-library__item-icon p {
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 14px;
  margin: 0;
  color: #555;
}

.media-library a {
  display: block;
  height: 100%;
}

.media-library a:hover {
  text-decoration: none;
}

.media-library a:hover .icon-only, .media-library a:hover .vjs-default-skin .vjs-big-play-button:before, .vjs-default-skin .media-library a:hover .vjs-big-play-button:before, .media-library a:hover .vjs-big-play-button {
  color: #ff7400;
}

.media-library ul {
  max-width: 770px;
  display: table-row;
}

.media-library li {
  display: table-cell;
  margin: 0;
}

.media-library__item-icon {
  height: 120px;
  width: 120px;
  text-align: center;
}

.media-library__item-icon .icon-only, .media-library__item-icon .vjs-default-skin .vjs-big-play-button:before, .vjs-default-skin .media-library__item-icon .vjs-big-play-button:before, .media-library__item-icon .vjs-big-play-button {
  font-size: 32px;
  font-size: 2rem;
}

.media-library__item-icon p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: normal;
}

.media-library__item-icon-big {
  height: 150px;
  width: 150px;
  text-align: center;
}

.media-library__item-icon-big .icon-only, .media-library__item-icon-big .vjs-default-skin .vjs-big-play-button:before, .vjs-default-skin .media-library__item-icon-big .vjs-big-play-button:before, .media-library__item-icon-big .vjs-big-play-button {
  font-size: 42px;
  font-size: 2.625rem;
}

.media-library__item-icon-big p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: normal;
}

/**
 * brandung _mod-filter.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015_10_27
 * MIT License (MIT)
 */
/* ==========================================================================
   mod-filter
   ========================================================================== */
.mod-filter {
  padding-bottom: 0;
}

.mod-filter .selectboxit-container .selectboxit {
  margin-bottom: 30px;
}

.mod-filter .selectboxit-container .selectboxit .selectboxit-text {
  max-width: 80% !important;
}

/**
 * brandung _mod-finder.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015_11_27
 * MIT License (MIT)
 */
/* ==========================================================================
   mod-header-contact
   ========================================================================== */
.mod-finder {
  position: absolute;
  z-index: 100;
  top: 25px;
  left: -110vw;
  transition: left .5s ease;
  -webkit-transition: left .5s ease;
  -moz-transition: left .5s ease;
  -o-transition: left .5s ease;
  max-width: 100vw;
  height: 640px;
  width: calc(100vw - 15px);
  -webkit-box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.37);
  box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.37);
  border-bottom-right-radius: 51px;
  /*margin-bottom: 50px;*/
  overflow: hidden;
  padding-bottom: 20px;
  background: #d8e7f2;
  background: radial-gradient(ellipse at center, #d8e7f2 0%, #9ac1d1 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d8e7f2', endColorstr='#9ac1d1', GradientType=1 );
  width: calc(100vw - 25px);
}

.mod-finder.visible {
  left: 0;
}

.mod-finder .container {
  position: relative;
  padding-top: 50px;
}

.mod-finder__map {
  display: none;
  position: relative;
  width: 100%;
}

@media (min-width: 1050px) {
  .mod-finder__map {
    display: block;
    width: 48%;
  }
}

.mod-finder .map__container {
  overflow: hidden;
  width: 100%;
}

.mod-finder .map__container.region {
  margin-left: 0;
  height: 640px;
}

.mod-finder .map__container img {
  max-width: none;
}

.mod-finder .map__container img.region1 {
  margin-left: -229px;
  margin-top: 50px;
  width: 1000px;
}

.mod-finder .map__container img.region3 {
  margin-left: -59px;
  margin-top: -44px;
  width: 800px;
}

.mod-finder .map__container img.region4 {
  margin-left: 0px;
  margin-top: -100px;
  width: 500px;
}

.mod-finder .map__container img.region5 {
  margin-left: 0px;
  margin-top: 0px;
  width: 750px;
}

.mod-finder__close {
  position: absolute;
  right: 0px;
  z-index: 10;
  cursor: pointer;
}

.mod-finder__filter {
  position: relative;
  width: 100%;
  padding-left: 20px;
  display: none;
}

.mod-finder__filter .filter__list {
  width: 400px;
  height: 80px;
  width: 100%;
  height: 40px;
}

.mod-finder__filter h2 {
  font-size: 20px;
}

.mod-finder__filter label {
  display: block;
  position: relative;
  padding-left: 30px;
  padding-bottom: 25px;
  float: left;
  width: 150px;
}

.mod-finder__filter label:before {
  position: absolute;
  display: block;
  top: 0;
  left: 1px;
  content: '';
  width: 20px;
  height: 20px;
  background: #ebebeb;
  cursor: pointer;
  outline: 1px solid #b0b0b0;
}

.mod-finder__filter label.checked:before {
  background: #ff7400;
  border: 3px solid #ebebeb;
  padding: 5px;
  width: 4px;
  height: 4px;
  outline: 1px solid #b0b0b0;
}

.mod-finder__filter:hover label.checked:before {
  background: #ff7400 !important;
  border: 3px solid #e1e1e1;
}

.mod-finder__filter .filter__results .item__sublist {
  float: left;
  width: 100%;
  width: 32%;
}

.mod-finder__filter .filter__results .nowidth li {
  width: auto;
}

.mod-finder__filter .filter__results ul {
  list-style-type: none;
  padding: 5px 0 0;
}

.mod-finder__filter .filter__results li {
  padding-bottom: 10px;
  padding-right: 30px;
  width: 100%;
}

.mod-finder__filter .filter__results a {
  display: block;
  text-decoration: none;
  color: #4f84d0;
}

.mod-finder__filter .filter__results a:hover {
  color: #ff3300;
}

.mod-finder__expert {
  margin-top: 60px;
  display: none;
}

.mod-finder__expert .expert__image {
  float: left;
  width: 170px;
  height: 300px;
  float: none;
  margin: auto;
  height: 100%;
}

.mod-finder__expert .expert__image img {
  max-width: 150px;
  border: 5px solid #e9f1f7;
}

.mod-finder__expert .expert__details {
  margin: 40px 20px 20px 20px;
}

.mod-finder__expert .expert__details h3 {
  padding: 0 0 10px 0;
  margin: 0;
  color: #ff7400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 18px;
}

.mod-finder__expert .expert__details h2 {
  padding: 0;
  margin: 0;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 28px;
  color: #375a68;
}

.mod-finder__expert .expert__details span {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-size: 1rem;
  color: #375a68;
}

.mod-finder__expert .expert__details p {
  font-size: 16px;
  font-size: 1rem;
  color: #375a68;
  line-height: 30px;
}

.mod-finder__expert .expert__details a {
  display: block;
  text-decoration: none;
  font-weight: 600;
}

.mod-finder__hotspots {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.mod-finder__hotspot {
  background-color: #006bae;
  border-radius: 50%;
  display: block;
  height: 12px;
  position: absolute;
  width: 12px;
}

.mod-finder__hotspot:after {
  background-color: #ff7400;
  border-radius: 50%;
  content: '';
  display: block;
  height: 6px;
  left: 3px;
  position: absolute;
  top: 3px;
  visibility: hidden;
  width: 6px;
}

.mod-finder__hotspot:hover {
  background-color: #fff;
}

.mod-finder__hotspot:hover:after {
  visibility: visible;
}

.finder-facts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1170px;
  margin: 0 15px;
  width: calc(50% - 15px);
  margin-right: 0;
  margin: 0 30px;
  margin-right: 0;
}

.finder-facts .fact {
  background: #134894;
  color: #fff;
  width: auto;
  padding: 0px 20px;
  font-size: 15px;
  line-height: 18px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 55px;
  height: 45px;
  width: auto;
  margin-right: 0;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 21px;
  height: 60px;
}

.finder-facts .fact:last-child {
  margin-right: 0;
}

.finder-facts .fact .highlight {
  font-size: 30px;
  line-height: 22px;
  margin-right: 5px;
}

.finder-facts .fact p {
  margin-top: 10px;
}

.finder-facts .fact .highlight {
  font-size: 36px;
  line-height: 26px;
}

.finder-facts .fact p {
  margin-top: 15px;
}

.modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(250, 250, 250, 0.9);
  z-index: 100;
  display: none;
}

/**
 * brandung _mod-header-contact.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015_10_15
 * MIT License (MIT)
 */
/* ==========================================================================
   mod-header-contact
   ========================================================================== */
.mod-header-contact {
  z-index: 100;
  position: absolute;
  right: 0;
  top: 0;
  color: #fff;
  text-align: center;
}

.mod-header-contact .button-container {
  position: absolute;
  top: 0px;
  right: 90px;
  width: 51px;
  height: 51px;
  background: #fff;
  border: 1px solid #144995;
  border-radius: 5px;
  margin-top: 8px;
  top: 10px;
  width: 60px;
  height: 60px;
}

.mod-header-contact .toggleBtn {
  bottom: 0;
  cursor: pointer;
  color: #144995;
  display: block;
  font-size: 10px;
  font-weight: 600;
  padding-bottom: 20px;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-size: 0.75rem;
  padding-top: 3px;
}

.mod-header-contact .toggleBtn:before {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 25px;
  padding-top: 7px;
  display: block;
}

.mod-header-contact .toggleBtn.btn-active {
  color: #ff7400;
  border: transparent;
}

.mod-header-contact .toggleBtn.btn-active:before {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 22px;
  padding-top: 9px;
}

.mod-header-contact .toggleBtn:before {
  font-size: 3rem;
}

.mod-header-contact ul {
  padding: 0;
  margin: 0;
}

.mod-header-contact li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.mod-header-contact--flyout {
  text-align: left;
  background: #fff;
  visibility: hidden;
  line-height: 24px;
  position: absolute;
  right: 0;
  width: 225px;
}

.mod-header-contact--flyout span {
  padding: 0 !important;
}

.mod-header-contact--flyout span,
.mod-header-contact--flyout a {
  color: #5f5d5e !important;
  text-decoration: none;
}

.mod-header-contact--flyout a:hover {
  text-decoration: underline;
}

.mod-header-contact--flyout .contact-link a span {
  font-size: 100%;
  display: inline;
}

.mod-header-contact--flyout .contact-link a:after {
  font-size: 20px;
  font-size: 1.25rem;
  color: #ff7400;
}

.mod-header-contact--flyout .contact-link a:hover {
  text-decoration: none;
}

.mod-header-contact--flyout .contact-link a:hover span {
  text-decoration: underline;
}

.mod-header-contact--flyout .meta-links {
  padding: 0 20px 30px 20px;
}

.mod-header-contact--flyout .meta-links a {
  font-size: 11px;
  display: block;
  margin: 8px 0;
  line-height: 15px;
}

.mod-header-contact--flyout .meta-links li:first-child {
  border-top: 1px solid #707173;
  padding-top: 15px;
}

.mod-header-contact--flyout .icon-before:before {
  padding: 0;
  margin-left: -5px;
}

.mod-header-contact--flyout ul {
  padding: 30px 15px 15px;
}

.toggleBtn.btn-active + .mod-header-contact--flyout {
  visibility: visible;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  top: 66px;
  left: -167px;
  border: 1px solid #555;
  border-radius: 5px;
  top: 66px;
}

/**
 * brandung _mod-header-search.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015_10_15
 * MIT License (MIT)
 */
/* ==========================================================================
   mod-header-search
   ========================================================================== */
.mod-header-search {
  z-index: 100;
}

.mod-header-search form {
  width: 100%;
}

.mod-header-search input {
  border: none;
  right: 0;
  top: 62px;
  overflow: hidden;
  position: absolute;
  padding: 0;
  -webkit-transition: width .3s;
  /* Safari */
  transition: width .3s;
  height: 60px;
  width: 0;
  z-index: 2;
  margin-top: 0;
  background: #fff;
}

.mod-header-search .button-container {
  position: absolute;
  top: 0px;
  right: 25px;
  width: 51px;
  height: 51px;
  background: #fff;
  border: 1px solid #144995;
  border-radius: 5px;
  margin-top: 8px;
  top: 10px;
  width: 60px;
  height: 60px;
}

.mod-header-search .search-toggle,
.mod-header-search button {
  font-size: 10px;
  font-weight: 600;
  display: block;
  border: none;
  color: #144995;
  width: 100%;
  height: 100%;
  text-align: center;
  cursor: pointer;
  padding-top: 2px;
  font-size: 0.75rem;
}

.mod-header-search .search-toggle:before,
.mod-header-search button:before {
  display: block;
  text-align: center;
  margin-top: 0;
  padding-top: 5px;
  padding-left: 0;
}

.mod-header-search .search-toggle:before,
.mod-header-search button:before {
  margin-top: 5px;
}

.mod-header-search button {
  display: none;
}

.mod-header-search button:focus {
  outline: none;
}

.mod-header-search .search-toggle {
  top: 0;
}

.mod-header-search .search-toggle:before {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 25px;
}

.mod-header-search.active form {
  z-index: 10;
  position: absolute;
  right: 0;
}

.mod-header-search.active input {
  padding: 0 60px 0 10px;
  -webkit-transition: width .3s;
  /* Safari */
  transition: width .3s;
  height: 60px;
  width: 100%;
  max-width: 360px;
  border: 1px solid #555;
  margin-top: 0;
  margin-right: 25px;
  border-radius: 5px;
  margin-top: -17px;
  width: calc(100% - 25px);
}

.mod-header-search.active .search-toggle {
  color: #144995;
  top: 0;
}

.mod-header-search.active .search-toggle:before {
  font-size: 30px;
  font-size: 1.875rem;
}

.mod-header-search.active button {
  display: block;
  top: 62px;
  z-index: 5;
  height: 58px;
  background: transparent;
}

.mod-header-search.active button:before {
  font-size: 60px;
  font-size: 3.75rem;
  color: #555;
  right: 0;
  position: absolute;
  text-align: center;
  cursor: pointer;
  line-height: 0;
}

.mod-header-search .search-toggle {
  padding-top: 0px;
}

.mod-header-search .search-toggle:before {
  font-size: 3.375rem;
}

.mod-header-search input {
  top: 102px;
}

.mod-header-search.active button {
  width: 100px;
  top: 102px;
}

.mod-header-search.active button:before {
  right: 15px;
}

.mod-header-search.active input {
  padding-right: 100px;
}

/**
 * brandung _mod-smallnavigation.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015_10_15
 * MIT License (MIT)
 */
/* ==========================================================================
   mod-smallnavigation
   ========================================================================== */
.smallNav .mainnav {
  -webkit-box-shadow: -1px 2px 10px 0px rgba(112, 113, 115, 0.7);
  -o-box-shadow: -1px 2px 10px 0px rgba(112, 113, 115, 0.7);
  -ms-box-shadow: -1px 2px 10px 0px rgba(112, 113, 115, 0.7);
  box-shadow: -1px 2px 10px 0px rgba(112, 113, 115, 0.7);
}

.smallNav .mainnav .navigationBg {
  background-color: #fff;
  height: 65px;
}

.smallNav .mainnav .container {
  height: 65px;
}

.smallNav .mainnav .logo {
  background-size: 120px;
  height: 50px;
}

.smallNav .mainnav .level-1 {
  height: 70px;
}

.smallNav .mainnav .level-1 .icon-before {
  height: 20px;
}

.smallNav .mainnav .mobile-container,
.smallNav .mainnav .navigation-toggle {
  height: 57px;
}

.smallNav .mainnav .navigation-toggle {
  padding-top: 10px;
  font-size: 0;
  padding-top: 4px;
}

.smallNav .mainnav.is-active .level-1 {
  margin-top: 67px;
}

.smallNav .button-container {
  height: 31px;
}

.smallNav .mod-header-search .search-toggle {
  font-size: 0;
  padding-top: 0px;
}

.smallNav .mod-header-search .search-toggle:before {
  padding-top: 0px;
  margin-bottom: 2px;
  line-height: 20px;
}

.smallNav .mod-header-search.active button,
.smallNav .mod-header-search.active input {
  top: 67px;
}

.smallNav .mod-header-contact .toggleBtn {
  font-size: 0;
  padding-top: 0px;
}

.smallNav .mod-header-contact .toggleBtn:before {
  padding-top: 3px;
  margin-bottom: 2px;
}

.smallNav .mod-header-contact .toggleBtn.btn-active + .mod-header-contact--flyout {
  top: 67px;
}

/**
 * brandung _mod-stage-contactbox.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015_11_27
 * MIT License (MIT)
 */
/* ==========================================================================
   mod-stage-contactbox
   ========================================================================== */
.mod-stage-contactbox {
  position: relative;
  right: 0;
  background: #134894;
  border-bottom-right-radius: 30px;
  padding: 0 20px 0 50px;
  z-index: 2;
  width: auto;
  margin-top: 0;
  height: 70px;
  padding-left: calc((100vw - 85.71429em) /2);
  height: 60px;
}

.mod-stage-contactbox p {
  margin-bottom: 0;
}

.mod-stage-contactbox strong {
  color: #fff;
  font-size: 23px;
  font-size: 1.4375rem;
  font-weight: 400;
}

.mod-stage-contactbox span {
  color: #fff;
}

.mod-stage-contactbox a {
  text-decoration: none;
}

.mod-stage-contactbox a:before {
  color: #ff7400;
  margin-left: -8px;
  vertical-align: bottom;
}

.mod-stage-contactbox a:hover span {
  text-decoration: underline;
}

.mod-stage-contactbox ul {
  padding: 0;
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-direction: row;
      flex-direction: row;
}

.mod-stage-contactbox li {
  list-style-type: none;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 24px;
  font-weight: 600;
  padding-top: 5px;
  margin-right: 0px;
  font-size: 16px;
  font-size: 1rem;
  padding-top: 14px;
  margin-right: 25px;
  line-height: 31px;
}

.mod-stage-contactbox li:first-child {
  padding-top: 10px;
}

.mod-stage-contactbox li:first-child {
  padding-top: 14px;
  line-height: 30px;
}

.mod-stage-contactbox .online-appointment {
  font-size: 12px;
  background: #ff7400;
  padding: 5px 10px;
  line-height: 20px;
  border-radius: 7px;
  display: block;
  margin-top: 5px;
  width: 142px;
  float: right;
  margin-top: -48px;
  padding: 5px 20px;
  font-size: 13px;
  margin-top: 0;
  float: none;
  width: auto;
  margin-top: 1px;
}

/* Location */
.is-in-location + .mod-stage-contactbox {
  margin-right: 15px;
  margin-left: 0;
  padding-left: 15px;
  width: auto;
  max-width: 100%;
  padding-left: 30px;
  margin-right: 25px;
}

/* Institution */
.is-in-institution + .mod-stage-contactbox {
  width: auto;
  margin-right: auto;
  margin-left: auto;
  max-width: 85.71429em;
  padding-left: 15px;
  margin-right: 25px;
  margin-bottom: 5px;
}

/**
 * brandung _mod-stage-gradient.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015_10_15
 * MIT License (MIT)
 *
 *
 * This file seems to be obsolete, since white gradient has been removed.
 */
/* ==========================================================================
   white-gradient for Stages
   ========================================================================== */
.white-gradient {
  position: relative;
  display: block;
  clear: both;
  width: 100%;
  padding: 0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&amp;0.25+0,0.55+10,0.9+25,1+40 */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.25)), color-stop(10%, rgba(255, 255, 255, 0.55)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(40%, white), to(white));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.55) 10%, rgba(255, 255, 255, 0.9) 25%, white 40%, white 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#40ffffff', endColorstr='#ffffff',GradientType=0 );
  /* IE6-9 */
  padding: 40px 0;
  height: 350px;
}

.white-gradient + .white-gradient {
  display: none;
}

/*
//landingpage with stage-slider
.corporate,
.corporate_sub_nomenu {
	main {
		@include respond-min($breakpoint-min-m) {
			margin-top: 0;
		}
	}
}
*/
/*.corporate_sub_withmenu,
.location,
.page-not-found,
.location_sub*/
.stageImageTemplate {
  /*
	main {
		padding-top: 20px;
		margin-top: -100px;

		@include respond-min($breakpoint-min-xs) {
			margin-top: 0;
		}

		@include respond-min($breakpoint-min-s) {
			margin-top: 0;
		}

		@include respond-min($breakpoint-min-m) {
			margin-top: -270px;
			padding-top: 50px;
		}
	}
	*/
}

.stageImageTemplate .white-gradient {
  margin-top: -185px;
  height: 150px;
  margin-top: 0;
  height: 0;
  margin-top: 0;
  height: 0;
  margin-top: -80px;
  height: 182px;
}

.stageSliderTemplate {
  /*
	main {
		padding-top: 20px;
		margin-top: -100px;

		@include respond-min($breakpoint-min-s) {
			margin-top: -195px;
		}

		@include respond-min($breakpoint-min-m) {
			margin-top: -430px;
			padding-top: 50px;
		}
	}
	*/
  /*
	&.corporate {
		main {
			margin-top: -40px;

			@include respond-min($breakpoint-min-l) {
				margin-top: -70px;
			}
		}
	}
	*/
}

.stageSliderTemplate .white-gradient {
  margin-top: -60px;
  height: 150px;
  margin-top: -90px;
  height: 210px;
  margin-top: -200px;
  height: 480px;
}

.stageSliderTemplate .filter-category-front-page + .white-gradient {
  margin-top: -20px;
  height: auto;
}

/**
 * brandung main-stage_teaser_headline.scss v2.0.0
 *
 * @require vendor/gridset
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Main_stage_teaser_headline
   ========================================================================== */
.mod-stage-slider--title {
  position: absolute;
  margin-top: -150px;
  margin-bottom: 5px;
  max-width: 1170px;
  width: 100%;
  z-index: 1;
  height: 210px;
  margin-top: 80px;
  margin-bottom: 0;
  top: 0;
  margin-top: 140px;
}

.mod-stage-slider--title .headline,
.mod-stage-slider--title .subline {
  margin: 0 15px;
}

.mod-stage-slider--title h1 {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 25px;
  margin-bottom: 10px;
  line-height: normal;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
}

.mod-stage-slider--title h1 strong {
  font-weight: 800;
}

.mod-stage-slider--title .subline {
  display: none;
  font-size: 16px;
  font-weight: 600;
}

.mod-stage-slider--title .noslider img {
  height: auto;
}

.mod-stage-slider--title h1 {
  font-size: 35px;
  font-size: 2.1875rem;
  margin: 0;
  line-height: 35px;
  width: 60%;
}

.mod-stage-slider--title .subline {
  display: block;
  width: 60%;
}

@media (min-width: 1370px) {
  .mod-stage-slider--title {
    padding-left: 0;
  }
  .mod-stage-slider--title h1 {
    font-size: 52px;
    font-size: 3.25rem;
  }
}

/**
 * brandung _mod-header-contact.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015_10_15
 * MIT License (MIT)
 */
/* ==========================================================================
   mod-stage-slider
   ========================================================================== */
.mod-stage-slider {
  display: block;
  max-height: 500px;
  overflow: hidden;
  margin-bottom: 0;
  margin-right: auto;
  margin-left: auto;
  max-width: 85.71429em;
  width: auto;
}

.mod-stage-slider.is-in-home {
  margin-bottom: 75px;
  border-bottom-right-radius: 51px;
}

.mod-stage-slider.stage-category-left-aligned-round-border {
  border-bottom-right-radius: 51px !important;
}

.mod-stage-slider.is-in-home, .mod-stage-slider.is-in-location, .mod-stage-slider.stage-category-left-aligned {
  max-width: 100%;
  width: auto;
  margin-right: 15px;
  min-height: 0;
  height: auto;
  margin-right: 25px;
}

.mod-stage-slider.is-in-institution, .mod-stage-slider.stage-category-boxed {
  margin-right: auto;
  margin-left: auto;
  max-width: 85.71429em;
  height: auto;
  min-height: auto;
  margin-right: 25px;
}

.mod-stage-slider.is-in-other {
  margin-right: 25px;
  margin-left: auto;
  max-width: calc(85.71429em - 30px);
  height: 177px;
  margin-bottom: 50px;
  border-bottom-right-radius: 51px;
  height: 240px;
}

.mod-stage-slider picture {
  display: none;
}

.mod-stage-slider picture:first-child {
  display: block;
}

.mod-stage-slider picture:first-child img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.slick-initialized.mod-stage-slider {
  display: block;
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding-top: 62px;
  padding-top: 100px;
}

.slick-initialized.mod-stage-slider picture {
  display: block;
}

.slick-initialized.mod-stage-slider .slick-prev {
  border: 0;
  background: none;
  font-size: 0;
  outline: none;
  position: absolute;
  top: 50%;
  margin-top: -116px;
  left: 0;
}

.slick-initialized.mod-stage-slider .slick-prev:before {
  font-size: 80px;
  font-size: 5rem;
  color: #ff7400;
  z-index: 20;
}

@media (max-width: 1550px) {
  .slick-initialized.mod-stage-slider .slick-prev:before {
    top: 70%;
  }
}

.slick-initialized.mod-stage-slider .slick-slide img {
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: -1;
  display: block;
}

.slick-initialized.mod-stage-slider .slick-next {
  border: 0;
  background: none;
  font-size: 0;
  outline: none;
  position: absolute;
  top: 50%;
  margin-top: -116px;
  right: 0;
}

.slick-initialized.mod-stage-slider .slick-next:before {
  font-size: 80px;
  font-size: 5rem;
  color: #ff7400;
  z-index: 9999;
}

@media (max-width: 1550px) {
  .slick-initialized.mod-stage-slider .slick-next:before {
    top: 70%;
  }
}

.slick-initialized.mod-stage-slider .slick-dots {
  position: absolute;
  bottom: 10px;
  right: 30px;
}

.slick-initialized.mod-stage-slider .slick-dots li {
  display: inline-block;
  margin: 0 10px;
  border: 2px solid #fff;
  width: 20px;
  height: 20px;
  border-radius: 30px;
}

.slick-initialized.mod-stage-slider .slick-dots li.slick-active {
  background: #fff;
}

.slick-initialized.mod-stage-slider .slick-dots li button {
  border-radius: 30px;
  border: none;
  background: transparent;
  outline: none;
  width: 20px;
  height: 20px;
  font-size: 0;
}

/**
 * brandung header-pages.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Header-Pages no Slider --> Stage on Subpages
   ========================================================================== */
.mod-stage-subpage {
  z-index: 0;
  overflow: hidden;
  height: 460px;
  padding-top: 62px;
  max-height: 500px;
  height: auto;
  max-height: 450px;
  height: auto;
  max-height: 600px;
  padding-top: 100px;
}

.mod-stage-subpage.stage-category-left-aligned-round-border {
  border-bottom-right-radius: 30px !important;
}

.mod-stage-subpage img {
  width: 100%;
}

.mod-stage-subpage.is-in-home {
  margin-bottom: 18px;
  border-bottom-right-radius: 30px;
  margin-bottom: 44px;
}

.mod-stage-subpage.is-in-location, .mod-stage-subpage.is-in-home, .mod-stage-subpage.stage-category-left-aligned {
  margin-right: 15px;
  margin-left: 0;
  width: auto;
  min-height: 0;
  height: auto;
  margin-right: 25px;
}

.mod-stage-subpage.is-in-institution, .mod-stage-subpage.stage-category-boxed {
  margin-right: auto;
  margin-left: auto;
  max-width: 85.71429em;
  height: auto;
  min-height: auto;
  margin-right: 25px;
  min-height: 240px;
}

.mod-stage-subpage.is-in-other {
  background-color: #134894;
  margin-right: 25px;
  margin-left: auto;
  max-width: calc(85.71429em - 30px);
  height: 177px;
  margin-bottom: 0;
  border-bottom-right-radius: 30px;
  height: 240px;
}

.subpage-headline {
  position: relative;
  z-index: 1;
}

.subpage-headline.is-in-other {
  margin-right: auto;
  margin-left: auto;
  max-width: 85.71429em;
  margin-top: -177px;
  min-height: 177px;
  padding-top: 50px;
  margin-top: -240px;
  min-height: 240px;
  padding-top: 80px;
}

/**
 * brandung news-extention-front-page.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   News-extention-front-page
   ========================================================================== */
.news-extention-front-page {
  background: #ebebeb;
  padding: 50px 20px;
  position: relative;
  /*padding: 80px 10px;*/
}

.news-extention-front-page h1, .news-extention-front-page h2, .news-extention-front-page h3, .news-extention-front-page h4, .news-extention-front-page h5, .news-extention-front-page h6 {
  word-break: break-word;
}

.news-extention-front-page__highlight, .news-extention-front-page__last-article {
  margin-bottom: 30px;
}

.news-extention-front-page__highlight span, .news-extention-front-page__last-article span {
  color: #0085C8;
}

.news-extention-front-page__highlight span a, .news-extention-front-page__last-article span a {
  color: #0085C8;
}

.news-extention-front-page__highlight span a:hover, .news-extention-front-page__last-article span a:hover {
  text-decoration: underline;
}

.news-extention-front-page__highlight span a:after, .news-extention-front-page__last-article span a:after {
  display: none;
}

.news-extention-front-page__highlight h3, .news-extention-front-page__last-article h3 {
  font-size: 25px;
  line-height: 30px;
  margin: 0;
  font-weight: 700;
  color: #134894;
}

.news-extention-front-page__highlight a, .news-extention-front-page__last-article a {
  color: #ff7400;
  text-decoration: none;
  /*&:after {
				@extend %icon-font-basics;
				@extend %icon-arrow-small;
			}*/
}

.news-extention-front-page__highlight a span, .news-extention-front-page__last-article a span {
  font-size: 14px;
  font-size: 0.875rem;
  color: #0085C8;
}

.news-extention-front-page__highlight a:visited, .news-extention-front-page__last-article a:visited {
  color: #0085C8;
}

.news-extention-front-page__highlight a:hover, .news-extention-front-page__last-article a:hover {
  text-decoration: none;
}

.news-extention-front-page__highlight a:hover span, .news-extention-front-page__last-article a:hover span {
  text-decoration: underline;
}

.news-extention-front-page__last-article h4 {
  margin: 0;
}

.news-extention-front-page__more {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: -16px;
  z-index: 1;
}

.news-extention-front-page__more a:hover {
  text-decoration: none;
  color: #fff;
}

.news-extention-front-page__more-blue {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: -20px;
  left: 0;
  z-index: 1;
  margin-top: -16px;
}

.news-extention-front-page__highlight, .news-extention-front-page__last-article {
  padding: 20px 30px 10px 10px;
}

/**
 * brandung news-list.scss v2.0.0
 *
 * @require vendor/gridset
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   News-list
   ========================================================================== */
.news-list li:last-child {
  border-bottom: 2px solid #ccc;
}

.news-list__container {
  border-top: 2px solid #ccc;
  padding: 20px 0;
  overflow: hidden;
}

.news-list__container img {
  max-width: 100%;
  max-height: 219px;
  margin: 9px 20px 0 0;
  float: left;
  max-width: 100%;
  max-height: 219px;
}

.news-list__headline {
  margin-top: 0;
}

.news-list time {
  font-size: 14px;
  margin-top: -5px;
  font-weight: 700;
}

.news-list__subline a {
  color: #ff7400;
  font-weight: 700;
}

.news-list__subline a:hover {
  text-decoration: none;
}

.news-list__subline a p {
  color: #5f5d5e;
  font-weight: normal;
}

.news-list__subline p {
  margin-bottom: 0;
}

.news-list__top-paginate {
  padding: 40px 0 10px 0;
}

.news-list__top-paginate h5 {
  color: #ff7400;
  font-size: 18px;
  margin-bottom: 25px;
}

.news-list__top-paginate .pagination ul {
  margin: 0;
}

.news-list__top-paginate .pagination li:last-child {
  border-bottom: 0;
}

.news-list__selection h5 {
  color: #ff7400;
  font-size: 18px;
  margin: 20px 0;
  font-weight: 600;
}

.news-list__bottom-paginate {
  padding: 30px 0 0 0;
}

.news-list__bottom-paginate .pagination ul {
  margin: 0;
}

.news-list__bottom-paginate h5 {
  color: #ff7400;
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 600;
}

/**
 * brandung search.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Search
   ========================================================================== */
.newsletter-footer {
  padding: 10px;
  overflow: hidden;
  position: relative;
  width: 100%;
  float: none;
  background: #707173;
}

.newsletter-footer .field {
  position: relative;
  float: right;
  width: 100%;
}

.newsletter-footer input {
  border: 2px solid #fff;
  border-radius: 30px;
  width: 100%;
  background: #707173;
  padding: 10px 50px 10px 21px;
  color: #fff;
  margin: 0;
  height: 55px;
  display: block;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.newsletter-footer input:hover, .newsletter-footer input:focus {
  background: #b0b0b0;
}

.newsletter-footer .pholder::-webkit-input-placeholder:after {
  content: 'Ihre E-Mail Adresse';
  color: #fff !important;
}

.newsletter-footer label {
  display: block;
}

.newsletter-footer button {
  border: none;
  font-size: 16px;
  font-size: 1rem;
  position: absolute;
  top: 7px;
  right: 5px;
  z-index: 1;
  margin-top: -1.6px;
  color: #707173;
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
  font-size: 20px;
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.newsletter-footer button:hover {
  background: rgba(255, 255, 255, 0.9);
}

/**
* brandung pagination.scss v1.0.0
*
* Copyright brandung GmbH & Co.KG
* http://www.brandung.de/
*
* Date: 2015-05-13
* MIT License (MIT)
*/
/* ==========================================================================
	Pagination
========================================================================== */
.pagination {
  clear: both;
  display: block;
  height: 45px;
  margin: 30px 15px;
  text-align: center;
  height: 85px;
}

.pagination p {
  margin-top: 5px;
  color: #ff7400;
  font-weight: 600;
  float: left;
}

.pagination ul {
  margin: 0 auto;
  background: #ebebeb;
  padding: 7px 0;
  border-radius: 30px;
  height: 45px;
  float: right;
}

.pagination a {
  border: none;
  padding: 10px;
  text-decoration: none;
}

.pagination li {
  font-weight: 700;
  float: left;
  padding: 3px 0 0 0;
}

.pagination li:first-child.current {
  padding-left: 25px;
}

.pagination li:last-child.current {
  padding-right: 25px;
}

.pagination li.previous {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.pagination li.previous a {
  font-size: 0;
  padding: 0;
}

.pagination li.previous a:before {
  color: #ff7400;
  font-size: 30px;
  font-size: 1.875rem;
}

.pagination li.previous a:hover:before {
  opacity: .7;
}

.pagination li.next {
  padding-top: 0;
}

.pagination li.next a {
  font-size: 0;
  padding: 0;
  border-right: 0;
}

.pagination li.next a:before {
  color: #ff7400;
  font-size: 30px;
  font-size: 1.875rem;
}

.pagination li.next a:before {
  color: #ff7400;
}

.pagination li.next a:hover:before {
  opacity: .7;
}

.pagination li.current {
  color: #ff7400;
  padding: 3px 10px;
}

.pagination li a {
  color: #707173;
}

.pagination li a:hover {
  text-decoration: none;
  color: #b0b0b0;
}

.pagination li a.icon-before {
  color: #ff7400;
  font-size: 10px;
  font-size: 0.625rem;
  margin-top: -10px !important;
}

/**
 * brandung quotes-centered.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Quotes-centered
   ========================================================================== */
blockquote {
  position: relative;
  display: table;
  margin: 0;
}

blockquote small {
  margin: 20px 0 40px 0;
  display: block;
}

blockquote.blockquote__centered {
  display: block;
  margin: 0 auto;
  float: none;
  width: 70%;
}

blockquote.blockquote__centered h3 {
  text-align: center;
  font-weight: 300;
  font-style: italic;
}

blockquote.blockquote__centered small {
  text-align: center;
}

blockquote.blockquote__right {
  position: static;
  display: table-row;
  vertical-align: middle;
  padding: 0 40px;
  float: right;
  width: 50%;
}

blockquote.blockquote__right h3 {
  margin: 0;
  font-weight: 300;
  font-style: italic;
}

blockquote.blockquote__right small {
  text-align: left;
}

/**
 * brandung search-form.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-28
 * MIT License (MIT)
 */
/* ==========================================================================
   Search-form
   ========================================================================== */
.tx-indexedsearch {
  position: relative;
}

.tx-indexedsearch .tx-indexedsearch-searchbox table {
  width: 100%;
}

.tx-indexedsearch .tx-indexedsearch-searchbox table + p {
  display: none;
}

.tx-indexedsearch .tx-indexedsearch-searchbox table td {
  width: 100%;
  display: block;
}

.tx-indexedsearch .tx-indexedsearch-searchbox table input.tx-indexedsearch-searchbox-sword {
  width: 100%;
}

.tx-indexedsearch .tx-indexedsearch-searchbox table tr:nth-child(2) {
  position: absolute;
  top: 15px;
  right: 35px;
}

.tx-indexedsearch .tx-indexedsearch-searchbox table tr:nth-child(2) td {
  width: 40px;
}

.tx-indexedsearch .tx-indexedsearch-searchbox table tr:nth-child(2) td:first-child {
  z-index: 1;
}

.tx-indexedsearch .tx-indexedsearch-searchbox table tr:nth-child(2) td:first-child:before {
  font-size: 80px;
  font-size: 5rem;
  position: absolute;
  top: 25px;
  right: -35px;
}

.tx-indexedsearch .tx-indexedsearch-searchbox table tr:nth-child(2) td:last-child {
  z-index: 10;
}

.tx-indexedsearch .tx-indexedsearch-searchbox table tr:nth-child(2) input {
  height: 60px;
  width: 60px;
  background: transparent;
  border: none;
  font-size: 0;
  position: relative;
}

.tx-indexedsearch .tx-indexedsearch-rules,
.tx-indexedsearch .tx-indexedsearch-icon,
.tx-indexedsearch .tx-indexedsearch-percent {
  display: none !important;
}

.tx-indexedsearch .tx-indexedsearch-info.info {
  display: block !important;
  background-color: transparent;
}

.tx-indexedsearch .tx-indexedsearch-res td.tx-indexedsearch-descr {
  font-style: normal !important;
}

.tx-indexedsearch .tx-indexedsearch-res td.tx-indexedsearch-descr .tx-indexedsearch-redMarkup {
  color: #ff7400 !important;
}

.tx-indexedsearch .tx-indexedsearch-res table {
  border-bottom: 1px solid #ebebeb;
  display: block;
}

.tx-indexedsearch .tx-indexedsearch-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 26px;
  margin: 5px 0;
}

.tx-indexedsearch .tx-indexedsearch-title a {
  color: #707173;
}

.tx-indexedsearch .tx-indexedsearch-browsebox {
  display: block;
  overflow: hidden;
  margin-bottom: 20px;
}

.tx-indexedsearch .tx-indexedsearch-browsebox > p {
  float: left;
  max-width: 240px;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox {
  background: #ebebeb;
  display: inline-block;
  border-radius: 30px;
  padding: 0;
  float: right;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li {
  float: left;
  display: inline-block;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li a {
  line-height: 29px;
  padding: 10px;
  display: inline-block;
  font-weight: 600;
  color: #707173;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li a:hover {
  text-decoration: none;
  color: #b0b0b0;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li.tx-indexedsearch-browselist-currentPage a {
  color: #ff7400;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:first-child a {
  font-size: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:first-child a:before {
  font-size: 30px;
  font-size: 1.875rem;
  color: #ff7400;
  padding: 0;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:first-child a:hover:before {
  opacity: .7;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:first-child.tx-indexedsearch-browselist-currentPage {
  padding-left: 20px;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:first-child.tx-indexedsearch-browselist-currentPage a {
  font-size: 15px;
  font-size: 0.9375rem;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:first-child.tx-indexedsearch-browselist-currentPage a:before {
  display: none;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:last-child a {
  font-size: 0;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:last-child a:after {
  font-size: 30px;
  font-size: 1.875rem;
  color: #ff7400;
  padding: 0;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:last-child a:hover:after {
  opacity: .7;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:last-child.tx-indexedsearch-browselist-currentPage {
  padding-right: 20px;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:last-child.tx-indexedsearch-browselist-currentPage a {
  font-size: 15px;
  font-size: 0.9375rem;
}

.tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:last-child.tx-indexedsearch-browselist-currentPage a:after {
  display: none;
}

.tx-indexedsearch__article {
  padding: 0;
}

.tx-indexedsearch__container {
  border-top: 2px solid #ccc;
  padding: 20px 0;
  overflow: hidden;
}

.tx-indexedsearch__container img {
  max-width: 100%;
  max-height: 219px;
  margin: 9px 20px 0 0;
  float: left;
  max-width: 100%;
  max-height: 219px;
}

.tx-indexedsearch__subline a {
  color: #ff7400;
  font-weight: 700;
}

.tx-indexedsearch__paginate {
  padding: 30px 0 0;
}

.tx-indexedsearch__paginate p {
  margin-top: 0;
}

.tx-indexedsearch__paginate .pagination {
  /* li:last-child {
             border: none;
         }*/
}

.tx-indexedsearch__paginate .pagination ul {
  margin: 0;
}

.tx-indexedsearch__paginate h5 {
  color: #ff7400;
  font-size: 18px;
  margin-bottom: 25px;
}

.tx-indexedsearch .pagination li:last-child {
  border: 0;
  padding-top: 0;
}

.tx-indexedsearch input[type="text"] {
  width: 100%;
  padding: 18px 80px 18px 18px;
  font-size: 18px;
  border: 15px solid #ebebeb;
  background: #fff;
}

.tx-indexedsearch span.icon-only, .tx-indexedsearch .vjs-default-skin span.vjs-big-play-button:before, .vjs-default-skin .tx-indexedsearch span.vjs-big-play-button:before, .tx-indexedsearch span.vjs-big-play-button {
  position: absolute;
  top: 18px;
  right: 10px;
  color: #707173;
  font-size: 40px;
  font-size: 2.5rem;
}

.tx-indexedsearch span {
  color: #ff7400;
}

.tx-indexedsearch li:first-child {
  border-top: 0;
}

/**
 * brandung share-me.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   Share-me
   ========================================================================== */
.footer__sharing {
  position: absolute;
  top: -70px;
  right: -16px;
  visibility: hidden;
  width: 100%;
  left: 0;
  overflow: auto;
  top: -80px;
}

.footer__sharing.is-active {
  visibility: visible;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.footer__sharing .share-me {
  margin: 15px auto;
}

.share-me {
  margin: 15px 0;
  height: 50px;
  max-width: 1170px;
  margin: 50px auto 0;
  display: block;
}

.share-me ul {
  padding: 22px 0 10px;
  margin: 0 20px;
  float: right;
  overflow: hidden;
}

.share-me li {
  width: 50px;
  height: 50px;
  display: inline;
  border-left: 1px solid #8d8d8f;
  padding: 0;
  width: 100px;
  height: 60px;
}

.share-me li:first-child {
  border: none;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.share-me li:last-child {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.share-me .theme-color {
  padding: 22px 0 10px;
  overflow: hidden;
  margin: -30px 0 0 0;
  height: 75px;
  float: left;
  height: 85px;
}

.share-me .theme-color li {
  display: inline-block;
  border-right: 1px solid #ccc;
}

.share-me .theme-color li a {
  padding: 0;
}

.share-me .theme-color span {
  display: inline;
}

.share-me .theme-color .share_text {
  padding: 0 !important;
  font-size: 14px !important;
  display: none;
}

.share-me .theme-color .share_text {
  display: block;
}

.share-me .theme-color li a {
  padding: 5px 0 0 5px;
}

.share-me .shariff-button {
  background: #ccc !important;
  color: #fff;
  margin-bottom: 0;
  padding: 5px 0;
}

.share-me .shariff-button span {
  display: none;
}

.share-me .shariff-button a {
  color: #fff;
  padding: 10px 30px 10px 10px;
  background: none;
  display: block;
  float: left;
}

.share-me .shariff-button a:before {
  font-size: 36px;
  font-size: 2.25rem;
}

.share-me .shariff-button.whatsapp a {
  float: right;
}

.share-me .shariff-button.whatsapp a:hover {
  color: #43d854;
}

.share-me .shariff-button.whatsapp a:hover .share_text {
  color: #43d854;
}

.share-me .shariff-button.whatsapp a {
  float: none;
}

.share-me .shariff-button.googleplus a:hover {
  color: #dd4b39;
}

.share-me .shariff-button.googleplus a:hover .share_text {
  color: #dd4b39;
}

.share-me .shariff-button.facebook a:hover {
  color: #3b5998;
}

.share-me .shariff-button.facebook a:hover .share_text {
  color: #3b5998;
}

.share-me .shariff-button.twitter a:hover {
  color: #00aced;
}

.share-me .shariff-button.twitter a:hover .share_text {
  color: #00aced;
}

.share-me .shariff-button.mail a {
  margin-left: -5px;
}

.share-me .shariff-button.mail a:after {
  display: none;
}

.share-me .shariff-button.mail a:hover {
  color: #ababab;
}

.share-me .shariff-button.mail a:hover .share_text {
  color: #ababab;
}

.share-me .shariff-button.mail a span.share_text {
  padding-left: 50px;
}

.share-me ul {
  padding: 10px 0 10px;
}

.share-me .shariff-button {
  padding: 0;
}

.share-me .shariff-button a {
  line-height: 50px;
}

.share-me .shariff-button a:before {
  float: left;
  margin-top: 5px;
}

.share-me .shariff-button span {
  display: block;
}

.share-me .shariff-button span.share_text {
  float: left;
  margin-top: -10px;
}

.share-me ul {
  margin-right: 0;
}

.share-me .shariff-button a {
  float: none;
}

/**
 * brandung slider-front-page.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   SLider-front-page
   ========================================================================== */
.slider-front-page {
  position: relative;
  display: block;
  clear: both;
  width: 100%;
  overflow: hidden;
  padding: 20px 0 10px;
}

.slider-front-page button:focus {
  outline: none;
}

.slider-front-page .media-library__item-icon-big {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ff7400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
}

.slider-front-page .media-library__item-icon-big p {
  color: #ff7400;
  margin-top: -10px;
  font-weight: 600;
}

.slider-front-page .media-library__item-icon-big span {
  margin: -20px 0 0;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 200;
  max-height: 82px;
}

.slider-front-page .media-library__item-icon-big p {
  margin-top: 0;
}

.slider-front-page .media-library__item-icon-big span {
  font-size: 60px;
  font-size: 3.75rem;
}

.slider-front-page .slick-slide .media-library__item-icon-big {
  border: 2px solid #ff7400;
  padding: 10px;
}

.slider-front-page__slider-container {
  position: relative;
  background: #fff;
  background: rgba(255, 255, 255, 0.5);
  margin-top: -243px;
  background: rgba(255, 255, 255, 0.3);
}

.slider-front-page .slick-prev {
  border: 0;
  background: none;
  font-size: 0;
}

.slider-front-page .slick-prev:before {
  font-size: 80px;
  font-size: 5rem;
  color: #ff7400;
  position: absolute;
  top: 50%;
  margin-top: -55px;
  left: -20px;
  width: 50px;
}

.slider-front-page .slick-slide img {
  margin: 0 auto;
}

.slider-front-page .slick-next {
  border: 0;
  background: none;
  font-size: 0;
}

.slider-front-page .slick-next:before {
  font-size: 80px;
  font-size: 5rem;
  color: #ff7400;
  position: absolute;
  top: 50%;
  margin-top: -55px;
  right: 0;
  width: 50px;
}

.slider-front-page.blue .media-library__item-icon-big {
  color: #134894;
}

.slider-front-page.blue .media-library__item-icon-big p, .slider-front-page.blue .media-library__item-icon-big a {
  color: #134894;
}

.slider-front-page.blue .media-library__item-icon-big p:hover, .slider-front-page.blue .media-library__item-icon-big a:hover {
  color: #134894;
  text-decoration: none;
}

.slider-front-page.blue .slick-slide .media-library__item-icon-big {
  border: 2px solid #134894;
}

.slider-front-page.blue .slick-prev:before,
.slider-front-page.blue .slick-next:before {
  color: #134894;
}

/**
 * brandung standortsuche.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-11-26
 * MIT License (MIT)
 */
/* ==========================================================================
   Standortsuche
   ========================================================================== */
.standortsuche input {
  margin-top: 0;
  cursor: pointer;
  float: right;
  padding: 13px;
  border: none;
  border-radius: 30px;
  background: #ebebeb;
  padding-right: 45px;
  -webkit-box-shadow: inset 6px 7px 18px 0px rgba(209, 207, 209, 0.85);
  -o-box-shadow: inset 6px 7px 18px 0px rgba(209, 207, 209, 0.85);
  -ms-box-shadow: inset 6px 7px 18px 0px rgba(209, 207, 209, 0.85);
  box-shadow: inset 6px 7px 18px 0px rgba(209, 207, 209, 0.85);
  -webkit-transition: all ease-in-out .2s;
  transition: all ease-in-out .2s;
}

.standortsuche input:hover {
  background: #e1e1e1;
}

.standortsuche h6 {
  color: #5f5d5e;
  margin: 30px 0 15px 0;
}

.standortsuche .search-postal-code {
  position: relative;
  display: block;
  float: left;
  clear: both;
  width: 25%;
  overflow-y: auto;
  overflow-x: hidden;
}

.standortsuche .search-postal-code button {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0;
  background: transparent;
  border: none;
}

.standortsuche .search-postal-code button:before {
  font-size: 60px;
  font-size: 3.75rem;
  top: -8px;
  position: absolute;
  right: -10px;
}

.standortsuche .search-postal-code button:focus {
  outline: none;
}

.standortsuche .search-city {
  float: left;
  width: 70%;
  margin-left: 5%;
}

/**
 * brandung sub-navigation.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-13
 * MIT License (MIT)
 */
/* ==========================================================================
   sub-navigation
   ========================================================================== */
.sub-navigation-mobile {
  display: block;
  background: #fff;
  padding: 0;
  margin: 30px 0;
}

.sub-navigation-mobile a {
  color: #134894;
  margin: 0;
}

.sub-navigation-mobile a:after {
  content: none;
}

.sub-navigation-mobile li {
  border-bottom: 2px solid #fff;
  margin: 0;
}

.sub-navigation-mobile li a {
  padding: 15px 30px;
  display: block;
}

.sub-navigation-mobile__header {
  color: #fff;
  background: #134894;
  padding: 20px 30px;
  margin: 0;
}

.sub-navigation-mobile__header a,
.sub-navigation-mobile__header a:hover {
  color: #fff;
  text-decoration: none;
}

.sub-navigation-mobile__headline {
  position: relative;
  color: #134894 !important;
  padding: 20px;
  font-weight: 600;
  background: #ebebeb;
}

.sub-navigation-mobile__headline:before {
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -13px;
}

.sub-navigation-mobile__headline:hover {
  background: #e1e1e1 !important;
}

.sub-navigation-mobile__headline.active {
  background: #ebebeb;
  color: #ff7400 !important;
  font-weight: 600;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.sub-navigation-mobile__headline.active:before {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.sub-navigation-mobile__headline:after {
  display: none;
}

.sub-navigation-mobile .sub-navigation-mobile__headline-sub {
  color: #134894;
  padding: 3px 30px;
  background: #f4f4f4;
}

.sub-navigation-mobile .sub-navigation-mobile__headline-sub:hover {
  background: #fdfdfd !important;
  color: #134894;
}

.sub-navigation-mobile .sub-navigation-mobile__headline-sub.active {
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #ff7400;
}

.sub-navigation-mobile .sub-navigation-mobile__headline-sub + ul li a {
  padding-left: 50px;
  background: #f9f9f9 !important;
}

.sub-navigation-mobile .sub-navigation-mobile__headline-sub + ul li a:hover {
  background: #fefefe !important;
}

.sub-navigation-mobile .sub-navigation-mobile__headline-sub + ul li a.active {
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #ff7400;
}

.sub-navigation-mobile__active {
  position: absolute;
  top: 50%;
  right: 15px;
}

.sub-navigation-mobile__list-item.active {
  background: #5f5d5e;
  color: #fff;
}

.sub-navigation-mobile__list-item > ul {
  display: none;
}

.sub-navigation-mobile__list-item li {
  background: #ebebeb;
  border: none !important;
}

.sub-navigation-mobile__list-item li a {
  color: #134894;
}

.sub-navigation-mobile__nochild {
  color: #134894;
}

.sub-navigation-mobile__nochild:before {
  display: none;
}

.sub-navigation-mobile .sub-navigation-mobile__list-item > ul {
  border-top: 2px solid #fff;
}

/**
 * brandung sub-navigation.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-13
 * MIT License (MIT)
 */
/* ==========================================================================
   sub-navigation
   ========================================================================== */
.sub-navigation {
  background: #fff;
  padding: 0;
  margin-bottom: 30px;
  display: none;
}

.sub-navigation a {
  color: #134894;
  margin: 0;
}

.sub-navigation a:after {
  content: none;
}

.sub-navigation li {
  border-bottom: 2px solid #fff;
  margin: 0;
}

.sub-navigation li a {
  padding: 15px 30px;
  display: block;
}

.sub-navigation__header {
  color: #fff;
  background: #134894;
  padding: 20px 30px;
  margin: 0;
}

.corporate_sub_withmenu .sub-navigation__header {
  display: none;
}

.sub-navigation__header a,
.sub-navigation__header a:hover {
  color: #fff;
  text-decoration: none;
}

.sub-navigation__headline {
  position: relative;
  color: #134894 !important;
  padding: 20px;
  font-weight: 600;
  background: #ebebeb;
}

.sub-navigation__headline:before {
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -13px;
}

.sub-navigation__headline:hover {
  background-color: #ccc !important;
}

.sub-navigation__headline.active {
  background: #ebebeb;
  color: #ff7400 !important;
  font-weight: 600;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.sub-navigation__headline.active:before {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.sub-navigation__headline:after {
  display: none;
}

.sub-navigation .sub-navigation__headline-sub {
  color: #134894;
  padding: 3px 30px;
  background: #f4f4f4;
}

.sub-navigation .sub-navigation__headline-sub:hover {
  background-color: #ebebeb;
  color: #134894;
}

.sub-navigation .sub-navigation__headline-sub.active {
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #ff7400;
}

.sub-navigation .sub-navigation__headline-sub + .level2 li a {
  padding-left: 50px;
  background: #f9f9f9 !important;
}

.sub-navigation .sub-navigation__headline-sub + .level2 li a:hover {
  background-color: #ebebeb !important;
}

.sub-navigation .sub-navigation__headline-sub + .level2 li a.active {
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #ff7400;
}

.sub-navigation .sub-navigation__headline-sub + .level3 li a {
  padding-left: 70px;
  background: #fcfcfc !important;
}

.sub-navigation .sub-navigation__headline-sub + .level3 li a:hover {
  background-color: #ebebeb !important;
}

.sub-navigation__active {
  position: absolute;
  top: 50%;
  right: 15px;
}

.sub-navigation__list-item.active {
  background: #5f5d5e;
  color: #fff;
}

.sub-navigation__list-item li {
  background: #ebebeb;
  border: none !important;
}

.sub-navigation__list-item li a {
  color: #134894;
}

.sub-navigation__nochild {
  color: #134894;
}

.sub-navigation__nochild:before {
  display: none;
}

.sub-navigation .sub-navigation__list-item > ul {
  border-top: 2px solid #fff;
}

/**
 * brandung teaser-full-width.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Teaser-full-width
   ========================================================================== */
.teaser-full-width {
  position: relative;
  overflow: visible;
  clear: both;
}

.teaser-full-width img {
  width: 100%;
}

.teaser-full-width .container {
  padding: 0;
  overflow: visible;
}

.teaser-full-width__right-article {
  position: relative;
  color: #fff;
  padding: 0 20px 60px;
  height: auto;
  margin-top: -110px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#cedae6+13,cedae6+13,cedae6+100&amp;0+0,1+31,1+98 */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(206, 218, 230, 0)), color-stop(13%, rgba(206, 218, 230, 0.42)), color-stop(31%, #cedae6), color-stop(98%, #cedae6), to(#cedae6));
  background: linear-gradient(to bottom, rgba(206, 218, 230, 0) 0%, rgba(206, 218, 230, 0.42) 13%, #cedae6 31%, #cedae6 98%, #cedae6 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00cedae6', endColorstr='#cedae6',GradientType=0 );
  /* IE6-9 */
}

.teaser-full-width__right-article a:not(.button-bordered) {
  color: #ff7400;
  text-decoration: none;
}

.teaser-full-width__right-article a:not(.button-bordered):hover span {
  text-decoration: underline;
}

.teaser-full-width__right-article h2 {
  padding-top: 50px;
  line-height: 30px;
  margin: 0;
  color: #fff;
  font-weight: 300;
}

.teaser-full-width__right-article h2 span {
  font-weight: 800;
  color: #134894;
}

.teaser-full-width__right-article p:last-of-type {
  margin-bottom: 30px;
}

.teaser-full-width__right-article br {
  display: none;
}

.teaser-full-width__right-article {
  margin-top: -155px;
}

.teaser-full-width__right-article h2 {
  font-size: 35px;
  font-size: 2.1875rem;
  line-height: 40px;
}

/**
* brandung teaser-width-content-fluid.scss v1.0.0
*
* Copyright brandung GmbH & Co.KG
* http://www.brandung.de/
*
* Date: 2015-05-13
* MIT License (MIT)
*/
/* ==========================================================================
	teaser-width-content-fluid
========================================================================== */
.teaser-width-content-fluid {
  position: relative;
  background: #cedae6;
  display: block !important;
  float: left;
  display: inline-block;
  text-align: center;
  width: 50%;
}

.teaser-width-content-fluid img {
  width: 100%;
}

.teaser-width-content-fluid picture {
  display: block;
  position: relative;
}

.teaser-width-content-fluid__left, .teaser-width-content-fluid__right {
  position: relative;
  margin-top: -110px;
  padding: 0 20px 90px;
  overflow: hidden;
  display: block !important;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#cedae6+13,cedae6+13,cedae6+100&amp;0+0,1+31,1+98 */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(206, 218, 230, 0)), color-stop(13%, rgba(206, 218, 230, 0.42)), color-stop(31%, #cedae6), color-stop(98%, #cedae6), to(#cedae6));
  background: linear-gradient(to bottom, rgba(206, 218, 230, 0) 0%, rgba(206, 218, 230, 0.42) 13%, #cedae6 31%, #cedae6 98%, #cedae6 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00cedae6', endColorstr='#cedae6',GradientType=0 );
  /* IE6-9 */
}

.teaser-width-content-fluid__left {
  right: 0;
}

.teaser-width-content-fluid__right {
  left: 0;
}

.teaser-width-content-fluid__right-headline, .teaser-width-content-fluid__headline {
  padding-top: 50px;
  font-weight: 800;
  color: #134894;
  line-height: 30px;
  font-size: 32px;
  font-size: 2rem;
}

.teaser-width-content-fluid__right-headline span, .teaser-width-content-fluid__headline span {
  color: #fff;
  display: block;
  font-weight: 400;
}

.teaser-width-content-fluid__right-headline {
  color: #ff7400;
}

.teaser-width-content-fluid__right-headline span {
  color: #5f5d5e;
}

.teaser-width-content-fluid__subline a {
  color: #134894;
  font-weight: 600;
}

.teaser-width-content-fluid__subline a:hover {
  color: #4f84d0;
  text-decoration: none;
}

.teaser-width-content-fluid__subline a:hover span {
  text-decoration: underline;
}

.teaser-width-content-fluid__button {
  height: 45px;
  margin-top: 20px;
  position: absolute;
  bottom: 30px;
}

.teaser-width-content-fluid__button a {
  padding: 5px 0 5px 15px;
}

.teaser-width-content-fluid__left, .teaser-width-content-fluid__right {
  height: 100%;
}

.teaser-width-content-fluid__button a {
  padding: 15px 30px 15px 50px;
}

.teaser-width-content-fluid picture {
  max-height: 200px;
}

.full-teaser-wrapper {
  overflow: hidden;
  clear: both;
  position: relative;
}

/**
 * brandung teasers.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Teasers
   ========================================================================== */
.teasers {
  position: relative;
  width: 100%;
  height: 270px;
  margin: 30px 0;
  display: block;
  clear: both;
  background: #cedae6;
  overflow: hidden;
  height: 370px;
}

.teasers img {
  width: 100%;
}

.teasers__small .teasers__headline, .teasers__medium .teasers__headline, .teasers__large .teasers__headline {
  padding: 0 20px;
}

.teasers__small .teasers__headline h4, .teasers__medium .teasers__headline h4, .teasers__large .teasers__headline h4 {
  color: #134894;
  margin: 0;
  font-weight: 600;
}

.teasers__small .teasers__description, .teasers__medium .teasers__description, .teasers__large .teasers__description {
  padding: 0 20px;
}

.teasers__small .teasers__description a, .teasers__medium .teasers__description a, .teasers__large .teasers__description a {
  color: #134894;
}

.teasers__small .teasers__description a:hover, .teasers__medium .teasers__description a:hover, .teasers__large .teasers__description a:hover {
  color: #4f84d0;
}

.teasers__small .teasers__description a:hover span, .teasers__medium .teasers__description a:hover span, .teasers__large .teasers__description a:hover span {
  text-decoration: underline;
}

.teasers__small {
  position: absolute;
  top: 150px;
  padding-top: 0;
  height: 240px;
  width: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#cedae6+13,cedae6+13,cedae6+100&amp;0+0,1+31,1+98 */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(206, 218, 230, 0)), color-stop(13%, rgba(206, 218, 230, 0.42)), color-stop(31%, #cedae6), color-stop(98%, #cedae6), to(#cedae6));
  background: linear-gradient(to bottom, rgba(206, 218, 230, 0) 0%, rgba(206, 218, 230, 0.42) 13%, #cedae6 31%, #cedae6 98%, #cedae6 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00cedae6', endColorstr='#cedae6', GradientType=0);
  /* IE6-9 */
}

.teasers__small.light {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e4edf2+14,e4edf2+97&amp;0+1,1+32 */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, rgba(228, 237, 242, 0)), color-stop(14%, rgba(228, 237, 242, 0.42)), color-stop(32%, #e4edf2), color-stop(97%, #e4edf2));
  background: linear-gradient(to bottom, rgba(228, 237, 242, 0) 1%, rgba(228, 237, 242, 0.42) 14%, #e4edf2 32%, #e4edf2 97%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00e4edf2', endColorstr='#e4edf2', GradientType=0);
  /* IE6-9 */
}

.teasers > a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.teasers__small {
  top: 130px;
  padding-top: 23px;
}

a.teaser__link {
  height: 100%;
  width: 100%;
}

a.teaser__link p {
  color: #5f5d5e;
}

a.teaser__link:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: transparent;
  -webkit-transition: width .3s;
  transition: width .3s;
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}

a.teaser__link:hover:after {
  background-color: rgba(255, 255, 255, 0.2);
}

/**
 * brandung text-decoration.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Text-decoration
   ========================================================================== */
.text-decoration__footnote span {
  font-size: 11px;
  color: #707173;
}

/**
 * brandung text-icon.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Text-icon
   ========================================================================== */
.text-icon {
  padding: 20px 10px;
  overflow: hidden;
  margin: 30px 0;
}

.text-icon__left span, .text-icon__right span {
  font-size: 80px;
  font-size: 5rem;
  color: #707173;
  border: 3px solid #707173;
  border-radius: 50%;
  height: 100px;
  width: 100px;
  padding: 20px 0 45px 11px;
  display: block;
}

.text-icon__left span, .text-icon__right span {
  height: 100px;
  width: 100px;
  padding: 20px 0 45px 11px;
}

.text-icon__left span:before, .text-icon__right span:before {
  font-size: 60px;
  font-size: 3.75rem;
  vertical-align: top;
}

.text-icon__left {
  float: left;
}

.text-icon__left span {
  margin-right: 30px;
}

.text-icon__right {
  float: right;
}

.text-icon__right span {
  margin-left: 30px;
}

.text-icon__decriptions {
  text-align: left;
}

.text-icon__decriptions h3, .text-icon__decriptions h4 {
  margin: 0;
}

.text-no-icon__subline {
  margin-bottom: 30px;
}
/*# sourceMappingURL=all-old-ie.css.map */