
/*
   __  __                       ___               
  / /_/ /_  ___  ____ ___  ___ <  /_______________
 / __/ __ \/ _ \/ __ `__ \/ _ \/ // ___/ ___/ ___/
/ /_/ / / /  __/ / / / / /  __/ // /__(__  |__  ) 
\__/_/ /_/\___/_/ /_/ /_/\___/_(_)___/____/____/  
  

*/

.navigation-main {
  z-index: 10;
}

/* -----------------------------------------------
FONTS
----------------------------------------------- */
.account {
  display: none;
}
/* play-regular - latin */
@font-face {
  font-family: 'Play';
  font-style: normal;
  font-weight: 400;
  src: url('../Fonts/play-v12-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../Fonts/play-v12-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../Fonts/play-v12-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../Fonts/play-v12-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../Fonts/play-v12-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../Fonts/play-v12-latin-regular.svg#Play') format('svg'); /* Legacy iOS */
}
/* play-700 - latin */
@font-face {
  font-family: 'Play';
  font-style: normal;
  font-weight: 700;
  src: url('../Fonts/play-v12-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../Fonts/play-v12-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../Fonts/play-v12-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../Fonts/play-v12-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../Fonts/play-v12-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../Fonts/play-v12-latin-700.svg#Play') format('svg'); /* Legacy iOS */
}

/* -----------------------------------------------
GENERAL
----------------------------------------------- */

:root {
  --theme-color-preset-one: var(--theme-color-preset-two);
}
body {
  margin: 0;
  font-size: 1em;
  font-family: 'Play';
  line-height: 1.5;
  position: relative;
  overflow-x: hidden;
  color: #626364;
  --header-height: 375px;
  --initial-header-height: 375px;
  --fixed-header-height: 375px;
}
body.scrolled {
  --header-height: 375px;
}
body.noscroll {
  overflow: hidden;
}
* {
  box-sizing: border-box;
  word-break: break-word;
  hyphens: auto;
  scroll-margin-top: var(--fixed-header-height);
}
a {
  text-decoration: none;
  outline: none;
}
a:focus-visible {
  outline: 2px solid #000;
  outline-offset: 5px;
}
header a:focus {
  outline: auto !important;
}
.image a {
  background: none;
}
main ul,
main ol {
  margin: 0 0 1rem 0;
}
main ul {
  list-style-type: none;
  padding: 0;
}
main ul li {
  padding: 0 0 0 1rem;
  position: relative;
}
main ul li::before {
  content: "\f054";
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  padding-right: .5rem;
  font-size: .9em;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 2;
}
p {
  margin: 0 0 1rem 0;
}
svg {
  -webkit-transform: scale(1);
  transform: scale(1);
}
img {
  width: 100%;
}
.modal img {
  height: auto;
}
img + div,
form + div {
  background-image: none !important;
}
form li::before,
form ul::before {
  display: none;
}
strong,
b {
  font-weight: 600;
}
.stage {
  position: relative;
}
.html {
line-height: 0;
}
div::after {
  content: "";
  display: table;
  clear: both;
}
.ck-widget.table td.ck-editor__nested-editable.ck-editor__nested-editable_focused,
.ck-widget.table th.ck-editor__nested-editable.ck-editor__nested-editable_focused {
  background: var(--ck-color-focus-border) !important;
}
.pageteaser.grid-disabled .pageteaser-text-content {
  position: relative;
  padding: 0;
}
.imagegallery-content > div:nth-of-type(1) {
  grid-area: large;
  height: calc(40vh + var(--grid-gap));
}
.imagegallery-content .image {
  height: 20vh;
}
.imagegallery-content .image a {
  height: 100%;
}
.imagegallery-expander {
  display: none;
}
.imagegallery-content > div:nth-of-type(5) ~ * {
  display: block;
}

/* -----------------------------------------------
PRINT
----------------------------------------------- */

@media print {
  * {
    -webkit-print-color-adjust: exact; 
  }
  #header,
  #footer,
  .jumpmarks,
  iframe,
  .progress-container {
      display: none !important;
  }
}

/* -----------------------------------------------
DARKMODE
----------------------------------------------- */

