@charset "UTF-8";
.contao-cookiebar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
  padding: 15px;
  max-height: 100vh;
  box-sizing: border-box;
  pointer-events: none;
  overflow: hidden; }
  .contao-cookiebar * {
    box-sizing: border-box; }
  .contao-cookiebar:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle; }
  .contao-cookiebar .cc-inner {
    display: inline-block;
    overflow-y: auto;
    max-height: 100%;
    max-width: 100%;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    font-size: 1rem;
    text-align: left; }
  .contao-cookiebar.cc-top .cc-inner {
    vertical-align: top; }
  .contao-cookiebar.cc-top.cc-active .cc-inner {
    animation: cookiebar-top-in 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-top.cc-saved .cc-inner {
    animation: cookiebar-top-out 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-bottom .cc-inner {
    vertical-align: bottom; }
  .contao-cookiebar.cc-bottom.cc-active .cc-inner {
    animation: cookiebar-bottom-in 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-bottom.cc-saved .cc-inner {
    animation: cookiebar-bottom-out 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-middle .cc-inner {
    vertical-align: middle; }
  .contao-cookiebar.cc-middle.cc-active .cc-inner {
    animation: cookiebar-middle-in 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-middle.cc-saved .cc-inner {
    animation: cookiebar-middle-out 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-left {
    text-align: left; }
  .contao-cookiebar.cc-right {
    text-align: right; }
  .contao-cookiebar .cc-head h1:first-child, .contao-cookiebar .cc-head h2:first-child, .contao-cookiebar .cc-head h3:first-child, .contao-cookiebar .cc-head h4:first-child, .contao-cookiebar .cc-head h5:first-child, .contao-cookiebar .cc-head h6:first-child {
    margin-top: 0; }
  .contao-cookiebar .cc-head p {
    margin-bottom: 15px; }
  .contao-cookiebar .cc-btn {
    display: inline-block;
    cursor: pointer;
    width: 100%;
    padding: 8px 14px;
    margin-bottom: 8px;
    font-size: 15px;
    outline: 0 none;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    color: #444;
    background: #f5f5f5; }
    .contao-cookiebar .cc-btn:hover {
      background: #ececec; }
    .contao-cookiebar .cc-btn.success {
      background: #4e9e3e;
      border-color: #3e7830;
      color: #fff; }
      .contao-cookiebar .cc-btn.success:hover {
        background: #4c933f; }
    .contao-cookiebar .cc-btn:last-child {
      margin-bottom: 0; }
  .contao-cookiebar label {
    position: relative;
    display: block;
    padding: 8px 13px 8px 0;
    line-height: 1.2rem; }
    .contao-cookiebar label.group {
      font-weight: 600; }
  .contao-cookiebar input {
    position: absolute;
    width: 1px;
    height: 1px;
    outline: 0 none;
    opacity: 0; }
    .contao-cookiebar input + label {
      padding: 8px 13px 8px 50px;
      cursor: pointer; }
      .contao-cookiebar input + label:before {
        content: '';
        position: absolute;
        top: 6px;
        left: 0;
        width: 35px;
        height: 18px;
        margin: 0;
        box-sizing: content-box;
        border-radius: 10px;
        background: #fff;
        border: 2px solid #9c9b99;
        transition: border-color .2s; }
      .contao-cookiebar input + label:after {
        display: block;
        content: '';
        position: absolute;
        top: 10px;
        left: 4px;
        width: 14px;
        height: 14px;
        border-radius: 10px;
        background: #9c9b99;
        transition: background .2s, margin-left .2s, padding .2s; }
      .contao-cookiebar input + label:active:after {
        padding-left: 5px; }
    .contao-cookiebar input.cc-group-half + label:after {
      background: linear-gradient(to right, #9c9b99 0%, #9c9b99 50%, #399d32 50%, #399d32 100%); }
    .contao-cookiebar input:checked + label:after {
      background: #399d32;
      margin-left: 17px; }
    .contao-cookiebar input:checked + label:active:after {
      margin-left: 12px; }
    .contao-cookiebar input:checked + label:before {
      background: #dcf3db;
      border-color: #399d32; }
    .contao-cookiebar input:disabled + label {
      pointer-events: none; }
      .contao-cookiebar input:disabled + label:after {
        background: #c8c7c5; }
      .contao-cookiebar input:disabled + label:before {
        background: #f4f4f4;
        border-color: #c8c7c5; }
  .contao-cookiebar.cc-active .cc-inner {
    opacity: 1;
    pointer-events: auto;
    visibility: visible; }
  .contao-cookiebar.cc-active.cc-blocked {
    pointer-events: auto;
    animation: cookiebar-overlay-in 0.5s ease-in-out forwards; }
  .contao-cookiebar.cc-saved.cc-inner {
    opacity: 0;
    pointer-events: none;
    visibility: hidden; }
  .contao-cookiebar.cc-saved.cc-blocked {
    pointer-events: none;
    animation: cookiebar-overlay-out 0.5s ease-in-out forwards; }

@media (min-width: 768px) {
  .contao-cookiebar .cc-btn {
    width: auto;
    margin-bottom: 0; }
  .contao-cookiebar .cc-inner {
    max-width: 750px; } }

@keyframes cookiebar-overlay-in {
  0% {
    background: rgba(0, 0, 0, 0); }
  100% {
    background: rgba(0, 0, 0, 0.75); } }

@keyframes cookiebar-overlay-out {
  0% {
    background: rgba(0, 0, 0, 0.75); }
  100% {
    background: rgba(0, 0, 0, 0);
    visibility: hidden; } }

@keyframes cookiebar-top-in {
  0% {
    opacity: 0;
    transform: translateY(-100%); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes cookiebar-top-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%); } }

@keyframes cookiebar-middle-in {
  0% {
    opacity: 0;
    transform: scale(0); }
  100% {
    opacity: 1;
    transform: scale(1); } }

@keyframes cookiebar-middle-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: scale(1); }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: scale(0); } }

@keyframes cookiebar-bottom-in {
  0% {
    opacity: 0;
    transform: translateY(100%); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

@keyframes cookiebar-bottom-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%); } }

.cookiebar_default {
  color: #444444; }
  .cookiebar_default p {
    color: #868686;
    line-height: 1.4; }
  .cookiebar_default .cc-inner {
    padding: 25px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    background: #fff; }
  .cookiebar_default .cc-group {
    position: relative;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    margin-bottom: 10px; }
    .cookiebar_default .cc-group > label {
      margin: 5px 130px 5px 10px; }
    .cookiebar_default .cc-group .cc-detail-btn {
      position: absolute;
      right: 0;
      top: 0;
      border: 0 none;
      outline: 0 none;
      background: transparent;
      font-size: 13px;
      letter-spacing: 0;
      text-transform: initial;
      cursor: pointer;
      color: #a2a2a2;
      padding: 8px 13px 8px 13px;
      line-height: 1.2rem;
      margin: 5px 5px 5px 0; }
      .cookiebar_default .cc-group .cc-detail-btn span:nth-child(2) {
        display: none; }
      .cookiebar_default .cc-group .cc-detail-btn.cc-active span:nth-child(1) {
        display: none; }
      .cookiebar_default .cc-group .cc-detail-btn.cc-active span:nth-child(2) {
        display: inline; }
      .cookiebar_default .cc-group .cc-detail-btn:hover {
        color: #717171; }
    .cookiebar_default .cc-group .cc-detail-btn-details {
      display: inline-block;
      border: 0 none;
      outline: 0 none;
      background: transparent;
      font-size: 13px;
      letter-spacing: 0;
      text-transform: initial;
      cursor: pointer;
      color: #a2a2a2;
      text-decoration: underline;
      padding: 0;
      margin: 0 0 10px; }
      .cookiebar_default .cc-group .cc-detail-btn-details span:nth-child(2) {
        display: none; }
      .cookiebar_default .cc-group .cc-detail-btn-details.cc-active span:nth-child(1) {
        display: none; }
      .cookiebar_default .cc-group .cc-detail-btn-details.cc-active span:nth-child(2) {
        display: inline; }
      .cookiebar_default .cc-group .cc-detail-btn-details:hover {
        color: #717171; }
  .cookiebar_default .cc-cookies {
    display: none;
    background: #fbfbfb;
    border-radius: 0 0 5px 5px; }
    .cookiebar_default .cc-cookies > p {
      font-size: 0.875rem; }
    .cookiebar_default .cc-cookies > p, .cookiebar_default .cc-cookies > .cc-cookie {
      margin: 0;
      padding: 15px;
      border-top: 1px solid #e6e6e6; }
    .cookiebar_default .cc-cookies .cc-cookie .cc-cookie-info {
      font-size: 0.875rem;
      background: #fff;
      padding: 10px;
      border-radius: 5px;
      border: 1px solid #efefef; }
      .cookiebar_default .cc-cookies .cc-cookie .cc-cookie-info > div + div {
        margin-top: 5px; }
      .cookiebar_default .cc-cookies .cc-cookie .cc-cookie-info + button.cc-detail-btn-details {
        margin-top: 15px; }
    .cookiebar_default .cc-cookies .cc-cookie .cc-cookie-desc > p {
      margin-bottom: 0; }
    .cookiebar_default .cc-cookies .cc-cookie label.cookie + p, .cookiebar_default .cc-cookies .cc-cookie label.cookie + .cc-cookie-info, .cookiebar_default .cc-cookies .cc-cookie label.cookie + button.cc-detail-btn-details {
      margin-top: 10px; }
    .cookiebar_default .cc-cookies .cc-cookie p {
      margin: 0 0 15px;
      font-size: 0.875rem; }
  .cookiebar_default .cc-footer, .cookiebar_default .cc-info {
    text-align: center; }
  .cookiebar_default .cc-info {
    margin-top: 15px; }
    .cookiebar_default .cc-info > p {
      font-size: 0.875rem; }
    .cookiebar_default .cc-info > a {
      display: inline-block;
      font-size: 0.813rem;
      color: #a2a2a2;
      text-decoration: none; }
      .cookiebar_default .cc-info > a:hover {
        color: #717171; }
      .cookiebar_default .cc-info > a + a:before {
        display: inline-block;
        content: '·';
        margin-right: 5px; }

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

body,form,figure{margin:0;padding:0}img{border:0}header,footer,nav,section,aside,article,figure,figcaption{display:block}body{font-size:100.01%}select,input,textarea{font-size:99%}#container,.inside{position:relative}#main,#left,#right{position:relative}#footer{clear:both}#main .inside{min-height:1px}.ce_gallery>ul{margin:0;padding:0;overflow:hidden;list-style:none}.ce_gallery>ul li{float:left}.ce_gallery>ul li.col_first{clear:left}.float_left{float:left}.float_right{float:right}.block{overflow:hidden}.clear,#clear{height:.1px;font-size:.1px;line-height:.1px;clear:both}.invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.custom{display:block}#container:after,.custom:after{content:"";display:table;clear:both}
/* barlow-300 - latin */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 300;
  src: url('/files/theme/layout/fonts/barlow/barlow-v5-latin-300.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-300.woff') format('woff'), /* Modern Browsers */
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-300.svg#Barlow') format('svg'); /* Legacy iOS */
}

/* barlow-regular - latin */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  src: url('/files/theme/layout/fonts/barlow/barlow-v5-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-regular.svg#Barlow') format('svg'); /* Legacy iOS */
}

/* barlow-500 - latin */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  src: url('/files/theme/layout/fonts/barlow/barlow-v5-latin-500.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-500.woff') format('woff'), /* Modern Browsers */
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-500.svg#Barlow') format('svg'); /* Legacy iOS */
}

/* barlow-600 - latin */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  src: url('/files/theme/layout/fonts/barlow/barlow-v5-latin-600.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-600.woff2') format('woff2'), /* Super Modern Browsers */
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-600.woff') format('woff'), /* Modern Browsers */
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-600.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-600.svg#Barlow') format('svg'); /* Legacy iOS */
}

/* barlow-700 - latin */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  src: url('/files/theme/layout/fonts/barlow/barlow-v5-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-700.woff') format('woff'), /* Modern Browsers */
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-700.svg#Barlow') format('svg'); /* Legacy iOS */
}

/* barlow-800 - latin */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 800;
  src: url('/files/theme/layout/fonts/barlow/barlow-v5-latin-800.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-800.woff2') format('woff2'), /* Super Modern Browsers */
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-800.woff') format('woff'), /* Modern Browsers */
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-800.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-800.svg#Barlow') format('svg'); /* Legacy iOS */
}

/* barlow-900 - latin */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 900;
  src: url('/files/theme/layout/fonts/barlow/barlow-v5-latin-900.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-900.woff2') format('woff2'), /* Super Modern Browsers */
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-900.woff') format('woff'), /* Modern Browsers */
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-900.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/files/theme/layout/fonts/barlow/barlow-v5-latin-900.svg#Barlow') format('svg'); /* Legacy iOS */
}

*{
    border: none;
    outline: none;
}

html{
font-size:100.1%;
overflow-x:hidden;
-webkit-overflow-scrolling: touch;
 -webkit-text-size-adjust: 100%;
}
 
body, html {
height:100%;
min-height:100%;
}

body{
font-family: 'Barlow', sans-serif;
color:#222;
font-size: 18px;
line-height: 2.1rem;
font-weight:500;
display: flex;
min-height: 100vh;
flex-direction: column;
}



  #wrapper {
    flex: 1 0 auto;
  }
/*Ende sticky footer*/

/*inputrendering*/
input,textarea,select{
/*Safari*/
-webkit-appearance: none;
border-radius:0;
-web-kit-border-radius:0;
}


figure img, .image_container > img{
max-width:100%;
height:auto;
}

/*set images to maxwidth 100%*/
figure{
line-height:0;
    margin: 0;
}

figure > img, .image_container > img{
max-width:100%;
height:auto;
}

a{
color:inherit;
}
 
 
a:focus{
}
/*Ende Basics*/



 a {
transition:all 0.2s ease;
-webkit-transition:all 0.2s ease;
-moz-transition:all 0.2s ease;
-o-transition:all 0.2s ease;
-ms-transition:all 0.2s ease; 
text-decoration: none;
color:inherit;
 }


.table{
display:table;
width:100%;
}

.table-wrapper {
  display: table;
  vertical-align: middle;
  text-align: center;
  width: 100%;
  height: 100%;
  table-layout:fixed;
}

.row{
display:table-row;
position:relative;
}

.row > *{
display:table-cell;
}

.vtop{
    vertical-align: top
}

.vmiddle{
    vertical-align: middle
}

.vbottom{
    vertical-align: bottom
}


.headlinecontainer{
margin-bottom:4rem;
}

.headlinecontainer > *{
margin:0;

}



ul li{
 
 
}

h1, h2, h3, h4, h5, h6 {

    font-weight: 500;
}
 
h1, .h1 {
  font-size:1.7em;
  line-height:1.2em;
  letter-spacing:0.03em;
  margin-bottom:0.5em;
}

h1,h2 {
    font-size: 40px;
    line-height: 1.2;
}
h3, .h3 {
    font-size: 30px;
    line-height: 1.3;
}
h4 {
font-size:1.4em;
    margin-bottom: 0;
}

h5, .h5{
font-size:16px;
font-weight:600;
}
h6{}


 
p{
margin-bottom:20px;
}

p:last-of-type{
margin-bottom:0;
}
 
ul,ol{
margin:0;
    padding:0;
}
 

 
li{
list-style-type:none;
}



#main {

}



#wrapper, footer > .inside{
    max-width: 1680px;
    margin: 0 auto;
    padding: 20px 2rem;
    width: 100%;
    box-sizing: border-box;
}


header > .inside .row > *{
    vertical-align: middle;
}

header > .inside .row > .headerright{
    vertical-align: top;
}

header > .inside .row > * > div{
    display: table;
    width: 100%;
}

header .mod_customnav > ul > li, header .mod_navigation > ul > li{
    float: left;
}

header > .inside{
    padding-bottom: 20px;
}

.headertop {
  
    
}


header ul{
    display: table;
}

.headertop nav ul li{
    font-size: 16px;
}

.mod_logo{
    max-width: 250px;
}

.mod_logo img, .image_container{
    max-width: 100%;
}

header nav{
    display: table;
    float: right;
}






header .headerbottom ul.level_1 > li,.headertop nav ul li{
    text-transform: uppercase;
    font-weight: 500;
    margin-left:2rem;
      color: rgba(0,0,0,1);
    letter-spacing: 0.3rem;
     font-size: 17px;
}
.headertop nav ul li{
font-weight:600;
     color:rgba(0,0,0,0.4);
    letter-spacing: 0.03rem;
    font-size: 14px;
   
}
header .headerbottom ul li.first,.headertop nav ul li.first{
    margin-left: 0;
}

#herosection{
    height:calc(100vh - (100vh / 3));
    height: auto;
  
}

header .headerbottom nav{
    overflow: visible;
}

header .headerbottom ul li{
    position: relative;
}

header .headerbottom ul li::after {
    content: '';
    display: table;
    height: 10px;
    background: transparent;
    position: absolute;
    bottom: 0;
    width: 100%;
    transition:all 0.2s ease;
-webkit-transition:all 0.2s ease;
-moz-transition:all 0.2s ease;
-o-transition:all 0.2s ease;
-ms-transition:all 0.2s ease; 
}

.headlinecontainer:after {
   height: 10px;  
     background: gray;
    width: 80px;
    content:'';
}


.colorstripe {
    display: table;
    width: 100%;
    height: 15px;
    margin-top: 10px;
    background: silver;
    table-layout: fixed;
}

.colorstripe .colors{
    display: table-row;
}


.colorstripe .colors > * {
    display: table-cell;
    border-right: 5px solid white;
}


.colorstripe .blue, header .headerbottom ul li.blue:hover:after, header .headerbottom ul li.blue.active:after,  #main .blue .headlinecontainer::after, header .headerbottom ul li.blue.trail:after, header .headerbottom ul li.blue.active:after {
    background: #0E66B3;
}

.colorstripe .red, .headerbottom ul li.red:hover:after, header .headerbottom ul li.red.active:after, #main .red .headlinecontainer::after, .red #main .headlinecontainer::after, header .headerbottom ul li.red.trail:after, header .headerbottom ul li.red.active:after{
    background: #DB0916;
}

.colorstripe .yellow, .headerbottom ul li.orange:hover:after, header .headerbottom ul li.orange.active:after, #main .orange .headlinecontainer::after, .orange #main .headlinecontainer::after, header .headerbottom ul li.orange.trail:after, header .headerbottom ul li.orange.active:after{
    background: #FDA027;
}

.colorstripe .colors > .green, .headerbottom ul li.green:hover:after, header .headerbottom ul li.green.active:after, #main .green .headlinecontainer::after, .green #main .headlinecontainer::after, header .headerbottom ul li.green.trail:after, header .headerbottom ul li.green.active:after{
    background: #4D941E;
    border-right: none;
}

.headerbottom ul li.gray:hover:after,header .headerbottom ul li.gray.active:after,.gray #main .headlinecontainer::after, header .headerbottom ul li.gray.trail:after, header .headerbottom ul li.gray.active:after{
    background: #969696;
}
footer {
    font-size: 16px;
    line-height: 1.75;
}

footer .colorstripe {
    margin-top:0;
    margin-bottom: 20px;
}

.econtact p > a{
    display: inline-block;
}

.trail > *, .active > *{
    font-weight: 600;
    color:#333;
}

#herosection > .inside, #herosection > .inside .block, #herosection > .inside .block figure, #herosection > .inside .block figure video{
    width: 100%;
    height: 100%;
}

