@charset "UTF-8";
/* Globale Variablen */
/* Standard-Margin oben/unten */
/* Box-Shadow h-offset v-offset blur spread color */
/* Farb Variablen */
/* abweichend vom CD, eigentlich #FFC07C */
/* eigentlich #C34D76; */
/* Farben Funktionen zuordnen */
/* [ BASIS ] +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ==============================[ Resets/Presets/Fixes ]============================== */
/* Alle Elemente auf neues Borderbox-Modell umstellen */
* {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* Blockelemente für alte IE-Versionen ohne HTML5 support */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, video {
  display: block;
}
/* Scrollbalken immer einblenden und Schrift auf Basis 10px festlegen */
html {
  overflow-y: scroll;
  font-size: 62.5%;
}
/* Neues Clearfix erlaubt Overflow */
section:after {
  content: "";
  display: block;
  clear: both;
}
/* ==============================[ Standard Inline-Elemente ]============================== */
body {
  background: #fff;
}
/* Standard-Abstand zwischen Inline-Elementen */
h1, h2, h3, p, ul, ol {
  margin: 24px 0;
}
a img {
  /* Verlinkte Bilder */
  border: none;
  display: block;
}
/* Bilder */
img {
  border: none;
}
/* Unnummerierte Listen ul */
ul {
  margin: 24px 0;
  padding: 0 0 0 12px;
}
/* Liste 1. Ebene */
ul > li {
  margin: 0.2em 0;
  padding: 0 0 0 20px;
  list-style-type: none;
  background: url("/inc/img/list-dot.svg") 0 0.5em no-repeat;
  background-size: 8px 8px;
}
/* Liste 2. Ebene */
ul > li > ul {
  padding: 0 0 0 12px;
  margin: 0.2em 0 0.5em;
}
ul > li > ul > li {
  background: url("/inc/img/list-dot2.svg") 0 0.5em no-repeat;
  background-size: 6px 6px;
}
/* Liste 3. Ebene */
ul > li > ul > li > ul {
  padding: 0 0 0 12px;
  margin: 0.2em 0 0;
}
ul > li > ul > li > ul > li {
  background: url("/inc/img/list-dot3.svg") 0 0.5em no-repeat;
  background-size: 6px 6px;
}
/* Numerierte Listen ol */
ol {
  margin: 24px 0;
  padding: 0 0 0 28px;
}
ol > li {
  margin: 0;
  padding: 0 0 0 4px;
}
/* Liste 2. Ebene */
ol > li > ol {
  padding: 0 0 0 32px;
  margin: 0.2em 0 0.5em;
}
/* Liste 3. Ebene*/
ol > li > ol > li > ol {
  padding: 0 0 0 12px;
  margin: 0.2em 0 0;
}
/* Horizontale Linien ausblenden */
hr {
  display: none;
}
/* Abkürzungen und Akronyme */
abbr {
  border-bottom: 1px dotted #666;
  cursor: help;
}
abbr[title], acronym[title] {
  /* reset user agent */
  text-decoration: none;
}
/* Grid-System bestehend aus 12 Spalten */
/* Variablen für Col-Breiten und -Pushes – siehe Excel-Berechnungsdatei -------------------------------------*/
/* Sichtbarkeits-Hilfsklassen – was ist in welcher Ansicht (nicht) sichtbar -------------------------------------*/
.only-s {
  display: none !important;
}
.only-m {
  display: none !important;
}
.only-l {
  display: none !important;
}
@media (max-width: 679px) {
  .only-s {
    display: block !important;
  }
  .no-s {
    display: none !important;
  }
}
@media (min-width: 680px) and (max-width: 1279px) {
  .only-m {
    display: block !important;
  }
  .no-m {
    display: none !important;
  }
}
@media (min-width: 1280px) {
  .only-l {
    display: block !important;
  }
  .no-l {
    display: none !important;
  }
}
/* Entwicklungshilfe zeigt Ansichtsgröße s,m,l rechts oben – zum Deaktivieren auf 'display: none' setzen */
body:after {
  position: absolute;
  top: 0;
  right: 0;
  background: grey;
  padding: 5px 10px;
  opacity: 1;
  color: #fff;
  font-size: 14px;
  display: none;
}
/* Einzelne Sektionen zum Seitenaufbau */
section {
  width: 100%;
  margin: 0 auto;
}
div.sameheight {
  /* gleiche Höhe für alle cols darin */
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
/* Column */
section div {
  word-wrap: break-word;
}
/* gleiche Höhe für alle col-divs in allen sections */
div.sameheight > div {
  display: flex;
  flex-direction: column;
}
div.infobox {
  height: 100%;
}
section.border-top {
  border-top: 1px solid #8B8170;
  margin-top: 24px;
}
section.stripe {
  background: #8B8170;
  padding: 24px 0;
}
section.stripe, section.stripe h2, section.stripe h3, section.stripe .headline, section.stripe a {
  color: #ffffff;
}
section.red .infobox {
  background: #C52276;
}
/* Fluid Layout --------------------------------------------------------------------------*/
/* Width */
.grid {
  *zoom: 1;
}
/* Helper Class: Container */
.grid {
  width: 100%;
  margin: 0 0%;
}
/* Helper Class: Columns */
.col1 {
  float: left;
  margin-right: -100%;
  width: 4.03%;
}
.col2 {
  float: left;
  margin-right: -100%;
  width: 12.75%;
}
.col3 {
  float: left;
  margin-right: -100%;
  width: 21.48%;
}
.col4 {
  float: left;
  margin-right: -100%;
  width: 30.2%;
}
.col5 {
  float: left;
  margin-right: -100%;
  width: 38.93%;
}
.col6 {
  float: left;
  margin-right: -100%;
  width: 47.65%;
}
.col7 {
  float: left;
  margin-right: -100%;
  width: 56.38%;
}
.col8 {
  float: left;
  margin-right: -100%;
  width: 65.1%;
}
.col9 {
  float: left;
  margin-right: -100%;
  width: 73.83%;
}
.col10 {
  float: left;
  margin-right: -100%;
  width: 82.55%;
}
.col11 {
  float: left;
  margin-right: -100%;
  width: 91.27%;
}
.col12 {
  float: left;
  margin-right: -100%;
  width: 100%;
}
/* Helper Class: Horizontal Position */
.push0 {
  margin-left: -0.00098%;
}
.push1 {
  margin-left: 8.53902%;
}
.push2 {
  margin-left: 17.44966%;
}
.push3 {
  margin-left: 26.1745%;
}
.push4 {
  margin-left: 34.89933%;
}
.push5 {
  margin-left: 43.62416%;
}
.push6 {
  margin-left: 52.34899%;
}
.push7 {
  margin-left: 61.07383%;
}
.push8 {
  margin-left: 69.79866%;
}
.push9 {
  margin-left: 78.52349%;
}
.push10 {
  margin-left: 87.24832%;
}
.push11 {
  margin-left: 95.97315%;
}
/* Small Layout --------------------------------------------------------------------------*/
@media (max-width: 679px) {
  /* Entwicklungshilfe */
  /* Width */
  /* Helper Class: Container */
  /* Lässt Element in nächste Zeile umbrechen */
  /* Helper Class: Columns */
  /* Helper Class: Horizontal Position */
  body:after {
    content: "S";
  }
  .grid {
    *zoom: 1;
  }
  .grid {
    width: 100%;
    margin: 0 0%;
  }
  .s-break {
    clear: both;
  }
  .s-col1 {
    float: left;
    margin-right: -100%;
    width: 4.03%;
  }
  .s-col2 {
    float: left;
    margin-right: -100%;
    width: 12.75%;
  }
  .s-col3 {
    float: left;
    margin-right: -100%;
    width: 21.48%;
  }
  .s-col4 {
    float: left;
    margin-right: -100%;
    width: 30.2%;
  }
  .s-col5 {
    float: left;
    margin-right: -100%;
    width: 38.93%;
  }
  .s-col6 {
    float: left;
    margin-right: -100%;
    width: 47.65%;
  }
  .s-col7 {
    float: left;
    margin-right: -100%;
    width: 56.38%;
  }
  .s-col8 {
    float: left;
    margin-right: -100%;
    width: 65.1%;
  }
  .s-col9 {
    float: left;
    margin-right: -100%;
    width: 73.83%;
  }
  .s-col10 {
    float: left;
    margin-right: -100%;
    width: 82.55%;
  }
  .s-col11 {
    float: left;
    margin-right: -100%;
    width: 91.27%;
  }
  .s-col12 {
    float: left;
    margin-right: -100%;
    width: 100%;
    float: none;
    /* margin-bottom: 6.245%; */
  }
  .s-push0 {
    margin-left: -0.00098%;
  }
  .s-push1 {
    margin-left: 8.53902%;
  }
  .s-push2 {
    margin-left: 17.44966%;
  }
  .s-push3 {
    margin-left: 26.1745%;
  }
  .s-push4 {
    margin-left: 34.89933%;
  }
  .s-push5 {
    margin-left: 43.62416%;
  }
  .s-push6 {
    margin-left: 52.34899%;
  }
  .s-push7 {
    margin-left: 61.07383%;
  }
  .s-push8 {
    margin-left: 69.79866%;
  }
  .s-push9 {
    margin-left: 78.52349%;
  }
  .s-push10 {
    margin-left: 87.24832%;
  }
  .s-push11 {
    margin-left: 95.97315%;
  }
}
/* Middle Layout --------------------------------------------------------------------------*/
@media (min-width: 680px) and (max-width: 1279px) {
  /* Entwicklungshilfe */
  /* Width */
  /* Helper Class: Container */
  /* Lässt Element in nächste Zeile umbrechen */
  /* Helper Class: Columns */
  /* Helper Class: Horizontal Position */
  body:after {
    content: "M";
  }
  .grid {
    *zoom: 1;
  }
  .grid {
    width: 100%;
    margin: 0 0%;
  }
  .m-break {
    clear: both;
  }
  .m-col1 {
    float: left;
    margin-right: -100%;
    width: 4.03%;
  }
  .m-col2 {
    float: left;
    margin-right: -100%;
    width: 12.75%;
  }
  .m-col3 {
    float: left;
    margin-right: -100%;
    width: 21.48%;
  }
  .m-col4 {
    float: left;
    margin-right: -100%;
    width: 30.2%;
  }
  .m-col5 {
    float: left;
    margin-right: -100%;
    width: 38.93%;
  }
  .m-col6 {
    float: left;
    margin-right: -100%;
    width: 47.65%;
  }
  .m-col7 {
    float: left;
    margin-right: -100%;
    width: 56.38%;
  }
  .m-col8 {
    float: left;
    margin-right: -100%;
    width: 65.1%;
  }
  .m-col9 {
    float: left;
    margin-right: -100%;
    width: 73.83%;
  }
  .m-col10 {
    float: left;
    margin-right: -100%;
    width: 82.55%;
  }
  .m-col11 {
    float: left;
    margin-right: -100%;
    width: 91.27%;
  }
  .m-col12 {
    float: left;
    margin-right: -100%;
    width: 100%;
  }
  .m-push0 {
    margin-left: -0.00098%;
  }
  .m-push1 {
    margin-left: 8.53902%;
  }
  .m-push2 {
    margin-left: 17.44966%;
  }
  .m-push3 {
    margin-left: 26.1745%;
  }
  .m-push4 {
    margin-left: 34.89933%;
  }
  .m-push5 {
    margin-left: 43.62416%;
  }
  .m-push6 {
    margin-left: 52.34899%;
  }
  .m-push7 {
    margin-left: 61.07383%;
  }
  .m-push8 {
    margin-left: 69.79866%;
  }
  .m-push9 {
    margin-left: 78.52349%;
  }
  .m-push10 {
    margin-left: 87.24832%;
  }
  .m-push11 {
    margin-left: 95.97315%;
  }
}
/* Large Layout --------------------------------------------------------------------------*/
@media (min-width: 1280px) {
  /* Entwicklungshilfe */
  /* Width */
  /* Helper Class: Container */
  /* Lässt Element in nächste Zeile umbrechen */
  /* Helper Class: Columns */
  /* Helper Class: Horizontal Position */
  body:after {
    content: "L";
  }
  .grid {
    *zoom: 1;
  }
  .grid {
    width: 100%;
    margin: 0 0%;
  }
  .l-break {
    clear: both;
  }
  .l-col1 {
    float: left;
    margin-right: -100%;
    width: 4.03%;
  }
  .l-col2 {
    float: left;
    margin-right: -100%;
    width: 12.75%;
  }
  .l-col3 {
    float: left;
    margin-right: -100%;
    width: 21.48%;
  }
  .l-col4 {
    float: left;
    margin-right: -100%;
    width: 30.2%;
  }
  .l-col5 {
    float: left;
    margin-right: -100%;
    width: 38.93%;
  }
  .l-col6 {
    float: left;
    margin-right: -100%;
    width: 47.65%;
  }
  .l-col7 {
    float: left;
    margin-right: -100%;
    width: 56.38%;
  }
  .l-col8 {
    float: left;
    margin-right: -100%;
    width: 65.1%;
  }
  .l-col9 {
    float: left;
    margin-right: -100%;
    width: 73.83%;
  }
  .l-col10 {
    float: left;
    margin-right: -100%;
    width: 82.55%;
  }
  .l-col11 {
    float: left;
    margin-right: -100%;
    width: 91.27%;
  }
  .l-col12 {
    float: left;
    margin-right: -100%;
    width: 100%;
  }
  .l-push0 {
    margin-left: -0.00098%;
  }
  .l-push1 {
    margin-left: 8.53902%;
  }
  .l-push2 {
    margin-left: 17.44966%;
  }
  .l-push3 {
    margin-left: 26.1745%;
  }
  .l-push4 {
    margin-left: 34.89933%;
  }
  .l-push5 {
    margin-left: 43.62416%;
  }
  .l-push6 {
    margin-left: 52.34899%;
  }
  .l-push7 {
    margin-left: 61.07383%;
  }
  .l-push8 {
    margin-left: 69.79866%;
  }
  .l-push9 {
    margin-left: 78.52349%;
  }
  .l-push10 {
    margin-left: 87.24832%;
  }
  .l-push11 {
    margin-left: 95.97315%;
  }
}
/* ==============================[ Basiselemente ]============================== */
/* Neue Helvetica Linotype Standard Condensed Webfont */
@font-face {
  font-family: "Helvetica Neue LT Std";
  src: url("/inc/font/HelveticaNeueLTStd-Cn.woff2") format("woff2"), url("/inc/font/HelveticaNeueLTStd-Cn.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue LT Std";
  src: url("/inc/font/HelveticaNeueLTStd-BdCn.woff2") format("woff2"), url("/inc/font/HelveticaNeueLTStd-BdCn.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("/inc/font/OpenSans.woff2") format("woff2"), url("/inc/font/OpenSans.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
body {
  font-family: "Helvetica Neue LT Std", Arial, Helvetica;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 24px;
  line-height: 2.4rem;
  color: #333333;
}
/* Hintergrundfarbe für selektierten Text */
::-moz-selection {
  background: #ece8e5;
  text-shadow: none;
}
::selection {
  background: #ece8e5;
  text-shadow: none;
}
/* ---------[ Überschriften ]--------- */
h1, h2, h3 {
  color: #C52276;
  font-family: "Helvetica Neue LT Std", "Sans-Serif";
  font-weight: normal;
  clear: both;
}
h1 {
  font-weight: bold;
  margin: 36px 0 24px;
}
h2 {
  font-size: 34px;
  font-size: 3.4rem;
  line-height: 42px;
  line-height: 4.2rem;
  margin: 48px 0 24px;
}
h3 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 28px;
  line-height: 2.8rem;
  margin: 24px 0 24px;
}
/* ---------[ Hyperlinks ]--------- */
a {
  color: #C52276;
}
a:hover, a:focus {
  color: #DB539D;
}
a:active {
  color: #F67E64;
}
.h1sub {
  font-weight: normal;
  display: block;
}
/* Hyperlinks speziell */
a.linkarrow {
  display: inline-block;
  padding-left: 34px;
  background: url(/inc/img/linkarrow-powerpink.svg) no-repeat 0 0.25em;
}
a.linkarrow:hover, a.linkarrow:focus {
  background-image: url(/inc/img/linkarrow-berry.svg);
}
a.linkarrow:active {
  color: #F67E64;
}
/* ---------[ Diverse Textformate ]--------- */
/* Tabstop */
.tab {
  width: 4em;
  /* Breite an das breiteste Element anpassen */
  float: left;
  clear: left;
  display: block;
}
/* Kleiner Text für Hinweise */
.introtext {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 32px;
  line-height: 3.2rem;
}
/* Button für PDF-Download-Links */
a.link-pdf {
  padding: 14px 14px 14px 64px;
  border: 1px solid #C52276;
  position: relative;
  display: inline-block;
  transition: all 0.01s ease-in-out;
}
a.link-pdf span {
  position: relative;
  z-index: 2;
}
a.link-pdf:before {
  content: "";
  width: 52px;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -9;
  background: #C52276 url("/inc/img/ico-pdf-weiss.svg") no-repeat 10px 48%;
  transition: all 0.2s ease-in-out;
}
a.link-pdf:hover, a.link-pdf:focus {
  color: #ffffff;
  box-shadow: 1px 1px 6px 1px rgba(0, 0, 0, 0.3);
}
a.link-pdf:hover:before, a.link-pdf:focus:before {
  width: 100%;
  transition: all 0.1s ease-in-out;
}
/* Bei langen Texten pro Listenpunkt mehr Abstand zwischen li */
ul.listspace > li, ol.listspace > li {
  padding-bottom: 0.8em;
}
ul.listspace li ul, ol.listspace li ol {
  margin: 0.3em 0;
}
/* Clickbare Box */
.clickbox {
  cursor: pointer;
}
/* Überschrift oder Absatz wie Headline */
.headline {
  color: #C52276;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
  margin: 24px 0 0;
}
/* Buttons allgemein und Formulare */
a.button, .teaser.clickbox a.button, .teaser.clickbox span.button, form.contactform button {
  margin: 24px 0;
  color: #fff;
  padding: 12px 24px;
  background: #C52276;
  display: block;
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  transition: background 0.2s ease-in-out;
  font: 18px/24px "Helvetica Neue LT Std", Arial, Helvetica;
  font: 1.8rem/2.4rem "Helvetica Neue LT Std", Arial, Helvetica;
  text-decoration: none;
  width: 100%;
}
a.button:hover, .teaser.clickbox:hover a.button, .teaser.clickbox:hover span.button, form.contactform button:hover {
  color: #fff;
  background: #DB539D;
}
a.button.ghost, div.ghost {
  color: #C52276;
  background: #ffffff;
  border: 1px solid lightgrey;
}
a.button.ghost:hover, a.button.ghost:focus {
  color: #DB539D;
  border-color: #DB539D;
}
/* [ LAYOUT ] ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* Hinweismeldungen, Fehler, Alerts, Warnungen */
.alert {
  padding: 12px;
  margin: 1em 0;
  border: solid 1px #C5C5C5;
  border-radius: 4px;
  background-color: #F1F1F1;
  color: #666;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 24px;
  line-height: 2.4rem;
  -webkit-animation: fadein 0.5s;
  /* Safari 4+ */
  -moz-animation: fadein 0.5s;
  /* Fx 5+ */
  -o-animation: fadein 0.5s;
  /* Opera 12+ */
  animation: fadein 0.5s;
  /* IE 10+ */
}
ul.alerts {
  padding: 0;
}
li.alert {
  list-style-type: none;
  margin: 5px 0;
  background: none;
}
.alert.error {
  border-color: #ebccd1;
  background-color: #f2dede;
  color: #a94442;
}
.alert.error:after {
  background: #f2dede;
}
.alert.warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.alert.warning:after {
  background: #fcf8e3;
}
.alert.success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.alert.success:after {
  background: #dff0d8;
}
/* Color-Flash */
/* Animation um Errors einzublenden */
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Tabelle Basislayout */
table {
  border: 1px solid #eee;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  margin: 24px 0;
}
tr {
  border: 1px solid #eee;
  border-width: 4px 0;
}
th, td {
  padding: 8px 16px;
  vertical-align: top;
  border: 1px solid #eee;
}
th {
  text-align: left;
  background: #eee;
}
/* Tabelle gestylet abseits des Standards */
table.modern {
  border: none;
  border-collapse: collapse;
}
.modern tr {
  border: 1px solid #eee;
  border-width: 1px 0;
}
.modern th, .modern td {
  padding: 12px 24px;
  vertical-align: top;
  border-width: 0;
}
.modern th {
  font-weight: normal;
}
/* ==================== Formular Styles ==================== */
form.contactform fieldset {
  border: none;
  margin: 24px 0 12px;
}
form.contactform legend {
  font-size: 20px;
  font-size: 2rem;
  line-height: 34px;
  line-height: 3.4rem;
  margin: 0.8em 0 0.6em;
}
form.contactform .field {
  padding: 0.5em 0;
}
form.contactform label {
  display: block;
  padding: 4px 0;
}
form.contactform .formhint {
  display: block;
  padding: 4px 0;
}
form.contactform input[type=text], form.contactform input[type=email], form.contactform input[type=phone], form.contactform input[type=date], form.contactform input[type=search], form.contactform textarea {
  border: solid lightgrey 1px;
  outline: none;
  font: 14px/22px "Helvetica Neue LT Std", Arial, Helvetica;
  font: 1.4rem/2.2rem "Helvetica Neue LT Std", Arial, Helvetica;
  padding: 6px 12px;
  width: 100%;
}
form.contactform textarea {
  height: 160px;
}
form.contactform input[type=checkbox] {
  margin: 0 6px 2px 0;
  vertical-align: middle;
}
form.contactform select {
  font-size: 14px;
  font-size: 1.4rem;
  width: 200px;
  border: 1px solid lightgrey;
}
form.contactform button {
  font-size: inherit;
}
/* ==================== Middle ==================== */
@media screen and (min-width: 680px) {
  form.contactform .field {
    display: flex;
  }
  form.contactform .field > label {
    flex: 0 0 auto;
    width: 220px;
    margin-right: 24px;
    text-align: right;
  }
  form.contactform button[type=submit] {
    margin: 1em 0;
    margin-left: 244px;
    width: auto;
    display: inline;
    font: 18px/24px "Helvetica Neue LT Std", Arial, Helvetica;
    font: 1.8rem/2.4rem "Helvetica Neue LT Std", Arial, Helvetica;
  }
}
/* ==================== Large ==================== */
/* ==============================[ Basiselemente ]============================== */
h1 {
  font-size: 30px;
  font-size: 3rem;
  line-height: 32px;
  line-height: 3.2rem;
}
/* ==============================[ Header ]============================== */
header {
  background-color: #8B8170;
}
/* Logo im Header */
a.logo {
  display: block;
  max-width: 205px;
  height: 123px;
  margin: 12px 0 16px 4%;
  /* margin-left: calc(4% - 41px); */
  /* geht auf s nicht, weil Logo sonst links rausrutscht*/
  background-image: url("/inc/img/logo-klinikum-freising-weiss.svg");
  background-repeat: no-repeat;
  float: left;
}
a.logo .pic {
  margin: 0;
  visibility: hidden;
}
/* Volltextsuche */
div.sitesearch {
  float: right;
  margin: 36px 0 0;
  clear: right;
}
div.sitesearch input {
  color: #d3d3d3;
  font-family: "Helvetica Neue LT Std";
  font-size: 18px;
  padding: 4px 52px 4px 12px;
  border: 1px solid #FFD1B8;
  width: 360px;
}
div.sitesearch input::-webkit-input-placeholder {
  color: #d3d3d3;
}
div.sitesearch input::-moz-input-placeholder {
  color: #d3d3d3;
}
div.sitesearch input::-ms-input-placeholder {
  color: #d3d3d3;
}
div.sitesearch input:focus {
  color: #8B8170;
  border: 1px solid #C52276;
  outline: none;
}
div.sitesearch {
  display: none;
}
/* ==============================[ Navigationen ]============================== */
/* Alle Listen innerhalb von Navigation resetten */
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  margin: 0;
  padding: 0;
  background-image: none;
}
/* ---------[ Hauptnavigation ]--------- */
/* Toggle-Button für Mobile-Menu */
div.nav-toggle {
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
  padding: 8px 8px 8px 40px;
  position: absolute;
  top: 68px;
  right: 4%;
  right: calc(4% - 8px);
  /* rechter Rand abzgl. Button-Padding*/
}
/* Hamburger-Icon per CSS */
.hamburger-icon {
  width: 22px;
  position: absolute;
  margin-left: -32px;
  top: 12px;
}
.hamburger, .hamburger:after, .hamburger:before {
  height: 3px;
  background-color: #ffffff;
  position: relative;
}
.hamburger:after, .hamburger:before {
  content: "";
  width: 100%;
  position: absolute;
}
.hamburger:after {
  top: 7px;
}
.hamburger:before {
  top: 14px;
}
/* Hover-Verhalten des Toggle-Links inklusive Hamburger*/
div.nav-toggle:hover, div.nav-toggle:focus, div.nav-toggle.open {
  color: #8B8170;
  background: #ffffff;
}
div.nav-toggle:hover .hamburger, div.nav-toggle:hover .hamburger:after, div.nav-toggle:hover .hamburger:before, div.nav-toggle.open .hamburger, div.nav-toggle.open .hamburger:after, div.nav-toggle.open .hamburger:before {
  background-color: #8B8170;
}
/* Ganzer Navibereich */
nav.mainnav {
  margin: 0;
  clear: both;
  position: relative;
  border-top: 1px solid #ffffff;
}
/* Hauptnavigation erste Ebene */
ul.mainnavul > li {
  padding: 1px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}
ul.mainnavul > li a {
  font-family: "Helvetica Neue LT Std", sans-serif;
  font-weight: bold;
  font-size: 24px;
  text-decoration: none;
  color: #ffffff;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px 12px 4%;
  padding-left: calc(4% + 0px);
  /* eingerückt auf linke Kante Logotext */
  position: relative;
}
/* Navigationspunkt hover */
ul.mainnavul > li > a:hover {
  color: #8B8170;
  background: rgba(255, 255, 255, 0.8);
}
/* aktiver Navigationspunkt statisch und hover */
ul.mainnavul > li.current > a {
  color: #C52276;
  background: #ffffff;
}
/* Aufklick-Indikator für Menüpunkte mit Dropdown */
ul.mainnavul .toggle {
  text-align: center;
  color: #8B8170;
  cursor: pointer;
  display: block;
  position: absolute;
  border-left: 1px solid #8B8170;
  width: 48px;
  height: 100%;
  top: 0;
  right: 0;
  background: #8B8170 url("/inc/img/arrow-right-white.svg") no-repeat center;
  background-size: 12px 18px;
}
ul.mainnavul .toggle.open {
  background-image: url("/inc/img/arrow-down-white.svg");
  background-size: 18px 12px;
}
/* Letzter Menüpunkt Notfall */
ul.mainnavul > li:last-child a {
  color: #ffffff;
  background: #C52276;
}
ul.mainnavul > li:last-child a:hover, ul.mainnavul > li:hover:last-child a, ul.mainnavul > li:last-child a:focus {
  background-color: #DB539D;
  background: url(/inc/img/kreuz.svg) #db539d 14px 50% no-repeat;
  color: #fff;
}
/* ---------[ Subnavigation als zweite Ebene der Hauptnavi ]--------- */
/* Styling Subnavigationspunkte */
ul.mainnavul > li ul {
  margin: 8px 0;
}
ul.mainnavul > li ul li a {
  color: #ffffff;
  font-size: 18px;
  font-weight: normal;
  text-decoration: none;
  padding: 4px 8px 4px 4%;
  /* eigentlich 4% + 36px */
  padding-left: calc(4% + 36px);
  /* Einrückgung bis linke Kante Logtext */
  margin: 1px 0;
  background: url("/inc/img/linkarrow-white.svg") no-repeat 4% 50%;
}
/* aktive Navigationspunkte hover */
ul.mainnavul > li ul li a:hover, ul.mainnavul > li ul li a:focus {
  color: #8B8170;
  background-color: rgba(255, 255, 255, 0.8);
  background-image: url("/inc/img/linkarrow-graun.svg");
}
ul.mainnavul > li ul li.current a {
  color: #C52276;
  background-color: rgba(255, 255, 255, 0.8);
  background-image: url("/inc/img/linkarrow-powerpink.svg");
}
/* ---------[ Globale Navigation ]--------- */
/* nicht auf mobil */
nav.globalnav {
  display: none;
}
/* ==============================[ Content ]============================== */
/* Inhaltsbereich */
article {
  padding: 0 4% 36px;
}
/* Keyvisual */
div.keyvisual {
  height: 230px;
  background-repeat: no-repeat;
  background-color: #eee;
  background-position: 50% 50%;
  background-size: cover;
}
/* ---------[ Breadcrumb ]--------- */
.breadcrumb {
  color: #91918d;
  margin: -12px 0 22px;
}
.breadcrumb a {
  text-decoration: none;
  color: inherit;
  margin: 0;
  transition: all 0.2s ease-in-out;
}
.breadcrumb a:hover, .breadcrumb a:focus {
  text-decoration: underline;
  color: #333333;
}
.breadcrumb span.divider {
  background: url("/inc/img/subnav-ul-li-current-bg.svg") no-repeat;
  background-size: 6px;
  display: inline-block;
  width: 16px;
  height: 22px;
  color: transparent;
  background-position: center top 7px;
}
/* ---------[ Subnavigations-Teaser im Content – pinke Kästen ]--------- */
/* auf small zwei pro Reihe, sonst vier pro Reihe*/
article nav.subnav ul {
  margin: 0 -1.16279%;
  overflow: auto;
}
article nav.subnav ul li {
  float: left;
  margin: 12px 1.16279%;
  width: 47.674%;
  /* (1008px plus 24px) minus 2 mal 24px durch 2 = 492px auf 1032px */
}
article nav.subnav ul li a {
  text-decoration: none;
  color: #C52276;
  text-align: center;
  display: block;
  height: 100%;
  background: #ffffff;
  border: 1px solid #C52276;
  padding: 14px;
}
/* a:focus & outline: none um ein besseres tabben durch die Navi */
article nav.subnav ul li a:hover, article nav.subnav ul li a:focus {
  color: #ffffff;
  background: #C52276;
  transition: background 0.2s ease-in-out;
  box-shadow: 1px 1px 6px 1px rgba(0, 0, 0, 0.3);
  outline: none;
}
article nav.subnav ul li.current a, article nav.subnav ul li.current:hover a {
  color: #ffffff;
  background: #C52276;
  transition: background 0.2s ease-in-out;
}
/* Sonderfall Elternschule - Teaser breiter */
article nav.subnav.parental ul li a {
  color: #F67E64;
  border-color: #F67E64;
}
article nav.subnav.parental ul li a:hover, article nav.subnav.parental ul li a:focus {
  color: #ffffff;
  background-color: #F67E64;
}
/* ---------[ Contentbilder ]--------- */
.pic {
  margin: 24px 0;
  width: 100%;
  height: auto;
  display: block;
}
/* Bildunterschriften */
p.pic-description {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: normal;
  margin-top: -12px;
}
/* ---------[ Bildergalerie ]--------- */
ul.image-gallery {
  margin: 24px 0;
  padding: 0;
}
ul.image-gallery li {
  margin: 0;
  padding: 0;
  background: none;
}
/* ---------[ Infokasten Fläche ]--------- */
.infobox {
  color: #ffffff;
  padding: 48px 4.762% 12px;
  /* entspricht 4% article-Padding für 12col*/
  margin: 24px 0;
  background: #8B8170;
}
.infobox h2, .infobox h3 {
  margin-top: 0;
  color: #FFD1B8;
}
.infobox .introtext {
  margin-top: 0;
  color: #ffffff;
}
.infobox a {
  color: #FFD1B8;
}
.infobox a.linkarrow {
  background-image: url(/inc/img/linkarrow-nude.svg);
}
.infobox ul li {
  background-image: url(/inc/img/list-dot-white.svg);
}
.infobox.clickbox:hover {
  color: #333333;
  background-color: #FFD1B8;
  box-shadow: 1px 1px 6px 1px rgba(0, 0, 0, 0.3);
}
.infobox.clickbox:hover h2, .infobox.clickbox:hover h3, .infobox.clickbox:hover a {
  color: #8B8170;
}
.infobox.clickbox:hover a.linkarrow {
  color: #8B8170;
  background-image: url(/inc/img/linkarrow-graun.svg);
}
/* Styles für graunen Kasten bei Mouseover */
/* ---------[ Infokasten Rahmen ]--------- */
.borderbox {
  padding: 48px 4.762% 12px;
  /* entspricht 4% article-Padding */
  margin: 24px 0;
  border: 1px solid #8B8170;
}
.borderbox h2, .borderbox h3 {
  margin-top: 0;
}
/* ---------[ News- Event- und Kliniklebenliste ]--------- */
.itemlist {
  margin: 24px 0 12px;
  border-top: 1px solid #8B8170;
}
.itemlist .item {
  padding: 0 4.762% 0;
  /* entspricht 4% article-Padding */
  margin: -1px 0;
  border-bottom: 1px solid #8B8170;
  transition: background 0.2s ease-in-out;
}
.itemlist .item h2, .itemlist .item h3, .itemlist .item p {
  margin-left: 4.762%;
}
.itemlist.life .item h2, .itemlist.life .item h3, .itemlist.life .item p {
  /* Absätze Klinikleben auf Small sind vollbreit */
  margin-left: 0;
}
.itemlist .item p.datebox {
  margin-left: 0;
}
.itemlist h3 + p {
  margin-top: 0;
}
/* Farbiger Datumskasten */
.datebox {
  color: #ffffff;
  text-align: center;
  padding: 6px;
  margin: 24px 0;
}
.news .datebox {
  background: #F67E64;
}
.events .datebox {
  background: #F05276;
}
.datebox .day {
  font-size: 16px;
  line-height: 18px;
  padding: 3px 3px 6px;
  border-bottom: 1px solid #ffffff;
  display: block;
}
.datebox .month {
  font-size: 18px;
  line-height: 20px;
  padding: 6px 3px 3px;
  display: block;
}
.datebox .year {
  font-size: 28px;
  line-height: 32px;
  font-weight: bold;
  display: block;
}
/* Mouseover */
.item.clickbox:hover, item.clickbox:focus {
  color: #ffffff;
  background: #C52276;
  box-shadow: 1px 1px 6px 1px rgba(0, 0, 0, 0.3);
  border-color: #C52276;
}
.item.clickbox:hover h3.headline, item.clickbox:focus h3.headline {
  color: #ffffff;
}
.item.clickbox:hover a, item.clickbox:focus a {
  color: #ffffff;
}
.item.clickbox:hover .datebox, item.clickbox:focus .datebox {
  color: #C52276;
  background: #ffffff;
}
.item.clickbox:hover .datebox .day, item.clickbox:focus .day {
  border-color: #C52276;
}
.item.clickbox:active {
  background: #F67E64;
}
.pagination {
  margin: 24px 0;
}
/* ---------[ Buttons und Pagination ]--------- */
.button.ghost.back {
  text-align: left;
  padding-left: 15%;
  background: #fff url("/inc/img/arrow-left-powerpink.svg") no-repeat 5%;
  background-size: 9px 13px;
}
.button.ghost.forth {
  text-align: right;
  padding-right: 15%;
  background: #fff url("/inc/img/arrow-right-powerpink.svg") no-repeat 95%;
  background-size: 9px 13px;
}
.pagination .pages {
  text-align: center;
  margin: 24px 0;
  padding: 12px 24px;
}
.pagination .pages a, .pagination .pages span {
  text-decoration: none;
  padding: 12px;
  text-align: center;
  border: 1px solid lightgrey;
  border-radius: 2px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.pagination .pages span {
  box-shadow: none;
}
.pagination .pages a:hover, .pagination .pages a:focus {
  border-color: #DB539D;
}
/* ---------[ Call to Action ]--------- */
.calltoaction {
  margin: 24px 3px;
  color: #fff;
  padding: 6px 24px;
  background: #C52276;
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 20px;
  border-radius: 2px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  font-size: 22px;
  font-size: 2.2rem;
  transition: background 0.2s ease-in-out;
}
.calltoaction span {
  display: block;
  font-size: 16px;
  font-size: 1.6 rem;
  margin-top: 6px;
}
.calltoaction:hover {
  color: #fff;
  background: #DB539D;
}
/* ---------[ Teaser-Element solo ]--------- */
.teaser.clickbox {
  color: #333333;
  background: #ffffff;
  padding: 1px 0;
  margin: 24px 0;
  border: 1px solid #C52276;
  transition: background 0.2s ease-in-out;
}
.teaser.clickbox:hover, .teaser.clickbox:focus {
  color: #ffffff;
  background: #C52276;
  box-shadow: 1px 1px 6px 1px rgba(0, 0, 0, 0.3);
}
.teaser h2, .teaser h3 {
  padding-left: 4.762%;
  /* entspricht den 4% article-Padding */
  padding-right: 4.762%;
}
.teaser h2 a, .teaser h3 a {
  text-decoration: none;
}
.teaser.clickbox:hover h3 a {
  color: #ffffff;
}
.teaser p {
  padding-left: 4.762%;
  /* entspricht den 4% article-Padding */
  padding-right: 4.762%;
}
.teaser.clickbox:active {
  background: #F67E64;
}
/* ---------[ Teaser-Liste Flex ]--------- */
.teaser-flex {
  display: flex;
  flex-direction: row;
  margin: 24px -12px;
  margin: 24px -1.22%;
  flex-wrap: wrap;
}
.teaser-flex .teaser {
  margin: 0 1.191% 2.382%;
  transition: all 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
}
/* Wenn Breite nicht speziell definiert, 1 Teaser Pro Zeile */
.teaser-flex .teaser {
  /* width: -webkit-calc(100% / 1 - 2 * 12px); */
  width: 100%;
}
/* Neue Image Lösung im Teaser */
.teaser-flex img.pic {
  display: none;
}
.teaser-flex .teaser-image {
  height: 132px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
/* ---------[ Youtube-Video responsive ]--------- */
.responsive-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin: 24px 0;
}
.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* ---------[ Teamliste ]--------- */
.teamlist {
  overflow: hidden;
}
.teammember {
  clear: both;
}
.team-pic {
  margin: 24px auto;
  position: relative;
}
.team-pic img.pic {
  border: solid #C52276 1px;
  border-radius: 50%;
  margin: 0 auto;
  max-width: 180px;
  z-index: 2;
  position: relative;
  display: block;
  overflow: hidden;
}
/* ==============================[ Footer ]============================== */
footer {
  color: #ffffff;
  padding: 24px 4% 2px;
  background-color: #8B8170;
}
footer .logo img {
  width: 100%;
  max-width: 240px;
}
footer a {
  color: #ffffff;
  text-decoration: none;
}
footer a:hover, footer a:focus {
  color: #ffffff;
  text-decoration: underline;
}
footer .logowall {
  line-height: 18px;
  position: relative;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
}
footer .logowall p {
  max-width: 280px;
  margin: 24px 0;
}
footer .logowall img {
  margin: 0px;
}
footer .logowall .weitere {
  margin: 0 -6px;
  max-width: 100%;
}
footer .logowall .weitere img {
  float: left;
  margin: 4px;
  width: calc(100% / 3 - 8px);
}
footer .googlemaps {
  display: none;
}
footer .logo-union {
  background-color: #fff;
}
footer .unis img {
  /*max-height: 50px;*/
}
@media screen and (max-width: 358px) {
  a.logo {
    max-width: 160px;
    background-size: 160px;
    height: 96px;
  }
}
@media screen and (min-width: 680px) {
  /* ==============================[ Basiselemente ]============================== */
  h1 {
    font-size: 34px;
    font-size: 3.4rem;
    line-height: 36px;
    line-height: 3.6rem;
  }
  /* ==============================[ Header ]============================== */
  /* Logo im Header */
  a.logo {
    margin-left: 8%;
    margin-left: calc(8% - 41px);
  }
  /* ==============================[ Navigationen ]============================== */
  /* ---------[ Hauptnavigation ]--------- */
  /* Toggle-Button für Mobile-Menu */
  div.nav-toggle {
    right: 8%;
    right: calc(8% - 8px);
    /* rechter Rand abzgl. Button-Padding*/
  }
  ul.mainnavul > li a {
    padding-left: 4%;
    padding-left: calc(8% + 0px);
    /* eingerückt auf linke Kante Logotext */
  }
  ul.mainnavul > li ul {
    margin: 8px 48px 8px 8%;
  }
  ul.mainnavul > li ul li a {
    padding-left: calc(2% + 36px);
    /* Einrückgung bis linke Kante Logtext */
    background: url("/inc/img/linkarrow-white.svg") no-repeat 2% 50%;
  }
  ul.mainnavul > li:last-child a {
    background: url(/inc/img/kreuz.svg) #C52276 14px 50% no-repeat;
  }
  ul.mainnavul > li:last-child a:hover, ul.mainnavul > li:last-child a:focus {
    background: url(/inc/img/kreuz.svg) #DB539D 14px 50% no-repeat;
  }
  /* ---------[ Subnavigation als zweite Ebene der Hauptnavi ]--------- */
  .dropdown > ul {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
    margin-left: 8%;
  }
  /* ==============================[ Content ]============================== */
  article {
    padding: 0 4.347% 36px;
    margin-top: 36px;
  }
  /* Inhaltsbereich auf Keyvisual hochziehen */
  #start article, #rubrik article {
    margin-top: -103px;
  }
  /* Padding li/re auf Null */
  #start .pullup, #rubrik .pullup {
    padding: 0;
  }
  /* Padding li/re Auffüllen mit Weiß */
  #start .pushup, #rubrik .pushup {
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #ffffff;
    padding: 0 4.347%;
    min-height: 110px;
  }
  /* Breite für äußerste Container */
  article div.inner {
    margin: 0 auto;
    padding: 0 4.347%;
    /* Article-Padding nach innen*/
    width: 100%;
  }
  /* Keyvisual */
  div.keyvisual {
    height: 332px;
  }
  /* ---------[ Bildergalerie ]--------- */
  /* Bildergalerie auf 6col und kleiner immer vollbreit*/
  .l-col2 ul.image-gallery li, .l-col3 ul.image-gallery li, .l-col4 ul.image-gallery li, .l-col6 ul.image-gallery li {
    width: 100%;
  }
  ul.image-gallery li {
    width: 48.78%;
    float: left;
    margin-right: 2.44%;
  }
  /* Jedes zweite Bild keinen Abstand rechts */
  ul.image-gallery li:nth-child(2n) {
    margin-right: 0;
  }
  /* Jedes auf ein zweites Bild folgende Bild floatet nicht um Colapse der Zeile zu vermeiden */
  ul.image-gallery li:nth-child(2n + 1) {
    clear: both;
  }
  /* ---------[ Infokasten Fläche ]--------- */
  .infobox {
    padding: 36px 4.762% 12px;
    /* entspricht den 4% Article-Padding für 12col*/
  }
  .m-col3 .infobox {
    padding-left: 22.222%;
    padding-right: 22.222%;
  }
  .m-col4 .infobox {
    padding-left: 15.789%;
    padding-right: 15.789%;
  }
  .m-col6 .infobox {
    padding-left: 10%;
    padding-right: 10%;
  }
  .m-col8 .infobox {
    padding-left: 7.317%;
    padding-right: 7.317%;
  }
  /* ---------[ Infokasten Rahmen ]--------- */
  .borderbox {
    padding: 36px 4.762% 12px;
    /* entspricht den 4% Article-Padding für 12col*/
  }
  .m-col3 .borderbox {
    padding-left: 22.222%;
    padding-right: 22.222%;
  }
  .m-col4 .borderbox {
    padding-left: 15.789%;
    padding-right: 15.789%;
  }
  .m-col6 .borderbox {
    padding-left: 10%;
    padding-right: 10%;
  }
  .m-col8 .borderbox {
    padding-left: 7.317%;
    padding-right: 7.317%;
  }
  /* ---------[ News- und Eventliste ]--------- */
  .m-col3 .item {
    padding-left: 22.222%;
    padding-right: 22.222%;
  }
  .m-col4 .item {
    padding-left: 15.789%;
    padding-right: 15.789%;
  }
  .m-col6 .item {
    padding-left: 10%;
    padding-right: 10%;
  }
  .m-col8 .item {
    padding-left: 7.317%;
    padding-right: 7.317%;
  }
  /* ---------[ Teaser-Element solo ]--------- */
  .m-col3 .teaser h2, .m-col3 .teaser h3, .m-col3 .teaser p {
    padding-left: 22.222%;
    padding-right: 22.222%;
  }
  .m-col4 .teaser h2, .m-col4 .teaser h3, .m-col4 .teaser p {
    padding-left: 15.789%;
    padding-right: 15.789%;
  }
  .m-col6 .teaser h2, .m-col6 .teaser h3, .m-col6 .teaser p {
    padding-left: 10%;
    padding-right: 10%;
  }
  .m-col8 .teaser h2, .m-col8 .teaser h3, .m-col8 .teaser p {
    padding-left: 7.317%;
    padding-right: 7.317%;
  }
  /* ---------[ Subnavigations-Teaser im Content – pinke Kästen ]--------- */
  /* auf large vier pro Reihe */
  article nav.subnav ul {
    margin: 0 -1.16279%;
  }
  article nav.subnav ul li {
    margin: 12px 1.16279%;
    width: 22.6744%;
    /* (1008px plus 24px) minus 4 mal 24px durch 4 = 234px auf 1032px*/
  }
  /* Sonderfall Elternschule - Teaser breiter */
  article nav.subnav.parental ul li {
    width: 47.674%;
    /* (1008px plus 24px) minus 2 mal 24px durch 2 = 492px auf 1032px */
  }
  /* ==============================[ Footer ]============================== */
  footer {
    padding: 24px 8% 12px;
    border: none;
  }
  footer .logowall {
    border: none;
  }
  footer .logowall p {
    text-align: left;
  }
  footer .googlemaps {
    display: block;
    height: 256px;
    width: 100%;
    margin: 24px 0;
  }
  /* Flexible Teaser */
  /* Wenn Breite nicht speziell definiert, 4 Teaser Pro Zeile */
  /* Wenn Breite nicht speziell definiert, 4 Teaser Pro Zeile */
  .teaser-flex .teaser {
    width: 47.619%;
  }
  .teaser-flex.cols-4 .teaser, .teaser-flex.cols-8 .teaser, .teaser-flex.cols-12 .teaser, .teaser-flex.cols-16 .teaser, .teaser-flex.cols-20 .teaser, .teaser-flex.cols-24 .teaser {
    width: 47.619%;
  }
  .teaser-flex.cols-3 .teaser, .teaser-flex.cols-6 .teaser, .teaser-flex.cols-9 .teaser, .teaser-flex.cols-15 .teaser, .teaser-flex.cols-18 .teaser, .teaser-flex.cols-21 .teaser {
    width: 30.952%;
  }
  .teaser-flex.cols-2 .teaser {
    width: 47.619%;
  }
  .teaser-flex.cols-1 .teaser {
    width: 100%;
  }
}
@media screen and (min-width: 1280px) {
  /* ==============================[ Basiselemente ]============================== */
  /* Breite für äußerste Container */
  div.inner {
    max-width: 1248px;
    margin: 0 auto;
    width: 100%;
    padding: 0 28px;
  }
  article div.inner {
    padding: 0 48px;
  }
  /* Farbstreifen Corporate Design */
  body:before {
    content: url(/inc/img/farbstreifen.svg);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 99;
    width: 32px;
    height: 696px;
    overflow: hidden;
  }
  /* ==============================[ Header ]============================== */
  header {
    border-bottom: 1px solid #ffffff;
    position: -webkit-sticky;
    position: sticky;
    top: -206px;
    z-index: 10;
  }
  /* Logo im Header */
  a.logo {
    margin: 27px 72px 24px -26px;
  }
  /* ==============================[ Navigationen ]============================== */
  .header-flex {
    flex-direction: row;
  }
  /* ---------[ Hauptnavigation ]--------- */
  /* Button für Mobile-Menu */
  div.nav-toggle {
    display: none;
  }
  /* Ganzer Navibereich */
  nav.mainnav {
    border: none;
    width: auto;
    margin: 101px 0 0;
    clear: none;
  }
  /* Hauptnavigation erste Ebene. Auf large nicht einklappbar */
  ul.mainnavul {
    margin: 0 -8px;
    display: block !important;
    overflow: visible !important;
  }
  ul.mainnavul > li {
    padding: 0;
    margin: 0 3px;
    border: none;
    float: left;
  }
  ul.mainnavul > li > a {
    border: 1px solid #8B8170;
    border-width: 1px 1px 0;
    padding: 24px 14px;
  }
  ul.mainnavul > li:hover > a, ul.mainnavul > li > a:hover {
    /* Hover über Unterpunkte erhält Hover des Listenpunkts */
    background: #ffffff;
    color: #8B8170;
  }
  /* Aufklick-Indikator für Menüpunkte mit Dropdown */
  ul.mainnavul .toggle {
    display: none;
  }
  /* Notfall-Button als letzten Menüpunkt anders stylen*/
  ul.mainnavul > li:last-child {
    float: right;
  }
  ul.mainnavul > li:last-child a {
    padding-left: 58px;
    border: 1px solid #ffffff;
    border-width: 1px 1px 0;
    padding-top: 24px;
    margin-top: 0;
  }
  /* ---------[ Subnavigation als zweite Ebene der Hauptnavi ]--------- */
  /* Dropdown */
  .dropdown {
    opacity: 0;
    display: none;
    transition: all 0.2s ease-in-out;
    position: absolute;
  }
  /* Dropdown-Ebene (Ebene unter Hauptnavi) */
  ul.mainnavul > li:hover .dropdown {
    opacity: 1;
    display: block;
    z-index: 1;
  }
  .dropdown > ul {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
  }
  ul.mainnavul > li ul {
    background: #fff;
    padding: 24px 16px;
    border: 1px solid #8B8170;
    border-width: 0 1px 1px;
    z-index: 2;
    margin: 0;
  }
  /* Styling Subnavigation Listenpunkte */
  ul.mainnavul > li ul li {
    padding: 2px;
  }
  /* Styling Subnavigation Hyperlinks */
  ul.mainnavul > li ul li a {
    color: #C52276;
    padding: 0 0 0 34px;
    margin: 0 0 6px;
    background: url("/inc/img/linkarrow-powerpink.svg") no-repeat 0 50%;
  }
  ul.mainnavul > li ul li a:hover, ul.mainnavul > li ul li a:focus {
    color: #DB539D;
    background-image: url("/inc/img/linkarrow-berry.svg");
  }
  /* Styling Subnavigation Current Hyperlinks */
  ul.mainnavul > li ul li.current a {
    color: #ffffff;
    padding: 2px 0 2px 34px;
    background: url("/inc/img/linkarrow-white.svg") no-repeat 2px 50% #C52276;
  }
  ul.mainnavul > li ul li.current a:hover, ul.mainnavul > li ul li.current a:focus {
    color: #ffffff;
    background: url("/inc/img/linkarrow-white.svg") no-repeat 2px 50% #C52276;
  }
  ul.mainnavul > li:nth-last-child(2):hover .dropdown > ul {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
  }
  /* ---------[ Globale Navigation ]--------- */
  /* ==============================[ Content ]============================== */
  article {
    padding: 0 0 36px;
  }
  /* Inhaltsbereich auf Keyvisual hochziehen */
  #start article, #rubrik article {
    margin-top: -102px;
  }
  #start .pushup, #rubrik .pushup {
    padding-left: 48px;
    padding-right: 48px;
  }
  /* Keyvisual */
  div.keyvisual {
    height: 437px;
  }
  /* ---------[ Bildergalerie ]--------- */
  /* ---------[ Infokasten Fläche und Infokasten Rahmen ]--------- */
  .infobox, .borderbox {
    padding: 48px 48px 12px !important;
  }
  /* ---------[ News- und Eventliste ]--------- */
  .itemlist .item h2, .itemlist .item h3, .itemlist .item p {
    margin-left: 0;
  }
  /* ==============================[ Footer ]============================== */
  footer {
    padding: 48px 0;
  }
  /* Flexible Teaser */
  /* Wenn Breite nicht speziell definiert, 4 Teaser Pro Zeile */
  .teaser-flex.cols-4 .teaser, .teaser-flex.cols-8 .teaser, .teaser-flex.cols-12 .teaser, .teaser-flex.cols-16 .teaser, .teaser-flex.cols-20 .teaser, .teaser-flex.cols-24 .teaser {
    width: 22.618%;
  }
}
@media print {
  *, a, .infobox a {
    color: #000;
    font-size: 14px;
  }
  h1, h2, h3, .itemlist .item h2, .itemlist .item h3, .itemlist .item p {
    margin: 0;
  }
  p, ul, ol {
    margin: 16px 0;
  }
  h2, h3, .infobox h2, .infobox h3, .headline a, .tracking-button {
    color: #000 !important;
    font-size: 18px;
    line-height: 22px;
  }
  article {
    padding: 0 6px;
  }
  article > section:first-child:before {
    content: url(/inc/img/logo-klinikum-freising-graun.svg);
    display: block;
    padding: 12px 0;
  }
  .breadcrumb {
    margin-top: 12px;
  }
  .keyvisual, header, img, img.pic, .team-pic img.pic, .logowall, .button.ghost, .image-gallery, a.imagelightbox.tracking-button {
    display: none;
  }
  a.imagelightbox:after {
    content: none;
  }
  .infobox, .borderbox {
    padding: 0;
    margin: 0;
    background: none;
  }
  .infobox a.linkarrow {
    background: none;
    color: #000;
  }
  .infobox.clickbox:hover, .infobox.clickbox:hover a.linkarrow, .item.clickbox:hover, item.clickbox:focus, .teaser.clickbox:hover, .teaser.clickbox:focus {
    background: none;
    color: #000 !important;
    box-shadow: none;
    border-color: transparent;
  }
  .item.clickbox {
    padding: 0 0 12px;
  }
  .news .datebox, .datebox, .events .datebox {
    text-align: left;
    background: none;
  }
  .subnav li {
    list-style-type: none;
  }
  article nav.subnav ul li a, article nav.subnav.parental ul li a {
    border-color: #000;
    color: #000;
  }
  .inner, .s-col12, .s-push0, .m-col4, .m-push4, .l-col4, .l-push4, .m-col4 .infobox, .m-col6 .item, .l-push3, .s-col6, .s-push3, .m-col3, .m-push0, .l-col2, .l-push0 {
    margin: 0;
    padding: 0;
    width: 100%;
    float: none;
    height: auto !important;
  }
  .teaser.clickbox, .borderbox {
    border: none;
    margin: 0;
    height: auto !important;
  }
  .teaser h2, .teaser h3, .teaser p {
    padding: 0;
  }
  .unis, footer .logowall p {
    margin: 0;
    text-align: left;
  }
  a.link-pdf {
    height: auto !important;
    padding: 0;
    border: none;
  }
  a.link-pdf:before {
    content: "PDF:";
    background: none;
    color: #444;
    position: relative;
    margin-right: 12px;
  }
  a.linkarrow {
    width: 100%;
    padding-left: 0;
    background: none;
    color: #000;
  }
  a.linkarrow:after {
    content: " (" attr(href) ") ";
    display: inline-block;
    font-size: 0.8em;
    font-weight: normal;
    margin-left: 16px;
    color: #444;
  }
  a.linkarrow:hover, a.linkarrow:focus {
    background: none;
  }
  ul li {
    background: none;
    list-style-type: disc;
    padding: 0;
  }
  .teammember p {
    margin: 0;
  }
  footer {
    padding: 0;
    background-color: transparent;
  }
  footer a {
    color: #000;
  }
}
/* [ PLUGINS ] +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* LightboxImage im Content */
a.imagelightbox {
  display: block;
  position: relative;
  margin: 0;
  transition: 0.2s ease-in-out;
}
a.imagelightbox:hover {
  filter: contrast(110%) saturate(110%);
}
/* Button/Lupe zum Öffnen */
a.imagelightbox:after {
  content: "+";
  position: absolute;
  background: #C52276;
  right: -6px;
  bottom: -6px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 26px;
  text-align: center;
  line-height: 26px;
  transition: 0.2s ease-in-out;
}
a.imagelightbox:hover:after {
  background: #DB539D;
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
}
#imagelightbox {
  position: fixed;
  z-index: 9999;
  -ms-touch-action: none;
  touch-action: none;
  cursor: pointer;
  -webkit-box-shadow: 0 0 3.125em rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 3.125em rgba(0, 0, 0, 0.75);
}
/* ACTIVITY INDICATION */
#imagelightbox-loading, #imagelightbox-loading div {
  border-radius: 50%;
}
#imagelightbox-loading {
  width: 2.5em;
  /* 40 */
  height: 2.5em;
  /* 40 */
  background-color: #444;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 10003;
  top: 50%;
  left: 50%;
  padding: 0.625em;
  /* 10 */
  margin: -1.25em 0 0 -1.25em;
  /* 20 */
  -webkit-box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.75);
  /* 40 */
  box-shadow: 0 0 2.5em rgba(0, 0, 0, 0.75);
  /* 40 */
}
#imagelightbox-loading div {
  width: 1.25em;
  /* 20 */
  height: 1.25em;
  /* 20 */
  background-color: #fff;
  -webkit-animation: imagelightbox-loading 0.5s ease infinite;
  animation: imagelightbox-loading 0.5s ease infinite;
}
@-webkit-keyframes imagelightbox-loading {
  from {
    opacity: 0.5;
    -webkit-transform: scale(0.75);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
  to {
    opacity: 0.5;
    -webkit-transform: scale(0.75);
  }
}
@keyframes imagelightbox-loading {
  from {
    opacity: 0.5;
    transform: scale(0.75);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0.5;
    transform: scale(0.75);
  }
}
/* OVERLAY */
#imagelightbox-overlay {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  z-index: 9998;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
/* "CLOSE" BUTTON */
#imagelightbox-close {
  width: 40px;
  /* 40 */
  height: 40px;
  /* 40 */
  text-align: left;
  background-color: #C52276;
  border-radius: 50%;
  position: fixed;
  z-index: 10002;
  top: 40px;
  /* 40 */
  right: 40px;
  /* 40 */
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
#imagelightbox-close:hover, #imagelightbox-close:focus {
  background-color: #DB539D;
}
#imagelightbox-close:before, #imagelightbox-close:after {
  width: 2px;
  background-color: #fff;
  content: "";
  position: absolute;
  top: 20%;
  bottom: 20%;
  left: 50%;
  margin-left: -1px;
}
#imagelightbox-close:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#imagelightbox-close:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* CAPTION */
#imagelightbox-caption {
  text-align: center;
  color: #fff;
  background-color: #C52276;
  position: fixed;
  z-index: 10001;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.625em;
  /* 10 */
}
/* NAVIGATION */
#imagelightbox-nav {
  background-color: #C52276;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  position: fixed;
  z-index: 10001;
  left: 50%;
  bottom: 3.75em;
  /* 60 */
  padding: 0.313em;
  /* 5 */
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#imagelightbox-nav button {
  width: 1em;
  /* 20 */
  height: 1em;
  /* 20 */
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  display: inline-block;
  margin: 0 0.313em;
  /* 5 */
}
#imagelightbox-nav button.active {
  background-color: #fff;
}
/* ARROWS */
.imagelightbox-arrow {
  width: 40px;
  height: 80px;
  background-color: #C52276;
  vertical-align: middle;
  display: none;
  position: fixed;
  z-index: 10001;
  top: 50%;
  margin-top: -40px;
  border: none;
  outline: none;
}
.imagelightbox-arrow:hover, .imagelightbox-arrow:focus {
  background-color: #DB539D;
}
.imagelightbox-arrow:active {
  background-color: #C52276;
}
.imagelightbox-arrow-left {
  left: 40px;
}
.imagelightbox-arrow-right {
  right: 40px;
}
.imagelightbox-arrow:before {
  width: 0;
  height: 0;
  border: 1em solid transparent;
  content: "";
  display: inline-block;
  margin-bottom: -2px;
}
.imagelightbox-arrow-left:before {
  border-left: none;
  border-right-color: #fff;
  margin-left: -5px;
}
.imagelightbox-arrow-right:before {
  border-right: none;
  border-left-color: #fff;
  margin-right: -5px;
  /* 5 */
}
#imagelightbox-loading, #imagelightbox-overlay, #imagelightbox-close, #imagelightbox-caption, #imagelightbox-nav, .imagelightbox-arrow {
  -webkit-animation: fade-in 0.25s linear;
  animation: fade-in 0.25s linear;
}
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media only screen and (max-width: 660px) {
  /* 660 */
  #container {
    width: 100%;
  }
  #imagelightbox-close {
    top: 15px;
    right: 15px;
  }
  #imagelightbox-nav {
    bottom: 15px;
  }
  .imagelightbox-arrow {
    width: 40px;
    height: 60px;
    margin-top: -30px;
  }
  .imagelightbox-arrow-left {
    left: 15px;
  }
  .imagelightbox-arrow-right {
    right: 15px;
  }
}
@media only screen and (max-width: 320px) {
  /* 320 */
  .imagelightbox-arrow-left {
    left: 0;
  }
  .imagelightbox-arrow-right {
    right: 0;
  }
}
/* @import "vendor/swiper";																											// Swiper – swiper.scss */
/* ==================== Akkordeon ==================== */
.accordion {
  margin: 1em 0;
}
.accordion .title {
  cursor: pointer;
  padding: 0 18px 0 0;
  margin-bottom: 6px;
  background: #C52276;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.accordion .title h2, .accordion .title h3 {
  font-weight: normal;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 24px;
  line-height: 2.4rem;
  display: block;
  padding: 12px 4.762%;
  margin: 0;
  background: url("/inc/img/arrow-right-white.svg") no-repeat right;
  background-size: 9px 13px;
  position: relative;
}
.accordion .title:hover {
  background: #DB539D;
}
.accordion .acc-content {
  margin: 6px 0;
  padding: 0 4.762%;
}
.accordion .acc-item:last-child .acc-content {
  border-bottom: 1px solid #C52276;
}
/* wenn Akkordeon offen */
.accordion .open {
  margin-bottom: 0px;
  background: #DB539D;
}
.accordion .open h2, .accordion .open h3 {
  background: url("/inc/img/arrow-down-white.svg") no-repeat right;
  background-size: 13px 9px;
}
@media screen and (min-width: 1280px) {
  /* ==================== Sticky Footer (http://www.cssstickyfooter.com) ==================== */
  /* (wenn nicht gewünscht inklusive im HTML #wrap und #main löschen)
HTML: <div id="wrap"><div id="main">...</div></div> <footer>...</footer> */
  html, body {
    height: 100%;
  }
  #wrap {
    min-height: 100%;
  }
  #main {
    /* overflow: auto for Quircksmode, causes trouble when Page is smaller than 960px */
    padding-bottom: 442px;
    /* must be same height as the footer */
  }
  footer {
    position: relative;
    margin-top: -442px;
    /* negative value of footer height */
    height: 442px;
    clear: both;
  }
}