body.dark {
  --theme-darkmode-foreground-one: #FFF;
  --theme-darkmode-background-preset: #0e0e0e;
  --theme-darkmode-background-default: #000000;
}

  /* -----------------------------------------------
  GENERAL
  ----------------------------------------------- */

  body.dark {
      background: var(--theme-darkmode-background-preset);
      color: var(--theme-darkmode-foreground-one);
  }
  body.dark a {
      color: var(--theme-darkmode-foreground-one);
  }
  body.dark .progress-bar {
      background: var(--theme-darkmode-foreground-one);   
  }
  body.dark a:focus-visible {
      outline: 2px solid #FFF !important;
  }

  /* -----------------------------------------------
  JUMPMARKS
  ----------------------------------------------- */

  body.dark .jumpmarks:focus-within {
      background: var(--theme-darkmode-background-default);
  }
  body.dark .jumpmarks a:focus {
      color: var(--theme-darkmode-background-default);
  }

  /* -----------------------------------------------
  HEADER
  ----------------------------------------------- */

  body.dark .header .header-wrap {
      background: var(--theme-darkmode-background-default);
  }
  body.dark .header .navigation-main .navigation > li > a {
      color: var(--theme-darkmode-foreground-one);
  }

  /* -----------------------------------------------
  NAVIGATION TOP
  ----------------------------------------------- */

  body.dark .navigation-main .navigation .navigation-level--level-2 {
      background: var(--theme-darkmode-background-default);   
  }
  body.dark .navigation-main .navigation li:not(.navigation-item--level-1) .navigation-link {
      color: var(--theme-darkmode-foreground-one);   
  }

  /* -----------------------------------------------
  LOGO
  ----------------------------------------------- */

  body.dark .logo-img:not(.sticky) {
      display: none !important;
  }
  body.dark .logo-img.sticky {
      display: block !important;
  }

  /* -----------------------------------------------
  SEARCH
  ----------------------------------------------- */

  body.dark .header.is-sticky .search-toggle,
  body.dark.article-site .search-toggle,
  body.dark.noscroll .search-toggle {
      color: var(--theme-darkmode-foreground-one);        
  }

  /* -----------------------------------------------
  ACCESSIBILITY
  ----------------------------------------------- */

  body.dark .header.is-sticky .accessibility-toggle,
  body.dark.article-site .accessibility-toggle,
  body.dark.noscroll .accessibility-toggle {
      color: var(--theme-darkmode-foreground-one);
  }
  body.dark .accessibility-content {
      color: var(--theme-darkmode-foreground-one);
      background: var(--theme-darkmode-background-default);
  }
  body.dark .fontsize-info span {
      color: var(--theme-darkmode-background-default);
      background: var(--theme-darkmode-foreground-one);        
  }

  /* -----------------------------------------------
  TEXTS
  ----------------------------------------------- */

  body.dark .black-text,
  body.dark .default-text {
      color: var(--theme-darkmode-foreground-one);
  }

  /* -----------------------------------------------
  OVERRIDE RULES
  ----------------------------------------------- */

  body.dark .container.disabled-background,
  body.dark .container.white-background,
  body.dark .container.grey-background {
      background: var(--theme-darkmode-background-preset);
  }
  body.dark .mehrspalter.disabled-background,
  body.dark .mehrspalter.white-background,
  body.dark .mehrspalter.grey-background {
      background: var(--theme-darkmode-background-preset);
  }
  body.dark .container.default-background {
      background: var(--theme-darkmode-background-default);   
  }
  body.dark .mehrspalter.default-background {
      background: var(--theme-darkmode-background-default);   
  }

  /* -----------------------------------------------
  SPECIAL ELEMENTS
  ----------------------------------------------- */

  body.dark .column-address {
      background: var(--theme-darkmode-background-default) !important;
  }
  body.dark .column-address .black-text:nth-of-type(2) {
      background: rgb(122 122 122 / 15%) !important;
  }

  body.dark .container.news,
  body.dark .mehrspalter.footer-multicolumn {
      background: var(--theme-darkmode-background-default) !important;
  }

  body.dark .pageteaser-teaser {
      background: var(--theme-darkmode-background-preset) !important;
  }
  body.dark .pageteaser-teaser > ul {
      background: var(--theme-darkmode-background-default) !important;
  }

  body.dark .partners .slick-prev,
  body.dark .partners .slick-next {
      background: var(--theme-darkmode-background-default) !important;
  }

  /* -----------------------------------------------
  ACCORDION
  ----------------------------------------------- */

  body.dark .accordion-title {
      background: var(--theme-darkmode-background-default) !important
  }
  body.dark .accordion-title h1, 
  body.dark .accordion-title h2, 
  body.dark .accordion-title h3, 
  body.dark .accordion-title p {
      color: var(--theme-darkmode-foreground-one) !important;
  }
  body.dark .accordion-title i {
      background: var(--theme-darkmode-background-default) !important;
  }

  /* -----------------------------------------------
  OFFCANVAS
  ----------------------------------------------- */

  body.dark .offcanvas {
      background: var(--theme-darkmode-background-default);
  }
  body.dark .offcanvas .navigation-item--previous {
      background: var(--theme-darkmode-background-default);   
  }

  /* -----------------------------------------------
  FORMS
  ----------------------------------------------- */

  body.dark .clearfix > .input input,
  body.dark .clearfix > .input textarea {
      color: var(--theme-darkmode-foreground-one);
  }

  /* -----------------------------------------------
  MEDIA-QUERIES
  ----------------------------------------------- */

  @media(max-width: 1023px) {
      body.dark.noscroll .header-wrap {
          background: var(--theme-darkmode-background-default) !important;
      }
  }
  @media (max-width: 1350px) {
      body.dark.article-site .offcanvas-toggle .line,
      body.dark .header.is-sticky .offcanvas-toggle .line,
      body.dark.noscroll .offcanvas-toggle .line {
          background-color: var(--theme-darkmode-foreground-one);
      }
  }

/* -----------------------------------------------
TABLES
----------------------------------------------- */

.table {
  width: calc(100% + 1rem);
  margin: -.5rem;
  table-layout: fixed;
}
.table table {
  width: 100%;
  table-layout: fixed;
  border-spacing: 0;
}
.table th,
.table td {
  padding: .5rem;
  vertical-align: top;
}
.table thead tr th {
  background: rgb(142 142 142 / 15%);
}
.table tbody tr:nth-of-type(even) th,
.table tbody tr:nth-of-type(even) td {
  background: rgb(142 142 142 / 15%);
}
.table th {
  text-align: left;
}

/* -----------------------------------------------
HEADLINES
----------------------------------------------- */

h1 {
  margin: 0 0 1rem 0;
  font-size: 2.5em;
}
h2 {
  margin: 0 0 1rem 0;
  font-size: 2em;
}
h3 {
  margin: 0 0 1rem 0;
  font-size: 1.25em;
}
h1,
h2,
h3 {
  line-height: 1.5;
  font-weight: 400;
}

/* -----------------------------------------------
TEXTS
----------------------------------------------- */

.black-text {
color: #626364;
}
.black-text h1,
.black-text h2,
.black-text h3,
.black-text h4,
.black-text h5,
.black-text h6 {
  color: #8F96A6;
}
.white-text {
color: #FFF;
}

/* -----------------------------------------------
JUMPMARKS
----------------------------------------------- */

