/**
 * 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 */
/* Scaffolding */
/* Links */
/*=================== Prostata-Variables =======================================*/
/* Body font size */
/* Colors */
/* Scaffolding */
/* Links */
/* retina sprites */
/**/
/**
 * brandung mixins.scss v2.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Mixins
   ========================================================================== */
/*
 * icon-after mixin
 *
 * @desc creates an icon in the after-pseudoclass
 *
 * $iconname = icon-file name for retina-srpite mixin
 *
 */
/*
 * icon-after mixin
 *
 * @desc creates an icon in the before-pseudoclass
 *
 * $iconname = icon-file name for retina-srpite mixin
 *
 */
/**
 * 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
 *
 */
/*@mixin fontSizeEM($targetSize) {
	font-size: $targetSize + px;
	font-size: $targetSize/$bodyFontSizePX + em;
	line-height: 1.3em;
}*/
/**
 * Calculates given px value to rem value
 *
 * @param {string} $prop - css property name, e.g. font-size, line-height; Default: 'font-size'
 * @param {number} $size - size in px; Default: $body-font-size-px
 *
 */
/**
* Mixin for adding vendor prefixes to CSS attributes; useful for the following CSS attributes
*
* - border-radius
* - box-shadow
* - transition
* - transform
* - background-size
* - box-sizing
* - animate
*
* @param {string} $attribute - CSS attribute that needs vendor prefixes, e.g. border-radius or transition
* @param {string} $value - The specific CSS value, e.g. "translateX .2s ease-out"
*/
/**
* Mixin for adding svg background image + png fallback
*
* - add png fallback for older browser
*
* @param {string} $name - image name
* @param {string} $extension - file extension + folder
* @param {string} $color - background-color
* @param {number} $position - background position
* @param {string} $repeat - background repeat
*
* @reauire $old-ie variable from _sass-ie.scss
*
* Use:
* @include svg-bg('logo')
* @include svg-bg('logo', $color: #fff, ...);
*
*/
/**
* Clearfix
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
*     contenteditable attribute is included anywhere else in the document.
*     Otherwise it causes space to appear at the top and bottom of elements
*     that are clearfixed.
* 2. The use of `table` rather than `block` is only necessary if using
*     `:before` to contain the top-margins of child elements.
*
* Source: http://nicolasgallagher.com/micro-clearfix-hack/
*/
/**
* Grid mixins
*
* Generate semantic grid columns with these mixins.
* based on the bootstrap-sass partial
*/
/**
 * normalize
 * https://github.com/necolas/normalize.css
 */
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
@import url(../../../Public/js/libs/flexslider/flexslider.css);
@import url(../../../Public/js/libs/fancybox/jquery.fancybox.css);
/* line 9, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_normalize.scss */
a {
  background: transparent; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
/* line 95, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_normalize.scss */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
/* line 124, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_normalize.scss */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
/* line 151, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_normalize.scss */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
/* line 159, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

/* line 167, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_normalize.scss */
sup {
  top: -0.5em; }

/* line 171, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_normalize.scss */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
/* line 190, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_normalize.scss */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
/* line 209, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_normalize.scss */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
/* line 219, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_normalize.scss */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
/* line 227, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
/* line 309, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
/* line 368, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_normalize.scss */
optgroup {
  font-weight: bold; }

/* Tables
========================================================================== */
/**
 * Remove most spacing between table cells.
 */
/* line 417, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0; }

/* line 422, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_h5bp.scss */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none; }

/* line 30, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_h5bp.scss */
::selection {
  background: #b3d4fc;
  text-shadow: none; }

/*
 * A better looking default horizontal rule
 */
/* line 39, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_h5bp.scss */
audio,
canvas,
img,
svg,
video {
  vertical-align: middle; }

/*
 * Remove default fieldset styles.
 */
/* line 65, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_h5bp.scss */
fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

/*
 * Allow only vertical resizing of textareas.
 */
/* line 75, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_h5bp.scss */
textarea {
  resize: vertical; }

/* ==========================================================================
   Browse Happy prompt
   ========================================================================== */
/* line 83, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_h5bp.scss */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

/* line 180, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_h5bp.scss */
.clearfix:after {
  clear: both; }

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request: h5bp.com/r
   ========================================================================== */
@media print {
  /* line 207, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_h5bp.scss */
  a,
  a:visited {
    text-decoration: underline; }
  /* line 219, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_h5bp.scss */
  a[href]:after {
    content: " (" attr(href) ")"; }
  /* line 223, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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 232, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_h5bp.scss */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }
  /* line 237, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_h5bp.scss */
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  /* line 243, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_h5bp.scss */
  thead {
    display: table-header-group;
    /* h5bp.com/t */ }
  /* line 247, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_h5bp.scss */
  tr,
  img {
    page-break-inside: avoid; }
  /* line 252, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_h5bp.scss */
  img {
    max-width: 100% !important; }
  /* line 256, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_h5bp.scss */
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  /* line 263, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/vendor/_h5bp.scss */
  h2,
  h3 {
    page-break-after: avoid; } }

/**
 * 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
 */
/**
 * brandung Gmbh & Co. KG
 *
 * scss layout
 * @require vendor/gridset
 *
 * @author Simon Kemmerling
 * @version 1.0
 * @date 01.07.2013
 */
/* global */
/* line 13, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
body {
  background: #fff;
  color: #555;
  font-size: 75%;
  line-height: 1.5em;
  position: relative; }

/* line 21, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
img {
  height: auto;
  outline: 0;
  max-width: 100%; }

/* noscript */
/* line 28, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
noscript {
  color: #fff;
  margin: 0.2em 0;
  background: #3d87b4;
  padding: 0.2em 0;
  text-align: center; }
/* line 35, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
noscript p {
  margin: 0 auto;
  max-width: 980px; }

/* background */
/* line 42, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
html {
  background: url("../img/produktwelten/bg-pattern.jpg") 0 0; }

/* line 45, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
body {
  background: url("../img/produktwelten/bg-pattern-2.jpg") 0 0 repeat-x; }

/* wrapper */
/* line 50, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
.wrapper_margins {
  margin: 0 auto;
  width: 980px;
  position: relative; }

/* line 56, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
.wrapper {
  width: auto; }

/* hiddenNav */
/* line 61, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
#hiddenNav {
  position: absolute;
  margin-left: -1000px; }

/* line 66, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
#container {
  background: #fff;
  margin-bottom: 40px; }

/* line 71, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
#homepage #container {
  background: transparent; }

/* ==========================================================================
   Base Columns
   ========================================================================== */
/* Base Columns */
/* line 81, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
.col-left {
  float: left;
  width: 220px;
  padding: 20px;
  margin: 0 0 0; }

/* line 87, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
.col-main {
  float: left;
  width: 700px;
  padding: 20px; }

/* line 92, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
.col-right {
  float: right;
  width: 220px;
  padding: 20px;
  margin: 0 0 0; }

/* 1 Column layout */
/* line 100, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
.col1-layout .col-main {
  float: none;
  width: auto;
  padding: 0; }

/* 2 Columns Layout */
/* line 108, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
.col2-left-layout .col-main {
  float: right;
  padding-left: 0; }

/* line 112, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
.col2-left-layout .col-left {
  padding-right: 0; }

/* line 117, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
.col2-right-layout .col-main {
  padding-right: 0; }

/* line 120, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
.col2-right-layout .col-right {
  padding-left: 0; }

/* Content Columns */
/* line 126, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
.col2-set .col-1 {
  float: left;
  width: 48.5%; }

/* line 130, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
.col2-set .col-2 {
  float: right;
  width: 48.5%; }

/* line 134, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
.col2-set .narrow {
  width: 32%; }

/* line 137, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
.col2-set .wide {
  width: 66.1%; }

/* line 141, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
.col2-left-layout .col2-set .narrow {
  width: 32%; }

/* line 144, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
.col2-left-layout .col2-set .wide {
  width: 65.2%; }

/* line 148, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
.col3-set .col-1 {
  float: left;
  width: 32%; }

/* line 152, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
.col3-set .col-2 {
  float: left;
  width: 32%;
  margin-left: 2.2%; }

/* line 157, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
.col3-set .col-3 {
  float: right;
  width: 32%; }

/* line 162, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
.col2-left-layout .col3-set .col-1,
.col2-left-layout .col3-set .col-2,
.col2-left-layout .col3-set .col-3 {
  width: 31.5%; }

/* line 167, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
.col2-left-layout .col3-set .col-2 {
  margin-left: 2.9%; }

/* clearfix */
/* line 173, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_layout.scss */
.col1-layout:after,
.col2-left-layout:after,
.col2-right-layout:after,
.col2-set:after,
.col3-set:after {
  display: block;
  content: ".";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden; }

/**
 * brandung grid.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Grid
   ========================================================================== */
/* line 20, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_grid.scss */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  min-width: 20em;
  max-width: 75em; }