.video_container {
    position: relative;
}
.video_container .caption {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
}

.video_container .cell{
    vertical-align: bottom;
    line-height: 1.4;
}


.video_container .cell .holder{
    display: table;
    padding:5rem;
}


.footertop{
    padding: 2rem 0 3rem;
}

.footertop .mod_logo{
    margin: 0 auto;
}

.footermiddle{
    display: table;
    width: 100%;
    padding-bottom: 2rem;
}

.footermiddle .row > *{
    vertical-align: top;
    width: 50%;
}

.footerright > .holder{
    text-align: right;
}

.footerright > .holder >* {
    float: left;
    vertical-align: top;
    width: calc(100% / 3);
    text-align: left;
}

p{
    margin-top: 0;
}


.contact .holder{
    display: table;
}

.contact .holder > *{
    display: inline-block;
    vertical-align: top;
}

.contact .holder > .contact {
 
    padding-right: 2rem;
 
}

.contactheadline, footer .title {
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.03rem;
    font-size: 15px;
}

.footerbottom{
    border-top:1px solid #000;
    padding: 20px 0
}

.social{
    text-align: right;
}

.social > *{
    display: inline-block;
    margin-left: 10px;
    height: 25px;
}
.social > * a, .social > * span{
    display: block;
    height: 100%;
}