.jumpmarks {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: table;
  width: 100%;
  table-layout: fixed;
  transition: all .25s;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
}
.jumpmarks:focus-within {
  pointer-events: all;
  z-index: 4;
  opacity: 1;
}
.jumpmarks a {
  color: #FFF;
  display: inline-block;
  line-height: var(--header-height);
  padding: 0 1em;
  font-weight: bold;
  text-transform: uppercase;
  color: transparent;
}
.jumpmarks:focus-within a {
  color: #FFF;
}
.jumpmarks a:focus {
  background: #FFF;
  color: var(--theme-color-preset-one);
}

/* -----------------------------------------------
HEADER
----------------------------------------------- */

header {
padding: 0 !important;
}
.header-wrap {
  position: absolute;
  overflow: hidden;

  width: 100%;
  height: 100vh;
  box-shadow: none;
}
.header.is-sticky .header-wrap::after {
  content: none;
}
.header-content {
  position: relative;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  height: 100%;
  min-height: var(--header-height);
}
.header-content::after {
  display: none;
}
.accessibility {
  display: none;
}

/* -----------------------------------------------
LOGO
----------------------------------------------- */

.logo {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
}
.logo::after {
  content: "";
  position: absolute;
  top: -200px;
  right: -570px;
  width: 1100px;
  height: 400px;
  transform: rotate( 
-20deg);
  z-index: -1;
  background: rgba(14,141,204,.85);
}
.logo:focus-within .logo-img {
  outline: 2px solid #000;
  outline-offset: 5px;
}
.logo-img {
  width: auto;
  height: 300px;
  position: absolute;
  overflow: hidden;
  top: 10px;
  right: 3rem;
  transition: all .25s ease;
}
.logo-img.sticky {
  display: none;
}

/* -----------------------------------------------
SEARCH
----------------------------------------------- */

header .search label {
  visibility: hidden;
  position: absolute;
  text-indent: -9999px;
}
header .search > .search-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 1.5rem;
  transition: all .3s cubic-bezier(0.29,.82,.23,.99);
  z-index: 16;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 15px -5px rgb(0 0 0 / 50%);
}
header .search > .search-toggle:hover,
header .search > .search-toggle:focus-visible {
  transform: scale(1.1);
}
header .search > .search-toggle > span {
    visibility: hidden;
    text-indent: -9999px;
    position: absolute;
}
header #search-form {
    position: fixed;
    background: rgb(0 0 0 / 50%);
    transition: all .25s;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 15;
    opacity: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden;
    display: none;
    padding: 0 !important;
    margin: 0 !important;
}
header #search-form.show {
    opacity: 1 !important;
}
header .search .search-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
header .search label {
    visibility: hidden;
    position: absolute;
    text-indent: -9999px;
}
header .search input {
    display: block;
    padding: .5rem 1.5rem;
    margin: 0;
    border: 0;
    width: 590px;
    color: var(--theme-color-preset-one);
    max-width: calc(100vw - (70px * 2) - 2rem);
    min-height: 70px;
    font: inherit;
    font-weight: 600;
    font-size: 1.275em;
    appearance: none;
    border-radius: 0;
}
header .search input::placeholder {
    font-weight: 600;
    color: #222531;
}
header .search button {
    border: none;
    outline: none;
    background: var(--theme-color-preset-two);
    color: #FFF;
    font: inherit;
    font-size: 1.75em;
    min-height: 70px;
    min-width: 70px;
    line-height: 70px;
    margin: 0;
    padding: 0;
    appearance: none;
    cursor: pointer;
}
header .search button:focus {
    outline: auto;
}
header .search button + .search-toggle {
    border: none;
    background: transparent;
    color: #FFF !important;
    font: inherit;
    font-size: 1.75em;
    min-height: 70px;
    min-width: 70px;
    line-height: 70px;
    margin: 0;
    text-align: center;
}
header .search button + .search-toggle:focus-visible {
    outline: auto;
}
header .search button + .search-toggle span {
    visibility: hidden;
    text-indent: -9999px;
    position: absolute;
}

/* -----------------------------------------------
SEARCH RESULTS
----------------------------------------------- */

.search-results .search-submit {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  height: 100%;
  appearance: none;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 0;
  cursor: pointer;
  background: var(--theme-color-preset-one);
  color: #FFF;
  font-size: 1rem;
}
.search-results .clearfix {
  margin-bottom: .75rem;
}
.search-results .page-navigation {
  overflow-x: auto;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}
.search-results .neos-widget-paginator {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search-results > ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.search-results > form + .page-navigation {
  display: none;
}
.search-results > ul li {
  padding: 0;
  margin: 1rem 0 0;
}
.search-results > ul li:not(:last-child) {
  border-bottom: 1px solid #e4e4e4;
}
.search-results > ul li::before {
  display: none;
}
.search-results h3 {
  font-size: inherit;
}
.search-results .page-navigation li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  transition: all .25s;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  margin: 0;
  padding: 0;
}
.search-results .page-navigation li::before,
.search-results .page-navigation li::after {
  display: none;
}
.search-results .page-navigation li:not(.previous):not(.before-current):not(.current):not(.after-current):not(.next) {
  display: none;
}
.search-results .page-navigation li.current {
  background: var(--theme-color-preset-one);
  color: #FFF;
}
.search-results .page-navigation li.previous a,
.search-results .page-navigation li.next a {
  text-indent: -9999px;
}
.search-results .page-navigation li.previous a::after,
.search-results .page-navigation li.next a::after {
  font-family: 'Font Awesome 5 Free';
  float: left;
  text-indent: 0;
}
.search-results .page-navigation li.previous a::after {
  content: "\f053";
}
.search-results .page-navigation li.next a::after {
  content: "\f054";
}
.search-results .page-navigation a {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: none;
}
.search-results .page-navigation a:focus {
  outline: auto;
}

