@charset "UTF-8";
/*! modern-normalize v0.6.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
/*
Document
========
*/
/**
Use a better box model (opinionated).
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/**
Use a more readable tab size (opinionated).
*/
:root {
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

/**
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 */
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* 2 */
  margin: 0;
}

/*
Sections
========
*/
/**
Remove the margin in all browsers.
*/
body {
  margin: 0;
}

/*
Grouping content
================
*/
/**
Add the correct height in Firefox.
*/
hr {
  height: 0;
}

/*
Text-level semantics
====================
*/
/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, 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;
}

/*
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 */
  max-width: 100%;
}

/**
Remove the inheritance of text transform in Edge and Firefox.
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;
}

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/
legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/
[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 Chrome and Safari.
*/
summary {
  display: list-item;
}

/* Improve readability when focused and also mouse hovered in all browsers. */
a, a:link, a:active, a:hover {
  outline: 0;
  -moz-outline-style: none;
}

form, div:focus, nav:focus {
  outline: 0;
  border: none;
}

picture {
  display: block;
}

/**
 * @file
 * Styles for system messages.
 */
.messages {
  padding: 15px 20px 15px 35px; /* LTR */
  word-wrap: break-word;
  border: 1px solid;
  border-width: 1px 1px 1px 0; /* LTR */
  border-radius: 2px;
  background: no-repeat 10px 17px; /* LTR */
  overflow-wrap: break-word;
}

[dir=rtl] .messages {
  padding-right: 35px;
  padding-left: 20px;
  text-align: right;
  border-width: 1px 0 1px 1px;
  background-position: right 10px top 17px;
}

.messages + .messages {
  margin-top: 1.538em;
}

.messages__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.messages__item + .messages__item {
  margin-top: 0.769em;
}

/* See .color-success in Seven's colors.css */
.messages--status {
  color: #325e1c;
  border-color: #c9e1bd #c9e1bd #c9e1bd transparent; /* LTR */
  background-color: #f3faef;
  background-image: url(../images/check.svg);
  box-shadow: -8px 0 0 #77b259; /* LTR */
}

[dir=rtl] .messages--status {
  margin-left: 0;
  border-color: #c9e1bd transparent #c9e1bd #c9e1bd;
  box-shadow: 8px 0 0 #77b259;
}

/* See .color-warning in Seven's colors.css */
.messages--warning {
  color: #734c00;
  border-color: #f4daa6 #f4daa6 #f4daa6 transparent; /* LTR */
  background-color: #fdf8ed;
  background-image: url(../images/warning.svg);
  box-shadow: -8px 0 0 #e09600; /* LTR */
}

[dir=rtl] .messages--warning {
  border-color: #f4daa6 transparent #f4daa6 #f4daa6;
  box-shadow: 8px 0 0 #e09600;
}

/* See .color-error in Seven's colors.css */
.messages--error {
  color: #a51b00;
  border-color: #f9c9bf #f9c9bf #f9c9bf transparent; /* LTR */
  background-color: #fcf4f2;
  background-image: url(../images/error.svg);
  box-shadow: -8px 0 0 #e62600; /* LTR */
}

[dir=rtl] .messages--error {
  border-color: #f9c9bf transparent #f9c9bf #f9c9bf;
  box-shadow: 8px 0 0 #e62600;
}

.messages--error p.error {
  color: #a51b00;
}

/**
 * @file
 * Visual styles for progress bar.
 *
 * @see progress.js
 */
.progress__track {
  border-color: #b3b3b3;
  border-radius: 10em;
  background-color: #f2f1eb;
  background-image: linear-gradient(#e7e7df, #f0f0f0);
  box-shadow: inset 0 1px 3px hsla(0, 0%, 0%, 0.16);
}

.progress__bar {
  height: 16px;
  margin-top: -1px;
  margin-left: -1px; /* LTR */
  padding: 0 1px;
  transition: width 0.5s ease-out;
  -webkit-animation: animate-stripes 3s linear infinite;
  -moz-animation: animate-stripes 3s linear infinite;
  border: 1px #07629a solid;
  border-radius: 10em;
  background: #057ec9;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15)), linear-gradient(to right bottom, #0094f0 0%, #0094f0 25%, #007ecc 25%, #007ecc 50%, #0094f0 50%, #0094f0 75%, #0094f0 100%);
  background-size: 40px 40px;
}

[dir=rtl] .progress__bar {
  margin-right: -1px;
  margin-left: 0;
  animation-direction: reverse;
}

@media screen and (prefers-reduced-motion: reduce) {
  .progress__bar {
    transition: none;
    -webkit-animation: none;
    -moz-animation: none;
  }
}
/**
 * Progress bar animations.
 */
@keyframes animate-stripes {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 0 0, -80px 0;
  }
}
/* Image Style: Content Image Width, ca */
:root {
  --gap: min(2.8571428571vw, 40px);
  --rowgap: min(10vh,100px);
  --maxtext: min(40em,660px);
  --mintext: min(14em,360px);
}
@media screen and (min-width: 1400px) {
  :root {
    --gap:80px;
  }
}