.social > * img{
    height: 100%;
}

a, a span{
  /*  display: block; */>
}

header a, header span{
    display: block;
}

/*Teaser*/


.colored .teaserholder span.row > *{
    background: #3A434A;
    color: white;
    padding:3rem 4rem;
}
.ce_page_teasers_element span, .ce_page_teasers_element a{
    display: block;
}
.teasergrid > div {
    margin: 10px -1px -2px;
    display: table;
    min-width: 100%;
}


.teasergrid > div > *,  .ce_gallery ul > li{
    float: left;
    margin:0 1px 2px;
}

.teasergrid > .itemsperRow_1 > *{
    width:calc(100% / 1 )
}

.teasergrid > .itemsperRow_2 > *,ul.cols_2 > li{
 width:calc( (100% - (4 * 1px)) / 2 )
}

.teasergrid > .itemsperRow_3 > *, ul.cols_3 > li{
    width:calc( (100% - (6 * 1px)) / 3 )
}

.teasergrid > .itemsperRow_4 > *, ul.cols_4 > li{
    width:calc( (100% - (8 * 1px)) / 4 )
}

.teasergrid > .itemsperRow_5 > *{
     width:calc( (100% - (10 * 1px)) / 5 )
}


.teasergrid > .itemsperRow_6 > *{
    width:calc(100% / 6 )
}