/* -----------------------------------------------
NAVIGATION
----------------------------------------------- */

.navigation,
.navigation ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* -----------------------------------------------
NAVIGATION TOP
----------------------------------------------- */

.navigation-main {
  border-top: 2px solid var(--theme-color-preset-one);
  background: linear-gradient(to right,#0e8dcc 0,#ff2b41 99%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.navigation-main .navigation {
  display: grid;
  grid-template-columns: .25fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  padding: 0;
  height: inherit;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.navigation-main .navigation > li > a {
  padding: 1.75rem 1rem;
  font-weight: 400;
  font-size: 1.25em;
  display: inline-block;
  text-align: center;
  color: #FFF;
  width: 100%;
  height: 100%;
  vertical-align: text-top;
}
.navigation-main .navigation .open-submenu {
  display: none;
}
.navigation-main .navigation > li.hover > a,
.navigation-main .navigation > li:hover > a,
.navigation-main .navigation > li:focus-within > a,
.navigation-main .navigation li.navigation-item--state-active > a,
.navigation-main .navigation li:not(.navigation-item--level-1) .navigation-link:hover,
.navigation-main .navigation li:not(.navigation-item--level-1) .navigation-link:focus-visible {
  text-decoration: underline;
}
.navigation-main .navigation li:not(.navigation-item--level-1).navigation-item--state-current > a {
  text-decoration: underline;
}
.navigation-main .navigation .navigation-level--level-2 {
  display: none;
}
.navigation-main > ul > li:first-of-type > a {
  text-indent: -9999px;
  display: flex;
  justify-content: center;
}
.navigation-main > ul > li:first-of-type > a::after {
  content: "\f015";
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  display: inline-block;
  text-indent: 0;
  float: left;
  font-size: 1.25em;
}

/* -----------------------------------------------
MIXINS/OVERRIDES
----------------------------------------------- */

.pageteaser .pageteaser-teaser > h3 {
  font-size: 2em;
}
.pageteaser-teaser a {
  color: var(--theme-color-preset-one);
}
.pageteaser.grid-disabled .pageteaser-teaser:not(:last-child) {
  padding: 0 0 1rem;
  margin: 0 0 1rem;
  border-bottom: 1px solid rgba(0,0,0,.25);
}
.pageteaser.grid-disabled .button {
  margin-top: 2rem;
}
.slider .slick-track {
  cursor: grab;
}
.slider .slick-track:active {
  cursor: grabbing;
}
.slider .pageteaser {
  padding: 0 !important;
}
.slider .pageteaser.grid-enabled .pageteaser-content {
  display: table !important;
  width: 100%;
  table-layout: fixed;
}

.vivomedia-fontawesome-icon {
  float: left;
  margin: 0 1rem 0 0;
}

/* -----------------------------------------------
BUTTON INCLUDE
----------------------------------------------- */

.button .button-content {
  font-weight: 300;
}
.button .button-content > * {
  padding: 0.25rem 0.75rem;
  transition: none;
}

/* -----------------------------------------------
MAP
----------------------------------------------- */

#adressenselect {
  background: var(--theme-color-preset-one);
  height: 40px;
}

/* -----------------------------------------------
NAVIGATION BREADCRUMB
----------------------------------------------- */

.breadcrumb {
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  z-index: 1;
}
.breadcrumb::after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  background: #8f96a6;
}
.breadcrumb__list {
  list-style-type: none;
  max-width: 1400px;
  margin: 0 auto;
}
.breadcrumb__list li {
  display: inline-block;
  margin: 0;
  padding: 0 10px;
  color: var(--theme-color-preset-two);
}
.breadcrumb__list li:not(.breadcrumb__link) {
  padding-left: 0;
}
.breadcrumb__list li::before {
  display: none;
}
.breadcrumb__link a {
  color: inherit;
}
.breadcrumb__list li:not(.current)::after {
  content: "";
  position: absolute;
  top: 2.5px;
  right: 0;
  bottom: 2.5px;
  width: 2px;
  background: #8f96a6;
}
.breadcrumb__link::before {
  display: none;
}

/* -----------------------------------------------
NAVIGATION SIDEBAR
----------------------------------------------- */