/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v30-latin-regular.woff2") format("woff2"), url("../fonts/roboto-v30-latin-regular.woff") format("woff"); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/roboto-v30-latin-500.woff2") format("woff2"), url("../fonts/roboto-v30-latin-500.woff") format("woff"); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-v30-latin-700.woff2") format("woff2"), url("../fonts/roboto-v30-latin-700.woff") format("woff"); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
body {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

b, strong {
  font-weight: 500;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

@media (prefers-reduced-motion) {
  body {
    scroll-behavior: unset;
  }
}
/* Focusing the button with a keyboard will show a dashed black line. */
button:focus-visible,
a:focus-visible {
  outline: 4px dashed black;
  background-color: lightyellow;
  color: black !important;
}

.views-row a {
  display: block;
}

/* Focusing the button with a mouse, touch, or stylus will show a subtle drop shadow. */
button:focus:not(:focus-visible) {
  outline: none;
  box-shadow: 1px 1px 5px rgba(1, 1, 0, 0.7);
}

h1, h2 {
  max-width: max(660px, 24em);
}
@media screen and (min-width: 1400px) {
  .layout__region--top h1, .layout__region--top h2 {
    max-width: calc(50% - 0.5 * var(--gap));
  }
}

img {
  border: 0;
  vertical-align: bottom;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

a, .button {
  transition: color 0.3s, background-color 0.3s, box-shadow 0.3s, border-color 0.3s;
}

p, ul, ol {
  margin-bottom: 1.7em;
  margin-top: 0;
}

.node p + ul:not(.checked) {
  margin-top: -1.6em;
  padding-left: 1.7em;
}

.node p + ul::marker {
  font-size: 75%;
}

.layout-sidebar .block :last-child,
.article-content :last-child,
p:last-child,
ul:last-child {
  margin-bottom: 0;
}

a[href^=mailto],
a[href^=tel] {
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
  white-space: nowrap;
}

a[href^=tel]:hover {
  color: inherit;
}

.selectall {
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
}

.nobreak {
  white-space: nowrap;
}

.border-radius {
  border-radius: 10px;
}

.button, .button a,
[type=submit] {
  display: inline-block;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  margin: 1em 0 0 0;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  cursor: pointer;
  border: none;
}

.button:hover, .button a:hover {
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.3);
}

.button:focus, .button a:focus {
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.5);
}

.button:active, .button a:active {
  box-shadow: inset 1px 2px 7px 0 rgba(0, 0, 0, 0.6);
}

.node a[name], .node a[name]:hover {
  color: inherit;
  cursor: text;
  text-decoration: none;
  scroll-margin-top: 30px;
}

.button + .button {
  margin-top: 2em;
}

.contextual-region {
  min-width: 26px;
}

.contextual-region .contextual-links a {
  border: none;
}

.entitymediaedit-form a,
.entitymediadelete-form a,
.block-contentblock-edit a {
  text-transform: lowercase;
}

.entitymediaedit-form a::before,
.entitymediadelete-form a::before {
  content: "Bild ";
  text-transform: none;
}

.block-contentblock-edit a::before {
  content: "Block ";
  text-transform: none;
}

.tabs.primary {
  background-color: #f9f9f9;
}

.form-text,
.form-email,
.form-textarea {
  padding: 15px;
  display: block;
  width: 100%;
  border-width: 1px;
}

form label {
  font-weight: bold;
}

.form-type-checkbox {
  margin-left: 2em;
}

.form-type-checkbox .form-checkbox {
  margin-left: -2em;
  width: 1em;
  height: 1em;
  margin-right: calc(1em - 2px); /* border-with */
}

.form-type-checkbox .option,
.form-type-checkbox input {
  cursor: pointer;
}

[type=checkbox] {
  border-radius: 3px;
  -webkit-appearance: inherit;
     -moz-appearance: inherit;
          appearance: inherit;
  background-color: white;
}

[type=checkbox]:checked {
  background-color: #C1272D;
  box-shadow: inset 0 0 0 4px white;
}

.form-item-field-datenschutz-value label,
.form-item-field-datenschutz-value .description {
  font-size: 80%;
}

.form-item-field-datenschutz-value .form-checkbox {
  vertical-align: middle;
}

.path-user form {
  margin: 3em auto;
  max-width: 660px;
}

.node--unpublished {
  padding: 30px;
}

.node--unpublished::before {
  content: "Seite ist nicht veröffentlicht";
  display: block;
  width: 100%;
  padding: 30px;
  color: red;
  text-align: center;
  font-size: 200%;
  opacity: 0.2;
  text-transform: uppercase;
  font-weight: bold;
}

.node header {
  position: relative;
}

#header {
  position: fixed;
  top: 0;
  z-index: 9;
  margin-top: 0;
  transition: margin-top 0.5s;
  width: 100%;
}

.toolbar-fixed #header {
  top: 40px;
}

.toolbar-fixed.toolbar-tray-open #header {
  top: 80px;
}

.site-logo {
  line-height: 1;
}

.responsive-logo .logo-full {
  display: none;
}

main td {
  vertical-align: top;
}

main td:first-child {
  padding-right: 1em;
}

.float-right {
  float: right;
  max-width: 50%; /*  TEST */
}

.image-center img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.add-ellipsis::after {
  content: "…";
}

.hide-mobile {
  display: none;
}

.smaller {
  font-size: 80%;
}

.bigger {
  font-size: 120%;
}

.shadow {
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}

.border {
  border: 1.5px solid;
}

.text-center {
  text-align: center;
}

.padding,
.has-sidebar .bg-lightgrey.padding-top.padding-bottom,
.has-sidebar .bg-primary.padding-top.padding-bottom {
  padding: var(--gap, 80px);
}