.teaserholder{
    position: relative;
}

.withImage .teaserholder .caption {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    color: white;
    left: 0;
    top: 0;
    display: table;
    background: rgba(0,0,0,0.5);
	transition: all 0.3s;
}

.withImage .teaserholder .caption:hover {
	background: rgba(0,0,0,0.1);
	text-shadow: 0px 0px 4px #000000;
}

span.row {
    display: table-row;
}

span.row > *{
    display: table-cell;
}

.teaserholder span.row > *{
    vertical-align: bottom;
    padding:2rem 4rem;
}

.center{
    text-align: center;
}

.logoliste > .inside{
    display: table;
    width: 100%;
}



.logoliste > .inside > ul{
    display: table-row;
}
.logoliste > .inside > ul > li {
     width: calc(100% / 6);
    display: table-cell;
    vertical-align: middle;
}

.logoliste .infiniteslide_wrap ul li {
    padding: 0 2rem;
     width: calc(100% / 6);
    box-sizing: border-box;
}

.logoliste ul li img{
    max-width: 100%;
}


.nothome #main{
 
    padding-top: 5rem;
}

.image_container.float_above{
    margin-bottom: 2rem;
}
.small, .mod_simplejobslist, .mod_simplejobsreader{
    max-width: 985px;
	margin:0 auto;
}
.ce_text.paddleft .innerholder, .ce_gallery.paddleft ul {
    padding-left: 90px;
}

.person.table{
    table-layout: fixed;
}


.mailbox {
    background: #EDEEEE;
    padding: 4rem 6rem;
    display: table;
    width: 100%;
    box-sizing: border-box;
    margin-top:6rem;
	table-layout:fixed;
}

#main .mailbox .headlinecontainer::after {
display:none;
}
.mailbox h3 {
font-size:40px;
}

.person.table > .row > *{
    vertical-align: top;
}

.person.table > .row > .image_container{
    padding-right:2rem;
}

.ansprechpartner{
    float: left;
    max-width: 530px;
}

.form{
    vertical-align: bottom;
	padding-left:3rem;
	padding-top:2rem;
}

.form .widget > .text, .form .widget > .textarea, .form .widget button {
border:none;
padding:20px;
font-size:20px;
}
.form .widget button {
padding:20px 80px;
}

.widget.w50{
    float: left;
    width: calc((100% - 20px) / 2);
    margin-right: 20px;
}

.widget.w50.clr{
    margin-right: 0;
}

.widget{
    margin-bottom: 20px;
}

.widget > .text,.widget > .textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    font-size: 15px;
    font-weight: 400;
}

textarea{
    min-height: 150px;
}

.widget button{
    background: #959595;
    color: white;
    line-height:1;
    padding: 10px 40px;
}

.ce_form.downloadmail{
    margin: 4rem 0;
    display: table;
    width: 100%;
}


.ce_form.downloadmail .row > * {
    display: table-cell;
    vertical-align: middle;
    padding: 0 0 0 4rem;
}

.ce_form.downloadmail .before {
    content: '';
    height: auto;
    display: table-cell;
    width: 50%;
    background: saddlebrown;
    vertical-align: middle;
    height: 680px;
    background: url(/files/theme/layout/images/placeholder/download.svg) no-repeat scroll 50% 50% transparent;
        background-size: auto;
    background-size: auto 100%;
    opacity: 0.3;
}

.ce_form.downloadmail .widget-text {
    float:left;
    width: calc((100% - 20px) / 2);
    margin-right: 20px;
    border-bottom: 2px solid rgba(0,0,0,0.3);
    box-sizing: border-box;
}
.ce_form.kontakt .widget-text{
border-bottom: 2px solid rgba(0,0,0,0.3);
}

.ce_form.downloadmail .widget-text:nth-child(2n+1) {
    margin-right: 0;
}

.ce_form.downloadmail .formbody {
    background: rgb(255,255,255);
    padding: 4rem;
    margin-left: -15rem;
    position: relative;
}

.downloadmail h2{
    font-size:34px;
}

.downloadmail .headlinecontainer{
    margin-bottom: 20px;
}


label span {
    font-size: 14px;
    line-height: 1.4rem;
    color: gray;
    display: block;
}

fieldset{
    padding: 0;
}

.checkbox_container{
    font-size: 14px;
    line-height:1.4;
    margin-top: 1rem;
}

.widget-checkbox{
    display: table;
width:100%;
}

.pagination .next,.pagination .previous, .pagination p{
    display: none;
}

.pagination li{
    display: inline-block;
    vertical-align: middle;
}

.pagination li:not(.next) > .link:before, .pagination li:not(.next) > .active:before{
    content: '|';
    margin: 0 5px;
    font-weight: 400;
}

.pagination li:first-of-type > *:before, .pagination li.previous +  li > *:before{
    display: none;
}

.pagination{
    text-align: center;
    margin-top: 2rem;
}

.mod_newscategories{
    margin-bottom: 4rem;
}

.mod_newscategories ul{
    display: table;
    margin-bottom: -15px;
}
.mod_newscategories ul li{
    float: left;
   margin-right: 15px;
       margin-bottom: 15px;
}

.mod_newscategories ul li > * {
    border: 1px solid #333;
    display: block;
    padding: 12px 20px;
    line-height: 1;
}

.downloadarchivItem a,.downloadarchivItem span{
    display: block;
}

.downloadarchivItem .image_container{
    position: relative;
}

.downloadarchivItem .image_container .caption {
    background: none repeat scroll 0 0 rgba(218,218,218,0.8);
    display: table;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    opacity: 0;
}

.downloadarchivItem .image_container{
    line-height:0;
}

.downloadarchivItem:hover .image_container .caption {
    opacity: 1;
}

 .downloadarchivItem span.cap_content {
    display: table-cell;
    line-height: 23px;
    text-align: center;
    vertical-align: middle;
    color: #333;
    font-size: 16px;
}

.ce_downloadarchive .headlinecontainer, .twocolcontent .headlinecontainer,.ce_referentenList .headlinecontainer{
    width: 25%;
    padding-right: 4rem;
}