.navigation a {
  background: none;
}
.navigation-sidebar {
  padding: 4rem 2rem 0;
}
.navigation-sidebar .navigation-item--level-1:not(.navigation-item--state-active) {
  display: none;
}
.navigation-sidebar .navigation-item {
  position: relative;
  display: table;
  width: 100%;
  padding: 0;
}
.navigation-sidebar .navigation-item::before {
  display: none;
}
.navigation-sidebar .navigation-item--state-active > .navigation-link {
  background: linear-gradient(to right,#0e8dcc 0,#ff2b41 99%);
  color: #FFF;
}
.navigation-sidebar .navigation-link {
  display: block;
  padding: .5rem 2.5rem .5rem 1.5rem;
  margin-bottom: 1px;
  color: inherit;
  background: #f5f5f5;
}
.navigation-sidebar .navigation-link:focus-visible,
.navigation-sidebar .navigation-link:hover {
  background: linear-gradient(to right,#0e8dcc 0,#ff2b41 99%);
  color: #FFF;
}
.navigation-sidebar .toggle-submenu {
  position: absolute;
  right: 0;
  top: 0;
  transform: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  width: 40px;
  height: 40px;
  padding: 0;
}

.navigation-sidebar .navigation-item--level-2 .navigation-link {
  padding-left: 2rem;
}
.navigation-sidebar .navigation-item--level-3 .navigation-link {
  padding-left: 2.5rem;
}
.navigation-sidebar .navigation-item--level-4 .navigation-link {
  padding-left: 3rem;
}

/* -----------------------------------------------
ACCORDION INCLUDE
----------------------------------------------- */

.accordion {
  border: 0;
}
.accordion-title {
  background: #ececed;
  padding: .75rem 5rem .75rem 1.5rem;
  border: 0;
  margin: 1rem 0 0;
}
.accordion-title i {
  height: 100%;
  background: #c5c7c8;
  top: 0;
  transform: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  min-width: 53px;
  font-size: 1.75em;
}
.accordion-title i::before {
  content: "\f067";
}
.accordion-title.ui-state-active i::before {
  content: "\f068";
}
.accordion-title h1,
.accordion-title h2,
.accordion-title h3,
.accordion-title p {
  font-size: 1.25em;
  font-weight: 600;
  color: #000;
}
.accordion-content {
  padding: 2rem 1.5rem;
}
.accordion-title.ui-state-active {
  background: #f2f6ea;
}
.accordion-title.ui-state-active h1,
.accordion-title.ui-state-active h2,
.accordion-title.ui-state-active h3,
.accordion-title.ui-state-active p {
  color: var(--theme-color-preset-one);
}
.accordion-title.ui-state-active i {
  background: var(--theme-color-preset-one);
}

/* -----------------------------------------------
ARTICLE
----------------------------------------------- */

.article-site .stage {
display: none;
}
#main.article {
  margin: 0 auto;
  max-width: 1000px;
  padding-top: var(--initial-header-height);
}
.fixed-top {
position: fixed;
top: var(--header-height);;
right: 0;
left: 0;
z-index: 1;
transition: all .25s;
}
.progress-container {
width: 100%;
background-color: transparent;
height: 2px;
display: block;
}
.progress-bar {
width: 0%;
display: block;
height: inherit;
}
.article-header {
  padding: 4rem 2rem 2rem;
}
.article .read-time,
.article .published-on {
  display: inline-block;
}
.article .read-time > span:first-child,
.article .published-on > span:first-child {
  font-weight: bold;
}
.article .eta {
  padding-right: 1rem;
}
.article div.padding-auto:first-of-type .container-content,
.article div.padding-auto:first-of-type .mehrspalter-content,
.article div.padding-auto:first-of-type:last-of-type .container-content,
.article div.padding-auto:first-of-type:last-of-type .mehrspalter-content {
padding-top: 0 !important;
}

/* -----------------------------------------------
OVERRIDE RULES
----------------------------------------------- */

.container .container-content {
  max-width: 1400px;
}
.container.padding-both .container-content {
  padding: 4rem 2rem !important;
}
.container.padding-top .container-content {
  padding: 4rem 2rem 0 2rem !important;
}
.container.padding-bottom .container-content {
  padding: 0 2rem 4rem 2rem !important;
}
.container.black-overlay .container-image::after {
  background: rgb(0 0 0 / 25%) !important;
}

.mehrspalter .mehrspalter-content {
  max-width: 1400px;
}
.mehrspalter.padding-both .mehrspalter-content {
  padding: 4rem 2rem !important;
}
.mehrspalter.padding-top .mehrspalter-content {
  padding: 4rem 2rem 0 2rem !important;
}
.mehrspalter.padding-bottom .mehrspalter-content {
  padding: 0 2rem 4rem 2rem !important;
}

div.padding-auto:first-of-type .container-content,
div.padding-auto:first-of-type .mehrspalter-content {
  padding: 4rem 2rem 0 !important;
}
div.padding-auto:last-of-type .container-content,
div.padding-auto:last-of-type .mehrspalter-content {
  padding: 0 2rem 4rem !important;
}
div.padding-auto:first-of-type:last-of-type .container-content,
div.padding-auto:first-of-type:last-of-type .mehrspalter-content {
  padding: 4rem 2rem !important;
}

.container.black-overlay .container-image::after {
  background: rgb(0 0 0 / 25%) !important;
}
.mehrspalter.black-overlay .mehrspalter-image::after {
  background: rgb(0 0 0 / 25%) !important;
}

.slider.contentwidth {
  max-width: 1400px !important;
}
.slick-prev,
.slick-next {
  transform: translate(0, -50%) !important;
}

/* -----------------------------------------------
SIDEBAR LAYOUT
----------------------------------------------- */

#main {
  position: relative;
}
#main .main-content {
  display: grid;
  position: relative;
  margin-top: 3.5rem;
}
.no-sidebar {
  grid-template-columns: 100%;
  -ms-grid-columns: 100%;
}
.sidebar-right {
  grid-template-columns: minmax(600px, auto) minmax(315px, 315px);
}
.sidebar-left {
  grid-template-columns: minmax(315px, 315px) minmax(600px, auto);
}
.sidebar-left-right {
  grid-template-columns: minmax(315px, 315px) minmax(300px, auto) minmax(315px, 315px);
}
.sidebar-left .left {
  -ms-grid-column: 1;
}
.sidebar-left .middle {
  -ms-grid-column: 2;
}
.sidebar-right .middle {
  -ms-grid-column: 1;
}
.sidebar-right .right {
  -ms-grid-column: 2;
}
.sidebar-left-right .left {
  -ms-grid-column: 1;
}
.sidebar-left-right .middle {
  -ms-grid-column: 2;
}
.sidebar-left-right .right {
  -ms-grid-column: 3;
}

/* -----------------------------------------------
LAYOUT WIDTH
----------------------------------------------- */

.sidebar-left,
.sidebar-right,
.sidebar-left-right {
  max-width: 1400px;
  margin: 0 auto;
}

/* -----------------------------------------------
FORMULAR
----------------------------------------------- */