.has-sidebar .padding-top.padding-bottom[class*=para] {
  padding-left: var(--gap, 80px);
  padding-right: var(--gap, 80px);
}

.padding-top {
  padding-top: var(--rowgap, 100px);
}

.padding-bottom {
  padding-bottom: var(--rowgap, 100px);
}

.padding-half {
  padding: var(--gap, 80px);
}

.no-padding {
  padding: 0;
}

.bg-lightgrey + .bg-lightgrey.padding-top:not(.cards-item) {
  padding-top: 0;
}

.margin {
  margin: var(--rowgap, 100px) 20px;
}

.margin-top {
  margin-top: var(--rowgap, 100px);
}

.margin-bottom {
  margin-bottom: var(--rowgap, 100px);
}

.no-margin {
  margin-top: 0;
  margin-bottom: 0;
}

/* .has-sidebar .margin {
  margin-left: auto;
  margin-right: auto;
} */
.margin-half {
  margin-top: var(--gap, 80px);
  margin-bottom: var(--gap, 80px);
}

.columns {
  gap: var(--gap, 80px);
}

.columns h2,
.columns h3 {
  -moz-column-span: all;
       column-span: all;
}

.card {
  position: relative;
  padding-bottom: calc(var(--gap, 80px) + var(--rowgap, 100px));
}

.card .padding {
  padding: var(--gap, 80px);
}

.card-bottom {
  position: absolute;
  bottom: 0;
  margin: 0;
  width: 100%;
}

.more-link {
  text-align: left;
  margin: 0;
}

.maintenance-page header {
  text-align: center;
}

.maintenance-page img {
  height: 80px;
}

.maintenance-page .name-and-slogan {
  display: none;
}

.maintenance-page .layout-content {
  margin-bottom: 100px;
}

.maintenance-page .done {
  color: green;
}

.maintenance-page .is-active {
  font-weight: bold;
}

.messages {
  margin: 1em auto;
}

.iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* ratio 16x9 */
  height: 0;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

/* ratio 4x3 */
.iframe-wrapper.ratio4x3 {
  padding-bottom: 75%;
  aspect-ratio: 4/3;
}

.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

iframe {
  max-width: 100%;
}

.block-views-blockcopyright-block td {
  padding: 0 15px 10px 0;
}

.block-views-blockcopyright-block td:first-child img {
  background-color: lightgrey;
  padding: 4px;
}

div.contextual {
  min-width: 25px;
}

a .contextual-region button {
  display: none;
}

footer .contextual-region {
  max-width: 50%;
}

.vertical-align .grid,
.vertical-align.grid,
.vertical-align .flex,
.vertical-align.flex {
  align-items: center;
}

.vertical-align-text .field-paragraph-text,
.vertical-align-text .field-paragraph-text,
.vertical-align-image .field-paragraph-media,
.vertical-align-image .field-paragraph-media {
  align-self: center;
}

@media screen and (min-width: 900px) {
  .hide-mobile {
    display: initial;
  }
  .hide-desktop {
    display: none;
  }
  .responsive-logo .logo-full {
    display: inline-block;
  }
  .responsive-logo .logo-mobile {
    display: none;
  }
  .gradient > div:not(.contextual-region) {
    z-index: 9;
  }
}
@media screen and (min-width: 1560px) {
  .border[class*=paragraph] {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
}
#block-fus-branding {
  z-index: 2;
  flex-shrink: 0;
}

#navigation {
  pointer-events: auto;
}

ul.sf-menu a, ul.sf-menu span.nolink {
  display: block;
  position: relative;
  white-space: nowrap;
}

.sf-menu a {
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

ul.sf-menu.sf-accordion,
ul.sf-menu.sf-accordion ul,
ul.sf-menu.sf-accordion li {
  text-align: left;
}

ul.sf-accordion {
  overflow: auto;
  pointer-events: initial;
  max-height: calc(100vh - (50px + 2 * 25px));
}
ul.sf-accordion > li:last-child {
  margin-bottom: 60px;
}
ul.sf-accordion li a:active,
ul.sf-accordion li li a:active {
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.3);
}
ul.sf-accordion li li li a,
ul.sf-accordion li li li span {
  padding-left: 70px;
  font-size: 0.95em;
  line-height: 3em;
}
ul.sf-accordion li li li a:hover,
ul.sf-accordion li li li a.is-active,
ul.sf-accordion li li li a:active {
  padding-left: 65px;
}

ul.sf-menu.sf-accordion.sf-expanded {
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
}