p.back{
    text-align: center;
    margin-top: 2rem;
}

.small .headlinecontainer{
    max-width: 800px;
}



.teasergrid > .itemsperRow_4 > .downloadarchivItem {
    width: calc( (100% - (8 * 10px)) / 4 );
    border: 1px solid rgba(0,0,0,0.3);
    margin: 0 10px 20px;
}

.teasergrid > .itemsperRow_4 > .downloadarchivItem:nth-child(4n+4) {
    margin-right: 0;
}


.twocolcontent {
    display: table;
}


.twocolcontent > *{
    display: table-cell;
    vertical-align: top;
}
.teaserImage img{
    max-width: 100%;
    height: auto;
}


.ce_referent_element {
    display: table;
    width: 100%;
    margin-bottom: 4rem;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    padding-bottom: 4rem;
}

.ce_referent_element.last{
    margin-bottom: 0;
}

.ce_referent_element > *{
    display: table-row;
}

.ce_referent_element > * > *{
    display: table-cell;
    vertical-align: top;
}


.ce_referent_element .teaserImage{
    padding-right: 2rem;
}

.ce_referent_element .teaserImage img{
    width: 160px;
}

.mod_article.block > .block{
    padding-bottom: 4rem;
}

#main .headlinecontainer::after {
    height: 8px;
    background: gray;
    width: 80px;
    content: '';
    display: block;
    margin: 20px 0;
}

#main .center .headlinecontainer::after {
    margin:20px auto;
}


.ce_pageTeaser .teasercontent{
    text-align: left;
}

#herosection .video_container .cell .holder{
    color:white;
}

#herosection .video_container .cell .holder .headlinecontainer{
    margin-bottom: 0;
}

.preheadline, .teaserpreHeadline {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.3rem;
    margin-bottom: 12px;
    line-height: 1;
    font-size: 0.8em;
}


#herosection .headlinecontainer > h2, .teaserheadline{
    line-height: 1.2;
    font-weight: 400;
    font-size: 46px;
}

.teaserheadline{
    font-size: 34px;
}



#herosection .holder a, .ce_page_teasers_element span.readmore, a.hyperlink_txt, p.back a, .enclosure span.readmore{
    display: table;
  
    margin-top: 20px;
    border: 1px solid;
    line-height: 1;
    padding: 15px 30px;
	transition:all 0.3s;
	cursor:pointer;
}
#herosection .holder a:hover, .ce_page_teasers_element span.readmore:hover, a.hyperlink_txt:hover, p.back a:hover, .enclosure span.readmore:hover {
	box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.toggler:before {
    content: '+';
    height: 0.8rem;
    width: 10px;
    display: inline-block;
    vertical-align: baseline;
    margin-right: 5px;

}
.toggler:before {
transition:all 0.2s ease;
-webkit-transition:all 0.2s ease;
-moz-transition:all 0.2s ease;
-o-transition:all 0.2s ease;
-ms-transition:all 0.2s ease; 
}
.toggler.active:before {
content: '-';
}

.enclosure span.readmore{
    margin-top: 3rem;
}


.red a.hyperlink_txt::before, .red .ce_kasten .headline > :before, .red .toggler:before {
   background: url(/files/theme/layout/images/icons/arrow_red.svg) no-repeat scroll 50% 50% transparent;
         background-size: contain;
}


.green a.hyperlink_txt::before, .green .ce_kasten .headline > :before, .green .toggler:before {
   background: url(/files/theme/layout/images/icons/arrow_green.svg) no-repeat scroll 50% 50% transparent;
         background-size: contain;
}


.orange a.hyperlink_txt::before,.orange .ce_kasten .headline > :before, .orange .toggler:before  {
   background: url(/files/theme/layout/images/icons/arrow_orange.svg) no-repeat scroll 50% 50% transparent;
         background-size: contain;
}


.blue a.hyperlink_txt::before, .blue .ce_kasten .headline > :before, .blue .toggler:before  {
   background: url(/files/theme/layout/images/icons/arrow_blue.svg) no-repeat scroll 50% 50% transparent;
         background-size: contain;
}


.gray a.hyperlink_txt::before,.gray .ce_kasten .headline > :before, .gray .toggler:before  {
   background: url(/files/theme/layout/images/icons/arrow_gray.svg) no-repeat scroll 50% 50% transparent;
         background-size: contain;
}


#herosection .center .holder a, .center .ce_page_teasers_element span.readmore, .center a.hyperlink_txt, p.back a {
  margin: 0 auto;
}

.ce_page_teasers_element.withoutImage span.readmore{
    margin: 20px 0 0;
	transition:all 0.3s;
}
.ce_page_teasers_element.withoutImage span.readmore:hover {
	background:white;
	color: black;
}
#herosection .caption {
    background: rgba(0,0,0,0.4);
}

.teaserheadline{
    max-width: 80%;
}

.ce_page_teasers_element.withoutImage .teaserheadline{
    margin-bottom: 20px;
}


.ce_page_teasers_element.withoutImage .teasertext{
    line-height: 1.45;
}

.ce_page_teasers_element.withoutImage span.readmore{
    margin-top:30px;
    font-size: 1rem;
}

.mod_newslist .teaserheadline{
    font-size: 24px;
    width: 100%;
}

/*Searchmodal*/
.openBtn {
    padding: 0;
    line-height: 0;
    display: inline-block;
    vertical-align: middle;
    background: transparent;
    margin-left: 2rem;
}

.openBtn img{
    max-width: 100%;
    height: auto;
}

.openBtn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.openBtn:hover {
 opacity: 0.8;
}

.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
}

.overlay-content {
  position: relative;
  top: 46%;
  width: 80%;
  text-align: center;
  margin-top: 30px;
  margin: auto;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  cursor: pointer;
  color: white;
}

.overlay .closebtn:hover {
  color: #ccc;
}




.mod_search form {
    display: table;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}

.mod_search form > .formbody{
   display: table-row;  
}

.mod_search form > .formbody > *{
   display: table-cell;
    vertical-align: middle;
}


.mod_search form .widget-text {
    background: white;
    width: calc(100% - 200px);
}


.mod_search form .widget-submit {
    width: 200px;
}

.mod_search form .widget-submit > *{
    width: 100%;
}
#responsivenav{
    display: none;
}

.mod_article.block > .block:last-of-type{
    padding-bottom: 6rem;
}

.ce_form.downloadmail .before > img{
    max-width: 100%;
}

.mod_newsreader.block > .block > .block{
    padding-bottom: 6rem;
}

.mod_newsreader.block > .block > .block:last-of-type{
    padding-bottom: 2rem;
}

#main .ce_headline.headlinecontainer::after{
    display: none;
}

.mod_article.block > .mod_newscategories.block{
    padding-bottom: 0;
}

.safari.home .row, .safari .ce_page_teasers_element .row {
display: table;
height: 100%;
    width: 100%;
}

.safari  .withImage .teaserholder .caption{
    display: inherit;
}

.safari .video_container .caption{
    display: -webkit-box;
}

.ce_logoList .headlinecontainer{
    margin-bottom:6rem;
}