legend {
  visibility: hidden;
  width: 0;
  height: 0;
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
.clearfix {
  position: relative;
  margin-bottom: 1.5rem;
}
.clearfix.error {
  margin-bottom: 3rem;
}
div:not(.inputfilter):not(.search-results):not(.calendarcontrols) > form > fieldset> .clearfix:last-child > label {
  visibility: hidden;
  height: 0;
  width: 0;
}
div:not(.inputfilter):not(.search-results):not(.calendarcontrols) > form > fieldset> .clearfix:last-child > .input {
  border: 0;
}
div:not(.inputfilter):not(.search-results):not(.calendarcontrols) > form > fieldset> .clearfix:last-child  > .input > * {
  padding: 0;
}
.clearfix > label {
  cursor: text;
  z-index: 1;
  padding: 0 .25rem;
  font-size: .75rem;
  transition: all .25s;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
}
.clearfix.focused > label {
  color: #3498db;
}
.clearfix.filled > label {
  color: #27ae60;
}
.clearfix.error > label {
  color: #e74c3c;
}
.clearfix > .input {
  border: 1px solid #e4e4e4;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.clearfix.focused > .input {
  border-color: #3498db;
}
.clearfix.filled > .input {
  border-color: #27ae60;
}
.clearfix.error > .input {
  border-color: #e74c3c;
}
.clearfix > .input > * {
  padding: .75rem;
}
.clearfix > .input > input,
.clearfix > .input > textarea,
.clearfix > .input > select {
  display: block;
  width: 100%;
  height: 50px;
  font-size: inherit;
  font-family: inherit;
  border: 0;
  line-height: normal;
  outline: 0;
  appearance: none;
  background: none;
}
.clearfix > .input > textarea {
  min-height: 200px;
  width: 100% !important;
}
.clearfix > .input input {
  margin: 0;
  outline: none;
}
.clearfix > .input > select {
  cursor: pointer;
}
.clearfix > .input.selectbox::after {
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #d4d4d4;
  pointer-events: none;
}
.input.selectbox:focus-within::after {
  color: inherit;
}
.clearfix .add-on,
.clearfix .inputs-list label,
.clearfix #termineingabe-form-image-uploadfields {
  position: relative;
  display: block;
}
.clearfix input[type='checkbox'] {
  appearance: none;
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border: none;
  outline: none;
  vertical-align: middle;
}
.clearfix input[type='checkbox']::after {
  content: "\f0c8";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  top: 2px;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  font-size: 1.25rem;
  cursor: pointer;
}
.clearfix input[type='checkbox']:checked::after {
  content: "\f14a";
  font-weight: 900;
}
.clearfix .inputs-list {
  margin: 0;
  list-style-type: none;
}
.clearfix .help-inline {
  color: #d63031;
  display: block;
  padding: .5rem 0;
  position: absolute;
  white-space: nowrap;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
}
#termineingabe-form .clearfix:nth-of-type(9),
#termineingabe-form .clearfix:nth-of-type(10),
#termineingabe-form .clearfix:nth-of-type(11),
#termineingabe-form .clearfix:nth-of-type(12),
#termineingabe-form .clearfix:nth-of-type(13),
#termineingabe-form .clearfix:nth-of-type(14) {
  float: left;
}
#termineingabe-form .clearfix:nth-of-type(9),
#termineingabe-form .clearfix:nth-of-type(12) {
  width: calc(100% - 120px);
}
#termineingabe-form .clearfix:nth-of-type(10),
#termineingabe-form .clearfix:nth-of-type(11),
#termineingabe-form .clearfix:nth-of-type(13),
#termineingabe-form .clearfix:nth-of-type(14) {
  width: 60px;
  padding-left: 1rem;
}
#termineingabe-form .clearfix:nth-of-type(15) {
  clear: left;
  float: none;
}
.actions ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.actions .next,
.actions .previous {
  display: inline-block;
  padding: 0;
}
.actions .next .btn,
.actions .previous .btn {
  position: relative;
  display: block;
  font-weight: bold !important;    
  text-decoration: none;
  border: 2px solid;
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
  background: none;
  cursor: pointer;
  outline: none;
  padding: .5rem 1.5rem;
  transition: background .25s, border-color .25s, color .25s; 
}
.actions .next .btn:hover,
.actions .next .btn:focus,
.actions .next .btn:active,
.actions .previous .btn:hover,
.actions .previous .btn:focus,
.actions .previous .btn:active {
  color: #FFF !important;
}
.success-message {
  padding: .25em 1em;
  background: #7eb62e;
  color: #fff;
}
.success-message p {
  margin: 1rem 0;
}
.success-message i {
  padding-right: .6em;
}

/* -----------------------------------------------
FOOTER
----------------------------------------------- */

footer {
  position: relative;
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer ul {
  margin: 0;
}
footer ul li {
  margin: 0;
}
footer p {
  margin: 0 0 .5rem 0;
}
#footer a {
  background-image: linear-gradient(currentcolor, currentcolor);
  background-size: 0% 2px;
  text-decoration: none;
  background-position: 0% 100%;
  background-repeat: no-repeat;
  transition: 0.25s ease 0s;
}
#footer a:hover, #footer a:focus, #footer a:active {
  background-size: 100% 2px;
}
footer a:not(.button-content) {
  color: inherit;
}
footer .table thead tr th {
  background: none;
}
footer .table tbody tr:nth-of-type(even) th,
footer .table tbody tr:nth-of-type(even) td {
  background: none;
}