/* line 183, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
.container:before, .container:after {
  content: " ";
  display: table; }
/* line 188, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
.container:after {
  clear: both; }

/* line 29, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_grid.scss */
.row {
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 15px; }
/* line 183, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
.row:before, .row:after {
  content: " ";
  display: table; }
/* line 188, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
.row:after {
  clear: both; }

/* line 221, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-1, .col-s-1, .col-m-1, .col-l-1, .col-xl-1, .col-xs-2, .col-s-2, .col-m-2, .col-l-2, .col-xl-2, .col-xs-3, .col-s-3, .col-m-3, .col-l-3, .col-xl-3, .col-xs-4, .col-s-4, .col-m-4, .col-l-4, .col-xl-4, .col-xs-5, .col-s-5, .col-m-5, .col-l-5, .col-xl-5, .col-xs-6, .col-s-6, .col-m-6, .col-l-6, .col-xl-6, .col-xs-7, .col-s-7, .col-m-7, .col-l-7, .col-xl-7, .col-xs-8, .col-s-8, .col-m-8, .col-l-8, .col-xl-8, .col-xs-9, .col-s-9, .col-m-9, .col-l-9, .col-xl-9, .col-xs-10, .col-s-10, .col-m-10, .col-l-10, .col-xl-10, .col-xs-11, .col-s-11, .col-m-11, .col-l-11, .col-xl-11, .col-xs-12, .col-s-12, .col-m-12, .col-l-12, .col-xl-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }

/* line 236, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left; }

/* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-1 {
  width: 8.3333333333%; }

/* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-2 {
  width: 16.6666666667%; }

/* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-3 {
  width: 25%; }

/* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-4 {
  width: 33.3333333333%; }

/* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-5 {
  width: 41.6666666667%; }

/* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-6 {
  width: 50%; }

/* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-7 {
  width: 58.3333333333%; }

/* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-8 {
  width: 66.6666666667%; }

/* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-9 {
  width: 75%; }

/* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-10 {
  width: 83.3333333333%; }

/* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-11 {
  width: 91.6666666667%; }

/* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
.col-xs-12 {
  width: 100%; }

@media screen and (min-width: 30em) {
  /* line 236, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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, .col-s-7, .col-s-8, .col-s-9, .col-s-10, .col-s-11, .col-s-12 {
    float: left; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-1 {
    width: 8.3333333333%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-2 {
    width: 16.6666666667%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-3 {
    width: 25%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-4 {
    width: 33.3333333333%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-5 {
    width: 41.6666666667%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-6 {
    width: 50%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-7 {
    width: 58.3333333333%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-8 {
    width: 66.6666666667%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-9 {
    width: 75%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-10 {
    width: 83.3333333333%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-11 {
    width: 91.6666666667%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-s-12 {
    width: 100%; } }

@media screen and (min-width: 48em) {
  /* line 236, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-1, .col-m-2, .col-m-3, .col-m-4, .col-m-5, .col-m-6, .col-m-7, .col-m-8, .col-m-9, .col-m-10, .col-m-11, .col-m-12 {
    float: left; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-1 {
    width: 8.3333333333%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-2 {
    width: 16.6666666667%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-3 {
    width: 25%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-4 {
    width: 33.3333333333%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-5 {
    width: 41.6666666667%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-6 {
    width: 50%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-7 {
    width: 58.3333333333%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-8 {
    width: 66.6666666667%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-9 {
    width: 75%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-10 {
    width: 83.3333333333%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-11 {
    width: 91.6666666667%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-m-12 {
    width: 100%; } }

@media screen and (min-width: 62em) {
  /* line 236, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-1, .col-l-2, .col-l-3, .col-l-4, .col-l-5, .col-l-6, .col-l-7, .col-l-8, .col-l-9, .col-l-10, .col-l-11, .col-l-12 {
    float: left; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-1 {
    width: 8.3333333333%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-2 {
    width: 16.6666666667%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-3 {
    width: 25%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-4 {
    width: 33.3333333333%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-5 {
    width: 41.6666666667%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-6 {
    width: 50%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-7 {
    width: 58.3333333333%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-8 {
    width: 66.6666666667%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-9 {
    width: 75%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-10 {
    width: 83.3333333333%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-11 {
    width: 91.6666666667%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-l-12 {
    width: 100%; } }

@media screen and (min-width: 75em) {
  /* line 236, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-1 {
    width: 8.3333333333%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-2 {
    width: 16.6666666667%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-3 {
    width: 25%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-4 {
    width: 33.3333333333%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-5 {
    width: 41.6666666667%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-6 {
    width: 50%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-7 {
    width: 58.3333333333%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-8 {
    width: 66.6666666667%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-9 {
    width: 75%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-10 {
    width: 83.3333333333%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-11 {
    width: 91.6666666667%; }
  /* line 250, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_mixins.scss */
  .col-xl-12 {
    width: 100%; } }

/**
 * brandung sprite-icons.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-03-14
 * MIT License (MIT)
 */
/* ==========================================================================
   Sprites
   ========================================================================== */
/**
 * brandung Gmbh & Co. KG
 *
 * scss typo
 *
 * @author Simon Kemmerling
 * @version 1.0
 * @date 01.07.2013
 */
/*	header
========================================================================== */
/* line 15, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_typo.scss */
body {
  font-family: Verdana, sans-serif; }

/* line 20, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_typo.scss */
#meta ul a,
.contact-box > p {
  font-family: Arial, sans-serif; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	helpers
========================================================================== */
/* line 8, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_helpers.scss */
.unstyled {
  margin: 0;
  padding: 0;
  list-style: none; }

/* line 14, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_helpers.scss */
.left {
  display: inline;
  float: left; }

/* line 19, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_helpers.scss */
.right {
  display: inline;
  float: right; }

/* line 24, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_helpers.scss */
.center {
  display: block;
  margin: 0 auto;
  text-align: center; }

/* line 30, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_helpers.scss */
.clear {
  clear: both; }

/* line 34, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_helpers.scss */
.textRight {
  text-align: right; }

/* line 38, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_helpers.scss */
.textLeft {
  text-align: left; }

/* line 42, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_helpers.scss */
.imgRight {
  float: right;
  margin: 0 0 15px 15px; }

/* line 47, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_helpers.scss */
.imgLeft {
  float: left;
  margin: 0 15px 15px 0; }

/* line 52, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_helpers.scss */
.textCenter {
  text-align: center; }

/**
 * brandung buttons.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-03-14
 * MIT License (MIT)
 */
/* ==========================================================================
   Buttons
   ========================================================================== */
/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	header
========================================================================== */
/* line 8, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_header.scss */
header {
  -webkit-box-shadow: 0px -5px 10px #ccc;
  -moz-box-shadow: 0px -5px 10px #ccc;
  -o-box-shadow: 0px -5px 10px #ccc;
  -ms-box-shadow: 0px -5px 10px #ccc;
  box-shadow: 0px -5px 10px #ccc;
  background: #fff;
  position: relative;
  z-index: 1;
  padding-top: 14px; }
/* line 16, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_header.scss */
header .logo {
  margin: 0 0 30px 20px; }
/* line 19, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_header.scss */
header .logo a {
  display: block;
  width: 245px;
  height: 77px;
  background: url("../img/produktwelten/logo.png") no-repeat 0 0;
  text-indent: -999em; }
/* line 28, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_header.scss */
header a {
  font-size: 11px;
  font-size: 0.6875rem; }

/* contact-box */
/* line 35, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_header.scss */
.contact-box {
  padding-top: 10px;
  margin-top: 15px;
  border-top: solid 1px #ccc; }
/* line 40, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_header.scss */
.contact-box > p {
  float: left;
  color: #666;
  margin: 0; }
/* line 46, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_header.scss */
.contact-box .contact-link {
  float: right;
  margin-left: 0; }

/* line 51, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_header.scss */
.contact-link {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #3d87b4;
  text-decoration: none; }
/* line 57, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_header.scss */
.contact-link:after {
  background: url("../img/produktwelten/icons/arrow-blue-right.png") no-repeat -10px;
  width: 20px;
  height: 20px;
  content: '';
  display: block;
  float: left; }
/* line 66, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_header.scss */
.contact-link:visited {
  color: #3d87b4; }
/* line 70, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_header.scss */
.contact-link:hover {
  text-decoration: underline; }

/* header search */
/* line 77, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_header.scss */
#fmSearch {
  padding-left: 10px; }
/* line 80, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_header.scss */
#fmSearch label {
  float: left;
  margin-right: 5px; }
/* line 85, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_header.scss */
#fmSearch input[type="text"] {
  width: 180px;
  padding: 4px; }
/* line 90, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_header.scss */
#fmSearch input[type=image] {
  border-left: none;
  padding: 0; }
/* line 95, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_header.scss */
#fmSearch input {
  font-size: 11px;
  font-size: 0.6875rem;
  border: 1px solid #ccc;
  border-right: none;
  float: left;
  background: #fff;
  margin-top: -4px; }

/* meta */
/* line 108, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_header.scss */
#meta {
  position: absolute;
  top: 20px;
  right: 20px;
  float: right; }
/* line 114, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_header.scss */
#meta > ul {
  margin: 0;
  padding: 0;
  list-style: none; }
/* line 119, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_header.scss */
#meta > ul > li {
  float: left;
  margin-left: 10px; }
/* line 123, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_header.scss */
#meta > ul > li:first-child {
  margin-left: 0; }
/* line 127, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_header.scss */
#meta > ul > li.right {
  float: right; }
/* line 132, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_header.scss */
#meta > ul a {
  color: #666;
  text-decoration: none;
  display: inline-block; }
/* line 137, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_header.scss */
#meta > ul a:hover {
  color: #3d87b4; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	footer
========================================================================== */
/* line 9, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_footer.scss */
footer {
  background: #fff;
  padding: 20px;
  /* footer link hover */ }
/* line 13, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_footer.scss */
footer section {
  float: left;
  width: 520px;
  margin-right: 20px; }
/* line 18, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_footer.scss */
footer section .footer-logo {
  position: relative;
  height: 71px;
  overflow: hidden;
  margin: 0 0 15px 0;
  width: auto !important; }
/* line 27, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_footer.scss */
footer address {
  float: left;
  font-style: normal; }
/* line 32, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_footer.scss */
footer ul {
  width: 180px;
  padding: 0;
  list-style: none;
  float: left; }
/* line 38, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_footer.scss */
footer ul.last {
  margin-right: 0; }