/* HAMBURGER-Menü */
.sf-accordion-toggle {
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity, filter;
  float: right;
  pointer-events: auto;
}
.sf-accordion-toggle a {
  position: relative;
  width: 60px;
  display: inline-block;
  vertical-align: bottom;
}
.sf-accordion-toggle span {
  margin-top: -2px;
  text-indent: -9999px;
  top: 50%;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 75ms;
  margin-right: 20px;
}
.sf-accordion-toggle span,
.sf-accordion-toggle span:after,
.sf-accordion-toggle span:before {
  position: absolute;
  transition: transform ease 0.15s;
  right: 0;
  width: 20px;
  height: 2px;
}
.sf-accordion-toggle span:after,
.sf-accordion-toggle span:before {
  display: block;
  content: "";
}
.sf-accordion-toggle span:before {
  top: -6px;
  transition: top 75ms ease 0.12s, opacity 75ms ease;
}
.sf-accordion-toggle span:after {
  bottom: -6px;
  transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.sf-accordion-toggle .sf-expanded span {
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(45deg);
}
.sf-accordion-toggle .sf-expanded span:before {
  top: 0;
  transition: top 75ms ease, opacity 75ms ease 0.12s;
  opacity: 0;
}
.sf-accordion-toggle .sf-expanded span:after {
  bottom: 0;
  transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transform: rotate(-90deg);
}

.sf-accordion .menuparent > a:after,
.sf-accordion .menuparent > span:after {
  float: right;
  width: 20px;
  content: "✕";
  text-align: center;
  transform: rotate(45deg);
  transition: transform 0.2s ease-in-out;
}

.sf-accordion .menuparent.sf-expanded > a:after,
.sf-accordion .menuparent.sf-expanded > span:after {
  transform: rotate(0deg);
}

ul.sf-menu.sf-horizontal:focus {
  border: none;
  outline: none;
}

ul.sf-horizontal ul {
  background: #fff;
  width: auto;
}

ul.sf-horizontal li:hover > ul,
ul.sf-horizontal li.sfHover > ul {
  left: -40px;
  border-radius: 10px;
}

.sf-menu .sf-clone-parent > .nolink {
  display: none;
}

.nolink, li:not(.sf-clone-parent) > a.menuparent {
  cursor: context-menu;
}

.menu-devider {
  cursor: default;
  display: none;
}

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

.menu--footer {
  text-align: center;
}
.menu--footer a {
  line-height: 40px;
  display: inline-block;
  width: 100%;
  text-decoration: underline;
}
@media screen and (min-width: 900px) {
  .menu--footer .menu {
    display: flex;
    justify-content: flex-end;
    gap: 2.5em;
    min-width: 350px; /* Safari 13 */
  }
  .menu--footer a {
    text-decoration: none;
    line-height: 1;
  }
}

ul.sf-menu.sf-horizontal {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
ul.sf-menu.sf-horizontal::after {
  display: none;
}

@media screen and (min-width: 900px) {
  #navigation {
    position: relative;
    pointer-events: auto;
  }
}
@media screen and (min-width: 1024px) {
  .menu-devider {
    display: inline;
  }
}
/**
 * @file
 * Visual styles for tabs.
 */
div.tabs {
  margin: 1em 0;
}

ul.tabs {
  margin: 0 0 0.5em;
  padding: 0;
  list-style: none;
}

.tabs > li {
  display: inline-block;
  margin-right: 0.3em; /* LTR */
}

[dir=rtl] .tabs > li {
  margin-right: 0;
  margin-left: 0.3em;
}

.tabs a {
  display: block;
  padding: 0.2em 1em;
  text-decoration: none;
}

.tabs a.is-active {
  background-color: #eee;
}

.tabs a:focus,
.tabs a:hover {
  background-color: #f5f5f5;
}

body {
  line-height: 1.8;
  font-size: 1.8rem;
  font-weight: 400;
  color: #333;
}
@media screen and (min-width: 1024px) {
  body {
    color: #202020;
  }
}

.bg-primary {
  background-color: #C1272D;
}

.bg-secondary {
  background-color: #7bbddc;
}

.bg-light {
  background-color: #e16d71;
}

.bg-dark {
  background-color: #6c1619;
}

.bg-grey {
  background-color: #d5dadd;
}

.bg-lightgrey {
  background-color: #e6e6e6;
}

.bg-darkgrey {
  background-color: #202020;
}

.bg-gradient {
  background-color: #202020;
}

.bg-white {
  background-color: white;
}

.bg-darkgrey {
  background-color: #202020;
}

.c-primary {
  color: #C1272D;
}

.c-secondary {
  color: #7bbddc;
}

.c-font {
  color: #202020;
}

.c-white,
.c-white > a,
.c-white > a:hover,
.c-white > a:focus {
  color: white;
}

.b-primary {
  border-color: #C1272D;
}

.b-secondary {
  border-color: #7bbddc;
}

.b-grey {
  border-color: #d5dadd;
}

.article-content > .border.padding:not(.paragraph--no--layout) {
  border-width: 0;
  padding: 0 20px;
}

.article-content > .border.padding:not(.paragraph--no--layout) > div {
  border: 1px solid;
  padding: 80px;
}

a:not([class*=c-]),
.read-more {
  color: #C1272D;
}

h1, h2, h3 {
  font-weight: 500;
}

h1 {
  font-size: 2.8rem;
  font-size: clamp(2.8rem, 3.1481481481vw + 1.7925925926rem, 6.2rem);
  margin-top: 0;
  margin-bottom: 0.2em;
  line-height: 1.16;
}
.has-banner h1 {
  color: white;
  padding: 0.5em 0;
  margin-bottom: 1em;
}
@media screen and (min-width: 900px) {
  .has-banner h1 {
    padding: 0;
  }
}

h2 {
  font-size: 2.4rem;
  font-size: clamp(2.4rem, 0.7407407407vw + 2.162962963rem, 3.2rem);
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 6rem;
}
.node--type-page .flex-1-2 h2 {
  margin-bottom: 0;
}
.layout > h2:first-child {
  margin-top: -0.25em;
}

h3 {
  font-size: 2rem;
  font-size: clamp(2rem, 0.462962963vw + 1.8518518519rem, 2.5rem);
  line-height: 1.35;
  margin-top: 0;
  margin-bottom: 3.3rem;
}
picture + h3 {
  margin-top: 4.4rem;
}
.contextual-region.media--type-image + h3 {
  margin-top: 4.4rem;
}
h2 + h3 {
  margin-top: -5.5rem;
  margin-bottom: 8rem;
  font-weight: normal;
}

h4 {
  font-size: 1.7rem;
  margin: 2rem 0;
}
h4.accordion-title {
  font-size: 2rem;
}

/* header>h2,
div>h2:first-child {
  margin-top: -.43em;
}
div>h3:first-child {
  margin-top: -.35em;
}
div:not(.columns)>p:first-child {
  margin-top: -.55em;
} */
.subtitle {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.33;
  margin-top: 2.3rem;
}

blockquote {
  font-size: 120%;
  font-style: italic;
}

.block > h2, .block-title {
  margin-bottom: 3rem;
  line-height: 1.25;
}

.node p:not(:last-child) {
  margin-bottom: 2.8rem;
}

.date {
  font-size: 1.4rem;
  margin-top: 3px;
  margin-bottom: 4px;
}

.tags {
  font-size: 1.3rem;
}

.icon path {
  fill: #C1272D;
}

.read-more .icon path {
  fill: #C1272D;
}

.read-more {
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: bold;
}
.read-more .icon {
  display: inline-block;
  margin-left: 10px;
  vertical-align: sub;
}
.read-more .icon svg {
  height: 17px;
  width: 17px;
}

ul.checked {
  padding-left: 1em;
  list-style-type: "✔";
}
ul.checked li {
  padding-left: 0.5em;
}
ul.checked ::marker {
  color: #C1272D;
}

a, [type=submit] {
  color: #C1272D;
  text-decoration: none;
}
a:hover, a:focus, a:active, a.read-more:hover, [type=submit]:hover, [type=submit]:focus, [type=submit]:active, [type=submit].read-more:hover {
  color: #6c1619;
}
.node a, .node [type=submit] {
  font-weight: 500;
  -webkit-hyphens: none;
          hyphens: none;
}
.node a[href^=tel], .node [type=submit][href^=tel] {
  text-decoration: none;
}
.node a:hover, .node [type=submit]:hover {
  text-decoration: underline;
}
a.underline, [type=submit].underline {
  text-decoration: underline;
  font-size: 0.9em;
}
a.underline:hover, [type=submit].underline:hover {
  color: #6c1619;
}
.bg-primary a, a.bg-primary, .bg-primary [type=submit], [type=submit].bg-primary {
  color: white;
}
.bg-primary a:not([href^=tel]), a.bg-primary:not([href^=tel]), .bg-primary [type=submit]:not([href^=tel]), [type=submit].bg-primary:not([href^=tel]) {
  text-decoration: underline;
}
a.button, .button a, [type=submit].button, .button [type=submit] {
  padding: 1em 2em;
  text-decoration: none;
  font-size: inherit;
  font-weight: 500;
  min-width: min(280px, 100%);
  border-radius: 10px;
}
a.button.btn-hollow, .button a.btn-hollow, [type=submit].button.btn-hollow, .button [type=submit].btn-hollow {
  background-color: white;
  box-shadow: inset 0 0 0 2px;
}
a.button.btn-hollow:hover, .button a.btn-hollow:hover, [type=submit].button.btn-hollow:hover, .button [type=submit].btn-hollow:hover {
  background-color: #C1272D;
  box-shadow: inset 0 0 0 2px #C1272D;
}
a.button.btn-primary, .button a.btn-primary, [type=submit].button.btn-primary, .button [type=submit].btn-primary {
  background-color: #C1272D;
  color: white;
}
a.button.btn-primary:hover, .button a.btn-primary:hover, [type=submit].button.btn-primary:hover, .button [type=submit].btn-primary:hover {
  background-color: #6c1619;
}
a.button.btn-primary.btn-hollow, .button a.btn-primary.btn-hollow, [type=submit].button.btn-primary.btn-hollow, .button [type=submit].btn-primary.btn-hollow {
  background-color: transparent;
  color: #C1272D;
  box-shadow: inset 0 0 0 2px #C1272D;
}
a.button.btn-primary.btn-hollow:hover, .button a.btn-primary.btn-hollow:hover, [type=submit].button.btn-primary.btn-hollow:hover, .button [type=submit].btn-primary.btn-hollow:hover {
  background-color: #C1272D;
  color: white;
}
a.button.btn-secondary, .button a.btn-secondary, [type=submit].button.btn-secondary, .button [type=submit].btn-secondary {
  background-color: #7bbddc;
}
a.button.btn-secondary.btn-hollow, .button a.btn-secondary.btn-hollow, [type=submit].button.btn-secondary.btn-hollow, .button [type=submit].btn-secondary.btn-hollow {
  background-color: transparent;
  color: #7bbddc;
  box-shadow: inset 0 0 0 2px #7bbddc;
}
a.button.btn-secondary.btn-hollow:hover, .button a.btn-secondary.btn-hollow:hover, [type=submit].button.btn-secondary.btn-hollow:hover, .button [type=submit].btn-secondary.btn-hollow:hover {
  background-color: #7bbddc;
  color: #202020;
}
a.button.btn-white, .button a.btn-white, [type=submit].button.btn-white, .button [type=submit].btn-white {
  background-color: white;
  color: #C1272D;
  text-decoration: none;
}
a.button.btn-white.btn-hollow, .button a.btn-white.btn-hollow, [type=submit].button.btn-white.btn-hollow, .button [type=submit].btn-white.btn-hollow {
  background-color: transparent;
  color: white;
  box-shadow: inset 0 0 0 2px white;
}
a.button.btn-white.btn-hollow:hover, .button a.btn-white.btn-hollow:hover, [type=submit].button.btn-white.btn-hollow:hover, .button [type=submit].btn-white.btn-hollow:hover {
  background-color: white;
  color: #202020;
}
a.button.btn-darkgrey, .button a.btn-darkgrey, [type=submit].button.btn-darkgrey, .button [type=submit].btn-darkgrey {
  background-color: #202020;
  color: white;
}
a.button.btn-darkgrey.btn-hollow, .button a.btn-darkgrey.btn-hollow, [type=submit].button.btn-darkgrey.btn-hollow, .button [type=submit].btn-darkgrey.btn-hollow {
  background-color: transparent;
  color: #202020;
  box-shadow: inset 0 0 0 2px #202020;
}
a.button.btn-darkgrey.btn-hollow:hover, .button a.btn-darkgrey.btn-hollow:hover, [type=submit].button.btn-darkgrey.btn-hollow:hover, .button [type=submit].btn-darkgrey.btn-hollow:hover {
  background-color: #202020;
  color: white;
}
a.button:hover, a.button:hover a, .button a:hover, .button a:hover a, [type=submit].button:hover, [type=submit].button:hover a, .button [type=submit]:hover, .button [type=submit]:hover a {
  background-color: #C1272D;
  color: white;
  text-decoration: none;
}

.bg-primary input#edit-submit:hover {
  background-color: #6c1619;
}