video {
  object-fit: fill;
    -webkit-object-fit: fill;
}


header .headerbottom nav {
 position: absolute;
  width: 100%; 
  top: 0;
  left: 0;
  /* background: #2a2a2a;
  font-size: 16px;
  box-shadow: 0 0 10px rgba(0,0,0,1);*/
}

header .headerbottom nav a {
  /*display: block;
  color: #fff;
  text-decoration: none;*/
}
 
header .headerbottom nav li {
 /* display: inline-block;
  color: #fff;
  list-style: none;*/
  transition: 0.5s;
}


header .headerbottom nav > ul > li > a {
  padding-bottom:20px;
}







header .headerbottom nav ul.megamenu {
  position: absolute;
  width: 800px;
  top: -9999px;
  left: 0;
  padding: 1rem 2rem 0;
  background: #fff;
  text-align: left;
  z-index: 1;
    margin-left:-2rem;
}

header .headerbottom nav ul li:hover ul.megamenu {
  top: 100%;
}


header .headerbottom nav .megamenu .column li > a{
    padding-left: 0;
}

header .headerbottom nav .column {
  float: left;
  width: auto;
  margin-right: 30px;
}

.megamenu .column li.submenu{
  float: left;  
}

header .headerbottom nav .column:last-child {
  margin-right: 0;
}

header .headerbottom nav > ul{
    float: right;
    padding-right: 3rem;
}

header .headerbottom nav .megamenu ul {
  margin-bottom: 40px;
}

header .headerbottom nav .megamenu li {
  display: block;
}


header .headerbottom nav .megamenu li a {
  margin-top: 10px;
  transition: 0.5s;
 
}

header .headerbottom nav .megamenu li a:hover {

}

header .headerbottom nav .megamenu h4 {
  margin-bottom: 15px;
  color: #000;
  text-transform: uppercase;
}


header .headerbottom ul.level_1 .megamenu .column > ul > li > a > span{
    line-height: 1.4;
}

header .headerbottom ul.level_1 .megamenu .column > ul > li >  a > span::before {
   /* content: '';
    background: url(/files/theme/layout/images/icons/arrow_down.svg) no-repeat scroll 50% 50% transparent;
        background-size: auto;
    width: 10px;
    height: 10px;
    display: inline-block;
    background-size: contain;
    margin-right: 10px;
    margin-left: -20px;*/
}

header .headerbottom ul.level_3{
   /* padding-left: 20px; */
}
header .headerbottom nav .megamenu li > *{
    text-transform: none;
    font-size: 16px;
    font-weight: 500 !important;
    line-height: 1.4;
    display: block;
    padding: 0;
    position: relative;
    z-index: 2;
    letter-spacing: 0;
    padding: 0;
}

header .headerbottom ul.level_3 > li{
    margin-bottom: 2px;
    display: table;
}

header .headerbottom ul.level_3 > li.trail > *, header .headerbottom ul.level_3 > li.active > *{
    font-weight:500;
}

.search {
    float: right;
    position: relative;
    z-index: 9999;
}

ol li {
    list-style-type: decimal;
    list-style-position: inside;
}

ol,ul{
    margin-bottom: 2rem;
}

.ce_personList .teasergrid > .itemsperRow_4 > * {
    margin: 0 20px 20px;
    width: calc((100% - (8 * 20px)) / 4);
}

.ce_personList .teasergrid > .itemsperRow_4 > *:nth-child(4n+4) {
    margin-right:0;
}

.teaserImage{
    line-height: 0;
}

#left {
    float: left;
    width: 25%;
    padding-top: 5rem;
}


.leftCol #main {
    float: none;
    margin-left: calc(25% - 4rem);
	max-width:1050px;
}

.leftCol #main > .inside{
    padding-left: 4rem;
}


#left .level_2{
    display: none;
}


.leftCol .ce_text.paddleft .innerholder {
    padding-left: 0;
}

.ce_text ul, .ce_ownacc ul{
    padding-left: 20px;
}

.ce_text ul li, .ce_ownacc ul li{
    margin-bottom: 0.8rem;
	list-style-type:square;
	list-style-position:outside;
}
.ce_text ul li ul li {
margin-left:1rem;
}


.ce_text a {
    display: inline;
    color:#0E66B3;
    text-decoration: underline;
}

.fullwidth img {
    opacity: 0;
    width: 100%;
}


.paddleft .innerholder, .ce_kasten.paddleft{
    padding-left:10rem;
}

.ce_kasten.paddleft.twocolcontent{
     padding-left:20rem;
}

.ce_kasten .innerholder {
    background: whiteSmoke;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #444;
    font-style: italic;
    line-height: 23px;
    padding: 40px 4rem;
}

.ce_kasten .headline > *{
    margin: 0;
}

.ce_kasten .headline > :before{
      content: '';
    height: 0.8rem;
    width: 10px;
    display: inline-block;
    vertical-align: baseline;
    margin-right: 5px;
    margin-left:-15px;
}

.ce_kasten .headline{
    margin-bottom: 20px;
}

.chrome header .row, .safari header .row{
    display: table;
    width: 100%;
}

.acc_item{
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.acc_item .toggler{
    padding: 5px 10px;
    cursor: pointer;
}

.ui-accordion-content{
   
    background: #eee;
}

.ui-accordion-content > div{
padding: 20px;
    line-height: 1.4;
    font-size: 16px;
}

.acc_item .toggler:hover{
    background: whiteSmoke;
}


/*
header .headerbottom nav .green.submenu ul.megamenu {
    position: absolute;
    width: 200px;
   
    left: auto;
    right:0;
    
    text-align: right;
    
}
*/

.ce_flexslider .text{
    margin-top: 2rem;
}

.ce_personList .teaserheadline{
    font-size:20px;
    width: auto;
}


.ce_personList .teaserholder span.row > *{
    padding: 20px;
}

.position{
font-size: 16px;
letter-spacing: 0.03rem;
line-height: 1.2;
margin-top: 7px;
}

.image_container.float_left{
    margin: 0.5rem 2rem 2rem 0;
}

.linkliste_item .row > *{
    vertical-align: top;
}
.linkliste_item .row > .image_container{
	min-width:200px;	
}

.linkliste_item .row > .text{
    padding-left: 2rem;
}

p > a{
    text-decoration: underline;
    color: #0E66B3;
}

.linkliste_item, .ce_customerReview .item{

    padding: 20px;
    background: whiteSmoke;
    width: 100%;
    display: table;
    box-sizing: border-box;
    margin-bottom:2rem;
    border-bottom: 1px solid silver;
}

.linkliste_item.last{
    margin-bottom: 0;
    border:none;
}


#left .active.submenu .level_2, #left .trail.submenu .level_2{
    display: block;
    padding-left:10px;
    margin:0;
}

#left .submenu .level_2 > li > *{
font-weight: 300;
}
#left .submenu .trail > *, #left .submenu .active > *,
header .megamenu .level_2 .trail > *, header .megamenu .level_2 .active > *{
	color:#0E66B3;
}

#left .submenu a:hover,
header .megamenu .level_2 a:hover{
	opacity:0.7;
}


.ce_customerReview .teaserholder .row > *{
    vertical-align: top;
}