.footer-multicolumn {
  overflow: visible;
  background: linear-gradient(to bottom,#0e8dcc 21%,#ff2b41 100%) !important;
  margin-top: 200px;
}
.footer-multicolumn::after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 160px;
  background-image: url(/_Resources/Static/Packages/DigiPublica.Design/Frontend/Images/kontur_kinder_ms.png);
  background-size: cover;
  left: 0;
  top: -160px;
  pointer-events: none;
}
.footer-multicolumn .vivomedia-fontawesome-icon {
  color: #FFF;
}
.footer-multicolumn .vivomedia-fontawesome-icon + .text > p {
  margin: 0;
}
.footer-multicolumn .mehrspalter-content {
  grid-gap: 18%;
}
.footer-multicolumn .spalte {
  position: relative;
}
.footer-multicolumn .spalte:not(:first-child)::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(-85% / 2);
  transform: translateX(100%);
  width: 2px;
  height: 100%;
  background: #FFF;
}
.footer-multicolumn h2 {
  font-size: 2em !important;
}
.footer-multicolumn li:first-child a {
  border-top: 1px solid #FFF;
}
.footer-multicolumn li a {
  padding: 12px 12px 12px 0;
  display: block;
  transition: padding .25s;
  border-bottom: 1px solid #FFF;
}
.footer-multicolumn li a:hover,
.footer-multicolumn li a:focus-visible {
  padding-left: 5px;
}
.footer-multicolumn .button {
  margin: 1rem 0 0;
}

/* -----------------------------------------------
OFFCANVAS-TOGGLE
----------------------------------------------- */

.offcanvas-toggle {
  background: transparent;
  outline: none;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
  position: absolute;
  left: 1rem;
  top: 1rem;
  padding: .5rem;
  z-index: 12;
  transition: all .25s;
  cursor: pointer;
  background: var(--theme-color-preset-one);
}
.offcanvas-toggle .line {
  width: 25px;
  height: 2px;
  background-color: #FFF;
  display: block;
  margin: 5px auto;
  -webkit-transition: width 0.25s ease-in-out;
  -o-transition: width 0.25s ease-in-out;
  transition: width 0.25s ease-in-out;
  text-indent: -9999px;
  border-radius: 0px;
}
.offcanvas-toggle .line:nth-child(1) {
  width: 20px;
}
.offcanvas-toggle .line:nth-child(1),
.offcanvas-toggle .line:nth-child(3) {
  margin: 5px 0 5px auto;
}
.offcanvas-toggle.is-active .line:nth-child(3) {
  width: 10px;
}

/* -----------------------------------------------
OFFCANVAS-MENU
----------------------------------------------- */

.offcanvas {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -400px;
  width: 400px;
  transition: all .75s cubic-bezier(.65,0,.35,1);
  z-index: 2;
  box-shadow: none;
  overflow-x: hidden;
  overflow-y: auto;
  background: #FFF;
}
.offcanvas.is-active {
  transform: translateX(-400px);
  box-shadow: 0 0 20px -10px rgb(0 0 0 / 50%);
}
.offcanvas br {
  display: none;
}
.offcanvas ul,
.offcanvas li {
  list-style-type: none;
}
.offcanvas ul {
  position: absolute;
  margin: 0;
  padding: 0;
  width: inherit;
  transition: all .75s cubic-bezier(.65,0,.35,1);
  top: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.offcanvas > ul {
  top: var(--header-height);
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  bottom: 6rem;
}
.offcanvas ul.active {
visibility: visible;
opacity: 1;
pointer-events: all;
}
.offcanvas .navigation-item--state-active > a {
  background: var(--theme-color-preset-one);
  color: #FFF;
}
.offcanvas[data-level-current="1"] > ul {
  transform: translateX(0);
}
.offcanvas[data-level-current="2"] > ul {
  transform: translateX(-400px);
}
.offcanvas[data-level-current="3"] > ul {
  transform: translateX(-800px);
}
.offcanvas[data-level-current="4"] > ul {
  transform: translateX(-1200px);
}
.offcanvas[data-level-current="5"] > ul {
  transform: translateX(-1600px);
}
.offcanvas[data-level-current="6"] > ul {
  transform: translateX(-2000px);
}
.offcanvas .navigation-item {
  position: static;
  display: table;
  width: 100%;
  padding: 0;
}
.offcanvas .navigation-item::before {
  display: none;
}
.offcanvas .navigation-item  .navigation-link,
.offcanvas .navigation-item  .previous-navigation {
  text-decoration: none;
  display: table-cell;
  font-size: 1.25rem;
  padding: .75rem 2rem;
  transition: all .25s;
  visibility: visible;
  opacity: 1;
}
.offcanvas .navigation-item--level-1 > a,
.offcanvas .navigation-item .previous-navigation {
  font-size: 1.35rem !important;  
}
.offcanvas .navigation-item--previous {
  position: sticky;
  top: var(--header-height);
  background: #FFF;
}
.offcanvas .navigation-item--previous::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 100vh;
  left: 0;
  right: 0;
  background: inherit;
  z-index: -1;
  pointer-events: none;
}
.offcanvas .navigation-item--level-1 > .navigation-link {
  padding-right: 0;
}
.offcanvas .navigation-item .previous-navigation {
  padding-left: 0 !important;
}

/* -----------------------------------------------
SUBMENU-BUTTON
----------------------------------------------- */

.offcanvas .toggle-submenu {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
  cursor: pointer;
  width: 51px;
  font-size: 1.25rem;
  transition: all .25S;
  padding: 0 2rem;
  visibility: visible;
  opacity: 1;
}
.offcanvas .close-submenu {
  text-align: left !important;
  width: 25px !important;
  padding-right: 1rem;
  border-left: none;
  font-size: 1.75rem;
}

/* -----------------------------------------------
MEDIA-QUERIES
----------------------------------------------- */