.bg-primary .cards-link a::after {
  content: "»";
  display: inline-block;
  width: 20px;
  height: 12px;
  margin-left: 0;
  transform: translateX(0);
  transition: transform 0.2s cubic-bezier(0.47, 1.64, 0.41, 0.8);
  color: #C1272D;
}

.bg-primary .cards-link a:hover::after {
  transform: translateX(1em);
  color: white;
}

/* [type='submit'] {
  border: none;
  background-color: $primary;
  color: white;
} */
a.button.bg-primary.c-white:hover {
  color: #C1272D;
  background-color: white;
  border-color: #C1272D;
}

.button.border {
  border: 2px solid #C1272D;
}

a.file-download {
  text-transform: initial;
}

a h3, a p {
  color: #202020;
}

/* MENU */
.toolbar-tray a {
  color: #565656;
}

/* Accordion */
.sf-accordion-toggle a {
  height: 100px;
}
.sf-accordion-toggle span, .sf-accordion-toggle span::after, .sf-accordion-toggle span::before {
  background-color: #C1272D;
}

/* Accordion Submenu */
.sf-accordion {
  background-color: white;
}
.sf-accordion a,
.sf-accordion span.nolink {
  padding: 20px 15px;
  line-height: 20px;
}
.sf-accordion a, .sf-accordion .nolink {
  color: #202020;
}
.sf-accordion a:hover,
.sf-accordion a:active,
.sf-accordion a.is-active {
  color: #C1272D;
}
.sf-accordion li li a,
.sf-accordion li li span {
  padding-left: 50px;
}