.ce_customerReview .teaserholder .cell.image{
    width: 120px;
}


.ce_customerReview .teaserholder .cell.text{
    padding-left: 4rem;
}


.ce_customerReview .author{
    margin-top: 2rem;
}

.ce_customerReview .author .name {
    font-size: 16px;
    line-height: 1.5;
}


.mod_newsreader p.back > a,
.mod_simplejobsreader p.back > a {
    padding: 0;
    border: none;
    text-transform: uppercase;
	box-shadow:none;
}
.mod_newsreader p.back > a:hover,
.mod_simplejobsreader p.back > a:hover {
	text-decoration:none;
}


.mod_newsreader .bgImage > .image_container{
    opacity: 0;
}


.ce_referent_element .teaserImage{
    width:160px;
}


.mod_roomlist .row > * span{
    display: block;
}

.mod_roomlist .row > *{
    vertical-align: top;
    
}



.mod_roomlist .holder{
    padding: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    display: block;
}

.mod_roomlist .holder:hover{
    background: whiteSmoke;
}




.mod_roomlist .name{
    font-weight: bolder;
}


.mod_roomlist .isbn{
    margin-top: 1rem;
}


.mod_roomlist .row > .imagecell{
    width: 200px;
    line-height: 0;
}


.mod_roomlist .item{

}


.mod_roomlist.reader .desc{
    margin-top: 2rem;
} 


.mod_roomlist.reader .links{
    margin-top: 1rem;
}

.mod_roomlist.reader .links a{
    text-decoration: underline;
    color: #0E66B3;
}

.logoliste ul li img{
filter: grayscale(100%);
}

.index .mod_article.block > .ce_hyperlink.block:last-of-type{
    padding-bottom: 6rem;
}

.index .ce_headline.headlinecontainer{
    margin-bottom: 2rem;
}


.ce_ticker{
    padding: 1rem 2rem 0.5rem;
    box-sizing: border-box;
}

#ticker {
    width: 100%;
    list-style: none;
    height: 1.85em;
    overflow: hidden;
    margin: 0;
}

#ticker > li {
    width: 100%;
    text-align: center;
    font-weight: bold;
}

.ce_page_teasers_element img{
    width: 100%;
}

.widget.w50.clr.nofloat{
    float: none;
    clear:both;
}

.checkbox_container > span{
    display: block;
margin-bottom: 20px;
}

.checkbox_container > span:last-of-type{
    
}

body .icheckbox_minimal{
    margin-right: 10px;
}
.download a {
color:#DB0916;
text-decoration:underline;
}
#main .social {
text-align: center;
}
.teaserpreHeadline.date {
padding-top: 0.7rem;
text-transform: none;
letter-spacing: 0.1rem;
}
.mod_simplejobslist .job-item {
border-bottom:1px solid rgba(0, 0, 0, 0.2);
padding:0;
}
.mod_simplejobslist .job-item h3 {
font-size:18px;
margin:0;
padding: 15px 10px;
}
.mod_simplejobslist .job-item a {
display:block;
}
.mod_simplejobslist .job-item h3:hover {
background-color: #eee;
}
.headerleft {
width:250px;
}

/* Anpassungen 2022 */
header > .inside .row > .headerright {
vertical-align: middle;
}
header .headerbottom ul.level_1 > li, .headertop nav ul li {
letter-spacing: 0.2rem;
margin-left: 1.5rem;
}
.relative {
position:realtive;
}
.clock {
/*position:absolute;
z-index:50;
left:49%;
top:400px;*/
}
.clock > div {
display:inline-block;
margin-right:10px;
background-color: #a5a2c3;
color:#252a75;
padding:10px 5px 15px;
width:90px;
text-align:center;
line-height:1;

}
.clock .value, .clock .label {
display:block;
}
.clock .value {
font-size:36px;
color:white;
margin-bottom:0.5rem;
}
#main .sib-form .headlinecontainer::after {
display:none;
}

.clockholder {
    padding: 4rem 2rem;
    background: whitesmoke;
    margin-bottom:8rem;
    box-sizing:border-box;
    text-align:center;
}


.clockholder .text{
    max-width: 650px;
    margin: 0 auto 2rem;
}


.clockholder h2{
    text-transform: uppercase;
    font-weight: 900;
    margin: 0 0 2rem;
     color: #252a75;
}

.savethedate{
	    margin-top: 6rem;
}

.savethedate a {
    background: #252a75;
    color: white;
    line-height: 1;
    padding: 15px 30px;
    font-size: 23px;
}

.neuromarketing-kongress .mod_newslist {
       max-width: 980px;
    margin: 0 auto;
}

.neuromarketing-kongress .mod_newslist > div{
	float:left;
	width:calc((100% - (2 * 10px)) / 2);
	margin-right:10px;
	margin-bottom:10px;
}


.mod_onepage_navigation {
  position: relative;
  width: 100vw;
  height: auto;
  background-color: #252a75;
  display: table;
  z-index: 0;
  color: white;
  padding: 0 2rem;
 margin-left: -2rem;
    box-sizing: border-box;
    margin-top: 2rem;
	font-size:18px;
}

.mod_onepage_navigation > .inside{
    padding: 0 6rem 0 0;

    box-sizing: border-box;
}

.mod_onepage_navigation > .inside > ul > li {
  display: inline-block;
  vertical-align: middle;
    margin-left: 2rem;
}


.mod_onepage_navigation > .inside > ul {
  margin: 0;
  text-align: center;
  display: table;
  float: right;
    font-size: 16px;
}

#sticky.clone{
    margin-top: 0;
    position: absolute;
    top: -100%;
    z-index: 1000;
      display: none;
  transition: all 0.2s ease-out 0s;
}

#sticky.clone.nav-up {
  top: -200px;
  position: fixed;
   
  
}

#sticky.clone.nav-down {
  position: fixed;
  top: 0;
      
}
@media all and (max-width:1400px) {
    header .headerbottom ul.level_1 > li, .headertop nav ul li{
        letter-spacing: 0.1rem;
    }
}
@media all and (max-width:1290px) {
    header .headerbottom ul.level_1 > li, .headertop nav ul li{
        letter-spacing: 0;
    }
}


@media all and (max-width:1180px) {
    
    
    .mod_logo {
    max-width: 200px;
}
    
header .headerbottom ul.level_1 > li, .headertop nav ul li {
margin-left: 1rem;
font-size: 15px;
}


    header .headerbottom ul li::after {
        height: 5px;
    }
    
    .ce_form.downloadmail .before{
        width: 40%;
        max-width: 380px;
        height: auto;
    }
    
    .ce_form.downloadmail .formbody{
        background: transparent;
padding: 0;
margin-left: 0;
position: relative;
    }
}
@media all and (max-width:1050px) { 
	header .headerbottom ul.level_1 > li, .headertop nav ul li {
		font-size: 14px;
	}
	.clockholder {
		text-align:center;
	}
	.clock {
		position:static;
		z-index:50;
		left:0;
		top:0;
	}

}

