@charset "UTF-8";
/**
 * 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 */
/* colors career rebrush */
/* Scaffolding */
/* Links */
/**
 * 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/
*/
/**
 * Simple 'text-decoration' animation
 */
/**
 * New Animation for links
 * TODO: fine-tuning
 */
/**
 * Simple reverse 'text-decoration' animation
 */
/**
* Grid mixins
*
* Generate semantic grid columns with these mixins.
* based on the bootstrap-sass partial
*/
/* Mixin to vertical align
http://zerosixthree.se/vertical-align-anything-with-just-3-lines-of-css/ */
/**
 * 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.
 */
/* line 9, Resources/Private/Frontend/sass/vendor/_normalize.scss */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
/* line 19, Resources/Private/Frontend/sass/vendor/_normalize.scss */
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.
 */
/* line 32, Resources/Private/Frontend/sass/vendor/_normalize.scss */
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.
 */
/* line 52, Resources/Private/Frontend/sass/vendor/_normalize.scss */
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.
 */
/* line 65, Resources/Private/Frontend/sass/vendor/_normalize.scss */
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.
 */
/* line 75, Resources/Private/Frontend/sass/vendor/_normalize.scss */
[hidden],
template {
  display: none; }

/* Links
========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
/* line 87, Resources/Private/Frontend/sass/vendor/_normalize.scss */
a {
  background: transparent; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
/* line 95, Resources/Private/Frontend/sass/vendor/_normalize.scss */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
/* line 107, Resources/Private/Frontend/sass/vendor/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
/* line 115, Resources/Private/Frontend/sass/vendor/_normalize.scss */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
/* line 124, Resources/Private/Frontend/sass/vendor/_normalize.scss */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
/* line 133, Resources/Private/Frontend/sass/vendor/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9.
 */
/* line 142, Resources/Private/Frontend/sass/vendor/_normalize.scss */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
/* line 151, Resources/Private/Frontend/sass/vendor/_normalize.scss */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
/* line 159, Resources/Private/Frontend/sass/vendor/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

/* line 167, Resources/Private/Frontend/sass/vendor/_normalize.scss */
sup {
  top: -0.5em; }

/* line 171, Resources/Private/Frontend/sass/vendor/_normalize.scss */
sub {
  bottom: -0.25em; }

/* Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
/* line 182, Resources/Private/Frontend/sass/vendor/_normalize.scss */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
/* line 190, Resources/Private/Frontend/sass/vendor/_normalize.scss */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
/* line 201, Resources/Private/Frontend/sass/vendor/_normalize.scss */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
/* line 209, Resources/Private/Frontend/sass/vendor/_normalize.scss */
hr {
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
/* line 219, Resources/Private/Frontend/sass/vendor/_normalize.scss */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
/* line 227, Resources/Private/Frontend/sass/vendor/_normalize.scss */
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.
 */
/* line 250, Resources/Private/Frontend/sass/vendor/_normalize.scss */
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.
 */
/* line 264, Resources/Private/Frontend/sass/vendor/_normalize.scss */
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.
 */
/* line 275, Resources/Private/Frontend/sass/vendor/_normalize.scss */
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.
 */
/* line 288, Resources/Private/Frontend/sass/vendor/_normalize.scss */
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.
 */
/* line 300, Resources/Private/Frontend/sass/vendor/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
/* line 309, Resources/Private/Frontend/sass/vendor/_normalize.scss */
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.
 */
/* line 320, Resources/Private/Frontend/sass/vendor/_normalize.scss */
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.
 */
/* line 332, Resources/Private/Frontend/sass/vendor/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  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`.
 */
/* line 344, Resources/Private/Frontend/sass/vendor/_normalize.scss */
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).
 */
/* line 355, Resources/Private/Frontend/sass/vendor/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 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).
 */
/* line 368, Resources/Private/Frontend/sass/vendor/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
/* line 377, Resources/Private/Frontend/sass/vendor/_normalize.scss */
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.
 */
/* line 388, Resources/Private/Frontend/sass/vendor/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
/* line 397, Resources/Private/Frontend/sass/vendor/_normalize.scss */
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.
 */
/* line 406, Resources/Private/Frontend/sass/vendor/_normalize.scss */
optgroup {
  font-weight: bold; }

/* Tables
========================================================================== */
/**
 * Remove most spacing between table cells.
 */
/* line 417, Resources/Private/Frontend/sass/vendor/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0; }

/* line 422, Resources/Private/Frontend/sass/vendor/_normalize.scss */
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
   ========================================================================== */
/* line 13, Resources/Private/Frontend/sass/vendor/_h5bp.scss */
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.
 */
/* line 25, Resources/Private/Frontend/sass/vendor/_h5bp.scss */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none; }

/* line 30, Resources/Private/Frontend/sass/vendor/_h5bp.scss */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none; }
::selection {
  background: #b3d4fc;
  text-shadow: none; }

/*
 * A better looking default horizontal rule
 */
/* line 39, Resources/Private/Frontend/sass/vendor/_h5bp.scss */
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
 */
/* line 53, Resources/Private/Frontend/sass/vendor/_h5bp.scss */
audio,
canvas,
img,
svg,
video {
  vertical-align: middle; }

/*
 * Remove default fieldset styles.
 */
/* line 65, Resources/Private/Frontend/sass/vendor/_h5bp.scss */
fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

/*
 * Allow only vertical resizing of textareas.
 */
/* line 75, Resources/Private/Frontend/sass/vendor/_h5bp.scss */
textarea {
  resize: vertical; }

/* ==========================================================================
   Browse Happy prompt
   ========================================================================== */
/* line 83, Resources/Private/Frontend/sass/vendor/_h5bp.scss */
.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
 */
/* line 119, Resources/Private/Frontend/sass/vendor/_h5bp.scss */
.hidden {
  display: none !important;
  visibility: hidden; }

/*
 * Hide only visually, but have it available for screen readers: h5bp.com/v
 */
/* line 128, Resources/Private/Frontend/sass/vendor/_h5bp.scss */
.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
 */
/* line 144, Resources/Private/Frontend/sass/vendor/_h5bp.scss */
.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
 */
/* line 158, Resources/Private/Frontend/sass/vendor/_h5bp.scss */
.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.
 */
/* line 174, Resources/Private/Frontend/sass/vendor/_h5bp.scss */
.clearfix:before, hr:before,
.clearfix:after,
main:after,
hr:after,
.btn-set:after,
.header:after,
footer:after,
.nav__list:after,
.mod-form label:after,
.mod-form__list li:after,
.mod-form .mod-form__fields:after,
.mod-form .mod-form__input-date-wrapper:after,
.overlay__title:after,
.application__upload-wrapper:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

/* line 180, Resources/Private/Frontend/sass/vendor/_h5bp.scss */

.clearfix:after,
main:after,
hr:after,
.btn-set:after,
.header:after,
footer:after,
.nav__list:after,
.mod-form label:after,
.mod-form__list li:after,
.mod-form .mod-form__fields:after,
.mod-form .mod-form__input-date-wrapper:after,
.overlay__title:after,
.application__upload-wrapper: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 {
  /* line 207, Resources/Private/Frontend/sass/vendor/_h5bp.scss */
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important; }
  /* line 214, Resources/Private/Frontend/sass/vendor/_h5bp.scss */
  a,
  a:visited {
    text-decoration: underline; }
  /* line 219, Resources/Private/Frontend/sass/vendor/_h5bp.scss */
  a[href]:after {
    content: " (" attr(href) ")";
    display: block !important; }
  /* line 223, Resources/Private/Frontend/sass/vendor/_h5bp.scss */
  a[target="_blank"]:after {
    display: inline-block !important; }
  /* line 227, Resources/Private/Frontend/sass/vendor/_h5bp.scss */
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  /*
	 * Don't show links that are fragment identifiers,
	 * or use the `javascript:` pseudo protocol
	 */
  /* line 236, Resources/Private/Frontend/sass/vendor/_h5bp.scss */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }
  /* line 241, Resources/Private/Frontend/sass/vendor/_h5bp.scss */
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  /* line 247, Resources/Private/Frontend/sass/vendor/_h5bp.scss */
  thead {
    display: table-header-group;
    /* h5bp.com/t */ }
  /* line 251, Resources/Private/Frontend/sass/vendor/_h5bp.scss */
  tr,
  img {
    page-break-inside: avoid; }
  /* line 256, Resources/Private/Frontend/sass/vendor/_h5bp.scss */
  img {
    max-width: 100% !important; }
  /* line 260, Resources/Private/Frontend/sass/vendor/_h5bp.scss */
  p,
  h2,
  .sub-navigation__header,
  .teaser__header,
  h3 {
    orphans: 3;
    widows: 3; }
  /* line 267, Resources/Private/Frontend/sass/vendor/_h5bp.scss */
  
  h2,
  .sub-navigation__header,
  .teaser__header,
  h3 {
    page-break-after: avoid; }
  /* line 272, Resources/Private/Frontend/sass/vendor/_h5bp.scss */
  .hide-on-print {
    display: none; } }

/**
 * old-ie mixin
 * https://gridsetapp.com/
 */
/**
 * 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
 */
@font-face {
  font-family: 'icomoon';
  src: url("../fonts/ukkoeln.eot?8u0vmh");
  src: url("../fonts/ukkoeln.eot?8u0vmh#iefix") format("embedded-opentype"), url("../fonts/ukkoeln.woff2?8u0vmh") format("woff2"), url("../fonts/ukkoeln.ttf?8u0vmh") format("truetype"), url("../fonts/ukkoeln.woff?8u0vmh") format("woff"), url("../fonts/ukkoeln.svg?8u0vmh#ukkoeln") format("svg");
  font-weight: normal;
  font-style: normal; }

/* line 13, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before:before,
.icon-after:after,
.icon-only:before, .header a[target="_blank"]:after, main a[target="_blank"]:after,
main a.pb-link:after, .btn--alternate:before, .btn--list[class^="btn"]:before, footer .footernav__anker__active:after, footer .footernav__tweet:before, footer .footernav__youTube:before, footer .footernav__bmark-content a:before, .nav__flyout .clone a:after, .nav__back-btn:before, .nav .js-show-more:before, select:after, .selectboxit-arrow-container:after, .link:before, .link--more:before, .link-intern-pt:before, .powermail_print-content--print:before, .sub-navigation__has-child .sub-navigation__headline:before, .sub-navigation__active, .sub-navigation__list-item.active, .sub-service-navigation__headline:after, .captcha__help .tx-srfreecap-pi2-cant-read:before,
.captcha__help .tx-srfreecap-pi2-accessible-link:before, .selectboxit-container .custom-select .selectboxit-arrow-container:after, .scroll-top:before, blockquote p:before, blockquote p:after, .infobox span.info-icon:before, .breadcrumb li:after, .slick-dots li button[class*=slick__control]:before, .slick-prev:before, .slick-next:before, .accordion__panel:after, .accordion__panel.is-active:after, .overlay__next:before, .overlay__prev:before, .overlay__close:before, .overlay__zoom a:after, .fancybox:before, .mediathek__headline-icon .is-active:after, .is-flyout .mediathek__header:after, .mediathek__flyout:after, .category .selectboxit-arrow-container:after, .video-container__video:after, .audio-player .file-size:after, .audio-player .audioplayer-playpause:before, .audio-player .audioplayer-volume-button:before, .share-me .shariff-button.googleplus a:before, .share-me .shariff-button.facebook a:before, .share-me .shariff-button.twitter a:before, .share-me .shariff-button.mail a:before, .share-me .shariff-button.whatsapp a:before, .share-me .shariff-button.info a:before, .tab-content__active-mobile:after, .application__headline:after, .application__is-active-icon:after, .dp-popup div.dp-nav-prev a:before, .dp-popup div.dp-nav-next a:before, .tab-accordion__headline:after, .tab-accordion__headline.is-active:after, .tab-accordion__slider.next:after, .tab-accordion__slider.prev:after, .google-search__input-button:before, .warning__icon:after, .tags a:before, .tags--more a:before {
  font-family: 'icomoon' !important;
  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; }

/* line 31, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before:before,
.icon-after:after,
.icon-only:before {
  font-family: 'icomoon'; }

/* line 57, Resources/Private/Frontend/sass/partials/_icon-font.scss */
footer .footernav__bmark-content--print:before, .powermail_print-content--print:before {
  content: "\e904"; }

/* line 65, Resources/Private/Frontend/sass/partials/_icon-font.scss */
blockquote p:before {
  content: "\e62f"; }

/* line 69, Resources/Private/Frontend/sass/partials/_icon-font.scss */
blockquote p:after {
  content: "\e630"; }

/* line 77, Resources/Private/Frontend/sass/partials/_icon-font.scss */
select:after, .selectboxit-arrow-container:after, .sub-navigation__has-child .sub-navigation__headline:before, .selectboxit-container .custom-select .selectboxit-arrow-container:after, .scroll-top:before, .is-flyout .mediathek__header:after, .mediathek__flyout:after, .category .selectboxit-arrow-container:after, .tab-content__active-mobile:after {
  content: "\e601"; }

/* line 81, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.nav__back-btn:before, .slick-prev:before, .overlay__prev:before, .overlay__prev:hover:before, .mediathek__headline-icon .is-active:after, .tab-accordion__slider.next:after {
  content: "\e602"; }

/* line 85, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.nav__flyout .clone a:after, .link--more:before, .link-intern-pt:before, .link--more-white:before, .link-intern-pt-white:before, .breadcrumb li:after, .slick-next:before, .overlay__next:before, .overlay__next:hover:before, .tab-accordion__slider.prev:after, .tags a:before, .tags--more a:before, .tags--more:before {
  content: "\e603"; }

/* line 89, Resources/Private/Frontend/sass/partials/_icon-font.scss */
footer .footernav__bmark-content--bmark:before {
  content: "\e604"; }

/* line 97, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.overlay__close:before {
  content: "\e606"; }

/* line 105, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.application__is-active-icon:after {
  content: "\e608"; }

/* line 125, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.header a[target="_blank"]:after, main a[target="_blank"]:after,
main a.pb-link:after, .overlay__zoom a:after {
  content: "\e60d"; }

/* line 133, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.share-me .shariff-button.googleplus a:before {
  content: "\e60f"; }

/* line 141, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.infobox span.info-icon:before, .share-me .shariff-button.info a:before, .warning__icon:after {
  content: "\e90b"; }

/* line 149, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.nav .js-show-more.is-active:before {
  content: "\e613"; }

/* line 157, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.share-me .shariff-button.mail a:before {
  content: "\e615"; }

/* line 169, Resources/Private/Frontend/sass/partials/_icon-font.scss */
footer .footernav__anker__active:after, .sub-navigation__active, .sub-navigation__list-item.active, .accordion__panel.is-active:after, .application__headline.application--active:after, .tab-accordion__headline.is-active:after {
  content: "\e618"; }

/* line 173, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.nav .js-show-more:before {
  content: "\e619"; }

/* line 177, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.sub-service-navigation__headline:after {
  content: "\e61a"; }

/* line 181, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.audio-player .file-size:after {
  content: "\e61b"; }

/* line 189, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.slick-dots li button.slick__control--pause:before, .audio-player .audioplayer-playing .audioplayer-playpause:before {
  content: "\e61d"; }

/* line 193, Resources/Private/Frontend/sass/partials/_icon-font.scss */
main a.pb-link[target="_blank"]:after,
main a.pb-link:after {
  content: "\e61e"; }

/* line 201, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.slick-dots li button.slick__control--play:before, .video-container__video:after, .audio-player .audioplayer-playpause:before {
  content: "\e620"; }

/* line 205, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.accordion__panel:after, .application__headline:after, .tab-accordion__headline:after {
  content: "\e621"; }

/* line 213, Resources/Private/Frontend/sass/partials/_icon-font.scss */
footer .footernav__bmark-content--pdf:before {
  content: "\e623"; }

/* line 217, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.captcha__help .tx-srfreecap-pi2-cant-read:before {
  content: "\e624"; }

/* line 225, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.google-search__input-button:before {
  content: "\e626"; }

/* line 229, Resources/Private/Frontend/sass/partials/_icon-font.scss */
footer .footernav__bmark-content--share:before {
  content: "\e627"; }

/* line 237, Resources/Private/Frontend/sass/partials/_icon-font.scss */
footer .footernav__tweet:before, .share-me .shariff-button.twitter a:before {
  content: "\e629"; }

/* line 245, Resources/Private/Frontend/sass/partials/_icon-font.scss */

.captcha__help .tx-srfreecap-pi2-accessible-link:before, .audio-player .audioplayer-volume-button:before {
  content: "\e62b"; }

/* line 249, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.share-me .shariff-button.whatsapp a:before {
  content: "\e62c"; }

/* line 253, Resources/Private/Frontend/sass/partials/_icon-font.scss */
footer .footernav__youTube:before {
  content: "\e62d"; }

/* line 257, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.fancybox:before {
  content: "\e62e"; }

/* line 261, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.share-me .shariff-button.facebook a:before {
  content: "\e631"; }

/* line 265, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.audio-player .audioplayer-mute .audioplayer-volume-button:before {
  content: "\e632"; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-phone01:before,
.icon-after.icon-phone01:after,
.icon-only.icon-phone01:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-ukk_iconfont_emergency:before,
.icon-after.icon-ukk_iconfont_emergency:after,
.icon-only.icon-ukk_iconfont_emergency:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-heart-surgery01:before,
.icon-after.icon-heart-surgery01:after,
.icon-only.icon-heart-surgery01:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-bag:before,
.icon-after.icon-bag:after,
.icon-only.icon-bag:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-heart-surgery:before,
.icon-after.icon-heart-surgery:after,
.icon-only.icon-heart-surgery:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-herzthoraxchirurg:before,
.icon-after.icon-herzthoraxchirurg:after,
.icon-only.icon-herzthoraxchirurg:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-suitcase-23:before,
.icon-after.icon-suitcase-23:after,
.icon-only.icon-suitcase-23:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-vascular-surgery:before,
.icon-after.icon-vascular-surgery:after,
.icon-only.icon-vascular-surgery:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-arabic:before,
.icon-after.icon-arabic:after,
.icon-only.icon-arabic:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-russian:before,
.icon-after.icon-russian:after,
.icon-only.icon-russian:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-info:before,
.icon-after.icon-info:after,
.icon-only.icon-info:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-fachbereiche:before,
.icon-after.icon-fachbereiche:after,
.icon-only.icon-fachbereiche:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-clock:before,
.icon-after.icon-clock:after,
.icon-only.icon-clock:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-check:before,
.icon-after.icon-check:after,
.icon-only.icon-check:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-uniklinik:before,
.icon-after.icon-uniklinik:after,
.icon-only.icon-uniklinik:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-qualityreport:before,
.icon-after.icon-qualityreport:after,
.icon-only.icon-qualityreport:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-administration:before,
.icon-after.icon-administration:after,
.icon-only.icon-administration:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-institute:before,
.icon-after.icon-institute:after,
.icon-only.icon-institute:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-jpgfile:before,
.icon-after.icon-jpgfile:after,
.icon-only.icon-jpgfile:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-print:before,
.icon-after.icon-print:after,
.icon-only.icon-print:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-uk-koeln-home:before,
.icon-after.icon-uk-koeln-home:after,
.icon-only.icon-uk-koeln-home:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-quoteleft:before,
.icon-after.icon-quoteleft:after,
.icon-only.icon-quoteleft:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-quoteright:before,
.icon-after.icon-quoteright:after,
.icon-only.icon-quoteright:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-annualreport:before,
.icon-after.icon-annualreport:after,
.icon-only.icon-annualreport:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-arrowdown:before,
.icon-after.icon-arrowdown:after,
.icon-only.icon-arrowdown:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-arrowleft:before,
.icon-after.icon-arrowleft:after,
.icon-only.icon-arrowleft:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-arrowright:before,
.icon-after.icon-arrowright:after,
.icon-only.icon-arrowright:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-bookmark:before,
.icon-after.icon-bookmark:after,
.icon-only.icon-bookmark:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-calender:before,
.icon-after.icon-calender:after,
.icon-only.icon-calender:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-close:before,
.icon-after.icon-close:after,
.icon-only.icon-close:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-contact:before,
.icon-after.icon-contact:after,
.icon-only.icon-contact:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-delete:before,
.icon-after.icon-delete:after,
.icon-only.icon-delete:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-doctors:before,
.icon-after.icon-doctors:after,
.icon-only.icon-doctors:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-download:before,
.icon-after.icon-download:after,
.icon-only.icon-download:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-emergency:before,
.icon-after.icon-emergency:after,
.icon-only.icon-emergency:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-english:before,
.icon-after.icon-english:after,
.icon-only.icon-english:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-externallink:before,
.icon-after.icon-externallink:after,
.icon-only.icon-externallink:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-german:before,
.icon-after.icon-german:after,
.icon-only.icon-german:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-googleplus:before,
.icon-after.icon-googleplus:after,
.icon-only.icon-googleplus:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-images:before,
.icon-after.icon-images:after,
.icon-only.icon-images:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-international:before,
.icon-after.icon-international:after,
.icon-only.icon-international:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-less:before,
.icon-after.icon-less:after,
.icon-only.icon-less:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-location:before,
.icon-after.icon-location:after,
.icon-only.icon-location:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-mail:before,
.icon-after.icon-mail:after,
.icon-only.icon-mail:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-medicalfield:before,
.icon-after.icon-medicalfield:after,
.icon-only.icon-medicalfield:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-menu:before,
.icon-after.icon-menu:after,
.icon-only.icon-menu:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-minus:before,
.icon-after.icon-minus:after,
.icon-only.icon-minus:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-more:before,
.icon-after.icon-more:after,
.icon-only.icon-more:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-moresubnavi:before,
.icon-after.icon-moresubnavi:after,
.icon-only.icon-moresubnavi:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-mp3:before,
.icon-after.icon-mp3:after,
.icon-only.icon-mp3:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-newspaper:before,
.icon-after.icon-newspaper:after,
.icon-only.icon-newspaper:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-pause:before,
.icon-after.icon-pause:after,
.icon-only.icon-pause:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-pdf:before,
.icon-after.icon-pdf:after,
.icon-only.icon-pdf:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-phone:before,
.icon-after.icon-phone:after,
.icon-only.icon-phone:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-play:before,
.icon-after.icon-play:after,
.icon-only.icon-play:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-plus:before,
.icon-after.icon-plus:after,
.icon-only.icon-plus:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-press:before,
.icon-after.icon-press:after,
.icon-only.icon-press:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-pdffile:before,
.icon-after.icon-pdffile:after,
.icon-only.icon-pdffile:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-reload:before,
.icon-after.icon-reload:after,
.icon-only.icon-reload:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-route:before,
.icon-after.icon-route:after,
.icon-only.icon-route:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-search:before,
.icon-after.icon-search:after,
.icon-only.icon-search:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-share:before,
.icon-after.icon-share:after,
.icon-only.icon-share:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-sympton:before,
.icon-after.icon-sympton:after,
.icon-only.icon-sympton:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-twitter:before,
.icon-after.icon-twitter:after,
.icon-only.icon-twitter:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-videos:before,
.icon-after.icon-videos:after,
.icon-only.icon-videos:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-volume:before,
.icon-after.icon-volume:after,
.icon-only.icon-volume:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-whatsapp:before,
.icon-after.icon-whatsapp:after,
.icon-only.icon-whatsapp:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-youtube:before,
.icon-after.icon-youtube:after,
.icon-only.icon-youtube:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-zoomin:before,
.icon-after.icon-zoomin:after,
.icon-only.icon-zoomin:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-facebook:before,
.icon-after.icon-facebook:after,
.icon-only.icon-facebook:before {
  content: ""; }

/* line 348, Resources/Private/Frontend/sass/partials/_icon-font.scss */
.icon-before.icon-volumeoff:before,
.icon-after.icon-volumeoff:after,
.icon-only.icon-volumeoff:before {
  content: ""; }

/**
 * 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
   ========================================================================== */
/* line 18, Resources/Private/Frontend/sass/partials/_layout.scss */
* {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }
  @media print {
    /* line 18, Resources/Private/Frontend/sass/partials/_layout.scss */
    * {
      -webkit-filter: none;
      -moz-filter: none;
      -o-filter: none;
      -ms-filter: none;
      filter: none;
      text-shadow: none !important; } }

/* line 30, Resources/Private/Frontend/sass/partials/_layout.scss */
body {
  background: #f6f6f6;
  color: #565656;
  font-size: 100%;
  line-height: 1.4; }

@media screen and (min-width: 125em) {
  /* line 39, Resources/Private/Frontend/sass/partials/_layout.scss */
  .career main > .container--fullwidth:nth-child(1) {
    max-height: 931px; } }

@media screen and (min-width: 125em) {
  /* line 44, Resources/Private/Frontend/sass/partials/_layout.scss */
  .career main > .container--fullwidth:nth-child(1) .content-header {
    max-height: 931px; } }

/* line 53, Resources/Private/Frontend/sass/partials/_layout.scss */
main {
  position: relative;
  padding-bottom: 120px;
  z-index: 1;
  overflow-x: hidden; }
  @media screen and (min-width: 87.5em) {
    /* line 65, Resources/Private/Frontend/sass/partials/_layout.scss */
    main > .container--fullwidth:nth-child(1) {
      position: relative;
      z-index: 1;
      max-height: 753px;
      overflow: hidden; } }
  /* line 77, Resources/Private/Frontend/sass/partials/_layout.scss */
  main > .container--fullwidth:nth-child(1) > .tx-dce-pi1 {
    margin-bottom: 20px; }
    @media screen and (min-width: 62em) {
      /* line 77, Resources/Private/Frontend/sass/partials/_layout.scss */
      main > .container--fullwidth:nth-child(1) > .tx-dce-pi1 {
        border-bottom: 1px solid #fff; } }
  /* line 86, Resources/Private/Frontend/sass/partials/_layout.scss */
  main > .container--fullwidth:nth-child(1) .content-header .tx-dce-pi1 {
    border-bottom: 1px solid #fff; }
  @media screen and (max-width: 61.999em) {
    /* line 93, Resources/Private/Frontend/sass/partials/_layout.scss */
    main .col-l-pull-9 {
      display: none; } }
  @media print {
    /* line 101, Resources/Private/Frontend/sass/partials/_layout.scss */
    main > .container div[class="col-l-6"] {
      width: 100% !important; } }

/* left sidebar - col-set */
@media screen and (min-width: 81.75em) {
  /* line 111, Resources/Private/Frontend/sass/partials/_layout.scss */
  main .col-l-3.col-l-pull-9, main .nav__flyout li.col-l-pull-9, .nav__flyout main li.col-l-pull-9 {
    margin-left: -10px; }
  /* line 115, Resources/Private/Frontend/sass/partials/_layout.scss */
  main .col-l-9.col-l-push-3 {
    padding: 0; } }

/* ==========================================================================
  Content Elements
  ========================================================================== */
/* line 128, Resources/Private/Frontend/sass/partials/_layout.scss */
noscript {
  color: #fff;
  margin: 0.2em 0;
  background: #0f2d64;
  padding: 0.2em 0;
  text-align: center; }
  @media print {
    /* line 128, Resources/Private/Frontend/sass/partials/_layout.scss */
    noscript {
      display: none !important;
      visibility: hidden !important; } }
  /* line 140, Resources/Private/Frontend/sass/partials/_layout.scss */
  noscript p {
    margin: 0 auto;
    max-width: 1268;
    background: red; }
    @media print {
      /* line 140, Resources/Private/Frontend/sass/partials/_layout.scss */
      noscript p {
        display: none !important;
        visibility: hidden !important; } }

@media print {
  /* line 152, Resources/Private/Frontend/sass/partials/_layout.scss */
  .noscript-wrap {
    display: none !important;
    visibility: hidden !important; } }

/* line 160, Resources/Private/Frontend/sass/partials/_layout.scss */
.section {
  position: relative;
  margin-bottom: 32px;
  display: flow-root; }
  @media screen and (min-width: 62em) {
    /* line 160, Resources/Private/Frontend/sass/partials/_layout.scss */
    .section {
      margin-bottom: 64px; } }

/* line 170, Resources/Private/Frontend/sass/partials/_layout.scss */
img {
  height: auto;
  outline: 0;
  max-width: 100%; }
  @media print {
    /* line 170, Resources/Private/Frontend/sass/partials/_layout.scss */
    img {
      display: none; } }

/* line 180, Resources/Private/Frontend/sass/partials/_layout.scss */
hr {
  margin: 20px 0; }

/* line 185, Resources/Private/Frontend/sass/partials/_layout.scss */
ul {
  margin: 1rem 0 1.5rem 0;
  padding-left: 1.5rem; }

/* line 190, Resources/Private/Frontend/sass/partials/_layout.scss */
ol {
  margin: 1rem 0;
  list-style: none;
  padding: 0;
  counter-reset: list-counter; }
  /* line 196, Resources/Private/Frontend/sass/partials/_layout.scss */
  ol li {
    position: relative;
    padding-left: 1.5rem; }
    /* line 200, Resources/Private/Frontend/sass/partials/_layout.scss */
    ol li:before {
      content: counter(list-counter, decimal) ".";
      counter-increment: list-counter;
      left: 0;
      position: absolute;
      color: #0f2d64; }

/* line 212, Resources/Private/Frontend/sass/partials/_layout.scss */
ul li,
ol li {
  margin-bottom: .5rem; }

@media print {
  /* line 210, Resources/Private/Frontend/sass/partials/_layout.scss */
  ul,
  ol {
    page-break-inside: avoid; } }

/* line 225, Resources/Private/Frontend/sass/partials/_layout.scss */
abbr {
  background: #deff00;
  border: none !important;
  cursor: help; }

/* line 231, Resources/Private/Frontend/sass/partials/_layout.scss */
iframe {
  max-width: 100%; }

/* line 235, Resources/Private/Frontend/sass/partials/_layout.scss */
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  /* ratio 16x9 */
  height: 0;
  overflow: hidden;
  width: 100%;
  height: auto; }
  /* line 244, Resources/Private/Frontend/sass/partials/_layout.scss */
  .embed-container.ratio4x3 {
    padding-bottom: 75%; }

/* line 249, Resources/Private/Frontend/sass/partials/_layout.scss */
.embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/* line 258, Resources/Private/Frontend/sass/partials/_layout.scss */
main a {
  position: relative;
  text-decoration: underline;
  color: #0f2d64; }
  /* line 171, Resources/Private/Frontend/sass/partials/_mixins.scss */
  main a:hover {
    text-decoration: none; }

/* line 262, Resources/Private/Frontend/sass/partials/_layout.scss */
.header a[target="_blank"] {
  position: relative;
  margin-right: 1.3rem; }
  /* line 266, Resources/Private/Frontend/sass/partials/_layout.scss */
  .header a[target="_blank"]:after {
    font-size: 16px;
    font-size: 1rem;
    transition: bottom 0.2s;
    bottom: 2px;
    display: inline-block;
    position: relative;
    overflow: hidden; }
  /* line 279, Resources/Private/Frontend/sass/partials/_layout.scss */
  .header a[target="_blank"]:hover:after {
    bottom: 5px; }
  /* line 284, Resources/Private/Frontend/sass/partials/_layout.scss */
  .header a[target="_blank"]:visited {
    color: #b35d5d; }

/* line 289, Resources/Private/Frontend/sass/partials/_layout.scss */
main a[target="_blank"],
main a.pb-link {
  position: relative; }
  /* line 293, Resources/Private/Frontend/sass/partials/_layout.scss */
  main a[target="_blank"]:after,
  main a.pb-link:after {
    font-size: 22px;
    font-size: 1.375rem;
    transition: bottom 0.2s;
    bottom: 2px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    height: 20px; }
  /* line 310, Resources/Private/Frontend/sass/partials/_layout.scss */
  main a[target="_blank"]:hover:after,
  main a.pb-link:hover:after {
    bottom: 5px; }
  /* line 315, Resources/Private/Frontend/sass/partials/_layout.scss */
  main a[target="_blank"]:visited,
  main a.pb-link:visited {
    color: #b35d5d; }
    /* line 318, Resources/Private/Frontend/sass/partials/_layout.scss */
    main a[target="_blank"]:visited:after,
    main a.pb-link:visited:after {
      background: #b35d5d; }
  /* line 324, Resources/Private/Frontend/sass/partials/_layout.scss */
  main a[target="_blank"].nohint:after,
  main a.pb-link.nohint:after {
    display: none; }

/* line 330, Resources/Private/Frontend/sass/partials/_layout.scss */
a[href^="tel"],
a[href*="//www.google.de/maps/"] {
  text-decoration: none !important;
  margin-right: 0 !important; }
  /* line 335, Resources/Private/Frontend/sass/partials/_layout.scss */
  a[href^="tel"]:after,
  a[href*="//www.google.de/maps/"]:after {
    display: none !important; }

/* line 340, Resources/Private/Frontend/sass/partials/_layout.scss */
.box > p span.icon-only {
  font-size: 12px;
  font-size: 0.75rem; }

/* line 346, Resources/Private/Frontend/sass/partials/_layout.scss */
.nopipe::after {
  content: '' !important; }

/*.box > article.teaser--contact {
	height: 100px !important;
}*/
/* ==========================================================================
   media queries -
   for viewport detection only!
   ========================================================================== */
/* Featurephones and Smartphones (portrait) */
@media screen and (min-width: 20em) {
  /* line 361, Resources/Private/Frontend/sass/partials/_layout.scss */
  body:after {
    content: 'featurephone';
    position: absolute;
    top: -100em;
    left: -100em;
    width: 1px;
    height: 1px;
    overflow: hidden; } }

/* Smartphones (landscape)  */
@media screen and (min-width: 30em) {
  /* line 374, Resources/Private/Frontend/sass/partials/_layout.scss */
  body:after {
    content: 'smartphone';
    position: absolute;
    top: -100em;
    left: -100em;
    width: 1px;
    height: 1px;
    overflow: hidden; } }

/* Tablet (portrait) */
@media screen and (min-width: 48em) {
  /* line 387, Resources/Private/Frontend/sass/partials/_layout.scss */
  body:after {
    content: 'tablet';
    position: absolute;
    top: -100em;
    left: -100em;
    width: 1px;
    height: 1px;
    overflow: hidden; } }

/* Desktop */
@media screen and (min-width: 62em) {
  /* line 400, Resources/Private/Frontend/sass/partials/_layout.scss */
  body:after {
    content: 'desktop';
    position: absolute;
    top: -100em;
    left: -100em;
    width: 1px;
    height: 1px;
    overflow: hidden; } }

/* Full HD and Retina */
@media screen and (min-width: 79.25em) {
  /* line 413, Resources/Private/Frontend/sass/partials/_layout.scss */
  body:after {
    content: 'retina';
    position: absolute;
    top: -100em;
    left: -100em;
    width: 1px;
    height: 1px;
    overflow: hidden; } }

/* ==========================================================================
   Print specific
   ========================================================================== */
@media print {
  @page {
    margin: 1.5cm 1cm 2cm; }
  /* line 432, Resources/Private/Frontend/sass/partials/_layout.scss */
  a[href]:after {
    color: #0f2d64 !important; }
  /* duc: important necessary since widget-print-css.js would otherwise
	prepend baseUrl also in front of the following links */
  /* line 438, Resources/Private/Frontend/sass/partials/_layout.scss */
  a[href^="#"]:after,
  a[href^="javascript:"]:after,
  a[href^="mailto"]:after {
    content: "" !important; } }

/**
 * brandung clinics/_layout.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/**
 * brandung grid.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Grid
   ========================================================================== */
/* line 19, Resources/Private/Frontend/sass/partials/_grid.scss */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
  min-width: 20em;
  max-width: 79.25em; }
  /* line 125, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .container:before, .container:after {
    content: " ";
    display: table; }
  /* line 130, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .container:after {
    clear: both; }
  @media screen and (min-width: 2000px) {
    /* line 19, Resources/Private/Frontend/sass/partials/_grid.scss */
    .container {
      max-width: none;
      margin: 0 12%; } }

/* line 55, Resources/Private/Frontend/sass/partials/_grid.scss */
.row, .color-pattern {
  margin-left: -10px;
  margin-right: -10px; }
  /* line 125, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .row:before, .color-pattern:before, .row:after, .color-pattern:after {
    content: " ";
    display: table; }
  /* line 130, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .row:after, .color-pattern:after {
    clear: both; }

/* line 251, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-1, .infobox span.info-icon, .col-s-1, .col-m-1, .col-l-1, .col-xl-1, .col-xs-2, .col-s-2, .col-m-2, .col-l-2, footer .footernav__link, footer .footernav__bookmark, footer .footermeta__fc-cologne, footer .footermeta__logo, .col-xl-2, .col-xs-3, .col-s-3, .col-m-3, .col-l-3, .nav__flyout li, .col-xl-3, .col-xs-4, .col-s-4, .col-m-4, footer .footernav__link, .col-l-4, footer .footermeta__link, footer .footermeta__association, .infektiologie .footermeta__association, .corp .footermeta__association, .hcc .footermeta__association, .adopt .footermeta__association,
.cardia-trial-theme .footermeta__association, .consortium-fbuek .footermeta__association, .tab-accordion__slider, .col-xl-4, .col-xs-5, .col-s-5, .col-m-5, .col-l-5, .col-xl-5, .col-xs-6, .col-s-6, .color-pattern li, .col-m-6, .accordion__slider, .col-l-6, .clinics .footermeta__link, .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, footer .footernav__bookmark, .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, .infobox p, .col-s-11, .col-m-11, .col-l-11, .col-xl-11, .col-xs-12, .col-s-12, footer .footernav__anker__active, .col-m-12, footer .footermeta__link, footer .footermeta__association, footer .footermeta__fc-cologne, footer .footermeta__logo, .infektiologie .footermeta__association, .corp .footermeta__association, .hcc .footermeta__association, .adopt .footermeta__association,
.cardia-trial-theme .footermeta__association, .consortium-fbuek .footermeta__association, .col-l-12, .col-xl-12 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px; }

/* line 266, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-1, .infobox span.info-icon, .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, .infobox p, .col-xs-12 {
  float: left; }

/* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-1, .infobox span.info-icon {
  width: 8.3333333333%; }

/* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-2 {
  width: 16.6666666667%; }

/* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-3 {
  width: 25%; }

/* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-4 {
  width: 33.3333333333%; }

/* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-5 {
  width: 41.6666666667%; }

/* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-6 {
  width: 50%; }

/* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-7 {
  width: 58.3333333333%; }

/* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-8 {
  width: 66.6666666667%; }

/* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-9 {
  width: 75%; }

/* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-10 {
  width: 83.3333333333%; }

/* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-11, .infobox p {
  width: 91.6666666667%; }

/* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-12 {
  width: 100%; }

/* line 300, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-pull-0 {
  right: auto; }

/* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-pull-1 {
  right: 8.3333333333%; }

/* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-pull-2 {
  right: 16.6666666667%; }

/* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-pull-3 {
  right: 25%; }

/* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-pull-4 {
  right: 33.3333333333%; }

/* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-pull-5 {
  right: 41.6666666667%; }

/* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-pull-6 {
  right: 50%; }

/* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-pull-7 {
  right: 58.3333333333%; }

/* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-pull-8 {
  right: 66.6666666667%; }

/* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-pull-9 {
  right: 75%; }

/* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-pull-10 {
  right: 83.3333333333%; }

/* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-pull-11 {
  right: 91.6666666667%; }

/* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-pull-12 {
  right: 100%; }

/* line 290, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-push-0 {
  left: auto; }

/* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-push-1 {
  left: 8.3333333333%; }

/* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-push-2 {
  left: 16.6666666667%; }

/* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-push-3 {
  left: 25%; }

/* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-push-4 {
  left: 33.3333333333%; }

/* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-push-5 {
  left: 41.6666666667%; }

/* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-push-6 {
  left: 50%; }

/* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-push-7 {
  left: 58.3333333333%; }

/* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-push-8 {
  left: 66.6666666667%; }

/* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-push-9 {
  left: 75%; }

/* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-push-10 {
  left: 83.3333333333%; }

/* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-push-11 {
  left: 91.6666666667%; }

/* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-push-12 {
  left: 100%; }

/* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-offset-0 {
  margin-left: 0%; }

/* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-offset-1 {
  margin-left: 8.3333333333%; }

/* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-offset-2 {
  margin-left: 16.6666666667%; }

/* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-offset-3 {
  margin-left: 25%; }

/* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-offset-4 {
  margin-left: 33.3333333333%; }

/* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-offset-5 {
  margin-left: 41.6666666667%; }

/* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-offset-6 {
  margin-left: 50%; }

/* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-offset-7 {
  margin-left: 58.3333333333%; }

/* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-offset-8 {
  margin-left: 66.6666666667%; }

/* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-offset-9 {
  margin-left: 75%; }

/* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-offset-10 {
  margin-left: 83.3333333333%; }

/* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-offset-11 {
  margin-left: 91.6666666667%; }

/* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-offset-12 {
  margin-left: 100%; }

@media screen and (min-width: 30em) {
  /* line 266, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-1, .col-s-2, .col-s-3, .col-s-4, .col-s-5, .col-s-6, .color-pattern li, .col-s-7, .col-s-8, .col-s-9, .col-s-10, .col-s-11, .col-s-12, footer .footernav__anker__active {
    float: left; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-1 {
    width: 8.3333333333%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-2 {
    width: 16.6666666667%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-3 {
    width: 25%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-4 {
    width: 33.3333333333%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-5 {
    width: 41.6666666667%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-6, .color-pattern li {
    width: 50%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-7 {
    width: 58.3333333333%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-8 {
    width: 66.6666666667%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-9 {
    width: 75%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-10 {
    width: 83.3333333333%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-11 {
    width: 91.6666666667%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-12, footer .footernav__anker__active {
    width: 100%; }
  /* line 300, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-pull-0 {
    right: auto; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-pull-1 {
    right: 8.3333333333%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-pull-2 {
    right: 16.6666666667%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-pull-3 {
    right: 25%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-pull-4 {
    right: 33.3333333333%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-pull-5 {
    right: 41.6666666667%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-pull-6 {
    right: 50%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-pull-7 {
    right: 58.3333333333%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-pull-8 {
    right: 66.6666666667%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-pull-9 {
    right: 75%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-pull-10 {
    right: 83.3333333333%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-pull-11 {
    right: 91.6666666667%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-pull-12 {
    right: 100%; }
  /* line 290, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-push-0 {
    left: auto; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-push-1 {
    left: 8.3333333333%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-push-2 {
    left: 16.6666666667%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-push-3 {
    left: 25%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-push-4 {
    left: 33.3333333333%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-push-5 {
    left: 41.6666666667%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-push-6 {
    left: 50%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-push-7 {
    left: 58.3333333333%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-push-8 {
    left: 66.6666666667%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-push-9 {
    left: 75%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-push-10 {
    left: 83.3333333333%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-push-11 {
    left: 91.6666666667%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-push-12 {
    left: 100%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-offset-0 {
    margin-left: 0%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-offset-1 {
    margin-left: 8.3333333333%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-offset-2 {
    margin-left: 16.6666666667%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-offset-3 {
    margin-left: 25%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-offset-4 {
    margin-left: 33.3333333333%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-offset-5 {
    margin-left: 41.6666666667%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-offset-6 {
    margin-left: 50%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-offset-7 {
    margin-left: 58.3333333333%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-offset-8 {
    margin-left: 66.6666666667%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-offset-9 {
    margin-left: 75%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-offset-10 {
    margin-left: 83.3333333333%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-offset-11 {
    margin-left: 91.6666666667%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-offset-12 {
    margin-left: 100%; } }

@media screen and (min-width: 48em) {
  /* line 266, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-1, .col-m-2, .col-m-3, .col-m-4, footer .footernav__link, .col-m-5, .col-m-6, .accordion__slider, .col-m-7, .col-m-8, footer .footernav__bookmark, .col-m-9, .col-m-10, .col-m-11, .col-m-12, footer .footermeta__link, footer .footermeta__association, footer .footermeta__fc-cologne, footer .footermeta__logo, .infektiologie .footermeta__association, .corp .footermeta__association, .hcc .footermeta__association, .adopt .footermeta__association,
  .cardia-trial-theme .footermeta__association, .consortium-fbuek .footermeta__association {
    float: left; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-1 {
    width: 8.3333333333%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-2 {
    width: 16.6666666667%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-3 {
    width: 25%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-4, footer .footernav__link {
    width: 33.3333333333%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-5 {
    width: 41.6666666667%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-6, .accordion__slider {
    width: 50%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-7 {
    width: 58.3333333333%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-8, footer .footernav__bookmark {
    width: 66.6666666667%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-9 {
    width: 75%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-10 {
    width: 83.3333333333%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-11 {
    width: 91.6666666667%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-12, footer .footermeta__link, footer .footermeta__association, footer .footermeta__fc-cologne, footer .footermeta__logo, .infektiologie .footermeta__association, .corp .footermeta__association, .hcc .footermeta__association, .adopt .footermeta__association,
  .cardia-trial-theme .footermeta__association, .consortium-fbuek .footermeta__association {
    width: 100%; }
  /* line 300, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-pull-0 {
    right: auto; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-pull-1 {
    right: 8.3333333333%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-pull-2 {
    right: 16.6666666667%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-pull-3 {
    right: 25%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-pull-4 {
    right: 33.3333333333%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-pull-5 {
    right: 41.6666666667%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-pull-6 {
    right: 50%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-pull-7 {
    right: 58.3333333333%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-pull-8 {
    right: 66.6666666667%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-pull-9 {
    right: 75%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-pull-10 {
    right: 83.3333333333%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-pull-11 {
    right: 91.6666666667%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-pull-12 {
    right: 100%; }
  /* line 290, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-push-0 {
    left: auto; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-push-1 {
    left: 8.3333333333%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-push-2 {
    left: 16.6666666667%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-push-3 {
    left: 25%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-push-4 {
    left: 33.3333333333%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-push-5 {
    left: 41.6666666667%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-push-6 {
    left: 50%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-push-7 {
    left: 58.3333333333%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-push-8 {
    left: 66.6666666667%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-push-9 {
    left: 75%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-push-10 {
    left: 83.3333333333%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-push-11 {
    left: 91.6666666667%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-push-12 {
    left: 100%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-offset-0 {
    margin-left: 0%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-offset-1 {
    margin-left: 8.3333333333%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-offset-2 {
    margin-left: 16.6666666667%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-offset-3 {
    margin-left: 25%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-offset-4 {
    margin-left: 33.3333333333%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-offset-5 {
    margin-left: 41.6666666667%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-offset-6 {
    margin-left: 50%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-offset-7 {
    margin-left: 58.3333333333%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-offset-8 {
    margin-left: 66.6666666667%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-offset-9 {
    margin-left: 75%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-offset-10 {
    margin-left: 83.3333333333%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-offset-11 {
    margin-left: 91.6666666667%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-offset-12 {
    margin-left: 100%; } }

@media screen and (min-width: 62em) {
  /* line 266, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-1, .col-l-2, footer .footernav__link, footer .footernav__bookmark, footer .footermeta__fc-cologne, footer .footermeta__logo, .col-l-3, .nav__flyout li, .col-l-4, footer .footermeta__link, footer .footermeta__association, .infektiologie .footermeta__association, .corp .footermeta__association, .hcc .footermeta__association, .adopt .footermeta__association,
  .cardia-trial-theme .footermeta__association, .consortium-fbuek .footermeta__association, .tab-accordion__slider, .col-l-5, .col-l-6, .clinics .footermeta__link, .col-l-7, .col-l-8, .col-l-9, .col-l-10, .col-l-11, .col-l-12 {
    float: left; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-1 {
    width: 8.3333333333%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-2, footer .footernav__link, footer .footernav__bookmark, footer .footermeta__fc-cologne, footer .footermeta__logo {
    width: 16.6666666667%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-3, .nav__flyout li {
    width: 25%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-4, footer .footermeta__link, footer .footermeta__association, .infektiologie .footermeta__association, .corp .footermeta__association, .hcc .footermeta__association, .adopt .footermeta__association,
  .cardia-trial-theme .footermeta__association, .consortium-fbuek .footermeta__association, .tab-accordion__slider {
    width: 33.3333333333%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-5 {
    width: 41.6666666667%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-6, .clinics .footermeta__link {
    width: 50%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-7 {
    width: 58.3333333333%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-8 {
    width: 66.6666666667%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-9 {
    width: 75%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-10 {
    width: 83.3333333333%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-11 {
    width: 91.6666666667%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-12 {
    width: 100%; }
  /* line 300, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-pull-0 {
    right: auto; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-pull-1 {
    right: 8.3333333333%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-pull-2 {
    right: 16.6666666667%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-pull-3 {
    right: 25%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-pull-4 {
    right: 33.3333333333%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-pull-5 {
    right: 41.6666666667%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-pull-6 {
    right: 50%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-pull-7 {
    right: 58.3333333333%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-pull-8 {
    right: 66.6666666667%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-pull-9 {
    right: 75%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-pull-10 {
    right: 83.3333333333%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-pull-11 {
    right: 91.6666666667%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-pull-12 {
    right: 100%; }
  /* line 290, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-push-0 {
    left: auto; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-push-1 {
    left: 8.3333333333%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-push-2 {
    left: 16.6666666667%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-push-3 {
    left: 25%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-push-4 {
    left: 33.3333333333%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-push-5 {
    left: 41.6666666667%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-push-6 {
    left: 50%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-push-7 {
    left: 58.3333333333%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-push-8 {
    left: 66.6666666667%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-push-9 {
    left: 75%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-push-10 {
    left: 83.3333333333%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-push-11 {
    left: 91.6666666667%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-push-12 {
    left: 100%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-offset-0 {
    margin-left: 0%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-offset-1 {
    margin-left: 8.3333333333%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-offset-2 {
    margin-left: 16.6666666667%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-offset-3 {
    margin-left: 25%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-offset-4 {
    margin-left: 33.3333333333%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-offset-5 {
    margin-left: 41.6666666667%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-offset-6 {
    margin-left: 50%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-offset-7 {
    margin-left: 58.3333333333%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-offset-8 {
    margin-left: 66.6666666667%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-offset-9 {
    margin-left: 75%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-offset-10 {
    margin-left: 83.3333333333%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-offset-11 {
    margin-left: 91.6666666667%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-offset-12 {
    margin-left: 100%; } }

@media screen and (min-width: 79.25em) {
  /* line 266, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
    float: left; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-1 {
    width: 8.3333333333%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-2 {
    width: 16.6666666667%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-3 {
    width: 25%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-4 {
    width: 33.3333333333%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-5 {
    width: 41.6666666667%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-6 {
    width: 50%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-7 {
    width: 58.3333333333%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-8 {
    width: 66.6666666667%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-9 {
    width: 75%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-10 {
    width: 83.3333333333%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-11 {
    width: 91.6666666667%; }
  /* line 280, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-12 {
    width: 100%; }
  /* line 300, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-pull-0 {
    right: auto; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-pull-1 {
    right: 8.3333333333%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-pull-2 {
    right: 16.6666666667%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-pull-3 {
    right: 25%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-pull-4 {
    right: 33.3333333333%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-pull-5 {
    right: 41.6666666667%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-pull-6 {
    right: 50%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-pull-7 {
    right: 58.3333333333%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-pull-8 {
    right: 66.6666666667%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-pull-9 {
    right: 75%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-pull-10 {
    right: 83.3333333333%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-pull-11 {
    right: 91.6666666667%; }
  /* line 295, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-pull-12 {
    right: 100%; }
  /* line 290, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-push-0 {
    left: auto; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-push-1 {
    left: 8.3333333333%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-push-2 {
    left: 16.6666666667%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-push-3 {
    left: 25%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-push-4 {
    left: 33.3333333333%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-push-5 {
    left: 41.6666666667%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-push-6 {
    left: 50%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-push-7 {
    left: 58.3333333333%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-push-8 {
    left: 66.6666666667%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-push-9 {
    left: 75%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-push-10 {
    left: 83.3333333333%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-push-11 {
    left: 91.6666666667%; }
  /* line 285, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-push-12 {
    left: 100%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-offset-0 {
    margin-left: 0%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-offset-1 {
    margin-left: 8.3333333333%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-offset-2 {
    margin-left: 16.6666666667%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-offset-3 {
    margin-left: 25%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-offset-4 {
    margin-left: 33.3333333333%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-offset-5 {
    margin-left: 41.6666666667%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-offset-6 {
    margin-left: 50%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-offset-7 {
    margin-left: 58.3333333333%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-offset-8 {
    margin-left: 66.6666666667%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-offset-9 {
    margin-left: 75%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-offset-10 {
    margin-left: 83.3333333333%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-offset-11 {
    margin-left: 91.6666666667%; }
  /* line 305, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-offset-12 {
    margin-left: 100%; } }

/**
 * brandung typo.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-03-14
 * MIT License (MIT)
 */
/* ==========================================================================
   Webfonts
   ========================================================================== */
/*
 * Google Webfont
 *
 * 'Merriweather Sans'
 * Normal: 400
 * Light: 300
 * Bold: 700
 * Extra-Bold: 800
 *
 * 'Merriweather'
 * Normal: 400
 * Italic: 400 italic
 */
@font-face {
  font-family: 'Merriweather';
  font-weight: 400;
  font-style: normal;
  src: url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-regular/Merriweather-regular.eot");
  src: url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-regular/Merriweather-regular.eot?#iefix") format("embedded-opentype"), local("Merriweather"), local("Merriweather-regular"), url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-regular/Merriweather-regular.woff2") format("woff2"), url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-regular/Merriweather-regular.woff") format("woff"), url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-regular/Merriweather-regular.ttf") format("truetype"), url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-regular/Merriweather-regular.svg#Merriweather") format("svg"); }

@font-face {
  font-family: 'Merriweather';
  font-weight: 400;
  font-style: italic;
  src: url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-italic/Merriweather-italic.eot");
  src: url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-italic/Merriweather-italic.eot?#iefix") format("embedded-opentype"), local("Merriweather Italic"), local("Merriweather-italic"), url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-italic/Merriweather-italic.woff2") format("woff2"), url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-italic/Merriweather-italic.woff") format("woff"), url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-italic/Merriweather-italic.ttf") format("truetype"), url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-italic/Merriweather-italic.svg#Merriweather") format("svg"); }

@font-face {
  font-family: 'Merriweather Sans';
  font-weight: 300;
  font-style: normal;
  src: url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-Sans-300/Merriweather-Sans-300.eot");
  src: url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-Sans-300/Merriweather-Sans-300.eot?#iefix") format("embedded-opentype"), local("Merriweather Sans Light"), local("Merriweather-Sans-300"), url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-Sans-300/Merriweather-Sans-300.woff2") format("woff2"), url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-Sans-300/Merriweather-Sans-300.woff") format("woff"), url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-Sans-300/Merriweather-Sans-300.ttf") format("truetype"), url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-Sans-300/Merriweather-Sans-300.svg#MerriweatherSans") format("svg"); }

@font-face {
  font-family: 'Merriweather Sans';
  font-weight: 400;
  font-style: normal;
  src: url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-Sans-regular/Merriweather-Sans-regular.eot");
  src: url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-Sans-regular/Merriweather-Sans-regular.eot?#iefix") format("embedded-opentype"), local("Merriweather Sans Regular"), local("Merriweather-Sans-regular"), url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-Sans-regular/Merriweather-Sans-regular.woff2") format("woff2"), url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-Sans-regular/Merriweather-Sans-regular.woff") format("woff"), url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-Sans-regular/Merriweather-Sans-regular.ttf") format("truetype"), url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-Sans-regular/Merriweather-Sans-regular.svg#MerriweatherSans") format("svg"); }

@font-face {
  font-family: 'Merriweather Sans';
  font-weight: 700;
  font-style: normal;
  src: url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-Sans-700/Merriweather-Sans-700.eot");
  src: url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-Sans-700/Merriweather-Sans-700.eot?#iefix") format("embedded-opentype"), local("Merriweather Sans Bold"), local("Merriweather-Sans-700"), url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-Sans-700/Merriweather-Sans-700.woff2") format("woff2"), url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-Sans-700/Merriweather-Sans-700.woff") format("woff"), url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-Sans-700/Merriweather-Sans-700.ttf") format("truetype"), url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-Sans-700/Merriweather-Sans-700.svg#MerriweatherSans") format("svg"); }

@font-face {
  font-family: 'Merriweather Sans';
  font-weight: 800;
  font-style: normal;
  src: url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-Sans-800/Merriweather-Sans-800.eot");
  src: url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-Sans-800/Merriweather-Sans-800.eot?#iefix") format("embedded-opentype"), local("Merriweather Sans ExtraBold"), local("Merriweather-Sans-800"), url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-Sans-800/Merriweather-Sans-800.woff2") format("woff2"), url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-Sans-800/Merriweather-Sans-800.woff") format("woff"), url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-Sans-800/Merriweather-Sans-800.ttf") format("truetype"), url("/typo3conf/ext/bra_projectfiles_ukk/Resources/Public/fonts/Merriweather-Sans-800/Merriweather-Sans-800.svg#MerriweatherSans") format("svg"); }

/* line 118, Resources/Private/Frontend/sass/partials/_typo.scss */
body, h1,
.h1, .search__topic strong, .category__headline, .application__gretting, h2, .sub-navigation__header, .teaser__header,
.h2, footer .footernav__tweet, footer .footernav__youTube, h3,
.h3, .tab-content__select, .application__headline, h4,
.h4, footer .footernav__anker, h5,
.h5, footer .footernav__headline, footer .footernav__link, footer .footernav__bookmark, footer .footernav__bmark-content, footer .footermeta, footer .footermeta__link, footer .footermeta__copyright, .sub-navigation__headline-sub, .sub-navigation__list, .sub-service-navigation__item, blockquote footer, .mediathek__headline-icon li, .news-list__date, .dp-calendar table.jCalendar th, .dp-calendar table.jCalendar td, h6,
.h6, .breadcrumb, .mediathek__container, .teaser-video__container, figcaption,
.figure-caption, input,
select,
textarea, .custom-select, .selectboxit-container *, .slick-slider__pagination, .overlay__title {
  font-family: 'Merriweather Sans', sans-serif;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* line 126, Resources/Private/Frontend/sass/partials/_typo.scss */
blockquote {
  font-family: 'Merriweather', serif;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* ==========================================================================
   font-elements
   ========================================================================== */
/* line 138, Resources/Private/Frontend/sass/partials/_typo.scss */
body {
  font-weight: 300; }

/* line 143, Resources/Private/Frontend/sass/partials/_typo.scss */
h1,
.h1,
.search__topic strong,
.category__headline,
.application__gretting {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #0f2d64; }
  @media print {
    /* line 143, Resources/Private/Frontend/sass/partials/_typo.scss */
    h1,
    .h1,
    .search__topic strong,
    .category__headline,
    .application__gretting {
      color: #0f2d64 !important; } }

/* line 155, Resources/Private/Frontend/sass/partials/_typo.scss */

.h1,
.search__topic strong,
.category__headline,
.application__gretting {
  font-size: 24px;
  font-size: 1.5rem;
  margin: .67em 0; }

/* line 160, Resources/Private/Frontend/sass/partials/_typo.scss */

h2,
.sub-navigation__header,
.teaser__header,
.h2,
footer .footernav__tweet,
footer .footernav__youTube {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  color: #0f2d64; }
  @media print {
    /* line 160, Resources/Private/Frontend/sass/partials/_typo.scss */
    
    h2,
    .sub-navigation__header,
    .teaser__header,
    .h2,
    footer .footernav__tweet,
    footer .footernav__youTube {
      color: #0f2d64 !important; } }

/* line 172, Resources/Private/Frontend/sass/partials/_typo.scss */

.h2,
footer .footernav__tweet,
footer .footernav__youTube {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5em; }

/* line 178, Resources/Private/Frontend/sass/partials/_typo.scss */
h3,
.h3,
.tab-content__select,
.application__headline {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #0f2d64; }
  @media print {
    /* line 178, Resources/Private/Frontend/sass/partials/_typo.scss */
    h3,
    .h3,
    .tab-content__select,
    .application__headline {
      color: #0f2d64 !important; } }

/* line 190, Resources/Private/Frontend/sass/partials/_typo.scss */
h4,
.h4,
footer .footernav__anker {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #0f2d64; }
  @media print {
    /* line 190, Resources/Private/Frontend/sass/partials/_typo.scss */
    h4,
    .h4,
    footer .footernav__anker {
      color: #0f2d64 !important; } }

/* line 203, Resources/Private/Frontend/sass/partials/_typo.scss */
h5,
.h5,
footer .footernav__headline,
footer .footernav__link,
footer .footernav__bookmark,
footer .footernav__bmark-content,
footer .footermeta,
footer .footermeta__link,
footer .footermeta__copyright,
.sub-navigation__headline-sub,
.sub-navigation__list,
.sub-service-navigation__item,
blockquote footer,
.mediathek__headline-icon li,
.news-list__date,
.dp-calendar table.jCalendar th,
.dp-calendar table.jCalendar td {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #565656; }

/* line 211, Resources/Private/Frontend/sass/partials/_typo.scss */
h6,
.h6,
.breadcrumb,
.mediathek__container,
.teaser-video__container {
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 400;
  color: #565656; }

/* line 219, Resources/Private/Frontend/sass/partials/_typo.scss */
.subtext {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: #565656; }

/* line 225, Resources/Private/Frontend/sass/partials/_typo.scss */
.parent-sub-navigation, .sub-navigation__headline {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #565656; }

/* line 231, Resources/Private/Frontend/sass/partials/_typo.scss */
.sub-sub-navigation, .sub-navigation__sub-item a {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  color: #565656; }

/* line 237, Resources/Private/Frontend/sass/partials/_typo.scss */
figcaption,
.figure-caption {
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 300;
  color: #565656; }

/**
 * brandung helpers.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-03-14
 * MIT License (MIT)
 */
/* ==========================================================================
   Helper classes
   ========================================================================== */
/* line 16, Resources/Private/Frontend/sass/partials/_helpers.scss */
.clearfix, main:after, hr, .btn-set:after, .header:after, footer:after, .nav__list:after, .mod-form label:after, .mod-form__list li:after, .mod-form .mod-form__fields:after, .mod-form .mod-form__input-date-wrapper:after, .overlay__title:after, .application__upload-wrapper:after,
.service-navigation:after,
.clone .service-navigation__flyout .clone:after,
.service-navigation__flyout p:after,
.nav__flyout .clone:after,
fieldset:after,
label:after,
.btn-set:after,
.box:after,
.selectboxit-container .custom-select:after,
blockquote:after,
.infobox:after,
.breadcrumb:after,
.accordion__content:after,
.mediathek__content:after,
.mediathek__download:after,
.downloadbar:after,
.contact-list dd:after,
.contact-list:after {
  display: block;
  content: ".";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden; }

/* line 27, Resources/Private/Frontend/sass/partials/_helpers.scss */
.unstyled, footer .footernav ul, footer .footernav__content ul, footer .footernav__bookmark ul, footer .footermeta__link ul, .nav ul, .sub-navigation ul, .sub-service-navigation ul, .mod-form__list, .breadcrumb ul, .list-icon, .list-icon ul > li, .list-icon ul > li > ul > li, .mediathek__headline-icon, .news-list li, .pagination ul, .events-box ul, .date ul, .share-me ul, .tags, .tags--more,
li[class*=icon],
.color-pattern,
.service-navigation__list,
.tab-content__headline,
.google-search__headline-tabs {
  margin: 0;
  padding: 0;
  list-style: none; }

/* line 34, Resources/Private/Frontend/sass/partials/_helpers.scss */
.left {
  display: inline;
  float: left; }

/* line 39, Resources/Private/Frontend/sass/partials/_helpers.scss */
.right {
  display: inline;
  float: right; }

/* line 44, Resources/Private/Frontend/sass/partials/_helpers.scss */
.center {
  display: block;
  margin: 0 auto;
  text-align: center; }

/* line 50, Resources/Private/Frontend/sass/partials/_helpers.scss */
.position-center {
  display: block;
  margin: 0 auto; }

/* line 55, Resources/Private/Frontend/sass/partials/_helpers.scss */
.clear {
  clear: both; }

/* line 59, Resources/Private/Frontend/sass/partials/_helpers.scss */
.text-right {
  text-align: right; }

/* line 63, Resources/Private/Frontend/sass/partials/_helpers.scss */
.text-left, footer .footernav__anker, footer .footernav__bmark-content, footer .footermeta__copyright {
  text-align: left; }

/* line 67, Resources/Private/Frontend/sass/partials/_helpers.scss */
.text-center {
  text-align: center; }

/* line 71, Resources/Private/Frontend/sass/partials/_helpers.scss */
.text-bold {
  font-weight: 700; }

/* line 75, Resources/Private/Frontend/sass/partials/_helpers.scss */
.text-normal {
  font-weight: 400 !important; }

/* line 79, Resources/Private/Frontend/sass/partials/_helpers.scss */
.ci-color {
  color: #0f2d64 !important; }

/*No-padding-Horizontal*/
@media screen and (max-width: 61.999em) {
  /* line 84, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .no-padding-H {
    padding: 0; } }

@media screen and (min-width: 62em) {
  /* line 84, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .no-padding-H {
    padding: 0 !important; } }

/* line 100, Resources/Private/Frontend/sass/partials/_helpers.scss */
.no-padding-h-right, footer .footernav__social {
  padding-right: 0; }
  @media screen and (max-width: 47.999em) {
    /* line 100, Resources/Private/Frontend/sass/partials/_helpers.scss */
    .no-padding-h-right, footer .footernav__social {
      padding: 10px; } }

/* line 110, Resources/Private/Frontend/sass/partials/_helpers.scss */
.no-padding-h-left {
  padding-left: 0; }
  @media screen and (max-width: 47.999em) {
    /* line 110, Resources/Private/Frontend/sass/partials/_helpers.scss */
    .no-padding-h-left {
      padding: 10px; } }

/* line 119, Resources/Private/Frontend/sass/partials/_helpers.scss */
.font-big {
  font-size: 24px;
  font-size: 1.5rem; }

/* line 123, Resources/Private/Frontend/sass/partials/_helpers.scss */
.font-middle {
  font-size: 18px;
  font-size: 1.125rem; }

/* line 127, Resources/Private/Frontend/sass/partials/_helpers.scss */
.no-margin-top {
  margin-top: 0; }

@media screen and (min-width: 48em) {
  /* line 131, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .row-magrin-top {
    margin-top: 40px; } }

/* line 141, Resources/Private/Frontend/sass/partials/_helpers.scss */
.margin-top {
  margin-top: 20px !important; }
  @media screen and (min-width: 48em) {
    /* line 141, Resources/Private/Frontend/sass/partials/_helpers.scss */
    .margin-top {
      margin-top: 60px !important; } }

@media screen and (min-width: 48em) {
  /* line 149, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .top-margin-desktop {
    margin-top: 40px; } }

@media screen and (min-width: 48em) {
  /* line 155, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .row-margin-bottom {
    margin-bottom: 40px; } }

/* line 163, Resources/Private/Frontend/sass/partials/_helpers.scss */
.util-reset-padding {
  padding: 0 !important; }
  /* line 166, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-reset-padding-top {
    padding-top: 0 !important; }
  /* line 170, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-reset-padding-right {
    padding-right: 0 !important; }
  /* line 174, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-reset-padding-bottom {
    padding-bottom: 0 !important; }
  /* line 178, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-reset-padding-left {
    padding-left: 0 !important; }
  /* line 182, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-reset-padding-x {
    padding-left: 0 !important;
    padding-right: 0 !important; }
  /* line 187, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-reset-padding-y {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }

/* line 193, Resources/Private/Frontend/sass/partials/_helpers.scss */
.util-add-padding {
  padding: 10px !important; }
  /* line 196, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-add-padding-full {
    padding: 20px !important; }
  /* line 200, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-add-padding-double {
    padding: 40px !important; }
  /* line 204, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-add-padding-top {
    padding-top: 10px !important; }
    /* line 207, Resources/Private/Frontend/sass/partials/_helpers.scss */
    .util-add-padding-top-full {
      padding-top: 20px !important; }
    /* line 211, Resources/Private/Frontend/sass/partials/_helpers.scss */
    .util-add-padding-top-double {
      padding-top: 40px !important; }
  /* line 216, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-add-padding-right {
    padding-right: 10px !important; }
    /* line 219, Resources/Private/Frontend/sass/partials/_helpers.scss */
    .util-add-padding-right-full {
      padding-right: 20px !important; }
    /* line 223, Resources/Private/Frontend/sass/partials/_helpers.scss */
    .util-add-padding-right-double {
      padding-right: 40px !important; }
  /* line 228, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-add-padding-bottom {
    padding-bottom: 10px !important; }
    /* line 231, Resources/Private/Frontend/sass/partials/_helpers.scss */
    .util-add-padding-bottom-full {
      padding-bottom: 20px !important; }
    /* line 235, Resources/Private/Frontend/sass/partials/_helpers.scss */
    .util-add-padding-bottom-double {
      padding-bottom: 40px !important; }
  /* line 240, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-add-padding-left {
    padding-left: 10px !important; }
    /* line 243, Resources/Private/Frontend/sass/partials/_helpers.scss */
    .util-add-padding-left-full {
      padding-left: 20px !important; }
    /* line 247, Resources/Private/Frontend/sass/partials/_helpers.scss */
    .util-add-padding-left-double {
      padding-left: 40px !important; }
  /* line 252, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-add-padding-x {
    padding-left: 10px !important;
    padding-right: 10px !important; }
    /* line 256, Resources/Private/Frontend/sass/partials/_helpers.scss */
    .util-add-padding-x-full {
      padding-left: 20px !important;
      padding-right: 20px !important; }
    /* line 261, Resources/Private/Frontend/sass/partials/_helpers.scss */
    .util-add-padding-x-double {
      padding-left: 40px !important;
      padding-right: 40px !important; }
  /* line 267, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-add-padding-y {
    padding-top: 10px !important;
    padding-bottom: 10px !important; }
    /* line 271, Resources/Private/Frontend/sass/partials/_helpers.scss */
    .util-add-padding-y-full {
      padding-top: 20px !important;
      padding-bottom: 20px !important; }
    /* line 276, Resources/Private/Frontend/sass/partials/_helpers.scss */
    .util-add-padding-y-double {
      padding-top: 40px !important;
      padding-bottom: 40px !important; }

/* line 283, Resources/Private/Frontend/sass/partials/_helpers.scss */
.util-reset-margin {
  margin: 0 !important; }
  /* line 286, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-reset-margin-top {
    margin-top: 0 !important; }
  /* line 290, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-reset-margin-right {
    margin-right: 0 !important; }
  /* line 294, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-reset-margin-bottom {
    margin-bottom: 0 !important; }
  /* line 298, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-reset-margin-left {
    margin-left: 0 !important; }
  /* line 302, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-reset-margin-x {
    margin-left: 0 !important;
    margin-right: 0 !important; }
  /* line 307, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-reset-margin-y {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  /* line 312, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-reset-margin-auto {
    margin-left: auto !important;
    margin-right: auto !important; }

/* line 318, Resources/Private/Frontend/sass/partials/_helpers.scss */
.util-add-margin {
  margin: 10px !important; }
  /* line 321, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-add-margin-full {
    margin: 20px !important; }
  /* line 325, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-add-margin-double {
    margin: 40px !important; }
  /* line 329, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-add-margin-top {
    margin-top: 10px !important; }
    /* line 332, Resources/Private/Frontend/sass/partials/_helpers.scss */
    .util-add-margin-top-full {
      margin-top: 20px !important; }
    /* line 336, Resources/Private/Frontend/sass/partials/_helpers.scss */
    .util-add-margin-top-double {
      margin-top: 40px !important; }
  /* line 341, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-add-margin-right {
    margin-right: 10px !important; }
    /* line 344, Resources/Private/Frontend/sass/partials/_helpers.scss */
    .util-add-margin-right-full {
      margin-right: 20px !important; }
    /* line 348, Resources/Private/Frontend/sass/partials/_helpers.scss */
    .util-add-margin-right-double {
      margin-right: 40px !important; }
  /* line 353, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-add-margin-bottom {
    margin-bottom: 10px !important; }
    /* line 356, Resources/Private/Frontend/sass/partials/_helpers.scss */
    .util-add-margin-bottom-full {
      margin-bottom: 20px !important; }
    /* line 360, Resources/Private/Frontend/sass/partials/_helpers.scss */
    .util-add-margin-bottom-double {
      margin-bottom: 40px !important; }
  /* line 365, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-add-margin-left {
    margin-left: 10px !important; }
    /* line 368, Resources/Private/Frontend/sass/partials/_helpers.scss */
    .util-add-margin-left-full {
      margin-left: 20px !important; }
    /* line 372, Resources/Private/Frontend/sass/partials/_helpers.scss */
    .util-add-margin-left-double {
      margin-left: 40px !important; }
  /* line 377, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-add-margin-x {
    margin-left: 10px !important;
    margin-right: 10px !important; }
    /* line 381, Resources/Private/Frontend/sass/partials/_helpers.scss */
    .util-add-margin-x-full {
      margin-left: 20px !important;
      margin-right: 20px !important; }
    /* line 386, Resources/Private/Frontend/sass/partials/_helpers.scss */
    .util-add-margin-x-double {
      margin-left: 40px !important;
      margin-right: 40px !important; }
  /* line 392, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-add-margin-y {
    margin-top: 10px !important;
    margin-bottom: 10px !important; }
    /* line 396, Resources/Private/Frontend/sass/partials/_helpers.scss */
    .util-add-margin-y-full {
      margin-top: 20px !important;
      margin-bottom: 20px !important; }
    /* line 401, Resources/Private/Frontend/sass/partials/_helpers.scss */
    .util-add-margin-y-double {
      margin-top: 40px !important;
      margin-bottom: 40px !important; }

/* line 410, Resources/Private/Frontend/sass/partials/_helpers.scss */
.no-icon:before, .no-icon:after {
  display: none !important; }

/* line 417, Resources/Private/Frontend/sass/partials/_helpers.scss */
.util-negative-margin-top {
  margin-top: -20px !important; }
  /* line 420, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-negative-margin-top-double {
    margin-top: -40px !important; }

/* line 425, Resources/Private/Frontend/sass/partials/_helpers.scss */
.util-negative-margin-bottom {
  margin-bottom: -20px !important; }
  /* line 428, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .util-negative-margin-bottom-double {
    margin-bottom: -40px !important; }

/* line 434, Resources/Private/Frontend/sass/partials/_helpers.scss */
.util-no-float {
  float: none; }

/* line 439, Resources/Private/Frontend/sass/partials/_helpers.scss */
.selectboxit-container .selectboxit-options a:after, .scroll-top:after, .mediathek__item a:after, .share-me .shariff-button a:after, .application__headline:last-child a:after, .downloadbar__link--size:after, .teaser-video__link:after {
  display: none !important; }

@media screen and (max-width: 47.999em) {
  /* line 444, Resources/Private/Frontend/sass/partials/_helpers.scss */
  .is-mobile-hidden {
    display: none !important; } }

/* development */
/* line 451, Resources/Private/Frontend/sass/partials/_helpers.scss */
.default-grid {
  display: none; }

/* line 456, Resources/Private/Frontend/sass/partials/_helpers.scss */
.show-grid [class*="col-"] {
  background: #ccc;
  outline: 1px solid red; }

/* line 461, Resources/Private/Frontend/sass/partials/_helpers.scss */
.show-grid header {
  background: rgba(0, 255, 0, 0.5); }

/* line 465, Resources/Private/Frontend/sass/partials/_helpers.scss */
.show-grid footer {
  background: rgba(0, 255, 255, 0.5); }

/* line 469, Resources/Private/Frontend/sass/partials/_helpers.scss */
.show-grid .default-grid {
  display: block; }

/* line 478, Resources/Private/Frontend/sass/partials/_helpers.scss */
.color-pattern li {
  text-align: center; }

/* line 483, Resources/Private/Frontend/sass/partials/_helpers.scss */
.color-pattern span {
  display: block;
  width: 100%;
  height: 100px;
  border: 1px solid #e1e1e1; }

/* line 491, Resources/Private/Frontend/sass/partials/_helpers.scss */
.pdf-visible {
  display: none !important; }
  @media print {
    /* line 491, Resources/Private/Frontend/sass/partials/_helpers.scss */
    .pdf-visible {
      display: inline-block !important; } }

/* line 499, Resources/Private/Frontend/sass/partials/_helpers.scss */
.border-width-2px {
  border-width: 2px !important; }

/* line 503, Resources/Private/Frontend/sass/partials/_helpers.scss */
.font-size-110 {
  font-size: 110%; }

/* line 507, Resources/Private/Frontend/sass/partials/_helpers.scss */
.color-inherit {
  color: inherit; }

/* line 511, Resources/Private/Frontend/sass/partials/_helpers.scss */
.util-uppercase {
  text-transform: uppercase; }

/* line 516, Resources/Private/Frontend/sass/partials/_helpers.scss */
.util-color-error {
  color: red; }

/* line 520, Resources/Private/Frontend/sass/partials/_helpers.scss */
.util-uppercase {
  text-transform: uppercase; }

/* line 524, Resources/Private/Frontend/sass/partials/_helpers.scss */
.util-table-note {
  margin-top: -42px;
  margin-bottom: 20px;
  font-size: 15px; }

/* line 530, Resources/Private/Frontend/sass/partials/_helpers.scss */
.util-hidden {
  display: none; }

/* line 534, Resources/Private/Frontend/sass/partials/_helpers.scss */
.util-bg--blue-dark {
  background: #0f2d64 !important; }

/* line 538, Resources/Private/Frontend/sass/partials/_helpers.scss */
.util-bg--blue {
  background: #1299d9 !important; }

/**
 * brandung buttons.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   buttons
   ========================================================================== */
/*
*	create button [create-btn]
*
*	desc:
*		button-mixin to create consistent buttons
*
*	@param	$btn-bg-color				[any color]
*	@param	$btn-bg-color-hover			[any color]
*	@param	$btn-border-color			[any color]
*	@param	$btn-border-color-hover		[any color]
*	@param	$btn-font-color				[any color]
*	@param	$btn-font-color-hover		[any color]
*
*	usage:
*		define all the button properties in the $button-properties list
*		call the button-mixin to create the initial css like this:
*
*		.button-classname {
*			@include create-btn();
*		}
*
*		pass additional parameters if needed, see @param section for possible parameters
*
*/
/* button-mixin-list: $button-properties
========================================================================== */
/* mixin: create-btn
========================================================================== */
/* button-mixin: basic-styles
========================================================================== */
/* line 99, Resources/Private/Frontend/sass/partials/_buttons.scss */
.btn, .btn--disabled,
.btn[disabled], .btn--alternate {
  border-radius: 0;
  -o-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
  font-size: 16px;
  font-size: 1rem;
  display: inline-block;
  cursor: pointer;
  position: relative;
  font-family: "Merriweather Sans", arial;
  padding: 8px 40px 8px 40px;
  text-decoration: underline;
  text-transform: none;
  /* types */
  transition: background-color 0.2s linear, border-color 0.2s linear, color 0.2s linear; }
  @media screen and (max-width: 47.999em) {
    /* line 99, Resources/Private/Frontend/sass/partials/_buttons.scss */
    .btn, .btn--disabled,
    .btn[disabled], .btn--alternate {
      font-size: 16px;
      font-size: 1rem; } }
  /* line 119, Resources/Private/Frontend/sass/partials/_buttons.scss */
  .btn-full-width.btn, .btn-full-width.btn--disabled, .btn-full-width.btn--alternate {
    display: block;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
    padding: 20px; }
  /* line 137, Resources/Private/Frontend/sass/partials/_buttons.scss */
  .btn:hover, .btn--disabled:hover, .btn--alternate:hover {
    opacity: 1; }
  /* line 141, Resources/Private/Frontend/sass/partials/_buttons.scss */
  
  .btn[disabled], .btn--disabled[disabled], .btn--alternate[disabled], .is-disabled.btn, .is-disabled.btn--disabled, .is-disabled.btn--alternate {
    cursor: default; }

/* button declarations
========================================================================== */
/* line 156, Resources/Private/Frontend/sass/partials/_buttons.scss */
.btn {
  border: solid 1px #8a99a7;
  background: #fff;
  color: #0f2d64; }
  /* line 79, Resources/Private/Frontend/sass/partials/_buttons.scss */
  .btn:hover {
    background: #0f2d64;
    border-color: #0f2d64;
    color: #fff; }
  /* line 85, Resources/Private/Frontend/sass/partials/_buttons.scss */
  .btn[disabled], .btn.is-disabled {
    cursor: not-allowed; }
    /* line 90, Resources/Private/Frontend/sass/partials/_buttons.scss */
    .btn[disabled]:hover, .btn.is-disabled:hover {
      background: #fff; }
  @media print {
    /* line 156, Resources/Private/Frontend/sass/partials/_buttons.scss */
    .btn {
      display: none; } }
  /* line 166, Resources/Private/Frontend/sass/partials/_buttons.scss */
  .btn.nav-buttons.btn {
    padding-bottom: 8px; }
    /* line 169, Resources/Private/Frontend/sass/partials/_buttons.scss */
    .btn.nav-buttons.btn > div {
      display: inline-block; }
      /* line 171, Resources/Private/Frontend/sass/partials/_buttons.scss */
      .btn.nav-buttons.btn > div p {
        margin: 0;
        display: inline-block;
        font-size: 14px; }
    /* line 178, Resources/Private/Frontend/sass/partials/_buttons.scss */
    .btn.nav-buttons.btn:after, .btn.nav-buttons.btn:before {
      vertical-align: inherit; }
      @media screen and (max-width: 29.999em) {
        /* line 178, Resources/Private/Frontend/sass/partials/_buttons.scss */
        .btn.nav-buttons.btn:after, .btn.nav-buttons.btn:before {
          display: none; } }

/* line 194, Resources/Private/Frontend/sass/partials/_buttons.scss */
.btn--disabled,
.btn[disabled] {
  border: solid 1px #8a99a7;
  background: #fff;
  color: #b7c0d1;
  cursor: not-allowed; }
  /* line 79, Resources/Private/Frontend/sass/partials/_buttons.scss */
  .btn--disabled:hover,
  .btn[disabled]:hover {
    background: #fff;
    border-color: #b7c0d1;
    color: #b7c0d1; }
  /* line 85, Resources/Private/Frontend/sass/partials/_buttons.scss */
  .btn--disabled[disabled], .btn--disabled.is-disabled,
  .btn[disabled][disabled],
  .btn[disabled].is-disabled {
    cursor: not-allowed; }
    /* line 90, Resources/Private/Frontend/sass/partials/_buttons.scss */
    .btn--disabled[disabled]:hover, .btn--disabled.is-disabled:hover,
    .btn[disabled][disabled]:hover,
    .btn[disabled].is-disabled:hover {
      background: #fff; }
  @media print {
    /* line 194, Resources/Private/Frontend/sass/partials/_buttons.scss */
    .btn--disabled,
    .btn[disabled] {
      display: none; } }

/* line 210, Resources/Private/Frontend/sass/partials/_buttons.scss */
.btn--alternate {
  border: solid 1px #8a99a7;
  background: #fff;
  color: #0f2d64;
  border: none;
  display: block;
  padding: 0;
  text-align: left;
  text-decoration: none;
  width: 100%; }
  /* line 79, Resources/Private/Frontend/sass/partials/_buttons.scss */
  .btn--alternate:hover {
    background: #fff;
    border-color: #fff;
    color: #0f2d64; }
  /* line 85, Resources/Private/Frontend/sass/partials/_buttons.scss */
  .btn--alternate[disabled], .btn--alternate.is-disabled {
    cursor: not-allowed; }
    /* line 90, Resources/Private/Frontend/sass/partials/_buttons.scss */
    .btn--alternate[disabled]:hover, .btn--alternate.is-disabled:hover {
      background: #fff; }
  @media screen and (max-width: 47.999em) {
    /* line 210, Resources/Private/Frontend/sass/partials/_buttons.scss */
    .btn--alternate {
      text-align: left !important; } }
  /* line 226, Resources/Private/Frontend/sass/partials/_buttons.scss */
  .btn--alternate:hover {
    text-decoration: underline; }
  /* line 230, Resources/Private/Frontend/sass/partials/_buttons.scss */
  .btn--alternate:before {
    font-family: 'icomoon';
    content: '\e603';
    display: block !important;
    position: absolute !important;
    right: -10px;
    bottom: 0 !important; }

/* line 241, Resources/Private/Frontend/sass/partials/_buttons.scss */
[class^="btn"].btn--list {
  border: none;
  border-bottom: 1px solid #0f2d64;
  display: block;
  margin-bottom: 0 !important;
  padding: 20px !important;
  text-align: left;
  text-decoration: none;
  width: 100%; }
  @media screen and (max-width: 47.999em) {
    /* line 241, Resources/Private/Frontend/sass/partials/_buttons.scss */
    [class^="btn"].btn--list {
      text-align: left !important; } }
  /* line 255, Resources/Private/Frontend/sass/partials/_buttons.scss */
  [class^="btn"].btn--list:first-of-type {
    border-top: 1px solid #0f2d64; }
  /* line 259, Resources/Private/Frontend/sass/partials/_buttons.scss */
  [class^="btn"].btn--list:before {
    font-family: 'icomoon';
    content: '\e603';
    display: block !important;
    position: absolute !important;
    right: 10px;
    bottom: 15px !important; }

/* custom global button styles, responsive behaviour & font/icon/padding fixes
========================================================================== */
@media screen and (max-width: 47.999em) {
  /* line 272, Resources/Private/Frontend/sass/partials/_buttons.scss */
  [class^="btn"] {
    float: none;
    display: block;
    margin: 0 auto 10px auto !important;
    text-align: center; } }

/* line 282, Resources/Private/Frontend/sass/partials/_buttons.scss */
[class^="btn"]:before, [class^="btn"]:after {
  position: relative;
  bottom: 2px; }

/* line 289, Resources/Private/Frontend/sass/partials/_buttons.scss */
[class^="btn"].icon-only, [class^="btn"].icon-before, [class^="btn"].icon-after {
  padding: 5px 20px 1px 10px;
  text-decoration: none !important; }
  /* line 295, Resources/Private/Frontend/sass/partials/_buttons.scss */
  [class^="btn"].icon-only span, [class^="btn"].icon-before span, [class^="btn"].icon-after span {
    text-decoration: underline; }
  /* line 300, Resources/Private/Frontend/sass/partials/_buttons.scss */
  [class^="btn"].icon-only:hover span, [class^="btn"].icon-before:hover span, [class^="btn"].icon-after:hover span {
    text-decoration: none; }

/* line 307, Resources/Private/Frontend/sass/partials/_buttons.scss */
[class^="btn"].icon-after {
  padding: 5px 10px 1px 20px; }
  /* line 310, Resources/Private/Frontend/sass/partials/_buttons.scss */
  [class^="btn"].icon-after:before {
    display: none; }

/* line 315, Resources/Private/Frontend/sass/partials/_buttons.scss */
[class^="btn"]:hover {
  text-decoration: none; }

/* line 320, Resources/Private/Frontend/sass/partials/_buttons.scss */
a.btn--no-border {
  background: none;
  border: none;
  text-align: inherit; }
  /* line 325, Resources/Private/Frontend/sass/partials/_buttons.scss */
  a.btn--no-border:after {
    display: inline-block !important;
    background: none;
    height: auto;
    width: auto;
    bottom: auto;
    right: auto; }
  /* line 334, Resources/Private/Frontend/sass/partials/_buttons.scss */
  a.btn--no-border:hover {
    background: none;
    color: #0f2d64;
    border: none; }
    /* line 339, Resources/Private/Frontend/sass/partials/_buttons.scss */
    a.btn--no-border:hover span {
      text-decoration: none; }
    /* line 343, Resources/Private/Frontend/sass/partials/_buttons.scss */
    a.btn--no-border:hover:after {
      width: auto; }

/* line 351, Resources/Private/Frontend/sass/partials/_buttons.scss */
a.btn--icon-highlight:after {
  background: #6e81a2;
  color: #fff;
  font-size: 28px;
  font-size: 1.75rem;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  overflow: hidden;
  padding: 11px;
  margin-left: 15px; }

/* line 363, Resources/Private/Frontend/sass/partials/_buttons.scss */
a.btn--icon-highlight span {
  text-decoration: none !important; }

/* line 368, Resources/Private/Frontend/sass/partials/_buttons.scss */
a.btn--icon-highlight:hover:after {
  background: #0f2d64;
  color: #fff; }

/* line 376, Resources/Private/Frontend/sass/partials/_buttons.scss */
input[class*="btn"] {
  padding: 6px 20px 6px 20px; }

/* button-set declaration
========================================================================== */
/* line 383, Resources/Private/Frontend/sass/partials/_buttons.scss */
.btn-set {
  text-align: center;
  margin: 20px 0; }
  @media screen and (max-width: 29.999em) {
    /* line 383, Resources/Private/Frontend/sass/partials/_buttons.scss */
    .btn-set {
      margin-top: 40px !important; } }
  @media screen and (min-width: 48em) {
    /* line 391, Resources/Private/Frontend/sass/partials/_buttons.scss */
    .btn-set > [class*="btn"] {
      float: left; } }
  /* line 396, Resources/Private/Frontend/sass/partials/_buttons.scss */
  .btn-set > [class*="btn"] + [class*="btn"] {
    margin-left: 4px; }
  /* line 400, Resources/Private/Frontend/sass/partials/_buttons.scss */
  .btn-set > [class*="btn"].center {
    display: inline-block;
    float: none; }
  /* line 405, Resources/Private/Frontend/sass/partials/_buttons.scss */
  .btn-set > [class*="btn"].right {
    float: right; }
  /* line 409, Resources/Private/Frontend/sass/partials/_buttons.scss */
  .btn-set > [class*="btn"].left {
    float: left; }
  @media screen and (max-width: 29.999em) {
    /* line 414, Resources/Private/Frontend/sass/partials/_buttons.scss */
    .btn-set > [class*="btn"].left, .btn-set > [class*="btn"].right {
      float: none; }
    /* line 419, Resources/Private/Frontend/sass/partials/_buttons.scss */
    .btn-set > [class*="btn"].center {
      clear: both;
      float: none;
      display: block; } }

/**
 * brandung header.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Header
   ========================================================================== */
/* line 19, Resources/Private/Frontend/sass/partials/_header.scss */
.header {
  -o-box-shadow: 0 2px 5px rgba(0,0,0,.2);
  -ms-box-shadow: 0 2px 5px rgba(0,0,0,.2);
  box-shadow: 0 2px 5px rgba(0,0,0,.2);
  position: relative;
  z-index: 10;
  background: #fff;
  padding: 0; }
  /* line 28, Resources/Private/Frontend/sass/partials/_header.scss */
  .header.no-nav nav.nav {
    margin-top: 30px; }
  /* line 32, Resources/Private/Frontend/sass/partials/_header.scss */
  .header.no-nav .nav-anchors,
  .header.no-nav .nav__list-item {
    display: none; }
  @media screen and (min-width: 62em) {
    /* line 19, Resources/Private/Frontend/sass/partials/_header.scss */
    .header {
      padding-left: 20px;
      padding-right: 20px; } }
  @media screen and (min-width: 79.25em) {
    /* line 19, Resources/Private/Frontend/sass/partials/_header.scss */
    .header {
      padding-left: 40px;
      padding-right: 40px; } }
  /* line 52, Resources/Private/Frontend/sass/partials/_header.scss */
  .header__single {
    box-shadow: none;
    position: relative; }
  /* line 59, Resources/Private/Frontend/sass/partials/_header.scss */
  .header__logo-single {
    background: #fff;
    padding: 20px;
    overflow: hidden; }
    @media screen and (max-width: 29.999em) {
      /* line 59, Resources/Private/Frontend/sass/partials/_header.scss */
      .header__logo-single {
        width: 30%;
        padding: 0;
        position: absolute; } }
    @media screen and (min-width: 48em) {
      /* line 59, Resources/Private/Frontend/sass/partials/_header.scss */
      .header__logo-single {
        width: 80%; } }
    @media screen and (max-width: 79.249em) {
      /* line 59, Resources/Private/Frontend/sass/partials/_header.scss */
      .header__logo-single {
        position: absolute;
        padding: 0; } }
  /* line 81, Resources/Private/Frontend/sass/partials/_header.scss */
  .header__wrapper {
    background: #fff; }
    @media screen and (max-width: 61.999em) {
      /* line 86, Resources/Private/Frontend/sass/partials/_header.scss */
      .header__wrapper:after {
        display: block;
        content: ".";
        clear: both;
        font-size: 0;
        line-height: 0;
        height: 0;
        overflow: hidden; } }
    @media screen and (min-width: 62em) {
      /* line 81, Resources/Private/Frontend/sass/partials/_header.scss */
      .header__wrapper {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px; } }
  /* line 105, Resources/Private/Frontend/sass/partials/_header.scss */
  .header__content {
    background: #fff;
    float: right;
    margin: 20px 20px 0 0; }
    @media screen and (min-width: 48em) {
      /* line 105, Resources/Private/Frontend/sass/partials/_header.scss */
      .header__content {
        margin: 35px 35px 0 0; } }
    @media screen and (min-width: 62em) {
      /* line 105, Resources/Private/Frontend/sass/partials/_header.scss */
      .header__content {
        float: none;
        margin: 0; } }
  /* line 120, Resources/Private/Frontend/sass/partials/_header.scss */
  .header__logo {
    background: #fff;
    float: left; }
    @media print {
      /* line 120, Resources/Private/Frontend/sass/partials/_header.scss */
      .header__logo {
        float: none; }
        /* line 127, Resources/Private/Frontend/sass/partials/_header.scss */
        .header__logo img {
          margin-bottom: 2em; } }
  /* line 133, Resources/Private/Frontend/sass/partials/_header.scss */
  .header__item {
    float: left;
    background: #fff; }
    @media screen and (min-width: 62em) {
      /* line 133, Resources/Private/Frontend/sass/partials/_header.scss */
      .header__item {
        height: auto;
        float: none;
        width: auto; } }
  /* line 144, Resources/Private/Frontend/sass/partials/_header.scss */
  .header__clinics-bar {
    display: block;
    width: 100%;
    padding: 8px 15px;
    background: #0f2d64;
    text-align: left;
    border-top: 1px solid #0f2d64;
    color: white;
    position: relative;
    z-index: -2; }
    @media screen and (min-width: 48em) {
      /* line 144, Resources/Private/Frontend/sass/partials/_header.scss */
      .header__clinics-bar {
        padding: 8px 30px; } }
    @media screen and (min-width: 62em) {
      /* line 144, Resources/Private/Frontend/sass/partials/_header.scss */
      .header__clinics-bar {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
        width: calc(100% + 2 * 20px); } }
    @media screen and (min-width: 79.25em) {
      /* line 144, Resources/Private/Frontend/sass/partials/_header.scss */
      .header__clinics-bar {
        margin-left: -40px;
        margin-right: -40px;
        padding-left: 40px;
        padding-right: 40px;
        width: calc(100% + 4 * 20px); } }
    /* line 175, Resources/Private/Frontend/sass/partials/_header.scss */
    .header__clinics-bar a {
      color: white;
      text-decoration: none;
      font-weight: bold; }
  /* line 182, Resources/Private/Frontend/sass/partials/_header.scss */
  .header .logo-single {
    display: block;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-indent: -90em;
    clear: both;
    width: 160px;
    height: 50px; }
    @media screen and (max-width: 47.999em) {
      /* line 182, Resources/Private/Frontend/sass/partials/_header.scss */
      .header .logo-single {
        background: url(../img/svg/ukk-logo.svg) transparent -52px 0 no-repeat;
        margin: 10px;
        width: 75px;
        background-size: 133px;
        height: 30px; } }
    @media screen and (min-width: 48em) {
      /* line 182, Resources/Private/Frontend/sass/partials/_header.scss */
      .header .logo-single {
        margin: 9px 20px 9px 10px !important; } }
    @media screen and (min-width: 62em) {
      /* line 182, Resources/Private/Frontend/sass/partials/_header.scss */
      .header .logo-single {
        float: left;
        width: 198px;
        height: 65px;
        margin: 0; } }
  @media screen and (max-width: 47.999em) {
    /* line 213, Resources/Private/Frontend/sass/partials/_header.scss */
    .header .logo-single--fbuek {
      background: url(../img/svg/fbuek-logo.svg) transparent -52px 0 no-repeat;
      margin: 10px;
      width: 75px;
      background-size: 133px;
      height: 30px; } }
  /* line 224, Resources/Private/Frontend/sass/partials/_header.scss */
  .header .logo,
  .header .logo-single {
    background: url(../img/svg/ukk-logo.svg) transparent 0 0 no-repeat; }
    /* line 228, Resources/Private/Frontend/sass/partials/_header.scss */
    .mvz .header .logo, .mvz
    .header .logo-single {
      background: url(../img/svg/ukk-logo-mvz.svg) transparent 0 0 no-repeat;
      background-position: left center;
      background-size: contain;
      width: 170px; }
      @media screen and (min-width: 62em) {
        /* line 228, Resources/Private/Frontend/sass/partials/_header.scss */
        .mvz .header .logo, .mvz
        .header .logo-single {
          height: 36px;
          width: 250px; } }
    /* line 240, Resources/Private/Frontend/sass/partials/_header.scss */
    .hcc .header .logo, .hcc
    .header .logo-single {
      background: url("../img/png/ukk-logo-hcc.png") left center no-repeat;
      background-size: contain;
      width: 170px; }
      @media screen and (min-width: 62em) {
        /* line 240, Resources/Private/Frontend/sass/partials/_header.scss */
        .hcc .header .logo, .hcc
        .header .logo-single {
          height: 84px;
          width: 300px; } }
    /* line 251, Resources/Private/Frontend/sass/partials/_header.scss */
    .consortium-fbuek .header .logo, .consortium-fbuek
    .header .logo-single {
      background: url("../img/svg/ukk_fbuek_new.svg") left center no-repeat;
      background-size: contain;
      width: 170px;
      height: 65px; }
      @media screen and (max-width: 47.999em) {
        /* line 251, Resources/Private/Frontend/sass/partials/_header.scss */
        .consortium-fbuek .header .logo, .consortium-fbuek
        .header .logo-single {
          height: 40px; } }
      @media screen and (min-width: 62em) {
        /* line 251, Resources/Private/Frontend/sass/partials/_header.scss */
        .consortium-fbuek .header .logo, .consortium-fbuek
        .header .logo-single {
          width: 250px;
          height: 90px; } }
    /* line 267, Resources/Private/Frontend/sass/partials/_header.scss */
    .infektiologie .header .logo, .infektiologie
    .header .logo-single {
      background: url("../img/png/ukk-logo-infektiologie.png") left center no-repeat;
      background-size: contain;
      width: 170px; }
      @media screen and (min-width: 62em) {
        /* line 267, Resources/Private/Frontend/sass/partials/_header.scss */
        .infektiologie .header .logo, .infektiologie
        .header .logo-single {
          width: 250px; } }
    /* line 277, Resources/Private/Frontend/sass/partials/_header.scss */
    .abswest .header .logo, .abswest
    .header .logo-single {
      background: url("../img/svg/ukk_abswest.svg") left center no-repeat;
      background-size: contain;
      width: 170px; }
      @media screen and (max-width: 47.999em) {
        /* line 277, Resources/Private/Frontend/sass/partials/_header.scss */
        .abswest .header .logo, .abswest
        .header .logo-single {
          height: 40px; } }
      @media screen and (min-width: 62em) {
        /* line 277, Resources/Private/Frontend/sass/partials/_header.scss */
        .abswest .header .logo, .abswest
        .header .logo-single {
          width: 250px;
          height: 90px; } }
    /* line 293, Resources/Private/Frontend/sass/partials/_header.scss */
    .adopt .header .logo, .adopt
    .header .logo-single {
      background: url("../img/svg/ukk-logo-adopt.svg") left center no-repeat;
      background-size: contain;
      width: 170px; }
      @media screen and (min-width: 62em) {
        /* line 293, Resources/Private/Frontend/sass/partials/_header.scss */
        .adopt .header .logo, .adopt
        .header .logo-single {
          height: 84px;
          width: 240px; } }
    /* line 304, Resources/Private/Frontend/sass/partials/_header.scss */
    .unireha .header .logo, .unireha
    .header .logo-single {
      background: url("../img/svg/ukk-logo-unireha.svg") left center no-repeat;
      background-size: contain;
      width: 170px; }
      @media screen and (min-width: 62em) {
        /* line 304, Resources/Private/Frontend/sass/partials/_header.scss */
        .unireha .header .logo, .unireha
        .header .logo-single {
          height: 84px;
          width: 240px; } }
  /* line 316, Resources/Private/Frontend/sass/partials/_header.scss */
  .header .logo {
    display: block;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-indent: -90em;
    clear: both;
    width: 160px;
    height: 50px; }
    @media screen and (max-width: 47.999em) {
      /* line 316, Resources/Private/Frontend/sass/partials/_header.scss */
      .header .logo {
        background: url(../img/svg/ukk-logo.svg) transparent -52px 0 no-repeat;
        margin: 15px;
        width: 75px;
        background-size: 133px 40px;
        height: 40px; } }
    @media screen and (min-width: 48em) {
      /* line 316, Resources/Private/Frontend/sass/partials/_header.scss */
      .header .logo {
        margin: 30px; } }
    @media screen and (min-width: 62em) {
      /* line 316, Resources/Private/Frontend/sass/partials/_header.scss */
      .header .logo {
        float: left;
        width: 198px;
        height: 65px;
        margin: 0; } }
    @media print {
      /* line 316, Resources/Private/Frontend/sass/partials/_header.scss */
      .header .logo {
        display: none; } }
  @media print {
    /* line 19, Resources/Private/Frontend/sass/partials/_header.scss */
    .header {
      -o-box-shadow: none;
      -ms-box-shadow: none;
      box-shadow: none; } }
  /* line 355, Resources/Private/Frontend/sass/partials/_header.scss */
  .header .lang-switch {
    display: none;
    list-style: none;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 0;
    margin: 0;
    width: 100%; }
    /* line 363, Resources/Private/Frontend/sass/partials/_header.scss */
    .header .lang-switch li {
      padding: 9px 10px 10px 10px;
      font-weight: bold;
      font-size: 0.75rem; }
      /* line 368, Resources/Private/Frontend/sass/partials/_header.scss */
      .header .lang-switch li:last-of-type {
        padding-right: 20px; }
      /* line 372, Resources/Private/Frontend/sass/partials/_header.scss */
      .header .lang-switch li.active {
        text-decoration: underline; }
    /* line 377, Resources/Private/Frontend/sass/partials/_header.scss */
    .header .lang-switch a {
      color: #565656;
      text-decoration: none; }
    @media screen and (min-width: 62em) {
      /* line 355, Resources/Private/Frontend/sass/partials/_header.scss */
      .header .lang-switch {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex; } }
    /* line 386, Resources/Private/Frontend/sass/partials/_header.scss */
    .header .lang-switch.clone {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      background: #f6f6f6;
      color: #565656;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      padding: 0 0 0 30px;
      width: 25%; }
      /* line 394, Resources/Private/Frontend/sass/partials/_header.scss */
      .header .lang-switch.clone li {
        font-size: 1rem;
        font-weight: normal; }

@media screen and (max-width: 47.999em) {
  /* line 404, Resources/Private/Frontend/sass/partials/_header.scss */
  #open-nav:target .logo {
    height: 0; } }

/**
 * brandung clinics/header.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Header
   ========================================================================== */
@media screen and (min-width: 62em) {
  /* line 19, Resources/Private/Frontend/sass/partials/clinics/_header.scss */
  body.clinics .header {
    -o-box-shadow: 0 -4px 5px rgba(0,0,0,.2);
    -ms-box-shadow: 0 -4px 5px rgba(0,0,0,.2);
    box-shadow: 0 -4px 5px rgba(0,0,0,.2); }
  /* line 23, Resources/Private/Frontend/sass/partials/clinics/_header.scss */
  body.clinics .header__wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  /* line 28, Resources/Private/Frontend/sass/partials/clinics/_header.scss */
  body.clinics .header__logo {
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 30px; }
  /* line 33, Resources/Private/Frontend/sass/partials/clinics/_header.scss */
  body.clinics .header__content {
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2; }
  /* line 37, Resources/Private/Frontend/sass/partials/clinics/_header.scss */
  body.clinics .header__item.search {
    position: relative;
    bottom: -55px;
    top: auto; } }

/* line 46, Resources/Private/Frontend/sass/partials/clinics/_header.scss */
.augennetzwerk .header .logo {
  background-size: contain;
  background-image: url("../img/png/augennetzwerk.png");
  background-position: center;
  background-repeat: no-repeat;
  width: 170px;
  height: 60px; }
  @media screen and (min-width: 62em) {
    /* line 46, Resources/Private/Frontend/sass/partials/clinics/_header.scss */
    .augennetzwerk .header .logo {
      width: 230px;
      height: 77px; } }

/* line 60, Resources/Private/Frontend/sass/partials/clinics/_header.scss */
.augennetzwerk footer .footermeta__logo {
  display: none; }

/**
 * brandung footer.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-19
 * MIT License (MIT)
 */
/* ==========================================================================
   Footer
   ========================================================================== */
/* line 21, Resources/Private/Frontend/sass/partials/_footer.scss */
footer {
  -o-box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  background: #fff; }
  /* line 31, Resources/Private/Frontend/sass/partials/_footer.scss */
  footer .footernav ul {
    padding-top: 15px; }
  /* line 35, Resources/Private/Frontend/sass/partials/_footer.scss */
  footer .footernav li {
    padding: 5px 0; }
  /* line 38, Resources/Private/Frontend/sass/partials/_footer.scss */
  footer .footernav a {
    position: relative;
    text-decoration: underline;
    color: #0f2d64;
    color: #565656; }
    /* line 171, Resources/Private/Frontend/sass/partials/_mixins.scss */
    footer .footernav a:hover {
      text-decoration: none; }
    /* line 42, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footernav a:after {
      background-color: #565656; }
  /* line 47, Resources/Private/Frontend/sass/partials/_footer.scss */
  footer .footernav__mobilemenu {
    color: #0f2d64; }
  /* line 51, Resources/Private/Frontend/sass/partials/_footer.scss */
  footer .footernav__anker {
    cursor: pointer;
    margin-top: 20px;
    color: #0f2d64 !important; }
    /* line 57, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footernav__anker__active {
      color: #fff !important;
      background: #0f2d64;
      padding: 20px; }
      /* line 62, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footernav__anker__active:after {
        float: right;
        clear: both; }
    @media screen and (max-width: 47.999em) {
      /* line 51, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footernav__anker {
        display: block;
        padding: 20px;
        color: #fff;
        border: 1px solid #0f2d64; }
        /* line 74, Resources/Private/Frontend/sass/partials/_footer.scss */
        footer .footernav__anker:after {
          font-family: 'icomoon';
          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;
          content: "\e61a";
          font-size: 30px;
          font-size: 1.875rem;
          float: right;
          margin-top: -4px; } }
    @media screen and (min-width: 48em) {
      /* line 51, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footernav__anker {
        display: none;
        color: #0f2d64; } }
    @media screen and (min-width: 62em) {
      /* line 51, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footernav__anker {
        display: none; } }
  @media screen and (max-width: 61.999em) {
    /* line 30, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footernav {
      padding: 20px 20px 40px 20px; } }
  /* line 109, Resources/Private/Frontend/sass/partials/_footer.scss */
  footer .footernav__headline {
    color: #565656;
    line-height: 1em;
    padding: 40px 0 0; }
    @media screen and (max-width: 47.999em) {
      /* line 109, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footernav__headline {
        text-align: center; } }
    @media screen and (max-width: 61.999em) {
      /* line 109, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footernav__headline {
        padding: 20px 0 8px; } }
    /* line 121, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footernav__headline:after {
      border-bottom: 1px solid #e1e1e1;
      content: '';
      display: inline-block;
      height: 1px;
      width: 100%; }
  /* line 130, Resources/Private/Frontend/sass/partials/_footer.scss */
  footer .footernav__subline {
    margin-left: 0;
    padding: 8px 0; }
    @media screen and (max-width: 47.999em) {
      /* line 130, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footernav__subline {
        text-align: center; } }
    @media screen and (max-width: 61.999em) {
      /* line 130, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footernav__subline {
        padding: 20px; } }
    /* line 140, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footernav__subline li {
      margin: 0; }
  /* line 145, Resources/Private/Frontend/sass/partials/_footer.scss */
  footer .footernav__link {
    padding: 0; }
    @media screen and (max-width: 47.999em) {
      /* line 145, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footernav__link {
        display: none;
        clear: both; } }
    @media screen and (min-width: 48em) {
      /* line 145, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footernav__link {
        display: block !important; } }
    @media screen and (min-width: 62em) {
      /* line 145, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footernav__link {
        display: block !important;
        padding: 0 10px; } }
    @media screen and (min-width: 48em) {
      /* line 163, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footernav__link .footernav__headline:after {
        width: 113%; } }
    /* line 172, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footernav__link:last-of-type .footernav__headline:after {
      width: 100%; }
  /* line 181, Resources/Private/Frontend/sass/partials/_footer.scss */
  footer .footernav__social a {
    color: #565656;
    text-decoration: none; }
  @media screen and (max-width: 47.999em) {
    /* line 179, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footernav__social {
      padding: 0 20px; } }
  @media screen and (min-width: 48em) {
    /* line 179, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footernav__social {
      padding: 20px 0 20px 20px; } }
  @media screen and (min-width: 62em) {
    /* line 179, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footernav__social {
      padding: 0 0 20px 20px; } }
  @media print {
    /* line 179, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footernav__social {
      display: none; } }
  @media screen and (max-width: 47.999em) {
    /* line 198, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footernav__content {
      text-align: center;
      overflow: hidden;
      padding: 0 20px; }
      /* line 208, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footernav__content ul {
        display: inline-block; } }
  @media screen and (max-width: 48em) {
    /* line 198, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footernav__content {
      padding-left: 16px; } }
  /* line 217, Resources/Private/Frontend/sass/partials/_footer.scss */
  footer .footernav__list {
    padding: 20px 0;
    display: inline-block; }
    /* line 221, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footernav__list:last-child {
      margin: 0 0 0 20px; }
    @media screen and (max-width: 47.999em) {
      /* line 226, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footernav__list:last-child {
        margin: 0 0 0 50px; } }
  /* line 232, Resources/Private/Frontend/sass/partials/_footer.scss */
  footer .footernav__tweet {
    margin-left: 0; }
    /* line 235, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footernav__tweet:before {
      font-size: 50px;
      font-size: 3.125rem; }
    /* line 242, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footernav__tweet:hover:before {
      color: #0f2d64; }
  /* line 247, Resources/Private/Frontend/sass/partials/_footer.scss */
  footer .footernav__youTube {
    margin-left: 0; }
    /* line 250, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footernav__youTube:before {
      font-size: 50px;
      font-size: 3.125rem; }
    /* line 257, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footernav__youTube:hover:before {
      color: #0f2d64; }
  /* line 262, Resources/Private/Frontend/sass/partials/_footer.scss */
  footer .footernav__bookmark {
    margin-left: 0; }
    /* line 263, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footernav__bookmark ul {
      padding-top: 15px; }
    @media screen and (max-width: 47.999em) {
      /* line 262, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footernav__bookmark {
        padding: 0 20px; } }
    @media screen and (min-width: 48em) {
      /* line 262, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footernav__bookmark {
        padding: 20px 20px 20px 0; } }
    @media screen and (min-width: 62em) {
      /* line 262, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footernav__bookmark {
        padding: 0 10px 20px 0; } }
    @media print {
      /* line 262, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footernav__bookmark {
        display: none; } }
  /* line 288, Resources/Private/Frontend/sass/partials/_footer.scss */
  footer .footernav__bmark-content {
    padding: 0 0 12px; }
    /* line 292, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footernav__bmark-content li {
      padding: 0 0 12px; }
    /* line 295, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footernav__bmark-content a {
      text-decoration: none;
      color: #565656; }
      /* line 300, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footernav__bmark-content a:after {
        background-color: #565656; }
      /* line 304, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footernav__bmark-content a:before {
        font-size: 20px;
        font-size: 1.25rem;
        display: inline-block;
        line-height: .9em;
        overflow: hidden;
        float: left; }
      /* line 313, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footernav__bmark-content a:hover {
        text-decoration: underline; }
      /* line 318, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footernav__bmark-content a.fancybox:before {
        position: static;
        top: auto;
        right: auto;
        color: inherit;
        background-color: transparent;
        width: auto;
        height: auto;
        overflow: visible;
        opacity: 1; }
    /* line 331, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footernav__bmark-content--print {
      margin-left: 0; }
    /* line 337, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footernav__bmark-content--pdf {
      margin-left: 0; }
    /* line 343, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footernav__bmark-content--bmark {
      margin-left: 0; }
    /* line 349, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footernav__bmark-content--share {
      margin-left: 0; }
  @media print {
    /* line 30, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footernav {
      display: none; } }
  /* line 364, Resources/Private/Frontend/sass/partials/_footer.scss */
  footer .footermeta__container {
    padding: 0;
    overflow: hidden; }
    @media screen and (min-width: 62em) {
      /* line 364, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footermeta__container {
        padding: 50px 20px 20px 10px; } }
  /* line 371, Resources/Private/Frontend/sass/partials/_footer.scss */
  footer .footermeta__link {
    padding: 0 0 20px; }
    @media screen and (max-width: 47.999em) {
      /* line 371, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footermeta__link {
        margin-bottom: 30px; } }
    @media screen and (max-width: 61.999em) {
      /* line 371, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footermeta__link {
        text-align: center; } }
    @media screen and (min-width: 62em) {
      /* line 371, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footermeta__link {
        margin-left: -10px; } }
    /* line 388, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footermeta__link a {
      color: #565656;
      text-decoration: none; }
      /* line 392, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footermeta__link a:after {
        background-color: #565656; }
      /* line 396, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footermeta__link a:hover {
        text-decoration: underline; }
    @media screen and (max-width: 47.999em) {
      /* line 401, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footermeta__link ul {
        padding: 0; } }
    /* line 406, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footermeta__link ul li {
      display: inline-block;
      padding: 0 20px;
      border-right: 1px solid #e1e1e1; }
      /* line 410, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footermeta__link ul li:first-child {
        text-align: left; }
      /* line 413, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footermeta__link ul li:last-child {
        border: none;
        padding-right: 0; }
      @media screen and (max-width: 61.999em) {
        /* line 406, Resources/Private/Frontend/sass/partials/_footer.scss */
        footer .footermeta__link ul li {
          text-align: center; } }
      @media screen and (min-width: 62em) {
        /* line 406, Resources/Private/Frontend/sass/partials/_footer.scss */
        footer .footermeta__link ul li {
          text-align: center;
          padding: 0 10px; } }
    @media print {
      /* line 371, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footermeta__link {
        display: none; } }
  /* line 431, Resources/Private/Frontend/sass/partials/_footer.scss */
  footer .footermeta__copyright {
    padding: 10px; }
    @media screen and (max-width: 47.999em) {
      /* line 431, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footermeta__copyright {
        margin: 40px 0 0; } }
    @media screen and (max-width: 61.999em) {
      /* line 431, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footermeta__copyright {
        margin: 10px 0 0;
        padding: 0 20px;
        text-align: center; } }
    @media print {
      /* line 431, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footermeta__copyright {
        border-top: 2px solid #e1e1e1;
        color: #565656 !important;
        float: none !important;
        padding: 20px 0;
        page-break-inside: avoid;
        text-align: left !important;
        width: 100% !important; }
        /* line 455, Resources/Private/Frontend/sass/partials/_footer.scss */
        footer .footermeta__copyright span {
          color: #565656 !important;
          display: inline !important; } }
  /* line 461, Resources/Private/Frontend/sass/partials/_footer.scss */
  footer .footermeta__association {
    display: none;
    padding: 0; }
    @media screen and (max-width: 47.999em) {
      /* line 461, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footermeta__association {
        margin: 20px 0; } }
    @media screen and (max-width: 61.999em) {
      /* line 461, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footermeta__association {
        margin: 10px 0 40px; } }
    @media screen and (min-width: 62em) {
      /* line 461, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footermeta__association {
        margin: 0;
        padding-left: 35px; } }
    /* line 481, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footermeta__association a {
      background: url("../img/png/logo_verband_ukk.png") no-repeat center 0;
      display: block;
      height: 56px;
      text-indent: -999em; }
      /* line 487, Resources/Private/Frontend/sass/partials/_footer.scss */
      .hcc footer .footermeta__association a {
        background: url("../img/png/Logo_CIO-Koeln-Bonn_RGB.png") no-repeat center;
        background-size: contain;
        height: 45px;
        margin-top: 5px; }
      @media screen and (max-width: 47.999em) {
        /* line 481, Resources/Private/Frontend/sass/partials/_footer.scss */
        footer .footermeta__association a {
          background-size: auto 65%;
          background-position: center; } }
      @media screen and (min-width: 48em) {
        /* line 481, Resources/Private/Frontend/sass/partials/_footer.scss */
        footer .footermeta__association a {
          background-size: auto 65%; } }
      @media screen and (min-width: 62em) {
        /* line 481, Resources/Private/Frontend/sass/partials/_footer.scss */
        footer .footermeta__association a {
          background-size: auto 65%;
          background-position: left 0; } }
      @media print {
        /* line 481, Resources/Private/Frontend/sass/partials/_footer.scss */
        footer .footermeta__association a {
          display: none; } }
  /* line 517, Resources/Private/Frontend/sass/partials/_footer.scss */
  footer .footermeta__fc-cologne {
    padding: 0; }
    @media screen and (max-width: 47.999em) {
      /* line 517, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footermeta__fc-cologne {
        margin: 20px 0; } }
    @media screen and (max-width: 61.999em) {
      /* line 517, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footermeta__fc-cologne {
        margin: 40px 0; } }
    @media screen and (min-width: 62em) {
      /* line 517, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footermeta__fc-cologne {
        margin: 0; } }
    /* line 534, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footermeta__fc-cologne a {
      background: url("../img/jpg/FC_Logo.jpg") no-repeat center;
      background-size: contain;
      display: block;
      height: 100px;
      text-indent: -999em; }
      @media print {
        /* line 534, Resources/Private/Frontend/sass/partials/_footer.scss */
        footer .footermeta__fc-cologne a {
          display: none; } }
  /* line 546, Resources/Private/Frontend/sass/partials/_footer.scss */
  footer .footermeta__logo {
    padding: 0; }
    @media screen and (max-width: 47.999em) {
      /* line 546, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footermeta__logo {
        margin: 40px 0; } }
    @media screen and (min-width: 62em) {
      /* line 546, Resources/Private/Frontend/sass/partials/_footer.scss */
      footer .footermeta__logo {
        float: right;
        margin: 0; } }
    /* line 564, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer .footermeta__logo a {
      background: url(../img/svg/ukk-logo.svg) transparent center 0 no-repeat;
      display: block;
      height: 80px;
      text-indent: -999em;
      margin: 0 auto; }
      @media screen and (max-width: 47.999em) {
        /* line 564, Resources/Private/Frontend/sass/partials/_footer.scss */
        footer .footermeta__logo a {
          background-size: 200px;
          width: 200px;
          background-position: center; } }
      @media screen and (min-width: 48em) {
        /* line 564, Resources/Private/Frontend/sass/partials/_footer.scss */
        footer .footermeta__logo a {
          background-size: 150px;
          width: 150px; } }
      @media screen and (min-width: 62em) {
        /* line 564, Resources/Private/Frontend/sass/partials/_footer.scss */
        footer .footermeta__logo a {
          background-size: 150px;
          left: 0; } }
      @media print {
        /* line 564, Resources/Private/Frontend/sass/partials/_footer.scss */
        footer .footermeta__logo a {
          display: none; } }
  @media print {
    /* line 21, Resources/Private/Frontend/sass/partials/_footer.scss */
    footer {
      -o-box-shadow: none;
      -ms-box-shadow: none;
      box-shadow: none; } }

/* line 601, Resources/Private/Frontend/sass/partials/_footer.scss */
.infektiologie .footermeta__association {
  display: block;
  padding: 0; }
  @media screen and (max-width: 47.999em) {
    /* line 601, Resources/Private/Frontend/sass/partials/_footer.scss */
    .infektiologie .footermeta__association {
      margin: 20px 0; } }
  @media screen and (max-width: 61.999em) {
    /* line 601, Resources/Private/Frontend/sass/partials/_footer.scss */
    .infektiologie .footermeta__association {
      margin: 10px 0 40px; } }
  @media screen and (min-width: 62em) {
    /* line 601, Resources/Private/Frontend/sass/partials/_footer.scss */
    .infektiologie .footermeta__association {
      margin: 0;
      padding-left: 35px; } }
  /* line 621, Resources/Private/Frontend/sass/partials/_footer.scss */
  .infektiologie .footermeta__association a {
    background: url("../img/png/logo-dzif.png") no-repeat center 0;
    display: block;
    height: 100px;
    text-indent: -999em; }
    @media screen and (max-width: 47.999em) {
      /* line 621, Resources/Private/Frontend/sass/partials/_footer.scss */
      .infektiologie .footermeta__association a {
        background-size: auto 90%;
        background-position: center; } }
    @media screen and (min-width: 48em) {
      /* line 621, Resources/Private/Frontend/sass/partials/_footer.scss */
      .infektiologie .footermeta__association a {
        background-size: auto 90%; } }
    @media screen and (min-width: 62em) {
      /* line 621, Resources/Private/Frontend/sass/partials/_footer.scss */
      .infektiologie .footermeta__association a {
        background-size: auto 90%;
        background-position: left 0; } }
    @media print {
      /* line 621, Resources/Private/Frontend/sass/partials/_footer.scss */
      .infektiologie .footermeta__association a {
        display: none; } }

/* line 650, Resources/Private/Frontend/sass/partials/_footer.scss */
.corp .footermeta__association {
  display: block;
  padding: 0; }
  @media screen and (max-width: 47.999em) {
    /* line 650, Resources/Private/Frontend/sass/partials/_footer.scss */
    .corp .footermeta__association {
      margin: 20px 0; } }
  @media screen and (max-width: 61.999em) {
    /* line 650, Resources/Private/Frontend/sass/partials/_footer.scss */
    .corp .footermeta__association {
      margin: 10px 0 40px;
      text-align: center; } }
  @media screen and (min-width: 62em) {
    /* line 650, Resources/Private/Frontend/sass/partials/_footer.scss */
    .corp .footermeta__association {
      margin: 0;
      padding-left: 35px; } }
  /* line 671, Resources/Private/Frontend/sass/partials/_footer.scss */
  .corp .footermeta__association a {
    display: block;
    text-indent: -999em;
    background: url("../img/png/logo_verband_ukk.png") no-repeat center 0;
    height: 56px; }
    @media screen and (max-width: 47.999em) {
      /* line 671, Resources/Private/Frontend/sass/partials/_footer.scss */
      .corp .footermeta__association a {
        background-size: 197px;
        background-position: center; } }
    @media screen and (min-width: 48em) {
      /* line 671, Resources/Private/Frontend/sass/partials/_footer.scss */
      .corp .footermeta__association a {
        background-size: 197px; } }
    @media screen and (min-width: 62em) {
      /* line 671, Resources/Private/Frontend/sass/partials/_footer.scss */
      .corp .footermeta__association a {
        background-size: 197px;
        background-position: left 0; } }
    @media print {
      /* line 671, Resources/Private/Frontend/sass/partials/_footer.scss */
      .corp .footermeta__association a {
        display: none; } }

/* line 699, Resources/Private/Frontend/sass/partials/_footer.scss */
.hcc .footermeta__association {
  display: block;
  padding: 0; }
  @media screen and (max-width: 47.999em) {
    /* line 699, Resources/Private/Frontend/sass/partials/_footer.scss */
    .hcc .footermeta__association {
      margin: 20px 0; } }
  @media screen and (max-width: 61.999em) {
    /* line 699, Resources/Private/Frontend/sass/partials/_footer.scss */
    .hcc .footermeta__association {
      margin: 10px 0 40px; } }
  @media screen and (min-width: 62em) {
    /* line 699, Resources/Private/Frontend/sass/partials/_footer.scss */
    .hcc .footermeta__association {
      margin: 0;
      padding-left: 35px; } }
  /* line 719, Resources/Private/Frontend/sass/partials/_footer.scss */
  .hcc .footermeta__association a {
    background: url("../img/png/logo_verband_ukk.png") no-repeat center 0;
    display: block;
    height: 56px;
    text-indent: -999em; }
    /* line 725, Resources/Private/Frontend/sass/partials/_footer.scss */
    .hcc .hcc .footermeta__association a {
      background: url("../img/png/Logo_CIO-Koeln-Bonn_RGB.png") no-repeat center;
      background-size: contain;
      height: 45px;
      margin-top: 5px; }
    @media screen and (max-width: 47.999em) {
      /* line 719, Resources/Private/Frontend/sass/partials/_footer.scss */
      .hcc .footermeta__association a {
        background-size: 197px;
        background-position: center; } }
    @media screen and (min-width: 48em) {
      /* line 719, Resources/Private/Frontend/sass/partials/_footer.scss */
      .hcc .footermeta__association a {
        background-size: 197px; } }
    @media screen and (min-width: 62em) {
      /* line 719, Resources/Private/Frontend/sass/partials/_footer.scss */
      .hcc .footermeta__association a {
        background-size: 197px;
        background-position: left 0; } }
    @media print {
      /* line 719, Resources/Private/Frontend/sass/partials/_footer.scss */
      .hcc .footermeta__association a {
        display: none; } }

/* line 759, Resources/Private/Frontend/sass/partials/_footer.scss */
.adopt .footermeta__association,
.cardia-trial-theme .footermeta__association {
  display: block;
  padding: 0; }
  @media screen and (max-width: 47.999em) {
    /* line 759, Resources/Private/Frontend/sass/partials/_footer.scss */
    .adopt .footermeta__association,
    .cardia-trial-theme .footermeta__association {
      margin: 20px 0; } }
  @media screen and (max-width: 61.999em) {
    /* line 759, Resources/Private/Frontend/sass/partials/_footer.scss */
    .adopt .footermeta__association,
    .cardia-trial-theme .footermeta__association {
      margin: 10px 0 40px; } }
  @media screen and (min-width: 62em) {
    /* line 759, Resources/Private/Frontend/sass/partials/_footer.scss */
    .adopt .footermeta__association,
    .cardia-trial-theme .footermeta__association {
      margin: 0;
      padding-left: 35px; } }
  /* line 779, Resources/Private/Frontend/sass/partials/_footer.scss */
  .adopt .footermeta__association a,
  .cardia-trial-theme .footermeta__association a {
    background: url("../img/jpg/ukk-logo-bmbf.jpg") no-repeat center 0;
    display: block;
    height: 138px;
    text-indent: -999em; }
    @media screen and (max-width: 47.999em) {
      /* line 779, Resources/Private/Frontend/sass/partials/_footer.scss */
      .adopt .footermeta__association a,
      .cardia-trial-theme .footermeta__association a {
        background-size: auto 100px;
        background-position: center; } }
    @media screen and (min-width: 48em) {
      /* line 779, Resources/Private/Frontend/sass/partials/_footer.scss */
      .adopt .footermeta__association a,
      .cardia-trial-theme .footermeta__association a {
        background-size: auto 100px; } }
    @media screen and (min-width: 62em) {
      /* line 779, Resources/Private/Frontend/sass/partials/_footer.scss */
      .adopt .footermeta__association a,
      .cardia-trial-theme .footermeta__association a {
        background-size: auto 100px;
        background-position: left 0; } }
    @media print {
      /* line 779, Resources/Private/Frontend/sass/partials/_footer.scss */
      .adopt .footermeta__association a,
      .cardia-trial-theme .footermeta__association a {
        display: none; } }

/* line 808, Resources/Private/Frontend/sass/partials/_footer.scss */
.consortium-fbuek .footermeta__association {
  display: block;
  padding: 0; }
  @media screen and (max-width: 47.999em) {
    /* line 808, Resources/Private/Frontend/sass/partials/_footer.scss */
    .consortium-fbuek .footermeta__association {
      margin: 20px 0; } }
  @media screen and (max-width: 61.999em) {
    /* line 808, Resources/Private/Frontend/sass/partials/_footer.scss */
    .consortium-fbuek .footermeta__association {
      margin: 10px 0 10px; } }
  @media screen and (min-width: 62em) {
    /* line 808, Resources/Private/Frontend/sass/partials/_footer.scss */
    .consortium-fbuek .footermeta__association {
      margin: 0;
      padding-left: 35px; } }
  /* line 828, Resources/Private/Frontend/sass/partials/_footer.scss */
  .consortium-fbuek .footermeta__association a {
    background: url("../img/png/logo-deutsche-krebshilfe.png") no-repeat center 0;
    display: block;
    height: 100px;
    text-indent: -999em; }
    @media screen and (max-width: 47.999em) {
      /* line 828, Resources/Private/Frontend/sass/partials/_footer.scss */
      .consortium-fbuek .footermeta__association a {
        background-size: auto 42.5%;
        background-position: center; } }
    @media screen and (min-width: 48em) {
      /* line 828, Resources/Private/Frontend/sass/partials/_footer.scss */
      .consortium-fbuek .footermeta__association a {
        background-size: auto 42.5%; } }
    @media screen and (min-width: 62em) {
      /* line 828, Resources/Private/Frontend/sass/partials/_footer.scss */
      .consortium-fbuek .footermeta__association a {
        background-size: auto 42.5%;
        background-position: left 0; } }
    @media print {
      /* line 828, Resources/Private/Frontend/sass/partials/_footer.scss */
      .consortium-fbuek .footermeta__association a {
        display: none; } }

/* line 857, Resources/Private/Frontend/sass/partials/_footer.scss */
.clinics .footermeta__fc-cologne {
  display: none; }

/**
 * brandung clinics/footer.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2016-03-24
 * MIT License (MIT)
 */
/* ==========================================================================
   Footer
   ========================================================================== */
/* line 21, Resources/Private/Frontend/sass/partials/clinics/_footer.scss */
body.clinics footer .footernav__headline {
  line-height: 1.4; }

/**
 * brandung search.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   Search
   ========================================================================== */
/* line 19, Resources/Private/Frontend/sass/partials/_search.scss */
.search {
  top: 70px; }
  @media screen and (min-width: 48em) {
    /* line 19, Resources/Private/Frontend/sass/partials/_search.scss */
    .search {
      top: 110px; } }
  @media screen and (max-width: 61.999em) {
    /* line 19, Resources/Private/Frontend/sass/partials/_search.scss */
    .search {
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
      transition: all 500ms ease;
      position: absolute;
      left: 0;
      right: 0;
      z-index: -1;
      opacity: 0;
      visibility: hidden; }
      /* line 36, Resources/Private/Frontend/sass/partials/_search.scss */
      .open-search .search {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
        visibility: visible; } }
  @media screen and (min-width: 62em) {
    /* line 19, Resources/Private/Frontend/sass/partials/_search.scss */
    .search {
      float: right; }
      /* line 49, Resources/Private/Frontend/sass/partials/_search.scss */
      .search:hover .search__form:before, .search:hover .search__form:after, .search.is-hover .search__form:before, .search.is-hover .search__form:after {
        display: block; }
      /* line 55, Resources/Private/Frontend/sass/partials/_search.scss */
      .search:hover .search__flyout, .search.is-hover .search__flyout {
        transition: all 500ms ease;
        -webkit-transform: translate3d(0, 37px, 0);
        transform: translate3d(0, 37px, 0);
        opacity: 1;
        width: 100%;
        left: auto; }
      /* line 67, Resources/Private/Frontend/sass/partials/_search.scss */
      .no-js .search:hover .search__form:before, .no-js .search:hover .search__form:after {
        display: block; }
      /* line 73, Resources/Private/Frontend/sass/partials/_search.scss */
      .no-js .search:hover .search__flyout {
        transition: all 500ms ease;
        -webkit-transform: translate3d(0, 37px, 0);
        transform: translate3d(0, 37px, 0);
        opacity: 1; } }
  /* line 83, Resources/Private/Frontend/sass/partials/_search.scss */
  .search__form {
    position: relative;
    width: 100%;
    z-index: 2; }
    @media screen and (min-width: 62em) {
      /* line 83, Resources/Private/Frontend/sass/partials/_search.scss */
      .search__form {
        width: 270px; }
        /* line 92, Resources/Private/Frontend/sass/partials/_search.scss */
        .search__form:before, .search__form:after {
          display: none;
          content: '';
          position: absolute;
          z-index: 20;
          bottom: -43px;
          left: 50%;
          margin-left: -12px;
          width: 0;
          height: 0;
          border-style: solid;
          border-width: 0 12px 14px 12px;
          border-color: transparent transparent #fff transparent; }
        /* line 109, Resources/Private/Frontend/sass/partials/_search.scss */
        .search__form:before {
          bottom: -42px;
          border-width: 0 13px 15px 13px;
          margin-left: -13px;
          border-color: transparent transparent #e1e1e1 transparent; } }
    @media screen and (min-width: 79.25em) {
      /* line 83, Resources/Private/Frontend/sass/partials/_search.scss */
      .search__form {
        width: 370px; } }
    /* line 121, Resources/Private/Frontend/sass/partials/_search.scss */
    .search__form fieldset {
      position: relative;
      border: 3px solid #0f2d64;
      margin-top: 9px;
      margin-bottom: 5px; }
    /* line 128, Resources/Private/Frontend/sass/partials/_search.scss */
    .search__form legend {
      position: absolute;
      text-indent: -90em; }
    /* line 133, Resources/Private/Frontend/sass/partials/_search.scss */
    .search__form input[type=text] {
      font-size: 15px;
      font-size: 0.9375rem;
      padding: 10px 20px;
      border: none;
      outline: none;
      width: 100%; }
    /* line 141, Resources/Private/Frontend/sass/partials/_search.scss */
    .search__form button {
      position: absolute;
      top: 0;
      right: 0;
      padding: 3px 10px 0px 0 !important;
      color: #cecece;
      border: none;
      text-decoration: none; }
      /* line 150, Resources/Private/Frontend/sass/partials/_search.scss */
      .search__form button:hover {
        background: #fff;
        color: #0f2d64; }
      /* line 155, Resources/Private/Frontend/sass/partials/_search.scss */
      .search__form button span {
        display: none; }
  /* line 161, Resources/Private/Frontend/sass/partials/_search.scss */
  .search__flyout {
    padding: 20px;
    background: #fff;
    color: #0f2d64;
    display: block;
    margin: 0; }
    @media screen and (min-width: 62em) {
      /* line 161, Resources/Private/Frontend/sass/partials/_search.scss */
      .search__flyout {
        -webkit-transform: translate3d(0, -200%, 0);
        transform: translate3d(0, -200%, 0);
        transition: all 500ms ease 500ms;
        position: absolute;
        left: 0;
        right: 0;
        z-index: -1;
        border-top: 1px solid #e1e1e1;
        opacity: 0; }
        /* line 179, Resources/Private/Frontend/sass/partials/_search.scss */
        .search__flyout .col-l-4:nth-child(4), .search__flyout footer .footermeta__link:nth-child(4), footer .search__flyout .footermeta__link:nth-child(4), .search__flyout footer .footermeta__association:nth-child(4), footer .search__flyout .footermeta__association:nth-child(4), .search__flyout .infektiologie .footermeta__association:nth-child(4), .infektiologie .search__flyout .footermeta__association:nth-child(4), .search__flyout .corp .footermeta__association:nth-child(4), .corp .search__flyout .footermeta__association:nth-child(4), .search__flyout .hcc .footermeta__association:nth-child(4), .hcc .search__flyout .footermeta__association:nth-child(4), .search__flyout .adopt .footermeta__association:nth-child(4), .adopt .search__flyout .footermeta__association:nth-child(4),
        .search__flyout .cardia-trial-theme .footermeta__association:nth-child(4), .cardia-trial-theme .search__flyout .footermeta__association:nth-child(4), .search__flyout .consortium-fbuek .footermeta__association:nth-child(4), .consortium-fbuek .search__flyout .footermeta__association:nth-child(4), .search__flyout .tab-accordion__slider:nth-child(4) {
          clear: both; }
        /* line 183, Resources/Private/Frontend/sass/partials/_search.scss */
        .search__flyout.is-active {
          display: block; } }
    /* line 188, Resources/Private/Frontend/sass/partials/_search.scss */
    .search__flyout select {
      width: 100%;
      margin-bottom: 20px; }
  /* line 194, Resources/Private/Frontend/sass/partials/_search.scss */
  .search__topic {
    margin: 0 0 20px; }
  @media print {
    /* line 19, Resources/Private/Frontend/sass/partials/_search.scss */
    .search {
      display: none; } }

/* mobile hamburger menu */
/* line 209, Resources/Private/Frontend/sass/partials/_search.scss */
.search-anchors {
  display: none; }
  /* line 212, Resources/Private/Frontend/sass/partials/_search.scss */
  .search-anchors__open:before {
    color: #0f2d64; }
  /* line 216, Resources/Private/Frontend/sass/partials/_search.scss */
  .search-anchors__close:before {
    color: #fff; }
  @media screen and (max-width: 61.999em) {
    /* line 209, Resources/Private/Frontend/sass/partials/_search.scss */
    .search-anchors {
      display: block;
      position: relative;
      margin-left: 35px; }
      /* line 225, Resources/Private/Frontend/sass/partials/_search.scss */
      .search-anchors a {
        position: relative;
        overflow: hidden;
        text-indent: -999em;
        width: 35px;
        height: 35px; }
        /* line 232, Resources/Private/Frontend/sass/partials/_search.scss */
        .search-anchors a:before {
          font-family: 'icomoon';
          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;
          font-size: 40px;
          font-size: 2.5rem;
          position: absolute;
          width: 35px;
          height: 35px;
          top: 50%;
          left: 47%;
          text-indent: 0;
          margin-top: -20px;
          margin-left: -22px;
          display: inline-block;
          overflow: hidden;
          line-height: .9em; }
        /* line 263, Resources/Private/Frontend/sass/partials/_search.scss */
        .search-anchors a.search-anchors__close {
          background: #0f2d64; }
      /* line 268, Resources/Private/Frontend/sass/partials/_search.scss */
      .search-anchors__open {
        display: inline-block; }
        /* line 270, Resources/Private/Frontend/sass/partials/_search.scss */
        .search-anchors__open:before {
          content: "\e626"; }
      /* line 275, Resources/Private/Frontend/sass/partials/_search.scss */
      .search-anchors__close {
        display: none; }
        /* line 277, Resources/Private/Frontend/sass/partials/_search.scss */
        .search-anchors__close:before {
          content: "\e606";
          font-size: 30px !important;
          margin: -15px 0 0 -19px !important; } }
  @media screen and (max-width: 47.999em) {
    /* line 209, Resources/Private/Frontend/sass/partials/_search.scss */
    .search-anchors {
      margin-top: -3px; } }
  @media print {
    /* line 209, Resources/Private/Frontend/sass/partials/_search.scss */
    .search-anchors {
      display: none; } }

@media screen and (max-width: 61.999em) {
  /* line 298, Resources/Private/Frontend/sass/partials/_search.scss */
  #search-nav:target fieldset,
  .open-search fieldset {
    margin-top: 0; }
  /* line 302, Resources/Private/Frontend/sass/partials/_search.scss */
  #search-nav:target .search-anchors,
  .open-search .search-anchors {
    background: #fff; }
    /* line 305, Resources/Private/Frontend/sass/partials/_search.scss */
    #search-nav:target .search-anchors__open,
    .open-search .search-anchors__open {
      display: none; }
    /* line 309, Resources/Private/Frontend/sass/partials/_search.scss */
    #search-nav:target .search-anchors__close,
    .open-search .search-anchors__close {
      display: inline-block !important; } }

/**
 * brandung clinics/search.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Header
   ========================================================================== */
@media screen and (min-width: 62em) {
  /* line 21, Resources/Private/Frontend/sass/partials/clinics/_search.scss */
  body.clinics .search:hover form:after, body.clinics .search:hover form:before {
    display: none; } }

/* line 26, Resources/Private/Frontend/sass/partials/clinics/_search.scss */
body.clinics .search__flyout {
  display: none; }

/**
 * brandung service-navigation.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Service-Navigation
   ========================================================================== */
@media screen and (min-width: 62em) {
  /* line 19, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
  .clinics .service-navigation {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    /* line 24, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
    .clinics .service-navigation .lang-switch {
      width: auto; } }

/* line 30, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
.service-navigation {
  position: relative;
  z-index: 30; }
  @media screen and (min-width: 62em) {
    /* line 30, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
    .service-navigation {
      margin: 0 -20px;
      padding-bottom: 20px; } }
  @media screen and (max-width: 61.999em) {
    /* line 43, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
    .service-navigation__list {
      display: none;
      background-color: #f6f6f6;
      width: 25%; }
      /* line 52, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
      .service-navigation__list.clone {
        display: block; }
        /* line 55, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
        .service-navigation__list.clone .is--langswitch {
          width: 100%; } }
  @media screen and (min-width: 62em) {
    /* line 43, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
    .service-navigation__list {
      float: right; } }
  /* line 65, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
  .service-navigation__list:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }
  /* line 76, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
  .service-navigation__item, .service-navigation__item--emergency, .service-navigation__item--international {
    width: 50%;
    float: left;
    margin: 0; }
    @media screen and (max-width: 61.999em) {
      /* line 84, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
      .service-navigation__item:nth-child(2n) a, .service-navigation__item--emergency:nth-child(2n) a, .service-navigation__item--international:nth-child(2n) a {
        border-right: 0; }
      /* line 89, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
      .service-navigation__item:nth-child(2n+1), .service-navigation__item--emergency:nth-child(2n+1), .service-navigation__item--international:nth-child(2n+1) {
        clear: left; }
      /* line 93, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
      .service-navigation__item:last-child a, .service-navigation__item--emergency:last-child a, .service-navigation__item--international:last-child a {
        border-bottom: 0; } }
    @media screen and (min-width: 62em) {
      /* line 76, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
      .service-navigation__item, .service-navigation__item--emergency, .service-navigation__item--international {
        width: auto;
        position: relative; } }
    /* line 103, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
    .service-navigation__item > a, .service-navigation__item--emergency > a, .service-navigation__item--international > a {
      position: relative;
      display: block;
      padding: 20px 0 20px 45px;
      text-decoration: none;
      color: #565656; }
      /* line 110, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
      .service-navigation__item > a[target="_blank"], .service-navigation__item--emergency > a[target="_blank"], .service-navigation__item--international > a[target="_blank"] {
        margin-right: 0; }
        /* line 112, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
        .service-navigation__item > a[target="_blank"]:after, .service-navigation__item--emergency > a[target="_blank"]:after, .service-navigation__item--international > a[target="_blank"]:after {
          display: none; }
        /* line 115, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
        .service-navigation__item > a[target="_blank"]:visited, .service-navigation__item--emergency > a[target="_blank"]:visited, .service-navigation__item--international > a[target="_blank"]:visited {
          color: #565656; }
      @media screen and (max-width: 61.999em) {
        /* line 103, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
        .service-navigation__item > a, .service-navigation__item--emergency > a, .service-navigation__item--international > a {
          border: 1px solid #e1e1e1;
          border-bottom: 0;
          border-left: 0; } }
      @media screen and (min-width: 62em) {
        /* line 103, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
        .service-navigation__item > a, .service-navigation__item--emergency > a, .service-navigation__item--international > a {
          font-size: 11px;
          font-size: 0.6875rem;
          padding: 10px 20px 10px 50px;
          font-weight: 700; } }
      /* line 132, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
      .service-navigation__item > a:before, .service-navigation__item--emergency > a:before, .service-navigation__item--international > a:before {
        font-size: 26px;
        font-size: 1.625rem;
        position: absolute;
        left: 10px;
        top: 4px; }
        @media screen and (max-width: 61.999em) {
          /* line 132, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
          .service-navigation__item > a:before, .service-navigation__item--emergency > a:before, .service-navigation__item--international > a:before {
            top: 19px; } }
    @media screen and (min-width: 62em) {
      /* line 146, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
      .service-navigation__item.is-hover > a, .is-hover.service-navigation__item--emergency > a, .is-hover.service-navigation__item--international > a {
        color: #fff;
        background-color: #8a99a7; } }
    /* line 151, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
    .service-navigation__item.is-hover > a[target="_blank"]:visited, .is-hover.service-navigation__item--emergency > a[target="_blank"]:visited, .is-hover.service-navigation__item--international > a[target="_blank"]:visited {
      color: #fff; }
    /* line 156, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
    .service-navigation__item.is-hover .service-navigation__flyout, .is-hover.service-navigation__item--emergency .service-navigation__flyout, .is-hover.service-navigation__item--international .service-navigation__flyout {
      display: block; }
    @media screen and (min-width: 62em) {
      /* line 164, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
      .no-js .service-navigation__item:hover > a, .no-js .service-navigation__item--emergency:hover > a, .no-js .service-navigation__item--international:hover > a {
        color: #fff;
        background-color: #8a99a7; } }
    /* line 171, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
    .no-js .service-navigation__item:hover .service-navigation__flyout, .no-js .service-navigation__item--emergency:hover .service-navigation__flyout, .no-js .service-navigation__item--international:hover .service-navigation__flyout {
      display: block; }
    @media screen and (min-width: 62em) {
      /* line 181, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
      .service-navigation__item:nth-child(n+3) .service-navigation__flyout, .service-navigation__item--emergency:nth-child(n+3) .service-navigation__flyout, .service-navigation__item--international:nth-child(n+3) .service-navigation__flyout, .service-navigation__item:nth-child(n+4) .service-navigation__flyout, .service-navigation__item--emergency:nth-child(n+4) .service-navigation__flyout, .service-navigation__item--international:nth-child(n+4) .service-navigation__flyout {
        left: auto;
        right: 0; } }
    /* line 188, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
    .service-navigation__item--contact {
      border-bottom: 1px solid #e1e1e1; }
      @media screen and (min-width: 62em) {
        /* line 188, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
        .service-navigation__item--contact {
          border-bottom: 0; } }
      @media screen and (max-width: 61.999em) {
        /* line 195, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
        .service-navigation__item--contact .col-xs-3 {
          width: 67px; } }
    /* line 205, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
    .service-navigation__item--emergency > a {
      color: #ce2c2c; }
    @media screen and (min-width: 62em) {
      /* line 210, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
      .service-navigation__item--emergency:hover > a {
        background: #ce2c2c;
        color: #fff; } }
    /* line 218, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
    .service-navigation__item--emergency .service-navigation__flyout {
      background: #ce2c2c; }
      /* line 221, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
      .service-navigation__item--emergency .service-navigation__flyout a {
        display: inline-block;
        width: 80%; }
      /* line 226, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
      .service-navigation__item--emergency .service-navigation__flyout hr {
        color: #e7e7e7; }
    /* line 232, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
    .service-navigation__item--international {
      width: 100%; }
      @media screen and (min-width: 62em) {
        /* line 232, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
        .service-navigation__item--international {
          width: auto; } }
  /* line 242, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
  .service-navigation__flyout {
    font-size: 14px;
    font-size: 0.875rem;
    background: #8a99a7;
    color: #fff;
    display: none; }
    /* line 248, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
    .service-navigation__flyout a.link--more:visited,
    .service-navigation__flyout a[target="_blank"]:visited {
      color: #fff; }
    /* line 253, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
    .service-navigation__flyout .row, .service-navigation__flyout .color-pattern {
      margin-bottom: 15px; }
      /* line 256, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
      .service-navigation__flyout .row:last-of-type, .service-navigation__flyout .color-pattern:last-of-type {
        margin-bottom: 0; }
    /* line 262, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
    .clone .service-navigation__flyout {
      position: absolute;
      width: 25%;
      top: 0;
      left: 50%;
      display: block;
      visibility: hidden;
      padding: 20px; }
      /* line 273, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
      .clone .service-navigation__flyout .clone {
        margin: -20px -20px 20px;
        border-bottom: 1px solid #fff; }
        /* line 277, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
        .clone .service-navigation__flyout .clone a {
          font-size: 16px;
          font-size: 1rem;
          color: #fff;
          padding: 23px 20px 0 0;
          display: inline-block; }
          /* line 283, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
          .clone .service-navigation__flyout .clone a:before {
            display: inline-block;
            line-height: .9em;
            overflow: hidden;
            float: left;
            margin-top: -5px; }
          /* line 291, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
          .clone .service-navigation__flyout .clone a:after {
            display: none; }
          /* line 295, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
          .clone .service-navigation__flyout .clone a.lang {
            text-decoration: none; }
    @media screen and (max-width: 61.999em) {
      /* line 309, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
      .service-navigation__flyout.is-active {
        left: 25%;
        visibility: visible; } }
    @media screen and (min-width: 62em) {
      /* line 242, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
      .service-navigation__flyout {
        position: absolute;
        width: 320px;
        padding: 30px;
        left: 0; } }
    /* line 322, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
    .service-navigation__flyout a {
      position: relative;
      text-decoration: underline;
      color: #0f2d64;
      color: #fff; }
      /* line 171, Resources/Private/Frontend/sass/partials/_mixins.scss */
      .service-navigation__flyout a:hover {
        text-decoration: none; }
      /* line 326, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
      .service-navigation__flyout a:after {
        overflow: hidden;
        line-height: .9em; }
      /* line 332, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
      .service-navigation__flyout a[href*="//www.google.de/maps/"].link--more {
        text-decoration: underline !important; }
        /* line 335, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
        .service-navigation__flyout a[href*="//www.google.de/maps/"].link--more:hover {
          text-decoration: none !important; }
    /* line 342, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
    .service-navigation__flyout p {
      line-height: 21px;
      margin: 0;
      padding-top: 10px; }
    /* line 354, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
    .service-navigation__flyout .icon-only {
      font-size: 20px;
      font-size: 1.25rem;
      clear: both;
      float: left;
      width: 35px;
      text-align: center;
      margin-right: 10px;
      margin-bottom: 15px; }
      /* line 363, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
      .service-navigation__flyout .icon-only:before {
        float: left;
        margin-left: -5px;
        margin-top: -5px; }
      /* line 369, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
      .service-navigation__flyout .icon-only.icon-emergency {
        font-size: 30px;
        font-size: 1.875rem; }
        /* line 372, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
        .service-navigation__flyout .icon-only.icon-emergency:before {
          font-size: 37px;
          margin: -7px 0;
          padding: 0; }
      /* line 379, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
      .service-navigation__flyout .icon-only + a {
        display: inline-block;
        margin-top: 3px; }
      /* line 384, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
      .service-navigation__flyout .icon-only.icon-location {
        min-height: 90px;
        margin-bottom: 0; }
    /* line 390, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
    .service-navigation__flyout .col-xs-3 .icon-phone01 {
      margin-top: 3px; }
    /* line 394, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
    .service-navigation__flyout > .lang {
      text-decoration: none; }
      /* line 397, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
      .service-navigation__flyout > .lang.icon-english {
        padding-left: 32px; }
        /* line 400, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
        .service-navigation__flyout > .lang.icon-english:before {
          font-size: 26px;
          font-size: 1.625rem;
          background: none;
          display: inline-block;
          line-height: .9em;
          opacity: 1;
          padding: 0;
          position: absolute;
          width: auto;
          height: auto;
          top: -2px;
          left: 0; }
  /* line 417, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
  .service-navigation .corp .lang-switch {
    float: right;
    width: 100%; }
  /* line 424, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
  .service-navigation .lang:after {
    display: none; }
  /* line 428, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
  .service-navigation .lang + .service-navigation__flyout {
    width: auto; }
  @media print {
    /* line 30, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
    .service-navigation {
      display: none; } }

@media screen and (min-width: 62em) {
  /* line 438, Resources/Private/Frontend/sass/partials/_service-navigation.scss */
  .clone,
  .js-show-more {
    display: none !important; } }

/* no-js */
/**
 * brandung navigation.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Navigation
   ========================================================================== */
/* line 19, Resources/Private/Frontend/sass/partials/_navigation.scss */
.nav {
  position: relative;
  background: #fff; }
  /* line 23, Resources/Private/Frontend/sass/partials/_navigation.scss */
  .nav .icon-arrowright {
    margin-top: -5px;
    float: right; }
    @media screen and (min-width: 62em) {
      /* line 23, Resources/Private/Frontend/sass/partials/_navigation.scss */
      .nav .icon-arrowright {
        display: none; } }
  @media screen and (max-width: 61.999em) {
    /* line 19, Resources/Private/Frontend/sass/partials/_navigation.scss */
    .nav {
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
      transition: all 500ms ease;
      clear: both;
      position: absolute;
      width: 100%;
      z-index: -1;
      overflow: hidden;
      background: none; } }
  @media screen and (min-width: 62em) {
    /* line 19, Resources/Private/Frontend/sass/partials/_navigation.scss */
    .nav {
      margin-left: -20px;
      margin-right: -20px; } }
  /* line 53, Resources/Private/Frontend/sass/partials/_navigation.scss */
  .nav__list {
    border-bottom: 1px solid #e1e1e1; }
    @media screen and (max-width: 61.999em) {
      /* line 53, Resources/Private/Frontend/sass/partials/_navigation.scss */
      .nav__list {
        transition: all 500ms ease;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        width: 400%;
        border: none;
        opacity: 0;
        visibility: hidden; }
        /* line 68, Resources/Private/Frontend/sass/partials/_navigation.scss */
        .open-nav .nav__list {
          opacity: 1;
          visibility: visible; }
        /* line 73, Resources/Private/Frontend/sass/partials/_navigation.scss */
        .nav__list.is-active {
          -webkit-transform: translate3d(-25%, 0, 0);
          transform: translate3d(-25%, 0, 0); }
          /* line 76, Resources/Private/Frontend/sass/partials/_navigation.scss */
          .nav__list.is-active.third-lv {
            -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0); } }
    @media screen and (min-width: 62em) {
      /* line 53, Resources/Private/Frontend/sass/partials/_navigation.scss */
      .nav__list {
        text-align: center; } }
    /* line 86, Resources/Private/Frontend/sass/partials/_navigation.scss */
    .nav__list > li > .nav__flyout > ul > li {
      position: static; }
      @media screen and (max-width: 61.999em) {
        /* line 91, Resources/Private/Frontend/sass/partials/_navigation.scss */
        .nav__list > li > .nav__flyout > ul > li:not(.is-hidden), .nav__list > li > .nav__flyout > ul > li.is-active {
          width: 100%;
          display: block; } }
    @media screen and (min-width: 62em) {
      /* line 99, Resources/Private/Frontend/sass/partials/_navigation.scss */
      .nav__list > li.last-item {
        display: inline-block !important; } }
    @media screen and (min-width: 62em) {
      /* line 105, Resources/Private/Frontend/sass/partials/_navigation.scss */
      .nav__list > li:last-of-type {
        display: none; } }
  /* line 112, Resources/Private/Frontend/sass/partials/_navigation.scss */
  .nav__list-item {
    margin-bottom: 0; }
    @media screen and (max-width: 61.999em) {
      /* line 112, Resources/Private/Frontend/sass/partials/_navigation.scss */
      .nav__list-item {
        background: #fff;
        width: 25%; }
        /* line 119, Resources/Private/Frontend/sass/partials/_navigation.scss */
        .nav__list-item:first-child > a {
          border-top: 1px solid #e1e1e1; } }
    @media screen and (min-width: 62em) {
      /* line 112, Resources/Private/Frontend/sass/partials/_navigation.scss */
      .nav__list-item {
        display: inline-block; } }
    /* line 131, Resources/Private/Frontend/sass/partials/_navigation.scss */
    .nav__list-item.is-hover > a {
      color: #0f2d64; }
      @media screen and (min-width: 62em) {
        /* line 136, Resources/Private/Frontend/sass/partials/_navigation.scss */
        .nav__list-item.is-hover > a:before, .nav__list-item.is-hover > a:after {
          display: block; } }
    @media screen and (min-width: 62em) {
      /* line 143, Resources/Private/Frontend/sass/partials/_navigation.scss */
      .nav__list-item.is-hover .nav__flyout {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1; } }
    /* line 154, Resources/Private/Frontend/sass/partials/_navigation.scss */
    .no-js .nav__list-item:hover > a {
      color: #0f2d64; }
      @media screen and (min-width: 62em) {
        /* line 159, Resources/Private/Frontend/sass/partials/_navigation.scss */
        .no-js .nav__list-item:hover > a:before, .no-js .nav__list-item:hover > a:after {
          display: block; } }
    @media screen and (min-width: 62em) {
      /* line 166, Resources/Private/Frontend/sass/partials/_navigation.scss */
      .no-js .nav__list-item:hover .nav__flyout {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1; } }
    /* line 176, Resources/Private/Frontend/sass/partials/_navigation.scss */
    .nav__list-item a {
      display: block;
      text-decoration: none; }
    /* line 181, Resources/Private/Frontend/sass/partials/_navigation.scss */
    .nav__list-item > a {
      position: relative;
      color: #565656; }
      @media screen and (max-width: 61.999em) {
        /* line 181, Resources/Private/Frontend/sass/partials/_navigation.scss */
        .nav__list-item > a {
          padding: 20px;
          border-bottom: 1px solid #e1e1e1;
          color: #0f2d64; } }
      @media screen and (min-width: 62em) {
        /* line 181, Resources/Private/Frontend/sass/partials/_navigation.scss */
        .nav__list-item > a {
          font-size: 14px;
          font-size: 0.875rem;
          margin-bottom: 30px;
          padding: 22px 8px 21px;
          border-right: 1px solid #e1e1e1; }
          /* line 197, Resources/Private/Frontend/sass/partials/_navigation.scss */
          .nav__list-item > a:before, .nav__list-item > a:after {
            display: none;
            content: '';
            position: absolute;
            z-index: 20;
            bottom: -31px;
            left: 50%;
            margin-left: -12px;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 0 12px 14px 12px;
            border-color: transparent transparent #fff transparent; }
          /* line 213, Resources/Private/Frontend/sass/partials/_navigation.scss */
          .nav__list-item > a:before {
            bottom: -30px;
            border-width: 0 13px 15px 13px;
            margin-left: -13px;
            border-color: transparent transparent #e1e1e1 transparent; } }
      @media screen and (min-width: 75em) {
        /* line 181, Resources/Private/Frontend/sass/partials/_navigation.scss */
        .nav__list-item > a {
          font-size: 16px;
          font-size: 1rem;
          padding: 20px; } }
      @media screen and (min-width: 87.5em) {
        /* line 181, Resources/Private/Frontend/sass/partials/_navigation.scss */
        .nav__list-item > a {
          font-size: 18px;
          font-size: 1.125rem;
          font-weight: 400;
          padding: 20px 25px; } }
    /* line 233, Resources/Private/Frontend/sass/partials/_navigation.scss */
    .nav__list-item:last-child a {
      border-right: none; }
  /* line 238, Resources/Private/Frontend/sass/partials/_navigation.scss */
  .nav__flyout {
    color: #0f2d64;
    display: none;
    text-align: left; }
    @media screen and (max-width: 61.999em) {
      /* line 238, Resources/Private/Frontend/sass/partials/_navigation.scss */
      .nav__flyout {
        display: block;
        position: absolute;
        top: 0;
        left: 50%;
        width: 25%;
        background: #fff;
        visibility: hidden; }
        /* line 252, Resources/Private/Frontend/sass/partials/_navigation.scss */
        .nav__flyout.is-active {
          left: 25%; } }
    /* line 257, Resources/Private/Frontend/sass/partials/_navigation.scss */
    .nav__flyout .nav__flyout--3rd {
      display: none;
      width: 100%;
      left: 100%; }
      @media screen and (max-width: 61.999em) {
        /* line 257, Resources/Private/Frontend/sass/partials/_navigation.scss */
        .nav__flyout .nav__flyout--3rd {
          display: block; } }
      /* line 266, Resources/Private/Frontend/sass/partials/_navigation.scss */
      .nav__flyout .nav__flyout--3rd.is-active {
        left: 100%; }
    /* line 271, Resources/Private/Frontend/sass/partials/_navigation.scss */
    .nav__flyout .icon-arrowright {
      font-size: 10px;
      margin-top: -1px; }
    /* line 276, Resources/Private/Frontend/sass/partials/_navigation.scss */
    .nav__flyout.is-active {
      visibility: visible; }
    @media screen and (min-width: 62em) {
      /* line 238, Resources/Private/Frontend/sass/partials/_navigation.scss */
      .nav__flyout {
        -o-box-shadow: 0 3px 5px rgba(0,0,0,.2);
        -ms-box-shadow: 0 3px 5px rgba(0,0,0,.2);
        box-shadow: 0 3px 5px rgba(0,0,0,.2);
        transition: all 500ms ease;
        -webkit-transform: translate3d(0, -150%, 0);
        transform: translate3d(0, -150%, 0);
        display: block;
        opacity: 0;
        position: absolute;
        left: 0;
        right: 0;
        width: 100%;
        padding: 30px 20px 20px;
        background: rgba(255, 255, 255, 0.95);
        z-index: -1; } }
    @media screen and (min-width: 62em) {
      /* line 295, Resources/Private/Frontend/sass/partials/_navigation.scss */
      .nav__flyout ul {
        padding-right: 20px; } }
    @media screen and (max-width: 61.999em) {
      /* line 301, Resources/Private/Frontend/sass/partials/_navigation.scss */
      .nav__flyout li {
        padding: 0;
        margin: 0; }
        /* line 308, Resources/Private/Frontend/sass/partials/_navigation.scss */
        .nav__flyout li.is-hidden {
          display: none; }
        /* line 312, Resources/Private/Frontend/sass/partials/_navigation.scss */
        .nav__flyout li.is-active {
          display: block; } }
    @media screen and (min-width: 62em) {
      /* line 301, Resources/Private/Frontend/sass/partials/_navigation.scss */
      .nav__flyout li {
        padding-bottom: 20px;
        font-weight: 700;
        margin-bottom: 20px; }
        /* line 322, Resources/Private/Frontend/sass/partials/_navigation.scss */
        .nav__flyout li:nth-child(-n+4) a {
          display: block;
          color: #0f2d64;
          text-decoration: none;
          padding: 20px 20px 0 20px; }
        /* line 329, Resources/Private/Frontend/sass/partials/_navigation.scss */
        .nav__flyout li:nth-child(4) {
          border-right: none; }
        /* line 333, Resources/Private/Frontend/sass/partials/_navigation.scss */
        .nav__flyout li:nth-child(5) {
          clear: left; } }
    /* line 339, Resources/Private/Frontend/sass/partials/_navigation.scss */
    .nav__flyout a {
      color: #0f2d64; }
      @media screen and (max-width: 61.999em) {
        /* line 339, Resources/Private/Frontend/sass/partials/_navigation.scss */
        .nav__flyout a {
          font-size: 14px;
          font-size: 0.875rem;
          padding: 15px 20px;
          border-bottom: 1px solid #e1e1e1;
          color: #565656; } }
      @media screen and (min-width: 62em) {
        /* line 339, Resources/Private/Frontend/sass/partials/_navigation.scss */
        .nav__flyout a {
          padding-left: 20px; } }
    /* line 355, Resources/Private/Frontend/sass/partials/_navigation.scss */
    .nav__flyout .clone {
      background: #8a99a7; }
      /* line 362, Resources/Private/Frontend/sass/partials/_navigation.scss */
      .nav__flyout .clone a {
        font-size: 16px;
        font-size: 1rem;
        color: #fff;
        padding: 20px; }
        /* line 367, Resources/Private/Frontend/sass/partials/_navigation.scss */
        .nav__flyout .clone a:after {
          font-size: 30px;
          font-size: 1.875rem;
          display: inline-block;
          position: absolute;
          line-height: .8em; }
        /* line 376, Resources/Private/Frontend/sass/partials/_navigation.scss */
        .nav__flyout .clone a .icon-arrowright {
          display: none; }
  /* line 383, Resources/Private/Frontend/sass/partials/_navigation.scss */
  .nav__back-btn {
    font-size: 12px;
    font-size: 0.75rem;
    display: block;
    float: left;
    padding-top: 13px;
    cursor: pointer;
    color: #fff;
    width: 75px;
    height: 63px;
    overflow: hidden;
    border-right: 1px solid #fff;
    text-align: center;
    margin: 0 20px 0 0 !important; }
    /* line 397, Resources/Private/Frontend/sass/partials/_navigation.scss */
    .nav__back-btn:before {
      font-size: 30px;
      font-size: 1.875rem;
      margin-top: -5px;
      display: block; }
  /* line 406, Resources/Private/Frontend/sass/partials/_navigation.scss */
  .nav .js-show-more {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 15px 20px;
    border-bottom: 1px solid #e1e1e1;
    text-align: center;
    cursor: pointer; }
    /* line 413, Resources/Private/Frontend/sass/partials/_navigation.scss */
    .nav .js-show-more:before {
      font-size: 50px;
      font-size: 3.125rem;
      display: inline-block;
      margin-right: 10px;
      vertical-align: middle; }
  @media print {
    /* line 19, Resources/Private/Frontend/sass/partials/_navigation.scss */
    .nav {
      display: none; } }

/* overlay layer on active menu */
/* line 433, Resources/Private/Frontend/sass/partials/_navigation.scss */
.overlay-background {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(10, 9, 9, 0.57);
  top: 0;
  bottom: 0;
  display: none;
  z-index: 1; }
  @media screen and (min-width: 62em) {
    /* line 433, Resources/Private/Frontend/sass/partials/_navigation.scss */
    .overlay-background {
      display: none !important;
      background: none; } }

/* mobile hamburger menu */
/* line 450, Resources/Private/Frontend/sass/partials/_navigation.scss */
.nav-anchors {
  display: none; }
  /* line 453, Resources/Private/Frontend/sass/partials/_navigation.scss */
  .nav-anchors__open:before {
    color: #0f2d64; }
  /* line 457, Resources/Private/Frontend/sass/partials/_navigation.scss */
  .nav-anchors__close:before {
    color: #fff; }
  @media screen and (max-width: 61.999em) {
    /* line 450, Resources/Private/Frontend/sass/partials/_navigation.scss */
    .nav-anchors {
      display: block;
      position: relative;
      margin-left: 35px; }
      /* line 466, Resources/Private/Frontend/sass/partials/_navigation.scss */
      .nav-anchors a {
        position: relative;
        overflow: hidden;
        text-indent: -999em;
        width: 35px;
        height: 35px; }
        /* line 473, Resources/Private/Frontend/sass/partials/_navigation.scss */
        .nav-anchors a:before {
          font-family: 'icomoon';
          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;
          font-size: 60px;
          font-size: 3.75rem;
          display: inline-block;
          overflow: hidden;
          line-height: .9em;
          position: absolute;
          width: 60px;
          height: 60px;
          top: 50%;
          left: 47%;
          text-indent: 0;
          margin-top: -30px;
          margin-left: -35px; }
        /* line 505, Resources/Private/Frontend/sass/partials/_navigation.scss */
        .nav-anchors a.nav-anchors__close {
          background: #0f2d64; }
      /* line 510, Resources/Private/Frontend/sass/partials/_navigation.scss */
      .nav-anchors__open {
        display: inline-block; }
        /* line 513, Resources/Private/Frontend/sass/partials/_navigation.scss */
        .nav-anchors__open:before {
          content: "\e617"; }
      /* line 518, Resources/Private/Frontend/sass/partials/_navigation.scss */
      .nav-anchors__close {
        display: none; }
        /* line 521, Resources/Private/Frontend/sass/partials/_navigation.scss */
        .nav-anchors__close:before {
          content: "\e606";
          font-size: 30px !important;
          margin: -15px 0 0 -19px !important; } }
  @media screen and (max-width: 47.999em) {
    /* line 450, Resources/Private/Frontend/sass/partials/_navigation.scss */
    .nav-anchors {
      margin-top: -3px; } }
  @media print {
    /* line 450, Resources/Private/Frontend/sass/partials/_navigation.scss */
    .nav-anchors {
      display: none; } }

@media screen and (max-width: 61.999em) {
  /* line 542, Resources/Private/Frontend/sass/partials/_navigation.scss */
  #open-nav:target .nav,
  .open-nav .nav {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  /* line 546, Resources/Private/Frontend/sass/partials/_navigation.scss */
  #open-nav:target .nav-anchors,
  .open-nav .nav-anchors {
    background: #fff; }
    /* line 549, Resources/Private/Frontend/sass/partials/_navigation.scss */
    #open-nav:target .nav-anchors__open,
    .open-nav .nav-anchors__open {
      display: none; }
    /* line 553, Resources/Private/Frontend/sass/partials/_navigation.scss */
    #open-nav:target .nav-anchors__close,
    .open-nav .nav-anchors__close {
      display: inline-block !important; } }

@media screen and (min-width: 62em) {
  /* line 564, Resources/Private/Frontend/sass/partials/_navigation.scss */
  .stadtwaldguertel .nav .nav__list > li:last-of-type {
    display: inline-block !important;
    border-right: 1px solid #e1e1e1 !important; } }

@media screen and (min-width: 62em) {
  /* line 576, Resources/Private/Frontend/sass/partials/_navigation.scss */
  .amyloidosezentrum .nav .nav__list > li:last-of-type {
    display: inline-block !important;
    border-right: 1px solid #e1e1e1 !important; } }

/**
 * brandung clinics/navigation.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Header
   ========================================================================== */
@media screen and (min-width: 62em) {
  /* line 21, Resources/Private/Frontend/sass/partials/clinics/_navigation.scss */
  body.clinics nav {
    clear: both; }
  /* line 25, Resources/Private/Frontend/sass/partials/clinics/_navigation.scss */
  body.clinics .nav__flyout {
    padding-top: 40px; }
  /* line 29, Resources/Private/Frontend/sass/partials/clinics/_navigation.scss */
  body.clinics .nav__list {
    text-align: left;
    border-bottom: 0; }
    /* line 33, Resources/Private/Frontend/sass/partials/clinics/_navigation.scss */
    body.clinics .nav__list > li > a {
      padding: 10px; }
    /* line 37, Resources/Private/Frontend/sass/partials/clinics/_navigation.scss */
    body.clinics .nav__list > li:first-child {
      margin-left: 20px; }
      /* line 40, Resources/Private/Frontend/sass/partials/clinics/_navigation.scss */
      body.clinics .nav__list > li:first-child a {
        padding-left: 0; }
    /* line 45, Resources/Private/Frontend/sass/partials/clinics/_navigation.scss */
    body.clinics .nav__list .nav__list-item {
      margin-bottom: 10px;
      margin-top: 10px; }
    /* line 50, Resources/Private/Frontend/sass/partials/clinics/_navigation.scss */
    body.clinics .nav__list .nav__list-item > a {
      margin-bottom: 0; }
      /* line 53, Resources/Private/Frontend/sass/partials/clinics/_navigation.scss */
      body.clinics .nav__list .nav__list-item > a:after {
        border-color: transparent transparent #0f2d64 transparent;
        bottom: -10px; }
      /* line 57, Resources/Private/Frontend/sass/partials/clinics/_navigation.scss */
      body.clinics .nav__list .nav__list-item > a:before {
        bottom: -10px; }
    /* line 62, Resources/Private/Frontend/sass/partials/clinics/_navigation.scss */
    body.clinics .nav__list .nav__flyout li:nth-child(-n+4) a {
      padding-top: 30px; } }

/**
 * brandung forms.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-19
 * MIT License (MIT)
 */
/* ==========================================================================
   Form Elements
   ========================================================================== */
/* line 36, Resources/Private/Frontend/sass/partials/_forms.scss */
button::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0; }

/* line 38, Resources/Private/Frontend/sass/partials/_forms.scss */
select::-moz-focus-inner {
  border: 0;
  padding: 0; }

/* line 43, Resources/Private/Frontend/sass/partials/_forms.scss */
input,
select,
textarea {
  font-size: 14px;
  font-size: 0.875rem; }

/* line 50, Resources/Private/Frontend/sass/partials/_forms.scss */
input[type=text],
textarea,
input[type=email],
input[type=number],
input[type=password],
input[type=tel],
input[type=url],
input[type=date],
input[type=time],
input[type=file],
select {
  color: #565656;
  padding: 10px;
  width: 100%; }

/* line 67, Resources/Private/Frontend/sass/partials/_forms.scss */
input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=tel],
input[type=url],
input[type=date],
input[type=time],
input[type=file],
select,
textarea {
  border-radius: 0;
  background: #fff;
  border: 1px solid #8999a8;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  color: #565656;
  margin: 0;
  -webkit-appearance: none; }

/* line 87, Resources/Private/Frontend/sass/partials/_forms.scss */
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border: 1px solid #0f2d64; }

/* line 94, Resources/Private/Frontend/sass/partials/_forms.scss */
input[type=date] {
  height: 40px; }

/* line 98, Resources/Private/Frontend/sass/partials/_forms.scss */
input[type=file] {
  border: 1px solid #fff; }

/* line 102, Resources/Private/Frontend/sass/partials/_forms.scss */
input[disabled] {
  background: #dcdfe4; }

/* line 107, Resources/Private/Frontend/sass/partials/_forms.scss */
textarea {
  display: block; }

/* line 111, Resources/Private/Frontend/sass/partials/_forms.scss */
fieldset {
  display: block; }
  /* line 118, Resources/Private/Frontend/sass/partials/_forms.scss */
  fieldset legend {
    display: none; }

/* line 123, Resources/Private/Frontend/sass/partials/_forms.scss */
label {
  display: inline-block;
  position: relative;
  margin: 0; }
  /* line 132, Resources/Private/Frontend/sass/partials/_forms.scss */
  label input {
    position: absolute;
    left: 0;
    top: .2em; }
  /* line 138, Resources/Private/Frontend/sass/partials/_forms.scss */
  label span {
    display: inline-block;
    padding-left: 1.5em; }

/* line 150, Resources/Private/Frontend/sass/partials/_forms.scss */
select {
  position: relative; }
  /* line 153, Resources/Private/Frontend/sass/partials/_forms.scss */
  select:after {
    position: absolute;
    right: 0;
    top: 0;
    color: #0f2d64; }

/* line 163, Resources/Private/Frontend/sass/partials/_forms.scss */
.selectboxit-arrow {
  border: 0 !important; }

/* line 167, Resources/Private/Frontend/sass/partials/_forms.scss */
.selectboxit-arrow-container {
  height: 40px;
  width: 40px;
  margin: -5px 10px 0 0; }
  /* line 172, Resources/Private/Frontend/sass/partials/_forms.scss */
  .selectboxit-arrow-container:after {
    font-size: 40px;
    font-size: 2.5rem;
    margin-top: 2px;
    float: right; }

/* line 182, Resources/Private/Frontend/sass/partials/_forms.scss */
.selectboxit {
  width: 100% !important;
  padding: 5px !important;
  border-radius: 0 !important;
  border: 1px solid #8a99a7;
  background-color: #fff; }
  /* line 188, Resources/Private/Frontend/sass/partials/_forms.scss */
  .selectboxit-focus {
    border: 1px solid #0f2d64; }

@media screen and (max-width: 47.999em) {
  /* line 193, Resources/Private/Frontend/sass/partials/_forms.scss */
  .mobilebtn {
    margin: 0 !important;
    float: none !important; } }

/* line 201, Resources/Private/Frontend/sass/partials/_forms.scss */
.selectboxit-text {
  max-width: 100% !important; }

/* line 206, Resources/Private/Frontend/sass/partials/_forms.scss */
.ng-invalid:not(.ng-pristine),
select.ng-invalid:not(.ng-pristine) + .selectboxit-container .selectboxit-btn {
  border-color: #ce2c2c !important; }

/* line 211, Resources/Private/Frontend/sass/partials/_forms.scss */
input[type='checkbox'].ng-invalid:not(.ng-pristine) + span,
input[type='radio'].ng-invalid:not(.ng-pristine) + span {
  color: #ce2c2c !important; }

/* line 216, Resources/Private/Frontend/sass/partials/_forms.scss */
.radio-error label {
  color: #ce2c2c !important; }

/* line 220, Resources/Private/Frontend/sass/partials/_forms.scss */
.radio-error input[type='radio'].ng-invalid + span {
  color: #565656 !important; }

/* line 226, Resources/Private/Frontend/sass/partials/_forms.scss */
.radio-error input[type='checkbox'].ng-invalid + span {
  color: #565656 !important; }

/**
 * brandung typo3-components.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-03-14
 * MIT License (MIT)
 */
/* ==========================================================================
   typo3-components
   ========================================================================== */
/* csc-textpic */
/* line 17, Resources/Private/Frontend/sass/partials/_typo3-components.scss */
div.csc-textpic {
  overflow: hidden; }
  @media print {
    /* line 17, Resources/Private/Frontend/sass/partials/_typo3-components.scss */
    div.csc-textpic {
      overflow: visible; } }
  /* line 24, Resources/Private/Frontend/sass/partials/_typo3-components.scss */
  div.csc-textpic .csc-textpic-imagewrap {
    overflow: hidden; }
    /* line 27, Resources/Private/Frontend/sass/partials/_typo3-components.scss */
    div.csc-textpic .csc-textpic-imagewrap figure {
      margin: 0 0 20px; }
      @media screen and (max-width: 30em) {
        /* line 27, Resources/Private/Frontend/sass/partials/_typo3-components.scss */
        div.csc-textpic .csc-textpic-imagewrap figure {
          display: table; } }
  @media print {
    /* line 36, Resources/Private/Frontend/sass/partials/_typo3-components.scss */
    div.csc-textpic .csc-textpic-text {
      position: relative;
      width: 100%; } }
  @media print {
    /* line 44, Resources/Private/Frontend/sass/partials/_typo3-components.scss */
    div.csc-textpic figure {
      display: none; } }
  /* line 51, Resources/Private/Frontend/sass/partials/_typo3-components.scss */
  div.csc-textpic figcaption {
    text-align: left;
    padding: 10px 0; }
  @media screen and (max-width: 30em) {
    /* line 56, Resources/Private/Frontend/sass/partials/_typo3-components.scss */
    div.csc-textpic img {
      max-width: 100%;
      width: 100%;
      width: auto;
      display: inline-block !important; } }
  /* line 65, Resources/Private/Frontend/sass/partials/_typo3-components.scss */
  div.csc-textpic + hr {
    margin-top: 0; }
  @media print {
    /* line 17, Resources/Private/Frontend/sass/partials/_typo3-components.scss */
    div.csc-textpic {
      page-break-inside: avoid; }
      /* line 72, Resources/Private/Frontend/sass/partials/_typo3-components.scss */
      div.csc-textpic.csc-textpic-above {
        page-break-inside: auto; } }
  /* line 77, Resources/Private/Frontend/sass/partials/_typo3-components.scss */
  div.csc-textpic .slick-slide figcaption {
    text-align: center; }

/* line 84, Resources/Private/Frontend/sass/partials/_typo3-components.scss */
div.csc-textpic-intext-right-nowrap .csc-textpic-imagewrap,
div.csc-textpic-intext-right .csc-textpic-imagewrap {
  float: none;
  margin-left: 0; }
  @media screen and (min-width: 48em) {
    /* line 84, Resources/Private/Frontend/sass/partials/_typo3-components.scss */
    div.csc-textpic-intext-right-nowrap .csc-textpic-imagewrap,
    div.csc-textpic-intext-right .csc-textpic-imagewrap {
      float: right;
      margin-left: 20px;
      margin-top: 20px;
      width: 300px; } }

/* line 98, Resources/Private/Frontend/sass/partials/_typo3-components.scss */
div.csc-textpic-intext-right-nowrap .slick-slider--gallery .csc-textpic-imagewrap,
div.csc-textpic-intext-right .slick-slider--gallery .csc-textpic-imagewrap {
  float: left;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; }

/* line 107, Resources/Private/Frontend/sass/partials/_typo3-components.scss */
div.csc-textpic-intext-left-nowrap .csc-textpic-imagewrap,
div.csc-textpic-intext-left .csc-textpic-imagewrap {
  float: none;
  margin-right: 0; }
  @media screen and (min-width: 48em) {
    /* line 107, Resources/Private/Frontend/sass/partials/_typo3-components.scss */
    div.csc-textpic-intext-left-nowrap .csc-textpic-imagewrap,
    div.csc-textpic-intext-left .csc-textpic-imagewrap {
      float: left;
      margin-right: 20px;
      margin-top: 20px;
      width: 300px; } }

/* line 121, Resources/Private/Frontend/sass/partials/_typo3-components.scss */
.csc-textpicHeader span {
  font-size: 14px;
  font-size: 0.875rem; }

/* line 127, Resources/Private/Frontend/sass/partials/_typo3-components.scss */
.csc-textpic-intext-left-nowrap-360 .csc-textpic-imagewrap {
  float: left;
  margin-right: 20px; }
  @media screen and (max-width: 30em) {
    /* line 127, Resources/Private/Frontend/sass/partials/_typo3-components.scss */
    .csc-textpic-intext-left-nowrap-360 .csc-textpic-imagewrap {
      float: none;
      margin-right: 0; } }

/* line 137, Resources/Private/Frontend/sass/partials/_typo3-components.scss */
.csc-textpic-intext-left-nowrap-360 .csc-textpic-text {
  margin-left: 0; }

/* line 143, Resources/Private/Frontend/sass/partials/_typo3-components.scss */
div.csc-textpic img {
  max-height: 500px;
  width: 100%;
  max-width: 100%; }

/**
 * brandung _typo3-search.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   Typo3 indexedsearch
   ========================================================================== */
/* line 20, Resources/Private/Frontend/sass/partials/_typo3-search.scss */
.tx-indexedsearch .tx-indexedsearch-whatis {
  padding-left: 30px; }

/* line 23, Resources/Private/Frontend/sass/partials/_typo3-search.scss */
.tx-indexedsearch .search__form {
  margin-top: 0;
  width: 100%; }
  /* line 26, Resources/Private/Frontend/sass/partials/_typo3-search.scss */
  .tx-indexedsearch .search__form fieldset {
    padding-left: 0;
    margin-top: 6px; }
    /* line 29, Resources/Private/Frontend/sass/partials/_typo3-search.scss */
    .tx-indexedsearch .search__form fieldset input.tx-indexedsearch-searchbox-sword {
      width: 100%;
      border: none;
      box-sizing: border-box;
      padding: 10px 20px; }

/* line 37, Resources/Private/Frontend/sass/partials/_typo3-search.scss */
.tx-indexedsearch .tx-indexedsearch-res {
  margin: 20px 0; }
  /* line 40, Resources/Private/Frontend/sass/partials/_typo3-search.scss */
  .tx-indexedsearch .tx-indexedsearch-res .result-title a {
    font-weight: bold;
    text-decoration: none; }

/* line 46, Resources/Private/Frontend/sass/partials/_typo3-search.scss */
.tx-indexedsearch .tx-indexedsearch-browsebox {
  padding-left: 30px; }
  /* line 48, Resources/Private/Frontend/sass/partials/_typo3-search.scss */
  .tx-indexedsearch .tx-indexedsearch-browsebox > p {
    float: left; }
  /* line 125, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .tx-indexedsearch .tx-indexedsearch-browsebox:before, .tx-indexedsearch .tx-indexedsearch-browsebox:after {
    content: " ";
    display: table; }
  /* line 130, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .tx-indexedsearch .tx-indexedsearch-browsebox:after {
    clear: both; }
  /* line 52, Resources/Private/Frontend/sass/partials/_typo3-search.scss */
  .tx-indexedsearch .tx-indexedsearch-browsebox .browsebox {
    float: right;
    margin-bottom: 0; }
    /* line 56, Resources/Private/Frontend/sass/partials/_typo3-search.scss */
    .tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li {
      display: inline-block; }
      /* line 58, Resources/Private/Frontend/sass/partials/_typo3-search.scss */
      .tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li a {
        text-decoration: none;
        padding: 10px 17px;
        background: white;
        font-weight: bold;
        border-right: 1px solid #e1e1e1;
        transition: all 0.5s; }
      /* line 66, Resources/Private/Frontend/sass/partials/_typo3-search.scss */
      .tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:last-child a {
        border-right: none; }
      /* line 69, Resources/Private/Frontend/sass/partials/_typo3-search.scss */
      .tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li.tx-indexedsearch-browselist-currentPage a, .tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:hover a {
        background: #0f2d64;
        color: white; }

/* line 78, Resources/Private/Frontend/sass/partials/_typo3-search.scss */
.box.section_frame_110 {
  margin-bottom: 0; }

/* line 1, Resources/Private/Frontend/sass/partials/_icons.scss */
.svg-icon::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px; }

/* line 9, Resources/Private/Frontend/sass/partials/_icons.scss */
.icon-auge:before {
  background: url(../img/svg/ukk_augenklinik_auge.svg) transparent 5px 0 no-repeat; }

/* line 15, Resources/Private/Frontend/sass/partials/_icons.scss */
.icon-hornhaut:before {
  background: url(../img/svg/ukk_augenklinik_hornhaut.svg) transparent 5px 0 no-repeat; }

/* line 21, Resources/Private/Frontend/sass/partials/_icons.scss */
.icon-lehre:before {
  background: url(../img/svg/ukk_augenklinik_lehre.svg) transparent 5px 0 no-repeat; }

/* line 27, Resources/Private/Frontend/sass/partials/_icons.scss */
.icon-newspaper:before {
  background: url(../img/svg/ukk_newspaper.svg) transparent 5px 0 no-repeat; }

/* line 33, Resources/Private/Frontend/sass/partials/_icons.scss */
.fbuek-logo:before {
  background: url(../img/svg/ukk_fbuek_new.svg) transparent 5px 0 no-repeat; }

/* line 38, Resources/Private/Frontend/sass/partials/_icons.scss */
.icon-donate:before {
  background: url(../img/svg/ukk_icon_donate.svg) transparent 5px 0 no-repeat; }

/* line 44, Resources/Private/Frontend/sass/partials/_icons.scss */
.icon-donate-white:before {
  background: url(../img/svg/ukk_icon_donate-white.svg) transparent 5px 0 no-repeat;
  background-size: contain;
  width: 50px !important;
  height: 50px !important; }

/**
* 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 */
/* line 19, Resources/Private/Frontend/sass/partials/_ie-rules.scss */
.lt-ie8 header,
.lt-ie8 nav,
.lt-ie8 #main,
.lt-ie8 footer {
  display: inline-block; }

/**
 * 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 link.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-20
 * MIT License (MIT)
 */
/* ==========================================================================
   Link
   ========================================================================== */
/* line 16, Resources/Private/Frontend/sass/partials/mod/_link.scss */
.link, .link--more, .link-intern-pt {
  position: relative;
  margin-left: 1.4rem; }
  /* line 20, Resources/Private/Frontend/sass/partials/mod/_link.scss */
  .link:before, .link--more:before, .link-intern-pt:before {
    font-size: 26px;
    font-size: 1.625rem;
    transition: left 0.2s;
    line-height: .9em;
    position: absolute;
    overflow: hidden;
    left: -2rem;
    top: -1px; }
  /* line 32, Resources/Private/Frontend/sass/partials/mod/_link.scss */
  .link:hover:before, .link--more:hover:before, .link-intern-pt:hover:before {
    left: -1.8rem; }
  /* line 37, Resources/Private/Frontend/sass/partials/mod/_link.scss */
  .link:visited, .link--more:visited, .link-intern-pt:visited {
    color: #b35d5d; }
    /* line 39, Resources/Private/Frontend/sass/partials/mod/_link.scss */
    .link:visited:after, .link--more:visited:after, .link-intern-pt:visited:after {
      background: #b35d5d; }

/* line 52, Resources/Private/Frontend/sass/partials/mod/_link.scss */
.link--more:before, .link-intern-pt:before {
  display: inline-block; }

/* line 57, Resources/Private/Frontend/sass/partials/mod/_link.scss */
.link--more-white, .link-intern-pt-white {
  color: #fff; }
  /* line 60, Resources/Private/Frontend/sass/partials/mod/_link.scss */
  .link--more-white:before, .link-intern-pt-white:before {
    display: inline-block;
    color: #fff;
    font-family: 'icomoon' !important;
    font-size: 16px; }

/* line 71, Resources/Private/Frontend/sass/partials/mod/_link.scss */
.link-intern-pt[target="_blank"]:after {
  position: relative;
  left: auto;
  top: auto; }

/* line 81, Resources/Private/Frontend/sass/partials/mod/_link.scss */
.external-link-without-sign[target="_blank"]:after {
  display: none; }

/* line 87, Resources/Private/Frontend/sass/partials/mod/_link.scss */
.powermail_print-content--print {
  text-decoration: none; }

/**
 * brandung box.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-28
 * MIT License (MIT)
 */
/* ==========================================================================
   Box
   ========================================================================== */
/* line 16, Resources/Private/Frontend/sass/partials/mod/_box.scss */
.box {
  position: relative;
  padding: 20px 30px;
  background-color: #fff;
  margin: 20px 0; }

@media screen and (max-width: 47.999em) {
  /* line 23, Resources/Private/Frontend/sass/partials/mod/_box.scss */
  .box {
    padding: 20px;
    margin-left: -10px;
    margin-right: -10px; } }

/* line 32, Resources/Private/Frontend/sass/partials/mod/_box.scss */
.box > h1,
.box > h2,
.box > .sub-navigation__header,
.box > .teaser__header {
  margin-top: 0; }

/* line 37, Resources/Private/Frontend/sass/partials/mod/_box.scss */
.box:first-child {
  margin-top: 0; }

/* line 43, Resources/Private/Frontend/sass/partials/mod/_box.scss */
.box.util-bg--blue-dark a,
.box.util-bg--blue-dark p,
.box.util-bg--blue-dark ul,
.box.util-bg--blue-dark ol,
.box.util-bg--blue-dark li,
.box.util-bg--blue-dark h1,
.box.util-bg--blue-dark h2,
.box.util-bg--blue-dark .sub-navigation__header,
.box.util-bg--blue-dark .teaser__header,
.box.util-bg--blue-dark h3,
.box.util-bg--blue-dark h4, .box.util-bg--blue a,
.box.util-bg--blue p,
.box.util-bg--blue ul,
.box.util-bg--blue ol,
.box.util-bg--blue li,
.box.util-bg--blue h1,
.box.util-bg--blue h2,
.box.util-bg--blue .sub-navigation__header,
.box.util-bg--blue .teaser__header,
.box.util-bg--blue h3,
.box.util-bg--blue h4 {
  color: #fff; }

@media screen and (max-width: 47.999em) {
  /* line 56, Resources/Private/Frontend/sass/partials/mod/_box.scss */
  .container--fullwidth .box {
    margin-left: 0;
    margin-right: 0; } }

@media print {
  /* line 23, Resources/Private/Frontend/sass/partials/mod/_box.scss */
  .box {
    padding: 0 !important; } }

/* line 72, Resources/Private/Frontend/sass/partials/mod/_box.scss */
.box .box {
  padding: 0; }

/* line 78, Resources/Private/Frontend/sass/partials/mod/_box.scss */
.breadcrumb + .box {
  margin-top: 0 !important; }
  @media screen and (min-width: 48em) {
    /* line 78, Resources/Private/Frontend/sass/partials/mod/_box.scss */
    .breadcrumb + .box {
      margin-top: -20px !important; } }

/**
 * brandung clinics/mod/box.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2016-03-24
 * MIT License (MIT)
 */
/* ==========================================================================
   Box
   ========================================================================== */
@media screen and (max-width: 47.999em) {
  /* line 22, Resources/Private/Frontend/sass/partials/clinics/mod/_box.scss */
  body.clinics .row.equalHeights .box, body.clinics .equalHeights.color-pattern .box {
    margin-left: 0;
    margin-right: 0; } }

/**
 * 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
   ========================================================================== */
/* line 18, Resources/Private/Frontend/sass/partials/mod/_sub-navigation.scss */
.sub-navigation {
  -o-box-shadow: 3px 3px 3px rgba(68,68,68,0.4);
  -ms-box-shadow: 3px 3px 3px rgba(68,68,68,0.4);
  box-shadow: 3px 3px 3px rgba(68,68,68,0.4);
  background: #fff;
  padding: 0;
  margin-bottom: 30px; }
  /* line 24, Resources/Private/Frontend/sass/partials/mod/_sub-navigation.scss */
  .sub-navigation a {
    color: #565656;
    text-decoration: none; }
    /* line 28, Resources/Private/Frontend/sass/partials/mod/_sub-navigation.scss */
    .sub-navigation a:after {
      content: none; }
    /* line 32, Resources/Private/Frontend/sass/partials/mod/_sub-navigation.scss */
    .sub-navigation a[target="_blank"] {
      margin-right: 0; }
      /* line 36, Resources/Private/Frontend/sass/partials/mod/_sub-navigation.scss */
      .sub-navigation a[target="_blank"]:after {
        display: none; }
      /* line 40, Resources/Private/Frontend/sass/partials/mod/_sub-navigation.scss */
      .sub-navigation a[target="_blank"]:visited {
        color: #565656; }
  /* line 45, Resources/Private/Frontend/sass/partials/mod/_sub-navigation.scss */
  .sub-navigation__header {
    color: #565656;
    padding: 20px;
    border-bottom: 1px solid #e1e1e1; }
  /* line 52, Resources/Private/Frontend/sass/partials/mod/_sub-navigation.scss */
  .sub-navigation__headline {
    color: #565656;
    padding: 20px; }
    /* line 56, Resources/Private/Frontend/sass/partials/mod/_sub-navigation.scss */
    .sub-navigation__headline:hover {
      color: #565656;
      background: #dcdcdc; }
    /* line 60, Resources/Private/Frontend/sass/partials/mod/_sub-navigation.scss */
    .sub-navigation__headline.active {
      background: #0f2d64;
      color: #fff;
      box-shadow: none; }
      /* line 64, Resources/Private/Frontend/sass/partials/mod/_sub-navigation.scss */
      .sub-navigation__headline.active:before {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg); }
    /* line 69, Resources/Private/Frontend/sass/partials/mod/_sub-navigation.scss */
    .sub-navigation__headline:after {
      display: none; }
  /* line 77, Resources/Private/Frontend/sass/partials/mod/_sub-navigation.scss */
  .sub-navigation__has-child .sub-navigation__headline:before {
    position: absolute;
    top: 50%;
    right: 5px;
    margin-top: -13px; }
  /* line 89, Resources/Private/Frontend/sass/partials/mod/_sub-navigation.scss */
  .sub-navigation__headline-sub {
    padding-left: 40px !important; }
    /* line 92, Resources/Private/Frontend/sass/partials/mod/_sub-navigation.scss */
    .sub-navigation__headline-sub:hover {
      background: #dcdfe4;
      color: #0f2d64; }
    /* line 97, Resources/Private/Frontend/sass/partials/mod/_sub-navigation.scss */
    .sub-navigation__headline-sub.active {
      background: #dcdfe4;
      box-shadow: none;
      color: #0f2d64; }
  /* line 104, Resources/Private/Frontend/sass/partials/mod/_sub-navigation.scss */
  .sub-navigation__active {
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -5px; }
  /* line 119, Resources/Private/Frontend/sass/partials/mod/_sub-navigation.scss */
  .sub-navigation__list-item.active {
    background: #0f2d64;
    color: #fff; }
  /* line 126, Resources/Private/Frontend/sass/partials/mod/_sub-navigation.scss */
  .sub-navigation__sub-item {
    background: #fff;
    border: none !important; }
    /* line 131, Resources/Private/Frontend/sass/partials/mod/_sub-navigation.scss */
    .sub-navigation__sub-item a {
      color: #565656; }
  /* line 141, Resources/Private/Frontend/sass/partials/mod/_sub-navigation.scss */
  .sub-navigation li {
    border-bottom: 1px solid #e1e1e1;
    margin: 0; }
    /* line 145, Resources/Private/Frontend/sass/partials/mod/_sub-navigation.scss */
    .sub-navigation li:last-of-type {
      border-bottom: none; }
    /* line 149, Resources/Private/Frontend/sass/partials/mod/_sub-navigation.scss */
    .sub-navigation li a {
      padding: 15px 20px;
      display: block; }
  @media print {
    /* line 18, Resources/Private/Frontend/sass/partials/mod/_sub-navigation.scss */
    .sub-navigation {
      display: none; } }

/**
 * brandung sub-service-navigation.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-13
 * MIT License (MIT)
 */
/* ==========================================================================
   sub-service-navigation
   ========================================================================== */
/* line 17, Resources/Private/Frontend/sass/partials/mod/_sub-service-navigation.scss */
.sub-service-navigation {
  -o-box-shadow: 3px 3px 3px rgba(68,68,68,0.4);
  -ms-box-shadow: 3px 3px 3px rgba(68,68,68,0.4);
  box-shadow: 3px 3px 3px rgba(68,68,68,0.4);
  background: #fff;
  padding: 0;
  border: none; }
  /* line 23, Resources/Private/Frontend/sass/partials/mod/_sub-service-navigation.scss */
  .sub-service-navigation a {
    color: #565656;
    text-decoration: none; }
    /* line 27, Resources/Private/Frontend/sass/partials/mod/_sub-service-navigation.scss */
    .sub-service-navigation a:after {
      content: none; }
    /* line 31, Resources/Private/Frontend/sass/partials/mod/_sub-service-navigation.scss */
    .sub-service-navigation a:hover {
      color: #565656;
      background: #dcdcdc; }
  /* line 36, Resources/Private/Frontend/sass/partials/mod/_sub-service-navigation.scss */
  .sub-service-navigation__headline {
    font-size: 18px;
    font-size: 1.125rem;
    position: relative;
    font-weight: 400;
    cursor: pointer;
    color: #565656;
    padding: 20px;
    border-bottom: 1px solid #e1e1e1; }
    /* line 45, Resources/Private/Frontend/sass/partials/mod/_sub-service-navigation.scss */
    .sub-service-navigation__headline:after {
      font-size: 34px;
      font-size: 2.125rem;
      color: #8a99a7;
      position: absolute;
      top: 50%;
      margin-top: -16px;
      right: 0; }
    /* line 57, Resources/Private/Frontend/sass/partials/mod/_sub-service-navigation.scss */
    .sub-service-navigation__headline.is-active:after {
      -webkit-transform: rotate(90deg);
      transform: rotate(90deg); }
  /* line 63, Resources/Private/Frontend/sass/partials/mod/_sub-service-navigation.scss */
  .sub-service-navigation .setcookie {
    display: none; }
  /* line 74, Resources/Private/Frontend/sass/partials/mod/_sub-service-navigation.scss */
  .sub-service-navigation li {
    border-bottom: 1px solid #e1e1e1;
    margin: 0; }
    /* line 78, Resources/Private/Frontend/sass/partials/mod/_sub-service-navigation.scss */
    .sub-service-navigation li a {
      font-size: 14px;
      font-size: 0.875rem;
      font-weight: 400;
      padding: 17px 20px;
      display: block; }
  @media print {
    /* line 17, Resources/Private/Frontend/sass/partials/mod/_sub-service-navigation.scss */
    .sub-service-navigation {
      display: none; } }

/**
 * brandung mod-form.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-19
 * MIT License (MIT)
 */
/* ==========================================================================
   Form Module
   ========================================================================== */
/* line 18, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
.mod-form {
  /* date-select-fields */
  /* error */ }
  /* line 20, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
  .mod-form .helper-margin-top {
    margin-top: 8px !important; }
  /* line 23, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
  .mod-form .helper-inline-block {
    display: inline-block; }
  /* line 27, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
  .mod-form .helper-vertical-align-super {
    vertical-align: super; }
  @media screen and (max-width: 47.999em) {
    /* line 31, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
    .mod-form .helper-mobile-width-100 {
      width: 100%; } }
  /* line 37, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
  .mod-form .ci-arrow .selectboxit-arrow-container:after {
    color: #0f2d64; }
  /* line 41, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
  .mod-form textarea {
    height: 180px; }
  /* line 45, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
  .mod-form label {
    color: #565656;
    display: block;
    font-weight: bold;
    margin-bottom: 10px; }
    /* line 55, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
    .mod-form label input {
      float: left;
      margin: .1em .5em 0 0; }
    /* line 60, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
    .mod-form label span {
      color: #565656;
      float: left;
      text-align: left;
      font-weight: normal;
      margin-right: 20px; }
      @media screen and (max-width: 79.249em) {
        /* line 60, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
        .mod-form label span {
          width: 85%; } }
    /* line 72, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
    .mod-form label a {
      color: #0f2d64; }
    /* line 77, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
    .mod-form label p.is-invalid, .mod-form label p.error {
      display: none !important; }
  /* line 87, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
  .mod-form__list li {
    margin: 0 0 10px 0;
    width: 100%; }
    /* line 95, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
    .mod-form__list li .mod-form__field {
      margin: 0; }
  /* line 102, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
  .mod-form__single-line label {
    display: block; }
    @media screen and (min-width: 48em) {
      /* line 102, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
      .mod-form__single-line label {
        display: inline-block; } }
    /* line 109, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
    .mod-form__single-line label span {
      white-space: nowrap; }
  /* line 115, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
  .mod-form .mod-form__checkboxlist {
    height: 200px;
    overflow-y: scroll;
    overflow-x: hidden;
    margin-bottom: 20px; }
  /* line 124, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
  .mod-form .mod-form__fields {
    width: 100%; }
    /* line 131, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
    .mod-form .mod-form__fields .mod-form__field {
      float: left;
      margin-left: 1%; }
      /* line 135, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
      .mod-form .mod-form__fields .mod-form__field:first-of-type {
        margin-left: 0; }
    /* line 140, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
    .mod-form .mod-form__fields .mod-form__input-box {
      display: block; }
  /* line 145, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
  .mod-form .mod-form__field {
    margin: 0 0 10px 0;
    width: 100%;
    position: relative; }
    /* line 150, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
    .mod-form .mod-form__field:first-child {
      margin-left: 0; }
    /* line 155, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
    .mod-form .mod-form__field .selectboxit-options.selectboxit-list .selectboxit-option-anchor {
      color: #565656; }
    /* line 161, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
    .mod-form .mod-form__field.error .ms-parent {
      border: 1px solid red; }
    /* line 166, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
    .mod-form .mod-form__field .mod-form__input-box {
      display: block; }
      /* line 170, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
      .mod-form .mod-form__field .mod-form__input-box.with-input label {
        display: inline-block;
        vertical-align: middle; }
        /* line 173, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
        .mod-form .mod-form__field .mod-form__input-box.with-input label span {
          width: 100%; }
      /* line 177, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
      .mod-form .mod-form__field .mod-form__input-box.with-input .mod-form__input-wrapper {
        display: inline-block;
        vertical-align: super;
        width: 40%; }
        @media screen and (max-width: 47.999em) {
          /* line 177, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
          .mod-form .mod-form__field .mod-form__input-box.with-input .mod-form__input-wrapper {
            width: 100%; } }
      /* line 187, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
      .mod-form .mod-form__field .mod-form__input-box #place {
        display: block !important;
        visibility: hidden;
        position: absolute; }
      /* line 193, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
      .mod-form .mod-form__field .mod-form__input-box input[type="text"]::-webkit-input-placeholder {
        color: #999999; }
      .mod-form .mod-form__field .mod-form__input-box input[type="text"]::-moz-placeholder {
        color: #999999; }
      .mod-form .mod-form__field .mod-form__input-box input[type="text"]:-ms-input-placeholder {
        color: #999999; }
      .mod-form .mod-form__field .mod-form__input-box input[type="text"]::placeholder {
        color: #999999; }
      /* line 197, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
      .mod-form .mod-form__field .mod-form__input-box input[type="time"] {
        height: 40px; }
      /* line 201, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
      .mod-form .mod-form__field .mod-form__input-box input.is--hidden {
        position: absolute;
        visibility: hidden;
        opacity: 0;
        z-index: 0; }
      /* line 208, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
      .mod-form .mod-form__field .mod-form__input-box .ms-search {
        display: none; }
      /* line 212, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
      .mod-form .mod-form__field .mod-form__input-box .ms-choice {
        background-color: transparent; }
      /* line 216, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
      .mod-form .mod-form__field .mod-form__input-box .ms-choice > span {
        right: 40px; }
      /* line 220, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
      .mod-form .mod-form__field .mod-form__input-box select.multiple-select {
        display: block;
        max-height: 100px;
        outline: 0 none; }
        /* line 225, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
        .mod-form .mod-form__field .mod-form__input-box select.multiple-select::-ms-value {
          background: transparent !important;
          color: inherit; }
        /* line 230, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
        .mod-form .mod-form__field .mod-form__input-box select.multiple-select option.selected {
          background: #e1e1e1; }
      /* line 236, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
      .mod-form .mod-form__field .mod-form__input-box.multiple-selection input.multiple-select.is--hidden {
        display: block !important;
        top: 50%; }
      /* line 241, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
      .mod-form .mod-form__field .mod-form__input-box.multiple-selection .selectboxit-container,
      .mod-form .mod-form__field .mod-form__input-box.multiple-selection .ms-parent.multiple-select.is--hidden {
        display: none; }
    /* line 248, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
    .mod-form .mod-form__field .mod-form__time-wrapper {
      position: relative; }
    /* line 252, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
    .mod-form .mod-form__field .mod-form__time-unit {
      position: absolute;
      height: auto;
      top: 6px;
      left: 54px;
      line-height: 28px;
      padding: 0 10px 0 5px;
      background: transparent; }
    /* line 263, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
    .mod-form .mod-form__field.mod-form__field--size-one-quarter {
      width: 24%; }
      @media screen and (max-width: 480px) {
        /* line 263, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
        .mod-form .mod-form__field.mod-form__field--size-one-quarter {
          width: 30%; } }
      /* line 270, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
      .mod-form .mod-form__field.mod-form__field--size-one-quarter .mod-form__input-box span + select + .selectboxit-container {
        width: 70%; }
    /* line 276, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
    .mod-form .mod-form__field.mod-form__field--size-three-quarter {
      width: 75%; }
      @media screen and (max-width: 480px) {
        /* line 276, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
        .mod-form .mod-form__field.mod-form__field--size-three-quarter {
          width: 49%;
          margin-left: 20px; } }
    /* line 284, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
    .mod-form .mod-form__field + .field {
      float: right; }
    /* line 288, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
    .mod-form .mod-form__field p {
      display: none; }
      /* line 291, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
      .mod-form .mod-form__field p.is-invalid {
        display: block; }
  /* line 303, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
  .mod-form .mod-form__input-date-wrapper .mod-form__input-box {
    float: left;
    margin-left: 1%;
    width: 32.66%; }
    /* line 308, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
    .mod-form .mod-form__input-date-wrapper .mod-form__input-box:first-child {
      margin-left: 0; }
  /* line 313, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
  .mod-form .mod-form__input-date-wrapper span {
    float: left;
    margin-left: 2%;
    padding: 8px 0; }
  /* line 320, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
  .mod-form .event-details {
    display: none; }
  /* line 324, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
  .mod-form .multiday-event {
    display: block;
    right: 0; }
  /* line 330, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
  .mod-form .error,
  .mod-form .error a,
  .mod-form .error a:visited,
  .mod-form .error a:hover,
  .mod-form .error a:focus {
    color: red; }
  /* line 340, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
  .mod-form .error input,
  .mod-form .error select,
  .mod-form .error textarea,
  .mod-form .is-invalid input,
  .mod-form .is-invalid select,
  .mod-form .is-invalid textarea {
    border-color: red;
    color: red; }
  /* line 348, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
  .mod-form .error label span,
  .mod-form .is-invalid label span {
    color: red; }
  /* line 355, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
  .mod-form p.error, .mod-form p.is-invalid {
    font-size: 11px;
    font-size: 0.6875rem;
    display: block; }
  @media print {
    /* line 18, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
    .mod-form {
      display: none; } }
  /* line 367, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
  .mod-form.form .row, .mod-form.form .color-pattern {
    margin: 20px 0;
    position: relative; }
  /* line 372, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
  .mod-form.form .file-input-wrapper {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 10px 0; }
    /* line 377, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
    .mod-form.form .file-input-wrapper input[type=file] {
      border: 1px solid #8999a8;
      padding: 7.6px;
      width: calc(100% - 40px); }
      @media screen and (min-width: 30em) {
        /* line 377, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
        .mod-form.form .file-input-wrapper input[type=file] {
          width: calc(100% - 150px); } }
    /* line 387, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
    .mod-form.form .file-input-wrapper .file-delete {
      position: relative;
      top: 0;
      right: 0;
      background: #fff;
      border: 1px solid #8999a8;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      height: 40px;
      outline: 0 none;
      cursor: pointer;
      width: 40px; }
      @media screen and (min-width: 30em) {
        /* line 387, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
        .mod-form.form .file-input-wrapper .file-delete {
          width: 150px; } }
      /* line 405, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
      .mod-form.form .file-input-wrapper .file-delete span {
        display: none; }
        @media screen and (min-width: 48em) {
          /* line 405, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
          .mod-form.form .file-input-wrapper .file-delete span {
            display: block; } }
  /* line 415, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
  .mod-form.form .mobilebtn {
    width: 100%; }
    @media screen and (min-width: 30em) {
      /* line 415, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
      .mod-form.form .mobilebtn {
        float: right !important;
        width: auto; } }

/* line 426, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
.mod-form__description {
  margin-top: 10px; }

/* line 430, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
.mod-form__field--side-label label {
  margin: 10px 0 0; }

/* captcha-fields */
/* line 436, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
.captcha__help,
.captcha__input {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 0; }

/* line 444, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
.captcha__help .tx-srfreecap-pi2-cant-read,
.captcha__help .tx-srfreecap-pi2-accessible-link {
  display: block; }
  /* line 448, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
  .captcha__help .tx-srfreecap-pi2-cant-read:before,
  .captcha__help .tx-srfreecap-pi2-accessible-link:before {
    color: #0f2d64; }

/* line 466, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
.captcha__input img {
  max-width: 400px;
  width: 100%;
  margin-bottom: 20px; }

/* line 472, Resources/Private/Frontend/sass/partials/mod/_mod-form.scss */
.captcha__input input {
  max-width: 400px; }

/**
 * brandung custom-select.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   custom-select
   ========================================================================== */
/* line 16, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
.custom-select {
  font-size: 18px;
  font-size: 1.125rem;
  -o-box-shadow: 0 2px 5px rgba(0,0,0,.2);
  -ms-box-shadow: 0 2px 5px rgba(0,0,0,.2);
  box-shadow: 0 2px 5px rgba(0,0,0,.2);
  position: relative;
  padding: 20px !important;
  background-color: #fff;
  margin-bottom: 20px;
  border: 1px solid #e1e1e1;
  color: #0f2d64;
  border-radius: 0 !important; }

/* line 32, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
.custom-select.js-location {
  z-index: 8 !important; }

/* selectBoxIt overrides */
/* line 39, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
.selectboxit-container {
  width: 100%;
  margin-bottom: 20px;
  /* options */ }
  /* line 48, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
  .selectboxit-container .custom-select {
    width: 100% !important;
    background-color: #fff;
    border: 1px solid #8a99a7; }
    /* line 57, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
    .selectboxit-container .custom-select .selectboxit-text {
      font-size: 14px;
      font-size: 0.875rem;
      max-width: 60% !important;
      text-overflow: none;
      position: absolute;
      top: 50%;
      left: 45px;
      font-size: 12px;
      line-height: 22px;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      text-align: left;
      text-indent: 0;
      white-space: nowrap; }
      @media screen and (min-width: 30em) {
        /* line 57, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
        .selectboxit-container .custom-select .selectboxit-text {
          font-size: 18px;
          font-size: 1.125rem;
          left: 70px; } }
    /* line 78, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
    .selectboxit-container .custom-select .selectboxit-arrow-container {
      height: 40px;
      width: 40px;
      margin: -5px 10px 0 0; }
      /* line 83, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
      .selectboxit-container .custom-select .selectboxit-arrow-container:after {
        font-size: 40px;
        font-size: 2.5rem;
        margin-top: 2px;
        float: right; }
    /* line 92, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
    .selectboxit-container .custom-select .selectboxit-option-icon-container {
      position: relative;
      margin-left: 0; }
    /* line 99, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
    .selectboxit-container .custom-select .selectboxit-option-icon:before {
      content: '';
      height: 30px;
      width: 30px;
      position: absolute;
      left: -10px;
      top: -15px; }
      @media screen and (min-width: 30em) {
        /* line 99, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
        .selectboxit-container .custom-select .selectboxit-option-icon:before {
          height: 50px;
          width: 50px;
          top: -24px;
          left: -10px; } }
    /* line 116, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
    .selectboxit-container .custom-select .selectboxit-option-icon.icon-medicalfield:before {
      background: url(../img/svg/ukk_medicalfield.svg) transparent 0 0 no-repeat; }
    /* line 122, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
    .selectboxit-container .custom-select .selectboxit-option-icon.icon-doctors:before {
      background: url(../img/svg/ukk_doctors.svg) transparent 0 0 no-repeat; }
    /* line 128, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
    .selectboxit-container .custom-select .selectboxit-option-icon.icon-sympton:before {
      background: url(../img/svg/ukk_symptom.svg) transparent 0 0 no-repeat; }
    /* line 134, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
    .selectboxit-container .custom-select .selectboxit-option-icon.icon-institutes:before {
      background: url(../img/svg/ukk_institutes.svg) transparent 0 0 no-repeat; }
    /* line 140, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
    .selectboxit-container .custom-select .selectboxit-option-icon.icon-administration:before {
      background: url(../img/svg/ukk_administration.svg) transparent 0 0 no-repeat; }
    /* line 146, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
    .selectboxit-container .custom-select.selectboxit-hover, .selectboxit-container .custom-select.selectboxit-open {
      background: #0f2d64;
      color: #fff; }
      /* line 153, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
      .selectboxit-container .custom-select.selectboxit-hover .selectboxit-option-icon.icon-medicalfield:before, .selectboxit-container .custom-select.selectboxit-open .selectboxit-option-icon.icon-medicalfield:before {
        background: url(../img/svg/ukk_medicalfieldw.svg) transparent 0 0 no-repeat; }
      /* line 159, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
      .selectboxit-container .custom-select.selectboxit-hover .selectboxit-option-icon.icon-doctors:before, .selectboxit-container .custom-select.selectboxit-open .selectboxit-option-icon.icon-doctors:before {
        background: url(../img/svg/ukk_doctorsw.svg) transparent 0 0 no-repeat; }
      /* line 165, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
      .selectboxit-container .custom-select.selectboxit-hover .selectboxit-option-icon.icon-sympton:before, .selectboxit-container .custom-select.selectboxit-open .selectboxit-option-icon.icon-sympton:before {
        background: url(../img/svg/ukk_symptomw.svg) transparent 0 0 no-repeat; }
      /* line 171, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
      .selectboxit-container .custom-select.selectboxit-hover .selectboxit-option-icon.icon-institutes:before, .selectboxit-container .custom-select.selectboxit-open .selectboxit-option-icon.icon-institutes:before {
        background: url(../img/svg/ukk_institutesw.svg) transparent 0 0 no-repeat; }
      /* line 177, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
      .selectboxit-container .custom-select.selectboxit-hover .selectboxit-option-icon.icon-administration:before, .selectboxit-container .custom-select.selectboxit-open .selectboxit-option-icon.icon-administration:before {
        background: url(../img/svg/ukk_administrationw.svg) transparent 0 0 no-repeat; }
  /* line 187, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
  .selectboxit-container span.custom-select--clinics .selectboxit-option-icon:before {
    content: '';
    height: 30px;
    width: 30px;
    position: absolute;
    left: -10px;
    top: -15px;
    background: #0f2d64;
    background: url(../img/svg/ukk_institutes.svg) no-repeat; }
    @media screen and (min-width: 30em) {
      /* line 187, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
      .selectboxit-container span.custom-select--clinics .selectboxit-option-icon:before {
        height: 50px;
        width: 50px;
        top: -24px;
        left: -10px; } }
  /* line 213, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
  .selectboxit-container span.custom-select--clinics.selectboxit-hover .selectboxit-option-icon:before {
    background: url(../img/svg/ukk_institutesw.svg) no-repeat; }
  /* line 227, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
  .selectboxit-container span {
    height: auto;
    line-height: 30px; }
  /* line 233, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
  .selectboxit-container .selectboxit-options {
    width: 100% !important;
    background: #fff;
    border-radius: 0;
    border: 1px solid #e1e1e1;
    border-top: none;
    max-height: 280px;
    min-height: 70px;
    min-width: 0 !important;
    z-index: 9; }
    /* line 244, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
    .selectboxit-container .selectboxit-options a {
      text-decoration: none; }
      /* line 248, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
      .selectboxit-container .selectboxit-options a:hover {
        background: #0f2d64;
        color: #fff; }
    /* line 255, Resources/Private/Frontend/sass/partials/mod/_custom-select.scss */
    .selectboxit-container .selectboxit-options .selectboxit-option-icon:before {
      display: none; }

/**
 * brandung scroll-top.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-18
 * MIT License (MIT)
 */
/* ==========================================================================
   scroll-top
   ========================================================================== */
/* line 19, Resources/Private/Frontend/sass/partials/mod/_scroll-top.scss */
.scroll-top {
  transition: opacity ease 500ms;
  position: fixed;
  display: block;
  overflow: hidden;
  text-indent: -20em;
  width: 45px;
  height: 40px;
  background: #8a99a7;
  bottom: 20px;
  right: 20px;
  opacity: 0;
  z-index: -1; }
  @media screen and (min-width: 79.25em) {
    /* line 19, Resources/Private/Frontend/sass/partials/mod/_scroll-top.scss */
    .scroll-top {
      left: 50%;
      margin-left: 569px; } }
  /* line 39, Resources/Private/Frontend/sass/partials/mod/_scroll-top.scss */
  .scroll-top:before {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    font-size: 40px;
    font-size: 2.5rem;
    display: inline-block;
    overflow: hidden;
    position: absolute;
    color: #fff;
    line-height: .9em;
    top: 0;
    left: 0;
    text-indent: 0;
    margin-top: 0;
    margin-left: -3px; }
  /* line 56, Resources/Private/Frontend/sass/partials/mod/_scroll-top.scss */
  .scroll-top.is-active {
    opacity: .8;
    z-index: 9; }
  /* line 61, Resources/Private/Frontend/sass/partials/mod/_scroll-top.scss */
  .scroll-top.is-at-footer {
    position: absolute; }
  @media print {
    /* line 19, Resources/Private/Frontend/sass/partials/mod/_scroll-top.scss */
    .scroll-top {
      display: none; } }

/**
 * brandung blockquote.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   Blockquote
   ========================================================================== */
/* line 16, Resources/Private/Frontend/sass/partials/mod/_blockquote.scss */
blockquote {
  position: relative;
  border-top: 2px solid #8a99a7;
  border-bottom: 2px solid #8a99a7;
  padding: 0 20px;
  background: #fff;
  font-size: 24px;
  margin: 30px 0;
  color: #565656;
  text-align: center;
  font-style: italic;
  width: 100%; }
  @media screen and (max-width: 47.999em) {
    /* line 16, Resources/Private/Frontend/sass/partials/mod/_blockquote.scss */
    blockquote {
      font-size: 20px; } }
  @media screen and (min-width: 48em) {
    /* line 16, Resources/Private/Frontend/sass/partials/mod/_blockquote.scss */
    blockquote {
      padding: 20px 20px 0 20px; } }
  @media screen and (min-width: 62em) {
    /* line 16, Resources/Private/Frontend/sass/partials/mod/_blockquote.scss */
    blockquote {
      padding: 20px 20px 0 20px; } }
  /* line 44, Resources/Private/Frontend/sass/partials/mod/_blockquote.scss */
  blockquote p {
    margin-top: 40px;
    margin-bottom: 50px;
    position: relative;
    /*	@include respond-max($breakpoint-max-l) {
			@extend .col-s-6;
		}*/ }
    /* line 49, Resources/Private/Frontend/sass/partials/mod/_blockquote.scss */
    blockquote p:before {
      color: #8a99a7;
      position: absolute;
      top: -40px;
      width: 100%;
      left: 0; }
    /* line 59, Resources/Private/Frontend/sass/partials/mod/_blockquote.scss */
    blockquote p:after {
      color: #8a99a7;
      width: 100%;
      position: absolute;
      bottom: auto;
      display: block; }
  /* line 74, Resources/Private/Frontend/sass/partials/mod/_blockquote.scss */
  blockquote img {
    width: 260px;
    height: 240px;
    float: left;
    position: absolute;
    left: 0;
    bottom: 0; }
    @media screen and (max-width: 47.999em) {
      /* line 74, Resources/Private/Frontend/sass/partials/mod/_blockquote.scss */
      blockquote img {
        display: none; } }
  /* line 87, Resources/Private/Frontend/sass/partials/mod/_blockquote.scss */
  blockquote footer {
    display: table;
    margin: 0 auto;
    font-style: normal;
    border: none;
    padding: 0 20px 20px 20px;
    text-align: center;
    -o-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none; }
  @media screen and (min-width: 48em) {
    /* line 99, Resources/Private/Frontend/sass/partials/mod/_blockquote.scss */
    blockquote img + p {
      width: 70%;
      float: right;
      min-height: 100px; } }
  @media screen and (min-width: 62em) {
    /* line 99, Resources/Private/Frontend/sass/partials/mod/_blockquote.scss */
    blockquote img + p {
      width: 40%;
      right: 30%; } }
  @media screen and (min-width: 48em) {
    /* line 113, Resources/Private/Frontend/sass/partials/mod/_blockquote.scss */
    blockquote img + p + footer {
      width: 70%;
      clear: both;
      float: right; } }
  @media screen and (min-width: 62em) {
    /* line 113, Resources/Private/Frontend/sass/partials/mod/_blockquote.scss */
    blockquote img + p + footer {
      width: 100%; } }

/**
 * brandung infobox.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-20
 * MIT License (MIT)
 */
/* ==========================================================================
   Infobox
   ========================================================================== */
/* line 18, Resources/Private/Frontend/sass/partials/mod/_infobox.scss */
.infobox {
  background: #8a99a7;
  color: #fff;
  display: table;
  padding: 20px;
  margin: 0 0 20px; }
  /* line 25, Resources/Private/Frontend/sass/partials/mod/_infobox.scss */
  .infobox.infobox--editor {
    position: relative;
    display: block; }
    /* line 28, Resources/Private/Frontend/sass/partials/mod/_infobox.scss */
    .infobox.infobox--editor > span.info-icon {
      display: inline-block;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      vertical-align: baseline;
      padding: 0;
      padding-bottom: 10px; }
    /* line 37, Resources/Private/Frontend/sass/partials/mod/_infobox.scss */
    .infobox.infobox--editor .infobox--editor-text {
      display: inline-block;
      margin-left: 8%; }
      @media screen and (max-width: 47.999em) {
        /* line 37, Resources/Private/Frontend/sass/partials/mod/_infobox.scss */
        .infobox.infobox--editor .infobox--editor-text {
          margin-left: 22%; } }
      /* line 43, Resources/Private/Frontend/sass/partials/mod/_infobox.scss */
      .infobox.infobox--editor .infobox--editor-text a {
        color: white; }
      /* line 46, Resources/Private/Frontend/sass/partials/mod/_infobox.scss */
      .infobox.infobox--editor .infobox--editor-text p {
        display: block;
        padding: 0;
        margin: 10px 0;
        width: 100%; }
    /* line 53, Resources/Private/Frontend/sass/partials/mod/_infobox.scss */
    .infobox.infobox--editor:after {
      display: inline-block; }
  @media screen and (max-width: 47.999em) {
    /* line 18, Resources/Private/Frontend/sass/partials/mod/_infobox.scss */
    .infobox {
      padding: 10px;
      margin: 10px 0; } }
  /* line 67, Resources/Private/Frontend/sass/partials/mod/_infobox.scss */
  .infobox span.info-icon {
    font-size: 33px;
    float: none;
    padding: 12px 0 20px;
    text-align: center;
    vertical-align: top;
    display: table-cell; }
    /* line 76, Resources/Private/Frontend/sass/partials/mod/_infobox.scss */
    .infobox span.info-icon:before {
      margin: 0 5px 0 -5px; }
      @media screen and (min-width: 48em) {
        /* line 76, Resources/Private/Frontend/sass/partials/mod/_infobox.scss */
        .infobox span.info-icon:before {
          margin: 0 10px 0 -10px; } }
  /* line 86, Resources/Private/Frontend/sass/partials/mod/_infobox.scss */
  .infobox p {
    display: table-cell;
    float: none;
    padding: 20px 0; }
    @media screen and (max-width: 47.999em) {
      /* line 86, Resources/Private/Frontend/sass/partials/mod/_infobox.scss */
      .infobox p {
        margin-top: 3px; } }
  @media print {
    /* line 18, Resources/Private/Frontend/sass/partials/mod/_infobox.scss */
    .infobox {
      padding: 0 !important; } }

/**
 * brandung breadcrumb.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-20
 * MIT License (MIT)
 */
/* ==========================================================================
   Breadcrumb
   ========================================================================== */
/* line 17, Resources/Private/Frontend/sass/partials/mod/_breadcrumb.scss */
.breadcrumb {
  margin: 0;
  position: relative;
  padding: 20px 30px;
  background-color: #fff; }
  @media screen and (max-width: 61.999em) {
    /* line 17, Resources/Private/Frontend/sass/partials/mod/_breadcrumb.scss */
    .breadcrumb {
      display: none; } }
  /* line 32, Resources/Private/Frontend/sass/partials/mod/_breadcrumb.scss */
  .breadcrumb > span {
    float: left;
    padding: 0 10px 0 0;
    font-weight: 700; }
  /* line 44, Resources/Private/Frontend/sass/partials/mod/_breadcrumb.scss */
  .breadcrumb li {
    float: left;
    color: #0f2d64;
    margin-bottom: 0; }
    /* line 50, Resources/Private/Frontend/sass/partials/mod/_breadcrumb.scss */
    .breadcrumb li:after {
      font-size: 18px;
      color: #0f2d64;
      line-height: 13px;
      position: relative; }
    /* line 60, Resources/Private/Frontend/sass/partials/mod/_breadcrumb.scss */
    .breadcrumb li a span {
      position: relative;
      top: -2px; }
    /* line 67, Resources/Private/Frontend/sass/partials/mod/_breadcrumb.scss */
    .breadcrumb li:last-child:after {
      color: #565656;
      display: none; }
    /* line 72, Resources/Private/Frontend/sass/partials/mod/_breadcrumb.scss */
    .breadcrumb li:last-child a {
      text-decoration: none;
      color: #565656; }
      /* line 76, Resources/Private/Frontend/sass/partials/mod/_breadcrumb.scss */
      .breadcrumb li:last-child a span {
        top: 0; }
    /* line 81, Resources/Private/Frontend/sass/partials/mod/_breadcrumb.scss */
    .breadcrumb li:last-child a:after {
      display: none; }
  @media print {
    /* line 17, Resources/Private/Frontend/sass/partials/mod/_breadcrumb.scss */
    .breadcrumb {
      display: none; } }

/**
 * brandung slick-slider.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-21
 * MIT License (MIT)
 */
/* ==========================================================================
   slick-slider
   ========================================================================== */
/**
 Default slick-slider styles
 */
/* line 26, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.slick-slider {
  position: relative;
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  text-align: center; }
  /* line 41, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider .fancybox:before {
    content: none; }
  /* line 45, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider > div {
    display: none; }
    /* line 52, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider > div:first-child {
      display: block; }
  /* line 58, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider.slick-initialized > div {
    display: block; }
  @media print {
    /* line 26, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider {
      display: none; } }
  /* line 69, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider--video-is-playing .slick-prev,
  .slick-slider--video-is-playing .slick-next {
    opacity: 0 !important; }

/* line 76, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  /* line 83, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-list:focus {
    outline: none; }
  /* line 87, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-list.dragging {
    cursor: hand; }

/* line 92, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

/* line 97, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  overflow-y: hidden; }
  /* line 104, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  /* line 110, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-track:after {
    clear: both; }
  /* line 114, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-loading .slick-track {
    visibility: hidden; }

/* line 119, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  text-align: center;
  display: none; }
  /* line 125, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  [dir="rtl"] .slick-slide {
    float: right; }
  /* line 129, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slide img {
    display: block; }
  /* line 133, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slide.slick-loading img {
    display: none; }
  /* line 139, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slide.dragging img {
    pointer-events: none; }
  /* line 143, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-initialized .slick-slide {
    display: block; }
  /* line 147, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-loading .slick-slide {
    visibility: hidden; }
  /* line 151, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }
  /* line 157, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slide p {
    text-align: left; }

/**
 Theme styles
 */
/* Dots */
/* line 167, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.slick-dots {
  position: absolute;
  bottom: -45px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%; }
  /* line 176, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 24px;
    width: 24px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    vertical-align: top; }
    /* line 187, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-dots li.is-hidden {
      display: none; }
    /* line 191, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 22px;
      width: 22px;
      outline: none;
      line-height: 0;
      font-size: 0;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      /* line 204, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        /* line 208, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1;
          background: #0f2d64; }
      /* line 214, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: '';
        width: 18px;
        height: 18px;
        line-height: 18px;
        text-align: center;
        background-color: #fff;
        border: 3px solid #fff; }
      /* line 227, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
      .slick-dots li button[class*=slick__control] {
        position: absolute;
        color: #0f2d64;
        background-color: #fff;
        border: 3px solid #fff;
        line-height: 16px;
        height: 24px;
        width: 24px; }
        /* line 236, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
        .slick-dots li button[class*=slick__control]:before {
          font-size: 20px;
          font-size: 1.25rem;
          top: -1px;
          left: -6px;
          background: transparent;
          border: none;
          opacity: 1; }
        /* line 246, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
        .slick-dots li button[class*=slick__control]:hover {
          background: #0f2d64;
          color: #fff;
          border-color: #0f2d64; }
    /* line 264, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-dots li.slick-active button:before {
      background-color: #0f2d64;
      opacity: 1; }

/**
Theme Styles
 Default slick-slider nav-buttons
 */
/* line 276, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  border: none;
  line-height: 0;
  font-size: 0;
  padding: 5px 0 0 0;
  margin-top: -20px; }
  /* line 286, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-prev:before,
  .slick-next:before {
    display: block;
    height: 40px;
    font-size: 32px;
    font-size: 2rem; }
  /* line 292, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-prev:focus,
  .slick-next:focus {
    outline: 0; }

/* stage slider */
/* line 314, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.slick-slider--stage .slick-slide {
  position: relative; }
  @media screen and (max-width: 61.999em) {
    /* line 314, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage .slick-slide {
      padding-bottom: 10px; } }
  @media screen and (min-width: 125em) {
    /* line 314, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage .slick-slide {
      max-height: 800px; } }

/* line 327, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.slick-slider--stage .slick-dots {
  bottom: 0; }
  @media screen and (max-width: 47.999em) {
    /* line 332, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage .slick-dots li {
      border: 1px solid #0f2d64; }
    /* line 338, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage .slick-dots button:before {
      top: -1px;
      left: -1px; }
    /* line 350, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage .slick-dots button[class*=slick__control]:before {
      top: -2px;
      left: -6px; } }
  @media screen and (min-width: 48em) {
    /* line 327, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage .slick-dots {
      bottom: auto;
      top: 51%; } }
  @media screen and (min-width: 62em) {
    /* line 327, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage .slick-dots {
      margin-right: auto;
      margin-left: auto;
      padding-left: 10px;
      padding-right: 10px;
      min-width: 20em;
      max-width: 79.25em;
      padding-left: 10px;
      padding-right: 10px;
      bottom: 10px;
      top: auto;
      left: 0;
      right: 0;
      text-align: right; }
      /* line 125, Resources/Private/Frontend/sass/partials/_mixins.scss */
      .slick-slider--stage .slick-dots:before, .slick-slider--stage .slick-dots:after {
        content: " ";
        display: table; }
      /* line 130, Resources/Private/Frontend/sass/partials/_mixins.scss */
      .slick-slider--stage .slick-dots:after {
        clear: both; } }
  @media screen and (min-width: 62em) and (min-width: 48em) {
    /* line 327, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage .slick-dots {
      padding-left: 20px; } }
  @media screen and (min-width: 125em) {
    /* line 327, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage .slick-dots {
      max-width: none;
      width: auto;
      margin: 0 12%;
      bottom: 160px; } }

/* line 393, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.container--fullwidth .slick-slider--stage img {
  width: 100%;
  position: relative;
  z-index: 1; }

/* line 400, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.slick-slider--stage article {
  padding: 0;
  text-align: left; }
  @media screen and (min-width: 62em) {
    /* line 400, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage article {
      transition: top ease 500ms;
      margin-right: auto;
      margin-left: auto;
      padding-left: 10px;
      padding-right: 10px;
      min-width: 20em;
      max-width: 79.25em;
      padding-left: 10px;
      padding-right: 0;
      position: absolute;
      z-index: 2;
      top: 30%;
      left: 0;
      right: 0; }
      /* line 125, Resources/Private/Frontend/sass/partials/_mixins.scss */
      .slick-slider--stage article:before, .slick-slider--stage article:after {
        content: " ";
        display: table; }
      /* line 130, Resources/Private/Frontend/sass/partials/_mixins.scss */
      .slick-slider--stage article:after {
        clear: both; } }
  @media screen and (min-width: 62em) and (min-width: 48em) {
    /* line 400, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage article {
      padding-left: 20px;
      padding-right: 6px; } }
  @media screen and (min-width: 79.25em) {
    /* line 400, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage article {
      width: 79.25em; } }
  @media screen and (min-width: 79.249em) {
    /* line 400, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage article {
      top: 47%; } }
  @media screen and (min-width: 2000px) {
    /* line 400, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage article {
      bottom: 198px;
      font-size: 1.2em;
      max-width: none;
      padding-right: 12%;
      top: auto;
      width: auto; }
      /* line 443, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
      .slick-slider--stage article .h2, .slick-slider--stage article footer .footernav__tweet, footer .slick-slider--stage article .footernav__tweet, .slick-slider--stage article footer .footernav__youTube, footer .slick-slider--stage article .footernav__youTube {
        font-size: 1.2em; } }

/* line 449, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.slick-slider--stage section {
  -o-box-shadow: 3px 3px 3px rgba(68,68,68,0.2);
  -ms-box-shadow: 3px 3px 3px rgba(68,68,68,0.2);
  box-shadow: 3px 3px 3px rgba(68,68,68,0.2);
  padding: 20px 0 20px 20px;
  background: #fff;
  background: rgba(255, 255, 255, 0.9); }
  @media screen and (max-width: 61.999em) {
    /* line 449, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage section {
      padding-bottom: 40px;
      min-height: 200px; } }
  @media screen and (min-width: 62em) {
    /* line 449, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage section {
      -o-box-shadow: 3px 3px 3px rgba(68,68,68,0.2);
      -ms-box-shadow: 3px 3px 3px rgba(68,68,68,0.2);
      box-shadow: 3px 3px 3px rgba(68,68,68,0.2);
      width: 380px;
      float: right; } }
  /* line 466, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider--stage section a {
    text-decoration: none; }
    /* line 469, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage section a:hover {
      text-decoration: underline; }
    /* line 473, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage section a h2, .slick-slider--stage section a .sub-navigation__header, .slick-slider--stage section a .teaser__header,
    .slick-slider--stage section a .h2,
    .slick-slider--stage section a footer .footernav__tweet,
    footer .slick-slider--stage section a .footernav__tweet,
    .slick-slider--stage section a footer .footernav__youTube,
    footer .slick-slider--stage section a .footernav__youTube {
      margin: 14px 0; }
  /* line 479, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider--stage section .h2, .slick-slider--stage section footer .footernav__tweet, footer .slick-slider--stage section .footernav__tweet, .slick-slider--stage section footer .footernav__youTube, footer .slick-slider--stage section .footernav__youTube {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 400; }

/* content slider */
/* line 489, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.slick-slider--content .slick-prev,
.slick-slider--content .slick-next {
  display: block !important;
  background: #0f2d64;
  color: #fff;
  opacity: .7; }
  /* line 496, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider--content .slick-prev:before,
  .slick-slider--content .slick-next:before {
    width: 40px; }

/* line 501, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.slick-slider--content .slick-prev {
  left: 0; }

/* line 505, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.slick-slider--content .slick-next {
  right: 0; }

/**
Styles Gallery-Slider
*/
/* line 517, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.slick-slider--intext .slick-prev,
.slick-slider--intext .slick-next,
.slick-slider--gallery .slick-prev,
.slick-slider--gallery .slick-next {
  display: block;
  background: #0f2d64;
  color: #fff;
  opacity: .7; }
  /* line 524, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider--intext .slick-prev:before,
  .slick-slider--intext .slick-next:before,
  .slick-slider--gallery .slick-prev:before,
  .slick-slider--gallery .slick-next:before {
    width: 40px; }

/* line 529, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.slick-slider--intext .slick-prev,
.slick-slider--gallery .slick-prev {
  left: 10px; }

/* line 533, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.slick-slider--intext .slick-next,
.slick-slider--gallery .slick-next {
  right: 10px; }

/* line 537, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.slick-slider--intext .figure-caption,
.slick-slider--gallery .figure-caption {
  margin-bottom: 20px; }
  @media screen and (min-width: 48em) {
    /* line 537, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--intext .figure-caption,
    .slick-slider--gallery .figure-caption {
      margin-left: 45px;
      margin-right: 100px; } }

/* line 547, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.slick-slider--intext .slick-dots,
.slick-slider--gallery .slick-dots {
  display: none !important; }

/* line 551, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.slick-slider--intext img,
.slick-slider--gallery img {
  width: auto;
  height: auto;
  max-height: 500px; }

/* line 560, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.slick-slider--intext .slick-slide img {
  margin: 0 auto; }

/**
 Styles Thumbs-Slider
 */
/* line 570, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.slick-slider--thumbs {
  margin-top: 15px; }
  /* line 573, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider--thumbs .slick-slider__item a {
    display: block;
    width: auto; }
  /* line 578, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider--thumbs .slick-list {
    margin-left: 40px;
    margin-right: 40px; }
  /* line 583, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider--thumbs .slick-prev,
  .slick-slider--thumbs .slick-next {
    background: transparent; }
    /* line 587, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--thumbs .slick-prev:before,
    .slick-slider--thumbs .slick-next:before {
      padding: 0; }
  /* line 592, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider--thumbs .slick-prev {
    left: -20px;
    padding-left: 10px; }
  /* line 597, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider--thumbs .slick-next {
    right: -20px;
    padding-right: 10px; }
  /* line 602, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider--thumbs .slick-dots {
    display: none !important; }

/* line 607, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.slick-slider__item {
  margin-left: 5px;
  margin-right: 5px; }
  /* line 611, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider__item a {
    width: 100%; }

/* line 616, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.slick-slider__pagination {
  margin-bottom: 20px;
  width: auto;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  background: #fff; }
  @media screen and (min-width: 48em) {
    /* line 616, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider__pagination {
      position: absolute;
      right: 0;
      bottom: 0; } }

/* line 632, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.news-img-wrap .slick-prev {
  left: 10px;
  top: 127.5px; }
  @media screen and (min-width: 48em) {
    /* line 632, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .news-img-wrap .slick-prev {
      left: 20px; } }

/* line 641, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.news-img-wrap .slick-next {
  right: 10px;
  top: 127.5px; }
  @media screen and (min-width: 48em) {
    /* line 641, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .news-img-wrap .slick-next {
      right: 0; } }

/* line 650, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.news-img-wrap .slick-slider__pagination {
  display: none; }

/* line 654, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.news-img-wrap figcaption {
  width: 280px; }

/* stage slider career */
/* line 660, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.slick-slider--stage.slick-slider--career {
  margin: 0 auto 20px; }
  @media screen and (max-width: 61.999em) {
    /* line 660, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage.slick-slider--career {
      margin-bottom: 54px; } }
  @media screen and (max-width: 47.999em) {
    /* line 660, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage.slick-slider--career {
      margin-bottom: 64px; } }
  @media screen and (min-width: 160em) {
    /* line 671, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage.slick-slider--career .slick-slide {
      max-height: 931px; } }
  /* line 682, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider--stage.slick-slider--career .slider-career__image img {
    width: 100%;
    object-fit: cover; }
    @media screen and (min-width: 160em) {
      /* line 682, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
      .slick-slider--stage.slick-slider--career .slider-career__image img {
        max-height: 931px; } }
  /* line 692, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider--stage.slick-slider--career .slider-career__content {
    width: auto;
    min-width: auto;
    max-width: auto;
    left: 100px;
    right: initial;
    float: none;
    top: 0;
    max-width: 450px;
    position: absolute;
    z-index: 2;
    text-align: left;
    height: 100%; }
    @media screen and (max-width: 61.999em) {
      /* line 692, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
      .slick-slider--stage.slick-slider--career .slider-career__content {
        -webkit-transform: none;
                transform: none;
        padding: 32px 16px;
        background: #fff;
        max-width: 100%;
        position: relative;
        left: 0; } }
    /* line 716, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage.slick-slider--career .slider-career__content a {
      background: transparent;
      box-shadow: none;
      max-width: 100%;
      text-decoration: none;
      height: 100%;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center; }
    /* line 727, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage.slick-slider--career .slider-career__content .slider-career__headline {
      color: #0f2d64;
      font-size: 48px;
      line-height: 62px;
      font-weight: bold;
      text-align: left; }
      @media screen and (max-width: 61.999em) {
        /* line 727, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
        .slick-slider--stage.slick-slider--career .slider-career__content .slider-career__headline {
          font-size: 24px;
          line-height: 36px; } }
    /* line 740, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage.slick-slider--career .slider-career__content .slider-career__text {
      color: #0f2d64;
      font-size: 26px;
      line-height: 36px;
      margin: 0; }
      @media screen and (max-width: 61.999em) {
        /* line 740, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
        .slick-slider--stage.slick-slider--career .slider-career__content .slider-career__text {
          font-size: 16px;
          line-height: 24px; } }
  /* line 755, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider--stage.slick-slider--career .slick-dots.slick-dots--career {
    text-align: center;
    bottom: 16px;
    top: initial; }
    @media screen and (max-width: 61.999em) {
      /* line 755, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
      .slick-slider--stage.slick-slider--career .slick-dots.slick-dots--career {
        bottom: -60px;
        top: auto; } }
    @media screen and (max-width: 61.999em) {
      /* line 755, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
      .slick-slider--stage.slick-slider--career .slick-dots.slick-dots--career {
        bottom: -60px; } }

/* stage slider teaser */
/* line 773, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.slick-slider--quote {
  margin: 0 auto 24px; }
  @media screen and (max-width: 61.999em) {
    /* line 773, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--quote {
      margin-bottom: 24px;
      margin-left: -16px !important;
      margin-right: -10 !important; } }
  @media screen and (max-width: 47.999em) {
    /* line 773, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--quote {
      margin-bottom: 64px;
      max-width: calc(100% + 16px); } }
  /* line 787, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider--quote .slick-slide {
    max-height: 100%; }
  /* line 791, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider--quote blockquote {
    position: initial;
    color: #fff;
    border: none;
    background: #0f2d64;
    padding: 112px 112px 64px;
    font-style: normal; }
    @media screen and (max-width: 47.999em) {
      /* line 791, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
      .slick-slider--quote blockquote {
        padding: 80px 16px 48px; } }
    @media screen and (min-width: 160em) {
      /* line 791, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
      .slick-slider--quote blockquote {
        padding: 112px 400px 64px; } }
    /* line 807, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--quote blockquote:before {
      display: none; }
  /* line 812, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider--quote .slider-quote__item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
  /* line 818, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider--quote .slider-quote__quote-container {
    background: #0f2d64; }
  /* line 822, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider--quote .slider-quote_img-container {
    width: 200px;
    height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto -100px; }
    @media screen and (max-width: 47.999em) {
      /* line 822, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
      .slick-slider--quote .slider-quote_img-container {
        width: 150px;
        height: 150px;
        margin: 0 auto -75px; } }
    /* line 836, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--quote .slider-quote_img-container img {
      display: inline;
      margin: 0 auto;
      height: 100%;
      width: auto;
      object-fit: cover; }
  /* line 845, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider--quote .slider-quote__quote-content {
    text-align: center;
    margin: 0 auto; }
  /* line 851, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider--quote .slider-quote__quote-text {
    font-size: 28px;
    line-height: 42px;
    font-style: normal;
    letter-spacing: 0.3px;
    text-align: center;
    color: #fff;
    position: relative;
    padding: 0 24px;
    margin: 24px 0;
    font-weight: lighter;
    font-family: 'Merriweather Sans', sans-serif; }
    @media screen and (max-width: 61.999em) {
      /* line 851, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
      .slick-slider--quote .slider-quote__quote-text {
        font-size: 18px;
        line-height: 25px; } }
    /* line 871, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--quote .slider-quote__quote-text:after {
      content: '';
      width: 30px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='47' viewBox='0 0 34 47'%3E%3Cg fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E%3Cg stroke='%23009BDC' stroke-width='3.6'%3E%3Cg%3E%3Cpath d='M0 0L15 21.3 0 42.6' transform='translate(-1207 -4529) matrix(-1 0 0 1 1239 4531)'/%3E%3Cpath d='M14.4 0L29.4 21.3 14.4 42.6' transform='translate(-1207 -4529) matrix(-1 0 0 1 1239 4531)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-size: contain;
      right: -10px;
      position: absolute;
      z-index: 1;
      bottom: 0;
      height: 40px; }
      @media screen and (max-width: 61.999em) {
        /* line 871, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
        .slick-slider--quote .slider-quote__quote-text:after {
          width: 20px;
          height: 30px; } }
      @media screen and (min-width: 160em) {
        /* line 871, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
        .slick-slider--quote .slider-quote__quote-text:after {
          right: -40px;
          height: 60px;
          width: 60px; } }
    /* line 897, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--quote .slider-quote__quote-text:before {
      content: '';
      width: 30px;
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='47' viewBox='0 0 34 47'%3E%3Cg fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E%3Cg stroke='%23009BDC' stroke-width='3.6'%3E%3Cg%3E%3Cpath d='M0 0L15 21.3 0 42.6' transform='translate(-1207 -4529) matrix(-1 0 0 1 1239 4531)'/%3E%3Cpath d='M14.4 0L29.4 21.3 14.4 42.6' transform='translate(-1207 -4529) matrix(-1 0 0 1 1239 4531)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      left: -10px;
      background-repeat: no-repeat;
      background-size: contain;
      position: absolute;
      z-index: 1;
      top: 0;
      height: 40px; }
      @media screen and (max-width: 61.999em) {
        /* line 897, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
        .slick-slider--quote .slider-quote__quote-text:before {
          width: 20px;
          height: 30px; } }
      @media screen and (min-width: 160em) {
        /* line 897, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
        .slick-slider--quote .slider-quote__quote-text:before {
          left: -40px;
          height: 60px;
          width: 60px; } }
  /* line 925, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider--quote .slider-quote__quote-author {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.2px;
    background: #0f2d64;
    color: #fff; }
    @media screen and (max-width: 61.999em) {
      /* line 925, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
      .slick-slider--quote .slider-quote__quote-author {
        font-size: 14px;
        line-height: 22px; } }
    /* line 937, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--quote .slider-quote__quote-author--name {
      display: block;
      font-weight: bold; }
    /* line 942, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--quote .slider-quote__quote-author--role {
      display: block;
      font-weight: lighter; }
  /* line 948, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider--quote .slick-dots {
    position: relative;
    text-align: center;
    margin-top: -32px;
    bottom: initial; }
    @media screen and (max-width: 61.999em) {
      /* line 948, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
      .slick-slider--quote .slick-dots {
        bottom: auto;
        top: auto;
        left: initial;
        text-align: center;
        position: relative; } }
    /* line 962, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--quote .slick-dots li {
      border-radius: 50%;
      border: 1px solid #fff;
      background: transparent;
      width: 12px;
      height: 12px; }
      /* line 969, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
      .slick-slider--quote .slick-dots li:hover, .slick-slider--quote .slick-dots li:focus {
        background: #fff; }
      /* line 975, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
      .slick-slider--quote .slick-dots li button:before {
        display: none; }
    /* line 983, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--quote .slick-dots li.slick-active {
      background: #fff; }
      /* line 986, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
      .slick-slider--quote .slick-dots li.slick-active button {
        background: #fff; }

/* slick-slider video-gallery */
/* line 998, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.video-gallery .slick-slider--video .video-gallery__headline {
  color: #0f2d64;
  font-size: 24px;
  line-height: 32px;
  font-weight: bold;
  margin-bottom: 32px; }

/* slick-slider quote */
/* stage slider career */
/* line 1011, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.slick-slider--stage.slick-slider--teaser {
  margin: 0 auto 24px; }
  @media screen and (max-width: 61.999em) {
    /* line 1011, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage.slick-slider--teaser {
      margin-bottom: 24px;
      margin-left: -16px !important;
      margin-right: -10 !important; } }
  @media screen and (max-width: 47.999em) {
    /* line 1011, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage.slick-slider--teaser {
      margin-bottom: 64px;
      max-width: calc(100% + 16px); } }
  /* line 1025, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider--stage.slick-slider--teaser .slider-teaser__slide {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
  /* line 1031, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider--stage.slick-slider--teaser .slider-teaser__image {
    -webkit-flex-basis: 60%;
        -ms-flex-preferred-size: 60%;
            flex-basis: 60%; }
    @media screen and (max-width: 61.999em) {
      /* line 1031, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
      .slick-slider--stage.slick-slider--teaser .slider-teaser__image {
        -webkit-flex-basis: 100%;
            -ms-flex-preferred-size: 100%;
                flex-basis: 100%; } }
    /* line 1041, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage.slick-slider--teaser .slider-teaser__image img {
      height: 626px;
      width: 100%;
      object-fit: cover; }
      @media screen and (max-width: 61.999em) {
        /* line 1041, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
        .slick-slider--stage.slick-slider--teaser .slider-teaser__image img {
          height: 375px; } }
      @media screen and (min-width: 125em) {
        /* line 1041, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
        .slick-slider--stage.slick-slider--teaser .slider-teaser__image img {
          height: auto; } }
  /* line 1056, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider--stage.slick-slider--teaser .slider-teaser__content {
    width: auto;
    min-width: auto;
    max-width: auto;
    left: initial;
    right: 0;
    float: none;
    top: 50%;
    padding: 32px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    position: absolute;
    z-index: 2;
    max-width: 50%;
    text-align: left;
    -webkit-flex-basis: 60%;
        -ms-flex-preferred-size: 60%;
            flex-basis: 60%;
    color: #fff;
    height: 325px; }
    @media screen and (min-width: 125em) {
      /* line 1056, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
      .slick-slider--stage.slick-slider--teaser .slider-teaser__content {
        height: 300px; } }
    /* line 1078, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage.slick-slider--teaser .slider-teaser__content--blue {
      background: #009bdc; }
    /* line 1082, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage.slick-slider--teaser .slider-teaser__content--green {
      background: #AFCD50; }
    /* line 1086, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage.slick-slider--teaser .slider-teaser__content--violet {
      background: #910064; }
    @media screen and (max-width: 61.999em) {
      /* line 1056, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
      .slick-slider--stage.slick-slider--teaser .slider-teaser__content {
        -webkit-transform: none;
                transform: none;
        max-width: 100%;
        position: relative;
        -webkit-flex-basis: 100%;
            -ms-flex-preferred-size: 100%;
                flex-basis: 100%;
        margin: -32px 16px 0;
        height: auto;
        min-height: 265px; } }
    @media screen and (max-width: 47.999em) {
      /* line 1056, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
      .slick-slider--stage.slick-slider--teaser .slider-teaser__content {
        min-height: 400px; } }
    /* line 1106, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage.slick-slider--teaser .slider-teaser__content a {
      background: transparent;
      position: absolute;
      bottom: 32px;
      left: 32px;
      box-shadow: none;
      max-width: 100%;
      text-decoration: none;
      background: #0f2d64;
      color: #fff;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      display: -webkit-inline-flex;
      display: -ms-inline-flexbox;
      display: inline-flex;
      width: auto;
      border-radius: 4px;
      font-size: 16px;
      line-height: 24px;
      font-weight: bold;
      letter-spacing: 0.3px;
      padding: 16px 40px 16px 16px; }
      /* line 1127, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
      .slick-slider--stage.slick-slider--teaser .slider-teaser__content a:after {
        content: "";
        position: absolute;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='17' viewBox='0 0 10 17'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFF' fill-rule='nonzero'%3E%3Cg%3E%3Cpath d='M283.9 28.264l-8.394-8.17c-.13-.126-.336-.125-.464.002l-.945.944c-.063.063-.098.147-.097.235 0 .088.037.173.1.234l7.205 6.991-7.205 6.991c-.063.061-.1.146-.1.234 0 .088.034.172.097.235l.946.944c.064.064.148.096.233.096.083 0 .166-.031.23-.094l8.394-8.17c.064-.062.1-.147.1-.236s-.036-.174-.1-.236z' transform='translate(-1001 -2040) translate(727 2020)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
        width: 12px;
        height: 20px;
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        right: 16px;
        background-size: contain; }
    /* line 1141, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage.slick-slider--teaser .slider-teaser__content .slider-teaser__headline {
      font-size: 24px;
      line-height: 32px;
      text-align: left;
      color: #fff;
      font-weight: normal; }
    /* line 1149, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage.slick-slider--teaser .slider-teaser__content .slider-teaser__text {
      font-size: 16px;
      line-height: 28px;
      letter-spacing: 0.2px; }
  /* line 1157, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
  .slick-slider--stage.slick-slider--teaser .slick-dots.slick-dots--career {
    bottom: -64px;
    top: initial;
    position: absolute;
    left: 25%;
    right: initial;
    text-align: left; }
    @media screen and (max-width: 61.999em) {
      /* line 1157, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
      .slick-slider--stage.slick-slider--teaser .slick-dots.slick-dots--career {
        bottom: auto;
        top: auto;
        left: initial;
        text-align: center;
        position: relative; } }
    /* line 1173, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage.slick-slider--teaser .slick-dots.slick-dots--career li {
      border-radius: 50%;
      border: 1px solid #0f2d64;
      background: transparent;
      width: 12px;
      height: 12px; }
      /* line 1180, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
      .slick-slider--stage.slick-slider--teaser .slick-dots.slick-dots--career li:hover, .slick-slider--stage.slick-slider--teaser .slick-dots.slick-dots--career li:focus {
        background: #0f2d64; }
      /* line 1186, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
      .slick-slider--stage.slick-slider--teaser .slick-dots.slick-dots--career li button:before {
        display: none; }
    /* line 1194, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
    .slick-slider--stage.slick-slider--teaser .slick-dots.slick-dots--career li.slick-active {
      background: #0f2d64; }
      /* line 1197, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
      .slick-slider--stage.slick-slider--teaser .slick-dots.slick-dots--career li.slick-active button {
        background: #0f2d64; }

/* no-js */
/* line 1208, Resources/Private/Frontend/sass/partials/mod/_slick-slider.scss */
.no-js .slick-slider--stage article {
  position: relative; }

/**
 * brandung clinics/mod/slick-slider.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2016-03-24
 * MIT License (MIT)
 */
/* ==========================================================================
   Box
   ========================================================================== */
@media screen and (min-width: 48em) {
  /* line 20, Resources/Private/Frontend/sass/partials/clinics/mod/_slick-slider.scss */
  body.clinics .slick-slider--stage article {
    margin-right: auto; } }

/* line 27, Resources/Private/Frontend/sass/partials/clinics/mod/_slick-slider.scss */
body.clinics .slick-slider--stage section {
  background: white; }
  @media screen and (min-width: 62em) {
    /* line 27, Resources/Private/Frontend/sass/partials/clinics/mod/_slick-slider.scss */
    body.clinics .slick-slider--stage section {
      width: 400px; } }

/**
 * brandung tabelen.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   Tabelen
   ========================================================================== */
/* line 16, Resources/Private/Frontend/sass/partials/mod/_table.scss */
.responsive-table {
  margin-bottom: 20px;
  overflow: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overflow: auto; }

/* line 24, Resources/Private/Frontend/sass/partials/mod/_table.scss */
.table {
  overflow: hidden; }

/* line 27, Resources/Private/Frontend/sass/partials/mod/_table.scss */
table {
  margin-bottom: 30px;
  border-top: none;
  width: 100%; }
  /* line 32, Resources/Private/Frontend/sass/partials/mod/_table.scss */
  table thead {
    background: #fff; }
    /* line 34, Resources/Private/Frontend/sass/partials/mod/_table.scss */
    table thead th {
      font-weight: 400;
      padding: 20px;
      text-align: left;
      border-left: 1px solid #e1e1e1;
      border-right: 1px solid #e1e1e1; }
  /* line 45, Resources/Private/Frontend/sass/partials/mod/_table.scss */
  table tbody tr:nth-child(odd) {
    background: #e8e8e8; }
  /* line 49, Resources/Private/Frontend/sass/partials/mod/_table.scss */
  table tbody tr:nth-child(even) {
    background: #f4f3f3; }
  /* line 55, Resources/Private/Frontend/sass/partials/mod/_table.scss */
  table tr td {
    padding: 20px;
    border: 1px solid #fff;
    vertical-align: top; }
    /* line 60, Resources/Private/Frontend/sass/partials/mod/_table.scss */
    table tr td.td-last {
      min-width: 130px; }
    /* line 64, Resources/Private/Frontend/sass/partials/mod/_table.scss */
    table tr td a {
      word-break: break-all; }
      @media screen and (min-width: 48em) {
        /* line 64, Resources/Private/Frontend/sass/partials/mod/_table.scss */
        table tr td a {
          word-break: break-word; } }
  @media print {
    /* line 27, Resources/Private/Frontend/sass/partials/mod/_table.scss */
    table {
      border: 1px solid #e1e1e1 !important;
      page-break-inside: avoid; }
      /* line 77, Resources/Private/Frontend/sass/partials/mod/_table.scss */
      table th, table td {
        border: 1px solid #e1e1e1 !important; } }

/* line 84, Resources/Private/Frontend/sass/partials/mod/_table.scss */
table.nolayout th, table.nolayout td {
  border: none;
  font-weight: normal; }

/* line 88, Resources/Private/Frontend/sass/partials/mod/_table.scss */
table.nolayout tbody tr:nth-child(odd) {
  background: none; }

/* line 94, Resources/Private/Frontend/sass/partials/mod/_table.scss */
.data-label-table table thead {
  background: #fff;
  display: none; }
  @media screen and (min-width: 48em) {
    /* line 94, Resources/Private/Frontend/sass/partials/mod/_table.scss */
    .data-label-table table thead {
      display: table-header-group; } }

/* line 102, Resources/Private/Frontend/sass/partials/mod/_table.scss */
.data-label-table table tr td {
  display: block;
  border: none;
  padding: 20px;
  padding-top: 10px; }
  /* line 108, Resources/Private/Frontend/sass/partials/mod/_table.scss */
  .data-label-table table tr td:before {
    content: attr(data-label) ": ";
    display: block;
    font-weight: bold; }
  @media screen and (min-width: 48em) {
    /* line 102, Resources/Private/Frontend/sass/partials/mod/_table.scss */
    .data-label-table table tr td {
      display: table-cell;
      border: 1px solid #fff;
      padding-top: 20px; }
      /* line 119, Resources/Private/Frontend/sass/partials/mod/_table.scss */
      .data-label-table table tr td:before {
        display: none; } }

/* line 128, Resources/Private/Frontend/sass/partials/mod/_table.scss */
.studienregister thead {
  border-top: 1px solid #e1e1e1; }

/* line 133, Resources/Private/Frontend/sass/partials/mod/_table.scss */
.konsortium {
  /* Zebra striping */
  /*
	Max width before this PARTICULAR table gets nasty
	This query will take effect for any screen smaller than 760px
	and also iPads specifically.
	*/ }
  /* line 134, Resources/Private/Frontend/sass/partials/mod/_table.scss */
  .konsortium table {
    width: 100%;
    border-collapse: collapse; }
  /* line 139, Resources/Private/Frontend/sass/partials/mod/_table.scss */
  .konsortium tr:nth-of-type(odd) {
    background: #eee; }
  /* line 142, Resources/Private/Frontend/sass/partials/mod/_table.scss */
  .konsortium th {
    background: #333;
    color: white;
    font-weight: bold; }
  /* line 147, Resources/Private/Frontend/sass/partials/mod/_table.scss */
  .konsortium td, .konsortium th {
    padding: 6px;
    border: 1px solid #ccc;
    text-align: left; }
  @media only screen and (max-width: 992px) {
    /* line 133, Resources/Private/Frontend/sass/partials/mod/_table.scss */
    .konsortium {
      /* Force table to not be like tables anymore */
      /* Hide table headers (but not display: none;, for accessibility) */
      /*
		Label the data
		*/ }
      /* line 161, Resources/Private/Frontend/sass/partials/mod/_table.scss */
      .konsortium table, .konsortium thead, .konsortium tbody, .konsortium th, .konsortium td, .konsortium tr {
        display: block; }
      /* line 166, Resources/Private/Frontend/sass/partials/mod/_table.scss */
      .konsortium thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px; }
      /* line 172, Resources/Private/Frontend/sass/partials/mod/_table.scss */
      .konsortium tr {
        border: 1px solid #ccc; }
      /* line 174, Resources/Private/Frontend/sass/partials/mod/_table.scss */
      .konsortium td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%; }
      /* line 182, Resources/Private/Frontend/sass/partials/mod/_table.scss */
      .konsortium td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap; }
      /* line 196, Resources/Private/Frontend/sass/partials/mod/_table.scss */
      .konsortium td:nth-of-type(1):before {
        content: "Name"; }
      /* line 197, Resources/Private/Frontend/sass/partials/mod/_table.scss */
      .konsortium td:nth-of-type(2):before {
        content: "Adresse"; }
      /* line 198, Resources/Private/Frontend/sass/partials/mod/_table.scss */
      .konsortium td:nth-of-type(3):before {
        content: "Telefon"; }
      /* line 199, Resources/Private/Frontend/sass/partials/mod/_table.scss */
      .konsortium td:nth-of-type(4):before {
        content: "Standortart"; } }

/**
 * brandung list-icon.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   List-Icon
   ========================================================================== */
/* line 20, Resources/Private/Frontend/sass/partials/mod/_list-icon.scss */
.list-icon {
  padding: 20px 20px 20px 0; }
  /* line 24, Resources/Private/Frontend/sass/partials/mod/_list-icon.scss */
  .list-icon ul > li {
    line-height: 26px; }
  /* line 32, Resources/Private/Frontend/sass/partials/mod/_list-icon.scss */
  .list-icon a[class^="icon-"] {
    margin-left: 1.8rem; }
  /* line 36, Resources/Private/Frontend/sass/partials/mod/_list-icon.scss */
  .list-icon .icon-before:before {
    display: inline-block;
    line-height: 0.9em;
    overflow: hidden;
    position: absolute;
    left: -2.5rem;
    top: -4px;
    color: #0f2d64; }
  /* line 47, Resources/Private/Frontend/sass/partials/mod/_list-icon.scss */
  .tx-bra-events-ukk .events-uploads .list-icon .icon-before:before {
    display: inline-block;
    line-height: 0.9em;
    overflow: hidden;
    position: absolute;
    left: -2.2625rem;
    top: -4px;
    color: #0f2d64; }
  /* line 58, Resources/Private/Frontend/sass/partials/mod/_list-icon.scss */
  .list-icon a:visited {
    color: #b35d5d; }
    /* line 61, Resources/Private/Frontend/sass/partials/mod/_list-icon.scss */
    .list-icon a:visited:before {
      color: #b35d5d; }
    /* line 65, Resources/Private/Frontend/sass/partials/mod/_list-icon.scss */
    .list-icon a:visited:after {
      background: #b35d5d; }

/**
 * brandung accordion.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   Accordion
   ========================================================================== */
/* line 20, Resources/Private/Frontend/sass/partials/mod/_accordion.scss */
.accordion {
  background: #fff;
  margin: 20px 0;
  padding: 0;
  overflow: hidden; }
  /* line 26, Resources/Private/Frontend/sass/partials/mod/_accordion.scss */
  .accordion__panel {
    position: relative;
    padding: 20px 80px 20px 20px;
    border-top: 1px solid #0f2d64;
    color: #0f2d64;
    font-weight: 400;
    cursor: pointer; }
    /* line 34, Resources/Private/Frontend/sass/partials/mod/_accordion.scss */
    .accordion__panel:after {
      position: absolute;
      top: 15px;
      right: 0; }
    /* line 42, Resources/Private/Frontend/sass/partials/mod/_accordion.scss */
    .accordion__panel.is-active {
      margin: 0;
      color: #565656; }
  /* line 53, Resources/Private/Frontend/sass/partials/mod/_accordion.scss */
  .accordion__content {
    padding: 0 20px;
    padding-bottom: 20px;
    display: none;
    overflow: hidden; }
  /* line 64, Resources/Private/Frontend/sass/partials/mod/_accordion.scss */
  .accordion .is-active {
    display: block; }
  /* line 68, Resources/Private/Frontend/sass/partials/mod/_accordion.scss */
  .accordion__slider {
    position: relative;
    float: left;
    margin: 20px 20px 20px 0; }
    @media screen and (max-width: 47.999em) {
      /* line 68, Resources/Private/Frontend/sass/partials/mod/_accordion.scss */
      .accordion__slider {
        width: 100%; } }
    /* line 78, Resources/Private/Frontend/sass/partials/mod/_accordion.scss */
    .accordion__slider img {
      width: 100%; }

/* accordion--table */
/* line 91, Resources/Private/Frontend/sass/partials/mod/_accordion.scss */
.accordion--table .accordion__panel.is-active {
  background: #0f2d64;
  color: #fff; }

/* line 97, Resources/Private/Frontend/sass/partials/mod/_accordion.scss */
.accordion--table .accordion__content {
  padding: 0; }

/* line 104, Resources/Private/Frontend/sass/partials/mod/_accordion.scss */
.no-js .accordion__content {
  display: block; }

/**
 * brandung overlay.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-28
 * MIT License (MIT)
 */
/* ==========================================================================
   Overlay
   ========================================================================== */
/* line 17, Resources/Private/Frontend/sass/partials/mod/_overlay.scss */
.overlay {
  background: #fff;
  padding: 20px;
  margin: 20px 0;
  overflow: hidden; }
  /* line 24, Resources/Private/Frontend/sass/partials/mod/_overlay.scss */
  .overlay__thumbnail:after {
    display: none; }
  /* line 29, Resources/Private/Frontend/sass/partials/mod/_overlay.scss */
  .overlay__next {
    position: absolute;
    top: 50%;
    background: #0f2d64 !important;
    width: 40px;
    height: 40px;
    right: 10px;
    padding: 3px 5px 0 0;
    color: #fff;
    opacity: 0.7; }
    /* line 44, Resources/Private/Frontend/sass/partials/mod/_overlay.scss */
    .overlay__next:hover {
      opacity: 10;
      background: #0f2d64 !important; }
  /* line 53, Resources/Private/Frontend/sass/partials/mod/_overlay.scss */
  .overlay__prev {
    position: absolute;
    top: 50%;
    background: #0f2d64 !important;
    width: 40px;
    height: 40px;
    left: 10px;
    padding: 3px 5px 0 0;
    color: #fff;
    opacity: 0.7; }
    /* line 69, Resources/Private/Frontend/sass/partials/mod/_overlay.scss */
    .overlay__prev:hover {
      opacity: 10;
      background: #0f2d64 !important; }
  /* line 78, Resources/Private/Frontend/sass/partials/mod/_overlay.scss */
  .overlay__content {
    border-radius: 0; }
  /* line 82, Resources/Private/Frontend/sass/partials/mod/_overlay.scss */
  .overlay__title {
    font-weight: 300;
    padding: 0 20px 10px 20px; }
    /* line 91, Resources/Private/Frontend/sass/partials/mod/_overlay.scss */
    .overlay__title span {
      float: right;
      font-weight: 700; }
  /* line 97, Resources/Private/Frontend/sass/partials/mod/_overlay.scss */
  .overlay__close {
    margin: 30px;
    background: #0f2d64;
    color: #fff;
    text-decoration: none;
    padding: 8px 0px 0 4px;
    opacity: 0.7;
    width: 41px;
    height: 40px; }
    /* line 107, Resources/Private/Frontend/sass/partials/mod/_overlay.scss */
    .overlay__close:before {
      font-size: 25px; }
    /* line 114, Resources/Private/Frontend/sass/partials/mod/_overlay.scss */
    .overlay__close:hover {
      opacity: 1; }
  /* line 119, Resources/Private/Frontend/sass/partials/mod/_overlay.scss */
  .overlay__zoom {
    border-top: 1px solid #8a99a7;
    padding: 10px 0 5px;
    margin: 10px 0 0; }
    /* line 124, Resources/Private/Frontend/sass/partials/mod/_overlay.scss */
    .overlay__zoom a {
      position: relative;
      text-decoration: underline;
      color: #0f2d64;
      position: relative;
      margin-right: 1.3rem; }
      /* line 171, Resources/Private/Frontend/sass/partials/_mixins.scss */
      .overlay__zoom a:hover {
        text-decoration: none; }
      /* line 129, Resources/Private/Frontend/sass/partials/mod/_overlay.scss */
      .overlay__zoom a:after {
        font-size: 16px;
        font-size: 1rem;
        transition: bottom 0.2s;
        bottom: 2px;
        display: inline-block !important;
        line-height: .9em;
        overflow: hidden;
        position: absolute; }
      /* line 142, Resources/Private/Frontend/sass/partials/mod/_overlay.scss */
      .overlay__zoom a:hover:after {
        bottom: 7px; }
      /* line 147, Resources/Private/Frontend/sass/partials/mod/_overlay.scss */
      .overlay__zoom a:visited {
        color: #b35d5d; }
        /* line 150, Resources/Private/Frontend/sass/partials/mod/_overlay.scss */
        .overlay__zoom a:visited:after {
          background: #b35d5d; }
  /* line 158, Resources/Private/Frontend/sass/partials/mod/_overlay.scss */
  .overlay--header {
    background: #fff;
    padding: 20px; }
    /* line 162, Resources/Private/Frontend/sass/partials/mod/_overlay.scss */
    .overlay--header h3 {
      margin: 0; }

/* line 168, Resources/Private/Frontend/sass/partials/mod/_overlay.scss */
.fancybox {
  position: relative;
  display: inline-block; }
  /* line 172, Resources/Private/Frontend/sass/partials/mod/_overlay.scss */
  .fancybox:after {
    display: none; }
  /* line 176, Resources/Private/Frontend/sass/partials/mod/_overlay.scss */
  .fancybox:before {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    background-color: #0f2d64;
    width: 40px;
    height: 40px;
    overflow: hidden;
    opacity: .75;
    font-size: 40px;
    font-size: 2.5rem;
    padding: 0; }
  /* line 193, Resources/Private/Frontend/sass/partials/mod/_overlay.scss */
  .fancybox:hover:before {
    opacity: 1; }
  /* line 198, Resources/Private/Frontend/sass/partials/mod/_overlay.scss */
  .fancybox--text:before {
    content: none; }
  /* line 202, Resources/Private/Frontend/sass/partials/mod/_overlay.scss */
  .fancybox-lock body {
    overflow-y: scroll !important; }
  @media print {
    /* line 168, Resources/Private/Frontend/sass/partials/mod/_overlay.scss */
    .fancybox {
      display: none; } }

/* line 211, Resources/Private/Frontend/sass/partials/mod/_overlay.scss */
.fancybox-wrap {
  margin-left: -8px !important; }

/**
 * brandung mediathek.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-03-14
 * MIT License (MIT)
 */
/* ==========================================================================
   Mediathek
   ========================================================================== */
/* line 18, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
.mediathek {
  margin: 20px 0; }
  /* line 23, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
  .mediathek__item-list span {
    display: none; }
    @media screen and (max-width: 47.999em) {
      /* line 23, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
      .mediathek__item-list span {
        display: block; } }
  /* line 31, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
  .mediathek__item-list select {
    display: none; }
  @media screen and (max-width: 47.999em) {
    /* line 37, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
    .mediathek__item-list select {
      display: block; } }
  /* line 43, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
  .mediathek__headline-icon {
    overflow: hidden; }
    /* line 47, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
    .mediathek__headline-icon li {
      float: left;
      width: 25%;
      color: #0f2d64;
      background: #fff;
      padding: 20px;
      text-align: center;
      border: 1px solid #0f2d64;
      cursor: pointer;
      -o-box-shadow: inset 2px 2px 3px rgba(68,68,68,0.2);
      -ms-box-shadow: inset 2px 2px 3px rgba(68,68,68,0.2);
      box-shadow: inset 2px 2px 3px rgba(68,68,68,0.2); }
      @media screen and (max-width: 47.999em) {
        /* line 47, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
        .mediathek__headline-icon li {
          border-top: 0; }
          /* line 62, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
          .mediathek__headline-icon li:first-child {
            border-top: 1px solid #0f2d64; } }
      @media screen and (min-width: 48em) {
        /* line 47, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
        .mediathek__headline-icon li {
          border-left: 0; }
          /* line 70, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
          .mediathek__headline-icon li:first-child {
            border: 1px solid #0f2d64; } }
      @media screen and (min-width: 62em) {
        /* line 47, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
        .mediathek__headline-icon li {
          border-left: 0; }
          /* line 78, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
          .mediathek__headline-icon li:first-child {
            border: 1px solid #0f2d64; } }
      /* line 83, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
      .mediathek__headline-icon li:before {
        display: block;
        content: '' !important;
        height: 62px;
        width: 100%; }
      /* line 91, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
      .mediathek__headline-icon li.icon-images:before {
        background: url(../img/svg/ukk_images.svg) transparent center center no-repeat; }
      /* line 97, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
      .mediathek__headline-icon li.icon-videos:before {
        background: url(../img/svg/ukk_video.svg) transparent center center no-repeat; }
      /* line 103, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
      .mediathek__headline-icon li.icon-annualreport:before {
        background: url(../img/svg/ukk_annualreport.svg) transparent center center no-repeat; }
      /* line 109, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
      .mediathek__headline-icon li.icon-qualityreport:before {
        background: url(../img/svg/ukk_qualityreport.svg) transparent center center no-repeat; }
      /* line 115, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
      .mediathek__headline-icon li.icon-employee:before {
        background: url(../img/svg/ukk_employee.svg) transparent center center no-repeat; }
      @media screen and (max-width: 47.999em) {
        /* line 47, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
        .mediathek__headline-icon li {
          width: 100%;
          text-align: left;
          font-family: 'Merriweather Sans', sans-serif;
          speak: none;
          -webkit-font-smoothing: �antialiased;
          -moz-osx-font-smoothing: �grayscale;
          font-size: 16px;
          font-size: 1rem;
          font-weight: 700;
          color: #0f2d64; }
          /* line 134, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
          .mediathek__headline-icon li:before {
            display: inline; } }
      /* line 140, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
      .mediathek__headline-icon li.is-active, .mediathek__headline-icon li:hover {
        background: #0f2d64;
        color: #fff; }
        /* line 145, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
        .mediathek__headline-icon li.is-active p, .mediathek__headline-icon li:hover p {
          color: #fff; }
        /* line 150, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
        .mediathek__headline-icon li.is-active.icon-images:before, .mediathek__headline-icon li:hover.icon-images:before {
          background: url(../img/svg/ukk_imagesw.svg) transparent center center no-repeat; }
        /* line 156, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
        .mediathek__headline-icon li.is-active.icon-videos:before, .mediathek__headline-icon li:hover.icon-videos:before {
          background: url(../img/svg/ukk_videow.svg) transparent center center no-repeat; }
        /* line 162, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
        .mediathek__headline-icon li.is-active.icon-annualreport:before, .mediathek__headline-icon li:hover.icon-annualreport:before {
          background: url(../img/svg/ukk_annualreportw.svg) transparent center center no-repeat; }
        /* line 168, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
        .mediathek__headline-icon li.is-active.icon-qualityreport:before, .mediathek__headline-icon li:hover.icon-qualityreport:before {
          background: url(../img/svg/ukk_qualityreportw.svg) transparent center center no-repeat; }
        /* line 174, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
        .mediathek__headline-icon li.is-active.icon-employee:before, .mediathek__headline-icon li:hover.icon-employee:before {
          background: url(../img/svg/ukk_employeew.svg) transparent center center no-repeat; }
    @media screen and (max-width: 47.999em) {
      /* line 43, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
      .mediathek__headline-icon {
        display: none; } }
    /* line 185, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
    .mediathek__headline-icon .is-active {
      position: relative; }
      /* line 190, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
      .mediathek__headline-icon .is-active .mediathek__morecontent-divider {
        display: none;
        float: left; }
      /* line 196, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
      .mediathek__headline-icon .is-active:after {
        font-size: 40px;
        font-size: 2.5rem;
        position: absolute;
        top: 50%;
        margin-top: -20px;
        right: 5%; }
      @media screen and (min-width: 48em) {
        /* line 207, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
        .mediathek__headline-icon .is-active:after {
          display: none; } }
      @media screen and (min-width: 62em) {
        /* line 213, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
        .mediathek__headline-icon .is-active:after {
          display: none; } }
      /* line 218, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
      .mediathek__headline-icon .is-active p {
        color: #fff; }
    /* line 223, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
    .mediathek__headline-icon .is-close {
      position: relative; }
      /* line 226, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
      .mediathek__headline-icon .is-close:after {
        display: none; }
      @media screen and (min-width: 62em) {
        /* line 232, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
        .mediathek__headline-icon .is-close:after {
          display: none; } }
  /* line 238, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
  .mediathek__content {
    display: none;
    color: #565656 !important;
    position: relative;
    z-index: 1; }
    /* line 248, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
    .mediathek__content.is-active {
      display: block;
      color: #565656; }
    /* line 255, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
    .mediathek__content a.fancybox:before {
      display: none; }
  /* line 262, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
  .mediathek__item {
    position: relative;
    background: transparent;
    margin-top: 15px;
    color: #0f2d64;
    text-align: center; }
    /* line 269, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
    .mediathek__item:nth-child(3n+4) {
      clear: both; }
    /* line 273, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
    .mediathek__item a {
      text-decoration: none; }
  /* line 279, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
  .mediathek__container {
    position: relative;
    padding: 10px 10px 0;
    line-height: 19px;
    width: 100%;
    background: #fff;
    text-align: left;
    height: 77px; }
    @media screen and (min-width: 61.999em) {
      /* line 279, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
      .mediathek__container {
        padding: 10px; } }
    /* line 296, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
    .mediathek__container.is-flyout.is-active .mediathek__header {
      display: none; }
    /* line 300, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
    .mediathek__container.is-flyout.is-active > .mediathek__download {
      display: none; }
    /* line 304, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
    .mediathek__container.is-flyout.is-active .mediathek__flyout {
      display: block;
      color: #fff;
      background: rgba(15, 45, 100, 0.8); }
      @media screen and (max-width: 47.999em) {
        /* line 304, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
        .mediathek__container.is-flyout.is-active .mediathek__flyout {
          position: relative;
          margin: -10px -10px 0 -10px;
          padding-top: 1px; } }
  /* line 319, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
  .mediathek__header {
    position: relative;
    margin: 0;
    padding: 0 30px 0 0; }
    /* line 326, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
    .is-flyout .mediathek__header:after {
      position: absolute;
      top: 0;
      margin-top: -1px;
      right: -10px;
      cursor: pointer; }
  /* line 338, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
  .mediathek__flyout {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 30px 0 10px;
    color: #fff;
    background: rgba(15, 45, 100, 0.8);
    z-index: 10; }
    /* line 349, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
    .mediathek__flyout:after {
      -webkit-transform: rotate(180deg);
      transform: rotate(180deg);
      color: #fff;
      position: absolute;
      top: 0;
      margin-top: 8px;
      right: 0;
      cursor: pointer; }
  /* line 363, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
  .mediathek__download {
    margin: 0 0 10px; }
    /* line 366, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
    .mediathek__flyout .mediathek__download {
      margin-right: -21px; }
    /* line 374, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
    .mediathek__download .left {
      margin-left: -12px; }
    /* line 378, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
    .mediathek__download .right {
      margin-right: -12px; }
    /* line 383, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
    .mediathek__flyout .mediathek__download a {
      color: white; }
    /* line 388, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
    .mediathek__download span {
      font-size: 24px; }
      /* line 391, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
      .mediathek__download span:before {
        display: none; }
  /* line 397, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
  .mediathek__mobile-vid {
    position: relative;
    padding-bottom: 56%;
    /* Default for 1600x900 videos 16:9 ratio*/
    padding-top: 0;
    height: 0;
    overflow: hidden; }
    /* line 404, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
    .mediathek__mobile-vid iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    @media print {
      /* line 397, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
      .mediathek__mobile-vid {
        display: none; } }
  /* line 418, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
  .mediathek__fancy .fancybox-inner {
    overflow: hidden !important; }
  @media print {
    /* line 18, Resources/Private/Frontend/sass/partials/mod/_mediathek.scss */
    .mediathek {
      display: none !important; } }

/**
* brandung News-list.scss v1.0.0
*
* Copyright brandung GmbH & Co.KG
* http://www.brandung.de/
*
* Date: 2015-05-13
* MIT License (MIT)
*/
/* ==========================================================================
	News-List
========================================================================== */
/* line 16, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
.news-list {
  overflow: hidden;
  margin: 20px 0 0;
  padding: 0; }
  /* line 22, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
  .news-list .col-xs-4 {
    padding-left: 0; }
  /* line 26, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
  .news-list .col-xs-8 {
    margin-left: -20px; }
    @media screen and (min-width: 79.25em) {
      /* line 26, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
      .news-list .col-xs-8 {
        margin-left: -60px;
        min-width: 350px; } }
  @media screen and (min-width: 79.25em) {
    /* line 36, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
    .news-list:not(.news-list--preview) .col-xs-8 {
      width: 670px; } }
  @media screen and (max-width: 47.999em) {
    /* line 16, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
    .news-list {
      padding-bottom: 20px; } }
  /* line 46, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
  .news-list ul {
    padding-left: 0; }
  /* line 50, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
  .news-list li {
    background: #fff;
    overflow: hidden;
    clear: both;
    margin-bottom: 20px; }
    @media screen and (min-width: 48em) {
      /* line 50, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
      .news-list li {
        height: 193px; } }
    @media screen and (min-width: 125em) {
      /* line 50, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
      .news-list li {
        height: 221px; } }
    /* line 65, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
    .news-list li:last-child {
      margin-bottom: 0; }
    /* line 70, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
    .news-list li:hover .news-list__headline {
      text-decoration: underline; }
    @media print {
      /* line 50, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
      .news-list li {
        height: auto !important; } }
  /* line 80, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
  .news-list a {
    text-decoration: none; }
  /* line 84, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
  .news-list__text {
    display: none;
    margin: 0 20px;
    padding: 0 20px 0 0;
    color: #565656; }
    /* line 90, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
    .news-list__text a {
      color: #565656;
      text-decoration: none; }
      /* line 94, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
      .news-list__text a:after {
        content: none; }
    @media screen and (min-width: 48em) {
      /* line 84, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
      .news-list__text {
        display: block;
        margin: 0;
        padding: 0 20px 10px; } }
    @media print {
      /* line 84, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
      .news-list__text {
        display: block !important;
        margin: 0 !important;
        padding: 0 !important; } }
  /* line 112, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
  .news-list__teaser-text {
    display: inline; }
    @media screen and (max-width: 29.999em) {
      /* line 112, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
      .news-list__teaser-text {
        display: inline-block;
        width: 100%; } }
    /* line 120, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
    .news-list__teaser-text.no-image {
      max-width: 90%;
      margin-left: 5%; }
  /* line 126, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
  .news-list__image {
    transition: max-width 500ms ease;
    transition: max-height 500ms ease;
    float: left;
    margin-right: 20px;
    max-height: 200px;
    overflow: hidden; }
    @media screen and (max-width: 29.999em) {
      /* line 126, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
      .news-list__image {
        max-width: 95px;
        max-height: 110px; } }
    @media screen and (min-width: 62em) {
      /* line 126, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
      .news-list__image {
        max-height: 193px; } }
    @media screen and (min-width: 125em) {
      /* line 126, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
      .news-list__image {
        max-height: 221px; } }
    /* line 149, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
    .news-list__image img {
      max-width: 250px;
      max-height: 219px; }
      @media screen and (min-width: 48em) {
        /* line 149, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
        .news-list__image img {
          max-width: 100%;
          max-height: 219px; } }
      @media screen and (min-width: 62em) {
        /* line 149, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
        .news-list__image img {
          max-height: 100%; } }
  /* line 168, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
  .news-list__date {
    font-size: 12px;
    font-size: 0.75rem;
    float: right;
    margin: 0 20px; }
    @media screen and (max-width: 47.999em) {
      /* line 168, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
      .news-list__date {
        display: block;
        float: none;
        margin: 0; } }
  /* line 181, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
  .news-list__category {
    color: #565656;
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: 400;
    margin: 0 0 10px 20px;
    padding-top: 10px; }
    @media screen and (max-width: 47.999em) {
      /* line 181, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
      .news-list__category {
        font-size: 12px;
        margin-bottom: 5px; } }
    /* line 193, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
    .news-list--preview .news-list__category {
      font-size: 12px; }
      @media screen and (min-width: 125em) {
        /* line 193, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
        .news-list--preview .news-list__category {
          font-size: 16px;
          font-size: 1rem; } }
    @media print {
      /* line 181, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
      .news-list__category {
        margin-left: 0 !important; } }
  /* line 207, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
  .news-list__headline {
    color: #0f2d64;
    font-weight: 400;
    margin: 0 20px;
    padding: 0; }
    @media screen and (max-width: 29.999em) {
      /* line 207, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
      .news-list__headline {
        font-size: 14px;
        margin-top: 0;
        padding: 0 0 10px 0; } }
    @media screen and (max-width: 47.999em) {
      /* line 207, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
      .news-list__headline {
        font-size: 14px;
        margin-top: 0;
        padding: 0 0 10px 0; } }
    @media screen and (min-width: 48em) {
      /* line 207, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
      .news-list__headline {
        font-size: 20px;
        margin-top: 0;
        padding: 0 0 10px 0; } }
    @media screen and (min-width: 62em) {
      /* line 207, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
      .news-list__headline {
        font-size: 20px;
        padding: 10px 0; } }
    /* line 237, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
    .news-list--preview .news-list__headline {
      font-size: 18px;
      font-size: 1.125rem;
      font-weight: 400; }
      @media screen and (max-width: 47.999em) {
        /* line 237, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
        .news-list--preview .news-list__headline {
          font-size: 16px;
          font-size: 1rem;
          line-height: 1.2rem; } }
      @media screen and (min-width: 125em) {
        /* line 237, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
        .news-list--preview .news-list__headline {
          font-size: 20px;
          font-size: 1.25rem; } }
    @media print {
      /* line 207, Resources/Private/Frontend/sass/partials/mod/_news-list.scss */
      .news-list__headline {
        margin: 0 !important; } }

/**
 * brandung category-filter.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-03-14
 * MIT License (MIT)
 */
/* ==========================================================================
   Category-Filter
   ========================================================================== */
@media screen and (max-width: 29.999em) {
  /* line 20, Resources/Private/Frontend/sass/partials/mod/_category-filter.scss */
  .category label {
    display: block; } }

/* line 27, Resources/Private/Frontend/sass/partials/mod/_category-filter.scss */
.category .selectboxit-arrow-container:after {
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
  font-size: 28px;
  font-size: 1.75rem;
  position: absolute;
  right: 0;
  top: 2px;
  color: #0f2d64; }

/* line 39, Resources/Private/Frontend/sass/partials/mod/_category-filter.scss */
.category__select {
  position: relative; }

/* line 43, Resources/Private/Frontend/sass/partials/mod/_category-filter.scss */
.category span {
  padding-left: 0; }

@media print {
  /* line 15, Resources/Private/Frontend/sass/partials/mod/_category-filter.scss */
  .category {
    display: none; } }

/* line 52, Resources/Private/Frontend/sass/partials/mod/_category-filter.scss */
i.category__select:after {
  display: none; }

/**
* brandung pagination.scss v1.0.0
*
* Copyright brandung GmbH & Co.KG
* http://www.brandung.de/
*
* Date: 2015-05-13
* MIT License (MIT)
*/
/* ==========================================================================
	Pagination
========================================================================== */
/* line 17, Resources/Private/Frontend/sass/partials/mod/_pagination.scss */
.pagination {
  text-align: right; }
  /* line 21, Resources/Private/Frontend/sass/partials/mod/_pagination.scss */
  .pagination ul {
    margin: 20px 0 40px;
    display: inline-block; }
    @media screen and (min-width: 62em) {
      /* line 21, Resources/Private/Frontend/sass/partials/mod/_pagination.scss */
      .pagination ul {
        float: right; } }
    /* line 30, Resources/Private/Frontend/sass/partials/mod/_pagination.scss */
    .pagination ul.f3-widget-paginator {
      float: none;
      margin-bottom: 0; }
  /* line 36, Resources/Private/Frontend/sass/partials/mod/_pagination.scss */
  .pagination .btn {
    border: none;
    padding: 10px 20px;
    text-decoration: none;
    border-right: 1px solid #e1e1e1; }
  /* line 43, Resources/Private/Frontend/sass/partials/mod/_pagination.scss */
  .pagination li {
    font-weight: 700;
    float: left;
    background: #fff; }
    @media screen and (max-width: 47.999em) {
      /* line 43, Resources/Private/Frontend/sass/partials/mod/_pagination.scss */
      .pagination li {
        background: none; } }
    /* line 54, Resources/Private/Frontend/sass/partials/mod/_pagination.scss */
    .pagination li:first-child .btn {
      padding: 5px 3px; }
    /* line 59, Resources/Private/Frontend/sass/partials/mod/_pagination.scss */
    .pagination li a {
      text-decoration: none; }
    /* line 65, Resources/Private/Frontend/sass/partials/mod/_pagination.scss */
    .pagination li:last-child .btn {
      padding: 5px 3px;
      border-right: 0; }
    /* line 71, Resources/Private/Frontend/sass/partials/mod/_pagination.scss */
    .pagination li:hover {
      background: #0f2d64;
      color: #fff; }
      @media screen and (max-width: 47.999em) {
        /* line 71, Resources/Private/Frontend/sass/partials/mod/_pagination.scss */
        .pagination li:hover {
          background: none; } }
  /* line 81, Resources/Private/Frontend/sass/partials/mod/_pagination.scss */
  .pagination .active {
    background: #0f2d64;
    color: #fff; }
    /* line 85, Resources/Private/Frontend/sass/partials/mod/_pagination.scss */
    .pagination .active a {
      color: #fff; }

/**
 * brandung video-container v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-04
 * MIT License (MIT)
 */
/* line 13, Resources/Private/Frontend/sass/partials/mod/_video.scss */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden; }
  /* line 19, Resources/Private/Frontend/sass/partials/mod/_video.scss */
  .video-container img {
    width: 100%;
    height: 100%; }
  /* line 24, Resources/Private/Frontend/sass/partials/mod/_video.scss */
  .video-container__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer; }
    /* line 33, Resources/Private/Frontend/sass/partials/mod/_video.scss */
    .video-gallery .video-container__video:before {
      display: none; }
    /* line 38, Resources/Private/Frontend/sass/partials/mod/_video.scss */
    .video-container__video:before {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #000;
      opacity: 0;
      transition: opacity 0.3s ease-out; }
    /* line 51, Resources/Private/Frontend/sass/partials/mod/_video.scss */
    .video-container__video:after {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 105px;
      line-height: 105px;
      height: 105px;
      color: #0f2d64;
      background: #fff;
      background: rgba(255, 255, 255, 0.75);
      border-radius: 50%;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
      text-align: center;
      padding: 0;
      font-size: 55px;
      font-size: 3.4375rem;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      transition: background 0.2s ease;
      z-index: 1; }
    /* line 75, Resources/Private/Frontend/sass/partials/mod/_video.scss */
    .no-touch .video-container__video:hover:before,
    .touch .video-container__video:active:before {
      opacity: .5; }
    /* line 79, Resources/Private/Frontend/sass/partials/mod/_video.scss */
    .no-touch .video-container__video:hover:after,
    .touch .video-container__video:active:after {
      background: #fff; }
  @media print {
    /* line 13, Resources/Private/Frontend/sass/partials/mod/_video.scss */
    .video-container {
      display: none; } }

/* line 92, Resources/Private/Frontend/sass/partials/mod/_video.scss */
.slick-slide .video-container img {
  height: auto;
  max-height: inherit; }

/**
 * brandung audio-player.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-05
 * MIT License (MIT)
 */
/* ==========================================================================
   audio-player
   ========================================================================== */
/* line 18, Resources/Private/Frontend/sass/partials/mod/_audio-player.scss */
.audio-player {
  border: 2px solid #8a99a7;
  padding: 10px 0 8px 20px;
  margin: 20px 0; }
  /* line 23, Resources/Private/Frontend/sass/partials/mod/_audio-player.scss */
  .audio-player .audioplayer {
    overflow: hidden; }
  /* line 26, Resources/Private/Frontend/sass/partials/mod/_audio-player.scss */
  .audio-player .audioplayer-playpause,
  .audio-player .audioplayer-volume,
  .audio-player .audioplayer-bar {
    float: left; }
  /* line 33, Resources/Private/Frontend/sass/partials/mod/_audio-player.scss */
  .audio-player .file-size {
    float: right; }
    @media screen and (max-width: 29.999em) {
      /* line 33, Resources/Private/Frontend/sass/partials/mod/_audio-player.scss */
      .audio-player .file-size {
        display: none; } }
    /* line 39, Resources/Private/Frontend/sass/partials/mod/_audio-player.scss */
    .audio-player .file-size:after {
      font-size: 40px;
      font-size: 2.5rem;
      color: #0f2d64; }
  /* line 47, Resources/Private/Frontend/sass/partials/mod/_audio-player.scss */
  .audio-player .audioplayer-playpause {
    position: relative;
    width: 40px;
    padding: 10px;
    cursor: pointer;
    font-size: 0;
    background: #8a99a7;
    height: 40px;
    border-radius: 50%;
    color: #fff; }
    /* line 58, Resources/Private/Frontend/sass/partials/mod/_audio-player.scss */
    .audio-player .audioplayer-playpause:before {
      font-size: 26px;
      font-size: 1.625rem;
      position: absolute;
      top: 50%;
      margin-top: -12px;
      margin-left: -15px;
      left: 50%; }
  /* line 70, Resources/Private/Frontend/sass/partials/mod/_audio-player.scss */
  .audio-player .audioplayer-playing .audioplayer-playpause:before {
    margin-left: -18px; }
  /* line 75, Resources/Private/Frontend/sass/partials/mod/_audio-player.scss */
  .audio-player .audioplayer-volume-button {
    position: relative;
    font-size: 0;
    color: #fff;
    background: #8a99a7;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%; }
    /* line 84, Resources/Private/Frontend/sass/partials/mod/_audio-player.scss */
    .audio-player .audioplayer-volume-button:before {
      font-size: 35px;
      font-size: 2.1875rem;
      position: absolute;
      top: 50%;
      margin-top: -17px;
      right: -2px; }
  /* line 98, Resources/Private/Frontend/sass/partials/mod/_audio-player.scss */
  .audio-player .audioplayer-bar {
    width: 55%;
    height: 10px;
    border-radius: 5px;
    background: #f6f6f6;
    margin: 15px 30px; }
  /* line 106, Resources/Private/Frontend/sass/partials/mod/_audio-player.scss */
  .audio-player .audioplayer-bar-loaded {
    background: #333; }
  /* line 109, Resources/Private/Frontend/sass/partials/mod/_audio-player.scss */
  .audio-player .audioplayer-bar-played {
    position: relative;
    background: #777777;
    border-radius: 5px;
    height: 10px; }
  /* line 117, Resources/Private/Frontend/sass/partials/mod/_audio-player.scss */
  .audio-player .audioplayer-bar-played::after {
    background: #8a99a7;
    height: 20px;
    width: 20px;
    content: '#';
    color: #8a99a7;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -10px;
    border-radius: 50%; }
  /* line 131, Resources/Private/Frontend/sass/partials/mod/_audio-player.scss */
  .audio-player .audioplayer-time {
    display: none; }
  @media print {
    /* line 18, Resources/Private/Frontend/sass/partials/mod/_audio-player.scss */
    .audio-player {
      display: none; } }

/**
 * brandung events-infobox.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   Events-infoBox
   ========================================================================== */
/* line 17, Resources/Private/Frontend/sass/partials/mod/_events-infobox.scss */
.events-box {
  overflow: hidden;
  border: 1px solid #0f2d64;
  padding: 20px; }
  /* line 22, Resources/Private/Frontend/sass/partials/mod/_events-infobox.scss */
  .events-box ul {
    display: table; }
  /* line 28, Resources/Private/Frontend/sass/partials/mod/_events-infobox.scss */
  .events-box p {
    padding: 0 20px 0 100px; }
    @media screen and (max-width: 47.999em) {
      /* line 28, Resources/Private/Frontend/sass/partials/mod/_events-infobox.scss */
      .events-box p {
        padding: 0; } }
  /* line 36, Resources/Private/Frontend/sass/partials/mod/_events-infobox.scss */
  .events-box li > span {
    width: 100px;
    float: left; }
    @media screen and (max-width: 47.999em) {
      /* line 36, Resources/Private/Frontend/sass/partials/mod/_events-infobox.scss */
      .events-box li > span {
        float: none;
        font-weight: 700; } }

/**
 * brandung date.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   Date
   ========================================================================== */
/* line 22, Resources/Private/Frontend/sass/partials/mod/_date.scss */
.date ul li {
  display: inline-block;
  padding: 0 20px 0 0; }

/* line 28, Resources/Private/Frontend/sass/partials/mod/_date.scss */
.date__sub {
  margin: 0; }

/**
 * brandung sharing.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   Sharing
   ========================================================================== */
/* line 17, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
.share-me {
  margin: 20px 0; }
  /* line 24, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
  .share-me li {
    display: inline;
    padding: 10px 20px;
    border-left: 1px solid #e1e1e1; }
    @media screen and (min-width: 48em) {
      /* line 31, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
      .share-me li:last-child {
        display: none; } }
    @media screen and (min-width: 62em) {
      /* line 38, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
      .share-me li:last-child {
        display: none; } }
  /* line 45, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
  .share-me .shariff-button {
    background: #fff;
    color: #ccc;
    padding: 10px 0;
    -o-box-shadow: 3px 3px 3px rgba(68,68,68,0.4);
    -ms-box-shadow: 3px 3px 3px rgba(68,68,68,0.4);
    box-shadow: 3px 3px 3px rgba(68,68,68,0.4);
    position: relative; }
    @media screen and (max-width: 47.999em) {
      /* line 45, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
      .share-me .shariff-button {
        padding: 5px 0; }
        /* line 54, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
        .share-me .shariff-button span {
          display: none; } }
    /* line 59, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
    .share-me .shariff-button:hover {
      color: #fff; }
    /* line 63, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
    .share-me .shariff-button a {
      color: #ccc;
      text-decoration: none; }
      /* line 68, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
      .share-me .shariff-button a:hover {
        color: #fff; }
    /* line 75, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
    .share-me .shariff-button.googleplus a {
      padding: 10px 20px 10px 10px; }
      /* line 82, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
      .share-me .shariff-button.googleplus a:hover {
        background: #D34836; }
      @media screen and (max-width: 47.999em) {
        /* line 75, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
        .share-me .shariff-button.googleplus a {
          padding: 5px; } }
    /* line 94, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
    .share-me .shariff-button.facebook a {
      padding: 10px 20px; }
      /* line 101, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
      .share-me .shariff-button.facebook a:hover {
        background: #3B5998; }
      @media screen and (max-width: 47.999em) {
        /* line 94, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
        .share-me .shariff-button.facebook a {
          padding: 5px; } }
    /* line 112, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
    .share-me .shariff-button.twitter a {
      padding: 10px 20px 10px 10px; }
      /* line 119, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
      .share-me .shariff-button.twitter a:hover {
        background: #55ACEE; }
      @media screen and (max-width: 47.999em) {
        /* line 112, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
        .share-me .shariff-button.twitter a {
          padding: 5px; } }
    /* line 130, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
    .share-me .shariff-button.mail a {
      padding: 10px 20px;
      margin: 0; }
      /* line 133, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
      .share-me .shariff-button.mail a:before {
        position: absolute;
        left: 0;
        top: 5px; }
        @media screen and (max-width: 47.999em) {
          /* line 133, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
          .share-me .shariff-button.mail a:before {
            padding: 0;
            position: relative;
            left: 0;
            top: 0; } }
      /* line 148, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
      .share-me .shariff-button.mail a:after {
        display: none; }
      /* line 152, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
      .share-me .shariff-button.mail a:hover {
        background: #2c9ab7; }
      /* line 155, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
      .share-me .shariff-button.mail a span {
        padding-left: 10px; }
      @media screen and (max-width: 47.999em) {
        /* line 130, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
        .share-me .shariff-button.mail a {
          padding: 5px; } }
    /* line 166, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
    .share-me .shariff-button.whatsapp a {
      padding: 10px 20px 10px 10px;
      margin: 0; }
      /* line 173, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
      .share-me .shariff-button.whatsapp a:hover {
        background: #4dc247; }
      @media screen and (max-width: 47.999em) {
        /* line 166, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
        .share-me .shariff-button.whatsapp a {
          padding: 5px; } }
    /* line 183, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
    .share-me .shariff-button.info a {
      padding: 10px 20px;
      margin: 0; }
      /* line 186, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
      .share-me .shariff-button.info a:before {
        position: absolute;
        top: 5px;
        right: 2px; }
      /* line 194, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
      .share-me .shariff-button.info a:hover {
        background: #55ACEE; }
      /* line 198, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
      .share-me .shariff-button.info a span {
        display: none; }
      @media screen and (max-width: 47.999em) {
        /* line 183, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
        .share-me .shariff-button.info a {
          padding: 5px; } }
  /* line 211, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
  .share-me--content {
    padding: 20px; }
    @media screen and (min-width: 48em) {
      /* line 211, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
      .share-me--content {
        min-width: 500px; } }
  /* line 219, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
  .share-me--layer {
    display: none; }
  @media print {
    /* line 17, Resources/Private/Frontend/sass/partials/mod/_sharing.scss */
    .share-me {
      display: none; } }

/**
 * brandung teaser.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-09
 * MIT License (MIT)
 */
/* ==========================================================================
   Teaser
   ========================================================================== */
/* line 24, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
.teaser.teaser--height-small, .teaser.teaser--height-small.teaser--center-text {
  min-height: 106px; }
  @media print {
    /* line 24, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser.teaser--height-small, .teaser.teaser--height-small.teaser--center-text {
      min-height: inherit !important; } }

/* line 32, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
.teaser {
  min-height: 232px;
  max-height: 232px; }
  @media print {
    /* line 32, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser {
      min-height: inherit !important;
      max-height: none !important; } }

/* line 42, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
.teaser--position {
  min-height: 256px;
  max-height: none; }
  @media print {
    /* line 42, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser--position {
      min-height: inherit !important; } }

/* line 51, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
.teaser--logo, .teaser--logo-wide {
  min-height: 300px; }
  @media print {
    /* line 51, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser--logo, .teaser--logo-wide {
      min-height: inherit !important; } }

/* line 59, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
.teaser {
  position: relative;
  overflow: hidden;
  background: #fff;
  margin-bottom: 20px;
  font-size: 16px;
  font-size: 1rem; }
  @media screen and (min-width: 48em) {
    /* line 59, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser {
      font-size: 14px;
      font-size: 0.875rem; } }
  @media screen and (min-width: 79.25em) {
    /* line 59, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser {
      font-size: 16px;
      font-size: 1rem; } }
  @media screen and (min-width: 125em) {
    /* line 59, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser {
      font-size: 20px;
      font-size: 1.25rem; } }
  @media screen and (min-width: 62em) {
    /* line 80, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser--icon-line.teaser--center-text {
      height: auto;
      max-height: none;
      min-height: 0; } }
  /* line 88, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser--icon-line.teaser--center-text .teaser__header {
    display: inline-block; }
  @media screen and (min-width: 62em) {
    /* line 92, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser--icon-line.teaser--center-text .teaser__content {
      padding: 50px 25px;
      position: static;
      -webkit-transform: none;
              transform: none; } }
  /* line 105, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser.util-bg--blue .teaser__content a,
  .teaser.util-bg--blue .teaser__content p,
  .teaser.util-bg--blue .teaser__content ul,
  .teaser.util-bg--blue .teaser__content ol,
  .teaser.util-bg--blue .teaser__content li,
  .teaser.util-bg--blue .teaser__content h1,
  .teaser.util-bg--blue .teaser__content h2,
  .teaser.util-bg--blue .teaser__content .sub-navigation__header,
  .teaser.util-bg--blue .teaser__content .teaser__header,
  .teaser.util-bg--blue .teaser__content h3, .teaser.util-bg--blue-dark .teaser__content a,
  .teaser.util-bg--blue-dark .teaser__content p,
  .teaser.util-bg--blue-dark .teaser__content ul,
  .teaser.util-bg--blue-dark .teaser__content ol,
  .teaser.util-bg--blue-dark .teaser__content li,
  .teaser.util-bg--blue-dark .teaser__content h1,
  .teaser.util-bg--blue-dark .teaser__content h2,
  .teaser.util-bg--blue-dark .teaser__content .sub-navigation__header,
  .teaser.util-bg--blue-dark .teaser__content .teaser__header,
  .teaser.util-bg--blue-dark .teaser__content h3 {
    color: #fff; }
  /* line 118, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser .col:first-child {
    padding: 0; }
  /* line 122, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser h2, .teaser .sub-navigation__header, .teaser .teaser__header {
    font-size: 18px;
    font-size: 1.125rem; }
    @media screen and (min-width: 48em) {
      /* line 122, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
      .teaser h2, .teaser .sub-navigation__header, .teaser .teaser__header {
        font-size: 16px;
        font-size: 1rem; } }
    @media screen and (min-width: 79.25em) {
      /* line 122, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
      .teaser h2, .teaser .sub-navigation__header, .teaser .teaser__header {
        font-size: 18px;
        font-size: 1.125rem; } }
    @media screen and (min-width: 125em) {
      /* line 122, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
      .teaser h2, .teaser .sub-navigation__header, .teaser .teaser__header {
        font-size: 22px;
        font-size: 1.375rem; } }
  /* line 139, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser img {
    width: auto;
    max-width: none; }
  /* line 145, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser__link p {
    color: #565656; }
  /* line 149, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser > a {
    display: block;
    min-height: inherit;
    text-decoration: none; }
    /* line 155, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser > a:hover .teaser__header {
      text-decoration: underline; }
  /* line 163, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser > a[target="_blank"].teaser__link {
    margin-right: 0; }
  /* line 167, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser > a[target="_blank"]:after {
    display: none; }
  /* line 172, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser > a[target="_blank"]:hover h2:after, .teaser > a[target="_blank"]:hover .sub-navigation__header:after, .teaser > a[target="_blank"]:hover .teaser__header:after {
    text-decoration: none !important;
    margin-top: -19px; }
  /* line 178, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser > a[target="_blank"]:visited {
    color: #565656; }
  /* line 183, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser__content {
    padding: 20px; }
    /* line 186, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content a {
      color: #565656;
      text-decoration: none; }
      /* line 190, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
      .teaser__content a:hover {
        text-decoration: underline; }
    @media screen and (max-width: 47.999em) {
      /* line 183, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
      .teaser__content {
        padding: 20px; } }
    @media screen and (max-width: 47.999em) {
      /* line 199, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
      .teaser__content > span.icon-only {
        float: none; } }
    /* line 205, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content > span.icon-only:before {
      content: '';
      display: inline-block;
      height: 60px;
      width: 60px; }
    /* line 213, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content > span.icon-only.icon-medicalfield:before {
      background: url(../img/svg/ukk_medicalfield.svg) transparent 5px 0 no-repeat; }
    /* line 219, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content > span.icon-only.icon-doctors:before {
      background: url(../img/svg/ukk_doctors.svg) transparent 5px 0 no-repeat; }
    /* line 225, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content > span.icon-only.icon-emergency:before {
      background: url(../img/svg/ukk_emergency.svg) transparent 5px 0 no-repeat; }
    /* line 231, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content > span.icon-only.icon-phone01:before {
      background: url(../img/svg/ukk_phone01.svg) transparent 5px 0 no-repeat; }
    /* line 237, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content > span.icon-only.icon-sympton:before {
      background: url(../img/svg/ukk_symptom.svg) transparent 5px 0 no-repeat; }
    /* line 243, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content > span.icon-only.icon-leber:before {
      background: url(../img/svg/ukk_leber.svg) transparent 5px 0 no-repeat; }
    /* line 249, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content > span.icon-only.icon-nieren:before {
      background: url(../img/svg/ukk_nieren.svg) transparent 5px 0 no-repeat; }
    /* line 255, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content > span.icon-only.icon-pankreas:before {
      background: url(../img/svg/ukk_pankreas.svg) transparent 5px 0 no-repeat; }
    /* line 261, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content > span.icon-only.icon-herz:before {
      background: url(../img/svg/ukk_herz.svg) transparent 5px 0 no-repeat; }
    /* line 268, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content > span.icon-only.icon-verwaltung:before {
      background: url(../img/svg/ukk_verwaltung.svg) transparent 5px 0 no-repeat; }
    /* line 275, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content > span.icon-only.icon-tabletten:before {
      background: url(../img/svg/ukk_tabletten.svg) transparent 5px 0 no-repeat; }
    /* line 281, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content > span.icon-only.icon-termin:before {
      background: url(../img/svg/ukk_termin.svg) transparent 5px 0 no-repeat; }
    /* line 287, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content > span.icon-only.icon-termin-ohne-haken:before {
      background: url(../img/svg/ukk_termin-ohne-haken.svg) transparent 5px 0 no-repeat; }
    /* line 293, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content > span.icon-only.icon-institutes:before {
      background: url(../img/svg/ukk_institutes.svg) transparent 5px 0 no-repeat; }
    /* line 299, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content > span.icon-only.icon-administration:before {
      background: url(../img/svg/ukk_administration.svg) transparent 5px 0 no-repeat; }
    /* line 305, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content > span.icon-only.icon-images:before {
      background: url(../img/svg/ukk_images.svg) transparent center center no-repeat; }
    /* line 311, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content > span.icon-only.icon-videos:before {
      background: url(../img/svg/ukk_video.svg) transparent center center no-repeat; }
    /* line 317, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content > span.icon-only.icon-annualreport:before {
      background: url(../img/svg/ukk_annualreport.svg) transparent center center no-repeat; }
    /* line 323, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content > span.icon-only.icon-annualreport-white:before {
      background: url(../img/svg/ukk_annualreport-white.svg) transparent center center no-repeat; }
    /* line 329, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content > span.icon-only.icon-qualityreport:before {
      background: url(../img/svg/ukk_qualityreport.svg) transparent center center no-repeat; }
    /* line 335, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content > span.icon-only.icon-qualityreport-white:before {
      background: url(../img/svg/ukk_qualityreport-white.svg) transparent center center no-repeat; }
    /* line 341, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content > span.icon-only.icon-employee:before {
      background: url(../img/svg/ukk_employee.svg) transparent center center no-repeat; }
    /* line 347, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content > span.icon-only.icon-assign:before {
      background: url(../img/svg/ukk_assign.svg) transparent center center no-repeat; }
    /* line 353, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content > span.icon-only.icon-bedhouse:before {
      background: url(../img/svg/ukk_bedhouse.svg) transparent center center no-repeat; }
    /* line 359, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content > span.icon-only.icon-blood:before {
      background: url(../img/svg/ukk_blood.svg) transparent center center no-repeat; }
    /* line 365, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content > span.icon-only.icon-facts:before {
      background: url(../img/svg/ukk_fakten.svg) transparent center center no-repeat; }
    /* line 371, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser__content > span.icon-only.icon-numbers:before {
      background: url(../img/svg/ukk_zahlen.svg) transparent center center no-repeat; }
    @media print {
      /* line 183, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
      .teaser__content {
        padding: 0 !important; } }
  /* line 382, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser__content-text {
    padding: 20px; }
    @media print {
      /* line 382, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
      .teaser__content-text {
        padding: 0 !important; } }
  /* line 390, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser__header {
    margin: 0; }
  /* line 395, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser__image {
    margin-right: 20px;
    overflow: hidden;
    float: left; }
  /* line 401, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser .icon-only {
    font-size: 200%;
    color: #0f2d64; }
  /* line 406, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser a[href^="tel"] {
    color: #565656; }
  /* line 420, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser--portrait-image .teaser__image {
    max-width: 50%; }
  /* line 424, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser--portrait-image .teaser__content p {
    overflow: hidden;
    word-wrap: break-word; }
  /* line 430, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser--landscape-image {
    /*@include respond-min($breakpoint-min-xxl) {
			min-height: $min-height-teaser-xxtralarge;
		}*/ }
    /* line 436, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser--landscape-image .teaser__image {
      width: 45%;
      margin-right: 0; }
      @media screen and (min-width: 125em) {
        /* line 441, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
        .teaser--landscape-image .teaser__image img {
          width: 100%; } }
    /* line 448, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser--landscape-image .teaser__content {
      float: left;
      max-width: 55%;
      word-wrap: break-word;
      padding: 2%; }
      @media screen and (max-width: 47.999em) {
        /* line 448, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
        .teaser--landscape-image .teaser__content {
          max-width: 100%; } }
  /* line 462, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser--center-text .teaser__link {
    display: block; }
  /* line 466, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser--center-text .teaser__content {
    width: 100%;
    text-align: center;
    margin-top: -5px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
    @media print {
      /* line 466, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
      .teaser--center-text .teaser__content {
        position: static !important;
        -webkit-transform: none !important;
        transform: none !important;
        text-align: left !important; } }
  @media screen and (max-width: 47.999em) {
    /* line 481, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser--center-text .icon-only {
      float: left; } }
  /* line 488, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser--logo, .teaser--logo-wide {
    max-height: none; }
    /* line 494, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser--logo .row + a, .teaser--logo .color-pattern + a, .teaser--logo-wide .row + a, .teaser--logo-wide .color-pattern + a {
      margin-top: 20px;
      display: inline-block; }
    /* line 499, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser--logo .teaser__pic, .teaser--logo-wide .teaser__pic {
      width: 100%;
      min-height: 140px;
      border-bottom: 1px solid #565656;
      position: relative; }
      /* line 505, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
      .teaser--logo .teaser__pic img, .teaser--logo-wide .teaser__pic img {
        position: absolute;
        width: auto;
        max-height: 100px;
        top: 50%;
        left: 50%;
        -webkit-transform: translateY(-50%) translateX(-50%);
        transform: translateY(-50%) translateX(-50%); }
    @media print {
      /* line 488, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
      .teaser--logo, .teaser--logo-wide {
        display: none !important; } }
  @media screen and (min-width: 62em) {
    /* line 521, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser--logo .teaser__pic {
      float: left;
      border-right: 1px solid #565656;
      min-height: inherit;
      width: 30%;
      border-bottom: none; }
      /* line 530, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
      .teaser--logo .teaser__pic + .teaser__content {
        float: left;
        border-left: 1px solid #565656;
        margin-left: -1px;
        width: 60%; } }
  /* line 540, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser--image-top {
    max-height: inherit;
    /*@include respond-min($breakpoint-min-xxl) {
			min-height: $min-height-teaser-xxtralarge;
		}*/ }
    /* line 547, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser--image-top .subline {
      color: #565656;
      font-size: 12px;
      font-size: 0.75rem;
      margin: 0;
      margin-bottom: 10px; }
    /* line 554, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser--image-top .teaser__image {
      float: none;
      margin-right: 0; }
      @media screen and (min-width: 125em) {
        /* line 559, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
        .teaser--image-top .teaser__image img {
          width: 100%; } }
  /* line 567, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser--contact .col {
    padding: 0; }
  /* line 571, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser--contact .icon-only {
    float: left;
    color: #8a99a7;
    margin-left: -1.2rem; }
    @media screen and (max-width: 47.999em) {
      /* line 571, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
      .teaser--contact .icon-only {
        margin-left: -1.0rem; } }
    /* line 580, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser--contact .icon-only + a {
      display: inline-block; }
    /* line 584, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser--contact .icon-only + p,
    .teaser--contact .icon-only + div,
    .teaser--contact .icon-only + a {
      float: left;
      margin-top: 10px; }
  @media screen and (min-width: 48em) {
    /* line 593, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser--contact .icon-only {
      float: none;
      display: block;
      text-align: center;
      font-size: 200%; }
      /* line 599, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
      .teaser--contact .icon-only + p,
      .teaser--contact .icon-only + div,
      .teaser--contact .icon-only + a {
        float: none;
        text-align: left;
        clear: both; } }
  @media screen and (min-width: 62em) {
    /* line 566, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser--contact {
      margin-top: 20px; }
      /* line 612, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
      .teaser--contact .icon-only {
        float: left;
        text-align: left; }
        /* line 617, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
        .teaser--contact .icon-only + p,
        .teaser--contact .icon-only + div,
        .teaser--contact .icon-only + a {
          float: left;
          clear: none; } }
  /* line 633, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser--position .teaser__image + .teaser__content {
    padding: 20px; }
    @media screen and (min-width: 48em) {
      /* line 633, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
      .teaser--position .teaser__image + .teaser__content {
        float: left;
        width: 75%;
        width: calc(100% - 190px); } }
  /* line 646, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser--position .teaser__content a:not([href^="tel"]) {
    color: #0f2d64;
    text-decoration: underline; }
    /* line 651, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser--position .teaser__content a:not([href^="tel"]).link--more:after {
      content: '|'; }
    /* line 656, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser--position .teaser__content a:not([href^="tel"]).link--more.no-pipe:after {
      content: ''; }
    /* line 662, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser--position .teaser__content a:not([href^="tel"]).link--more:hover:after {
      bottom: 2px; }
    /* line 669, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser--position .teaser__content a:not([href^="tel"]).link--more:last-of-type:after {
      content: ''; }
  /* line 675, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser--position .teaser__content hr {
    margin: 40px 0; }
  /* line 680, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .teaser--position p {
    margin: 10px 0 20px; }
  @media screen and (max-width: 47.999em) {
    /* line 59, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser {
      min-height: initial;
      max-height: initial; }
      /* line 693, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
      .teaser--portrait-image .teaser__image, .teaser--landscape-image .teaser__image, .teaser--position .teaser__image {
        float: none;
        width: 100%;
        max-width: 100%; }
      /* line 700, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
      .teaser img {
        display: block;
        max-width: 100%;
        margin-right: auto;
        margin-left: auto; }
      /* line 707, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
      .teaser.teaser--center-text {
        min-height: 232px;
        max-height: 232px; } }
  @media print {
    /* line 59, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
    .teaser {
      width: 100% !important; } }

/* line 723, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
.cv-container {
  margin: -20px 0 20px; }
  /* line 726, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .cv-container .box {
    margin: 0;
    padding: 20px; }
  /* line 731, Resources/Private/Frontend/sass/partials/mod/_teaser.scss */
  .cv-container .tab-accordion {
    margin: 0; }

/**
 * brandung tab-modules.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-20
 * MIT License (MIT)
 */
/* ==========================================================================
   Tab-Modules
   ========================================================================== */
/* line 18, Resources/Private/Frontend/sass/partials/mod/_tabs.scss */
.tab-content {
  overflow: hidden; }
  /* line 21, Resources/Private/Frontend/sass/partials/mod/_tabs.scss */
  .tab-content__apply-button {
    padding: 10px 40px !important; }
  /* line 25, Resources/Private/Frontend/sass/partials/mod/_tabs.scss */
  .tab-content__select {
    padding: 20px !important;
    border: 1px solid #8a99a7;
    position: relative;
    color: #fff;
    background: #0f2d64;
    z-index: 8 !important; }
    @media screen and (min-width: 48em) {
      /* line 25, Resources/Private/Frontend/sass/partials/mod/_tabs.scss */
      .tab-content__select {
        display: none; } }
    @media print {
      /* line 25, Resources/Private/Frontend/sass/partials/mod/_tabs.scss */
      .tab-content__select {
        display: none !important; } }
  /* line 47, Resources/Private/Frontend/sass/partials/mod/_tabs.scss */
  .tab-content__dropped-down span {
    display: none; }
    @media screen and (max-width: 47.999em) {
      /* line 47, Resources/Private/Frontend/sass/partials/mod/_tabs.scss */
      .tab-content__dropped-down span {
        display: block; } }
  @media print {
    /* line 45, Resources/Private/Frontend/sass/partials/mod/_tabs.scss */
    .tab-content__dropped-down {
      display: none !important; } }
  /* line 60, Resources/Private/Frontend/sass/partials/mod/_tabs.scss */
  .tab-content__headline {
    display: table;
    width: 100%;
    -o-box-shadow: 0 3px 3px rgba(68,68,68,0.2);
    -ms-box-shadow: 0 3px 3px rgba(68,68,68,0.2);
    box-shadow: 0 3px 3px rgba(68,68,68,0.2);
    margin-bottom: 20px; }
    /* line 67, Resources/Private/Frontend/sass/partials/mod/_tabs.scss */
    .tab-content__headline li {
      -o-box-shadow: inset 2px 2px 3px rgba(68,68,68,0.2);
      -ms-box-shadow: inset 2px 2px 3px rgba(68,68,68,0.2);
      box-shadow: inset 2px 2px 3px rgba(68,68,68,0.2);
      text-align: center;
      display: table-cell;
      float: none;
      cursor: pointer;
      width: 33%;
      border: 1px solid #8a99a7;
      border-left: 0;
      padding: 20px;
      font-weight: 700;
      background-color: #fff; }
      /* line 80, Resources/Private/Frontend/sass/partials/mod/_tabs.scss */
      .tab-content__headline li:first-child {
        border-left: 1px solid #8a99a7;
        /*@include respond-min($breakpoint-min-xs) {
					border: 1px solid $ci-color;
				}*/ }
      /* line 87, Resources/Private/Frontend/sass/partials/mod/_tabs.scss */
      .tab-content__headline li:hover {
        background: #0f2d64;
        color: #fff;
        border-color: #0f2d64; }
      @media screen and (max-width: 29.999em) {
        /* line 67, Resources/Private/Frontend/sass/partials/mod/_tabs.scss */
        .tab-content__headline li {
          border: 1px solid #0f2d64;
          width: 100%;
          display: block;
          padding: 20px;
          position: relative; } }
      @media screen and (max-width: 47.999em) {
        /* line 67, Resources/Private/Frontend/sass/partials/mod/_tabs.scss */
        .tab-content__headline li {
          border: 1px solid #8a99a7;
          width: 100%;
          display: block;
          padding: 20px;
          text-align: left;
          margin-bottom: 0; }
          /* line 108, Resources/Private/Frontend/sass/partials/mod/_tabs.scss */
          .tab-content__headline li:first-child {
            border-bottom: 0; }
          /* line 111, Resources/Private/Frontend/sass/partials/mod/_tabs.scss */
          .tab-content__headline li:last-child {
            border-bottom: 1px solid #8a99a7;
            border-top: 0; } }
    @media screen and (max-width: 47.999em) {
      /* line 60, Resources/Private/Frontend/sass/partials/mod/_tabs.scss */
      .tab-content__headline {
        display: none; } }
  /* line 124, Resources/Private/Frontend/sass/partials/mod/_tabs.scss */
  .tab-content .active {
    position: relative;
    background: #0f2d64;
    border-color: #0f2d64;
    color: #fff; }
    /* line 130, Resources/Private/Frontend/sass/partials/mod/_tabs.scss */
    .tab-content .active:first-child {
      border-left: 1px solid #0f2d64; }
    @media screen and (min-width: 48em) {
      /* line 135, Resources/Private/Frontend/sass/partials/mod/_tabs.scss */
      .tab-content .active:after {
        display: none; } }
    @media screen and (min-width: 62em) {
      /* line 141, Resources/Private/Frontend/sass/partials/mod/_tabs.scss */
      .tab-content .active:after {
        display: none; } }
  /* line 148, Resources/Private/Frontend/sass/partials/mod/_tabs.scss */
  .tab-content__flyout {
    display: none; }
    @media print {
      /* line 148, Resources/Private/Frontend/sass/partials/mod/_tabs.scss */
      .tab-content__flyout {
        display: block !important; } }
  /* line 158, Resources/Private/Frontend/sass/partials/mod/_tabs.scss */
  .tab-content .is-active {
    display: block; }
  /* line 162, Resources/Private/Frontend/sass/partials/mod/_tabs.scss */
  .tab-content__active-mobile {
    background: #0f2d64;
    color: #fff; }
    /* line 165, Resources/Private/Frontend/sass/partials/mod/_tabs.scss */
    .tab-content__active-mobile:after {
      position: absolute;
      top: 15px;
      right: 15px; }

/* no-js */
/* line 182, Resources/Private/Frontend/sass/partials/mod/_tabs.scss */
.no-js .tab-content__flyout {
  display: block; }

/**
 * brandung form-application.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   Form-Application
   ========================================================================== */
/* line 18, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
.application {
  background: #0f2d64;
  color: #fff;
  border-bottom: 1px solid #fff; }
  /* line 23, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
  .application__frm {
    padding-top: 40px; }
  /* line 27, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
  .application__headline {
    position: relative;
    padding: 20px;
    padding-right: 35px;
    border-bottom: 1px solid #e1e1e1;
    color: #0f2d64;
    cursor: pointer; }
    /* line 38, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
    .application__headline a:before {
      display: inline-block;
      line-height: .9em;
      overflow: hidden; }
    /* line 46, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
    .application__headline:last-child {
      background: none;
      border: 0; }
      /* line 50, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
      .application__headline:last-child:after {
        display: none; }
    /* line 58, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
    .application__headline:after {
      position: absolute;
      top: 50%;
      right: 0;
      margin-top: -20px; }
    /* line 66, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
    .application__headline.application--active {
      background: #0f2d64;
      color: #fff !important;
      position: relative; }
      /* line 71, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
      .application__headline.application--active:after {
        margin-top: -15px; }
  /* line 81, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
  .application__context {
    padding: 20px;
    overflow: hidden; }
  /* line 87, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
  .application__content label {
    display: block;
    font-weight: 700;
    padding: 20px 0; }
  /* line 96, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
  .application__documents {
    margin-bottom: 40px; }
    /* line 104, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
    .application__documents:before {
      background-position: top;
      background-repeat: repeat-x;
      background-size: 28px 28px;
      content: "";
      display: block;
      position: absolute;
      top: -25px;
      left: 0;
      width: 100%;
      height: 32px; }
  /* line 130, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
  .application__upload-wrapper .btn {
    float: right;
    width: 20%;
    padding: 4px 10px 4px 20px !important;
    border-color: #8a99a7 !important;
    white-space: nowrap; }
    /* line 137, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
    .application__upload-wrapper .btn span {
      display: none; }
      @media screen and (min-width: 48em) {
        /* line 137, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
        .application__upload-wrapper .btn span {
          display: inline; } }
    @media screen and (max-width: 29.999em) {
      /* line 130, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
      .application__upload-wrapper .btn {
        float: left;
        padding: 4px 10px 2px 6px !important;
        display: inline-block;
        margin-top: 4px !important; } }
  /* line 154, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
  .application__upload-input {
    float: left;
    border: 1px solid #8a99a7;
    border-right: none;
    padding: 8px;
    width: 80%; }
    @media screen and (max-width: 29.999em) {
      /* line 154, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
      .application__upload-input {
        width: 100%;
        border-right: 1px solid #8a99a7; }
        /* line 165, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
        .application__upload-input input {
          width: 100%; } }
  /* line 171, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
  .application__content-application {
    border-bottom: 1px solid #e1e1e1;
    padding: 0 0 20px 0;
    margin: 20px 0; }
  /* line 180, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
  .application__is-active-icon:after {
    font-size: 24px;
    font-size: 1.5rem;
    position: absolute;
    top: 50%;
    margin-top: -12px; }
  /* line 189, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
  .application__info {
    width: 50%; }
  /* line 193, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
  .application__bra-uploadbutton {
    width: 30% !important;
    text-align: center !important;
    color: #0f2d64;
    cursor: pointer;
    text-decoration: underline;
    border: 1px solid #8a99a7;
    border-left: 0;
    padding: 8px;
    float: left; }
    @media screen and (max-width: 47.999em) {
      /* line 193, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
      .application__bra-uploadbutton {
        width: 50% !important; } }
  /* line 208, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
  .application__uploadbtn {
    overflow: hidden;
    position: relative;
    float: right;
    white-space: nowrap;
    text-align: center; }
  /* line 217, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
  .application__filesize {
    display: none; }
    @media screen and (min-width: 48em) {
      /* line 217, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
      .application__filesize {
        display: block;
        float: right; } }
  /* line 226, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
  .application__bra-filename {
    margin: 20px 0;
    float: left;
    padding: 10px !important;
    width: 70% !important; }
    @media screen and (max-width: 47.999em) {
      /* line 226, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
      .application__bra-filename {
        width: 50% !important; } }
  /* line 236, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
  .application__bra-uploadwrapper {
    width: 85%;
    float: left;
    margin-bottom: 20px; }
  /* line 242, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
  .application__required {
    color: red; }
  /* line 245, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
  .application__form-error-msg {
    font-size: 0.9em;
    color: red; }
  /* line 249, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
  .application__required-field label::after {
    content: "*";
    color: red; }
  /* line 253, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
  .application__field-error input {
    border: solid 1px red; }
  /* line 257, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
  .application__gretting {
    text-align: center;
    display: none; }
  /* line 263, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
  .application .mobile {
    display: none; }
    @media screen and (max-width: 47.999em) {
      /* line 263, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
      .application .mobile {
        display: block; } }
    /* line 269, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
    .application .mobile .form-nav-prev,
    .application .mobile .form-nav-next {
      padding: 10px 30px; }
  @media screen and (max-width: 47.999em) {
    /* line 275, Resources/Private/Frontend/sass/partials/mod/_form-application.scss */
    .application .desktop {
      display: none; } }

/**
 * brandung direct-search.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-22
 * MIT License (MIT)
 */
/* ==========================================================================
   direct-search
   ========================================================================== */
/* line 20, Resources/Private/Frontend/sass/partials/mod/_direct-search.scss */
.direct-search > h1,
.direct-search > h2,
.direct-search > .sub-navigation__header,
.direct-search > .teaser__header {
  margin-top: 0; }

@media print {
  /* line 18, Resources/Private/Frontend/sass/partials/mod/_direct-search.scss */
  .direct-search {
    display: none !important; } }

/**
 * brandung content-header.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-22
 * MIT License (MIT)
 */
/* ==========================================================================
   content-header
   ========================================================================== */
/* line 18, Resources/Private/Frontend/sass/partials/mod/_content-header.scss */
.content-header {
  margin: 0 auto 20px; }
  @media screen and (max-width: 47.999em) {
    /* line 18, Resources/Private/Frontend/sass/partials/mod/_content-header.scss */
    .content-header {
      margin-bottom: 0; } }
  @media screen and (min-width: 125em) {
    /* line 18, Resources/Private/Frontend/sass/partials/mod/_content-header.scss */
    .content-header {
      max-height: 600px;
      overflow: hidden; } }
  /* line 30, Resources/Private/Frontend/sass/partials/mod/_content-header.scss */
  .content-header img {
    width: 100%;
    position: relative;
    z-index: 1; }
  /* line 36, Resources/Private/Frontend/sass/partials/mod/_content-header.scss */
  .content-header__logo-content {
    background: #fff;
    padding: 20px;
    display: block; }
  /* line 43, Resources/Private/Frontend/sass/partials/mod/_content-header.scss */
  .content-header__logo {
    background: url(../img/svg/ukk-logo.svg) transparent 0 0 no-repeat;
    width: 250px;
    background-size: 200px;
    height: 80px; }

@media screen and (max-width: 61.999em) {
  /* line 51, Resources/Private/Frontend/sass/partials/mod/_content-header.scss */
  .corp .content-header {
    margin-bottom: 0; } }

/**
 * brandung datepicker.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-05
 * MIT License (MIT)
 */
/* ==========================================================================
   Datepicker
   ========================================================================== */
/* line 16, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
.date-picker {
  display: table;
  margin-bottom: 20px;
  width: 100%; }
  /* line 22, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
  .date-picker label {
    display: inline-block;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 0;
    margin-right: 1rem; }
    @media screen and (min-width: 48em) {
      /* line 22, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
      .date-picker label {
        display: table-cell;
        float: left; } }
    @media screen and (min-width: 48em) {
      /* line 34, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
      .date-picker label:nth-of-type(2) {
        margin-left: 1rem; } }
  /* line 42, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
  .date-picker__field:before {
    display: none; }
  /* line 45, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
  .date-picker__field .date-input-wrapper {
    position: relative; }
    /* line 48, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
    .date-picker__field .date-input-wrapper .date-calendar {
      color: #fff;
      position: absolute;
      top: 0;
      height: 40px;
      width: 44px;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      background: #0f2d64;
      cursor: pointer;
      padding: 3px;
      right: 0;
      z-index: 2;
      pointer-events: none; }
    /* line 65, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
    .date-picker__field .date-input-wrapper input::-webkit-calendar-picker-indicator {
      margin-right: -10px;
      height: 34px;
      width: 34px; }
  /* line 73, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
  .date-picker__input {
    display: block;
    position: relative;
    float: none; }
    @media screen and (min-width: 48em) {
      /* line 73, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
      .date-picker__input {
        display: table-cell;
        float: left;
        vertical-align: bottom; } }
    @media screen and (min-width: 62em) {
      /* line 73, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
      .date-picker__input {
        float: none;
        min-width: 156px; } }
    /* line 89, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
    .date-picker__input:before {
      color: #0f2d64;
      position: absolute;
      top: 1px;
      border-left: 1px solid #8a99a7;
      padding: 3px;
      right: 0;
      z-index: 2;
      pointer-events: none; }
    /* line 106, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
    .date-picker__input:hover:before {
      transition: background-color 0.2s linear, color 0.2s linear;
      background: #0f2d64;
      color: #fff; }
  /* line 115, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
  .date-picker .dp-choose-date.is-active {
    background: #0f2d64;
    color: #fff; }
  /* line 121, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
  .date-picker input {
    cursor: pointer; }
  @media print {
    /* line 16, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
    .date-picker {
      display: none !important; } }

/* line 132, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
.dp-popup {
  background: #f6f6f6 !important;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
  padding: 0 !important;
  width: 350px !important;
  margin: 15px 0;
  line-height: 1.2em; }
  @media screen and (max-width: 47.999em) {
    /* line 132, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
    .dp-popup {
      width: 60% !important; } }
  /* line 145, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
  .dp-popup h2, .dp-popup .sub-navigation__header, .dp-popup .teaser__header {
    color: #565656;
    font-size: 16px !important;
    text-align: center;
    margin: 0 !important;
    padding: 14px !important;
    overflow: hidden;
    width: 100%; }
  /* line 156, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
  .dp-popup a {
    color: #000;
    text-decoration: none;
    padding: 0 2px !important; }
    /* line 160, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
    .dp-popup a.disabled {
      cursor: default; }
  /* line 165, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
  .dp-popup div {
    background: #f6f6f6;
    padding: 0; }
    /* line 169, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
    .dp-popup div.dp-nav-prev, .dp-popup div.dp-nav-next {
      position: absolute;
      top: 13px !important; }
      /* line 174, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
      .dp-popup div.dp-nav-prev a, .dp-popup div.dp-nav-next a {
        cursor: pointer;
        line-height: 0;
        font-size: 0;
        margin-top: -9px; }
        /* line 180, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
        .dp-popup div.dp-nav-prev a.disabled, .dp-popup div.dp-nav-next a.disabled {
          cursor: default; }
        /* line 184, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
        .dp-popup div.dp-nav-prev a:before, .dp-popup div.dp-nav-next a:before {
          font-family: 'icomoon';
          font-size: 32px;
          font-size: 2rem; }
    /* line 192, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
    .dp-popup div .dp-nav-prev-month,
    .dp-popup div .dp-nav-next-month {
      font-size: 20px;
      font-size: 1.25rem;
      color: #0f2d64; }
    /* line 198, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
    .dp-popup div .dp-nav-next-year,
    .dp-popup div .dp-nav-prev-year {
      display: none; }
    /* line 203, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
    .dp-popup div.dp-nav-prev {
      left: 4px; }
      /* line 206, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
      .dp-popup div.dp-nav-prev a {
        float: left; }
        /* line 209, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
        .dp-popup div.dp-nav-prev a:before {
          content: "\e602"; }
    /* line 214, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
    .dp-popup div.dp-nav-next {
      right: 4px; }
      /* line 217, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
      .dp-popup div.dp-nav-next a {
        float: right; }
        /* line 220, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
        .dp-popup div.dp-nav-next a:before {
          content: "\e603"; }
  /* line 226, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
  .dp-popup td {
    cursor: pointer; }
    /* line 228, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
    .dp-popup td.disabled {
      cursor: default; }
  @media print {
    /* line 132, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
    .dp-popup {
      display: none !important; } }

/* line 239, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
.dp-calendar {
  padding: 0 !important; }
  /* line 241, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
  .dp-calendar table.jCalendar {
    border: 0;
    background: #fff !important;
    border-collapse: collapse;
    border-spacing: 0;
    padding: 0; }
    /* line 248, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
    .dp-calendar table.jCalendar thead {
      border-bottom: 1px solid #f6f6f6; }
    /* line 252, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
    .dp-calendar table.jCalendar th {
      background: #fff;
      color: #8a99a7;
      font-weight: bold;
      line-height: 35px;
      padding: 0;
      border: 0;
      text-align: center;
      width: 50px; }
    @media screen and (max-width: 47.999em) {
      /* line 263, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
      .dp-calendar table.jCalendar tr {
        padding: 0; } }
    /* line 268, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
    .dp-calendar table.jCalendar td {
      font-size: 16px;
      font-size: 1rem;
      background: #fff;
      border: 1px solid #f6f6f6;
      border-right: none;
      color: #8a99a7;
      line-height: 29px;
      padding: 0;
      text-align: center; }
      @media screen and (max-width: 47.999em) {
        /* line 268, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
        .dp-calendar table.jCalendar td {
          display: inline-table; }
          /* line 280, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
          .dp-calendar table.jCalendar td:before {
            display: none; } }
      /* line 284, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
      .dp-calendar table.jCalendar td.other-month {
        background: #fff;
        color: #fff;
        cursor: default; }
        /* line 289, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
        .dp-calendar table.jCalendar td.other-month:hover {
          background: #fff; }
      /* line 293, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
      .dp-calendar table.jCalendar td.today {
        color: #eb8f00;
        font-weight: 700; }
      /* line 297, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
      .dp-calendar table.jCalendar td.selected {
        background: #0f2d64;
        color: #fff; }
        /* line 300, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
        .dp-calendar table.jCalendar td.selected.dp-hover {
          background: #8a99a7;
          color: #565656; }
      /* line 305, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
      .dp-calendar table.jCalendar td.dp-hover {
        transition: background-color 0.2s linear, color 0.2s linear;
        background: #0f2d64;
        color: #fff; }
    /* line 313, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
    .dp-calendar table.jCalendar tr.activeWeekHover td {
      background: #fff;
      color: #000; }
    /* line 317, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
    .dp-calendar table.jCalendar tr.selectedWeek td {
      background: #e1e1e1;
      color: #fff; }
  /* line 323, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
  .dp-calendar a#dp-close {
    font-size: 14px;
    padding: 4px 0;
    text-align: center;
    display: block; }
    /* line 328, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
    .dp-calendar a#dp-close:hover {
      text-decoration: underline; }
  @media print {
    /* line 239, Resources/Private/Frontend/sass/partials/mod/_datepicker.scss */
    .dp-calendar {
      display: none !important; } }

/**
 * brandung disclaimer.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-24
 * MIT License (MIT)
 */
/* ==========================================================================
   Disclaimer
   ========================================================================== */
/* line 17, Resources/Private/Frontend/sass/partials/mod/_disclaimer.scss */
.disclaimer {
  background: #fff;
  position: relative;
  -o-box-shadow: 3px 3px 3px rgba(68,68,68, 0.4);
  -ms-box-shadow: 3px 3px 3px rgba(68,68,68, 0.4);
  box-shadow: 3px 3px 3px rgba(68,68,68, 0.4);
  padding: 20px;
  margin: 40px 0 20px; }
  /* line 27, Resources/Private/Frontend/sass/partials/mod/_disclaimer.scss */
  .disclaimer:before {
    content: '';
    position: absolute;
    top: -13px;
    left: 0;
    right: 0;
    height: 13px;
    background-size: 22px 44px;
    background-repeat: repeat-x;
    background-image: linear-gradient(45deg, transparent 34%, #fff 34%, #fff 63%, rgba(68, 68, 68, 0.1) 3%, transparent 66%), linear-gradient(315deg, transparent 34%, #fff 34%, #fff 65%, rgba(68, 68, 68, 0.05) 1%, transparent 66%); }
  @media print {
    /* line 17, Resources/Private/Frontend/sass/partials/mod/_disclaimer.scss */
    .disclaimer {
      padding: 0 !important; } }

/**
 * brandung darksite.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   darksite
   ========================================================================== */
/* line 17, Resources/Private/Frontend/sass/partials/mod/_darksite.scss */
.darksite {
  padding: 20px;
  background: #fff; }
  /* line 21, Resources/Private/Frontend/sass/partials/mod/_darksite.scss */
  .darksite__emergency {
    background: #ce2c2c;
    color: #fff;
    padding: 20px; }
    /* line 26, Resources/Private/Frontend/sass/partials/mod/_darksite.scss */
    .darksite__emergency a {
      color: #fff; }
    /* line 30, Resources/Private/Frontend/sass/partials/mod/_darksite.scss */
    .darksite__emergency p {
      float: left;
      margin-top: 0;
      width: 100%; }
      /* line 35, Resources/Private/Frontend/sass/partials/mod/_darksite.scss */
      .darksite__emergency p span {
        margin-top: -10px; }
      /* line 39, Resources/Private/Frontend/sass/partials/mod/_darksite.scss */
      .darksite__emergency p a {
        font-weight: 700;
        text-decoration: none; }
  /* line 46, Resources/Private/Frontend/sass/partials/mod/_darksite.scss */
  .darksite .icon-only {
    font-size: 28px;
    font-size: 1.75rem;
    float: left;
    margin-left: -1.2rem; }

/**
 * brandung map.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-18
 * MIT License (MIT)
 */
/* ==========================================================================
   Map
   ========================================================================== */
/* line 17, Resources/Private/Frontend/sass/partials/mod/_map.scss */
.map {
  border: 1px solid #919fac; }
  @media print {
    /* line 21, Resources/Private/Frontend/sass/partials/mod/_map.scss */
    .map img {
      display: block !important; }
    /* line 26, Resources/Private/Frontend/sass/partials/mod/_map.scss */
    .map.fancybox img {
      display: block !important; } }

/**
 * brandung downloadbar.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Downloadbar
   ========================================================================== */
/* line 17, Resources/Private/Frontend/sass/partials/mod/_downloadbar.scss */
.downloadbar {
  border: 1px solid #8b98a8;
  margin-top: 20px; }
  @media screen and (min-width: 48em) {
    /* line 17, Resources/Private/Frontend/sass/partials/mod/_downloadbar.scss */
    .downloadbar {
      display: table;
      width: 100%;
      vertical-align: middle; } }
  /* line 31, Resources/Private/Frontend/sass/partials/mod/_downloadbar.scss */
  .downloadbar__textcol {
    padding: 30px 20px 0 20px; }
    @media screen and (min-width: 48em) {
      /* line 31, Resources/Private/Frontend/sass/partials/mod/_downloadbar.scss */
      .downloadbar__textcol {
        display: table-cell;
        padding: 20px; } }
    @media screen and (min-width: 48em) {
      /* line 31, Resources/Private/Frontend/sass/partials/mod/_downloadbar.scss */
      .downloadbar__textcol {
        padding-bottom: 20px;
        border-right: 1px solid #8b98a8; } }
  /* line 45, Resources/Private/Frontend/sass/partials/mod/_downloadbar.scss */
  .downloadbar__linkcol {
    padding: 20px; }
    @media screen and (min-width: 48em) {
      /* line 45, Resources/Private/Frontend/sass/partials/mod/_downloadbar.scss */
      .downloadbar__linkcol {
        display: table-cell; } }
    @media screen and (min-width: 48em) {
      /* line 45, Resources/Private/Frontend/sass/partials/mod/_downloadbar.scss */
      .downloadbar__linkcol {
        text-align: center;
        border-left: 1px solid #8b98a8;
        margin-left: -1px; } }
    @media screen and (min-width: 48em) {
      /* line 58, Resources/Private/Frontend/sass/partials/mod/_downloadbar.scss */
      .downloadbar__linkcol > span {
        margin-left: -35px; } }
  /* line 68, Resources/Private/Frontend/sass/partials/mod/_downloadbar.scss */
  .downloadbar__link--size {
    text-decoration: none; }
  /* line 73, Resources/Private/Frontend/sass/partials/mod/_downloadbar.scss */
  .downloadbar__link--download {
    padding-left: 35px; }
  /* line 78, Resources/Private/Frontend/sass/partials/mod/_downloadbar.scss */
  .downloadbar .icon-before {
    color: #0f2d64; }
    /* line 81, Resources/Private/Frontend/sass/partials/mod/_downloadbar.scss */
    .downloadbar .icon-before:before {
      display: inline-block;
      line-height: .9em;
      overflow: hidden;
      padding: 0;
      position: absolute;
      left: 0;
      top: -3px; }
    /* line 91, Resources/Private/Frontend/sass/partials/mod/_downloadbar.scss */
    .downloadbar .icon-before:after {
      display: none; }
  /* line 96, Resources/Private/Frontend/sass/partials/mod/_downloadbar.scss */
  .downloadbar .icon-after {
    color: #0f2d64;
    position: relative; }
    /* line 100, Resources/Private/Frontend/sass/partials/mod/_downloadbar.scss */
    .downloadbar .icon-after:before {
      display: none; }
    /* line 104, Resources/Private/Frontend/sass/partials/mod/_downloadbar.scss */
    .downloadbar .icon-after:after {
      display: inline-block;
      left: 0;
      overflow: hidden;
      position: absolute;
      top: -5px; }
  /* line 113, Resources/Private/Frontend/sass/partials/mod/_downloadbar.scss */
  .downloadbar .icon-psdfile {
    font-size: 24px;
    font-size: 1.5rem; }
  @media print {
    /* line 17, Resources/Private/Frontend/sass/partials/mod/_downloadbar.scss */
    .downloadbar {
      display: none; } }

/**
 * brandung clinics/mod/downloadbar.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2016-03-24
 * MIT License (MIT)
 */
/* ==========================================================================
  Downloadbar
  ========================================================================== */
@media screen and (max-width: 47.999em) {
  /* line 17, Resources/Private/Frontend/sass/partials/clinics/mod/_downloadbar.scss */
  .downloadbar {
    margin-left: 10px;
    margin-right: 10px; } }

/**
 * brandung tab-accordion.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   Tab-Accordion
   ========================================================================== */
/* line 20, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
.tab-accordion {
  background: #fff;
  margin: 20px 0 20px;
  overflow: hidden;
  border-bottom: 1px solid #8a99a7; }
  /* line 26, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
  .tab-accordion__headline {
    position: relative;
    padding: 20px 80px 20px 20px;
    border-top: 1px solid #8a99a7;
    color: #0f2d64;
    font-weight: 500;
    cursor: pointer; }
    /* line 34, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
    .tab-accordion__headline:last-child {
      cursor: default;
      padding: 0; }
    /* line 39, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
    .tab-accordion__headline:last-child:after {
      display: none; }
    /* line 43, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
    .tab-accordion__headline:after {
      font-size: 32px;
      font-size: 2rem;
      position: absolute;
      line-height: 1em;
      top: 15px;
      right: 0; }
      @media print {
        /* line 43, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
        .tab-accordion__headline:after {
          display: none !important; } }
    /* line 57, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
    .tab-accordion__headline.is-active {
      margin: 0; }
      /* line 60, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
      .tab-accordion__headline.is-active:after {
        font-size: 32px;
        font-size: 2rem; }
  /* line 69, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
  .tab-accordion__flyout {
    padding: 0 20px;
    display: none;
    overflow: hidden; }
    /* line 74, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
    .tab-accordion__flyout img {
      margin: 20px auto 20px auto; }
      @media screen and (max-width: 47.999em) {
        /* line 74, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
        .tab-accordion__flyout img {
          width: 100%;
          padding-right: 0; } }
    /* line 84, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
    .tab-accordion__flyout--content img {
      margin: 0; }
    @media print {
      /* line 69, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
      .tab-accordion__flyout {
        display: block !important; } }
  /* line 94, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
  .tab-accordion__slider {
    position: relative; }
    /* line 98, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
    .tab-accordion__slider.next {
      background: #0f2d64;
      color: #fff;
      width: 40px;
      height: 40px;
      position: absolute;
      padding: 4px 0;
      top: 40%;
      right: 10px;
      opacity: 0.8;
      cursor: pointer; }
    /* line 116, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
    .tab-accordion__slider.prev {
      background: #0f2d64;
      color: #fff;
      width: 40px;
      height: 40px;
      position: absolute;
      padding: 4px 0;
      top: 40%;
      left: 10px;
      opacity: 0.8;
      cursor: pointer; }
    /* line 134, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
    .tab-accordion__slider .slick-slider__pagination {
      position: relative;
      text-align: right;
      margin: 0; }
  /* line 141, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
  .tab-accordion__slider--right {
    float: right; }
  /* line 145, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
  .tab-accordion__slider--center {
    width: 100%;
    padding: 0 20%; }
    @media screen and (max-width: 47.999em) {
      /* line 145, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
      .tab-accordion__slider--center {
        padding: 0 25px; } }
    /* line 153, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
    .tab-accordion__slider--center .slick-track {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
    /* line 158, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
    .tab-accordion__slider--center .slick-next,
    .tab-accordion__slider--center .slick-prev {
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      margin-top: 0; }
    /* line 165, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
    .tab-accordion__slider--center .slick-next {
      right: 13%;
      left: auto; }
      @media screen and (max-width: 47.999em) {
        /* line 165, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
        .tab-accordion__slider--center .slick-next {
          right: 0;
          left: auto; } }
    /* line 175, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
    .tab-accordion__slider--center .slick-prev {
      left: 13%;
      right: auto; }
      @media screen and (max-width: 47.999em) {
        /* line 175, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
        .tab-accordion__slider--center .slick-prev {
          left: 0;
          right: auto; } }

/* image-style only for tab-accordion */
/* line 189, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
.tab-accordion__flyout .csc-textpic-imagewrap {
  float: right;
  width: auto !important; }
  /* line 193, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
  .tab-accordion__flyout .csc-textpic-imagewrap figure {
    float: right;
    max-width: 300px; }
    /* line 197, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
    .tab-accordion__flyout .csc-textpic-imagewrap figure img {
      max-width: 300px; }

/* no-script */
/* line 206, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
.no-js .tab-accordion__flyout {
  display: block; }

/* line 211, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
ng-form.ng-invalid .tab-accordion__headline:after {
  color: red; }

/* line 215, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
ng-form.ng-invalid.ng-pristine .tab-accordion__headline:after {
  color: inherit; }

/* line 219, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
ng-form.ng-invalid .tab-accordion__headline.is-active:after {
  color: inherit; }

/* line 224, Resources/Private/Frontend/sass/partials/mod/_tab-accordion.scss */
.tab-accordion__flyout .text-content__slider {
  width: 300px; }

/**
 * brandung google-search.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-24
 * MIT License (MIT)
 */
/* ==========================================================================
   google-search
   ========================================================================== */
/* line 16, Resources/Private/Frontend/sass/partials/mod/_google-search.scss */
.google-search {
  position: relative;
  width: 100%; }
  /* line 19, Resources/Private/Frontend/sass/partials/mod/_google-search.scss */
  .google-search__headline {
    background: #fff;
    width: 100%; }
  /* line 29, Resources/Private/Frontend/sass/partials/mod/_google-search.scss */
  .google-search__headline-tabs {
    border-bottom: 1px solid #0f2d64;
    display: block;
    padding: 10px 0 0;
    margin: 45px 0 0;
    clear: both;
    height: 53px; }
    /* line 37, Resources/Private/Frontend/sass/partials/mod/_google-search.scss */
    .google-search__headline-tabs li {
      float: left;
      cursor: pointer;
      padding: 10px 20px;
      margin: 0;
      background: #e1e1e1;
      border-right: 1px solid #fff; }
  /* line 47, Resources/Private/Frontend/sass/partials/mod/_google-search.scss */
  .google-search__flyout {
    display: none;
    padding: 20px 0; }
  /* line 52, Resources/Private/Frontend/sass/partials/mod/_google-search.scss */
  .google-search .is-active {
    display: block; }
  /* line 56, Resources/Private/Frontend/sass/partials/mod/_google-search.scss */
  .google-search .active {
    border: 1px solid #0f2d64;
    border-bottom: 0;
    background: #fff; }
  /* line 61, Resources/Private/Frontend/sass/partials/mod/_google-search.scss */
  .google-search__input-field {
    width: 90%;
    float: left; }
    @media screen and (max-width: 47.999em) {
      /* line 61, Resources/Private/Frontend/sass/partials/mod/_google-search.scss */
      .google-search__input-field {
        width: 80%; } }
  /* line 70, Resources/Private/Frontend/sass/partials/mod/_google-search.scss */
  .google-search__input-button {
    width: 9%;
    float: left;
    background: #0f2d64;
    color: #fff;
    border: 0;
    margin-left: 1%;
    height: 40px;
    text-align: center; }
    @media screen and (max-width: 47.999em) {
      /* line 70, Resources/Private/Frontend/sass/partials/mod/_google-search.scss */
      .google-search__input-button {
        width: 19%; } }
    /* line 84, Resources/Private/Frontend/sass/partials/mod/_google-search.scss */
    .google-search__input-button:before {
      font-size: 30px;
      font-size: 1.875rem;
      display: inline-block;
      margin: 0 auto;
      padding: 0;
      width: 30px; }
  /* line 95, Resources/Private/Frontend/sass/partials/mod/_google-search.scss */
  .google-search__data {
    position: relative;
    padding-top: 15px;
    height: 0;
    overflow: hidden;
    clear: left; }
    /* line 102, Resources/Private/Frontend/sass/partials/mod/_google-search.scss */
    .google-search__data iframe {
      width: 100%;
      border: none;
      position: absolute;
      top: -100px;
      left: 0;
      height: 100%; }
  /* line 113, Resources/Private/Frontend/sass/partials/mod/_google-search.scss */
  .google-search .dataFrame {
    padding-bottom: 56.25%; }

/**
 * brandung underconstruction.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   Underconstruction
   ========================================================================== */
/* line 20, Resources/Private/Frontend/sass/partials/mod/_underconstruction.scss */
.underconstruction {
  margin: 0 100px;
  background: #fff;
  overflow: hidden;
  padding: 20px; }
  @media screen and (max-width: 47.999em) {
    /* line 20, Resources/Private/Frontend/sass/partials/mod/_underconstruction.scss */
    .underconstruction {
      width: 100%;
      margin: 0; } }

/**
 * brandung warning.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   Warning
   ========================================================================== */
/* line 18, Resources/Private/Frontend/sass/partials/mod/_warning.scss */
.warning {
  background: #fff;
  padding: 20px;
  overflow: hidden;
  display: none; }
  /* line 24, Resources/Private/Frontend/sass/partials/mod/_warning.scss */
  .warning:before {
    display: none; }
  /* line 28, Resources/Private/Frontend/sass/partials/mod/_warning.scss */
  .warning__icon {
    color: #0f2d64;
    font-size: 0;
    margin: 0 40%; }
    /* line 32, Resources/Private/Frontend/sass/partials/mod/_warning.scss */
    .warning__icon:after {
      font-size: 100px;
      font-size: 6.25rem; }
  /* line 42, Resources/Private/Frontend/sass/partials/mod/_warning.scss */
  .warning h1 {
    margin-bottom: 0; }
  /* line 46, Resources/Private/Frontend/sass/partials/mod/_warning.scss */
  .warning p {
    margin-top: 5px; }

/**
 * brandung cirs-formular.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-03-14
 * MIT License (MIT)
 */
/* ==========================================================================
   Cirs-formular
   ========================================================================== */
/* line 20, Resources/Private/Frontend/sass/partials/mod/_cirs-formular.scss */
.cirs-formular__col-select {
  width: 20%;
  float: left;
  padding: 0 10px; }
  @media screen and (max-width: 47.999em) {
    /* line 20, Resources/Private/Frontend/sass/partials/mod/_cirs-formular.scss */
    .cirs-formular__col-select {
      width: 100%;
      padding: 0; } }
  /* line 30, Resources/Private/Frontend/sass/partials/mod/_cirs-formular.scss */
  .cirs-formular__col-select:last-child {
    padding-right: 0; }

/* line 35, Resources/Private/Frontend/sass/partials/mod/_cirs-formular.scss */
.cirs-formular .nopadding-left {
  padding-left: 0; }

/* line 39, Resources/Private/Frontend/sass/partials/mod/_cirs-formular.scss */
.cirs-formular__col-headline-select {
  float: none; }

/* line 43, Resources/Private/Frontend/sass/partials/mod/_cirs-formular.scss */
.cirs-formular__textfield-cleared {
  clear: both; }

/* line 47, Resources/Private/Frontend/sass/partials/mod/_cirs-formular.scss */
.cirs-formular__submit-right {
  margin-right: 10px; }

/**
 * brandung content-englisch.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-05-15
 * MIT License (MIT)
 */
/* ==========================================================================
   Content-englisch
   ========================================================================== */
/* line 21, Resources/Private/Frontend/sass/partials/mod/_content-englisch.scss */
.content-englisch__main {
  background: #fff; }

/* line 25, Resources/Private/Frontend/sass/partials/mod/_content-englisch.scss */
.content-englisch__captions {
  background: #0f2d64;
  color: #fff;
  padding: 5px 20px; }
  @media screen and (max-width: 47.999em) {
    /* line 25, Resources/Private/Frontend/sass/partials/mod/_content-englisch.scss */
    .content-englisch__captions {
      padding-left: 20px; } }

/* line 36, Resources/Private/Frontend/sass/partials/mod/_content-englisch.scss */
.content-englisch__container, .content-englisch__clearly {
  margin: 20px auto;
  padding: 20px; }

/* line 42, Resources/Private/Frontend/sass/partials/mod/_content-englisch.scss */
.content-englisch__container {
  background: #fff; }

/* line 47, Resources/Private/Frontend/sass/partials/mod/_content-englisch.scss */
.content-englisch .fancybox-skin {
  background: #0f2d64 !important; }

/* line 51, Resources/Private/Frontend/sass/partials/mod/_content-englisch.scss */
.content-englisch__logo {
  background: url(../img/svg/ukk-logo.svg) transparent 0 0 no-repeat;
  margin: 10px;
  width: 150px;
  background-size: 150px;
  height: 60px; }

/* line 59, Resources/Private/Frontend/sass/partials/mod/_content-englisch.scss */
.content-englisch__content-logo {
  background: #fff; }

/* line 63, Resources/Private/Frontend/sass/partials/mod/_content-englisch.scss */
.content-englisch .fancybox-outer {
  overflow-x: hidden; }

/* line 71, Resources/Private/Frontend/sass/partials/mod/_content-englisch.scss */
.englisch-pages div.csc-textpic-imagewrap {
  width: 200px;
  float: left;
  margin-right: 20px;
  margin-top: 10px; }

/* line 78, Resources/Private/Frontend/sass/partials/mod/_content-englisch.scss */
.englisch-pages div.csc-textpic figure {
  text-align: left; }

/* line 82, Resources/Private/Frontend/sass/partials/mod/_content-englisch.scss */
.englisch-pages h1 {
  margin-top: 10px; }

/* line 86, Resources/Private/Frontend/sass/partials/mod/_content-englisch.scss */
.englisch-pages .box > h2, .englisch-pages .box > .sub-navigation__header, .englisch-pages .box > .teaser__header {
  margin-top: 10px; }

@media screen and (min-width: 62em) {
  /* line 91, Resources/Private/Frontend/sass/partials/mod/_content-englisch.scss */
  .englisch-pages .box {
    width: 100%; }
  /* line 95, Resources/Private/Frontend/sass/partials/mod/_content-englisch.scss */
  .englisch-pages .row, .englisch-pages .color-pattern {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  /* line 105, Resources/Private/Frontend/sass/partials/mod/_content-englisch.scss */
  .englisch-pages [class^="col-"] {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; } }

/**
 * brandung breadcrumb.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-20
 * MIT License (MIT)
 */
/* ==========================================================================
   Breadcrumb
   ========================================================================== */
/* line 19, Resources/Private/Frontend/sass/partials/mod/_contact-list.scss */
.contact-list dt {
  float: left;
  width: 20%; }

/* line 24, Resources/Private/Frontend/sass/partials/mod/_contact-list.scss */
.contact-list dd {
  float: left;
  margin-left: 0;
  width: 80%; }

/**
 * brandung link.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-20
 * MIT License (MIT)
 */
/* ==========================================================================
   Link
   ========================================================================== */
/* line 16, Resources/Private/Frontend/sass/partials/mod/_button-list.scss */
.button-list {
  margin: 30px 0 0; }
  /* line 19, Resources/Private/Frontend/sass/partials/mod/_button-list.scss */
  .button-list a {
    font-weight: 400; }
  @media print {
    /* line 16, Resources/Private/Frontend/sass/partials/mod/_button-list.scss */
    .button-list {
      display: none; } }

/**
 * brandung tags.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-20
 * MIT License (MIT)
 */
/* ==========================================================================
   Tags
   ========================================================================== */
/* line 16, Resources/Private/Frontend/sass/partials/mod/_tags.scss */
.tags, .tags--more {
  position: relative;
  margin-bottom: 20px;
  margin-left: 1rem; }
  /* line 23, Resources/Private/Frontend/sass/partials/mod/_tags.scss */
  .tags li, .tags--more li {
    display: inline-block;
    margin-right: 2.2rem;
    position: relative; }
    /* line 28, Resources/Private/Frontend/sass/partials/mod/_tags.scss */
    .tags li:after, .tags--more li:after {
      content: '|';
      position: absolute;
      right: -0.8rem; }
    /* line 35, Resources/Private/Frontend/sass/partials/mod/_tags.scss */
    .tags li:last-child:after, .tags--more li:last-child:after {
      content: ''; }
  /* line 42, Resources/Private/Frontend/sass/partials/mod/_tags.scss */
  .tags a:before, .tags--more a:before {
    font-size: 24px;
    font-size: 1.5rem;
    transition: left 0.2s;
    display: inline-block;
    overflow: hidden;
    line-height: .9em;
    position: absolute;
    left: -1.8rem;
    top: -1px; }
  /* line 56, Resources/Private/Frontend/sass/partials/mod/_tags.scss */
  .tags a:hover:before, .tags--more a:hover:before {
    left: -1.8rem; }
  /* line 61, Resources/Private/Frontend/sass/partials/mod/_tags.scss */
  .tags a:visited, .tags--more a:visited {
    color: #b35d5d; }
    /* line 63, Resources/Private/Frontend/sass/partials/mod/_tags.scss */
    .tags a:visited:after, .tags--more a:visited:after {
      background: #b35d5d; }

@media print {
  /* line 70, Resources/Private/Frontend/sass/partials/mod/_tags.scss */
  .tags {
    display: none !important; } }

/* line 2, Resources/Private/Frontend/sass/partials/mod/_app-links.scss */
.app-links .app-links__link {
  display: block;
  margin: 20px 0;
  max-width: 200px; }
  @media screen and (min-width: 48em) {
    /* line 2, Resources/Private/Frontend/sass/partials/mod/_app-links.scss */
    .app-links .app-links__link {
      display: inline-block;
      margin: 0 10px 0 0;
      max-width: 150px; } }
  /* line 13, Resources/Private/Frontend/sass/partials/mod/_app-links.scss */
  .app-links .app-links__link::after {
    content: none; }
  @media screen and (min-width: 48em) {
    /* line 17, Resources/Private/Frontend/sass/partials/mod/_app-links.scss */
    .app-links .app-links__link--mobile {
      display: none; } }

/**
 * brandung mediathek.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-03-14
 * MIT License (MIT)
 */
/* ==========================================================================
   Mediathek
   ========================================================================== */
/* line 19, Resources/Private/Frontend/sass/partials/mod/_teaser-video.scss */
.teaser-video__item {
  position: relative;
  background: transparent;
  margin-top: 15px;
  color: #0f2d64;
  text-align: center; }
  /* line 26, Resources/Private/Frontend/sass/partials/mod/_teaser-video.scss */
  .teaser-video__item:nth-child(3n+4) {
    clear: both; }

/* line 31, Resources/Private/Frontend/sass/partials/mod/_teaser-video.scss */
.teaser-video__link {
  display: block;
  width: 100%;
  text-decoration: none; }

/* line 38, Resources/Private/Frontend/sass/partials/mod/_teaser-video.scss */
.teaser-video__image {
  width: 100%; }

/* line 42, Resources/Private/Frontend/sass/partials/mod/_teaser-video.scss */
.teaser-video__container {
  position: relative;
  padding: 10px 10px 0;
  line-height: 19px;
  width: 100%;
  background: #fff;
  text-align: left;
  height: 77px; }
  @media screen and (min-width: 61.999em) {
    /* line 42, Resources/Private/Frontend/sass/partials/mod/_teaser-video.scss */
    .teaser-video__container {
      padding: 10px; } }

/* line 57, Resources/Private/Frontend/sass/partials/mod/_teaser-video.scss */
.teaser-video__header {
  position: relative;
  margin: 0;
  padding: 0 15px 0 0; }

/* line 1, Resources/Private/Frontend/sass/partials/mod/_popup-cookie.scss */
.popup-cookie {
  position: fixed;
  z-index: 10;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 5%;
  background: rgba(15, 45, 100, 0.9);
  -webkit-transform: translateY(102%);
          transform: translateY(102%);
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s; }
  @media screen and (min-width: 30em) {
    /* line 1, Resources/Private/Frontend/sass/partials/mod/_popup-cookie.scss */
    .popup-cookie {
      padding: 30px 5%; } }
  /* line 16, Resources/Private/Frontend/sass/partials/mod/_popup-cookie.scss */
  .popup-cookie.show-popup {
    -webkit-transform: translateY(0);
            transform: translateY(0); }

/* line 21, Resources/Private/Frontend/sass/partials/mod/_popup-cookie.scss */
.popup-cookie__text {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0 0 15px;
  float: left;
  color: #fff;
  font-size: 14px; }
  @media screen and (min-width: 30em) {
    /* line 21, Resources/Private/Frontend/sass/partials/mod/_popup-cookie.scss */
    .popup-cookie__text {
      padding-left: 70px;
      font-size: 16px; } }
  @media screen and (min-width: 62em) {
    /* line 21, Resources/Private/Frontend/sass/partials/mod/_popup-cookie.scss */
    .popup-cookie__text {
      width: 70%;
      margin-bottom: 0; } }
  /* line 40, Resources/Private/Frontend/sass/partials/mod/_popup-cookie.scss */
  .popup-cookie__text:before {
    position: absolute;
    left: 0;
    top: -8px;
    display: none;
    font-size: 60px; }
    @media screen and (min-width: 30em) {
      /* line 40, Resources/Private/Frontend/sass/partials/mod/_popup-cookie.scss */
      .popup-cookie__text:before {
        display: block; } }
  /* line 52, Resources/Private/Frontend/sass/partials/mod/_popup-cookie.scss */
  .popup-cookie__text a {
    color: #fff;
    text-decoration: underline; }

/* line 58, Resources/Private/Frontend/sass/partials/mod/_popup-cookie.scss */
.popup-cookie__button {
  background: none;
  border-color: #fff;
  color: #fff;
  float: left;
  margin: 5px 0 0 0;
  text-decoration: none; }
  @media screen and (min-width: 30em) {
    /* line 58, Resources/Private/Frontend/sass/partials/mod/_popup-cookie.scss */
    .popup-cookie__button {
      margin-left: 70px; } }
  @media screen and (min-width: 62em) {
    /* line 58, Resources/Private/Frontend/sass/partials/mod/_popup-cookie.scss */
    .popup-cookie__button {
      max-width: 30%;
      float: right;
      margin-left: 0; } }
  /* line 76, Resources/Private/Frontend/sass/partials/mod/_popup-cookie.scss */
  .popup-cookie__button:hover {
    background: #fff;
    color: #0f2d64; }

/* line 3, Resources/Private/Frontend/sass/partials/mod/_internal.scss */
.tx-felogin-pi1 > h3 {
  font-size: 1.125rem; }

/* line 7, Resources/Private/Frontend/sass/partials/mod/_internal.scss */
.tx-felogin-pi1 form {
  margin-top: 30px; }

/* line 11, Resources/Private/Frontend/sass/partials/mod/_internal.scss */
.tx-felogin-pi1 fieldset > div {
  margin-bottom: 20px; }

/* line 15, Resources/Private/Frontend/sass/partials/mod/_internal.scss */
.tx-felogin-pi1 fieldset input {
  margin-top: 15px; }

/* line 19, Resources/Private/Frontend/sass/partials/mod/_internal.scss */
.tx-felogin-pi1 fieldset label {
  vertical-align: middle; }

/* line 1, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
body.cio-theme .nav__list .nav__list-item > a::after {
  border-color: transparent transparent #bc282f; }

/* line 7, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme input:focus,
.cio-theme select:focus,
.cio-theme textarea:focus {
  border: 1px solid #565656; }

/* line 13, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .search__form input[type=text] {
  border: none; }

/* line 17, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .application__gretting,
.cio-theme .category__headline,
.cio-theme .search__topic strong,
.cio-theme h1, .cio-theme h2, .cio-theme .sub-navigation__header, .cio-theme .teaser__header, .cio-theme h3, .cio-theme h4, .cio-theme .h1, .cio-theme .search__topic strong, .search__topic .cio-theme strong, .cio-theme .category__headline, .cio-theme .application__gretting, .cio-theme .h2, .cio-theme footer .footernav__tweet, footer .cio-theme .footernav__tweet, .cio-theme footer .footernav__youTube, footer .cio-theme .footernav__youTube, .cio-theme .h3, .cio-theme .tab-content__select, .cio-theme .application__headline, .cio-theme .h4 .sub-navigation__header, .cio-theme footer .footernav__anker .sub-navigation__header, footer .cio-theme .footernav__anker .sub-navigation__header {
  color: #bc282f; }

/* line 25, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .sub-navigation__headline.active {
  background: #bc282f; }

/* line 29, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .sub-navigation__headline-sub.active,
.cio-theme .sub-navigation__headline-sub:hover {
  color: #bc282f; }

/* line 35, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .breadcrumb a, .cio-theme .breadcrumb li {
  color: #565656; }

/* line 40, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .search__form fieldset {
  border: 3px solid #CCC; }

/* line 44, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .result-title a {
  color: #bc282f; }

/* line 48, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .header__clinics-bar {
  background: #bc282f;
  border-top: 1px solid #bc282f; }

/* line 53, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .tab-content .active:first-child {
  border-left: 1px solid #bc282f; }

/* line 57, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .tab-content:not(.active) {
  border: none; }

/* line 61, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .tab-content .active {
  background: #bc282f; }

/* line 65, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .tab-content__headline li:not(.active) {
  border: none;
  box-shadow: none; }

/* line 70, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .tab-content__headline li:hover {
  background: #bc282f; }

/* line 74, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .tab-content .active {
  border-color: #bc282f; }

/* line 78, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .popup-cookie {
  background: rgba(188, 42, 52, 0.9); }

/* line 82, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .nav__list-item.is-hover > a {
  color: #bc282f; }

/* line 87, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .nav__flyout li a {
  color: #565656; }
  /* line 90, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
  .cio-theme .nav__flyout li a:hover {
    color: #bc282f; }

/* line 98, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .teaser--portrait-image .teaser__content .teaser__header {
  color: #bc282f; }

/* line 102, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .teaser--portrait-image .teaser__content p {
  color: #565656; }

/* line 108, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .teaser__header {
  color: #bc282f; }

/* line 116, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .slick-slider section:hover p, .cio-theme .slick-slider section:hover a {
  text-decoration: none; }

/* line 122, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .slick-slider .slick-slide p {
  color: #565656; }

/* line 129, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .slick-slider .slick-dots li button:hover, .cio-theme .slick-slider .slick-dots li button:focus {
  outline: none; }
  /* line 132, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
  .cio-theme .slick-slider .slick-dots li button:hover:before, .cio-theme .slick-slider .slick-dots li button:focus:before {
    background: #565656; }

/* line 137, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .slick-slider .slick-dots li button[class*=slick__control] {
  color: #565656;
  border: none; }
  /* line 141, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
  .cio-theme .slick-slider .slick-dots li button[class*=slick__control]:before {
    color: #565656;
    padding: 3px 8px; }
  /* line 146, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
  .cio-theme .slick-slider .slick-dots li button[class*=slick__control]:hover {
    color: #fff;
    background: #565656; }
    /* line 150, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
    .cio-theme .slick-slider .slick-dots li button[class*=slick__control]:hover:before {
      color: #fff;
      background: transparent; }

/* line 159, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .slick-slider .slick-dots li.slick-active button:before {
  background: #565656; }

/* line 166, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .slick-slider--gallery .slick-next,
.cio-theme .slick-slider--gallery .slick-prev,
.cio-theme .slick-slider--intext .slick-next,
.cio-theme .slick-slider--intext .slick-prev {
  background: #565656; }

/* line 174, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .main-points span:before,
.cio-theme .main-points a {
  color: #565656; }

/* line 181, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .news-list .news-list__headline {
  color: #bc282f; }

/* line 186, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .text-right a {
  color: #565656; }

/* line 190, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .tab-accordion__headline {
  color: #565656; }

/* line 194, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .tab-accordion__slider.next, .cio-theme .tab-accordion__slider.prev {
  background: #bc282f; }

/* line 198, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .pagination .btn {
  border: none; }
  /* line 201, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
  .cio-theme .pagination .btn:hover {
    border: none; }
  /* line 205, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
  .cio-theme .pagination .btn.active {
    background: #bc282f;
    color: #fff; }
  /* line 210, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
  .cio-theme .pagination .btn.icon-arrowright {
    height: auto; }
    /* line 213, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
    .cio-theme .pagination .btn.icon-arrowright:hover {
      border: none; }

/* line 219, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .btn:hover {
  background: #bc282f;
  border: 1px solid #8a99a7;
  color: #fff; }

/* line 225, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .btn.icon-close,
.cio-theme .btn.icon-arrowright {
  height: 45.6px;
  outline: 0 none; }
  /* line 230, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
  .cio-theme .btn.icon-close:hover,
  .cio-theme .btn.icon-arrowright:hover {
    border: 1px solid #bc282f; }

/* line 235, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .btn.icon-close {
  padding: 7px 20px 1px 10px; }

/* line 239, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme [class^="btn"].icon-only span,
.cio-theme [class^="btn"].icon-before span,
.cio-theme [class^="btn"].icon-after span {
  text-decoration: none; }

/* line 245, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .btn,
.cio-theme .date-picker__input::before {
  color: #bc282f; }

/* line 252, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .date-picker__input:hover::before {
  background: transparent; }

/* line 259, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .selectboxit-container .selectboxit-options li.selectboxit-focus {
  border: none; }

/* line 264, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .selectboxit-container .selectboxit-options a {
  color: #565656; }

/* line 268, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .selectboxit-container .selectboxit-options a:hover {
  color: #fff;
  background: #bc282f; }

/* line 273, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .selectboxit-focus {
  border: 1px solid #8a99a7; }

/* line 277, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .popup-cookie__button.btn {
  color: #fff; }
  /* line 280, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
  .cio-theme .popup-cookie__button.btn:hover {
    border: 1px solid #fff;
    background: rgba(188, 42, 52, 0.9); }

/* line 286, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li.tx-indexedsearch-browselist-currentPage a,
.cio-theme .tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li:hover a {
  background: #bc282f;
  color: #fff; }

/* line 292, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .tx-indexedsearch .tx-indexedsearch-browsebox .browsebox li a {
  color: #bc282f; }

/* line 297, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme footer .footernav__social a {
  color: #565656; }
  /* line 302, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
  .cio-theme footer .footernav__social a:hover:before {
    color: #bc282f; }

/* line 309, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .tx-bra-events-ukk h1 {
  color: #565656; }

/* line 313, Resources/Private/Frontend/sass/partials/cio/_theme.scss */
.cio-theme .tab-content__select {
  background: #bc282f;
  color: #fff; }

/**
 * brandung formz-fastlane.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2020-03-25
 * MIT License (MIT)
 */
/* ==========================================================================
   Form-Fastlane
   ========================================================================== */
/* line 18, Resources/Private/Frontend/sass/partials/mod/_formz-fastlane.scss */
.form-fastlane {
  margin: 25px 0; }
  /* line 21, Resources/Private/Frontend/sass/partials/mod/_formz-fastlane.scss */
  .form-fastlane #step-2 {
    display: none; }
  /* line 25, Resources/Private/Frontend/sass/partials/mod/_formz-fastlane.scss */
  .form-fastlane #formz-ex-form-appointment-date {
    width: auto;
    display: inline-block; }
  /* line 30, Resources/Private/Frontend/sass/partials/mod/_formz-fastlane.scss */
  .form-fastlane h1 {
    text-align: center; }
  /* line 34, Resources/Private/Frontend/sass/partials/mod/_formz-fastlane.scss */
  .form-fastlane .btn {
    margin-top: 20px; }
  /* line 38, Resources/Private/Frontend/sass/partials/mod/_formz-fastlane.scss */
  .form-fastlane__field {
    margin-top: 20px; }
    @media screen and (max-width: 47.999em) {
      /* line 38, Resources/Private/Frontend/sass/partials/mod/_formz-fastlane.scss */
      .form-fastlane__field {
        margin-top: 10px; } }
    /* line 45, Resources/Private/Frontend/sass/partials/mod/_formz-fastlane.scss */
    .form-fastlane__field label {
      color: #565656;
      font-weight: bold;
      margin-bottom: 10px; }
      /* line 52, Resources/Private/Frontend/sass/partials/mod/_formz-fastlane.scss */
      .form-fastlane__field label span {
        color: #565656;
        float: left;
        text-align: left;
        font-weight: normal;
        margin-right: 20px; }
  /* line 64, Resources/Private/Frontend/sass/partials/mod/_formz-fastlane.scss */
  .form-fastlane input.util-color-error {
    border: 1px solid red;
    color: red; }
    /* line 68, Resources/Private/Frontend/sass/partials/mod/_formz-fastlane.scss */
    .form-fastlane input.util-color-error + div {
      color: red; }
    /* line 72, Resources/Private/Frontend/sass/partials/mod/_formz-fastlane.scss */
    .form-fastlane input.util-color-error + span {
      color: red; }
  /* line 79, Resources/Private/Frontend/sass/partials/mod/_formz-fastlane.scss */
  .form-fastlane .js-validation-type-error {
    color: red; }
  /* line 84, Resources/Private/Frontend/sass/partials/mod/_formz-fastlane.scss */
  .form-fastlane select.util-color-error {
    border: 1px solid red;
    color: red; }
    /* line 88, Resources/Private/Frontend/sass/partials/mod/_formz-fastlane.scss */
    .form-fastlane select.util-color-error + div {
      color: red; }
  /* line 106, Resources/Private/Frontend/sass/partials/mod/_formz-fastlane.scss */
  .form-fastlane__input-box select {
    font-size: 16px;
    outline: none;
    cursor: pointer; }
    /* line 111, Resources/Private/Frontend/sass/partials/mod/_formz-fastlane.scss */
    .form-fastlane__input-box select option {
      color: #666; }
  /* line 119, Resources/Private/Frontend/sass/partials/mod/_formz-fastlane.scss */
  .form-fastlane__select-wrapper {
    position: relative;
    /*Don't really need this just for demo styling*/ }
    /* line 124, Resources/Private/Frontend/sass/partials/mod/_formz-fastlane.scss */
    .form-fastlane__select-wrapper:after {
      content: '\e601';
      font: normal normal normal 36px/1 "icomoon";
      right: 11px;
      top: 5px;
      height: 39px;
      padding: 10px 0px 0px 8px;
      border-left: 1px solid #8999a8;
      position: absolute;
      pointer-events: none; }
    /* line 136, Resources/Private/Frontend/sass/partials/mod/_formz-fastlane.scss */
    .form-fastlane__select-wrapper select {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      display: block;
      outline: none;
      height: 50px;
      float: right;
      margin: 5px 0px;
      font-size: 16px;
      line-height: 1.75;
      color: #333;
      background-color: #ffffff;
      background-image: none;
      border: 1px solid #8999a8;
      -ms-word-break: normal;
      word-break: normal; }
      @media screen and (max-width: 47.999em) {
        /* line 136, Resources/Private/Frontend/sass/partials/mod/_formz-fastlane.scss */
        .form-fastlane__select-wrapper select {
          height: 40px; } }
    /* line 159, Resources/Private/Frontend/sass/partials/mod/_formz-fastlane.scss */
    .form-fastlane__select-wrapper__steps {
      text-align: center; }

/* line 169, Resources/Private/Frontend/sass/partials/mod/_formz-fastlane.scss */
form[name="exForm"] #step-1 [fz-field-container="alreadyPatientAtUHC"],
form[name="exForm"] #step-2 [fz-field-container="contractualGeneralConditions"],
form[name="exForm"] #step-3 [fz-field-container="insuranceType"] {
  display: block; }
  /* line 174, Resources/Private/Frontend/sass/partials/mod/_formz-fastlane.scss */
  form[name="exForm"] #step-1 [fz-field-container="alreadyPatientAtUHC"] .btn,
  form[name="exForm"] #step-2 [fz-field-container="contractualGeneralConditions"] .btn,
  form[name="exForm"] #step-3 [fz-field-container="insuranceType"] .btn {
    border: solid 1px #8a99a7;
    pointer-events: none;
    background: #fff;
    color: #8a99a7; }

/* line 182, Resources/Private/Frontend/sass/partials/mod/_formz-fastlane.scss */
form[name="exForm"][fz-valid-appointment-date="1"][fz-valid-treatment-type="1"][fz-valid-specialistarea-clinic-ambulance="1"] #step-1 [fz-field-container="alreadyPatientAtUHC"],
form[name="exForm"][fz-valid-already-patient-at-u-h-c="1"][fz-valid-patient-first-name="1"][fz-valid-patient-last-name="1"][fz-valid-patient-date-of-birth="1"][fz-valid-patient-street="1"][fz-valid-patient-housenumber="1"][fz-valid-patient-postal-code="1"][fz-valid-patient-city="1"][fz-valid-patient-email-address="1"] #step-2 [fz-field-container="contractualGeneralConditions"],
form[name="exForm"][fz-valid-contractual-general-conditions="1"][fz-valid-patient-information-d-s-g-v-o="1"] #step-3 [fz-field-container="insuranceType"] {
  display: block; }
  /* line 187, Resources/Private/Frontend/sass/partials/mod/_formz-fastlane.scss */
  form[name="exForm"][fz-valid-appointment-date="1"][fz-valid-treatment-type="1"][fz-valid-specialistarea-clinic-ambulance="1"] #step-1 [fz-field-container="alreadyPatientAtUHC"] .btn,
  form[name="exForm"][fz-valid-already-patient-at-u-h-c="1"][fz-valid-patient-first-name="1"][fz-valid-patient-last-name="1"][fz-valid-patient-date-of-birth="1"][fz-valid-patient-street="1"][fz-valid-patient-housenumber="1"][fz-valid-patient-postal-code="1"][fz-valid-patient-city="1"][fz-valid-patient-email-address="1"] #step-2 [fz-field-container="contractualGeneralConditions"] .btn,
  form[name="exForm"][fz-valid-contractual-general-conditions="1"][fz-valid-patient-information-d-s-g-v-o="1"] #step-3 [fz-field-container="insuranceType"] .btn {
    background: #0f2d64;
    border-color: #0f2d64;
    color: #fff;
    pointer-events: all; }

/* line 195, Resources/Private/Frontend/sass/partials/mod/_formz-fastlane.scss */
form[name="exForm"] #step-4 button#send {
  border: solid 1px #8a99a7;
  pointer-events: none;
  background: #fff;
  color: #8a99a7; }

/* line 202, Resources/Private/Frontend/sass/partials/mod/_formz-fastlane.scss */
form[name="exForm"][fz-valid="1"] #step-4 button#send {
  background: #0f2d64;
  border-color: #0f2d64;
  color: #fff;
  pointer-events: all; }

/* line 1, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
body.consortium-fbuek .nav__list .nav__list-item > a::after {
  border-color: transparent transparent #f07922; }

/* line 5, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
body.consortium-fbuek {
  background: #e2eef0; }

/* line 11, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .application__gretting,
.consortium-fbuek .category__headline,
.consortium-fbuek j .search__topic strong,
.consortium-fbuek h1,
.consortium-fbuek h2,
.consortium-fbuek .sub-navigation__header,
.consortium-fbuek .teaser__header,
.consortium-fbuek h3,
.consortium-fbuek h4,
.consortium-fbuek .h1,
.consortium-fbuek .search__topic strong,
.search__topic .consortium-fbuek strong,
.consortium-fbuek .category__headline,
.consortium-fbuek .application__gretting,
.consortium-fbuek .h2,
.consortium-fbuek footer .footernav__tweet,
footer .consortium-fbuek .footernav__tweet,
.consortium-fbuek footer .footernav__youTube,
footer .consortium-fbuek .footernav__youTube,
.consortium-fbuek .h3,
.consortium-fbuek .tab-content__select,
.consortium-fbuek .application__headline,
.consortium-fbuek .h4 .sub-navigation__header,
.consortium-fbuek footer .footernav__anker .sub-navigation__header,
footer .consortium-fbuek .footernav__anker .sub-navigation__header {
  color: #f07922; }

/* line 25, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .sub-navigation__headline.active {
  background: #f07922; }

/* line 29, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .sub-navigation__headline-sub.active,
.consortium-fbuek .sub-navigation__headline-sub:hover {
  color: #f07922; }

/* line 34, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek input:focus,
.consortium-fbuek select:focus,
.consortium-fbuek textarea:focus {
  border-top: 1px solid #565656; }

/* line 40, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .nav-anchors__open::before {
  color: #f07922; }

/* line 44, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .nav-anchors a.nav-anchors__close {
  background: #f07922; }

/* line 50, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .breadcrumb a,
.consortium-fbuek .breadcrumb li {
  color: #565656; }

/* line 56, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .search__form fieldset {
  border: 3px solid #CCC; }
  /* line 59, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
  .consortium-fbuek .search__form fieldset .btn:hover {
    background: #fff;
    color: #f07922; }

/* line 67, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .search-anchors .search-anchors__open::before {
  color: #f07922; }

/* line 71, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .search-anchors .search-anchors__close {
  background: #f07922; }

/* line 76, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .result-title a {
  color: #f07922; }

/* line 80, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .header__clinics-bar {
  background: #f07922;
  border-top: 1px solid #f07922; }

/* line 85, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .tab-content .active:first-child {
  border-left: 1px solid #f07922; }

/* line 89, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .tab-content:not(.active) {
  border: none; }

/* line 93, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .tab-content .active {
  background: #f07922; }

/* line 97, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .tab-content__headline li:not(.active) {
  border: none;
  box-shadow: none; }

/* line 102, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .tab-content__headline li:hover {
  background: #f07922; }

/* line 106, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .tab-content .active {
  border-color: #f07922; }

/* line 110, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .popup-cookie {
  background: #f07922; }

/* line 114, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .nav__list-item > a {
  color: #565656; }

/* line 118, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .nav__list-item.is-hover > a {
  color: #f07922; }

/* line 122, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .nav__flyout {
  color: #f07922; }
  /* line 126, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
  .consortium-fbuek .nav__flyout li a {
    color: #565656; }
    /* line 129, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
    .consortium-fbuek .nav__flyout li a:hover {
      color: #f07922; }
  /* line 134, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
  .consortium-fbuek .nav__flyout .clone {
    background: #f07922; }

/* line 141, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .teaser--portrait-image .teaser__content .teaser__header {
  color: #f07922; }

/* line 145, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .teaser--portrait-image .teaser__content p {
  color: #565656; }

/* line 155, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek main a {
  color: #565656; }

/* line 159, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .teaser__header {
  color: #f07922; }

/* line 168, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .slick-slider section:hover p,
.consortium-fbuek .slick-slider section:hover a {
  text-decoration: none; }

/* line 175, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .slick-slider .slick-slide p {
  color: #565656; }

/* line 183, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .slick-slider .slick-dots li button:hover, .consortium-fbuek .slick-slider .slick-dots li button:focus {
  outline: none; }
  /* line 187, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
  .consortium-fbuek .slick-slider .slick-dots li button:hover:before, .consortium-fbuek .slick-slider .slick-dots li button:focus:before {
    background: #565656; }

/* line 192, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .slick-slider .slick-dots li button[class*=slick__control] {
  color: #565656;
  border: none; }
  /* line 196, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
  .consortium-fbuek .slick-slider .slick-dots li button[class*=slick__control]:before {
    color: #565656;
    padding: 3px 8px; }
  /* line 201, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
  .consortium-fbuek .slick-slider .slick-dots li button[class*=slick__control]:hover {
    color: #fff;
    background: #565656; }
    /* line 205, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
    .consortium-fbuek .slick-slider .slick-dots li button[class*=slick__control]:hover:before {
      color: #fff;
      background: transparent; }

/* line 214, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .slick-slider .slick-dots li.slick-active button:before {
  background: #565656; }

/* line 222, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .main-points span:before,
.consortium-fbuek .main-points a {
  color: #565656; }

/* line 229, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .news-list .news-list__headline {
  color: #f07922; }

/* line 234, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .list-icon .icon-before {
  color: #f07922; }
  /* line 237, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
  .consortium-fbuek .list-icon .icon-before:before {
    color: #f07922; }

/* line 242, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .downloadbar .icon-after,
.consortium-fbuek .downloadbar .icon-before {
  color: #f07922; }

/* line 248, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .text-right a {
  color: #565656; }

/* line 252, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .tab-accordion__headline {
  color: #565656; }

/* line 256, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .tab-accordion__slider.next,
.consortium-fbuek .tab-accordion__slider.prev {
  background: #f07922; }

/* line 261, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .pagination .btn {
  border: none; }
  /* line 264, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
  .consortium-fbuek .pagination .btn:hover {
    border: none; }
  /* line 268, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
  .consortium-fbuek .pagination .btn.active {
    background: #f07922;
    color: #fff; }
  /* line 273, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
  .consortium-fbuek .pagination .btn.icon-arrowright {
    height: auto; }
    /* line 276, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
    .consortium-fbuek .pagination .btn.icon-arrowright:hover {
      border: none; }

/* line 282, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .btn:hover {
  background: #f07922;
  border: 1px solid #8a99a7;
  color: #fff; }

/* line 289, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .btn.icon-close,
.consortium-fbuek .btn.icon-arrowright {
  height: 45.6px;
  outline: 0 none; }
  /* line 294, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
  .consortium-fbuek .btn.icon-close:hover,
  .consortium-fbuek .btn.icon-arrowright:hover {
    border: 1px solid #f07922; }

/* line 299, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .btn.icon-close {
  padding: 7px 20px 1px 10px; }

/* line 303, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek [class^="btn"].icon-only span,
.consortium-fbuek [class^="btn"].icon-before span,
.consortium-fbuek [class^="btn"].icon-after span {
  text-decoration: none; }

/* line 309, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .btn,
.consortium-fbuek .date-picker__input::before {
  color: #f07922; }

/* line 316, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .date-picker__input:hover::before {
  background: transparent; }

/* line 324, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .selectboxit-container .custom-select.selectboxit-hover, .consortium-fbuek .selectboxit-container .custom-select.selectboxit-open {
  background: #f07922;
  color: #fff; }

/* line 335, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .selectboxit-container .selectboxit-options li.selectboxit-focus {
  border: none; }

/* line 340, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .selectboxit-container .selectboxit-options a {
  color: #565656; }

/* line 344, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .selectboxit-container .selectboxit-options a:hover {
  color: #fff;
  background: #f07922; }

/* line 349, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .selectboxit-focus {
  border: 1px solid #8a99a7; }

/* line 353, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .popup-cookie__button.btn {
  color: #fff; }
  /* line 356, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
  .consortium-fbuek .popup-cookie__button.btn:hover {
    border: 1px solid #fff;
    background: rgba(188, 42, 52, 0.9); }

/* line 362, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .external-link-new-window {
  color: #565656; }
  /* line 365, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
  .consortium-fbuek .external-link-new-window:visited {
    color: #f07922; }

/* line 373, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek footer .footernav__social a {
  color: #565656; }
  /* line 378, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
  .consortium-fbuek footer .footernav__social a:hover:before {
    color: #f07922; }

/* line 384, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek footer .footernav__anker {
  border: 1px solid #f07922;
  color: #f07922 !important; }

/* line 391, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .tx-bra-events-ukk h1 {
  color: #565656; }

/* line 395, Resources/Private/Frontend/sass/partials/consortium-fbuek/_theme.scss */
.consortium-fbuek .tab-content__select {
  background: #f07922;
  color: #fff; }

/**
 * brandung _equal-heights.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-20
 * MIT License (MIT)
 */
/* line 12, Resources/Private/Frontend/sass/partials/mod/_equal-heights.scss */
.equalHeights {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
  /* line 17, Resources/Private/Frontend/sass/partials/mod/_equal-heights.scss */
  .equalHeights:before, .equalHeights:after {
    content: normal; }
  /* line 21, Resources/Private/Frontend/sass/partials/mod/_equal-heights.scss */
  .equalHeights > .col-s-6, .color-pattern .equalHeights > li {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    @media screen and (max-width: 47.999em) {
      /* line 21, Resources/Private/Frontend/sass/partials/mod/_equal-heights.scss */
      .equalHeights > .col-s-6, .color-pattern .equalHeights > li {
        width: 100%; } }
  /* line 28, Resources/Private/Frontend/sass/partials/mod/_equal-heights.scss */
  .equalHeights > li {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
  /* line 32, Resources/Private/Frontend/sass/partials/mod/_equal-heights.scss */
  .equalHeights .box {
    width: 100%; }

/**
 * brandung _main-points.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-20
 * MIT License (MIT)
 */
/* ==========================================================================
   Breadcrumb
   ========================================================================== */
/* line 17, Resources/Private/Frontend/sass/partials/mod/_main-points.scss */
.main-points {
  margin-bottom: 20px; }
  /* line 125, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .main-points:before, .main-points:after {
    content: " ";
    display: table; }
  /* line 130, Resources/Private/Frontend/sass/partials/_mixins.scss */
  .main-points:after {
    clear: both; }
  /* line 20, Resources/Private/Frontend/sass/partials/mod/_main-points.scss */
  .main-points .main-point {
    background: white;
    padding: 10px;
    margin-bottom: 20px;
    font-weight: bold; }
    /* line 26, Resources/Private/Frontend/sass/partials/mod/_main-points.scss */
    .main-points .main-point a {
      text-decoration: none; }
      /* line 29, Resources/Private/Frontend/sass/partials/mod/_main-points.scss */
      .main-points .main-point a:hover {
        text-decoration: underline; }

/**
 * brandung clinics/mod/main-points.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2016-03-24
 * MIT License (MIT)
 */
/* ==========================================================================
   Main-Points
   ========================================================================== */
/* line 21, Resources/Private/Frontend/sass/partials/clinics/mod/_main-points.scss */
body.clinics .main-points .main-point {
  padding: 15px;
  position: relative; }
  /* line 25, Resources/Private/Frontend/sass/partials/clinics/mod/_main-points.scss */
  body.clinics .main-points .main-point > span {
    left: 10px;
    position: absolute;
    top: 10px; }
  /* line 31, Resources/Private/Frontend/sass/partials/clinics/mod/_main-points.scss */
  body.clinics .main-points .main-point a {
    display: inline-block;
    padding-left: 45px; }

/**
 * brandung _contact-module.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-04-20
 * MIT License (MIT)
 */
/* line 16, Resources/Private/Frontend/sass/partials/mod/_contact-module.scss */
.contact-module .icon-location:before,
.contact-module .icon-phone:before,
.contact-module .icon-route:before {
  vertical-align: top;
  font-size: 50px;
  font-size: 3.125rem;
  color: #8a99a7; }

/* line 21, Resources/Private/Frontend/sass/partials/mod/_contact-module.scss */
.contact-module .icon-location > div,
.contact-module .icon-phone > div,
.contact-module .icon-route > div {
  display: inline-block; }
  /* line 23, Resources/Private/Frontend/sass/partials/mod/_contact-module.scss */
  .contact-module .icon-location > div a,
  .contact-module .icon-phone > div a,
  .contact-module .icon-route > div a {
    color: #0f2d64; }

/* line 3, Resources/Private/Frontend/sass/partials/mod/_studienregister.scss */
.tx-bra-clinical-study-register-uk .status-green {
  color: #afcd50; }

/* line 7, Resources/Private/Frontend/sass/partials/mod/_studienregister.scss */
.tx-bra-clinical-study-register-uk .title {
  display: inline-block; }

/* line 11, Resources/Private/Frontend/sass/partials/mod/_studienregister.scss */
.tx-bra-clinical-study-register-uk .precompiled-content, .tx-bra-clinical-study-register-uk p {
  margin-left: 20px; }

/* line 15, Resources/Private/Frontend/sass/partials/mod/_studienregister.scss */
.tx-bra-clinical-study-register-uk .contacts {
  padding: 5px 20px;
  background: #efefef; }

/* line 20, Resources/Private/Frontend/sass/partials/mod/_studienregister.scss */
.tx-bra-clinical-study-register-uk ul {
  margin: 5px 0; }

/* line 24, Resources/Private/Frontend/sass/partials/mod/_studienregister.scss */
.tx-bra-clinical-study-register-uk p:blank {
  background: red; }

/* line 29, Resources/Private/Frontend/sass/partials/mod/_studienregister.scss */
.tx-bra-clinical-study-register-uk .study-register-tree > li {
  cursor: pointer; }
  /* line 31, Resources/Private/Frontend/sass/partials/mod/_studienregister.scss */
  .tx-bra-clinical-study-register-uk .study-register-tree > li > ul {
    display: none; }
    /* line 33, Resources/Private/Frontend/sass/partials/mod/_studienregister.scss */
    .tx-bra-clinical-study-register-uk .study-register-tree > li > ul li {
      cursor: auto; }

/* line 1, Resources/Private/Frontend/sass/partials/mod/_people-teaser.scss */
.people-teaser {
  margin: 0;
  padding: 0;
  list-style: none; }
  /* line 7, Resources/Private/Frontend/sass/partials/mod/_people-teaser.scss */
  .people-teaser .fancybox::before {
    display: none; }

/* line 12, Resources/Private/Frontend/sass/partials/mod/_people-teaser.scss */
.people-teaser__item {
  border: 1px solid #565656;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 1em; }

/* line 25, Resources/Private/Frontend/sass/partials/mod/_people-teaser.scss */
.people-teaser__name {
  font-weight: 700;
  margin: 0 4em 0 0; }
  @media (min-width: 48em) {
    /* line 25, Resources/Private/Frontend/sass/partials/mod/_people-teaser.scss */
    .people-teaser__name {
      width: 35%; } }

/* line 34, Resources/Private/Frontend/sass/partials/mod/_people-teaser.scss */
.people-teaser__email {
  display: inline-block;
  margin: 0 4em 0 0; }

/* line 39, Resources/Private/Frontend/sass/partials/mod/_people-teaser.scss */
.people-teaser__link {
  color: #2c9ab7;
  display: inline-block;
  font-size: .9em;
  text-decoration: none; }

/* line 46, Resources/Private/Frontend/sass/partials/mod/_people-teaser.scss */
.people-teaser__right {
  padding-right: .5em;
  position: absolute;
  right: 40px; }

/* line 52, Resources/Private/Frontend/sass/partials/mod/_people-teaser.scss */
.people-teaser-content__wrapper {
  display: none; }

/* line 56, Resources/Private/Frontend/sass/partials/mod/_people-teaser.scss */
.people-teaser-content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

/* line 60, Resources/Private/Frontend/sass/partials/mod/_people-teaser.scss */
.people-teaser-content__image {
  height: 100%;
  margin: 0 2em 0 0; }

/* line 65, Resources/Private/Frontend/sass/partials/mod/_people-teaser.scss */
.people-teaser-content__content {
  overflow: auto;
  padding: 0 70px 0 1em; }
  /* line 69, Resources/Private/Frontend/sass/partials/mod/_people-teaser.scss */
  .people-teaser-content__content span.icon-only::before {
    color: #0f2d64;
    font-size: 150%; }
  /* line 74, Resources/Private/Frontend/sass/partials/mod/_people-teaser.scss */
  .people-teaser-content__content a {
    white-space: nowrap; }

/* line 79, Resources/Private/Frontend/sass/partials/mod/_people-teaser.scss */
.people-teaser-content__headline {
  margin-top: 0; }

/* line 3, Resources/Private/Frontend/sass/partials/mod/_hcc.scss */
.hcc .footernav__social {
  visibility: hidden; }

/**
 * brandung highlith.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2021-05-25
 * MIT License (MIT)
 */
/* ==========================================================================
   Highlight
   ========================================================================== */
/* line 20, Resources/Private/Frontend/sass/partials/mod/_highlight.scss */
.highlight {
  padding: 24px;
  margin-bottom: 24px;
  color: #fff;
  position: relative; }
  @media screen and (max-width: 47.999em) {
    /* line 20, Resources/Private/Frontend/sass/partials/mod/_highlight.scss */
    .highlight {
      width: 100%; } }
  /* line 30, Resources/Private/Frontend/sass/partials/mod/_highlight.scss */
  .highlight__text {
    font-size: 1.125rem;
    font-weight: 400;
    padding-left: 48px; }
    /* line 35, Resources/Private/Frontend/sass/partials/mod/_highlight.scss */
    .highlight__text:before {
      content: '';
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 68 93'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23fff;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3EElement 1%3C/title%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='UKK_Icons'%3E%3Cpath class='cls-1' d='M12,71a8,8,0,0,0,8,8H60a8,8,0,0,0,8-8V30H12ZM51,41h9v9H51Zm0,17h9v9H51ZM36,41h9v9H36Zm0,17h9v9H36ZM21,41h9v9H21Zm0,17h9v9H21Z'%3E%3C/path%3E%3Cpath class='cls-1' d='M54,87H14.25A8.55,8.55,0,0,1,6,78.19V26a3,3,0,0,0-6,0V78.19C0,86.36,6.39,93,14.25,93H54a3,3,0,0,0,0-6Z'%3E%3C/path%3E%3Cpath class='cls-1' d='M52,14a2,2,0,0,0,2-2V2a2,2,0,0,0-4,0V12A2,2,0,0,0,52,14Z'%3E%3C/path%3E%3Cpath class='cls-1' d='M60,10H57v2a5,5,0,0,1-10,0V10H33v2a5,5,0,0,1-10,0V10H20a8,8,0,0,0-8,8v9H68V18A8,8,0,0,0,60,10Z'%3E%3C/path%3E%3Cpath class='cls-1' d='M28,14a2,2,0,0,0,2-2V2a2,2,0,0,0-4,0V12A2,2,0,0,0,28,14Z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      background-size: contain;
      background-repeat: no-repeat;
      width: 40px;
      height: 40px;
      display: inline-block;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      left: 20px; }
  /* line 50, Resources/Private/Frontend/sass/partials/mod/_highlight.scss */
  .highlight a {
    color: #fff; }

/**
 * brandung intro.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2021-01-12
 * MIT License (MIT)
 */
/* ==========================================================================
   intro
   ========================================================================== */
/* line 18, Resources/Private/Frontend/sass/partials/mod/_intro.scss */
.intro {
  background: #fff;
  padding: 20px 30px 30px; }
  @media screen and (max-width: 61.999em) {
    /* line 18, Resources/Private/Frontend/sass/partials/mod/_intro.scss */
    .intro {
      padding: 20px 16px 30px; } }
  /* line 26, Resources/Private/Frontend/sass/partials/mod/_intro.scss */
  .intro .breadcrumb {
    font-size: 10px;
    padding: 0; }
  /* line 31, Resources/Private/Frontend/sass/partials/mod/_intro.scss */
  .intro .intro__headline {
    color: #0f2d64;
    font-size: 24px;
    margin: 15px 0 10px; }
  /* line 37, Resources/Private/Frontend/sass/partials/mod/_intro.scss */
  .intro .intro__text {
    font-size: 16px;
    line-height: 28px;
    margin: 0; }

/**
 * brandung sticky-banner.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2021-01-12
 * MIT License (MIT)
 */
/* ==========================================================================
   sticky-banner
   ========================================================================== */
/* line 18, Resources/Private/Frontend/sass/partials/mod/_sticky-banner.scss */
.sticky-banner {
  position: fixed;
  z-index: 9;
  bottom: 70px;
  left: 0;
  height: 70px;
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end; }
  @media screen and (max-width: 61.999em) {
    /* line 18, Resources/Private/Frontend/sass/partials/mod/_sticky-banner.scss */
    .sticky-banner {
      position: absolute;
      top: 165px;
      height: 50px;
      bottom: 0; } }
  @media screen and (max-width: 47.999em) {
    /* line 18, Resources/Private/Frontend/sass/partials/mod/_sticky-banner.scss */
    .sticky-banner {
      top: 75px; } }
  /* line 38, Resources/Private/Frontend/sass/partials/mod/_sticky-banner.scss */
  .sticky-banner .sticky-banner__container {
    display: inline;
    background: #0f2d64;
    color: #fff;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: auto;
    border-radius: 4px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.3px;
    margin-right: 40px; }
    @media screen and (max-width: 61.999em) {
      /* line 38, Resources/Private/Frontend/sass/partials/mod/_sticky-banner.scss */
      .sticky-banner .sticky-banner__container {
        font-size: 14px;
        letter-spacing: 0.2px;
        margin-right: 16px; } }
    /* line 58, Resources/Private/Frontend/sass/partials/mod/_sticky-banner.scss */
    .sticky-banner .sticky-banner__container a {
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      display: block;
      padding: 16px 40px 16px 16px; }
      /* line 65, Resources/Private/Frontend/sass/partials/mod/_sticky-banner.scss */
      .sticky-banner .sticky-banner__container a:after {
        content: "";
        position: absolute;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='17' viewBox='0 0 10 17'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFF' fill-rule='nonzero'%3E%3Cg%3E%3Cpath d='M283.9 28.264l-8.394-8.17c-.13-.126-.336-.125-.464.002l-.945.944c-.063.063-.098.147-.097.235 0 .088.037.173.1.234l7.205 6.991-7.205 6.991c-.063.061-.1.146-.1.234 0 .088.034.172.097.235l.946.944c.064.064.148.096.233.096.083 0 .166-.031.23-.094l8.394-8.17c.064-.062.1-.147.1-.236s-.036-.174-.1-.236z' transform='translate(-1001 -2040) translate(727 2020)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
        width: 12px;
        height: 20px;
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        right: 16px;
        background-size: contain; }

/**
 * brandung job-teaser.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2021-01-13
 * MIT License (MIT)
 */
/* ==========================================================================
   intro
   ========================================================================== */
/* line 18, Resources/Private/Frontend/sass/partials/mod/_job-teaser.scss */
.job-teaser {
  text-align: center;
  padding: 16px 0; }
  @media screen and (max-width: 61.999em) {
    /* line 18, Resources/Private/Frontend/sass/partials/mod/_job-teaser.scss */
    .job-teaser {
      padding: 0; } }
  /* line 26, Resources/Private/Frontend/sass/partials/mod/_job-teaser.scss */
  .job-teaser .job-teaser__headline {
    color: #0f2d64;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 32px; }
  /* line 33, Resources/Private/Frontend/sass/partials/mod/_job-teaser.scss */
  .job-teaser a {
    text-decoration: none; }
  /* line 37, Resources/Private/Frontend/sass/partials/mod/_job-teaser.scss */
  .job-teaser .job-teaser__item {
    text-align: left;
    background: #fff;
    display: block;
    padding: 16px 32px;
    margin-bottom: 12px; }
    @media screen and (max-width: 61.999em) {
      /* line 37, Resources/Private/Frontend/sass/partials/mod/_job-teaser.scss */
      .job-teaser .job-teaser__item {
        padding: 12px 40px 12px 12px; } }
    /* line 48, Resources/Private/Frontend/sass/partials/mod/_job-teaser.scss */
    .job-teaser .job-teaser__item:after {
      content: "";
      position: absolute;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='20' viewBox='0 0 12 20'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230F2D64' fill-rule='nonzero'%3E%3Cg%3E%3Cg%3E%3Cpath d='M976.512 59.723l-9.761-9.613c-.15-.148-.39-.147-.539.003l-1.1 1.11c-.072.074-.113.174-.112.277 0 .104.043.203.116.275L973.494 60l-8.378 8.225c-.073.072-.115.17-.116.275 0 .103.04.203.113.276l1.1 1.11c.074.076.172.114.27.114.097 0 .194-.037.268-.11l9.761-9.613c.074-.073.116-.173.116-.277 0-.104-.042-.204-.116-.277z' transform='translate(-1338 -1663) translate(373 1557) translate(0 56)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
      width: 12px;
      height: 20px;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      right: 16px;
      background-size: contain;
      background-repeat: no-repeat; }
    /* line 61, Resources/Private/Frontend/sass/partials/mod/_job-teaser.scss */
    .job-teaser .job-teaser__item .job-teaser__job {
      text-align: left;
      color: #0f2d64;
      font-size: 18px;
      line-height: 25px;
      font-weight: bolder; }
      @media screen and (max-width: 61.999em) {
        /* line 61, Resources/Private/Frontend/sass/partials/mod/_job-teaser.scss */
        .job-teaser .job-teaser__item .job-teaser__job {
          font-size: 18px;
          line-height: 25px; } }
    /* line 74, Resources/Private/Frontend/sass/partials/mod/_job-teaser.scss */
    .job-teaser .job-teaser__item .job-teaser__description {
      color: #333333;
      margin: 8px 0; }
  /* line 80, Resources/Private/Frontend/sass/partials/mod/_job-teaser.scss */
  .job-teaser .job-teaser__cta {
    display: inline-block;
    background: #0f2d64;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    letter-spacing: 0.3px;
    padding: 16px 40px 16px 16px;
    margin-top: 32px; }
    /* line 92, Resources/Private/Frontend/sass/partials/mod/_job-teaser.scss */
    .job-teaser .job-teaser__cta:after {
      content: "";
      position: absolute;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='17' viewBox='0 0 10 17'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFF' fill-rule='nonzero'%3E%3Cg%3E%3Cpath d='M283.9 28.264l-8.394-8.17c-.13-.126-.336-.125-.464.002l-.945.944c-.063.063-.098.147-.097.235 0 .088.037.173.1.234l7.205 6.991-7.205 6.991c-.063.061-.1.146-.1.234 0 .088.034.172.097.235l.946.944c.064.064.148.096.233.096.083 0 .166-.031.23-.094l8.394-8.17c.064-.062.1-.147.1-.236s-.036-.174-.1-.236z' transform='translate(-1001 -2040) translate(727 2020)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
      width: 12px;
      height: 20px;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      right: 16px;
      background-size: contain; }

/**
 * brandung icons-career.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2021-01-13
 * MIT License (MIT)
 */
/* ==========================================================================
   intro
   ========================================================================== */
/* line 18, Resources/Private/Frontend/sass/partials/mod/_icons-career.scss */
.icons-career {
  text-align: center;
  padding: 16px 0; }
  @media screen and (max-width: 61.999em) {
    /* line 18, Resources/Private/Frontend/sass/partials/mod/_icons-career.scss */
    .icons-career {
      padding: 0; } }
  /* line 26, Resources/Private/Frontend/sass/partials/mod/_icons-career.scss */
  .icons-career .icons-career__headline {
    color: #0f2d64;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 32px; }
  /* line 33, Resources/Private/Frontend/sass/partials/mod/_icons-career.scss */
  .icons-career a {
    text-decoration: none; }
  /* line 38, Resources/Private/Frontend/sass/partials/mod/_icons-career.scss */
  .icons-career .icons-career__inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
  /* line 44, Resources/Private/Frontend/sass/partials/mod/_icons-career.scss */
  .icons-career .icons-career__item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-flex-basis: 33%;
        -ms-flex-preferred-size: 33%;
            flex-basis: 33%;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    @media screen and (max-width: 61.999em) {
      /* line 44, Resources/Private/Frontend/sass/partials/mod/_icons-career.scss */
      .icons-career .icons-career__item {
        -webkit-flex-basis: 50%;
            -ms-flex-preferred-size: 50%;
                flex-basis: 50%;
        margin-top: 24px; } }
    /* line 55, Resources/Private/Frontend/sass/partials/mod/_icons-career.scss */
    .icons-career .icons-career__item a {
      -webkit-align-self: center;
          -ms-flex-item-align: center;
                  -ms-grid-row-align: center;
              align-self: center; }
  /* line 60, Resources/Private/Frontend/sass/partials/mod/_icons-career.scss */
  .icons-career .icons-career__text {
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 32px; }
  /* line 67, Resources/Private/Frontend/sass/partials/mod/_icons-career.scss */
  .icons-career .icons-career__image-wrapper {
    max-width: 100px;
    min-width: 100px;
    max-height: 100px;
    min-height: 100px;
    margin: 0 auto 32px;
    padding: 24px;
    object-fit: none;
    position: relative;
    background: #46afb4;
    border-radius: 50%; }
  /* line 80, Resources/Private/Frontend/sass/partials/mod/_icons-career.scss */
  .icons-career .icons-career__image {
    width: 50px;
    height: 50px;
    object-fit: contain; }

/**
 * brandung job-categories.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2021-01-13
 * MIT License (MIT)
 */
/* ==========================================================================
   intro
   ========================================================================== */
/* line 18, Resources/Private/Frontend/sass/partials/mod/_job-categories.scss */
.job-categories {
  text-align: center;
  padding: 16px 0; }
  @media screen and (max-width: 61.999em) {
    /* line 18, Resources/Private/Frontend/sass/partials/mod/_job-categories.scss */
    .job-categories {
      padding: 0; } }
  /* line 26, Resources/Private/Frontend/sass/partials/mod/_job-categories.scss */
  .job-categories .job-categories__headline {
    color: #0f2d64;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 32px; }
  /* line 33, Resources/Private/Frontend/sass/partials/mod/_job-categories.scss */
  .job-categories .job-categories__text {
    margin-bottom: 24px; }
  /* line 37, Resources/Private/Frontend/sass/partials/mod/_job-categories.scss */
  .job-categories a {
    text-decoration: none; }
  /* line 41, Resources/Private/Frontend/sass/partials/mod/_job-categories.scss */
  .job-categories .job-categories__wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
  /* line 49, Resources/Private/Frontend/sass/partials/mod/_job-categories.scss */
  .job-categories .job-categories__item {
    text-align: left;
    background: #fff;
    display: block;
    padding: 16px 32px;
    margin-bottom: 12px;
    -webkit-flex-basis: calc(50% - 20px);
        -ms-flex-preferred-size: calc(50% - 20px);
            flex-basis: calc(50% - 20px); }
    /* line 57, Resources/Private/Frontend/sass/partials/mod/_job-categories.scss */
    .job-categories .job-categories__item:nth-child(odd) {
      margin-right: 40px; }
      @media screen and (max-width: 61.999em) {
        /* line 57, Resources/Private/Frontend/sass/partials/mod/_job-categories.scss */
        .job-categories .job-categories__item:nth-child(odd) {
          margin-right: 0; } }
    @media screen and (max-width: 61.999em) {
      /* line 49, Resources/Private/Frontend/sass/partials/mod/_job-categories.scss */
      .job-categories .job-categories__item {
        -webkit-flex-basis: 100%;
            -ms-flex-preferred-size: 100%;
                flex-basis: 100%;
        display: block;
        padding: 16px; } }
    /* line 71, Resources/Private/Frontend/sass/partials/mod/_job-categories.scss */
    .job-categories .job-categories__item:after {
      content: "";
      position: absolute;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='20' viewBox='0 0 12 20'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230F2D64' fill-rule='nonzero'%3E%3Cg%3E%3Cg%3E%3Cpath d='M976.512 59.723l-9.761-9.613c-.15-.148-.39-.147-.539.003l-1.1 1.11c-.072.074-.113.174-.112.277 0 .104.043.203.116.275L973.494 60l-8.378 8.225c-.073.072-.115.17-.116.275 0 .103.04.203.113.276l1.1 1.11c.074.076.172.114.27.114.097 0 .194-.037.268-.11l9.761-9.613c.074-.073.116-.173.116-.277 0-.104-.042-.204-.116-.277z' transform='translate(-1338 -1663) translate(373 1557) translate(0 56)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
      width: 12px;
      height: 20px;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      right: 16px;
      background-size: contain; }
    /* line 83, Resources/Private/Frontend/sass/partials/mod/_job-categories.scss */
    .job-categories .job-categories__item .job-categories__category {
      text-align: left;
      color: #0f2d64;
      font-size: 18px;
      line-height: 25px;
      font-weight: bolder; }

/**
 * brandung video-gallery.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2021-01-14
 * MIT License (MIT)
 */
/* ==========================================================================
   intro
   ========================================================================== */
/* line 18, Resources/Private/Frontend/sass/partials/mod/_video-gallery.scss */
.video-gallery {
  text-align: center;
  padding: 16px 32px 32px; }
  @media screen and (max-width: 61.999em) {
    /* line 18, Resources/Private/Frontend/sass/partials/mod/_video-gallery.scss */
    .video-gallery {
      padding: 0; } }
  @media screen and (max-width: 47.999em) {
    /* line 18, Resources/Private/Frontend/sass/partials/mod/_video-gallery.scss */
    .video-gallery {
      padding-bottom: 40px; } }
  /* line 30, Resources/Private/Frontend/sass/partials/mod/_video-gallery.scss */
  .video-gallery:after {
    content: '';
    position: absolute;
    display: block;
    right: 0;
    left: 0;
    bottom: 0;
    top: 25%;
    background-color: #fff;
    z-index: -1; }
    @media screen and (max-width: 47.999em) {
      /* line 30, Resources/Private/Frontend/sass/partials/mod/_video-gallery.scss */
      .video-gallery:after {
        right: -10px;
        left: -10px; } }
  /* line 47, Resources/Private/Frontend/sass/partials/mod/_video-gallery.scss */
  .video-gallery .video-gallery__headline {
    color: #0f2d64;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 32px; }
  /* line 54, Resources/Private/Frontend/sass/partials/mod/_video-gallery.scss */
  .video-gallery .video-gallery__subline {
    color: #0f2d64;
    font-size: 18px;
    line-height: 25px;
    font-weight: bolder; }
  /* line 61, Resources/Private/Frontend/sass/partials/mod/_video-gallery.scss */
  .video-gallery .video-gallery__text {
    text-align: center;
    color: #333333; }
  /* line 66, Resources/Private/Frontend/sass/partials/mod/_video-gallery.scss */
  .video-gallery .video-gallery__item {
    padding: 0 112px;
    margin-bottom: 24px; }
    @media screen and (max-width: 47.999em) {
      /* line 66, Resources/Private/Frontend/sass/partials/mod/_video-gallery.scss */
      .video-gallery .video-gallery__item {
        padding: 0; } }
  /* line 75, Resources/Private/Frontend/sass/partials/mod/_video-gallery.scss */
  .video-gallery .video-container {
    margin-bottom: 24px; }
  /* line 81, Resources/Private/Frontend/sass/partials/mod/_video-gallery.scss */
  .video-gallery .video-container__video:after {
    color: #fff;
    background: #0f2d64 !important;
    box-shadow: none; }
  /* line 88, Resources/Private/Frontend/sass/partials/mod/_video-gallery.scss */
  .video-gallery .video-container__video:hover .video-container__video::before {
    display: none; }
  /* line 94, Resources/Private/Frontend/sass/partials/mod/_video-gallery.scss */
  .video-gallery .slick-slider__pagination {
    position: absolute;
    right: 112px;
    font-weight: bold;
    color: #333333;
    background: transparent; }
    @media screen and (max-width: 47.999em) {
      /* line 94, Resources/Private/Frontend/sass/partials/mod/_video-gallery.scss */
      .video-gallery .slick-slider__pagination {
        position: relative;
        right: initial; } }
  /* line 107, Resources/Private/Frontend/sass/partials/mod/_video-gallery.scss */
  .video-gallery .slick-slider__item {
    cursor: pointer; }
  /* line 111, Resources/Private/Frontend/sass/partials/mod/_video-gallery.scss */
  .video-gallery .video-gallery__thumbs-headline {
    color: #0f2d64;
    font-size: 18px;
    line-height: 25px;
    display: block;
    font-weight: bolder;
    text-align: left;
    margin-left: 40px; }
    @media screen and (max-width: 47.999em) {
      /* line 111, Resources/Private/Frontend/sass/partials/mod/_video-gallery.scss */
      .video-gallery .video-gallery__thumbs-headline {
        margin-left: 0; } }
  /* line 128, Resources/Private/Frontend/sass/partials/mod/_video-gallery.scss */
  .video-gallery .slick-slider--thumbs .slick-prev,
  .video-gallery .slick-slider--thumbs .slick-next {
    background: #0f2d64;
    width: 40px;
    height: 40px; }
  /* line 135, Resources/Private/Frontend/sass/partials/mod/_video-gallery.scss */
  .video-gallery .slick-slider--thumbs .slick-prev {
    left: 25px;
    padding-left: 0; }
    @media screen and (max-width: 47.999em) {
      /* line 135, Resources/Private/Frontend/sass/partials/mod/_video-gallery.scss */
      .video-gallery .slick-slider--thumbs .slick-prev {
        left: 0; } }
  /* line 144, Resources/Private/Frontend/sass/partials/mod/_video-gallery.scss */
  .video-gallery .slick-slider--thumbs .slick-next {
    right: 25px;
    padding-right: 0; }
    @media screen and (max-width: 47.999em) {
      /* line 144, Resources/Private/Frontend/sass/partials/mod/_video-gallery.scss */
      .video-gallery .slick-slider--thumbs .slick-next {
        right: 0; } }
  /* line 153, Resources/Private/Frontend/sass/partials/mod/_video-gallery.scss */
  .video-gallery .slick-slider--thumbs .slick-prev::before,
  .video-gallery .slick-slider--thumbs .slick-next::before {
    color: #fff; }
  /* line 159, Resources/Private/Frontend/sass/partials/mod/_video-gallery.scss */
  .video-gallery .slick-prev::before,
  .video-gallery .slick-next::before {
    color: #fff; }
/*# sourceMappingURL=main.css.map */