ul.sf-menu.sf-horizontal {
  margin-top: 0;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  ul.sf-menu.sf-horizontal {
  gap: 50px;
}
}
/* Horizontal */
ul.sf-horizontal a,
ul.sf-horizontal span.nolink {
  font-size: 1.6rem;
  font-weight: 500;
  padding: 10px 0;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
ul.sf-horizontal li:hover > ul, ul.sf-horizontal li.sfHover > ul {
  top: calc(1.4rem + 20px); /* siehe oben */
}
ul.sf-horizontal a:not(.menu-button) {
  color: #202020;
}
ul.sf-horizontal a:not(.menu-button):hover,
ul.sf-horizontal a.is-active {
  color: #C1272D;
}
ul.sf-horizontal.menu ul {
  padding: 15px 40px 20px;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
}
ul.sf-horizontal ul a {
  padding: 15px 0;
  text-transform: none;
  font-weight: 400;
}
ul.sf-horizontal .menu-button {
  padding: 14px 42px;
  box-shadow: inset 0 0 0 2px;
  border-radius: 10px;
}
ul.sf-horizontal .menu-button:hover {
  background-color: #C1272D;
  box-shadow: inset 0 0 0 3px #C1272D;
  color: white;
}

/* HEADER */
#header {
  background-color: white;
  border-bottom: 1px solid #d5dadd;
}
.js-hide-navi #header {
  margin-top: calc((50px + 2 * 25px + 10px) * -1);
}
@media screen and (min-width: 900px) {
  .js-hide-navi #header {
    margin-top: calc((140px + 2 * 25px + 10px) * -1);
  }
}

.site-logo {
  padding: 25px 0;
  display: block;
}
@media screen and (min-width: 900px) {
  .site-logo {
    padding: 25px 0 32px;
  }
}
.site-logo img {
  width: auto;
  height: 50px;
}
@media screen and (min-width: 900px) {
  .site-logo img {
    height: 74px;
  }
}
@media screen and (min-width: 1200px) {
  .site-logo img {
    height: 140px;
    margin-bottom: 3px;
  }
}