@media all and (max-width:992px) {
    body p{
        hyphens: auto;
        -webkit-hyphens: auto;
    }
    
      header .headerbottom ul.level_1 > li, .headertop nav ul li{
        margin-left: 20px;
    }
    
.footermiddle .row > .footerright {
    vertical-align: top;
    width: 60%;
}
    
    .footermiddle .row > .footerleft {
    vertical-align: top;
    width: 40%;
}
    
    .ce_downloadarchive > .row > .headlinecontainer{
        padding-right: 2rem;
    }
	.video_container .cell .holder,
	.teaserholder span.row > *{
    padding:2rem;
	}
	header{
        display: none;
    }
    
    body .slicknav_menu{
        display: block;
    }
}
@media all and (max-width:940px) {

.mod_newslist .teasergrid > .itemsperRow_3 > *{
    width: calc( (100% - (4 * 1px)) / 2 );
}
    
}
@media all and (max-width:860px) {
    
    #left{
        display: none;
    }
    
    .leftCol #main > .inside {
    padding-left: 0;
}
    
    .leftCol #main {
    float: none;
    margin-left: 0;
}
    
    .ce_text.paddleft .innerholder, .ce_gallery.paddleft ul {
    padding-left: 0;
}
    
    #wrapper, footer > .inside{
        padding: 20px;
    }
    
    
    
    .footermiddle .row > .footerright{
        display: none;
    }
    
    .footerbottom > .row{
         display: block;
    }
    
        .footerbottom > .row > *{
            display: block;
    }
    .social {
    text-align: left;
    margin-top: 20px;
}
    
    .teaserholder span.row > *{
        padding:20px;
    }
}

@media all and (max-width:830px) {
    
    .teasergrid > div{
        display: block;
    }
    .teasergrid > .itemsperRow_2 > *, ul.cols_2 > li,.teasergrid > .itemsperRow_3 > *, ul.cols_3 > li {
    width: calc( (100% - (0 * 1px)) / 1 );
        margin: 0 1px 1px 0;
}
    
  .ce_pageTeaser .withoutImage .teasercontent {
    width: 100%;
    display: table;
}
    .mailbox{
        padding: 20px;
    }
    .person.table{
        margin-bottom: 2rem;
    }
    
 .mailbox > .row > *, .mailbox > .row {
    display: block;
    float: none;
    width: 100%;
}
    .widget.w50 {
    float: none;
    width: 100%;
    margin-right: 0;
}
.form{
	padding-left:0;
}
}

@media all and (max-width:780px) {
    .ce_form.downloadmail .before{
        display: block;
    }
.ce_form.downloadmail .row > * {
padding:0;
}
    
    
    .mod_newslist .teasergrid > .itemsperRow_3 > *{
    width: 100%;
        margin-right: 0;
        margin-left: 0;
}
    
      .ce_downloadarchive > .row > *{
        display: block;
          width: auto;
    }
    
    .ce_form.downloadmail,.mailbox{
        margin: 0
    }
    
    .ce_form.downloadmail .before img{
        margin-bottom: 20px;
    }
    
     .ce_form.downloadmail .row > form{
        display: table-footer-group;
    }
    
     .downloadmail .headlinecontainer{
        margin-bottom: 4rem;
    }
	.twocolcontent > * {
		display:block;
	}
	.ce_kasten.paddleft.twocolcontent {
		padding-left:0;
	}
}

@media all and (max-width:670px) {
    .teaserheadline {
    font-size: 24px;
}  
     .ce_gallery.paddleft ul.cols_12 > li, 
    .ce_gallery.paddleft ul.cols_11 > li, .ce_gallery.paddleft ul.cols_10 > li,
    .ce_gallery.paddleft ul.cols_9 > li, .ce_gallery.paddleft ul.cols_8 > li,
    .ce_gallery.paddleft ul.cols_7 > li, .ce_gallery.paddleft ul.cols_6 > li,
    .ce_gallery.paddleft ul.cols_5 > li, .ce_gallery.paddleft ul.cols_4 > li,
    .ce_gallery.paddleft ul.cols_3 > li{
    width: calc( (100% - (4 * 1px)) / 2 );
}
    
    #herosection .holder a, .ce_page_teasers_element span.readmore, a.hyperlink_txt, p.back a{
        font-size: 1rem;
        padding:10px 20px;
    }
    
.teasergrid > .itemsperRow_4 > .downloadarchivItem {
    width: calc( (100% - (4 * 10px)) / 2 );
    border: 1px solid rgba(0,0,0,0.3);
    margin: 0 10px 20px;
}
    
    .teasergrid > .itemsperRow_4 > .downloadarchivItem:nth-child(2n+2) {
        margin-right: 0;
    }
 
    
    h1, h2 {
    font-size: 36px;
    line-height: 1.2;
}
    
       #herosection .headlinecontainer > h2{
        font-size: 32px;
    }
    .linkliste_item .row > *{
    	display:block;
    }
    .linkliste_item .row > .image_container{
    	text-align:center;
    	padding-bottom:20px;
    }
}


@media all and (max-width:580px) {
       #wrapper, footer > .inside{
        padding: 10px;
    }
   
    
    .nothome #main {
    padding-top: 20px;
}
    
    h1, h2 {
    font-size: 24px;
    line-height: 1.2;
}
    #herosection .headlinecontainer > h2,.teaserheadline,.mod_newslist .teaserheadline  {
    font-size: 21px;
}
    .teaserheadline {
    width: 100%;
}
    .video_container .cell .holder {
    display: table;
    padding: 20px;
}
    
    .video_container .caption{
        position: relative;
    }
    
    .colored .teaserholder span.row > *{
        padding: 40px 20px;
    }
    
    .teasergrid > .itemsperRow_4 > .downloadarchivItem {
    width: calc( (100% - (0 * 10px)) / 1 );
    border: 1px solid rgba(0,0,0,0.3);
    margin: 0 0 20px;
}
    
   .downloadarchivList.teasergrid > div {
    display: table;
    margin: 0;
    box-sizing: border-box;
    min-width: 0;
    width: calc(100% - 2px);
}
    
}


@media all and (max-width:480px) {
    
    
    .mod_roomlist .row > *{
        display: table;
        width: 100%;
    }
    
     .ce_gallery.paddleft ul.cols_12 > li, 
    .ce_gallery.paddleft ul.cols_11 > li, .ce_gallery.paddleft ul.cols_10 > li,
    .ce_gallery.paddleft ul.cols_9 > li, .ce_gallery.paddleft ul.cols_8 > li,
    .ce_gallery.paddleft ul.cols_7 > li, .ce_gallery.paddleft ul.cols_6 > li,
    .ce_gallery.paddleft ul.cols_5 > li, .ce_gallery.paddleft ul.cols_4 > li,
    .ce_gallery.paddleft ul.cols_3 > li{
    width: 100%;
        margin: 0 0 20px;
}
    
    .ce_referent_element > * > *{
        display: table;
        width: 100%;
    }
    
    .ce_referent_element .teaserImage{
        margin-bottom: 20px;
    }
#ticker > li {
font-size:12px;
}
.preheadline, .teaserpreHeadline {
hyphens:none;
-webkit-hyphens:none;
}
.mailbox h3 {
font-size:24px;
}
}