@media(min-width: 1024px) {
  .offcanvas {
      display: none;
  }
  .offcanvas-toggle {
      display: none;
  }
}
@media(max-width: 1023px) {
  body {
      font-size: .85em;
  }
  body,
  body.scrolled {
      --header-height: 160px;
  }
  .header-wrap {
      background: transparent;
  }
  header.is-sticky .logo-img,
  header .logo-img {
      height: 130px;
      top: 6px;
  }
  header .logo::after {
      width: 820px;
      height: 215px;
  }
  header .logo-img.sticky {
      display: block;
  }
  header .logo-img:not(.sticky) {
      display: none;
  }    
  body.noscroll .logo-img:not(.sticky),
  header.is-sticky .logo-img:not(.sticky) {
      display: block;
  }
  body.noscroll .logo-img.sticky,
  header.is-sticky .logo-img.sticky {
      display: none;
  }
  .navigation-main {
      display: none;
  }
  .navigation-sidebar {
      display: none;
  }
  .sidebar-left,
  .sidebar-right,
  .sidebar-left-right {
      grid-template-columns: 100%;
      -ms-grid-columns: 100%;
  }
  .sidebar-left > .left {
      grid-row: 2;
  }
  .sidebar-left > .middle {
      grid-row: 1;
  }
  .sidebar-right > .middle {
      grid-row: 1;
  }
  .sidebar-right > .right {
      grid-row: 2;
  }
  .sidebar-left-right > .left {
      grid-row: 2;
  }
  .sidebar-left-right > .middle {
      grid-row: 1;
  }
  .sidebar-left-right > .right {
      grid-row: 3;
  }
}
@media(max-width: 767px) {
  .footer-multicolumn .spalte:not(:first-child)::after {
      display: none;
  }
  .footer-multicolumn .mehrspalter-content {
      grid-gap: 2rem !important;
      grid-template-columns: 1fr !important;
  }
}
@media(max-width: 679px) {
  .table th,
  .table td {
      display: block;
  }
  footer .spalte:last-child h3,
  footer .spalte:last-child p {
      text-align: left !important;
  }
  footer .spalte .image {
      width: 50% !important;
  }
}
@media (max-width: 767px) and (min-width: 481px) {
  footer .mehrspalter.columns3[data-layout="auto"] .mehrspalter-content > div:last-child *,
  footer .mehrspalter.columns3[data-layout="20-20-60"] .mehrspalter-content > div:last-child *,
  footer .mehrspalter.columns3[data-layout="60-20-20"] .mehrspalter-content > div:last-child *,
  footer .mehrspalter.columns3[data-layout="20-60-20"] .mehrspalter-content > div:last-child *,
  footer .mehrspalter.columns3[data-layout="25-25-50"] .mehrspalter-content > div:last-child *,
  footer .mehrspalter.columns3[data-layout="50-25-25"] .mehrspalter-content > div:last-child *,
  footer .mehrspalter.columns3[data-layout="25-50-25"] .mehrspalter-content > div:last-child *,
  footer .mehrspalter.columns4[data-layout="auto"] .mehrspalter-content > div:last-child *,
  footer .mehrspalter.columns5[data-layout="auto"] .mehrspalter-content > div:last-child * {
      text-align: left !important;
  }
  .service-multicolumn .mehrspalter-content {
      grid-template-columns: 1fr !important;
  }
}
@media (max-width: 480px) {
  .service-menu.navigation[data-layout="20-20-20-20-20"] > .navigation-menu > .navigation-list {
      grid-template-columns: 1fr 1fr;
  }
  footer .mehrspalter.columns2[data-layout="auto"] .mehrspalter-content > div:last-child *,
  footer .mehrspalter.columns2[data-layout="40-60"] .mehrspalter-content > div:last-child *,
  footer .mehrspalter.columns2[data-layout="60-40"] .mehrspalter-content > div:last-child *,
  footer .mehrspalter.columns2[data-layout="25-75"] .mehrspalter-content > div:last-child *,
  footer .mehrspalter.columns2[data-layout="75-25"] .mehrspalter-content > div:last-child *,
  footer .mehrspalter.columns3[data-layout="auto"] .mehrspalter-content > div:last-child *,
  footer .mehrspalter.columns3[data-layout="20-20-60"] .mehrspalter-content > div:last-child *,
  footer .mehrspalter.columns3[data-layout="60-20-20"] .mehrspalter-content > div:last-child *,
  footer .mehrspalter.columns3[data-layout="20-60-20"] .mehrspalter-content > div:last-child *,
  footer .mehrspalter.columns3[data-layout="25-25-50"] .mehrspalter-content > div:last-child *,
  footer .mehrspalter.columns3[data-layout="50-25-25"] .mehrspalter-content > div:last-child *,
  footer .mehrspalter.columns3[data-layout="25-50-25"] .mehrspalter-content > div:last-child *,
  footer .mehrspalter.columns4[data-layout="auto"] .mehrspalter-content > div:last-child *,
  footer .mehrspalter.columns5[data-layout="auto"] .mehrspalter-content > div:last-child * {
      text-align: left !important;
  }
}
@media(max-width: 400px) {
  .offcanvas {
      right: -100vw;
      width: 100vw;
  }
  .offcanvas.is-active {
      transform: translateX(-100vw);
  }
  .offcanvas[data-level-current="2"] > ul {
      transform: translateX(-100vw);
  }
  .offcanvas[data-level-current="3"] > ul {
      transform: translateX(-200vw);
  }
  .offcanvas[data-level-current="4"] > ul {
      transform: translateX(-300vw);
  }
  .offcanvas[data-level-current="5"] > ul {
      transform: translateX(-400vw);
  }
  .offcanvas[data-level-current="6"] > ul {
      transform: translateX(-500vw);
  }
  header .search {
      width: calc(100vw - 4rem - 50px);
      transform: translateX(calc(100vw + 0px - 2rem));
  }
  body.noscroll .accessibility {
      transform: translateX(calc(-100vw + 50px + 2rem));
  }    
}