.site-slogan {
  display: none;
}
@media screen and (min-width: 900px) {
  .site-slogan {
    display: inline-block;
    font-size: 1.8rem;
    max-width: 340px;
    margin-top: 15px;
    line-height: 1.5;
  }
}

/* REGION HIGHLIGHTED */
.region-highlighted {
  background-color: #e6e6e6;
}

.field-bannertext div {
  font-size: 1.8rem;
  line-height: 1.3;
  padding: 30px 30px 37px;
}
.field-bannertext h3 {
  font-size: 2.8rem;
  line-height: 1.1;
  max-width: inherit;
}
.field-bannertext p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1023px) {
  .full-align .field-bannertext {
    position: inherit;
    transform: inherit;
    left: 0;
    top: 0;
  }
}
.layout-sidebar .block h2 {
  margin-bottom: 2rem;
  font-size: 2.8rem;
  line-height: 1.1;
}
.layout-sidebar .block .bigger {
  font-size: 150%;
}
.layout-sidebar .block .button {
  width: 100%;
  margin-top: 24px;
}
.layout-sidebar .more-link {
  margin-top: 40px;
}

.layout picture img {
  border-radius: 10px;
}

.header-banner {
  position: relative;
  margin-bottom: calc(0.7 * var(--rowgap, 100px));
}

.article-picture {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1920px;
}

.article-content {
  position: absolute;
  bottom: 0;
}

@media screen and (min-width: 900px) {
  .has-banner .article-header {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 3;
  }
  .has-banner .article-header header {
    padding-right: calc(50% - 0.5 * var(--gap));
    padding-left: 0;
  }
  .is-front .has-banner .article-header header {
    padding-right: 0;
    padding-left: calc(50% + 0.5 * var(--gap));
  }
}

@media screen and (min-width: 900px) {
  .gradient::after {
    background: linear-gradient(180deg, rgba(32, 32, 32, 0) 25%, #202020 99%);
  }
}
@media screen and (min-width: 1920px) {
  .gradient-frame::after {
    background: linear-gradient(90deg, #202020 1%, rgba(32, 32, 32, 0) 10%, rgba(32, 32, 32, 0) 80%, #202020 99%);
  }
}
.is-front .header-banner + .layout .layout__region--first h2 {
  max-width: 510px;
}

.node .front-icons {
  margin-top: calc(0.7 * var(--rowgap));
  padding-top: 40px;
  padding-bottom: 47px;
}
.node .front-icons .flex {
  gap: 40px 3%;
  justify-content: center;
}
.node .front-icons .cards-item {
  flex-basis: 30%;
}
@media screen and (max-width: 768px) {
  .node .front-icons .cards-content {
    margin-bottom: 40px;
  }
  .node .front-icons .cards-content .cards-link {
    padding-top: 0;
  }
}
.node .front-icons h3 {
  white-space: nowrap;
  margin: 0 0 2rem;
  font-size: 1.8rem;
  color: white;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .node .front-icons h3 {
    font-size: 2.2rem;
  }
}
.node .front-icons a {
  text-decoration: none;
  background-color: transparent;
  min-width: 240px;
}
.node .front-icons a::after {
  content: none;
}
.node .front-icons a:hover {
  background-color: white;
  color: #C1272D;
}
.node .front-icons img {
  aspect-ratio: 62/45;
}

.flex-compact .flex .layout__region--second {
  background-color: white;
  padding: var(--gap, 80px);
  border-radius: 10px;
  display: flex;
  align-items: center;
}

#block-kontaktbanner > div {
  line-height: 3.9rem;
  padding: min(60px, var(--rowgap, 100px)) 0;
}
#block-kontaktbanner > div.margin-top {
  margin-top: min(75px, var(--rowgap, 100px));
}
#block-kontaktbanner > div .layout__region .flex {
  gap: 1em;
  row-gap: 0;
}
#block-kontaktbanner > div a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: #d5dadd;
}
#block-kontaktbanner > div a:hover {
  color: #C1272D;
  text-decoration-color: #C1272D;
}

.file {
  margin-top: 2em;
  font-size: 2rem;
}
.file svg {
  margin-right: 1.2em;
  vertical-align: middle;
}
.file:hover svg g {
  fill: #6c1619;
}

.form-container {
  padding: calc(0.7 * var(--rowgap) - 20px) max(0.5 * var(--gap), 20px) calc(0.7 * var(--rowgap));
}

.form-text, .form-email, .form-textarea {
  border: 0;
  border-bottom: 1px solid white;
  background-color: #C1272D;
  color: white;
  padding: 20px 0;
}

.form-textarea {
  height: 130px;
}

.contact-form .form-item {
  margin-bottom: 20px;
}

.contact-form .form-type-textfield label, .contact-form .form-type-email label, .contact-form .form-type-textarea label {
  background-color: transparent;
  top: -15px;
  color: white;
  visibility: hidden;
}

.node-4 .layout__region .flex {
  max-width: 560px;
}

footer {
  padding-top: 65px;
  padding-bottom: 130px;
  color: white;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
}
footer a:not([class*=c-]),
footer a:visited:not([class*=c-]) {
  color: inherit;
}
footer a:not([class*=c-]):hover {
  text-decoration: underline;
}
@media screen and (min-width: 900px) {
  footer {
    text-align: left;
  }
}