/* line 42, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_footer.scss */
footer ul li {
  border-bottom: 1px solid #ccc; }
/* line 45, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_footer.scss */
footer ul li strong {
  font-size: 12px;
  font-size: 0.75rem;
  color: #333; }
/* line 51, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_footer.scss */
footer ul li:first-child {
  border-top: none; }
/* line 56, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_footer.scss */
footer ul a,
footer ul strong {
  display: block;
  color: #666;
  padding: 3px 0;
  text-decoration: none; }
/* line 66, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_footer.scss */
footer .footerList {
  float: right;
  width: 440px;
  margin-right: -40px; }
/* line 71, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_footer.scss */
footer .footerList ul {
  margin-right: 40px; }
/* line 74, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_footer.scss */
footer .footerList ul li {
  font-size: 11px;
  font-size: 0.6875rem; }
/* line 77, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_footer.scss */
footer .footerList ul li strong {
  margin-top: 20px; }
/* line 82, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_footer.scss */
footer .footerList ul li:first-child strong {
  margin-top: 0; }
/* line 88, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_footer.scss */
footer .footerList ul:first-child {
  margin-left: 0; }
/* line 93, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_footer.scss */
footer .footerList a,
footer .footerList a:visited {
  color: #666; }
/* line 99, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_footer.scss */
footer .copyright {
  clear: both;
  border-top: 1px solid #ccc;
  margin: 0;
  padding-top: 10px; }
/* line 105, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_footer.scss */
footer .copyright a {
  color: #666;
  text-decoration: none;
  float: right;
  display: block;
  margin-left: 12px; }
/* line 112, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_footer.scss */
footer .copyright a:before {
  margin-right: 3px; }
/* line 119, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_footer.scss */
footer a:hover {
  color: #3d87b4; }

/**
* 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, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/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 SCSS v1.0
 *
 * Copyright 2014, brandung GmbH & Co.KG
 * http://www.agentur-brandung.com
 *
 */
/* imports
========================================================================== */
/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	flexslider reset
========================================================================== */
/* line 8, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/plugins/_flexslider-reset.scss */
.flexslider {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
  background: none;
  border: none;
  margin: 0; }
/* line 17, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/plugins/_flexslider-reset.scss */
.flexslider .flex-direction-nav li {
  margin: 0; }
/* line 21, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/plugins/_flexslider-reset.scss */
.flexslider .flex-direction-nav a {
  transition: none;
  -webkit-transition: none;
  opacity: 1; }
/* line 26, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/plugins/_flexslider-reset.scss */
.flexslider .flex-direction-nav a.flex-next {
  right: 0; }
/* line 30, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/plugins/_flexslider-reset.scss */
.flexslider .flex-direction-nav a.flex-prev {
  left: 0; }
/* line 37, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/plugins/_flexslider-reset.scss */
.flexslider:hover .flex-direction-nav a {
  opacity: 1; }
/* line 44, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/plugins/_flexslider-reset.scss */
.flexslider .slides img {
  width: auto; }
/* line 48, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/plugins/_flexslider-reset.scss */
.flexslider .slides li {
  background: none;
  margin: 0;
  padding: 0; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	text-elements
========================================================================== */
/* line 8, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_text-elements.scss */
a {
  color: #3d87b4; }

/* line 12, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_text-elements.scss */
h1, h2, h3, h4, h5, h6, p {
  margin-top: 0; }

/* line 16, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_text-elements.scss */
table {
  width: 100%; }

/* line 20, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_text-elements.scss */
.col-main {
  /* headlines */
  /* link */
  /* list */
  /* headblock */ }
/* line 22, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_text-elements.scss */
.col-main h1, .col-main h2, .col-main h3, .col-main h4, .col-main h5, .col-main h6, .col-main p {
  font-weight: normal;
  margin-bottom: 25px; }
/* line 27, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_text-elements.scss */
.col-main h1,
.col-main h2 {
  font-size: 24px;
  font-size: 1.5rem; }
/* line 31, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_text-elements.scss */
.col-main h3 {
  font-size: 18px;
  font-size: 1.125rem; }
/* line 34, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_text-elements.scss */
.col-main h4 {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold; }
/* line 38, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_text-elements.scss */
.col-main h5 {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold; }
/* line 42, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_text-elements.scss */
.col-main h6 {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold; }
/* line 48, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_text-elements.scss */
.col-main a:visited {
  color: #3d87b4; }
/* line 53, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_text-elements.scss */
.col-main ul {
  padding: 0;
  list-style: none; }
/* line 57, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_text-elements.scss */
.col-main ul li {
  background: url("../img/produktwelten/list-item.png") no-repeat 0 6px;
  padding-left: 15px;
  margin-bottom: 10px; }
/* line 63, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_text-elements.scss */
.col-main ul.listPage {
  margin: 0; }
/* line 66, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_text-elements.scss */
.col-main ul.listPage li {
  margin-bottom: 15px; }
/* line 73, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_text-elements.scss */
.col-main .headerBlock {
  font-size: 13px;
  font-size: 0.8125rem;
  background: #768991;
  font-weight: bold;
  color: #fff;
  margin: 0;
  position: relative;
  padding: 8px 12px; }

/* headline in sidebar */
/* line 88, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_text-elements.scss */
.col-left h2,
.col-right h2 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  color: #3d87b4;
  margin-bottom: 20px; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	full-width slider
========================================================================== */
/* back link */
/* line 11, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_buttons.scss */
.news-backlink-wrap {
  margin-bottom: 15px; }
/* line 14, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_buttons.scss */
.news-backlink-wrap a {
  padding-left: 20px !important; }
/* line 18, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_buttons.scss */
.news-backlink-wrap a:before {
  background: url("../img/produktwelten/icons/arrow-white-left.png") no-repeat -10px;
  float: left;
  content: '';
  display: inline-block;
  width: 20px;
  height: 16px;
  position: relative;
  margin-left: -15px; }

/* line 32, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_buttons.scss */
.button.iconArrowNext:after, .news-backlink-wrap a.iconArrowNext:after, .modListChef .contact-info a.iconArrowNext:after {
  position: absolute;
  right: 5px;
  top: 4px; }

/* line 38, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_buttons.scss */
.button, .news-backlink-wrap a, .modListChef .contact-info a,
.modSearchbar .tx-indexedsearch-searchbox-button,
.buttonGrey:hover {
  font-size: 11px;
  font-size: 0.6875rem;
  display: inline-block;
  border-radius: 4px;
  color: #fff !important;
  padding: 5px 11px;
  text-decoration: none !important;
  background: #3d87b4; }

/* line 51, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_buttons.scss */
.button:hover, .news-backlink-wrap a:hover, .modListChef .contact-info a:hover {
  background: #768990; }

/* line 55, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_buttons.scss */
.button.iconAfter, .news-backlink-wrap a.iconAfter, .modListChef .contact-info a.iconAfter {
  position: relative;
  padding-right: 30px; }

/* line 60, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_buttons.scss */
.button.iconArrowNext:after, .news-backlink-wrap a.iconArrowNext:after, .modListChef .contact-info a.iconArrowNext:after {
  position: absolute;
  right: 5px;
  top: 50%;
  margin-top: -8px; }

/* line 67, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_buttons.scss */
.buttons {
  width: 100%; }
/* line 70, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_buttons.scss */
.buttons a,
.buttons button {
  border: none;
  float: right;
  margin-bottom: 20px; }
/* line 77, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_buttons.scss */
.buttons a.button.btnMoreFile, .buttons .news-backlink-wrap a.btnMoreFile, .news-backlink-wrap .buttons a.btnMoreFile, .buttons .modListChef .contact-info a.btnMoreFile, .modListChef .contact-info .buttons a.btnMoreFile {
  float: left;
  margin-left: 0; }
/* line 81, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_buttons.scss */
.buttons a:first-child {
  margin-left: 40px; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	icons
========================================================================== */
/* old stuff below */
/* line 15, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_icons.scss */
.iconBefore:before,
.iconAfter:after {
  background: url("../img/produktwelten/vivantesSprite.png") no-repeat 0 0;
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: text-top; }

/* line 25, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_icons.scss */
.iconFontBigger:before {
  background: url("../img/produktwelten/fontSizeSprite.png") no-repeat top left; }

/* line 29, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_icons.scss */
.iconFontNormal:before {
  background-position: -281px -73px; }

/* line 33, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_icons.scss */
.iconFontSmaller:before {
  background: url("../img/produktwelten/fontSizeSprite.png") no-repeat top right; }

/* line 37, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_icons.scss */
.iconLinkArrow:before,
.iconLinkArrow:after {
  background-position: -114px 1px; }

/* line 42, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_icons.scss */
.iconPDF:before {
  background-position: -4px -91px; }

/* line 46, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_icons.scss */
.iconArrowNext:after {
  background-position: -32px 0; }

/* line 51, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_icons.scss */
.iconFax:before {
  background-position: -218px 0;
  margin-right: 5px; }

/* line 56, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_icons.scss */
.iconMail:before {
  background-position: -238px 0;
  margin-right: 5px; }

/* line 61, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_icons.scss */
.iconTel:before {
  background-position: -178px 1px;
  margin-right: 5px; }

/* line 66, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_icons.scss */
.iconCar:before {
  background-position: -199px 0px; }

/* line 70, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_icons.scss */
.iconPDFSeite:before {
  background-position: -258px 0;
  margin-right: 5px; }

/* line 75, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_icons.scss */
nav > ul > li > .iconArrowDownGrey {
  padding-right: 40px; }
/* line 77, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_icons.scss */
nav > ul > li > .iconArrowDownGrey:after {
  margin-left: 7px;
  /*ie issue here */ }

/* line 84, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_icons.scss */
.col2-left-layout .col-left .iconBackLink {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 25px;
  padding: 4px 11px 4px 11px; }

/* icons */
/* line 98, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_icons.scss */
.iconPrint:before,
.icon-print:before {
  background: url("../img/produktwelten/icons/icon-print.png") no-repeat -10px;
  content: '';
  display: inline-block;
  width: 25px;
  height: 20px;
  margin-bottom: -4px; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	main navigation
========================================================================== */
/* line 10, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_nav.scss */
header nav ul {
  list-style: none;
  margin: 0;
  padding: 0; }

/* line 16, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_nav.scss */
header nav a {
  display: block;
  color: #fff;
  text-decoration: none; }
/* line 21, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_nav.scss */
header nav a:visited {
  color: #fff; }

/* line 26, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_nav.scss */
header nav > ul {
  position: relative;
  background: #768991; }
/* line 30, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_nav.scss */
header nav > ul > li {
  float: left;
  border-left: solid 1px #fff;
  position: relative;
  /*
              &:first-child {
                  border-left: none;

                  + li + li ~ li {
                      .flyout {
                          left: auto;
                          right: 0;
                      }
                  }

                  > a {
                      padding: 0 37px;
                  }
              }*/ }
/* line 35, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_nav.scss */
header nav > ul > li > a {
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: verdana;
  position: relative;
  color: #fff;
  padding: 0 32px;
  line-height: 34px;
  z-index: 2; }
/* line 45, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_nav.scss */
header nav > ul > li .flyout {
  -webkit-box-shadow: 0px 3px 8px #7f7f7f;
  -moz-box-shadow: 0px 3px 8px #7f7f7f;
  -o-box-shadow: 0px 3px 8px #7f7f7f;
  -ms-box-shadow: 0px 3px 8px #7f7f7f;
  box-shadow: 0px 3px 8px #7f7f7f;
  background: #fff;
  display: none;
  position: absolute;
  left: 0;
  padding: 20px; }
/* line 54, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_nav.scss */
header nav > ul > li .flyout li {
  width: 250px; }
/* line 56, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_nav.scss */
header nav > ul > li .flyout li a {
  padding: 8px 0px 8px 20px;
  color: #333;
  position: relative; }
/* line 61, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_nav.scss */
header nav > ul > li .flyout li a:before {
  background: url("../img/produktwelten/icons/arrow-blue-right.png") no-repeat -10px;
  float: left;
  content: '';
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  left: 0px; }
/* line 75, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_nav.scss */
header nav > ul > li .flyout li ul {
  float: none; }
/* line 80, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_nav.scss */
header nav > ul > li .flyout li ul li a a:before {
  color: #333;
  background: none;
  margin-left: 10px; }
/* line 90, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_nav.scss */
header nav > ul > li .flyout li:hover a {
  color: #3d87b4;
  background: #e6e6e6;
  font-weight: normal; }
/* line 96, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_nav.scss */
header nav > ul > li .flyout li:hover ul {
  float: none; }
/* line 100, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_nav.scss */
header nav > ul > li .flyout li:hover ul li a {
  color: #333;
  font-weight: normal; }
/* line 104, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_nav.scss */
header nav > ul > li .flyout li:hover ul li a:hover {
  color: #3d87b4;
  font-weight: bold;
  background: #f0f0f0; }
/* line 110, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_nav.scss */
header nav > ul > li .flyout li:hover ul li a:before {
  color: #333;
  background: none;
  margin-left: 10px; }
/* line 138, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_nav.scss */
header nav > ul > li:hover > a {
  color: #fff;
  background: #3d87b4; }
/* line 143, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_nav.scss */
header nav > ul > li:hover .flyout {
  display: block; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	module: submenu
========================================================================== */
/* line 8, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-submenu.scss */
.modSubmenu {
  margin-bottom: 30px; }
/* line 14, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-submenu.scss */
.modSubmenu > ul > li.active > a {
  background: #e6e6e6;
  margin: 1px 0; }
/* line 20, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-submenu.scss */
.modSubmenu > ul > li.active > ul > li a {
  background: #f0f0f0;
  margin: 1px 0; }
/* line 29, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-submenu.scss */
.modSubmenu ul {
  margin: 0;
  padding: 0; }
/* line 33, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-submenu.scss */
.modSubmenu ul:first-child {
  border-bottom: 1px solid #ccc; }
/* line 38, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-submenu.scss */
.modSubmenu li {
  list-style-type: none;
  border-bottom: 1px solid #ccc; }
/* line 42, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-submenu.scss */
.modSubmenu li:first-child {
  border-top: 1px solid #ccc; }
/* line 46, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-submenu.scss */
.modSubmenu li li {
  border-top: 1px solid #ccc;
  border-bottom: none; }
/* line 52, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-submenu.scss */
.modSubmenu a {
  color: #666;
  display: block;
  line-height: 1.3em;
  text-decoration: none;
  padding-top: 4px;
  padding-bottom: 4px; }
/* line 60, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-submenu.scss */
.modSubmenu a:before {
  background: url("../img/produktwelten/icons/arrow-blue-right.png") no-repeat -10px;
  float: left;
  content: '';
  display: inline-block;
  width: 20px;
  height: 16px;
  position: relative; }
/* line 70, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-submenu.scss */
.modSubmenu a.active {
  color: #3d87b4; }
/* line 74, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-submenu.scss */
.modSubmenu a:hover {
  color: #3d87b4; }
/* line 79, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-submenu.scss */
.modSubmenu li.active a:before {
  background: url("../img/produktwelten/icons/arrow-blue-down.png") no-repeat -10px;
  float: left;
  content: '';
  display: inline-block;
  width: 20px;
  height: 16px;
  position: relative; }
/* line 91, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-submenu.scss */
.modSubmenu ul ul a {
  padding-left: 20px; }
/* line 94, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-submenu.scss */
.modSubmenu ul ul a:before {
  display: none; }
/* line 100, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-submenu.scss */
.modSubmenu ul ul ul a {
  padding-left: 40px; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	form elements
========================================================================== */
/* line 8, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.modFormular {
  background: #fdfdfd;
  /* Old browsers */
  background: -moz-linear-gradient(top, #fdfdfd 0%, #f4f4f4 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fdfdfd), color-stop(100%, #f4f4f4));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #fdfdfd 0%, #f4f4f4 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #fdfdfd 0%, #f4f4f4 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #fdfdfd 0%, #f4f4f4 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #fdfdfd 0%, #f4f4f4 100%);
  /* W3C */
  border: solid 1px #ccc;
  margin-bottom: 30px; }
/* line 20, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.modFormular form {
  padding: 20px; }
/* line 23, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.modFormular form hr {
  clear: both;
  margin: 20px 0; }
/* line 28, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.modFormular form .field {
  margin-bottom: 10px; }
/* line 32, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.modFormular form .field.wide select {
  width: 100%; }
/* line 39, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.modFormular .requiredInfo {
  font-size: 10px;
  font-size: 0.625rem;
  float: right;
  font-weight: normal; }
/* line 46, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.modFormular a {
  color: #3d87b4; }
/* line 51, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.modFormular .buttons button.button {
  margin-bottom: 0; }

/* line 57, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.fields {
  margin-bottom: 5px; }
/* line 60, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.fields .field:first-child {
  margin-right: 40px; }
/* line 63, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.fields .wide {
  width: 100%; }
/* line 67, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.fields label {
  font-weight: bold; }
/* line 73, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.fields .field {
  float: left; }
/* line 76, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.fields .field label {
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: bold; }
/* line 82, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.fields .field .input {
  margin: 5px 0;
  min-height: 23px; }
/* line 89, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.fields .fieldInfo .input {
  margin: 3px 0; }
/* line 92, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.fields .fieldInfo .input a {
  background: url("../img/produktwelten/vivantesSprite.png") no-repeat scroll -232px -19px transparent;
  display: block;
  float: left;
  height: 18px;
  overflow: hidden;
  text-indent: -50em;
  width: 15px;
  margin: 8px 0 0 100px; }
/* line 104, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.fields .fieldInfo div:first-child {
  position: relative; }
/* line 108, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.fields textarea {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #666;
  height: 100px;
  margin-top: 5px;
  border: 1px solid #ccc;
  resize: none;
  width: 99%; }
/* line 118, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.fields .input textarea {
  margin-top: 0;
  width: 303px; }
/* line 122, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.fields .error {
  font-size: 10px;
  font-size: 0.625rem;
  color: #D10D40 !important; }

/* line 131, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.field .input label {
  color: #000;
  font-weight: normal;
  margin: 0px 20px 0 0; }

/* line 136, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.field .input .middle {
  display: inline;
  width: 230px; }

/* line 140, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.field .input .small {
  display: inline;
  width: 50px; }

/* line 145, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.field .input .middleMarge,
.field .input .smallMarge {
  margin-right: 9px; }

/* line 151, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.field input[type="radio"] {
  margin-top: 5px;
  vertical-align: bottom; }

/* line 156, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.field input[type="text"],
.field input[type="file"],
.field select {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #666;
  display: inline-block;
  padding: 2px;
  width: 308px;
  border: 1px solid #ccc;
  height: 23px; }

/* line 169, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.field input[type="file"] {
  float: left;
  margin: 5px 0; }

/* line 174, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.field input[type="text"],
.field input[type="password"] {
  width: 301px; }

/* line 179, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.field input[type="checkbox"] {
  vertical-align: middle; }

/* line 182, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_form.scss */
.field .labelTooltip {
  float: left; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	search
========================================================================== */
/* line 8, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_search.scss */
.modSearchbar {
  margin-bottom: 20px; }
/* line 11, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_search.scss */
.modSearchbar .search {
  border: 1px solid #ccc;
  float: right;
  padding: 15px; }
/* line 16, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_search.scss */
.modSearchbar .search input {
  border: solid 1px #ccc;
  float: left; }
/* line 21, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_search.scss */
.modSearchbar .search input[type=text] {
  font-size: 13px;
  font-size: 0.8125rem;
  padding: 4px;
  width: 200px; }
/* line 28, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_search.scss */
.modSearchbar .search input[type="image"] {
  padding: 0; }
/* line 32, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_search.scss */
.modSearchbar .search input[type="submit"] {
  border: none;
  margin-left: 10px;
  float: none; }

/* line 40, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_search.scss */
.tx-indexedsearch-browsebox {
  border-bottom: 1px solid #ccc;
  padding: 0 0 15px 0; }
/* line 44, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_search.scss */
.tx-indexedsearch-browsebox .browsebox {
  padding: 15px 0 0 0; }
/* line 47, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_search.scss */
.tx-indexedsearch-browsebox .browsebox li {
  background: none;
  padding: 0;
  margin-bottom: 0; }

/* line 55, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_search.scss */
.browsebox {
  list-style: none;
  margin: 0;
  padding: 0; }
/* line 60, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_search.scss */
.browsebox li {
  display: inline-block;
  margin: 0 2px; }
/* line 64, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_search.scss */
.browsebox li a {
  background: #ccc;
  border-radius: 3px;
  color: #fff;
  display: block;
  font-weight: bold;
  padding: 4px 7px;
  text-align: center;
  text-decoration: none; }
/* line 74, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_search.scss */
.browsebox li a:hover {
  background: #3d87b4;
  color: #fff; }
/* line 80, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_search.scss */
.browsebox li.tx-indexedsearch-browselist-currentPage a {
  background: #3d87b4;
  color: #fff; }

/* line 88, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_search.scss */
.tx-indexedsearch-res .result {
  border-bottom: 1px solid #ccc;
  padding: 15px; }
/* line 92, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_search.scss */
.tx-indexedsearch-res .result h3, .tx-indexedsearch-res .result p {
  float: left; }
/* line 95, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_search.scss */
.tx-indexedsearch-res .result h3 {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold; }
/* line 100, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_search.scss */
.tx-indexedsearch-res .result h3 a {
  color: #3d87b4;
  text-decoration: none; }
/* line 105, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_search.scss */
.tx-indexedsearch-res .result .searchPercent {
  float: right; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	vcards
========================================================================== */
/* line 9, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_vcard.scss */
.vCard a {
  color: #3d87b4; }

/* line 13, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_vcard.scss */
.vCard + hr {
  margin: 30px 0; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	sitemap
========================================================================== */
/* line 9, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_sitemap.scss */
.csc-sitemap ul li {
  background: url("../img/produktwelten/list-item.png") no-repeat scroll 0 15px transparent;
  font-size: 11px;
  font-weight: bold;
  line-height: 14px;
  margin: 0;
  padding-top: 10px; }
/* line 17, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_sitemap.scss */
.csc-sitemap ul li a {
  color: #666666;
  padding: 0 0 0 15px;
  text-decoration: none; }
/* line 22, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_sitemap.scss */
.csc-sitemap ul li a:hover {
  color: #d10d40; }

/* line 27, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_sitemap.scss */
.csc-sitemap ul li li li li li {
  font-weight: normal; }

/* line 31, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_sitemap.scss */
.csc-sitemap > ul > li > a {
  font-size: 16px; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	module: breadcrumb
========================================================================== */
/* line 9, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-breadcrumb.scss */
.breadcrumbs {
  font-size: 11px;
  font-size: 0.6875rem;
  color: #768991;
  margin: 0;
  padding: 14px 20px;
  clear: both; }
/* line 16, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-breadcrumb.scss */
.breadcrumbs li {
  list-style: none;
  display: inline; }
/* line 20, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-breadcrumb.scss */
.breadcrumbs li a {
  color: #768991;
  text-decoration: none; }
/* line 24, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-breadcrumb.scss */
.breadcrumbs li a:hover {
  text-decoration: underline; }
/* line 31, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-breadcrumb.scss */
.breadcrumbs li:first-child + li ~ li:before {
  content: '>';
  margin: 0 5px;
  display: inline-block; }
/* line 39, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-breadcrumb.scss */
.breadcrumbs li.iconBefore:before, .breadcrumbs li.iconAfter:after {
  display: none; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	module: message
========================================================================== */
/* line 8, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-message.scss */
.modMessage {
  border-bottom: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 10px; }
/* line 13, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-message.scss */
.modMessage h1 {
  font-size: 12px;
  font-size: 0.75rem;
  position: relative;
  margin: 0; }
/* line 19, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-message.scss */
.modMessage h1 span {
  display: block;
  color: #6f6f6e;
  font-weight: normal;
  margin-bottom: .3em; }
/* line 27, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-message.scss */
.modMessage .time {
  margin-top: -1.7em;
  text-align: right; }
/* line 32, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-message.scss */
.modMessage .link {
  display: block;
  text-align: right;
  color: #3d87b4; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/* module:	full-width slider
========================================================================== */
/* line 8, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider-fullwidth.scss */
.mod-slider-fullwidth {
  margin-bottom: 40px;
  position: relative; }
/* line 13, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider-fullwidth.scss */
.mod-slider-fullwidth .slides > li {
  position: relative;
  left: -40px; }
/* line 19, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider-fullwidth.scss */
.mod-slider-fullwidth .flex-control-nav {
  position: absolute;
  width: 280px;
  display: inline-block;
  text-align: right;
  bottom: 70px; }
/* line 26, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider-fullwidth.scss */
.mod-slider-fullwidth .flex-control-nav li {
  margin: 0 6px;
  margin-left: 5px;
  display: inline-block;
  zoom: 1; }
/* line 32, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider-fullwidth.scss */
.mod-slider-fullwidth .flex-control-nav li:first-child {
  margin-left: 0; }
/* line 37, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider-fullwidth.scss */
.mod-slider-fullwidth .flex-control-nav a {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
  text-indent: 999em;
  background: #dadada;
  height: 20px;
  width: 20px;
  overflow: hidden; }
/* line 47, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider-fullwidth.scss */
.mod-slider-fullwidth .flex-control-nav a:hover,
.mod-slider-fullwidth .flex-control-nav .flex-active {
  background: #768991; }

/* line 54, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider-fullwidth.scss */
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease; }

/* line 61, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider-fullwidth.scss */
.flex-control-paging li a {
  height: 20px;
  width: 20px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3); }

/* line 78, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider-fullwidth.scss */
.mod-slider-fullwidth .slider-content {
  background: #fff;
  padding: 20px;
  position: absolute;
  left: 0;
  top: 50px;
  bottom: 0;
  width: 330px;
  font-weight: bold; }
/* line 88, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider-fullwidth.scss */
.mod-slider-fullwidth .slider-content h2 {
  font-size: 24px;
  font-size: 1.5rem;
  color: #3d87b4;
  margin-bottom: 20px;
  line-height: 1.3em; }
/* line 95, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider-fullwidth.scss */
.mod-slider-fullwidth .slider-content p {
  margin-bottom: 30px; }
/* line 99, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider-fullwidth.scss */
.mod-slider-fullwidth .slider-content .more {
  color: #3d87b4;
  text-decoration: none; }
/* line 104, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider-fullwidth.scss */
.mod-slider-fullwidth .slider-content .more:after {
  background: url("../img/produktwelten/icons/arrow-blue-right.png") no-repeat -10px;
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  top: 3px; }
/* line 114, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider-fullwidth.scss */
.mod-slider-fullwidth .slider-content .more:hover {
  text-decoration: underline; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	module: gallery slider
========================================================================== */
/* line 8, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider.scss */
.modSlider {
  background: whitesmoke;
  /* Old browsers */
  background: -moz-linear-gradient(top, whitesmoke 0%, white 28%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, whitesmoke), color-stop(28%, white));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, whitesmoke 0%, white 28%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, whitesmoke 0%, white 28%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, whitesmoke 0%, white 28%);
  /* IE10+ */
  background: linear-gradient(to bottom, whitesmoke 0%, white 28%);
  /* W3C */
  border-top: 1px solid #ccc;
  padding-top: 1px;
  margin-bottom: 30px;
  position: relative; }
/* line 23, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider.scss */
.modSlider h2 {
  color: #3d87b4;
  margin: 20px; }
/* line 28, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider.scss */
.modSlider p {
  margin: 0 0 30px 30px; }
/* line 33, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider.scss */
.modSlider .flex-direction-nav li a {
  width: 26px;
  height: 40px;
  margin: -13px 0 0;
  display: block;
  background: url(../img/produktwelten/pfeile.png) no-repeat 0px 0;
  position: absolute;
  top: 50%;
  cursor: pointer;
  text-indent: -9999px; }
/* line 44, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider.scss */
.modSlider .flex-direction-nav li a:hover {
  background-position: 0 -44px; }
/* line 49, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider.scss */
.modSlider .flex-direction-nav li .next {
  background-position: -32px 0;
  right: -4px; }
/* line 53, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider.scss */
.modSlider .flex-direction-nav li .next:hover {
  background-position: -33px -44px; }
/* line 58, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider.scss */
.modSlider .flex-direction-nav li .prev {
  left: -10px; }
/* line 62, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider.scss */
.modSlider .flex-direction-nav li .disabled {
  opacity: .3;
  filter: alpha(opacity=30);
  cursor: default; }
/* line 68, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider.scss */
.modSlider .flex-direction-nav li .flex-next {
  background-position: -32px 0; }
/* line 72, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider.scss */
.modSlider .flex-direction-nav li .flex-next {
  right: 10px;
  background-position: -25px 0px;
  width: 32px; }
/* line 77, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider.scss */
.modSlider .flex-direction-nav li .flex-next:hover {
  background-position: -26px -44px; }
/* line 82, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider.scss */
.modSlider .flex-direction-nav li .flex-prev {
  left: 10px; }
/* line 87, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider.scss */
.modSlider .flexslider {
  width: 600px;
  margin: 0 auto; }
/* line 91, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider.scss */
.modSlider .flexslider .slides {
  position: relative; }
/* line 94, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider.scss */
.modSlider .flexslider .slides li {
  margin: 0;
  background: 0;
  padding: 0 0 50px 0; }
/* line 99, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider.scss */
.modSlider .flexslider .slides li a {
  display: inline-block;
  margin-left: 14px; }
/* line 104, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider.scss */
.modSlider .flexslider .slides li span {
  display: block; }
/* line 108, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider.scss */
.modSlider .flexslider .slides li span span {
  position: relative;
  display: inline-block;
  float: left; }
/* line 113, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider.scss */
.modSlider .flexslider .slides li span span span {
  position: absolute;
  left: 14px; }
/* line 120, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-slider.scss */
.modSlider .flexslider img {
  width: auto;
  display: inline; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	module: accordion
========================================================================== */
/* line 8, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-accordion.scss */
.modAccordion {
  clear: both;
  border-top: 1px solid #ddd;
  margin: 0 0 30px 0; }
/* line 13, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-accordion.scss */
.modAccordion a {
  color: #3d87b4; }
/* line 17, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-accordion.scss */
.modAccordion .modMessage {
  border-bottom: 1px solid #D9D9D9;
  margin: 0;
  padding: 0; }
/* line 22, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-accordion.scss */
.modAccordion .modMessage div p span {
  float: left;
  min-width: 69px; }
/* line 26, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-accordion.scss */
.modAccordion .modMessage div p span:first-child {
  margin: 0 1em 0 0; }
/* line 29, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-accordion.scss */
.modAccordion .modMessage div p span:last-child {
  width: 580px; }
/* line 36, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-accordion.scss */
.modAccordion h1 {
  padding: 20px 40px;
  margin: 0;
  cursor: pointer;
  font-weight: normal;
  outline: none !important; }
/* line 43, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-accordion.scss */
.modAccordion h1:before {
  background: url("../img/produktwelten/icons/arrow-blue-right.png") no-repeat -10px;
  float: left;
  content: '';
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  left: -10px; }
/* line 56, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-accordion.scss */
.modAccordion h1 span {
  font-weight: bold;
  color: #3d87b4; }
/* line 61, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-accordion.scss */
.modAccordion h1 a {
  color: #333;
  text-decoration: none; }
/* line 66, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-accordion.scss */
.modAccordion h1 .ui-icon {
  display: none; }
/* line 70, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-accordion.scss */
.modAccordion h1:before {
  left: 5px; }
/* line 75, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-accordion.scss */
.modAccordion .accordionContent {
  padding: 20px;
  margin: 0; }
/* line 81, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-accordion.scss */
.modAccordion h1.ui-state-active:before {
  background: url("../img/produktwelten/icons/arrow-blue-down.png") no-repeat -10px;
  float: left;
  content: '';
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  margin-top: -20px; }

/* module: accordion on #homepage */
/* line 98, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-accordion.scss */
#homepage .modAccordion {
  border: solid 1px #ccc;
  margin-bottom: 0;
  background: #fff;
  padding: 20px 20px 50px 20px;
  min-height: 454px;
  position: relative; }
/* line 106, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-accordion.scss */
#homepage .modAccordion > h2 {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  padding-left: 0; }
/* line 112, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-accordion.scss */
#homepage .modAccordion > h2:after {
  background: url("../img/produktwelten/icons/icon-news.png") no-repeat 0 5px;
  float: right;
  content: '';
  display: inline-block;
  width: 40px;
  height: 40px;
  top: 50%;
  margin-top: -20px;
  left: -10px; }
/* line 125, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-accordion.scss */
#homepage .modAccordion h1 {
  padding: 10px 50px 10px 0;
  margin: 0;
  cursor: pointer;
  font-weight: normal;
  outline: none !important; }
/* line 132, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-accordion.scss */
#homepage .modAccordion h1:after {
  background: url("../img/produktwelten/icons/arrow-blue-down.png") no-repeat 0;
  content: '';
  display: inline-block;
  width: 40px;
  height: 40px;
  top: 50%;
  right: 0;
  margin-top: -20px;
  position: absolute; }
/* line 144, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-accordion.scss */
#homepage .modAccordion h1 span {
  font-weight: bold;
  color: #3d87b4; }
/* line 149, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-accordion.scss */
#homepage .modAccordion h1 a {
  color: #333;
  text-decoration: none; }
/* line 154, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-accordion.scss */
#homepage .modAccordion h1 .ui-icon {
  display: none; }
/* line 158, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-accordion.scss */
#homepage .modAccordion h1:before {
  display: none !important; }
/* line 163, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-accordion.scss */
#homepage .modAccordion h1.ui-state-active {
  color: #3d87b4;
  background: none; }
/* line 167, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-accordion.scss */
#homepage .modAccordion h1.ui-state-active:after {
  background: url("../img/produktwelten/icons/arrow-blue-up.png") no-repeat 0;
  content: '';
  display: inline-block;
  width: 40px;
  height: 40px;
  top: 50%;
  right: 0;
  margin-top: -20px;
  position: absolute; }
/* line 180, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-accordion.scss */
#homepage .modAccordion .accordionContent {
  border-top: none;
  padding: 0 10px 10px 0;
  background: none; }
/* line 186, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-accordion.scss */
#homepage .modAccordion .boxContent {
  border-top: solid 1px #ccc;
  padding-top: 10px; }
/* line 190, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-accordion.scss */
#homepage .modAccordion .boxContent > a.button, #homepage .modAccordion .news-backlink-wrap .boxContent > a, .news-backlink-wrap #homepage .modAccordion .boxContent > a, #homepage .modAccordion .modListChef .contact-info .boxContent > a, .modListChef .contact-info #homepage .modAccordion .boxContent > a {
  position: absolute;
  left: 20px;
  bottom: 20px; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	module: teaser
========================================================================== */
/* module: homepage teaser */
/* line 10, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-teaser.scss */
.modHomepageTeaserBig {
  border: solid 1px #ccc;
  background: #fff;
  margin-bottom: 20px;
  padding: 20px; }
/* line 16, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-teaser.scss */
.modHomepageTeaserBig h2 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  margin: 0 0 25px 0; }
/* line 23, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-teaser.scss */
.modHomepageTeaserBig p {
  font-family: Verdana;
  margin: 0 0 30px 0;
  line-height: 18px; }

/* line 30, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-teaser.scss */
.modHomepageTeaser {
  background: #fff;
  position: relative; }
/* line 34, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-teaser.scss */
.modHomepageTeaser > div {
  padding: 20px;
  background: #fff; }
/* line 39, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-teaser.scss */
.modHomepageTeaser h2 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: normal;
  margin: -10px 20px 10px 20px;
  position: relative;
  z-index: 2; }
/* line 48, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-teaser.scss */
.modHomepageTeaser p {
  font-size: 13px;
  font-size: 0.8125rem;
  height: 60px;
  margin: 0 20px; }
/* line 55, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-teaser.scss */
.modHomepageTeaser a {
  color: #d2003c;
  text-decoration: none;
  margin: 20px; }
/* line 60, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-teaser.scss */
.modHomepageTeaser a:hover {
  text-decoration: underline; }
/* line 65, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-teaser.scss */
.modHomepageTeaser:before {
  content: '';
  display: inline-block;
  position: absolute;
  height: 161px;
  top: 0;
  left: 0;
  right: 0;
  background: url(../img/produktwelten/teaser-gradient.png); }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	module: language
========================================================================== */
/* line 8, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-language.scss */
.modLanguage {
  border: solid 1px transparent;
  border-bottom: none;
  padding: 10px 25px 10px 10px;
  margin-top: -5px;
  z-index: 100; }
/* line 16, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-language.scss */
.modLanguage:after {
  background: url("../img/produktwelten/icons/arrow-blue-down.png") no-repeat -10px;
  float: right;
  content: '';
  display: inline-block;
  width: 20px;
  height: 15px;
  margin-left: 20px;
  margin-top: -12px; }
/* line 27, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-language.scss */
.modLanguage li {
  margin: 0;
  padding: 0;
  list-style: none; }
/* line 33, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-language.scss */
.modLanguage > ul > li a,
.modLanguage > span {
  display: block;
  width: 20px;
  height: 12px;
  text-indent: -999em; }
/* line 41, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-language.scss */
.modLanguage > ul {
  display: none;
  border: solid 1px #dfdfdf;
  background: #f2f2f2;
  border-top: none;
  margin: 0;
  left: -1px;
  right: -1px;
  position: absolute;
  padding: 10px 25px 10px 10px !important; }
/* line 52, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-language.scss */
.modLanguage > ul li {
  margin-top: 10px;
  float: none !important; }
/* line 56, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-language.scss */
.modLanguage > ul li:first-child {
  margin-top: 0; }
/* line 62, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-language.scss */
.modLanguage .flagDE {
  background: url(../img/produktwelten/flags/flagDE.jpg) 0px 0px no-repeat; }
/* line 66, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-language.scss */
.modLanguage .flagGB {
  background: url(../img/produktwelten/flags/flagGB.jpg) 0px 0px no-repeat; }
/* line 70, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-language.scss */
.modLanguage .flagSA {
  background: url(../img/produktwelten/flags/flagSA.jpg) 0px 0px no-repeat; }
/* line 74, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-language.scss */
.modLanguage .flagRU {
  background: url(../img/produktwelten/flags/flagRU.jpg) 0px 0px no-repeat; }
/* line 79, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-language.scss */
.modLanguage:hover {
  background: #f2f2f2;
  border-color: #dfdfdf; }
/* line 83, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-language.scss */
.modLanguage:hover > ul {
  display: block; }
/* line 87, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-language.scss */
.modLanguage:hover:after {
  background: url("../img/produktwelten/icons/arrow-blue-up.png") no-repeat -10px;
  float: right;
  content: '';
  display: inline-block;
  width: 20px;
  height: 15px;
  margin-left: 20px;
  margin-top: -12px; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	module: listChef
========================================================================== */
/* line 8, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-listchef.scss */
.modListChef {
  margin-bottom: 30px; }
/* line 11, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-listchef.scss */
.modListChef > ul {
  margin: 0; }
/* line 14, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-listchef.scss */
.modListChef > ul > li {
  background: none;
  border-bottom: 1px solid #dddddd;
  padding: 10px 0 0 0;
  margin: 0; }
/* line 20, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-listchef.scss */
.modListChef > ul > li > p {
  padding: 0 15px 15px; }
/* line 24, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-listchef.scss */
.modListChef > ul > li p {
  margin: 0;
  padding: 0; }
/* line 28, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-listchef.scss */
.modListChef > ul > li p span.iconBefore {
  line-height: 21px; }
/* line 33, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-listchef.scss */
.modListChef > ul > li:first-child {
  border-top: 1px solid #dddddd; }
/* line 37, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-listchef.scss */
.modListChef > ul > li a {
  color: #3d87b4; }
/* line 43, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-listchef.scss */
.modListChef img {
  width: 130px;
  float: left;
  margin-right: 20px;
  margin-bottom: 10px; }
/* line 50, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-listchef.scss */
.modListChef .img-margin {
  margin-left: 150px; }
/* line 54, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-listchef.scss */
.modListChef .button, .modListChef .news-backlink-wrap a, .news-backlink-wrap .modListChef a, .modListChef .contact-info a {
  margin: 1em 0 1.4em 0; }
/* line 58, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-listchef.scss */
.modListChef .contact-info {
  margin-bottom: 10px; }
/* line 61, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-listchef.scss */
.modListChef .contact-info h4 {
  color: #3d87b4; }
/* line 68, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-listchef.scss */
.modListChef .contact-info a:after {
  background: url("../img/produktwelten/icons/arrow-white-right.png") no-repeat -10px;
  float: left;
  content: '';
  display: inline-block;
  width: 20px;
  height: 16px;
  position: relative;
  margin-left: -5px; }
/* line 82, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-listchef.scss */
.modListChef .accordionContent img {
  margin: 20px 20px 10px 0; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	module: download-list
========================================================================== */
/* module: downloadList */
/* line 9, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-download-list.scss */
.downloadList {
  margin-bottom: 30px; }
/* line 12, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-download-list.scss */
.downloadList ul {
  margin: 0; }
/* line 15, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-download-list.scss */
.downloadList ul li {
  background: none;
  border-bottom: 1px solid #ccc;
  margin: 0;
  padding: 20px 10px; }
/* line 21, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-download-list.scss */
.downloadList ul li strong {
  display: block; }
/* line 25, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-download-list.scss */
.downloadList ul li a {
  color: #3d87b4;
  display: inline-block; }
/* line 29, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-download-list.scss */
.downloadList ul li a:before {
  background: url("../produktwelten/img/icons/icon-pdf.png") no-repeat -10px;
  content: '';
  display: inline-block;
  width: 25px;
  height: 12px; }
/* line 38, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-download-list.scss */
.downloadList ul li p:first-child {
  margin-bottom: 0; }
/* line 41, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-download-list.scss */
.downloadList ul li p:first-child + a {
  margin-top: 10px; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	module: 404-info
========================================================================== */
/* line 8, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-404.scss */
.modInfo404 {
  -webkit-box-shadow: 0 0 4px #7F7F7F;
  -moz-box-shadow: 0 0 4px #7F7F7F;
  -o-box-shadow: 0 0 4px #7F7F7F;
  -ms-box-shadow: 0 0 4px #7F7F7F;
  box-shadow: 0 0 4px #7F7F7F;
  padding: 20px;
  margin-bottom: 30px; }
/* line 15, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-404.scss */
.modInfo404 article h1 {
  font-weight: bold;
  margin-bottom: 20px; }
/* line 20, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-404.scss */
.modInfo404 article h1, .modInfo404 article strong, .modInfo404 article a {
  color: #3d87b4; }
/* line 24, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-404.scss */
.modInfo404 article h2 {
  font-weight: normal; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	module: contact-teaser
========================================================================== */
/* line 8, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-contact-teaser.scss */
.modContactTeaser {
  background: #fafafa;
  border: solid 1px #ccc;
  padding: 25px 20px 40px 20px;
  margin-bottom: 30px; }
/* line 14, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-contact-teaser.scss */
.modContactTeaser h3 {
  font-size: 16px;
  font-size: 1rem;
  color: #3d87b4;
  font-size: 16px; }
/* line 21, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-contact-teaser.scss */
.modContactTeaser h4 {
  font-size: 11px;
  font-size: 0.6875rem;
  margin: 0;
  color: #333; }

/* vCards in contact-teaser */
/* line 32, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-contact-teaser.scss */
.modContactTeaser .vCard .fn, .modContactTeaser .vCard .home, .modContactTeaser .vCard .org, .modContactTeaser .vCard .adr, .modContactTeaser .vCard .tel {
  display: block; }

/* line 36, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-contact-teaser.scss */
.modContactTeaser .vCard .tel {
  font-weight: bold;
  color: #3d87b4; }
/* line 40, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-contact-teaser.scss */
.modContactTeaser .vCard .tel .type {
  color: #333; }

/* line 45, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-contact-teaser.scss */
.modContactTeaser .vCard .adr {
  margin: 0 0 10px 0; }

/* line 48, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-contact-teaser.scss */
.modContactTeaser .vCard .org {
  font-weight: bold;
  margin: 10px 0 0 0; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	module: map + map-teaser
========================================================================== */
/* line 8, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-map.scss */
.modMap {
  position: relative;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  margin-bottom: 30px;
  padding: 0 0 1px 0; }

/* line 17, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-map.scss */
.stagePic h3 {
  position: absolute;
  top: 15px;
  left: 20px;
  margin: 0;
  color: #333;
  z-index: 3; }

/* line 26, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-map.scss */
.stagePic img.deactivate {
  position: absolute;
  top: 0;
  left: 0; }

/* line 32, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-map.scss */
.stagePic .hidePic {
  display: none !important;
  visibility: hidden; }

/* line 38, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-map.scss */
.modTooltipMap {
  -webkit-box-shadow: 0 0 2px 2px #ccc;
  -moz-box-shadow: 0 0 2px 2px #ccc;
  -o-box-shadow: 0 0 2px 2px #ccc;
  -ms-box-shadow: 0 0 2px 2px #ccc;
  box-shadow: 0 0 2px 2px #ccc;
  display: none;
  position: absolute;
  background: #fff;
  padding: 20px;
  width: 395px; }
/* line 48, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-map.scss */
.modTooltipMap:after {
  content: '';
  background: url(../img/produktwelten/ArrowTooltip.png) no-repeat top left;
  position: absolute;
  top: -19px;
  left: 310px;
  width: 34px;
  height: 19px; }
/* line 58, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-map.scss */
.modTooltipMap h2 {
  font-size: 13px;
  font-size: 0.8125rem;
  margin: 0 0 10px 0;
  font-weight: bold;
  color: #333;
  position: relative; }
/* line 66, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-map.scss */
.modTooltipMap h2 a {
  position: absolute;
  top: 0;
  right: 0;
  color: #ddd;
  font-weight: normal;
  text-decoration: none; }
/* line 76, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-map.scss */
.modTooltipMap .wrap {
  position: relative;
  border-top: 1px solid #ccc;
  padding: 10px 0;
  float: left;
  width: 100%; }
/* line 84, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-map.scss */
.modTooltipMap img {
  float: left; }
/* line 88, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-map.scss */
.modTooltipMap .wrap div,
.modTooltipMap .button,
.modTooltipMap .news-backlink-wrap a, .news-backlink-wrap
.modTooltipMap a,
.modTooltipMap .modListChef .contact-info a, .modListChef .contact-info
.modTooltipMap a {
  margin: 0 0 0 140px; }
/* line 93, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-map.scss */
.modTooltipMap div h3 {
  font-size: 11px;
  font-size: 0.6875rem;
  margin: 10px 0;
  font-weight: 100;
  color: #3d87b4;
  text-transform: uppercase; }
/* line 102, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-map.scss */
.modTooltipMap div li {
  color: #3d87b4; }
/* line 106, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-map.scss */
.modTooltipMap a {
  margin: 0;
  color: #3d87b4; }

/* line 112, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-map.scss */
article.clinicFhain {
  top: 285px;
  left: 58px;
  z-index: 2; }

/* line 113, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-map.scss */
article.clinicUrban {
  top: 313px;
  left: 18px;
  z-index: 2; }

/* line 114, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-map.scss */
article.clinicNeukoeln {
  top: 385px;
  left: 47px;
  z-index: 2; }

/* line 115, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-map.scss */
article.clinicVictoria {
  top: 335px;
  left: -15px;
  z-index: 2; }

/* line 116, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-map.scss */
article.clinicHellersdorf {
  top: 275px;
  left: 182px;
  z-index: 2; }

/* line 117, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-map.scss */
article.clinicHumboldt {
  top: 173px;
  left: -63px;
  z-index: 2; }

/* line 118, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-map.scss */
article.clinicWenckebach {
  top: 355px;
  left: 5px;
  z-index: 2; }

/* line 119, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-map.scss */
article.clinicSpandau {
  top: 218px;
  left: -172px;
  z-index: 2; }

/* line 120, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-map.scss */
article.clinicPberg {
  top: 240px;
  left: 43px;
  z-index: 2; }

/* mod-map-teaser */
/* line 124, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-map.scss */
.mod-map-teaser > div {
  padding: 20px 10px;
  background: #f0f0f0; }
/* line 128, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-map.scss */
.mod-map-teaser > div p {
  margin-bottom: 30px; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	module: back-to-top
========================================================================== */
/* line 8, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-back-to-top.scss */
.back-to-top {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  background: #768991;
  display: none;
  padding: 5px 30px 5px 5px;
  position: fixed;
  margin-left: 560px;
  left: 50%;
  bottom: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  outline: none !important; }
/* line 23, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-back-to-top.scss */
.back-to-top:after {
  background: url("../img/produktwelten/icons/arrow-white-up.png") no-repeat -10px;
  content: '';
  display: inline-block;
  width: 20px;
  height: 15px;
  left: 80px;
  position: absolute; }
/* line 33, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-back-to-top.scss */
.back-to-top:hover, .back-to-top:visited, .back-to-top:active {
  color: #fff; }
/* line 39, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-back-to-top.scss */
.back-to-top:after {
  right: -5px; }
/* line 43, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-back-to-top.scss */
.back-to-top:hover {
  background: #3d87b4; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	module: font-sizer
========================================================================== */
/* line 8, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-font-sizer.scss */
.mod-font-sizer {
  display: none; }
/* line 11, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-font-sizer.scss */
.mod-font-sizer .font-size-bigger,
.mod-font-sizer .font-size-smaller {
  padding: 0 5px;
  font-family: Arial, sans-serif;
  color: #3d87b4 !important;
  text-indent: -999em;
  position: relative;
  font-weight: bold;
  width: 12px; }
/* line 21, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-font-sizer.scss */
.mod-font-sizer .font-size-bigger:before,
.mod-font-sizer .font-size-smaller:before {
  content: 'A';
  display: inline-block;
  position: absolute;
  left: 5px;
  top: 0;
  text-indent: 0em; }
/* line 31, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-font-sizer.scss */
.mod-font-sizer .font-size-bigger:hover:before,
.mod-font-sizer .font-size-smaller:hover:before {
  color: #768991; }
/* line 37, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-font-sizer.scss */
.mod-font-sizer .font-size-bigger {
  font-size: 17px;
  font-size: 1.0625rem; }
/* line 41, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-font-sizer.scss */
.mod-font-sizer .font-size-smaller {
  font-size: 12px;
  font-size: 0.75rem; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	module: table
========================================================================== */
/* line 8, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-tables.scss */
.mod-table {
  font-size: 11px;
  font-size: 0.6875rem;
  width: 100%;
  table-layout: fixed;
  border-spacing: 1px !important; }
/* line 14, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-tables.scss */
.mod-table ul {
  margin-top: 0; }
/* line 18, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-tables.scss */
.mod-table thead {
  background: #768990;
  color: #fff;
  text-align: left; }
/* line 24, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-tables.scss */
.mod-table tbody {
  background: #fafafa; }
/* line 29, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-tables.scss */
.mod-table tbody > tr:first-child td p {
  min-height: 42px;
  margin-bottom: 10px; }
/* line 37, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-tables.scss */
.mod-table th,
.mod-table td {
  padding: 10px 5px;
  border: solid 1px #ccc;
  vertical-align: top; }
/* line 43, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-tables.scss */
.mod-table th img,
.mod-table td img {
  margin: 0 auto;
  display: inherit; }
/* line 48, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-tables.scss */
.mod-table th:first-child,
.mod-table td:first-child {
  width: 82px;
  word-break: break-all; }
/* line 54, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-tables.scss */
.mod-table th {
  border-color: #768990; }
/* line 60, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_mod-tables.scss */
.mod-table td a[href*="mail"], .mod-table td a[href*="Mail"] {
  word-break: break-all;
  display: block; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	module dependencies
========================================================================== */
/* mod-accordion in mod-listchef */
/* line 11, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_module-dependecies.scss */
.modListChef .modAccordion {
  margin-bottom: 10px; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	custom fancybox
========================================================================== */
/* line 9, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/plugins/_custom-fancybox.scss */
.fancybox-close {
  background: url(../img/produktwelten/close-button.png) 0 0 no-repeat;
  height: 40px;
  width: 40px; }

/* line 15, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/plugins/_custom-fancybox.scss */
.fancybox-nav span {
  width: 30px;
  height: 40px;
  margin-top: -20px; }

/* line 21, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/plugins/_custom-fancybox.scss */
.fancybox-prev span {
  background: url(../img/produktwelten/pfeile.png) left bottom no-repeat; }

/* line 25, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/plugins/_custom-fancybox.scss */
.fancybox-next span {
  background: url(../img/produktwelten/pfeile.png) right bottom no-repeat; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	module: language direction right to left(rtl)
========================================================================== */
/* line 10, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl .logo {
  direction: ltr; }
/* line 13, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl .logo a {
  text-indent: 0;
  font-size: 0; }

/* line 21, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl .modLanguage {
  padding: 10px 10px 10px 25px; }
/* line 24, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl .modLanguage > ul {
  padding: 10px 10px 10px 25px !important; }
/* line 28, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl .modLanguage:after {
  right: auto;
  left: -10px; }

/* line 36, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl #fmSearch input[type="text"] {
  float: right;
  border-right: 1px solid #ccc;
  border-left: none; }

/* line 44, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl .contact-link {
  padding-right: 0;
  padding-left: 20px; }
/* line 48, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl .contact-link:after {
  right: auto;
  left: -10px; }

/* line 60, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl header nav > ul > li .flyout li a {
  padding-left: 0;
  padding-right: 20px; }
/* line 64, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl header nav > ul > li .flyout li a:before {
  left: auto;
  right: -10px; }

/* line 77, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl .mod-slider-fullwidth {
  direction: ltr; }
/* line 80, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl .mod-slider-fullwidth .slider-content {
  direction: rtl;
  text-align: right; }
/* line 85, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl .mod-slider-fullwidth .more {
  padding-right: 0;
  padding-left: 20px; }
/* line 89, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl .mod-slider-fullwidth .more:after {
  right: auto;
  left: -10px; }

/* line 98, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl .button.iconAfter, body.rtl .news-backlink-wrap a.iconAfter, .news-backlink-wrap body.rtl a.iconAfter, body.rtl .modListChef .contact-info a.iconAfter, .modListChef .contact-info body.rtl a.iconAfter {
  padding-right: 11px;
  padding-left: 30px; }

/* line 103, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl .button.iconArrowNext:after, body.rtl .news-backlink-wrap a.iconArrowNext:after, .news-backlink-wrap body.rtl a.iconArrowNext:after, body.rtl .modListChef .contact-info a.iconArrowNext:after, .modListChef .contact-info body.rtl a.iconArrowNext:after {
  right: auto;
  left: 5px; }

/* line 111, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl .back-to-top {
  margin-left: -664px; }

/* line 118, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl .modAccordion h1:before {
  left: auto;
  right: 5px; }

/* line 125, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl#homepage .modAccordion h1 {
  padding-right: 0;
  padding-left: 50px; }
/* line 129, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl#homepage .modAccordion h1:after {
  right: auto;
  left: -10px; }

/* line 135, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl#homepage .modAccordion > h2 {
  padding-right: 0;
  padding-left: 20px; }
/* line 139, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl#homepage .modAccordion > h2:after {
  right: auto;
  left: -10px; }

/* line 145, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl#homepage .modAccordion .boxContent > a.button, body.rtl#homepage .modAccordion .news-backlink-wrap .boxContent > a, .news-backlink-wrap body.rtl#homepage .modAccordion .boxContent > a, body.rtl#homepage .modAccordion .modListChef .contact-info .boxContent > a, .modListChef .contact-info body.rtl#homepage .modAccordion .boxContent > a {
  left: auto;
  right: 20px; }

/* line 155, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl .col-main ul li {
  padding-left: 0;
  padding-right: 15px;
  background-position: right 6px; }

/* line 162, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl .col-main ol {
  padding: 0 40px 0 0; }

/* line 169, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl .modSubmenu a {
  padding-left: 0;
  padding-right: 20px; }
/* line 173, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl .modSubmenu a:before {
  left: auto;
  right: -10px; }

/* line 182, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl .modListChef .contact-info a {
  padding-right: 11px;
  padding-left: 20px; }
/* line 186, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl .modListChef .contact-info a:after {
  right: auto;
  left: -10px; }

/* line 194, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl .iconTel:before,
body.rtl .iconFax:before,
body.rtl .iconMail:before {
  margin-right: 0;
  margin-left: 5px; }

/* line 204, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl footer .footer-logo {
  float: left; }
/* line 207, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl footer .footer-logo + p {
  clear: both; }

/* line 212, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl footer .copyright a {
  padding-right: 20px;
  padding-left: 0; }
/* line 216, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl footer .copyright a:before {
  left: auto;
  right: -15px; }

/* line 225, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl .contact-link:after,
body.rtl header nav > ul > li .flyout li a:before,
body.rtl .mod-slider-fullwidth .more:after,
body.rtl .button.iconArrowNext:after,
body.rtl .news-backlink-wrap a.iconArrowNext:after, .news-backlink-wrap
body.rtl a.iconArrowNext:after,
body.rtl .modListChef .contact-info a.iconArrowNext:after, .modListChef .contact-info
body.rtl a.iconArrowNext:after,
body.rtl .modSubmenu li:not(.active) a:before {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -webkit-transform: rotate(180deg);
  /* Opera, Chrome, and Safari */ }

/* line 237, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_language-rtl.scss */
body.rtl#homepage .modAccordion > h2:after {
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1); }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	adjustments for russian language
========================================================================== */
/* line 8, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_ru.scss */
.ru {
  /*logo*/
  /* nav */ }
/* line 12, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_ru.scss */
.ru header .logo a {
  background: url(../img/produktwelten/logo-ru.jpg) no-repeat 0 0; }
/* line 19, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_ru.scss */
.ru header nav > ul > li > a {
  padding: 0 17px; }

/* ==========================================================================
Author: [brandung GmbH & Co.KG]
========================================================================== */
/*	clearfix
========================================================================== */
/* line 8, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_clearfix.scss */
header:after,
nav:after,
#container:after,
footer:after,
.meta > ul:after,
nav:after,
nav > ul:after,
.modSubmenu ul:first-child:after,
.buttons:after,
.fields:after,
.modBmi > div:after,
.modHomepageTeaserBig:after,
.modAccordion:after,
.modAccordion .modMessage div p:after,
.modSearchbar:after,
.tx-indexedsearch-res .result:after,
.modVideo:after,
.meta > div:after,
.subNavi01 > ul:after,
header nav > div ul:after,
.modListChef > ul > li:after,
.accordionContent:after {
  display: block;
  content: ".";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden; }

/* ie 8 clearfix */
/* line 41, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/_clearfix.scss */
.lt-ie8 header,
.lt-ie8 nav,
.lt-ie8 #container,
.lt-ie8 footer,
.lt-ie8 .meta > ul,
.lt-ie8 nav,
.lt-ie8 nav > ul,
.lt-ie8 .modSubmenu ul:first-child,
.lt-ie8 .buttons,
.lt-ie8 .fields,
.lt-ie8 .modBmi > div,
.lt-ie8 .modHomepageTeaserBig,
.lt-ie8 .modAccordion,
.lt-ie8 .modAccordion .modMessage div p,
.lt-ie8 .modSearchbar,
.lt-ie8 .tx-indexedsearch-res .result,
.lt-ie8 .modVideo,
.lt-ie8 .meta > div,
.lt-ie8 .subNavi01 > ul,
.lt-ie8 .modListChef > ul > li {
  display: inline-block; }

/**
* brandung Gmbh & Co. KG
*
* print-css
*
*/
/* hide link in browser */
/* line 8, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_print.scss */
.print-url {
  display: none; }

/* print css */
@media print {
  /* global reset */
  /* line 15, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_print.scss */
  * {
    float: none !important; }
  /* line 18, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_print.scss */
  a[href]:after {
    content: ''; }
  /* line 21, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_print.scss */
  abbr[title]:after {
    content: ''; }
  /* line 25, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_print.scss */
  body {
    padding: 10px; }
  /* logo */
  /* line 30, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_print.scss */
  header h1 {
    position: relative; }
  /* line 33, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_print.scss */
  header h1:after {
    display: inline-block;
    content: url(../img/produktwelten/logo.png);
    width: 197px;
    height: 94px;
    left: 0;
    top: 0;
    position: absolute; }
  /* line 43, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_print.scss */
  header h1 a {
    display: block; }
  /* display/visibility */
  /* line 49, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_print.scss */
  nav,
  #meta,
  .mod-slider-fullwidth,
  .modHomepageTeaser,
  .footerList,
  .back-to-top,
  .copyright a,
  .modMessage a,
  .modAccordion h1:before,
  .modFormular {
    display: none !important; }
  /* line 62, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_print.scss */
  .accordionContent,
  .print-url {
    display: block !important; }
  /* floating */
  /* line 68, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_print.scss */
  .modListChef img {
    float: left !important; }
  /* width */
  /* line 73, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_print.scss */
  .col-1,
  .col-2,
  .col-main,
  footer section,
  footer section p {
    width: 100% !important; }
  /* margin */
  /* line 82, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_print.scss */
  .csc-textpic-imagewrap,
  .csc-textpic-image,
  .csc-textpic-last {
    margin: 0 !important; }
  /* padding */
  /* line 89, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_print.scss */
  footer,
  .modMessage {
    padding: 0; }
  /* line 94, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_print.scss */
  li,
  .accordionContent,
  .modAccordion h1 {
    padding-left: 0 !important; }
  /* page break */
  /* line 101, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_print.scss */
  .news,
  .modListChef li,
  footer {
    page-break-inside: avoid !important; }
  /* text-decoration */
  /* line 109, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_print.scss */
  .modMessage *,
  .result a {
    text-decoration: none; }
  /* ff fixes */
  @-moz-document url-prefix() {
    /* line 116, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/partials/mod/_print.scss */
    * {
      border: none !important; } } }

@media screen and (max-width: 1024px) {
  /* line 169, C:/xampp/htdocs/Git/vivantes/html/vivantes_prostatazentrum/typo3conf/ext/bra_projectfiles/Resources/Private/Frontend/sass/main.scss */
  .footerList ul:last-child {
    margin: 0 !important; } }

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