@media screen and (min-width: 900px) {
  #navigation {
    margin-top: 0;
  }
}
.grid.accordion {
  row-gap: calc(0.5 * var(--gap, 80px));
}

.accordion-item {
  padding-bottom: calc(0.5 * var(--gap, 80px));
  border-bottom: 2px solid #d5dadd;
}
.accordion:not(.grid) .accordion-item {
  margin-bottom: calc(0.5 * var(--gap, 80px));
}

h2.accordion-title,
h3.accordion-title,
h4.accordion-title {
  margin: 0;
  max-width: 100%;
}
@media screen and (min-width: 900px) {
  h2.accordion-title,
  h3.accordion-title,
  h4.accordion-title {
    -webkit-hyphens: none;
            hyphens: none;
  }
}

.accordion-button {
  line-height: 1.45;
  color: #202020;
}

.accordion-icon {
  width: 20px;
  margin-top: 0.3em;
}

.accordion-content {
  margin-top: 4rem;
  font-size: 2rem;
  line-height: 1.6;
  max-width: 880px;
}

.accordion-icon:before, .accordion-icon:after {
  background-color: #C1272D;
}

.cards-link {
  padding-top: 1.15em;
}
.cards-link a {
  font-size: inherit;
}

.cards-item,
.cards-image {
  border-radius: 10px;
}

h3.cards-title {
  margin-top: 4.4rem;
}

.bg-primary.cards-item {
  padding: 27px 24px 25px 30px;
  line-height: 1.35;
}
@media screen and (min-width: 900px) {
  .bg-primary.cards-item {
    font-size: 2rem;
  }
}
.bg-primary.cards-item .cards-link {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 1.5em;
}
.bg-primary.cards-item .cards-link:after {
  font-size: 200%;
  font-weight: bold;
  line-height: 1;
}

.cards-counter.grid {
  grid-template-columns: repeat(1, 1fr);
}
.cards-counter.grid .cards-item {
  font-weight: 500;
}
.cards-counter.grid a {
  font-size: 1.6rem;
}
@media screen and (min-width: 900px) {
  .cards-counter.grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .cards-counter.grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cards-counter .cards-item:nth-child(1) .cards-link:after {
  content: "01";
}

.cards-counter .cards-item:nth-child(2) .cards-link:after {
  content: "02";
}

.cards-counter .cards-item:nth-child(3) .cards-link:after {
  content: "03";
}

.cards-counter .cards-item:nth-child(4) .cards-link:after {
  content: "04";
}

.cards-counter .cards-item:nth-child(5) .cards-link:after {
  content: "05";
}

.cards-counter .cards-item:nth-child(6) .cards-link:after {
  content: "06";
}

.cards-counter .cards-item:nth-child(7) .cards-link:after {
  content: "07";
}

.cards-counter .cards-item:nth-child(8) .cards-link:after {
  content: "08";
}

.cards-column .cards-item:not(:first-child) {
  margin-top: 3rem;
}

.round-checked.grid {
  gap: min(var(--gap), 60px);
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 900px) {
  .round-checked.grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.round-checked .cards-item {
  background: transparent url(../images/round-checked.svg) no-repeat 15px 27px;
  padding: 28px 25px 27px 54px;
  background-size: 30px auto;
  line-height: 1.428571;
  -webkit-hyphens: none;
          hyphens: none;
}
@media screen and (min-width: 1120px) {
  .round-checked .cards-item {
    background-position: 29px 39px;
    background-size: 53px auto;
    padding: 53px 34px 48px 105px;
  }
}
@media screen and (min-width: 1400px) {
  .round-checked .cards-item {
    font-size: 2.1rem;
  }
}

.image-bg-lightgrey .cards-image {
  background-color: #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
}

.bg-lightgrey .bg-darkgrey .cards-image img {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.bg-lightgrey .bg-darkgrey .cards-content {
  padding: min(var(--gap), 50px);
}

.bg-lightgrey .bg-darkgrey .cards-title {
  margin-top: 0;
}

html[lang=en] #main-language-switcher-menulanguage-switcher-linken {
  display: none;
}

html[lang=de] #main-language-switcher-menulanguage-switcher-linkde {
  display: none;
}

.sf-menu.sf-accordion li[id^=main-language-switcher-menulanguage-switcher-link] a.language-link.is-active {
  display: none;
}

li#main-menu-link-content850a8df2-3b39-48f9-bf9c-fac88b2ae284-accordion {
  padding-bottom: 1em;
  border-bottom: 1px solid lightgrey;
  margin-bottom: 1em;
}

/* .sf-horizontal li[id^='main-language-switcher-menulanguage-switcher-link'] {
  display: none;
} */
/* .block-language {
  position: absolute;
  top:0;
  right: 0;
  left:0;
  margin: 0 auto;
  ul {
    list-style: none;
    margin-left: auto;
    padding-left: 0;
    width: 20px;
  }
  a.language-link {
    background: url(../images/flag-de.svg) no-repeat center center;
    text-indent: -9999px;
    width: 20px;
    height: 15px;
    display: inline-block;
    background-size: 20px auto;
    &[hreflang="en"] {
      background-image: url(../images/flag-en.svg);
    }
    &.is-active {
      display: none;
    }
  }
} *//*# sourceMappingURL=styles.css.map */
