@charset "UTF-8";
body .margin-zero-bottom {
  margin-bottom: 0 !important; }

fieldset[disabled] .multiselect {
  pointer-events: none; }

.multiselect__spinner {
  position: absolute;
  right: 1px;
  top: 1px;
  width: 48px;
  height: 35px;
  background: #fff;
  display: block; }

.multiselect__spinner:after, .multiselect__spinner:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  margin: -8px 0 0 -8px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  border-color: #41b883 transparent transparent;
  border-style: solid;
  border-width: 2px;
  box-shadow: 0 0 0 1px transparent; }

.multiselect__spinner:before {
  animation: a 2.4s cubic-bezier(0.41, 0.26, 0.2, 0.62);
  animation-iteration-count: infinite; }

.multiselect__spinner:after {
  animation: a 2.4s cubic-bezier(0.51, 0.09, 0.21, 0.8);
  animation-iteration-count: infinite; }

.multiselect__loading-enter-active, .multiselect__loading-leave-active {
  transition: opacity .4s ease-in-out;
  opacity: 1; }

.multiselect__loading-enter, .multiselect__loading-leave-active {
  opacity: 0; }

.multiselect, .multiselect__input, .multiselect__single {
  font-family: inherit;
  font-size: 16px;
  -ms-touch-action: manipulation;
  touch-action: manipulation; }

.multiselect {
  box-sizing: content-box;
  display: block;
  position: relative;
  width: 100%;
  min-height: 40px;
  text-align: left;
  color: #35495e; }

.multiselect * {
  box-sizing: border-box; }

.multiselect:focus {
  outline: none; }

.multiselect--disabled {
  opacity: .6; }

.multiselect--active {
  z-index: 1; }

.multiselect--active:not(.multiselect--above) .multiselect__current, .multiselect--active:not(.multiselect--above) .multiselect__input, .multiselect--active:not(.multiselect--above) .multiselect__tags {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.multiselect--active .multiselect__select {
  transform: rotate(180deg); }

.multiselect--above.multiselect--active .multiselect__current, .multiselect--above.multiselect--active .multiselect__input, .multiselect--above.multiselect--active .multiselect__tags {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.multiselect__input, .multiselect__single {
  position: relative;
  display: inline-block;
  min-height: 20px;
  line-height: 20px;
  border: none;
  border-radius: 5px;
  background: #fff;
  padding: 0 0 0 5px;
  width: 100%;
  transition: border .1s ease;
  box-sizing: border-box;
  margin-bottom: 8px;
  vertical-align: top; }

.multiselect__input::-webkit-input-placeholder {
  color: #35495e; }

.multiselect__input:-ms-input-placeholder {
  color: #35495e; }

.multiselect__input::placeholder {
  color: #35495e; }

.multiselect__tag ~ .multiselect__input, .multiselect__tag ~ .multiselect__single {
  width: auto; }

.multiselect__input:hover, .multiselect__single:hover {
  border-color: #cfcfcf; }

.multiselect__input:focus, .multiselect__single:focus {
  border-color: #a8a8a8;
  outline: none; }

.multiselect__single {
  padding-left: 5px;
  margin-bottom: 8px; }

.multiselect__tags-wrap {
  display: inline; }

.multiselect__tags {
  min-height: 40px;
  display: block;
  padding: 8px 40px 0 8px;
  border-radius: 5px;
  border: 1px solid #e8e8e8;
  background: #fff;
  font-size: 14px; }

.multiselect__tag {
  position: relative;
  display: inline-block;
  padding: 4px 26px 4px 10px;
  border-radius: 5px;
  margin-right: 10px;
  color: #fff;
  line-height: 1;
  background: #41b883;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis; }

.multiselect__tag-icon {
  cursor: pointer;
  margin-left: 7px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  font-weight: 700;
  font-style: normal;
  width: 22px;
  text-align: center;
  line-height: 22px;
  transition: all .2s ease;
  border-radius: 5px; }

.multiselect__tag-icon:after {
  content: "\D7";
  color: #266d4d;
  font-size: 14px; }

.multiselect__tag-icon:focus, .multiselect__tag-icon:hover {
  background: #369a6e; }

.multiselect__tag-icon:focus:after, .multiselect__tag-icon:hover:after {
  color: #fff; }

.multiselect__current {
  min-height: 40px;
  overflow: hidden;
  padding: 8px 12px 0;
  padding-right: 30px;
  white-space: nowrap;
  border-radius: 5px;
  border: 1px solid #e8e8e8; }

.multiselect__current, .multiselect__select {
  line-height: 16px;
  box-sizing: border-box;
  display: block;
  margin: 0;
  text-decoration: none;
  cursor: pointer; }

.multiselect__select {
  position: absolute;
  width: 40px;
  height: 38px;
  right: 1px;
  top: 1px;
  padding: 4px 8px;
  text-align: center;
  transition: transform .2s ease; }

.multiselect__select:before {
  position: relative;
  right: 0;
  top: 65%;
  color: #999;
  margin-top: 4px;
  border-style: solid;
  border-width: 5px 5px 0;
  border-color: #999 transparent transparent;
  content: ""; }

.multiselect__placeholder {
  color: #adadad;
  display: inline-block;
  margin-bottom: 10px;
  padding-top: 2px; }

.multiselect--active .multiselect__placeholder {
  display: none; }

.multiselect__content-wrapper {
  position: absolute;
  display: block;
  background: #fff;
  width: 100%;
  max-height: 240px;
  overflow: auto;
  border: 1px solid #e8e8e8;
  border-top: none;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  z-index: 1;
  -webkit-overflow-scrolling: touch; }

.multiselect__content {
  list-style: none;
  display: inline-block;
  padding: 0;
  margin: 0;
  min-width: 100%;
  vertical-align: top; }

.multiselect--above .multiselect__content-wrapper {
  bottom: 100%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom: none;
  border-top: 1px solid #e8e8e8; }

.multiselect__content::webkit-scrollbar {
  display: none; }

.multiselect__element {
  display: block; }

.multiselect__option {
  display: block;
  padding: 12px;
  min-height: 40px;
  line-height: 16px;
  text-decoration: none;
  text-transform: none;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  white-space: nowrap; }

.multiselect__option:after {
  top: 0;
  right: 0;
  position: absolute;
  line-height: 40px;
  padding-right: 12px;
  padding-left: 20px;
  font-size: 13px; }

.multiselect__option--highlight {
  background: #41b883;
  outline: none;
  color: #fff; }

.multiselect__option--highlight:after {
  content: attr(data-select);
  background: #41b883;
  color: #fff; }

.multiselect__option--selected {
  background: #f3f3f3;
  color: #35495e;
  font-weight: 700; }

.multiselect__option--selected:after {
  content: attr(data-selected);
  color: silver; }

.multiselect__option--selected.multiselect__option--highlight {
  background: #ff6a6a;
  color: #fff; }

.multiselect__option--selected.multiselect__option--highlight:after {
  background: #ff6a6a;
  content: attr(data-deselect);
  color: #fff; }

.multiselect--disabled {
  background: #ededed;
  pointer-events: none; }

.multiselect--disabled .multiselect__current, .multiselect--disabled .multiselect__select, .multiselect__option--disabled {
  background: #ededed;
  color: #a6a6a6; }

.multiselect__option--disabled {
  cursor: text;
  pointer-events: none; }

.multiselect__option--group {
  background: #ededed;
  color: #35495e; }

.multiselect__option--group.multiselect__option--highlight {
  background: #35495e;
  color: #fff; }

.multiselect__option--group.multiselect__option--highlight:after {
  background: #35495e; }

.multiselect__option--disabled.multiselect__option--highlight {
  background: #dedede; }

.multiselect__option--group-selected.multiselect__option--highlight {
  background: #ff6a6a;
  color: #fff; }

.multiselect__option--group-selected.multiselect__option--highlight:after {
  background: #ff6a6a;
  content: attr(data-deselect);
  color: #fff; }

.multiselect-enter-active, .multiselect-leave-active {
  transition: all .15s ease; }

.multiselect-enter, .multiselect-leave-active {
  opacity: 0; }

.multiselect__strong {
  margin-bottom: 8px;
  line-height: 20px;
  display: inline-block;
  vertical-align: top; }

[dir=rtl] .multiselect {
  text-align: right; }

[dir=rtl] .multiselect__select {
  right: auto;
  left: 1px; }

[dir=rtl] .multiselect__tags {
  padding: 8px 8px 0 40px; }

[dir=rtl] .multiselect__content {
  text-align: right; }

[dir=rtl] .multiselect__option:after {
  right: auto;
  left: 0; }

[dir=rtl] .multiselect__clear {
  right: auto;
  left: 12px; }

[dir=rtl] .multiselect__spinner {
  right: auto;
  left: 1px; }

@keyframes a {
  0% {
    transform: rotate(0); }
  to {
    transform: rotate(2turn); } }

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none !important; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent; }

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

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  display: block;
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.hyphen {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto; }

@font-face {
  font-family: "JoannaNova";
  font-weight: 300;
  font-style: normal;
  src: url("/assets/fonts/JN/Fonts/JoannaNovaW05-Regular.woff2") format("woff2"), url("/assets/fonts/JN/Fonts/JoannaNovaW05-Regular.woff") format("woff");
  font-display: fallback; }

@font-face {
  font-family: "JoannaNova";
  font-weight: normal;
  src: url("/assets/fonts/JN/Fonts/JoannaNovaW05-Medium.woff2") format("woff2"), url("/assets/fonts/JN/Fonts/JoannaNovaW05-Medium.woff") format("woff");
  font-display: fallback; }

@font-face {
  font-family: "JoannaNova";
  font-weight: 300;
  font-style: italic;
  src: url("/assets/fonts/JN/Fonts/JoannaNovaW05-Italic.woff2") format("woff2"), url("/assets/fonts/JN/Fonts/JoannaNovaW05-Italic.woff") format("woff");
  font-display: fallback; }

@font-face {
  font-family: "TSTARPRO";
  font-weight: 400;
  src: url("/assets/fonts/T-StarPro/T-StarPRO-Medium.eot");
  src: url("/assets/fonts/T-StarPro/T-StarPRO-Medium.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/T-StarPro/T-StarPRO-Medium.woff2") format("woff2"), url("/assets/fonts/T-StarPro/T-StarPRO-Medium.woff") format("woff");
  font-display: fallback; }

@font-face {
  font-family: "TSTARPRO";
  font-weight: 400;
  font-style: italic;
  src: url("/assets/fonts/T-StarPro/T-StarPRO-MediumItalic.eot");
  src: url("/assets/fonts/T-StarPro/T-StarPRO-MediumItalic.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/T-StarPro/T-StarPRO-MediumItalic.woff2") format("woff2"), url("/assets/fonts/T-StarPro/T-StarPRO-MediumItalic.woff") format("woff");
  font-display: fallback; }

@font-face {
  font-family: "TSTARPRO";
  font-weight: 700;
  src: url("/assets/fonts/T-StarPro/T-StarPRO-Bold.eot");
  src: url("/assets/fonts/T-StarPro/T-StarPRO-Bold.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/T-StarPro/T-StarPRO-Bold.woff2") format("woff2"), url("/assets/fonts/T-StarPro/T-StarPRO-Bold.woff") format("woff");
  font-display: fallback; }

@font-face {
  font-family: "TSTARPRO";
  font-weight: 700;
  font-style: italic;
  src: url("/assets/fonts/T-StarPro/T-StarPRO-BoldItalic.eot");
  src: url("/assets/fonts/T-StarPro/T-StarPRO-BoldItalic.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/T-StarPro/T-StarPRO-BoldItalic.woff2") format("woff2"), url("/assets/fonts/T-StarPro/T-StarPRO-BoldItalic.woff") format("woff");
  font-display: fallback; }

@font-face {
  font-family: "TSTARPRO";
  font-weight: 900;
  src: url("/assets/fonts/T-StarPro/T-StarPRO-Heavy.eot");
  src: url("/assets/fonts/T-StarPro/T-StarPRO-Heavy.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/T-StarPro/T-StarPRO-Heavy.woff2") format("woff2"), url("/assets/fonts/T-StarPro/T-StarPRO-Heavy.woff") format("woff");
  font-display: fallback; }

.stylebook-label {
  margin-top: 50px;
  padding-bottom: 20px;
  font-family: monospace;
  text-align: right;
  width: 100%;
  border-top: 1px solid black;
  color: black; }

.font-decoration-heavy {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900; }

.font-decoration-bold {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 700; }

.font-decoration {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400; }

.font-decoration-italic {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-style: italic; }

.font-light {
  font-family: "JoannaNova", Georgia, serif;
  font-weight: 300;
  font-style: normal; }

.font-light-italic {
  font-family: "JoannaNova", Georgia, serif;
  font-weight: 300;
  font-style: italic; }

.font-medium {
  font-family: "JoannaNova", Georgia, serif;
  font-weight: 400; }

*[class*="clamp-"] {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical; }

.clamp-1 {
  -webkit-line-clamp: 1; }

.clamp-2 {
  -webkit-line-clamp: 2; }

.clamp-3 {
  -webkit-line-clamp: 3; }

.clamp-4 {
  -webkit-line-clamp: 4; }

.clamp-5 {
  -webkit-line-clamp: 5; }

.pre {
  white-space: pre; }

.H1 {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  font-size: 68px;
  font-weight: 900;
  line-height: 1.15; }
  @media (max-width: 762px) {
    .H1 {
      font-size: 36px;
      line-height: 1.17; } }

.H2-teaser-gross {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  font-size: 55px;
  line-height: 0.89; }
  @media (max-width: 762px) {
    .H2-teaser-gross {
      font-size: 32px;
      line-height: 1; } }

.H2 {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  font-size: 55px;
  line-height: 1.09; }
  @media (max-width: 762px) {
    .H2 {
      font-size: 32px;
      line-height: 1.19; } }

.Zitat {
  font-family: "JoannaNova", Georgia, serif;
  font-weight: 300;
  font-style: normal;
  font-size: 32px;
  line-height: 1.14;
  text-transform: none; }
  @media (max-width: 762px) {
    .Zitat {
      font-size: 24px;
      line-height: 1.42; } }

.H3 {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  font-size: 36px;
  line-height: 1.22;
  text-transform: uppercase; }
  @media (max-width: 762px) {
    .H3 {
      font-size: 30px;
      font-weight: 900;
      line-height: 1.07; } }

.H4 {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  font-size: 30px;
  line-height: 1.13;
  text-transform: uppercase; }
  @media (max-width: 762px) {
    .H4 {
      font-size: 26px; } }

@media (max-width: 762px) {
  .H4-mobile-smaller {
    font-size: 24px !important;
    line-height: 1.08; } }

.H5 {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  font-size: 24px;
  line-height: 1.17; }

.Anleser {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  font-weight: 900 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 20px;
  line-height: 1.73; }
  @media (max-width: 762px) {
    .Anleser {
      font-size: 18px;
      line-height: 1.78; } }

.Anleser-Magazine {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 30px;
  line-height: 1.43; }
  @media (max-width: 762px) {
    .Anleser-Magazine {
      font-size: 22px;
      line-height: 1.45; } }

.Button-liste {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 700;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  font-size: 25px;
  line-height: 1; }
  @media (max-width: 762px) {
    .Button-liste {
      font-size: 17px;
      line-height: 1.29; } }

.H6 {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  font-size: 22px;
  line-height: 1.50; }
  @media (max-width: 762px) {
    .H6 {
      font-size: 18px; } }

.H6-copy {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3; }

.H6-teaser {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  font-size: 22px;
  line-height: 1.36; }
  @media (max-width: 762px) {
    .H6-teaser {
      font-size: 18px;
      line-height: 1.11; } }

.Input-field {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1; }
  @media (max-width: 762px) {
    .Input-field {
      font-size: 18px; } }

.P-magazin {
  font-family: "JoannaNova", Georgia, serif;
  font-weight: 300;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 22px;
  line-height: 1.73; }
  @media (max-width: 762px) {
    .P-magazin {
      font-size: 18px;
      line-height: 1.78; } }

.P-bold {
  font-family: "JoannaNova", Georgia, serif;
  font-weight: 400;
  line-height: 1.73; }

.P {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 20px;
  line-height: 1.73; }
  @media (max-width: 762px) {
    .P {
      font-size: 18px;
      line-height: 1.78; } }

.P-italic {
  font-family: "JoannaNova", Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: 22px;
  line-height: 1.73; }

.Moderation {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  font-style: italic;
  line-height: 1.7; }

.Teaser-copy {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5; }
  @media (max-width: 762px) {
    .Teaser-copy {
      font-size: 16px;
      line-height: 1.38; } }

.Teaser-copy-small {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.33; }
  @media (max-width: 762px) {
    .Teaser-copy-small {
      font-size: 16px;
      line-height: 1.38; } }

.Teaser-copy-magazin {
  font-family: "JoannaNova", Georgia, serif;
  font-weight: 300;
  font-style: normal;
  font-size: 20px;
  line-height: 1.5; }
  @media (max-width: 762px) {
    .Teaser-copy-magazin {
      font-size: 16px;
      line-height: 1.38; } }

.Button {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  text-decoration: none; }
  @media (max-width: 762px) {
    .Button {
      font-size: 16px;
      line-height: 1.25; } }

.ButtonSmall {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.22;
  letter-spacing: 0.9px;
  text-decoration: none; }
  @media (max-width: 762px) {
    .ButtonSmall {
      font-size: 14px;
      line-height: 1.25; } }

.ButtonLikeText {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.22;
  text-decoration: none; }
  @media (max-width: 762px) {
    .ButtonLikeText {
      font-size: 14px;
      line-height: 1.25; } }

.Teaser-subinfo {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.67; }

.Tag {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.11; }

.Function {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.12; }
  @media (max-width: 762px) {
    .Function {
      font-size: 13px;
      line-height: 1.38; } }

.Copyright {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.33; }
  @media (max-width: 762px) {
    .Copyright {
      font-size: 12px;
      line-height: 1.5; } }

.Subline {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.14;
  letter-spacing: 1.54px;
  text-transform: uppercase; }
  @media (max-width: 762px) {
    .Subline {
      font-size: 16px;
      line-height: 1;
      letter-spacing: 1.39px; } }

.Untertitel {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.36; }
  @media (max-width: 762px) {
    .Untertitel {
      font-size: 18px;
      line-height: 1.44; } }

.Metadaten {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5; }
  @media (max-width: 762px) {
    .Metadaten {
      font-size: 12px;
      line-height: 1.4; } }

.Attribute {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 16px;
  line-height: 1.75; }
  @media (max-width: 762px) {
    .Attribute {
      font-size: 14px;
      line-height: 1.71;
      letter-spacing: 0.01px; } }

.Teaser-subinfo-small {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.14; }

.Datum {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  font-size: 22px;
  line-height: 1.18; }
  @media (max-width: 762px) {
    .Datum {
      font-size: 18px;
      line-height: 1.33;
      letter-spacing: 0.01px; } }

.Uhrzeit {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.18; }
  @media (max-width: 762px) {
    .Uhrzeit {
      font-size: 18px;
      line-height: 1.33;
      letter-spacing: 0.01px; } }

.Stickyprice {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.33; }
  @media (max-width: 762px) {
    .Stickyprice {
      font-size: 16px;
      line-height: 1.18; } }

.Stickydatum {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.33; }
  @media (max-width: 762px) {
    .Stickydatum {
      font-size: 14px;
      line-height: 1.43; } }

.Infos {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.33; }
  .Infos strong {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900; }
  @media (max-width: 762px) {
    .Infos {
      font-size: 16px; } }

.HourLabel {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  line-height: 1.14; }
  .HourLabel:after {
    content: ' • ';
    display: inline; }

.HourText {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.23; }

.Functext {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.14; }
  @media (max-width: 762px) {
    .Functext {
      font-size: 14px;
      line-height: 1; } }

:root {
  --spacing: 120px;
  --spacing-two-thirds: calc( var(--spacing) * 2 / 3);
  --spacing-half: calc( var(--spacing) / 2);
  --spacing-third: calc( var(--spacing) / 3);
  --spacing-sixth: calc( var(--spacing) / 6);
  --spacing-minimal: calc( var(--spacing) / 10);
  --spacing-atom: calc( var(--spacing) / 20); }
  @media (max-width: 762px) {
    :root {
      --spacing: 72px; } }

.margin-bottom {
  margin-bottom: var(--spacing); }

.margin-bottom-two-thirds {
  margin-bottom: var(--spacing-two-thirds); }

.margin-bottom-half {
  margin-bottom: var(--spacing-half); }

.margin-bottom-third {
  margin-bottom: var(--spacing-third); }

.margin-bottom-sixth {
  margin-bottom: var(--spacing-sixth); }

.margin-bottom-minimal {
  margin-bottom: var(--spacing-minimal); }

.margin-bottom-atom {
  margin-bottom: var(--spacing-atom); }

.margin-bottom-zero {
  margin-bottom: 0; }

.nomargin {
  margin: 0 !important; }

hr {
  border: none;
  border-top: 1px solid var(--color-lightest-grey);
  margin: var(--spacing-third) 0; }

article {
  min-height: 60vh; }

/* MAKE SURE ALL CONTENT HAS A DEFAULT */
.block, .container-fluid {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400; }

:root {
  --color-highlight: #39efff;
  --color-error: #af0120;
  --color-link-hover: #39efff;
  --color-link-visited: #3e005c;
  --color-invert: #ffffff;
  --color-base: #000000;
  --color-black: #000000;
  --color-darkest-darkest-grey: #111111;
  --color-even-more-light-grey: #f4f4f4;
  --color-lightest-grey: #e5e5e5;
  --color-light-grey: #cccccc;
  --color-bang-grey: #ececec;
  --color-medium-grey: #666666;
  --color-darkest-grey: #323232;
  --color-transparent-grey: rgba(0, 0, 0, .6);
  --color-transparent-light-grey: rgba(0, 0, 0, .3);
  --page-bg: var(--color-invert); }

.bg-highlight {
  background-color: #39efff; }

.bg-error {
  background-color: #af0120; }

.bg-link-hover {
  background-color: #39efff; }

.bg-link-visited {
  background-color: #3e005c; }

.bg-invert {
  background-color: #ffffff; }

.bg-lightest-grey {
  background-color: #e5e5e5; }

.bg-light-grey {
  background-color: #cccccc; }

.bg-medium-grey {
  background-color: #666666; }

.bg-darkest-grey {
  background-color: #323232; }

.bg-black {
  background-color: #000000; }

.bg-base {
  background-color: #000000; }

body.dark-mode, .dark-mode {
  --color-invert: #000000;
  --color-base: #ffffff;
  --color-black: #ffffff;
  --color-even-more-light-grey: rgba(255,255,255,.1);
  --color-lightest-grey: rgba(255,255,255,.1);
  --color-light-grey: rgba(255,255,255,.2);
  --color-medium-grey: rgba(255,255,255,.6);
  --color-darkest-grey: rgba(255,255,255,.8);
  --color-transparent-grey: rgba(255, 255, 255, .5);
  --color-transparent-light-grey: rgba(255, 255, 255, .3);
  color: var(--color-base); }

/*ICON FONT */
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'HumboldtForum' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-logo {
  line-height: .4;
  display: block;
  overflow: hidden; }

.icon-background {
  background: var(--color-base);
  border-radius: 100%;
  color: var(--color-invert); }

.icon-background-white {
  background: var(--color-invert);
  border-radius: 100%;
  color: var(--color-base); }

.icon-invert {
  color: var(--color-invert); }

.rotate-90 {
  transform: rotate(-90deg); }

.scale-on-hover {
  transition: all .2s ease-out; }
  @media screen and (prefers-reduced-motion: no-preference) {
    .scale-on-hover:hover {
      transform: scale(1.1); } }

.icon-book:before {
  content: "\e938"; }

.icon-digital:before {
  content: "\e939"; }

.icon-food:before {
  content: "\e93a"; }

.icon-external_link:before {
  content: "\e900"; }

.icon-plus:before {
  content: "\e901"; }

.icon-arrow_standart:before {
  content: "\e902"; }

.icon-close:before {
  content: "\e903"; }

.icon-bullet_normal:before {
  content: "\e904"; }

.icon-bullet_active:before {
  content: "\e905"; }

.icon-play:before {
  content: "\e906"; }

.icon-pause:before {
  content: "\e907"; }

.icon-download:before {
  content: "\e908"; }

.icon-comment:before {
  content: "\e909"; }

.icon-zitat:before {
  content: "\e90a"; }

.icon-smile:before {
  content: "\e90b"; }

.icon-next:before {
  content: "\e90c"; }

.icon-youtube:before {
  content: "\e90d"; }

.icon-insta:before {
  content: "\e90e"; }

.icon-facebook:before {
  content: "\e90f"; }

.icon-contact:before {
  content: "\e910"; }

.icon-uhr:before {
  content: "\e911"; }

.icon-pin:before {
  content: "\e912"; }

.icon-lupe:before {
  content: "\e913"; }

.icon-navi:before {
  content: "\e914"; }

.icon-logo:before {
  content: "\e915"; }

.icon-sprache:before {
  content: "\e916"; }

.icon-gebarden:before {
  content: "\e917"; }

.icon-leichte-sprache:before {
  content: "\e918"; }

.icon-prev:before {
  content: "\e919"; }

.icon-arrow-rechts:before {
  content: "\e91a"; }

.icon-check:before {
  content: "\e91b"; }

.icon-audio-describtions:before {
  content: "\e91c"; }

.icon-clap:before {
  content: "\e91d"; }

.icon-navi-back:before {
  content: "\e91e"; }

.icon-navi-close:before {
  content: "\e91f"; }

.icon-like:before {
  content: "\e920"; }

.icon-preis:before {
  content: "\e921"; }

.icon-subgenre:before {
  content: "\e922"; }

.icon-einlass:before {
  content: "\e923"; }

.icon-alterfreigabe:before {
  content: "\e924"; }

.icon-dauer:before {
  content: "\e925"; }

.icon-barrierefreiheit:before {
  content: "\e926"; }

.icon-sprachen:before {
  content: "\e927"; }

.icon-ort:before {
  content: "\e928"; }

.icon-cal_download:before {
  content: "\e929"; }

.icon-gruppen:before {
  content: "\e92a"; }

.icon-tel:before {
  content: "\e92b"; }

.icon-mail:before {
  content: "\e92c"; }

.icon-schulen:before {
  content: "\e92d"; }

.icon-altersempfehlung:before {
  content: "\e92e"; }

.icon-live-fill:before {
  content: "\e92f"; }

.icon-live:before {
  content: "\e930"; }

.icon-serientermin:before {
  content: "\e931"; }

.icon-einzeltermin:before {
  content: "\e932"; }

.icon-calender:before {
  content: "\e933"; }

.icon-filter:before {
  content: "\e934"; }

.icon-close_small:before {
  content: "\e935"; }

.icon-contrast:before {
  content: "\e936"; }

.icon-muhle:before {
  content: "\e937"; }

.icon-ticket:before {
  content: "\e93d"; }

.icon-info:before {
  content: "\e93e"; }

h1, .h1 {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  font-size: 68px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: var(--spacing-sixth); }
  h1.topline, .h1.topline {
    padding-top: .9em;
    padding-bottom: .5em;
    border-top: 2px solid var(--color-black);
    display: inline-block; }
  @media (max-width: 762px) {
    h1, .h1 {
      font-size: 36px;
      line-height: 1.17; } }

h2, .h2 {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  font-size: 55px;
  line-height: 1.09;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-bottom: var(--spacing-sixth); }
  @media (max-width: 762px) {
    h2, .h2 {
      font-size: 32px;
      line-height: 1.19; } }
  h2.topline, .h2.topline {
    padding-top: .9em;
    padding-bottom: .5em;
    border-top: 2px solid var(--color-black);
    display: inline-block; }

h3, .h3 {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  font-size: 36px;
  line-height: 1.22;
  text-transform: uppercase;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-bottom: var(--spacing-sixth);
  text-transform: uppercase; }
  @media (max-width: 762px) {
    h3, .h3 {
      font-size: 30px;
      font-weight: 900;
      line-height: 1.07; } }
  h3.topline, .h3.topline {
    padding-top: .9em;
    padding-bottom: .5em;
    border-top: 2px solid var(--color-black);
    display: inline-block; }

h4, .h4 {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  font-size: 30px;
  line-height: 1.13;
  text-transform: uppercase;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-bottom: var(--spacing-sixth); }
  @media (max-width: 762px) {
    h4, .h4 {
      font-size: 26px; } }
  h4.topline, .h4.topline {
    padding-top: .9em;
    padding-bottom: .5em;
    border-top: 2px solid var(--color-black);
    display: inline-block; }

h5, .h5 {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  font-size: 24px;
  line-height: 1.17;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-bottom: var(--spacing-sixth); }
  h5.topline, .h5.topline {
    padding-top: .9em;
    padding-bottom: .5em;
    border-top: 2px solid var(--color-black);
    display: inline-block; }

h6, .h6 {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  font-size: 22px;
  line-height: 1.50;
  margin-bottom: var(--spacing-sixth); }
  h6.topline, .h6.topline {
    padding-top: .9em;
    padding-bottom: .5em;
    border-top: 2px solid var(--color-black);
    display: inline-block; }
  @media (max-width: 762px) {
    h6, .h6 {
      font-size: 18px; } }

.subline {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.14;
  letter-spacing: 1.54px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sixth); }
  @media (max-width: 762px) {
    .subline {
      font-size: 16px;
      line-height: 1;
      letter-spacing: 1.39px; } }

.meta {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-medium-grey);
  margin-bottom: var(--spacing-sixth); }
  .meta.topline {
    padding-top: .9em;
    padding-bottom: .5em;
    border-top: 2px solid var(--color-black);
    display: inline-block; }
  @media (max-width: 762px) {
    .meta {
      font-size: 12px;
      line-height: 1.4; } }
  .meta * {
    vertical-align: middle; }
  .meta abbr {
    vertical-align: baseline; }
  .meta .meta-separator {
    display: inline-block;
    vertical-align: center; }
    .meta .meta-separator.icon-bullet_active {
      padding: 0 .9em;
      font-size: .7em; }
    .meta .meta-separator.icon-like {
      font-size: 2.2em; }
  .meta a {
    color: inherit;
    text-decoration: none;
    outline: none; }
    .meta a:hover, .meta a:focus, .meta a:active, .meta a:focus:active {
      color: var(--color-black); }

figcaption, .figcaption {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: var(--spacing-sixth); }
  figcaption ul, figcaption ol li, figcaption p, .figcaption ul, .figcaption ol li, .figcaption p {
    font-size: 12px;
    line-height: 1.5;
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 400; }
  @media (min-width: 1023px) {
    figcaption, .figcaption {
      font-size: 15px;
      line-height: 1.33; }
      figcaption ul, figcaption ol li, figcaption p, .figcaption ul, .figcaption ol li, .figcaption p {
        font-size: 15px;
        line-height: 1.33;
        font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
        font-weight: 400; } }

a[href="#"]:visited,
a[href=""]:visited {
  color: inherit; }

.copy a {
  text-decoration: none;
  color: var(--color-copy);
  cursor: pointer; }
  .copy a[href*="//"]:not([href*="humboldtforum.org"]):after {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'HumboldtForum' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e900";
    padding-left: .5em;
    font-size: .85em; }

.reset-link-style a {
  text-decoration: none;
  color: inherit; }

.underlined-link {
  display: inline-block; }
  .underlined-link .button-label-line,
  .underlined-link a {
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: background-size 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    background-size: 0 2px; }
    .underlined-link .button-label-line.bigger,
    .underlined-link a.bigger {
      background-size: 0 3px; }
    @media screen and (prefers-reduced-motion: no-preference) {
      .underlined-link .button-label-line:hover,
      .underlined-link a:hover {
        text-decoration: none;
        transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
        background-size: 100% 2px; }
        .underlined-link .button-label-line:hover.bigger,
        .underlined-link a:hover.bigger {
          background-size: 100% 3px; } }
  .underlined-link a {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 400;
    font-weight: 400; }
  .underlined-link .current_page_ancestor > a,
  .underlined-link .current_page_item > a,
  .underlined-link .current_page_item > a,
  .underlined-link .current-menu-item > a {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900; }
  .underlined-link a.active,
  .underlined-link a[aria-current="page"] {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900; }
  .underlined-link.button-active .button-label {
    text-decoration: none;
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    background-size: 100% 2px; }
  .underlined-link a, .underlined-link .button-label {
    background-size: 100% 1px; }
    @media screen and (prefers-reduced-motion: no-preference) {
      .underlined-link a:hover, .underlined-link .button-label:hover {
        background-size: 0 1px; } }

.menu-link {
  display: inline-block; }
  .menu-link .button-label-line,
  .menu-link a {
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: background-size 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    background-size: 0 2px; }
    .menu-link .button-label-line.bigger,
    .menu-link a.bigger {
      background-size: 0 3px; }
    @media screen and (prefers-reduced-motion: no-preference) {
      .menu-link .button-label-line:hover,
      .menu-link a:hover {
        text-decoration: none;
        transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
        background-size: 100% 2px; }
        .menu-link .button-label-line:hover.bigger,
        .menu-link a:hover.bigger {
          background-size: 100% 3px; } }
  .menu-link a {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 400;
    font-weight: 400; }
  .menu-link .current_page_ancestor > a,
  .menu-link .current_page_item > a,
  .menu-link .current_page_item > a,
  .menu-link .current-menu-item > a {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900; }
  .menu-link a.active,
  .menu-link a[aria-current="page"] {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900; }
  .menu-link.button-active .button-label {
    text-decoration: none;
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    background-size: 100% 2px; }

.main-menu-link {
  display: inline-block; }
  .main-menu-link .button-label-line,
  .main-menu-link a {
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: background-size 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    background-size: 0 2px; }
    .main-menu-link .button-label-line.bigger,
    .main-menu-link a.bigger {
      background-size: 0 3px; }
    @media screen and (prefers-reduced-motion: no-preference) {
      .main-menu-link .button-label-line:hover,
      .main-menu-link a:hover {
        text-decoration: none;
        transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
        background-size: 100% 2px; }
        .main-menu-link .button-label-line:hover.bigger,
        .main-menu-link a:hover.bigger {
          background-size: 100% 3px; } }
  .main-menu-link a {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 400;
    font-weight: 400; }
  .main-menu-link .current_page_ancestor > a,
  .main-menu-link .current_page_item > a,
  .main-menu-link .current_page_item > a,
  .main-menu-link .current-menu-item > a {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900; }
  .main-menu-link a.active,
  .main-menu-link a[aria-current="page"] {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900; }
  .main-menu-link.button-active .button-label {
    text-decoration: none;
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    background-size: 100% 2px; }
  .main-menu-link a,
  .main-menu-link .button-label {
    background-position: left bottom !important; }

button,
.block-accordion-item-head {
  display: inline-block; }
  button .button-label-line,
  button a,
  .block-accordion-item-head .button-label-line,
  .block-accordion-item-head a {
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: background-size 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    background-size: 0 2px; }
    button .button-label-line.bigger,
    button a.bigger,
    .block-accordion-item-head .button-label-line.bigger,
    .block-accordion-item-head a.bigger {
      background-size: 0 3px; }
    @media screen and (prefers-reduced-motion: no-preference) {
      button .button-label-line:hover,
      button a:hover,
      .block-accordion-item-head .button-label-line:hover,
      .block-accordion-item-head a:hover {
        text-decoration: none;
        transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
        background-size: 100% 2px; }
        button .button-label-line:hover.bigger,
        button a:hover.bigger,
        .block-accordion-item-head .button-label-line:hover.bigger,
        .block-accordion-item-head a:hover.bigger {
          background-size: 100% 3px; } }
  button a,
  .block-accordion-item-head a {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 400;
    font-weight: 400; }
  button .current_page_ancestor > a,
  button .current_page_item > a,
  button .current_page_item > a,
  button .current-menu-item > a,
  .block-accordion-item-head .current_page_ancestor > a,
  .block-accordion-item-head .current_page_item > a,
  .block-accordion-item-head .current_page_item > a,
  .block-accordion-item-head .current-menu-item > a {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900; }
  button a.active,
  button a[aria-current="page"],
  .block-accordion-item-head a.active,
  .block-accordion-item-head a[aria-current="page"] {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900; }
  button.button-active .button-label,
  .block-accordion-item-head.button-active .button-label {
    text-decoration: none;
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    background-size: 100% 2px; }
  button a,
  button .button-label,
  .block-accordion-item-head a,
  .block-accordion-item-head .button-label {
    background-position: left bottom !important; }

.block-accordion-item-head a,
.block-accordion-item-head .button-label {
  color: var(--color-copy);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  background-size: 0 1px; }
  @media screen and (prefers-reduced-motion: no-preference) {
    .block-accordion-item-head a:hover,
    .block-accordion-item-head .button-label:hover {
      text-decoration: none;
      transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
      background-size: 100% 1px; } }

.block-accordion-item-head.button-active .button-label {
  text-decoration: none;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  background-size: 100% 1px; }

.teaser-info-copy a,
.copy a {
  color: var(--color-copy);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  background-size: 100% 1px; }
  @media screen and (prefers-reduced-motion: no-preference) {
    .teaser-info-copy a:hover,
    .copy a:hover {
      text-decoration: none;
      transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
      background-size: 0 1px; } }

.persons-container a,
.persons-container .button-label {
  color: var(--color-copy);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  background-size: 0 1px; }
  @media screen and (prefers-reduced-motion: no-preference) {
    .persons-container a:hover,
    .persons-container .button-label:hover {
      text-decoration: none;
      transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
      background-size: 100% 1px; } }

.persons-container.button-active .button-label {
  text-decoration: none;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  background-size: 100% 1px; }

.persons-container a, .persons-container .button-label {
  background-size: 100% 1px; }
  @media screen and (prefers-reduced-motion: no-preference) {
    .persons-container a:hover, .persons-container .button-label:hover {
      background-size: 0 1px; } }

.tax-list-magazine-author a,
.tax-list-magazine-author .button-label {
  color: var(--color-copy);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  background-size: 0 1px; }
  @media screen and (prefers-reduced-motion: no-preference) {
    .tax-list-magazine-author a:hover,
    .tax-list-magazine-author .button-label:hover {
      text-decoration: none;
      transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
      background-size: 100% 1px; } }

.tax-list-magazine-author.button-active .button-label {
  text-decoration: none;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  background-size: 100% 1px; }

.alert {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  font-size: 16px;
  padding: .625em 1em;
  line-height: 1em;
  border: 1px solid rgba(0, 0, 0, 0.03);
  text-decoration: none;
  color: var(--color-black) !important;
  background-color: var(--color-invert);
  display: inline-flex;
  border-radius: 3px; }
  @media (max-width: 762px) {
    .alert {
      font-size: 14px;
      padding: .4em .65em .42em; } }
  .alert span {
    font-style: inherit;
    font-family: inherit;
    color: inherit; }
  .alert.alert-red {
    background-color: red;
    color: var(--color-invert) !important; }

.no-link-style-area {
  display: inline-block;
  display: revert; }
  .no-link-style-area a {
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: background-size 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    background-size: 0 1px;
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 400; }
    @media screen and (prefers-reduced-motion: no-preference) {
      .no-link-style-area a:hover {
        text-decoration: none;
        transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
        background-size: 100% 1px; } }
  .no-link-style-area.current_page_ancestor a, .no-link-style-area.current_page_item a, .no-link-style-area.current-menu-item a, .no-link-style-area.current_page_ancestor a, .no-link-style-area.current_page_item a, .no-link-style-area.wpml-ls-current-language a {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900; }
  .no-link-style-area a.active,
  .no-link-style-area a[aria-current="page"] {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900; }
  .no-link-style-area.button-active .button-label {
    text-decoration: none;
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    background-size: 100% 1px; }
  .no-link-style-area a {
    color: inherit; }

a.tag,
.article-tags a {
  display: inline-block;
  background-color: rgba(144, 144, 144, 0.4);
  padding: .7em 1em .8em;
  margin: .3em;
  border-radius: 3px;
  text-decoration: none;
  color: inherit;
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.11; }
  a.tag span,
  .article-tags a span {
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: background-size 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    background-size: 0 1px; }
    @media screen and (prefers-reduced-motion: no-preference) {
      a.tag span:hover,
      .article-tags a span:hover {
        text-decoration: none;
        transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
        background-size: 100% 1px; } }

a[role="button"].nba-button .button-label {
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  background-size: 0 2px; }

@media screen and (prefers-reduced-motion: no-preference) {
  a[role="button"].nba-button:hover {
    color: var(--color-copy); }
    a[role="button"].nba-button:hover .button-label {
      text-decoration: none;
      transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
      background-size: 100% 2px; } }

.teaser .external-content-wrapper .external-content-darken-layer {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  -webkit-transition: -webkit-clip-path 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-clip-path 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: clip-path 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: clip-path 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-clip-path 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.teaser .teaser-image .image,
.teaser .teaser-image video,
.teaser .teaser-image-group .image,
.teaser .teaser-image-group video {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  -webkit-transition: -webkit-clip-path 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-clip-path 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: clip-path 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: clip-path 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-clip-path 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

@media screen and (prefers-reduced-motion: no-preference) {
  .teaser:hover .external-content-wrapper .external-content-darken-layer {
    -webkit-clip-path: polygon(2% 2%, 98% 2%, 98% 98%, 2% 98%);
    clip-path: polygon(2% 2%, 98% 2%, 98% 98%, 2% 98%); }
  .teaser:hover .teaser-image .image,
  .teaser:hover .teaser-image video,
  .teaser:hover .teaser-image-group .image,
  .teaser:hover .teaser-image-group video {
    -webkit-clip-path: polygon(2% 2%, 98% 2%, 98% 98%, 2% 98%);
    clip-path: polygon(2% 2%, 98% 2%, 98% 98%, 2% 98%); } }

.block-magazin-teaser-dossier .teaser .teaser-header span,
.teaser.teaser-magazine-dossier .teaser-header span {
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  background-size: 0 2px; }

.block-magazin-teaser-dossier .teaser .teaser-image .image,
.teaser.teaser-magazine-dossier .teaser-image .image {
  -webkit-clip-path: none;
  clip-path: none;
  -webkit-transition: none; }

@media screen and (prefers-reduced-motion: no-preference) {
  .block-magazin-teaser-dossier .teaser:hover .teaser-header span,
  .teaser.teaser-magazine-dossier:hover .teaser-header span {
    text-decoration: none;
    transition: background-size 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-size: 100% 2px; } }

ul.menu li {
  display: inline-block; }
  ul.menu li .button-label-line,
  ul.menu li a {
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: background-size 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    background-size: 0 2px; }
    ul.menu li .button-label-line.bigger,
    ul.menu li a.bigger {
      background-size: 0 3px; }
    @media screen and (prefers-reduced-motion: no-preference) {
      ul.menu li .button-label-line:hover,
      ul.menu li a:hover {
        text-decoration: none;
        transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
        background-size: 100% 2px; }
        ul.menu li .button-label-line:hover.bigger,
        ul.menu li a:hover.bigger {
          background-size: 100% 3px; } }
  ul.menu li a {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 400;
    font-weight: 400; }
  ul.menu li .current_page_ancestor > a,
  ul.menu li .current_page_item > a,
  ul.menu li .current_page_item > a,
  ul.menu li .current-menu-item > a {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900; }
  ul.menu li a.active,
  ul.menu li a[aria-current="page"] {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900; }
  ul.menu li.button-active .button-label {
    text-decoration: none;
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    background-size: 100% 2px; }

footer ul.menu li,
.dialog-language ul.menu li {
  display: inline-block; }
  footer ul.menu li a,
  .dialog-language ul.menu li a {
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: background-size 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    background-size: 0 1px;
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 400; }
    @media screen and (prefers-reduced-motion: no-preference) {
      footer ul.menu li a:hover,
      .dialog-language ul.menu li a:hover {
        text-decoration: none;
        transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
        background-size: 100% 1px; } }
  footer ul.menu li.current_page_ancestor a, footer ul.menu li.current_page_item a, footer ul.menu li.current-menu-item a, footer ul.menu li.current_page_ancestor a, footer ul.menu li.current_page_item a, footer ul.menu li.wpml-ls-current-language a,
  .dialog-language ul.menu li.current_page_ancestor a,
  .dialog-language ul.menu li.current_page_item a,
  .dialog-language ul.menu li.current-menu-item a,
  .dialog-language ul.menu li.current_page_ancestor a,
  .dialog-language ul.menu li.current_page_item a,
  .dialog-language ul.menu li.wpml-ls-current-language a {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900; }
  footer ul.menu li a.active,
  footer ul.menu li a[aria-current="page"],
  .dialog-language ul.menu li a.active,
  .dialog-language ul.menu li a[aria-current="page"] {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900; }
  footer ul.menu li.button-active .button-label,
  .dialog-language ul.menu li.button-active .button-label {
    text-decoration: none;
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    background-size: 100% 1px; }

.anchor-nav-list-item button a,
.anchor-nav-list-item button .button-label {
  color: var(--color-copy);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  background-size: 0 1px; }
  @media screen and (prefers-reduced-motion: no-preference) {
    .anchor-nav-list-item button a:hover,
    .anchor-nav-list-item button .button-label:hover {
      text-decoration: none;
      transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
      background-size: 100% 1px; } }

.anchor-nav-list-item button.button-active .button-label {
  text-decoration: none;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  background-size: 100% 1px; }

.anchor-nav-list-item button a, .anchor-nav-list-item button .button-label {
  background-size: 100% 1px; }
  @media screen and (prefers-reduced-motion: no-preference) {
    .anchor-nav-list-item button a:hover, .anchor-nav-list-item button .button-label:hover {
      background-size: 0 1px; } }

.copy p, .copy em, .copy i {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 20px;
  line-height: 1.73; }
  @media (max-width: 762px) {
    .copy p, .copy em, .copy i {
      font-size: 18px;
      line-height: 1.78; } }

span.anleser, .intro {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  font-weight: 900 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 20px;
  line-height: 1.73; }
  @media (max-width: 762px) {
    span.anleser, .intro {
      font-size: 18px;
      line-height: 1.78; } }

em, i {
  font-style: italic; }

p + p, p + h1, p + h2, p + h3, p + h4, p + h5, p + h6, p + ol, p + ul,
ol + p, ol + h1, ol + h2, ol + h3, ol + h4, ol + h5, ol + h6, ol + p, ol + ul,
ul + p, ul + h1, ul + h2, ul + h3, ul + h4, ul + h5, ul + h6, ul + ol, ul + p {
  margin-top: var(--spacing-sixth); }

.copy ul li, .copy ol li {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 20px;
  line-height: 1.73; }
  @media (max-width: 762px) {
    .copy ul li, .copy ol li {
      font-size: 18px;
      line-height: 1.78; } }

.copy ul {
  list-style-type: disc !important;
  list-style-position: inside !important;
  margin-left: 0em; }
  .copy ul li {
    list-style-position: outside;
    margin-left: 1.1em;
    line-height: 1.4;
    margin-bottom: .4em;
    padding-left: .4em; }

.copy ol {
  list-style-type: decimal;
  list-style-position: inside;
  margin-left: .3em; }
  .copy ol li {
    list-style-position: outside;
    margin-left: 1em;
    padding: 0;
    line-height: 1.4;
    margin-bottom: .4em;
    padding-left: .4em; }

.copy ul ul, .copy ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: var(--spacing-sixth); }

.copy ol ol, .copy ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px; }

.insignificant {
  color: var(--color-medium-grey); }

.insignificanter {
  color: var(--color-light-grey); }

abbr[title] {
  text-decoration: none;
  border: none;
  font-size: inherit;
  font-style: inherit;
  vertical-align: baseline; }

a.button,
a[role="button"] {
  display: inline-block;
  border: 2px solid var(--color-black);
  margin: 20px 0;
  padding: 20px 30px;
  color: var(--color-black);
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  background-color: transparent;
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  text-decoration: none; }
  @media (max-width: 762px) {
    a.button,
    a[role="button"] {
      padding: 15px 23px; } }
  a.button.black,
  a[role="button"].black {
    background-color: var(--color-black) !important;
    color: var(--color-invert) !important;
    border: 2px solid var(--color-black) !important; }
    a.button.black .button-label,
    a[role="button"].black .button-label {
      color: inherit !important; }
  a.button.inactive,
  a[role="button"].inactive {
    background-color: var(--color-light-grey) !important;
    color: var(--color-medium-grey) !important;
    border: 2px solid var(--color-light-grey) !important;
    cursor: no-drop;
    pointer-events: none; }
  a.button.small,
  a[role="button"].small {
    padding: 14px 20px;
    text-transform: none;
    font-size: 16px; }
    @media (max-width: 762px) {
      a.button.small,
      a[role="button"].small {
        padding: 11px 17px; } }
    @media (max-width: 762px) {
      a.button.small,
      a[role="button"].small {
        font-size: 14px; } }
  @media (max-width: 762px) {
    a.button,
    a[role="button"] {
      font-size: 16px;
      line-height: 1.25; } }
  a.button.noborder,
  a[role="button"].noborder {
    border: none !important;
    margin: 0;
    padding: 0; }
  a.button.normalcase,
  a[role="button"].normalcase {
    text-transform: none; }

a.button,
a[role="button"] {
  position: relative;
  background-image: none; }
  a.button.nba-button,
  a[role="button"].nba-button {
    margin: 10px 10px;
    margin-left: 0;
    border: none;
    background-color: var(--color-lightest-grey); }
    a.button.nba-button .subline,
    a[role="button"].nba-button .subline {
      margin-bottom: 10px; }
    a.button.nba-button .button-label,
    a[role="button"].nba-button .button-label {
      font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
      font-weight: 900;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      font-size: 18px;
      line-height: 1.22;
      letter-spacing: 0.9px;
      text-transform: uppercase;
      text-decoration: none;
      text-transform: none; }
      @media (max-width: 762px) {
        a.button.nba-button .button-label,
        a[role="button"].nba-button .button-label {
          font-size: 16px;
          line-height: 1.25; } }
  a.button.service-button,
  a[role="button"].service-button {
    border-radius: 4px;
    border: none;
    background-color: var(--color-lightest-grey);
    text-align: center; }
    a.button.service-button span.button-label,
    a[role="button"].service-button span.button-label {
      text-transform: none;
      letter-spacing: initial; }
    a.button.service-button img,
    a[role="button"].service-button img {
      width: 20px;
      height: 20px;
      display: inline-block;
      margin: 0 0 4px 0; }
      @media (max-width: 762px) {
        a.button.service-button img,
        a[role="button"].service-button img {
          display: block;
          margin: 0 auto 6px; } }
    @media (max-width: 762px) {
      a.button.service-button,
      a[role="button"].service-button {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 99px; } }
    @media (min-width: 763px) {
      a.button.service-button,
      a[role="button"].service-button {
        display: inline-flex;
        justify-content: space-between;
        padding: 28px 35px 26px; }
        a.button.service-button img,
        a[role="button"].service-button img {
          margin: 0 16px 0 0; } }
    a.button.service-button.highlight,
    a[role="button"].service-button.highlight {
      filter: invert(1); }
  a.button:before,
  a[role="button"]:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: black !important;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1); }
  a.button.active:before, a.button:active:before, a.button:focus:before, a.button:hover:before,
  a[role="button"].active:before,
  a[role="button"]:active:before,
  a[role="button"]:focus:before,
  a[role="button"]:hover:before {
    opacity: .1; }
  a.button.black:before,
  a[role="button"].black:before {
    background: white !important; }
  a.button.black:hover:before,
  a[role="button"].black:hover:before {
    opacity: .25; }
  a.button.noborder .button-label .button-label,
  a[role="button"].noborder .button-label .button-label {
    background-image: linear-gradient(currentColor, currentColor);
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: background-size 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    background-size: 0 1px; }
  a.button.noborder .button-label:hover .button-label,
  a[role="button"].noborder .button-label:hover .button-label {
    text-decoration: none;
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    background-size: 100% 1px; }
  a.button.button-intern,
  a[role="button"].button-intern {
    position: relative; }
    a.button.button-intern:before,
    a[role="button"].button-intern:before {
      content: "";
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: black !important;
      opacity: 0;
      transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1); }
    a.button.button-intern.active:before, a.button.button-intern:active:before, a.button.button-intern:focus:before, a.button.button-intern:hover:before,
    a[role="button"].button-intern.active:before,
    a[role="button"].button-intern:active:before,
    a[role="button"].button-intern:focus:before,
    a[role="button"].button-intern:hover:before {
      opacity: .1; }
    a.button.button-intern.black:before,
    a[role="button"].button-intern.black:before {
      background: white !important; }
    a.button.button-intern.black:hover:before,
    a[role="button"].button-intern.black:hover:before {
      opacity: .25; }
  a.button.button-extern,
  a[role="button"].button-extern {
    position: relative; }
    a.button.button-extern:before,
    a[role="button"].button-extern:before {
      content: "";
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: black !important;
      opacity: 0;
      transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1); }
    a.button.button-extern.active:before, a.button.button-extern:active:before, a.button.button-extern:focus:before, a.button.button-extern:hover:before,
    a[role="button"].button-extern.active:before,
    a[role="button"].button-extern:active:before,
    a[role="button"].button-extern:focus:before,
    a[role="button"].button-extern:hover:before {
      opacity: .1; }
    a.button.button-extern.black:before,
    a[role="button"].button-extern.black:before {
      background: white !important; }
    a.button.button-extern.black:hover:before,
    a[role="button"].button-extern.black:hover:before {
      opacity: .25; }

a.button,
button {
  color: inherit;
  font: inherit;
  margin: 0;
  overflow: visible;
  border-radius: 0;
  text-transform: none;
  cursor: pointer;
  border: none;
  padding: 0;
  background-color: transparent;
  user-select: none;
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  text-decoration: none; }
  @media (max-width: 762px) {
    a.button,
    button {
      font-size: 16px;
      line-height: 1.25; } }
  @media (max-width: 762px) {
    a.button,
    button {
      line-height: .74; } }

.button.button-with-icon,
button.button-with-icon,
a[role=button].button-with-icon {
  display: inline-flex;
  align-items: center;
  border: none;
  color: inherit;
  /* 1 */
  background-color: inherit;
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
  cursor: pointer;
  text-align: center;
  padding: var(--spacing-minimal);
  padding-left: 0;
  justify-content: center; }
  .button.button-with-icon:not(.border) .button-label, .button.button-with-icon:not(.button-with-icon) .button-label,
  button.button-with-icon:not(.border) .button-label,
  button.button-with-icon:not(.button-with-icon) .button-label,
  a[role=button].button-with-icon:not(.border) .button-label,
  a[role=button].button-with-icon:not(.button-with-icon) .button-label {
    background-image: linear-gradient(currentColor, currentColor);
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: background-size 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    background-size: 0 1px; }
  .button.button-with-icon:not(.border):hover .button-label, .button.button-with-icon:not(.button-with-icon):hover .button-label,
  button.button-with-icon:not(.border):hover .button-label,
  button.button-with-icon:not(.button-with-icon):hover .button-label,
  a[role=button].button-with-icon:not(.border):hover .button-label,
  a[role=button].button-with-icon:not(.button-with-icon):hover .button-label {
    text-decoration: none;
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    background-size: 100% 1px; }
  .button.button-with-icon.border,
  button.button-with-icon.border,
  a[role=button].button-with-icon.border {
    position: relative; }
    .button.button-with-icon.border:before,
    button.button-with-icon.border:before,
    a[role=button].button-with-icon.border:before {
      content: "";
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: black !important;
      opacity: 0;
      transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1); }
    .button.button-with-icon.border.active:before, .button.button-with-icon.border:active:before, .button.button-with-icon.border:focus:before, .button.button-with-icon.border:hover:before,
    button.button-with-icon.border.active:before,
    button.button-with-icon.border:active:before,
    button.button-with-icon.border:focus:before,
    button.button-with-icon.border:hover:before,
    a[role=button].button-with-icon.border.active:before,
    a[role=button].button-with-icon.border:active:before,
    a[role=button].button-with-icon.border:focus:before,
    a[role=button].button-with-icon.border:hover:before {
      opacity: .1; }
    .button.button-with-icon.border.black:before,
    button.button-with-icon.border.black:before,
    a[role=button].button-with-icon.border.black:before {
      background: white !important; }
    .button.button-with-icon.border.black:hover:before,
    button.button-with-icon.border.black:hover:before,
    a[role=button].button-with-icon.border.black:hover:before {
      opacity: .25; }
  .button.button-with-icon.black,
  button.button-with-icon.black,
  a[role=button].button-with-icon.black {
    padding-left: var(--spacing-minimal); }
    .button.button-with-icon.black span.button-label,
    button.button-with-icon.black span.button-label,
    a[role=button].button-with-icon.black span.button-label {
      margin-right: var(--spacing-atom); }
  .button.button-with-icon .button-icon,
  button.button-with-icon .button-icon,
  a[role=button].button-with-icon .button-icon {
    font-size: 30px;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transform-origin: center center;
    transform: rotate(0deg);
    display: flex;
    align-items: center;
    justify-content: center; }
  .button.button-with-icon .button-label,
  button.button-with-icon .button-label,
  a[role=button].button-with-icon .button-label {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 18px;
    line-height: 1.22;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    text-decoration: none;
    margin-left: var(--spacing-minimal);
    width: auto; }
    @media (max-width: 762px) {
      .button.button-with-icon .button-label,
      button.button-with-icon .button-label,
      a[role=button].button-with-icon .button-label {
        font-size: 16px;
        line-height: 1.25; } }
  .button.button-with-icon.button-active .button-icon,
  button.button-with-icon.button-active .button-icon,
  a[role=button].button-with-icon.button-active .button-icon {
    transform: rotate(45deg); }

button.button-tiny {
  display: inline-flex;
  align-items: center;
  border: none;
  color: inherit;
  /* 1 */
  background-color: inherit;
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
  cursor: pointer;
  text-align: center;
  padding: var(--spacing-minimal);
  padding-left: 0; }
  button.button-tiny .button-label {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    margin-left: var(--spacing-minimal); }

button.button-with-icon-small,
a[role=button].button-with-icon-small {
  display: inline-flex;
  align-items: center;
  border: none;
  color: inherit;
  /* 1 */
  background-color: inherit;
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
  cursor: pointer;
  text-align: center;
  padding: var(--spacing-minimal);
  padding-left: 0; }
  button.button-with-icon-small .button-label,
  a[role=button].button-with-icon-small .button-label {
    background-image: linear-gradient(currentColor, currentColor);
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: background-size 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    background-size: 0 1px; }
  button.button-with-icon-small:hover .button-label,
  a[role=button].button-with-icon-small:hover .button-label {
    text-decoration: none;
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    background-size: 100% 1px; }
  button.button-with-icon-small .button-icon,
  a[role=button].button-with-icon-small .button-icon {
    position: relative;
    font-size: 26px;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transform-origin: center center;
    transform: rotate(0deg); }
  button.button-with-icon-small .button-label,
  a[role=button].button-with-icon-small .button-label {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 700;
    font-size: 17px;
    text-transform: none;
    letter-spacing: 0;
    margin-left: var(--spacing-minimal); }
  button.button-with-icon-small.button-active .button-icon,
  a[role=button].button-with-icon-small.button-active .button-icon {
    transform: rotate(45deg); }

.button-with-icon.button-calendar {
  display: inline-flex;
  align-items: center;
  border: none;
  color: inherit;
  /* 1 */
  background-color: inherit;
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
  cursor: pointer;
  text-align: center;
  position: relative;
  border-radius: 5px;
  height: 100%;
  white-space: nowrap;
  margin-right: 10px;
  background: var(--color-black);
  color: var(--color-invert);
  display: flex; }
  .button-with-icon.button-calendar .button-label {
    background-image: linear-gradient(currentColor, currentColor);
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: background-size 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    background-size: 0 1px; }
  .button-with-icon.button-calendar:hover .button-label {
    text-decoration: none;
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    background-size: 100% 1px; }
  .button-with-icon.button-calendar .button-label {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 400;
    text-transform: none;
    line-height: 1;
    font-size: 17px;
    text-decoration: none;
    letter-spacing: normal;
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 400;
    white-space: nowrap; }
    @media (min-width: 763px) {
      .button-with-icon.button-calendar .button-label {
        font-size: 18px; } }
  .button-with-icon.button-calendar .button-icon {
    position: relative;
    margin-left: 10px; }

.button-with-icon.button-calendar.button-calendar-delete {
  padding-right: 5px;
  color: var(--color-black);
  background-color: var(--color-lightest-grey); }
  .button-with-icon.button-calendar.button-calendar-delete .button-icon {
    font-size: 26px;
    transform: rotate(45deg); }

button.button-nav-service,
a[role=button].button-nav-service {
  display: inline-flex;
  align-items: center;
  border: none;
  color: inherit;
  /* 1 */
  background-color: inherit;
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
  cursor: pointer;
  text-align: center;
  padding: 5px 8px 5px 8px;
  margin-right: 10px;
  background-color: var(--color-even-more-light-grey); }
  button.button-nav-service .button-label,
  a[role=button].button-nav-service .button-label {
    background-image: linear-gradient(currentColor, currentColor);
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: background-size 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    background-size: 0 1px; }
  button.button-nav-service:hover .button-label,
  a[role=button].button-nav-service:hover .button-label {
    text-decoration: none;
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    background-size: 100% 1px; }
  button.button-nav-service .button-label,
  a[role=button].button-nav-service .button-label {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 18px;
    line-height: 1.22;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 700;
    text-transform: none;
    letter-spacing: normal;
    text-decoration: none;
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 400;
    font-size: 14px !important;
    line-height: 14px !important; }
    @media (max-width: 762px) {
      button.button-nav-service .button-label,
      a[role=button].button-nav-service .button-label {
        font-size: 16px;
        line-height: 1.25; } }
    button.button-nav-service .button-label strong,
    a[role=button].button-nav-service .button-label strong {
      margin-right: 4px;
      font-weight: 900; }
  button.button-nav-service span[class^="icon-"],
  a[role=button].button-nav-service span[class^="icon-"] {
    display: inline-block;
    transform: scale(1.36);
    line-height: .6em;
    top: 1px;
    position: relative; }
  button.button-nav-service .button-icon,
  a[role=button].button-nav-service .button-icon {
    font-size: 26px;
    transform: rotate(45deg); }

@media (max-width: 762px) {
  .button-nav-service-search {
    display: none !important; } }

button.media-button-with-icon,
a[role=button].media-button-with-icon {
  display: inline-flex;
  align-items: center;
  border: none;
  color: inherit;
  /* 1 */
  background-color: inherit;
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
  cursor: pointer;
  text-align: center;
  position: relative;
  padding: 15px;
  padding-right: 28px;
  background-color: white; }
  button.media-button-with-icon:before,
  a[role=button].media-button-with-icon:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: black !important;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1); }
  button.media-button-with-icon.active:before, button.media-button-with-icon:active:before, button.media-button-with-icon:focus:before, button.media-button-with-icon:hover:before,
  a[role=button].media-button-with-icon.active:before,
  a[role=button].media-button-with-icon:active:before,
  a[role=button].media-button-with-icon:focus:before,
  a[role=button].media-button-with-icon:hover:before {
    opacity: .1; }
  button.media-button-with-icon.black:before,
  a[role=button].media-button-with-icon.black:before {
    background: white !important; }
  button.media-button-with-icon.black:hover:before,
  a[role=button].media-button-with-icon.black:hover:before {
    opacity: .25; }
  button.media-button-with-icon .button-icon,
  a[role=button].media-button-with-icon .button-icon {
    font-size: 30px; }
  button.media-button-with-icon .button-label,
  a[role=button].media-button-with-icon .button-label {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900;
    margin-left: var(--spacing-minimal);
    letter-spacing: 1px;
    font-size: 16px;
    line-height: 1.25;
    text-transform: uppercase; }

button.accordion-button-with-icon,
a[role=button].accordion-button-with-icon {
  display: inline-flex;
  align-items: center;
  border: none;
  color: inherit;
  /* 1 */
  background-color: inherit;
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
  cursor: pointer;
  text-align: center;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  white-space: normal;
  text-transform: none;
  text-align: left;
  /*
  &:focus {
    outline: none;
    background-color: var(--color-light-grey);
  }

   */ }
  button.accordion-button-with-icon .button-label,
  a[role=button].accordion-button-with-icon .button-label {
    font-size: 17px;
    letter-spacing: 0;
    line-height: 1.22;
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 700; }
    @media (min-width: 1024px) {
      button.accordion-button-with-icon .button-label,
      a[role=button].accordion-button-with-icon .button-label {
        font-size: 25px; } }
  button.accordion-button-with-icon .button-icon,
  a[role=button].accordion-button-with-icon .button-icon {
    font-size: 30px; }

button.round-media-button-icon-only,
a[role=button].round-media-button-icon-only {
  position: relative;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  border: solid 3px var(--color-black);
  transition: background .3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center; }
  button.round-media-button-icon-only .button-icon,
  a[role=button].round-media-button-icon-only .button-icon {
    width: 100%;
    height: 100%;
    font-size: 36px; }
    button.round-media-button-icon-only .button-icon.icon-play,
    a[role=button].round-media-button-icon-only .button-icon.icon-play {
      margin-top: -0.05em;
      margin-left: 0.1em; }
  button.round-media-button-icon-only *[class*="icon-"],
  button.round-media-button-icon-only .button-label,
  a[role=button].round-media-button-icon-only *[class*="icon-"],
  a[role=button].round-media-button-icon-only .button-label {
    transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1); }
  button.round-media-button-icon-only:hover *[class*="icon-"],
  button.round-media-button-icon-only:hover .button-label,
  a[role=button].round-media-button-icon-only:hover *[class*="icon-"],
  a[role=button].round-media-button-icon-only:hover .button-label {
    opacity: .6; }

form input[type="submit"],
form button[type="submit"],
button.black {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  text-decoration: none;
  background-color: var(--color-black);
  border: solid 3px transparent;
  color: var(--color-invert);
  padding: 20px 30px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  -webkit-transition: -webkit-clip-path 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-clip-path 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: clip-path 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: clip-path 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-clip-path 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  @media (max-width: 762px) {
    form input[type="submit"],
    form button[type="submit"],
    button.black {
      font-size: 16px;
      line-height: 1.25; } }
  form input[type="submit"].disabled, form input[type="submit"].loading,
  form button[type="submit"].disabled,
  form button[type="submit"].loading,
  button.black.disabled,
  button.black.loading {
    background-image: url("/assets/icons/buttonloading.svg");
    background-repeat: no-repeat;
    background-position: center center;
    color: transparent !important;
    background-size: contain; }
    form input[type="submit"].disabled:hover, form input[type="submit"].loading:hover,
    form button[type="submit"].disabled:hover,
    form button[type="submit"].loading:hover,
    button.black.disabled:hover,
    button.black.loading:hover {
      color: transparent !important;
      background-color: var(--color-black) !important; }
  form input[type="submit"]:hover,
  form button[type="submit"]:hover,
  button.black:hover {
    -webkit-clip-path: polygon(2% 2%, 98% 2%, 98% 98%, 2% 98%);
    clip-path: polygon(2% 2%, 98% 2%, 98% 98%, 2% 98%); }

button.border {
  position: relative;
  padding: 20px 30px;
  border: 2px solid var(--color-black); }
  button.border:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: black !important;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1); }
  button.border.active:before, button.border:active:before, button.border:focus:before, button.border:hover:before {
    opacity: .1; }
  button.border.black:before {
    background: white !important; }
  button.border.black:hover:before {
    opacity: .25; }
  @media (max-width: 762px) {
    button.border {
      padding: 20px 30px;
      line-height: .74; } }

@media (max-width: 762px) {
  button.border.button-with-icon {
    padding: 16px 22px; } }

form button[type="reset"],
button.naked {
  border: none;
  padding: 20px 30px; }

form button[type="submit"],
button.prominent {
  border: 2px solid transparent;
  padding: 20px 60px; }
  @media (max-width: 1022px) {
    form button[type="submit"],
    button.prominent {
      padding: 20px 40px; } }

.btn-group,
form .acf-form-submit {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-items: baseline; }
  .btn-group button,
  form .acf-form-submit button {
    margin-right: 13.5px;
    margin-left: 13.5px;
    margin-bottom: 2px; }
    @media (max-width: 762px) {
      .btn-group button,
      form .acf-form-submit button {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 1em; }
        .btn-group button:last-child,
        form .acf-form-submit button:last-child {
          margin-bottom: 0; } }
  @media (min-width: 1023px) {
    .btn-group.acf-form-submit.acf-form-submit, .btn-group.acf-form-submit.hog-right, .btn-group.hog.acf-form-submit, .btn-group.hog.hog-right,
    form .acf-form-submit.acf-form-submit.acf-form-submit,
    form .acf-form-submit.acf-form-submit.hog-right,
    form .acf-form-submit.hog.acf-form-submit,
    form .acf-form-submit.hog.hog-right {
      justify-content: flex-end; } }
  .btn-group.acf-form-submit button, .btn-group.hog button,
  form .acf-form-submit.acf-form-submit button,
  form .acf-form-submit.hog button {
    margin-left: 0;
    margin-right: 0; }
  .btn-group.mobile-inline,
  form .acf-form-submit.mobile-inline {
    display: flex;
    align-items: center; }
    @media (max-width: 762px) {
      .btn-group.mobile-inline button,
      form .acf-form-submit.mobile-inline button {
        width: calc(50% - 10px);
        margin-right: 5px;
        margin-left: 5px;
        margin-bottom: 0px;
        padding: 15px 0px;
        line-height: 1; } }

button.small {
  padding: 10px 20px;
  text-transform: none;
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.22;
  letter-spacing: 0.9px;
  text-decoration: none; }
  @media (max-width: 762px) {
    button.small {
      font-size: 14px;
      line-height: 1.25; } }

button.icon-round {
  font-size: 57px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 50%;
  background-color: white;
  margin: .1em;
  width: 1em;
  height: 1em;
  padding: 0;
  outline: none;
  z-index: 2;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  cursor: pointer;
  box-shadow: 0 0 13px 0 var(--color-light-grey);
  background-color: var(--color-invert);
  color: var(--color-black); }
  button.icon-round *[class*="icon-"],
  button.icon-round .button-label {
    transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1); }
  button.icon-round:hover *[class*="icon-"],
  button.icon-round:hover .button-label {
    opacity: .6; }
  button.icon-round-no-shadow {
    box-shadow: none; }

button.icon-tiny-round {
  font-size: 26px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 50%;
  background-color: transparent;
  margin: .1em;
  width: 1em;
  height: 1em;
  padding: 7px;
  outline: none;
  z-index: 2;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  cursor: pointer;
  color: var(--color-black);
  border: 1px solid var(--color-medium-grey);
  box-sizing: content-box; }
  button.icon-tiny-round *[class*="icon-"],
  button.icon-tiny-round .button-label {
    transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1); }
  button.icon-tiny-round:hover *[class*="icon-"],
  button.icon-tiny-round:hover .button-label {
    opacity: .6; }

.button-icon-round-text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 2em 0; }
  .button-icon-round-text-wrapper.textbelow {
    display: inline-block;
    text-align: center;
    padding: .5em 0; }
    .button-icon-round-text-wrapper.textbelow .button-icon-round-text-wrapper-text {
      margin-top: .5em;
      text-align: center; }
  .button-icon-round-text-wrapper .button-icon-round-text-wrapper-text {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 400;
    font-size: 19px; }

.button-icon-simple {
  font-size: 50px;
  text-decoration: none;
  color: var(--color-black);
  border: none;
  background-color: none; }
  .button-icon-simple *[class*="icon-"],
  .button-icon-simple .button-label {
    transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1); }
  .button-icon-simple:hover *[class*="icon-"],
  .button-icon-simple:hover .button-label {
    opacity: .6; }
  .button-icon-simple:visited {
    color: inherit; }
  .button-icon-simple .button-label {
    position: relative;
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 700;
    margin-left: -10px;
    margin-right: 6px;
    top: -8px;
    font-size: 16px;
    line-height: 0; }
  .button-icon-simple.invert {
    color: var(--color-invert); }

.toggle_menu {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%; }
  .toggle_menu button {
    white-space: nowrap;
    padding-right: .6em;
    opacity: 0.5; }
    .toggle_menu button.active {
      opacity: 1; }
      .toggle_menu button.active .button-label-line {
        background-size: 100% 3px; }

.nav-margin {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding-left: var(--grid-side-margin);
  padding-right: var(--grid-side-margin); }

.nav-meta, .nav-first, .nav-second {
  align-items: center;
  max-width: none !important; }
  .nav-meta .nav-bg, .nav-first .nav-bg, .nav-second .nav-bg {
    position: absolute;
    background: var(--color-invert);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1; }
  .nav-meta .logo, .nav-first .logo, .nav-second .logo {
    position: absolute;
    right: var(--grid-side-margin); }
    .nav-meta .logo svg, .nav-first .logo svg, .nav-second .logo svg {
      width: 132px;
      margin-right: 14px;
      height: auto;
      margin-top: 0px; }
      @media (max-width: 762px) {
        .nav-meta .logo svg, .nav-first .logo svg, .nav-second .logo svg {
          width: 105px;
          margin-top: 0px;
          margin-right: 4px; } }

.anchor-nav-title {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  padding-top: var(--spacing-minimal);
  padding-bottom: var(--spacing-minimal);
  text-transform: none; }
  @media (min-width: 763px) {
    .anchor-nav-title {
      font-size: 18px;
      padding-top: var(--spacing-sixth);
      padding-bottom: var(--spacing-sixth); } }

.anchor-nav-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0; }
  .anchor-nav-list-item {
    display: flex;
    margin-left: 0; }
    .anchor-nav-list-item button {
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      line-height: 1;
      padding: 3px 0;
      text-align: left;
      margin-bottom: var(--spacing-minimal);
      display: table;
      /*
		&.button-active,&:hover,&:focus,&:active,&:focus:active
		{
		  outline: none;
		  color: var(--color-highlight);
		  border-bottom: 2px solid var(--color-link-hover);

		  .button-icon
		  {
			&:before
			{
			  content : $icon-bullet_active;
			}
		  }
		}

		 */ }
      @media (min-width: 763px) {
        .anchor-nav-list-item button {
          margin-bottom: var(--spacing-sixth); } }
      .anchor-nav-list-item button .button-icon {
        position: relative;
        font-size: 20px;
        width: 12px;
        padding: 0;
        top: 2px;
        left: -6px;
        display: table-cell; }
      .anchor-nav-list-item button .button-label {
        font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
        font-weight: 400;
        text-transform: none;
        margin-left: var(--spacing-atom);
        display: table-cell; }
      .anchor-nav-list-item button.button-active {
        font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
        font-weight: 900; }

nav.second-level, .nav.second-level {
  margin-bottom: var(--spacing-two-thirds);
  background: var(--color-invert);
  z-index: 100;
  width: 100%;
  border-bottom: solid 1px var(--color-lightest-grey); }
  nav.second-level .second-level-content, .nav.second-level .second-level-content {
    position: relative;
    will-change: scroll-position;
    transition: height 0.3s cubic-bezier(0.19, 1, 0.22, 1), top 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%; }
    nav.second-level .second-level-content.child-count-2, nav.second-level .second-level-content.child-count-3, .nav.second-level .second-level-content.child-count-2, .nav.second-level .second-level-content.child-count-3 {
      justify-content: center; }
    @media (min-width: 763px) {
      nav.second-level .second-level-content, .nav.second-level .second-level-content {
        align-items: center;
        justify-content: center; } }
  nav.second-level .second-level-rectangle-border, .nav.second-level .second-level-rectangle-border {
    position: absolute;
    right: 0;
    top: 0;
    pointer-events: none;
    width: 34px;
    height: 100%;
    background-image: linear-gradient(to left, var(--color-invert) 50%, rgba(255, 255, 255, 0)); }
  @media (min-width: 763px) {
    nav.second-level, .nav.second-level {
      border-top: none;
      align-items: center;
      justify-content: center; } }
  nav.second-level ul, .nav.second-level ul {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
    padding-top: 20px;
    padding-bottom: 18px;
    padding-left: 8px;
    padding-right: 8px; }
  nav.second-level li, .nav.second-level li {
    list-style: none;
    margin: 0 12px;
    padding: 0; }
    nav.second-level li a, .nav.second-level li a {
      line-height: 1;
      font-size: 17px;
      white-space: nowrap;
      color: var(--color-black); }
      @media (min-width: 763px) {
        nav.second-level li a, .nav.second-level li a {
          font-size: 18px; } }
  nav.second-level .current_page_item, .nav.second-level .current_page_item {
    /*@include max-screen($screen-sm)
	{
	  order: -1;
	}*/ }
    nav.second-level .current_page_item > a, .nav.second-level .current_page_item > a {
      cursor: default;
      pointer-events: none; }

.back-nav {
  position: relative;
  top: -15px;
  padding: 10px 0;
  margin-bottom: var(--spacing-half);
  border-bottom: solid 1px var(--color-lightest-grey); }
  .back-nav button .button-icon {
    font-size: 37px; }

.theme-magazine .copy p, .theme-magazine .copy em, .theme-magazine .copy i, .theme-magazine .copy a, .theme-magazine .copy li, .theme-magazine .copy small, .theme-magazine .copy span, body[class*="magazine-"] .copy p, body[class*="magazine-"] .copy em, body[class*="magazine-"] .copy i, body[class*="magazine-"] .copy a, body[class*="magazine-"] .copy li, body[class*="magazine-"] .copy small, body[class*="magazine-"] .copy span {
  font-family: "JoannaNova", Georgia, serif;
  font-weight: 300;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 22px;
  line-height: 1.73; }
  @media (max-width: 762px) {
    .theme-magazine .copy p, .theme-magazine .copy em, .theme-magazine .copy i, .theme-magazine .copy a, .theme-magazine .copy li, .theme-magazine .copy small, .theme-magazine .copy span, body[class*="magazine-"] .copy p, body[class*="magazine-"] .copy em, body[class*="magazine-"] .copy i, body[class*="magazine-"] .copy a, body[class*="magazine-"] .copy li, body[class*="magazine-"] .copy small, body[class*="magazine-"] .copy span {
      font-size: 18px;
      line-height: 1.78; } }

.theme-magazine .copy em, body[class*="magazine-"] .copy em {
  font-style: italic; }

.theme-magazine .copy strong, body[class*="magazine-"] .copy strong {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 700; }

.theme-magazine .copy .intro, body[class*="magazine-"] .copy .intro {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 30px;
  line-height: 1.43; }
  @media (max-width: 762px) {
    .theme-magazine .copy .intro, body[class*="magazine-"] .copy .intro {
      font-size: 22px;
      line-height: 1.45; } }
  @media (max-width: 1022px) {
    .theme-magazine .copy .intro, body[class*="magazine-"] .copy .intro {
      text-align: center; } }

.theme-magazine .Zitat,
.theme-magazine .Copyright, body[class*="magazine-"] .Zitat,
body[class*="magazine-"] .Copyright {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400; }

.theme-magazine .teaser .teaser-copy, body[class*="magazine-"] .teaser .teaser-copy {
  font-family: "JoannaNova", Georgia, serif;
  font-weight: 300;
  font-style: normal; }

*:focus {
  outline: none !important; }
  *:focus + label {
    outline: none !important; }

.tabbing *:focus {
  /**
	 * SGE RED!!!
	 */
  outline: 3px solid #E1000F !important; }
  .tabbing *:focus + label {
    outline: 3px solid #E1000F !important; }
  .tabbing *:focus .tabbed-border {
    border-color: #E1000F !important; }

body .theme-dialog .copy p, body .theme-dialog .copy em, body .theme-dialog .copy i, body .theme-dialog .copy a, body .theme-dialog .copy li, body .theme-dialog .copy small, body .theme-dialog .copy span {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.33; }

body .theme-dialog .copy strong {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 700; }

body .theme-dialog .copy .intro {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  font-weight: 900 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 20px;
  line-height: 1.73; }
  @media (max-width: 762px) {
    body .theme-dialog .copy .intro {
      font-size: 18px;
      line-height: 1.78; } }
  @media (max-width: 1022px) {
    body .theme-dialog .copy .intro {
      text-align: center; } }

form, form#commentform {
  text-align: left;
  display: block; }
  form .acf-form-fields > div,
  form fieldset, form#commentform .acf-form-fields > div,
  form#commentform fieldset {
    border: none;
    margin-bottom: var(--spacing-sixth); }
    @media (max-width: 1022px) {
      form .acf-form-fields > div,
      form fieldset, form#commentform .acf-form-fields > div,
      form#commentform fieldset {
        margin-bottom: var(--spacing-minimal); } }
    form .acf-form-fields > div legend,
    form fieldset legend, form#commentform .acf-form-fields > div legend,
    form#commentform fieldset legend {
      font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
      font-weight: 400;
      font-size: 15px;
      line-height: 1.33; }
      @media (max-width: 762px) {
        form .acf-form-fields > div legend,
        form fieldset legend, form#commentform .acf-form-fields > div legend,
        form#commentform fieldset legend {
          font-size: 12px;
          line-height: 1.5; } }
  form .inputgroup, form#commentform .inputgroup {
    margin: var(--spacing-sixth) 0 var(--spacing-minimal);
    padding: 23px 0 10px;
    border-top: solid 1px #cccccc;
    border-bottom: solid 1px #cccccc; }
    @media (max-width: 1022px) {
      form .inputgroup, form#commentform .inputgroup {
        padding: 16px 0 8px; } }
  form label a,
  form label, form#commentform label a,
  form#commentform label {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.33; }
    @media (max-width: 762px) {
      form label a,
      form label, form#commentform label a,
      form#commentform label {
        font-size: 12px;
        line-height: 1.5; } }
  form .af-label label,
  form .af-tglc-req,
  form .af-tglc-req p,
  form .acf-error-message p, form#commentform .af-label label,
  form#commentform .af-tglc-req,
  form#commentform .af-tglc-req p,
  form#commentform .acf-error-message p {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.33;
    margin: 0;
    padding-left: 1.2em;
    padding-bottom: .6em;
    padding-top: .6em;
    line-height: .8;
    display: block; }
    @media (max-width: 762px) {
      form .af-label label,
      form .af-tglc-req,
      form .af-tglc-req p,
      form .acf-error-message p, form#commentform .af-label label,
      form#commentform .af-tglc-req,
      form#commentform .af-tglc-req p,
      form#commentform .acf-error-message p {
        font-size: 12px;
        line-height: 1.5; } }
  form .af-tglc-req, form#commentform .af-tglc-req {
    color: rgba(0, 0, 0, 0.8); }
  form select,
  form textarea,
  form input[type="text"],
  form input[type="number"],
  form input[type="email"],
  form input[type="url"],
  form input[type="tel"], form#commentform select,
  form#commentform textarea,
  form#commentform input[type="text"],
  form#commentform input[type="number"],
  form#commentform input[type="email"],
  form#commentform input[type="url"],
  form#commentform input[type="tel"] {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
    background-image: linear-gradient(transparent, transparent);
    border-radius: 0;
    background-color: transparent;
    border: solid 1px rgba(125, 125, 125, 0.5);
    padding: .866em;
    width: 100%; }
    @media (max-width: 762px) {
      form select,
      form textarea,
      form input[type="text"],
      form input[type="number"],
      form input[type="email"],
      form input[type="url"],
      form input[type="tel"], form#commentform select,
      form#commentform textarea,
      form#commentform input[type="text"],
      form#commentform input[type="number"],
      form#commentform input[type="email"],
      form#commentform input[type="url"],
      form#commentform input[type="tel"] {
        font-size: 18px; } }
    form select::placeholder,
    form textarea::placeholder,
    form input[type="text"]::placeholder,
    form input[type="number"]::placeholder,
    form input[type="email"]::placeholder,
    form input[type="url"]::placeholder,
    form input[type="tel"]::placeholder, form#commentform select::placeholder,
    form#commentform textarea::placeholder,
    form#commentform input[type="text"]::placeholder,
    form#commentform input[type="number"]::placeholder,
    form#commentform input[type="email"]::placeholder,
    form#commentform input[type="url"]::placeholder,
    form#commentform input[type="tel"]::placeholder {
      color: rgba(125, 125, 125, 0.5); }
  form select, form#commentform select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    cursor: pointer;
    background-image: url("/assets/form/dropdown.svg");
    background-repeat: no-repeat;
    background-position: right 1.2em center;
    line-height: 1.2; }

form .acf-error label {
  color: #a9000c; }

form .acf-error select,
form .acf-error input {
  border-color: #a9000c;
  color: #a9000c; }

form .acf-error .af-tglc-req {
  display: none; }

form .acf-error textarea::placeholder,
form .acf-error input[type="text"]::placeholder,
form .acf-error input[type="number"]::placeholder,
form .acf-error input[type="email"]::placeholder,
form .acf-error input[type="tel"]::placeholder {
  /* Firefox, Chrome, Opera */
  color: #a9000c; }

form .acf-error textarea::placeholder,
form .acf-error input[type="text"]::placeholder,
form .acf-error input[type="number"]::placeholder,
form .acf-error input[type="email"]::placeholder,
form .acf-error input[type="tel"]::placeholder {
  /* Firefox, Chrome, Opera */
  color: #a9000c; }

form .acf-error textarea:-ms-input-placeholder,
form .acf-error input[type="text"]:-ms-input-placeholder,
form .acf-error input[type="number"]:-ms-input-placeholder,
form .acf-error input[type="email"]:-ms-input-placeholder,
form .acf-error input[type="tel"]:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #a9000c; }

form .acf-error textarea::-ms-input-placeholder,
form .acf-error input[type="text"]::-ms-input-placeholder,
form .acf-error input[type="number"]::-ms-input-placeholder,
form .acf-error input[type="email"]::-ms-input-placeholder,
form .acf-error input[type="tel"]::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #a9000c; }

form .acf-error textarea,
form .acf-error input[type="text"],
form .acf-error input[type="number"],
form .acf-error input[type="email"],
form .acf-error input[type="tel"] {
  background-image: url("/assets/form/error.svg");
  background-repeat: no-repeat;
  background-position: right 1.2em center; }

form .acf-error-message {
  color: #a9000c; }

/* fixes safari placeholder not centerd bug*/
input::-webkit-input-placeholder {
  line-height: normal !important; }

form div.af-field-type-radio ul,
form div.af-field-type-true-false ul,
form div.af-field-type-checkbox ul {
  margin: 0;
  padding: 0; }
  form div.af-field-type-radio ul.checkboxes-inline li,
  form div.af-field-type-true-false ul.checkboxes-inline li,
  form div.af-field-type-checkbox ul.checkboxes-inline li {
    display: block; }
    @media (min-width: 763px) {
      form div.af-field-type-radio ul.checkboxes-inline li,
      form div.af-field-type-true-false ul.checkboxes-inline li,
      form div.af-field-type-checkbox ul.checkboxes-inline li {
        display: inline-block;
        width: auto;
        padding-right: 2.5em; } }

form div.af-field-type-radio ul li,
form div.af-field-type-true-false ul li,
form div.af-field-type-checkbox ul li {
  list-style: none;
  margin-left: 0;
  clear: both; }
  form div.af-field-type-radio ul li input,
  form div.af-field-type-true-false ul li input,
  form div.af-field-type-checkbox ul li input {
    position: absolute;
    z-index: -1;
    opacity: 0; }

@media (max-width: 762px) {
  form div.af-field-type-radio li + li,
  form div.af-field-type-true-false li + li,
  form div.af-field-type-checkbox li + li {
    padding-top: .2em; } }

form div.af-field-type-radio.af-field-type-radio li label,
form div.af-field-type-true-false.af-field-type-radio li label,
form div.af-field-type-checkbox.af-field-type-radio li label {
  padding-left: 2.5em; }

form div.af-field-type-radio .acf-true-false label,
form div.af-field-type-radio li label,
form div.af-field-type-true-false .acf-true-false label,
form div.af-field-type-true-false li label,
form div.af-field-type-checkbox .acf-true-false label,
form div.af-field-type-checkbox li label {
  display: block;
  position: relative;
  padding-left: 2em;
  padding-top: 0;
  padding-bottom: .5em;
  line-height: 1.5;
  cursor: pointer; }
  @media (max-width: 762px) {
    form div.af-field-type-radio .acf-true-false label,
    form div.af-field-type-radio li label,
    form div.af-field-type-true-false .acf-true-false label,
    form div.af-field-type-true-false li label,
    form div.af-field-type-checkbox .acf-true-false label,
    form div.af-field-type-checkbox li label {
      padding-bottom: 0; } }
  form div.af-field-type-radio .acf-true-false label.disabled,
  form div.af-field-type-radio li label.disabled,
  form div.af-field-type-true-false .acf-true-false label.disabled,
  form div.af-field-type-true-false li label.disabled,
  form div.af-field-type-checkbox .acf-true-false label.disabled,
  form div.af-field-type-checkbox li label.disabled {
    opacity: .5;
    font-size: 17px;
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 700; }
  form div.af-field-type-radio .acf-true-false label.highlighted,
  form div.af-field-type-radio li label.highlighted,
  form div.af-field-type-true-false .acf-true-false label.highlighted,
  form div.af-field-type-true-false li label.highlighted,
  form div.af-field-type-checkbox .acf-true-false label.highlighted,
  form div.af-field-type-checkbox li label.highlighted {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 700;
    font-size: 17px; }
  form div.af-field-type-radio .acf-true-false label:before,
  form div.af-field-type-radio li label:before,
  form div.af-field-type-true-false .acf-true-false label:before,
  form div.af-field-type-true-false li label:before,
  form div.af-field-type-checkbox .acf-true-false label:before,
  form div.af-field-type-checkbox li label:before {
    content: '';
    position: absolute;
    display: block;
    height: .8em;
    width: .8em;
    left: 0;
    font-size: 1.5em;
    border-width: 2px;
    border-style: solid;
    border-radius: 2px;
    margin-right: 1em;
    background-position: center;
    background-repeat: no-repeat;
    transition: background 0.2s; }
  form div.af-field-type-radio .acf-true-false label.selected:before,
  form div.af-field-type-radio li label.selected:before,
  form div.af-field-type-true-false .acf-true-false label.selected:before,
  form div.af-field-type-true-false li label.selected:before,
  form div.af-field-type-checkbox .acf-true-false label.selected:before,
  form div.af-field-type-checkbox li label.selected:before {
    background-image: url("/assets/form/check.svg");
    background-color: black;
    background-repeat: no-repeat;
    background-position: center center; }
  form div.af-field-type-radio .acf-true-false label:hover:before,
  form div.af-field-type-radio li label:hover:before,
  form div.af-field-type-true-false .acf-true-false label:hover:before,
  form div.af-field-type-true-false li label:hover:before,
  form div.af-field-type-checkbox .acf-true-false label:hover:before,
  form div.af-field-type-checkbox li label:hover:before {
    opacity: .7; }

form div.af-field-type-radio input[type="checkbox"]:checked + label:before,
form div.af-field-type-true-false input[type="checkbox"]:checked + label:before,
form div.af-field-type-checkbox input[type="checkbox"]:checked + label:before {
  background-image: url("/assets/form/check.svg");
  background-color: black;
  background-repeat: no-repeat;
  background-position: center center; }

form div.af-field-type-radio input[type="checkbox"]:focus + label,
form div.af-field-type-true-false input[type="checkbox"]:focus + label,
form div.af-field-type-checkbox input[type="checkbox"]:focus + label {
  outline: -webkit-focus-ring-color auto 5px; }

form div.af-field-type-radio.af-field-type-radio li label:before,
form div.af-field-type-true-false.af-field-type-radio li label:before,
form div.af-field-type-checkbox.af-field-type-radio li label:before {
  height: 21px;
  width: 21px;
  border-radius: 25px; }

form div.af-field-type-radio.af-field-type-radio li label.selected:before,
form div.af-field-type-true-false.af-field-type-radio li label.selected:before,
form div.af-field-type-checkbox.af-field-type-radio li label.selected:before {
  background-color: white;
  background-image: url("/assets/form/radio.svg");
  background-position: 4px 3.9px; }

form div.af-field-type-radio.af-field-type-radio li input[type="radio"]:checked + label:before,
form div.af-field-type-true-false.af-field-type-radio li input[type="radio"]:checked + label:before,
form div.af-field-type-checkbox.af-field-type-radio li input[type="radio"]:checked + label:before {
  background-color: white;
  background-image: url("/assets/form/radio.svg");
  background-position: 4px 3.9px; }

form div.af-field-type-radio .af-tglc-req,
form div.af-field-type-radio .acf-error-message p,
form div.af-field-type-true-false .af-tglc-req,
form div.af-field-type-true-false .acf-error-message p,
form div.af-field-type-checkbox .af-tglc-req,
form div.af-field-type-checkbox .acf-error-message p {
  padding-left: 2.7em; }

.calendar-filter-checkbox {
  display: block;
  position: relative; }
  .calendar-filter-checkbox input {
    position: absolute;
    z-index: -1;
    opacity: 0; }
  .calendar-filter-checkbox label {
    cursor: pointer;
    user-select: none;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: .5em;
    line-height: 1; }
    .calendar-filter-checkbox label .calendar-filter-checkbox-counter {
      position: absolute;
      right: 2em;
      top: 0.75em;
      font-size: .75em;
      line-height: 1;
      color: var(--color-light-grey); }
      @media (min-width: 763px) {
        .calendar-filter-checkbox label .calendar-filter-checkbox-counter {
          top: 0.5em; } }
    .calendar-filter-checkbox label:before {
      content: '';
      position: absolute;
      display: block;
      height: .6em;
      width: .6em;
      right: 0;
      top: .4em;
      font-size: 1em;
      line-height: 1;
      border-width: 2px;
      border-style: solid;
      border-radius: 2px;
      background-position: center;
      background-repeat: no-repeat;
      transition: background 0.2s; }
    @media (min-width: 763px) {
      .calendar-filter-checkbox label {
        top: 0.1em; } }
    .calendar-filter-checkbox label.selected:before {
      background-image: url("/assets/form/check.svg");
      background-color: black;
      background-repeat: no-repeat;
      background-position: center center;
      background-size: contain; }
    .calendar-filter-checkbox label:hover:before {
      opacity: .7; }
  .calendar-filter-checkbox input[type="checkbox"]:checked + label:before {
    background-image: url("/assets/form/check.svg");
    background-color: black;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain; }

.ais-Panel-body {
  position: relative; }

.ais-Panel-body:after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  width: 28px;
  height: 100%;
  background-image: linear-gradient(to left, var(--color-invert) 50%, rgba(255, 255, 255, 0)); }

.toggle-selects {
  display: flex;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 8px;
  padding-bottom: 5px;
  position: relative; }
  .toggle-selects div, .toggle-selects ul {
    display: flex; }
  .toggle-selects li {
    display: block; }
  .toggle-selects .toggle-selects-label {
    display: none;
    /*only accessability*/ }
  .toggle-selects .toggle-select {
    display: block;
    white-space: nowrap;
    background-color: var(--color-lightest-grey);
    border: 1px solid var(--color-lightest-grey);
    padding: .7em 1em .8em;
    margin: .3em;
    border-radius: 5px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    text-transform: none !important;
    transition: border-color 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.11; }
    .toggle-selects .toggle-select.active {
      color: var(--color-invert);
      background-color: var(--color-black); }
    .toggle-selects .toggle-select:hover {
      border-color: black; }

/* Toggle UI */
.toggle-wrapper {
  display: flex;
  align-items: center; }

.toggle-box {
  display: inline-block;
  position: relative;
  cursor: pointer;
  font-size: 13px;
  height: 2em;
  width: 3.5em;
  border-radius: 9999px; }
  @media (max-width: 762px) {
    .toggle-box {
      font-size: 9px; } }

.toggle-background {
  display: inline-block;
  border-radius: 9999px;
  height: 100%;
  width: 100%;
  border: 1px solid #9b9b9b;
  transition: background-color .2s ease;
  background-color: white; }
  .toggle-background.active {
    background-color: black;
    border-color: black; }

.toggle-label {
  padding-left: .7em;
  cursor: pointer; }

.toggle-indicator {
  position: absolute;
  top: .25em;
  left: .25em;
  height: 1.5em;
  width: 1.5em;
  border: 1px solid #9b9b9b;
  background-color: #9b9b9b;
  border-radius: 9999px;
  transition: transform .2s ease;
  transform: translateX(0); }
  .toggle-indicator.active {
    transform: translateX(1.6em);
    border-color: black;
    background-color: white; }

.snackbar {
  position: fixed;
  top: 200px;
  right: 20px;
  z-index: 99; }
  @media (max-width: 764px) {
    .snackbar {
      width: calc(100% - 40px);
      top: auto;
      bottom: 5vh; } }
  .snackbar .snacks {
    z-index: 99;
    min-width: 200px;
    max-width: 500px;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.3);
    background-color: #ffffff;
    margin-bottom: .5em;
    cursor: pointer;
    animation: slide-up 0.4s ease;
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 400;
    width: 100%;
    position: relative;
    padding-right: 60px; }
    @media (max-width: 764px) {
      .snackbar .snacks {
        width: 100%;
        max-width: 100%; } }
    .snackbar .snacks > span.icon-close {
      position: absolute;
      right: 10px;
      font-size: 36px;
      line-height: .7;
      top: 50%;
      transform: translate(0, -50%); }
    .snackbar .snacks.snack-black {
      padding: 40px;
      padding-right: 40px;
      filter: invert(1);
      box-shadow: 0 2px 8px 0 rgba(255, 255, 255, 0.3); }
      .snackbar .snacks.snack-black > span.icon-close {
        top: .8em; }

@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(20px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

.loadingwindow {
  width: 100%;
  position: relative;
  display: inline-block; }
  .loadingwindow:after {
    content: '';
    display: block;
    background-color: black;
    opacity: .6;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .loadingwindow .spinner {
    display: block; }

.spinner {
  display: none;
  width: 80px;
  height: 80px;
  background-image: url("/assets/logos/HumboldtForum_Signet_Black_sRGB.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
  z-index: 99;
  -webkit-animation: sk-rotateplane 1.6s infinite cubic-bezier(0.41, 0.26, 0.2, 0.62);
  animation: sk-rotateplane 1.6s infinite cubic-bezier(0.41, 0.26, 0.2, 0.62); }

@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px); }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg); }
  100% {
    -webkit-transform: perspective(120px) rotateY(360deg); } }

@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateY(0deg); }
  50% {
    transform: perspective(120px) rotateX(-180.1deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg); }
  100% {
    transform: perspective(120px) rotateX(-359.9deg);
    -webkit-transform: perspective(120px) rotateX(-359.9deg); } }

.jumpingdots {
  background-image: url(/assets/icons/buttonloading.svg);
  background-repeat: no-repeat;
  background-position: center center;
  color: transparent !important;
  background-size: contain;
  filter: invert(1);
  min-height: 19px; }

body[class*="dark"] .jumpingdots {
  filter: invert(0); }

form button[type="reset"].ais-SearchBox-reset,
form button[type="submit"].ais-SearchBox-submit {
  background-color: transparent;
  color: var(--color-black);
  border: none;
  padding: 0;
  position: absolute;
  top: calc(50% - .5em); }

form button[type="reset"].ais-SearchBox-reset {
  right: 0; }
  form button[type="reset"].ais-SearchBox-reset .icon-close {
    display: block;
    margin: 6px 10px 10px 10px;
    background-color: #c4c4c4;
    text-align: center;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    color: white;
    font-size: 15px; }
    @media (min-width: 763px) {
      form button[type="reset"].ais-SearchBox-reset .icon-close {
        width: 19px;
        height: 19px;
        font-size: 19px; } }

form button[type="submit"].ais-SearchBox-submit {
  left: -.15em;
  font-size: 42px; }
  @media (max-width: 762px) {
    form button[type="submit"].ais-SearchBox-submit {
      font-size: 30px; } }

.ais-SortBy-select {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  border: none;
  width: auto;
  background-size: 7px;
  padding-right: 20px;
  padding-left: 0;
  font-size: 16px;
  text-align: center;
  background-color: transparent;
  background-image: url(/assets/form/dropdown-black.svg);
  background-position: right .6em center;
  background-repeat: no-repeat;
  position: relative;
  appearance: none;
  border-radius: 0;
  cursor: pointer;
  line-height: 1.2; }
  @media (max-width: 762px) {
    .ais-SortBy-select {
      font-size: 18px; } }

@media (max-width: 768px) {
  .ais-SortBy-select {
    direction: rtl; } }

.ais-SearchBox-loadingIndicator {
  background-color: transparent;
  color: var(--color-black);
  border: none;
  padding: 0;
  position: absolute;
  font-size: 42px;
  top: 0.23em;
  width: 2ch;
  left: 0.1em;
  height: 1em;
  font-size: 42px; }
  .ais-SearchBox-loadingIndicator .jumpingdots {
    height: 1em; }

form input[type="search"], form input.ais-SearchBox-input {
  width: 100%;
  background-color: transparent;
  border-radius: 0 !important;
  color: var(--color-black);
  border: none;
  border-bottom: 2px solid var(--color-black);
  padding: .5em 1.8em;
  box-sizing: border-box;
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  font-size: 30px;
  line-height: 1.13;
  text-transform: uppercase;
  text-transform: initial;
  z-index: 10; }
  @media (max-width: 762px) {
    form input[type="search"], form input.ais-SearchBox-input {
      font-size: 26px; } }

.searchbox-wrapper {
  background-color: var(--color-even-more-light-grey);
  padding: var(--spacing-two-thirds) 0; }
  @media (max-width: 762px) {
    .searchbox-wrapper {
      padding: var(--spacing-half) 0; } }

.query_recommendation {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.11;
  display: inline-flex;
  border: 1px solid #d5d5d5;
  padding: .5em .9em .5em .5em;
  margin: .3em .3em .3em 0;
  border-radius: 3px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  align-items: center;
  transition: border-color 0.3s cubic-bezier(0.19, 1, 0.22, 1); }
  .query_recommendation .icon {
    font-size: 1.3em;
    color: #d5d5d5;
    transition: color 0.3s cubic-bezier(0.19, 1, 0.22, 1); }
  @media screen and (prefers-reduced-motion: no-preference) {
    .query_recommendation:hover {
      border-color: black; }
      .query_recommendation:hover .icon {
        color: black; } }

.search-result-teaser {
  color: var(--color-black);
  text-decoration: none;
  display: block; }
  .search-result-teaser.teaser-event {
    margin-top: 1.4em; }
    .search-result-teaser.teaser-event .teaser {
      margin-bottom: 0; }
  .search-result-teaser .search-result-teaser-textbox {
    margin: 1.4em 0;
    padding-right: var(--spacing-half); }
  .search-result-teaser .search-result-teaser-image .height-container {
    margin: 1.4em 0;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    -webkit-transition: -webkit-clip-path 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: -webkit-clip-path 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: clip-path 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: clip-path 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-clip-path 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  @media screen and (prefers-reduced-motion: no-preference) {
    .search-result-teaser:hover .search-result-teaser-image .height-container {
      -webkit-clip-path: polygon(2% 2%, 98% 2%, 98% 98%, 2% 98%);
      clip-path: polygon(2% 2%, 98% 2%, 98% 98%, 2% 98%); } }
  .search-result-teaser hr {
    margin-top: var(--spacing-minimal); }

.ho-agolia-tax-teaser {
  max-width: 100vw;
  overflow: hidden;
  height: 166px;
  width: 100%;
  overflow: hidden;
  display: block;
  text-align: center;
  text-decoration: none;
  color: var(--color-invert);
  position: relative;
  border-radius: 5px; }
  @media (max-width: 762px) {
    .ho-agolia-tax-teaser {
      height: 104px; } }
  .ho-agolia-tax-teaser .ho-agolia-tax-teaser-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
    .ho-agolia-tax-teaser .ho-agolia-tax-teaser-image .height-container {
      padding-bottom: 166px !important; }
      .ho-agolia-tax-teaser .ho-agolia-tax-teaser-image .height-container:after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: black;
        opacity: .4;
        z-index: 1; }
    .ho-agolia-tax-teaser .ho-agolia-tax-teaser-image .image {
      background-position: 50% 33% !important; }
  .ho-agolia-tax-teaser .ho-agolia-tax-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-direction: column; }
    .ho-agolia-tax-teaser .ho-agolia-tax-text .ho-agolia-tax-text-inside h5 {
      text-decoration: none;
      background-image: linear-gradient(currentColor, currentColor);
      background-position: left bottom;
      background-repeat: no-repeat;
      transition: background-size 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
      background-size: 0 2px;
      display: inline;
      clear: both; }
    @media screen and (prefers-reduced-motion: no-preference) {
      .ho-agolia-tax-teaser .ho-agolia-tax-text:hover .ho-agolia-tax-text-inside h5 {
        text-decoration: none;
        transition: background-size 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
        transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
        background-size: 100% 2px; } }
  .ho-agolia-tax-teaser:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: black;
    opacity: .4;
    z-index: 0; }

/* UNTERLINING FOR RESULT TEASERS */
.search-result-teaser .teaser-event-standard strong,
.search-result-teaser .search-result-teaser-textbox strong {
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  background-size: 0 2px;
  display: inline; }

.search-result-teaser .teaser-event-standard .marketing-text,
.search-result-teaser .teaser-event-standard .Infos,
.search-result-teaser .search-result-teaser-textbox .marketing-text,
.search-result-teaser .search-result-teaser-textbox .Infos {
  margin-top: var(--spacing-atom); }

.search-result-teaser .teaser-event-standard .sideling-left strong,
.search-result-teaser .search-result-teaser-textbox .sideling-left strong {
  background-size: 0 2px !important; }

@media screen and (prefers-reduced-motion: no-preference) {
  .search-result-teaser:hover .teaser-event-standard strong,
  .search-result-teaser:hover .search-result-teaser-textbox strong {
    text-decoration: none;
    transition: background-size 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-size: 100% 2px; } }

@media (max-width: 762px) {
  .infinitive-x-scroll {
    display: flex;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 8px;
    padding-bottom: 5px; }
    .infinitive-x-scroll * {
      align-self: center;
      white-space: nowrap; }
    .infinitive-x-scroll:after {
      display: block;
      content: '';
      position: absolute;
      right: 0;
      pointer-events: none;
      width: 18px;
      height: 100%;
      background-image: linear-gradient(to left, var(--color-invert) 50%, rgba(255, 255, 255, 0)); } }

nav.pagination {
  width: 100%;
  text-align: center; }
  nav.pagination ul {
    list-style: none; }
    nav.pagination ul li {
      display: inline-block;
      font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
      font-weight: 700;
      padding: 0 .5em; }
      nav.pagination ul li a {
        text-decoration: none; }

img {
  width: 100%;
  height: auto; }

.block-copy-quote .quote-image {
  z-index: 2; }
  .block-copy-quote .quote-image .box {
    position: relative;
    z-index: 0; }
    @media (max-width: 1023px) {
      .block-copy-quote .quote-image .box {
        width: 100%;
        padding-bottom: calc(100% - 50px); }
        .block-copy-quote .quote-image .box figure {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: -50px; }
          .block-copy-quote .quote-image .box figure .height-container {
            padding-bottom: 0 !important;
            height: 100%; } }
  @media (min-width: 1023px) {
    .block-copy-quote .quote-image .box {
      top: 150px;
      height: calc(100% - 300px);
      min-height: 215px; }
    .block-copy-quote .quote-image figure {
      position: absolute;
      top: 0;
      left: 0;
      right: -57%;
      bottom: 0; }
      .block-copy-quote .quote-image figure .height-container {
        padding-bottom: 0 !important;
        height: 100%; } }

.block-copy-quote .quote-copy {
  z-index: 1;
  border: solid 2px var(--color-darkest-grey);
  display: flex; }
  .block-copy-quote .quote-copy-icon {
    font-size: 140px;
    position: relative;
    display: block; }
    @media (max-width: 1023px) {
      .block-copy-quote .quote-copy-icon {
        width: 100%;
        text-align: center;
        padding-top: 60px; }
        .block-copy-quote .quote-copy-icon.no-image {
          padding-top: 20px; } }
    @media (min-width: 1024px) {
      .block-copy-quote .quote-copy-icon {
        padding-top: 10px;
        padding-bottom: 40px; } }
  .block-copy-quote .quote-copy-headline {
    display: block;
    text-align: left;
    margin-bottom: var(--spacing-third); }
    @media (max-width: 1023px) {
      .block-copy-quote .quote-copy-headline {
        text-align: center; } }
  @media (max-width: 1023px) {
    .block-copy-quote .quote-copy-subline {
      text-align: center;
      padding-bottom: 30px; } }
  @media (min-width: 1023px) {
    .block-copy-quote .quote-copy-subline {
      padding-top: 40px;
      padding-bottom: 60px; } }

.block-copy-quote .lazy-media-info-body {
  background-color: var(--page-bg); }

.block-standard-two-images {
  position: relative; }
  @media (min-width: 763px) {
    .block-standard-two-images .first-image {
      padding: 0 12% 6% 12%; } }
  @media (max-width: 1022px) {
    .block-standard-two-images .first-image {
      padding: 0 50% var(--spacing-sixth) 0; }
    .block-standard-two-images .second-image {
      padding: 0 0 var(--spacing-sixth) 16.66%; }
    .block-standard-two-images .copy {
      margin-bottom: var(--spacing-third); } }

.block-standard-two-images.reverse_order .row,
.block-standard-two-images + .block-standard-two-images .row,
.block-standard-two-images + .block-standard-two-images + .block-standard-two-images + .block-standard-two-images .row {
  flex-direction: row-reverse; }

.block-standard-two-images + .block-standard-two-images + .block-standard-two-images .row,
.block-standard-two-images + .block-standard-two-images + .block-standard-two-images + .block-standard-two-images + .block-standard-two-images .row {
  flex-direction: row; }

section.block-standard-image-copy {
  position: relative;
  margin-bottom: 0; }
  @media (max-width: 764px) {
    section.block-standard-image-copy .lazy-max-height-exception .height-container {
      padding-bottom: 100% !important; }
      section.block-standard-image-copy .lazy-max-height-exception .height-container img {
        height: 100%;
        object-fit: cover; } }

.rev2nd + .rev2nd .row,
.rev2nd + .rev2nd + .rev2nd + .rev2nd .row,
.rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd .row,
.rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd .row,
.rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd .row,
.rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd .row {
  flex-direction: row-reverse; }

.rev2nd + .rev2nd + .rev2nd .row,
.rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd .row,
.rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd .row,
.rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd .row,
.rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd + .rev2nd .row {
  flex-direction: row; }

.persons {
  text-align: left; }
  .persons h5 {
    font-size: 30px; }
    @media (max-width: 762px) {
      .persons h5 {
        font-size: 22px; } }
  .persons .persons-container {
    border-top: 1px solid var(--color-light-grey); }
    @media (min-width: 763px) {
      .persons .persons-container {
        display: flex;
        flex-flow: wrap; }
        .persons .persons-container .person {
          flex: 0 0 50%; } }

.accordion .persons-container {
  border-top: none !important; }

.person {
  text-align: left;
  padding: 1.7em 1.7em 1.7em 0;
  letter-spacing: 0.01px; }
  @media (max-width: 762px) {
    .person {
      padding: 1.2em 1.2em 1.2em 0; } }
  .person a {
    color: var(--color-black); }
  .person img {
    border-radius: 50%;
    width: 83px;
    height: 83px;
    object-fit: cover;
    display: block;
    margin-bottom: 0.8em; }
  .person h6 {
    margin-bottom: 0; }
    @media (max-width: 762px) {
      .person h6 {
        font-size: 18px; } }
  .person p {
    font-size: 17px;
    line-height: 1.41;
    margin: 0.5em 0; }
    @media (max-width: 762px) {
      .person p {
        font-size: 15px; } }

.tax-magazine-author .person img {
  width: 150px;
  height: 150px; }

.block-accordion-item {
  position: relative;
  border-bottom: solid 1px var(--color-light-grey); }
  .block-accordion-item:first-of-type {
    border-top: solid 1px var(--color-light-grey); }
  .block-accordion-item-head .button-icon {
    font-size: 30px;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transform-origin: center center;
    transform: rotate(0deg); }
  .block-accordion-item-head.button-active .button-icon {
    transform: rotate(45deg); }
  .block-accordion-item-content {
    height: 0;
    overflow: hidden;
    display: none; }
    .block-accordion-item-content .lazy-media-inline {
      padding-top: var(--spacing-third);
      padding-bottom: var(--spacing-sixth); }
    .block-accordion-item-content > .wrapper {
      padding-top: 20px;
      padding-bottom: 20px;
      display: block; }
  .block-accordion-item.vue-initialize[aria-expanded="true"] .block-accordion-item-head .button-active {
    transform: rotate(45deg); }
  .block-accordion-item.vue-initialize[aria-expanded="true"] .block-accordion-item-content {
    display: block;
    height: auto;
    overflow: visible; }

.teaser {
  display: block;
  padding-left: calc(var(--gutter-width) * .5);
  padding-right: calc(var(--gutter-width) * .5);
  text-decoration: none;
  color: var(--color-black); }
  .teaser .teaser-overline {
    line-height: 20px;
    margin-bottom: 8px !important; }
    @media (min-width: 764px) {
      .teaser .teaser-overline {
        line-height: 30px; } }
    .teaser .teaser-overline:empty {
      display: none; }
  .teaser .teaser-header {
    margin: 0 !important;
    margin-bottom: 14px !important; }
    .teaser .teaser-header:empty {
      display: none; }
  .teaser .teaser-image, .teaser .teaser-image-group {
    margin-bottom: var(--spacing-sixth); }
  .teaser .teaser-copy {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    margin: 0 auto;
    margin-bottom: 10px !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; }
    @media (max-width: 762px) {
      .teaser .teaser-copy {
        font-size: 16px;
        line-height: 1.38; } }
    @media (min-width: 764px) {
      .teaser .teaser-copy {
        -webkit-line-clamp: 3; } }
    .teaser .teaser-copy:empty {
      display: none; }
  .teaser .teaser-subline {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 400;
    color: var(--color-medium-grey);
    line-height: 20px;
    letter-spacing: 0;
    margin-bottom: 0 !important; }
    @media (min-width: 764px) {
      .teaser .teaser-subline {
        line-height: 30px; } }
    .teaser .teaser-subline:empty {
      display: none; }
  .teaser-image, .teaser-image-group {
    width: 100%; }
    .teaser-image-bg, .teaser-image-group-bg {
      width: 100%;
      height: 100%; }
    .teaser-image .lazy-media-inline .height-container, .teaser-image-group .lazy-media-inline .height-container {
      padding-bottom: 100% !important; }
  .teaser.do-not-use {
    margin-left: 20px;
    background: rgba(0, 0, 0, 0.05); }
    .teaser.do-not-use .teaser-image-bg {
      padding-bottom: 100%;
      background: rgba(0, 0, 0, 0.2); }

.teaser-wrapper {
  margin-bottom: var(--spacing-half); }
  .teaser-wrapper.teaser-wrapper-tight {
    margin-bottom: var(--gutter-width); }

.teaser-lane-wrapper {
  position: relative;
  max-width: 100vw;
  overflow: hidden; }

.teaser-lane {
  display: flex;
  overflow-x: scroll;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  flex-wrap: nowrap;
  position: relative;
  margin: 0 auto;
  scroll-padding-left: var(--grid-side-margin);
  padding-left: calc(var(--grid-side-margin) - var(--gutter-width) * .5);
  padding-right: calc(var(--grid-side-margin) - var(--gutter-width) * .5);
  margin-left: 0;
  list-style: none; }
  .teaser-lane::-webkit-scrollbar-track {
    -webkit-box-shadow: none !important;
    background-color: transparent; }
  .teaser-lane::-webkit-scrollbar {
    width: 0 !important;
    background-color: transparent; }
  .teaser-lane::-webkit-scrollbar-thumb {
    background-color: transparent; }
  @media (min-width: 1440px) {
    .teaser-lane {
      scroll-padding-left: calc(50vw - 654px + var(--grid-side-margin));
      padding-left: calc(50vw - 720px + var(--grid-side-margin)  - var(--gutter-width)*.75);
      padding-right: calc(50vw - 720px + var(--grid-side-margin) - var(--gutter-width)*.75); } }
  .teaser-lane .teaser-lane-slide {
    flex: 1 0 100%;
    scroll-snap-align: start;
    margin-left: 0;
    position: relative; }
    .teaser-lane .teaser-lane-slide .teaser {
      height: 100%; }
    .teaser-lane .teaser-lane-slide:last-of-type:after {
      display: block;
      position: relative;
      left: 100%;
      top: -100%;
      border: 1px solid transparent;
      content: "";
      padding-right: 14px;
      width: var(--gutter-width); }
      @media (min-width: 1440px) {
        .teaser-lane .teaser-lane-slide:last-of-type:after {
          width: calc(50vw - 720px + var(--gutter-width)); } }
  .teaser-lane.do-not-use .teaser-lane-slide {
    background: lavender; }
    .teaser-lane.do-not-use .teaser-lane-slide:nth-of-type(even) {
      background: lime; }
    .teaser-lane.do-not-use .teaser-lane-slide .teaser-image-bg {
      padding-bottom: 100%;
      background: rgba(0, 0, 0, 0.2); }
    .teaser-lane.do-not-use .teaser-lane-slide .teaser {
      width: 33vw; }

.half-lane .teaser-lane {
  padding-left: 0;
  padding-right: 0; }

.teaser-do-not-use-wrapper {
  display: flex;
  margin-top: 40px;
  margin-bottom: 40px; }

.teaser-page {
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  padding-left: 0;
  padding-right: 0;
  height: 100%;
  overflow: hidden; }
  .teaser-page figure {
    height: 100%; }
  .teaser-page .height-container {
    padding-bottom: 133% !important;
    height: 100%; }
  .teaser-page .teaser-header {
    position: absolute;
    bottom: 10%;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    width: 88%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px !important;
    min-height: 4.77em;
    color: white;
    background-color: transparent; }
    @media (max-width: 520px) {
      .teaser-page .teaser-header {
        min-height: 2.77em; } }
    .teaser-page .teaser-header .h4, .teaser-page .teaser-header h4 {
      text-transform: none; }
    .teaser-page .teaser-header .h4 {
      margin-bottom: 0; }
    .teaser-page .teaser-header.teaser-header-bottom {
      bottom: 6%; }

@media (max-width: 520px) {
  .teaser-page .teaser-header .mobile-smaller-headline {
    font-size: 18px; } }

.teaser[class*="teaser-event"] {
  height: 100%;
  position: relative; }
  .teaser[class*="teaser-event"] h4 {
    text-transform: none; }
  .teaser[class*="teaser-event"] .subline {
    margin-bottom: var(--spacing-atom); }
  .teaser[class*="teaser-event"] .teaser-bottom {
    position: absolute;
    bottom: 0;
    width: calc(100% - var(--gutter-width)); }
    @media (min-width: 1023px) {
      .col-1 .teaser[class*="teaser-event"] .teaser-bottom {
        width: calc(100% - 15px); } }
  .col-1 .teaser[class*="teaser-event"] .teaser-event-text {
    display: flex;
    justify-content: space-around;
    flex-direction: column; }
    @media (min-width: 763px) {
      .col-1 .teaser[class*="teaser-event"] .teaser-event-text {
        position: relative; } }
  @media (min-width: 763px) {
    .col-1 .teaser[class*="teaser-event"] .teaser-image {
      margin-bottom: 5px; } }
  .teaser[class*="teaser-event"].teaser-event-standard .teaser-image {
    position: relative; }
  .teaser[class*="teaser-event"] .teaser-event-standard-text {
    margin-bottom: calc(1em + var(--spacing-minimal) + 25px); }
  .teaser[class*="teaser-event"] .teaser-image {
    position: relative; }
  .teaser[class*="teaser-event"] .teaser-image .alert {
    z-index: 2;
    position: absolute;
    right: 22px;
    bottom: calc(var(--spacing-sixth) + 22px); }
    @media (max-width: 520px) {
      .teaser[class*="teaser-event"] .teaser-image .alert {
        right: 12px;
        bottom: calc(var(--spacing-sixth) + 12px); } }
  .teaser[class*="teaser-event"] *[class*="icon-"] {
    font-size: 28px;
    vertical-align: sub;
    margin-right: 5px; }
  .teaser[class*="teaser-event"] .icon-live-fill {
    color: #e53f41; }
  .teaser[class*="teaser-event"] .teaser-image {
    padding: 0 !important;
    height: 100%; }
  .teaser[class*="teaser-event"].teaser-event-highlight .alert {
    top: 22px;
    bottom: initial; }
    @media (max-width: 520px) {
      .teaser[class*="teaser-event"].teaser-event-highlight .alert {
        top: 15px;
        right: 15px; } }
  .teaser[class*="teaser-event"].teaser-event-highlight .insignificant {
    color: inherit; }

.border-bottom {
  padding-bottom: var(--spacing-atom); }
  .border-bottom .sideling-left {
    float: left; }
  .border-bottom .sideling-right {
    float: right;
    line-height: 2; }
  .border-bottom hr {
    margin-bottom: 0;
    margin-top: var(--spacing-atom);
    border-top: 1px solid var(--color-black);
    clear: both; }

.tax-teaser-lane-slide {
  scroll-snap-align: start;
  margin-left: 0;
  position: relative;
  flex-grow: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0; }
  .tax-teaser-lane-slide .tax-teaser {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900;
    border: 2px solid var(--color-black);
    border-radius: 5px;
    padding: .25em 1.2em .15em 1.2em;
    font-size: 20px;
    text-align: center;
    white-space: nowrap;
    line-height: 2.8;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center; }
    @media (max-width: 520px) {
      .tax-teaser-lane-slide .tax-teaser {
        padding: 0 .8em 0 .8em;
        font-size: 16px; } }
    .tax-teaser-lane-slide .tax-teaser .tax-svg,
    .tax-teaser-lane-slide .tax-teaser .tax-icon {
      display: inline-block;
      vertical-align: middle;
      margin-right: .2em; }
      @media (max-width: 520px) {
        .tax-teaser-lane-slide .tax-teaser .tax-svg,
        .tax-teaser-lane-slide .tax-teaser .tax-icon {
          height: 26px;
          width: 26px; } }
    .tax-teaser-lane-slide .tax-teaser .tax-icon {
      font-size: 40px; }
      @media (max-width: 520px) {
        .tax-teaser-lane-slide .tax-teaser .tax-icon {
          font-size: 29px; } }
    .tax-teaser-lane-slide .tax-teaser .tax-svg {
      height: 29px;
      vertical-align: baseline;
      position: relative; }

.teaser-calendar .teaser {
  padding-bottom: 9px; }
  @media (max-width: 762px) {
    .teaser-calendar .teaser .alert {
      bottom: auto !important;
      top: 12px; } }

.teaser-info {
  height: 100%; }
  .teaser-info .row {
    height: 100%; }
  .teaser-info .teaser-info-box {
    border: 1px solid var(--color-light-grey);
    height: 100%;
    padding: calc(var(--spacing-sixth) * 2) var(--spacing-sixth) calc(var(--spacing-sixth) * 3);
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
  .teaser-info .teaser-info-image {
    width: 37px;
    height: 37px;
    display: block;
    float: left;
    margin: 0 15px 15px 0;
    position: relative;
    top: -6px; }
    @media (max-width: 520px) {
      .teaser-info .teaser-info-image {
        top: -8px; } }
  .teaser-info .teaser-header {
    display: inline; }
  .teaser-info .teaser-info-copy {
    clear: both;
    padding: var(--spacing-sixth) 0; }

body[class*="dark"] .teaser-inline-svg {
  filter: invert(1); }

.teaser-lane-buttons-wrapper {
  display: flex;
  align-items: center; }
  .teaser-lane-buttons-wrapper > * {
    display: block; }

.block-teaser {
  --teaser-bg: transparent;
  margin-bottom: var(--spacing-sixth); }
  .block-teaser .box {
    height: 100%; }
  .block-teaser.has-bg {
    padding: 50px 0;
    background-color: var(--teaser-bg); }
    .block-teaser.has-bg.col-1 {
      padding: 50px 0 0; }
      @media (max-width: 520px) {
        .block-teaser.has-bg.col-1 {
          padding: 30px 0 0; } }

.teaser .row-stretch {
  display: flex;
  align-content: space-between;
  height: 100%; }
  .teaser .row-stretch .teaser-image .alert {
    bottom: 22px; }

.teaser-cta-wide {
  display: block;
  position: relative;
  padding: 0; }
  .teaser-cta-wide .lazy-media-inline .height-container {
    padding-bottom: 134% !important; }
    @media (min-width: 763px) {
      .teaser-cta-wide .lazy-media-inline .height-container {
        padding-bottom: 33% !important; } }
    @media (min-width: 1023px) {
      .teaser-cta-wide .lazy-media-inline .height-container {
        padding-bottom: 25% !important; } }
  .teaser-cta-wide.teaser-cta-wide-and-high .lazy-media-inline .height-container {
    padding-bottom: 134% !important; }
    @media (min-width: 763px) {
      .teaser-cta-wide.teaser-cta-wide-and-high .lazy-media-inline .height-container {
        padding-bottom: 43% !important; } }
    @media (min-width: 1023px) {
      .teaser-cta-wide.teaser-cta-wide-and-high .lazy-media-inline .height-container {
        padding-bottom: 37% !important; } }
  .teaser-cta-wide .teaser-content {
    text-align: left;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 8.33%;
    bottom: 0;
    right: 8.33%;
    overflow: hidden;
    color: var(--color-invert);
    display: flex;
    align-items: center; }
    .teaser-cta-wide .teaser-content > div {
      width: 60%; }
    .teaser-cta-wide .teaser-content.teaser-content-right {
      text-align: right; }
      .teaser-cta-wide .teaser-content.teaser-content-right > div {
        margin-left: 40%; }
    @media (max-width: 762px) {
      .teaser-cta-wide .teaser-content {
        text-align: center !important;
        align-items: flex-end;
        bottom: 8.333%; }
        .teaser-cta-wide .teaser-content > div {
          width: 100% !important;
          margin-left: 0 !important; } }
    .teaser-cta-wide .teaser-content .teaser-subline {
      color: var(--color-invert); }
    .teaser-cta-wide .teaser-content .teaser-overline {
      margin-bottom: 0 !important; }
    .teaser-cta-wide .teaser-content button {
      background-color: var(--color-invert);
      border-color: var(--color-invert);
      color: var(--color-black);
      margin-top: 1.4em;
      font-size: 16px;
      tab-index: -1; }
    @media (max-width: 520px) {
      .teaser-cta-wide .teaser-content .h3 {
        font-size: 26px; } }

.block-CTA-huge {
  overflow: hidden; }
  .block-CTA-huge a {
    text-decoration: none;
    color: inherit; }
  .block-CTA-huge .CTA-border:before {
    content: "";
    display: block;
    border: 2px solid var(--color-black);
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%; }
  @media (max-width: 762px) {
    .block-CTA-huge .CTA-border {
      margin-bottom: 4px; } }
  @media (max-width: 762px) {
    .block-CTA-huge .CTA-image {
      margin-left: calc((var(--grid-side-margin) * -1) + (var(--gutter-width) * -1));
      margin-right: calc((var(--grid-side-margin) * -1) + (var(--gutter-width) * -1)); }
      .block-CTA-huge .CTA-image .teaser-image {
        padding-left: 0;
        padding-right: 0; }
      .block-CTA-huge .CTA-image .height-container {
        padding-bottom: 100% !important; }
    .block-CTA-huge .CTA-border-wrapper {
      position: relative;
      margin-top: -60px; }
    .block-CTA-huge .CTA-border > div {
      position: relative;
      box-sizing: content-box;
      padding-top: var(--spacing);
      padding-bottom: var(--spacing-half);
      min-height: 150px;
      text-align: left; } }
  @media (min-width: 763px) {
    .block-CTA-huge a {
      z-index: 3;
      display: block;
      position: relative;
      padding-left: 0;
      padding-right: 0; }
    .block-CTA-huge .CTA-image {
      position: absolute;
      margin: auto;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0; }
      .block-CTA-huge .CTA-image div {
        padding-left: calc(var(--gutter-width) * -.5);
        margin-bottom: 0; }
      .block-CTA-huge .CTA-image .height-container {
        padding-bottom: 50% !important; }
      .block-CTA-huge .CTA-image figure,
      .block-CTA-huge .CTA-image .height-container {
        height: 100%; }
    .block-CTA-huge.block-CTA-huge-right .CTA-image .teaser-image {
      padding-left: inherit;
      padding-right: 0 !important; }
    .block-CTA-huge .CTA-border-wrapper {
      padding-top: var(--spacing-half);
      padding-bottom: var(--spacing-half);
      box-sizing: content-box;
      padding-left: calc(8.33% + (var(--gutter-width) * .5));
      padding-right: calc(var(--gutter-width) * .5); }
    .block-CTA-huge.block-CTA-huge-right .CTA-border-wrapper {
      padding-right: calc(8.33% + (var(--gutter-width) * .5));
      padding-left: calc(var(--gutter-width) * .5); }
    .block-CTA-huge .CTA-border {
      position: relative;
      box-sizing: content-box;
      padding-top: var(--spacing-half);
      padding-bottom: var(--spacing-half);
      min-height: 317px;
      text-align: left; } }

.teaser-dossier .teaser-header {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  font-size: 24px;
  line-height: 1.17;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-bottom: var(--spacing-sixth); }
  .teaser-dossier .teaser-header.topline {
    padding-top: .9em;
    padding-bottom: .5em;
    border-top: 2px solid var(--color-black);
    display: inline-block; }

.teaser-dossier:nth-of-type(even) .teaser-image {
  padding: 20px 20px; }
  @media (min-width: 1023px) {
    .teaser-dossier:nth-of-type(even) .teaser-image {
      padding: 2vw 2vw; } }

.teaser-dossier.do-not-use {
  width: 33vw; }

.teaser-press-statement .teaser-header {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  font-size: 22px;
  line-height: 1.36;
  margin-bottom: var(--spacing-sixth);
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  line-height: 20px; }
  .teaser-press-statement .teaser-header.topline {
    padding-top: .9em;
    padding-bottom: .5em;
    border-top: 2px solid var(--color-black);
    display: inline-block; }
  @media (max-width: 762px) {
    .teaser-press-statement .teaser-header {
      font-size: 18px;
      line-height: 1.11; } }
  @media (min-width: 763px) {
    .teaser-press-statement .teaser-header {
      line-height: 30px; } }

.teaser-press-statement:nth-of-type(even) .teaser-image {
  padding: 20px 20px; }
  @media (min-width: 1023px) {
    .teaser-press-statement:nth-of-type(even) .teaser-image {
      padding: 2vw 2vw; } }

.teaser-press-statement.do-not-use {
  width: 25vw; }

.teaser-media-wallet .teaser-image-group {
  display: flex; }
  .teaser-media-wallet .teaser-image-group-left, .teaser-media-wallet .teaser-image-group-right {
    width: 100%;
    height: 100%; }
  .teaser-media-wallet .teaser-image-group-left {
    width: 100%; }
  .teaser-media-wallet .teaser-image-group-right {
    width: 50%; }
  .teaser-media-wallet .teaser-image-group-right-top, .teaser-media-wallet .teaser-image-group-right-bottom {
    height: 50%;
    width: 100%; }
  .teaser-media-wallet .teaser-image-group .teaser-image-bg,
  .teaser-media-wallet .teaser-image-group .lazy-media {
    border: 1px solid white; }

.teaser-media-wallet .teaser-header {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  font-size: 22px;
  line-height: 1.50;
  margin-bottom: var(--spacing-sixth);
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  line-height: 20px; }
  .teaser-media-wallet .teaser-header.topline {
    padding-top: .9em;
    padding-bottom: .5em;
    border-top: 2px solid var(--color-black);
    display: inline-block; }
  @media (max-width: 762px) {
    .teaser-media-wallet .teaser-header {
      font-size: 18px; } }
  @media (min-width: 763px) {
    .teaser-media-wallet .teaser-header {
      line-height: 30px; } }

.teaser-media-wallet .teaser-subline {
  text-transform: none; }

.teaser-media-wallet:nth-of-type(even) .teaser-image-group {
  padding: 20px 20px; }
  @media (min-width: 1023px) {
    .teaser-media-wallet:nth-of-type(even) .teaser-image-group {
      padding: 2vw 2vw; } }

.teaser-media-wallet.do-not-use {
  width: 33vw; }

.teaser-wrapper:nth-of-type(even) .teaser-image,
.teaser-lane-slide:nth-of-type(even) .teaser-image {
  padding: 20px 20px; }
  @media (min-width: 1023px) {
    .teaser-wrapper:nth-of-type(even) .teaser-image,
    .teaser-lane-slide:nth-of-type(even) .teaser-image {
      padding: 2vw 2vw; } }

.teaser-wrapper:nth-of-type(even) .teaser-image-group,
.teaser-lane-slide:nth-of-type(even) .teaser-image-group {
  padding: 20px 20px; }
  @media (min-width: 1023px) {
    .teaser-wrapper:nth-of-type(even) .teaser-image-group,
    .teaser-lane-slide:nth-of-type(even) .teaser-image-group {
      padding: 2vw 2vw; } }

.teaser-wrapper .teaser-image.teaser-image-full,
.teaser-lane-slide .teaser-image.teaser-image-full {
  padding: 0;
  margin-bottom: 0px;
  height: 100%; }
  .teaser-wrapper .teaser-image.teaser-image-full .height-container,
  .teaser-lane-slide .teaser-image.teaser-image-full .height-container {
    padding-bottom: 134% !important; }

.teaser-wrapper .teaser-image.teaser-image-square,
.teaser-lane-slide .teaser-image.teaser-image-square {
  padding: 0;
  margin-bottom: 0px; }
  .teaser-wrapper .teaser-image.teaser-image-square .height-container,
  .teaser-lane-slide .teaser-image.teaser-image-square .height-container {
    padding-bottom: 134% !important; }
    @media (max-width: 762px) {
      .teaser-wrapper .teaser-image.teaser-image-square .height-container,
      .teaser-lane-slide .teaser-image.teaser-image-square .height-container {
        padding-bottom: 100% !important; } }

.teaser.teaser-page {
  margin-left: calc(var(--gutter-width) * .5);
  margin-right: calc(var(--gutter-width) * .5); }

@media (min-width: 764px) {
  .teaser-magazine-dossier-full {
    padding: 0; }
    .teaser-magazine-dossier-full .teaser-image {
      margin-bottom: 0; } }

.teaser-magazine-dossier-full .teaser-header {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  font-size: 55px;
  line-height: 1.09;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-bottom: var(--spacing-sixth); }
  @media (max-width: 762px) {
    .teaser-magazine-dossier-full .teaser-header {
      font-size: 32px;
      line-height: 1.19; } }
  .teaser-magazine-dossier-full .teaser-header.topline {
    padding-top: .9em;
    padding-bottom: .5em;
    border-top: 2px solid var(--color-black);
    display: inline-block; }

.teaser-magazine-dossier-full.do-not-use {
  background-color: #ffff8f !important;
  width: 100vw; }

.teaser-magazine-dossier {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0; }
  .teaser-magazine-dossier .teaser-magazine-dossier-content {
    margin-left: 18px;
    margin-right: 18px;
    display: flex;
    flex-direction: column;
    height: 100%; }
    .teaser-magazine-dossier .teaser-magazine-dossier-content .teaser-header {
      font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
      font-weight: 900;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      -webkit-hyphens: auto;
      -moz-hyphens: auto;
      hyphens: auto;
      font-size: 30px;
      line-height: 1.13;
      text-transform: uppercase;
      padding: 0;
      margin-top: 0;
      margin-bottom: 0;
      margin-bottom: var(--spacing-sixth);
      text-transform: none;
      margin-bottom: var(--spacing-sixth) !important; }
      @media (max-width: 762px) {
        .teaser-magazine-dossier .teaser-magazine-dossier-content .teaser-header {
          font-size: 26px; } }
      .teaser-magazine-dossier .teaser-magazine-dossier-content .teaser-header.topline {
        padding-top: .9em;
        padding-bottom: .5em;
        border-top: 2px solid var(--color-black);
        display: inline-block; }
    .teaser-magazine-dossier .teaser-magazine-dossier-content .teaser-subline {
      margin-top: auto !important;
      margin-bottom: 4px !important; }
  .teaser-magazine-dossier .teaser-image {
    padding: 0 !important; }

.teaser-lane-slide .teaser-magazine-dossier .teaser-image {
  padding: 0 0 !important; }

.teaser-magazine-article-full {
  padding: 0; }
  @media (min-width: 764px) {
    .teaser-magazine-article-full .teaser-image {
      margin-bottom: 0; } }
  .teaser-magazine-article-full .teaser-header {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
    font-size: 55px;
    line-height: 1.09;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
    margin-bottom: var(--spacing-sixth); }
    @media (max-width: 762px) {
      .teaser-magazine-article-full .teaser-header {
        font-size: 32px;
        line-height: 1.19; } }
    .teaser-magazine-article-full .teaser-header.topline {
      padding-top: .9em;
      padding-bottom: .5em;
      border-top: 2px solid var(--color-black);
      display: inline-block; }
  .teaser-magazine-article-full.do-not-use {
    width: 100vw; }

.teaser-wrapper.teaser-magazine-article-manually:nth-of-type(even) .teaser-image {
  padding: 0; }
  @media (min-width: 1023px) {
    .teaser-wrapper.teaser-magazine-article-manually:nth-of-type(even) .teaser-image {
      padding: 2vw 2vw; } }

.teaser-magazine-article .teaser-header {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  font-size: 22px;
  line-height: 1.36;
  margin-bottom: var(--spacing-sixth); }
  .teaser-magazine-article .teaser-header.topline {
    padding-top: .9em;
    padding-bottom: .5em;
    border-top: 2px solid var(--color-black);
    display: inline-block; }
  @media (max-width: 762px) {
    .teaser-magazine-article .teaser-header {
      font-size: 18px;
      line-height: 1.11; } }

.teaser-magazine-article:nth-of-type(even) .teaser-image {
  padding: 20px 20px; }
  @media (min-width: 1023px) {
    .teaser-magazine-article:nth-of-type(even) .teaser-image {
      padding: 2vw 2vw; } }

.teaser-magazine-article.do-not-use {
  width: 33vw; }

.hyphen {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto; }

.hyph-disable {
  -webkit-hyphens: none;
  -moz-hyphens: none;
  hyphens: none; }
  .hyph-disable * {
    -webkit-hyphens: none;
    -moz-hyphens: none;
    hyphens: none; }

.uppercase {
  text-transform: uppercase; }

.lower-case, .lowercase {
  text-transform: none; }

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

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

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

.multiselect-single {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
  min-height: 62px; }
  .multiselect-single .multiselect__tags {
    background: transparent; }
  .multiselect-single .multiselect {
    width: auto;
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900;
    background: var(--color-invert);
    /* .multiselect__content-wrapper
    {
      position: absolute !important;
      display: block !important;
      z-index: 999999999999999 !important;
      transform: translate3d(0,0,0) !important;
      transform-style: preserve-3d !important;
    }*/ }
    .multiselect-single .multiselect .multiselect__single {
      margin: 0;
      font-size: 18px;
      line-height: 1;
      padding: 14px 26px 22px 20px;
      color: var(--color-base); }
    .multiselect-single .multiselect .multiselect__tags {
      border-radius: 0;
      border: 2px solid var(--black);
      font-size: 18px;
      line-height: 1; }
    .multiselect-single .multiselect li {
      margin-left: 0; }
    .multiselect-single .multiselect .multiselect__option {
      font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
      font-weight: 900;
      color: var(--color-black);
      font-size: 18px;
      line-height: 1;
      padding: 22px 26px 22px 28px; }
    .multiselect-single .multiselect .multiselect__option--highlight {
      color: var(--color-black);
      background: var(--color-light-grey); }
    .multiselect-single .multiselect .multiselect__option--selected {
      color: var(--color-invert);
      background: var(--color-black); }
    .multiselect-single .multiselect .multiselect__content-wrapper {
      border: 2px solid black;
      border-top-width: 0;
      border-radius: 0; }
    .multiselect-single .multiselect.multiselect--active {
      top: 0;
      position: absolute !important;
      display: block !important;
      z-index: 999999999999999 !important;
      transform: translate3d(0, 0, 0) !important;
      transform-style: preserve-3d !important; }
    .multiselect-single .multiselect .multiselect__select {
      top: 14px;
      right: 12px; }
      .multiselect-single .multiselect .multiselect__select::before {
        top: 65%;
        color: var(--color-black);
        border-color: var(--color-black) transparent transparent;
        border-width: 8px 8px 0; }

:root {
  --footer-height: $global-footer-height;
  --footer-height-mobile: $global-footer-height-mobile; }

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

html {
  margin: 0 !important; }

/* prevent blank vue template from being shown */
[inline-template]:empty,
[inline-template] .hideBeforeLoaded,
[inline-template].hideBeforeLoaded {
  display: none; }

/* hide specfic inline-templates */
calendar-list {
  display: none; }

body {
  position: relative;
  margin: 0 !important;
  min-height: 100vh;
  min-height: calc(100vh - var(--vh-offset, 0px));
  overflow-x: hidden;
  color: var(--color-black);
  background: var(--color-invert); }
  body.lock {
    width: 100%; }
  @media (max-width: 764px) {
    body.disable-links {
      background: var(--color-invert) !important; }
      body.disable-links main, body.disable-links footer {
        visibility: hidden; } }

body.nav-sticky header .menu, body.nav-sticky header .bookmark {
  top: -3px; }

body.nav-sticky .site-navigation-header, body.nav-sticky .calendar-nav-header {
  height: 66px; }

body.nav-sticky .calendar-head {
  top: 66px; }

.mobile-view {
  display: none !important; }

@media (max-width: 764px) {
  .web-view {
    display: none !important; }
  .mobile-view {
    display: block !important; }
  html {
    margin-top: 0 !important; } }

.hidden {
  display: none !important; }

img {
  width: 100%;
  height: auto; }

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal; }

*[class^="col-"] {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 15px;
  padding-left: 15px;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%; }

.col-padding-remove {
  padding-right: 0 !important;
  padding-left: 0 !important; }

.middle-xs {
  align-items: center; }

:root {
  --grid-side-margin: 80px;
  --gutter-width: 28px; }
  @media (max-width: 1024px) {
    :root {
      --grid-side-margin: 40px;
      --gutter-width: 20px; } }
  @media (max-width: 764px) {
    :root {
      --grid-side-margin: 20px;
      --gutter-width: 10px; } }
  @media (max-width: 1022px) {
    :root {
      --gutter-width: 10px;
      --grid-side-margin: 20px; } }

.wrapper {
  box-sizing: border-box;
  max-width: 2560px;
  margin: 0 auto; }

.container-fluid {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--grid-side-margin);
  padding-right: var(--grid-side-margin); }
  .container-fluid .box {
    position: relative; }
  @media (max-width: 764px) {
    .container-fluid.container-fluid-mobile-zero {
      padding-left: 0;
      padding-right: 0; } }

.row {
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -moz-box-flex: 0;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: calc(var(--gutter-width) * .5 * -1);
  margin-left: calc(var(--gutter-width) * .5 * -1); }

.row.reverse {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; }

.col.reverse {
  -webkit-box-direction: reverse;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column-reverse;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse; }

.col-xs {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: calc(var(--gutter-width) * .5);
  padding-left: calc(var(--gutter-width) * .5);
  -webkit-flex-basis: auto;
  -moz-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto; }

.col-xs-1 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: calc(var(--gutter-width) * .5);
  padding-left: calc(var(--gutter-width) * .5);
  -webkit-flex-basis: 8.33333%;
  -moz-flex-basis: 8.33333%;
  -ms-flex-preferred-size: 8.33333%;
  flex-basis: 8.33333%;
  max-width: 8.33333%; }

.col-xs-2 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: calc(var(--gutter-width) * .5);
  padding-left: calc(var(--gutter-width) * .5);
  -webkit-flex-basis: 16.66667%;
  -moz-flex-basis: 16.66667%;
  -ms-flex-preferred-size: 16.66667%;
  flex-basis: 16.66667%;
  max-width: 16.66667%; }

.col-xs-3 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: calc(var(--gutter-width) * .5);
  padding-left: calc(var(--gutter-width) * .5);
  -webkit-flex-basis: 25%;
  -moz-flex-basis: 25%;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%; }

.col-xs-4 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: calc(var(--gutter-width) * .5);
  padding-left: calc(var(--gutter-width) * .5);
  -webkit-flex-basis: 33.33333%;
  -moz-flex-basis: 33.33333%;
  -ms-flex-preferred-size: 33.33333%;
  flex-basis: 33.33333%;
  max-width: 33.33333%; }

.col-xs-5 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: calc(var(--gutter-width) * .5);
  padding-left: calc(var(--gutter-width) * .5);
  -webkit-flex-basis: 41.66667%;
  -moz-flex-basis: 41.66667%;
  -ms-flex-preferred-size: 41.66667%;
  flex-basis: 41.66667%;
  max-width: 41.66667%; }

.col-xs-6 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: calc(var(--gutter-width) * .5);
  padding-left: calc(var(--gutter-width) * .5);
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%; }

.col-xs-7 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: calc(var(--gutter-width) * .5);
  padding-left: calc(var(--gutter-width) * .5);
  -webkit-flex-basis: 58.33333%;
  -moz-flex-basis: 58.33333%;
  -ms-flex-preferred-size: 58.33333%;
  flex-basis: 58.33333%;
  max-width: 58.33333%; }

.col-xs-8 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: calc(var(--gutter-width) * .5);
  padding-left: calc(var(--gutter-width) * .5);
  -webkit-flex-basis: 66.66667%;
  -moz-flex-basis: 66.66667%;
  -ms-flex-preferred-size: 66.66667%;
  flex-basis: 66.66667%;
  max-width: 66.66667%; }

.col-xs-9 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: calc(var(--gutter-width) * .5);
  padding-left: calc(var(--gutter-width) * .5);
  -webkit-flex-basis: 75%;
  -moz-flex-basis: 75%;
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%; }

.col-xs-10 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: calc(var(--gutter-width) * .5);
  padding-left: calc(var(--gutter-width) * .5);
  -webkit-flex-basis: 83.33333%;
  -moz-flex-basis: 83.33333%;
  -ms-flex-preferred-size: 83.33333%;
  flex-basis: 83.33333%;
  max-width: 83.33333%; }

.col-xs-11 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: calc(var(--gutter-width) * .5);
  padding-left: calc(var(--gutter-width) * .5);
  -webkit-flex-basis: 91.66667%;
  -moz-flex-basis: 91.66667%;
  -ms-flex-preferred-size: 91.66667%;
  flex-basis: 91.66667%;
  max-width: 91.66667%; }

.col-xs-12 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: calc(var(--gutter-width) * .5);
  padding-left: calc(var(--gutter-width) * .5);
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%; }

.col-xs-offset-1 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: calc(var(--gutter-width) * .5);
  padding-left: calc(var(--gutter-width) * .5);
  margin-left: 8.33333%; }

.col-xs-offset-2 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: calc(var(--gutter-width) * .5);
  padding-left: calc(var(--gutter-width) * .5);
  margin-left: 16.66667%; }

.col-xs-offset-3 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: calc(var(--gutter-width) * .5);
  padding-left: calc(var(--gutter-width) * .5);
  margin-left: 25%; }

.col-xs-offset-4 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: calc(var(--gutter-width) * .5);
  padding-left: calc(var(--gutter-width) * .5);
  margin-left: 33.33333%; }

.col-xs-offset-5 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: calc(var(--gutter-width) * .5);
  padding-left: calc(var(--gutter-width) * .5);
  margin-left: 41.66667%; }

.col-xs-offset-6 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: calc(var(--gutter-width) * .5);
  padding-left: calc(var(--gutter-width) * .5);
  margin-left: 50%; }

.col-xs-offset-7 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: calc(var(--gutter-width) * .5);
  padding-left: calc(var(--gutter-width) * .5);
  margin-left: 58.33333%; }

.col-xs-offset-8 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: calc(var(--gutter-width) * .5);
  padding-left: calc(var(--gutter-width) * .5);
  margin-left: 66.66667%; }

.col-xs-offset-9 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: calc(var(--gutter-width) * .5);
  padding-left: calc(var(--gutter-width) * .5);
  margin-left: 75%; }

.col-xs-offset-10 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: calc(var(--gutter-width) * .5);
  padding-left: calc(var(--gutter-width) * .5);
  margin-left: 83.33333%; }

.col-xs-offset-11 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: calc(var(--gutter-width) * .5);
  padding-left: calc(var(--gutter-width) * .5);
  margin-left: 91.66667%; }

.col-xs-offset-12 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: calc(var(--gutter-width) * .5);
  padding-left: calc(var(--gutter-width) * .5);
  margin-left: 100%; }

@media (min-width: 1023px) {
  .col-md-offset-0 {
    margin-left: 0; } }

@media (min-width: 1439px) {
  .col-lg-offset-0 {
    margin-left: 0; } }

.col-xs {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0;
  -moz-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%; }

.col-xs-direction {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.col-xs-direction-reverse {
  -webkit-box-direction: reverse;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column-reverse;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse; }

.start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  text-align: start; }

.center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  text-align: center; }

.end-xs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  text-align: end; }

.top-xs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start; }

.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center; }

.bottom-xs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end; }

.around-xs {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around; }

.between-xs {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between; }

.first-xs {
  order: -1; }

.last-xs {
  order: 1; }

@media (min-width: 764px) {
  .container {
    width: 764px; }
  .col-s {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto; }
  .col-s-1 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 8.33333%;
    -moz-flex-basis: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .col-s-2 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col-s-3 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .col-s-4 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-s-5 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 41.66667%;
    -moz-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .col-s-6 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .col-s-7 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 58.33333%;
    -moz-flex-basis: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .col-s-8 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-s-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .col-s-10 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col-s-11 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 91.66667%;
    -moz-flex-basis: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .col-s-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .col-s-offset-1 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 8.33333%; }
  .col-s-offset-2 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 16.66667%; }
  .col-s-offset-3 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 25%; }
  .col-s-offset-4 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 33.33333%; }
  .col-s-offset-5 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 41.66667%; }
  .col-s-offset-6 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 50%; }
  .col-s-offset-7 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 58.33333%; }
  .col-s-offset-8 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 66.66667%; }
  .col-s-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 75%; }
  .col-s-offset-10 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 83.33333%; }
  .col-s-offset-11 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 91.66667%; }
  .col-s-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 100%; }
  .col-s {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-basis: 0;
    -moz-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%; }
  .start-s {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: start; }
  .center-s {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center; }
  .end-s {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: end; }
  .top-s {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start; }
  .middle-s {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; }
  .bottom-s {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end; }
  .around-s {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around; }
  .between-s {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between; }
  .first-s {
    order: -1; }
  .last-s {
    order: 1; }
  .col-s-direction {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row; }
  .col-s-direction-reverse {
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse; } }

@media (min-width: 764px) {
  .container {
    width: 764px; }
  .col-sm {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto; }
  .col-sm-1 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 8.33333%;
    -moz-flex-basis: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .col-sm-2 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col-sm-3 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .col-sm-4 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-sm-5 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 41.66667%;
    -moz-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .col-sm-6 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .col-sm-7 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 58.33333%;
    -moz-flex-basis: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .col-sm-8 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-sm-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .col-sm-10 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col-sm-11 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 91.66667%;
    -moz-flex-basis: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .col-sm-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .col-sm-offset-1 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 8.33333%; }
  .col-sm-offset-2 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 16.66667%; }
  .col-sm-offset-3 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 25%; }
  .col-sm-offset-4 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 33.33333%; }
  .col-sm-offset-5 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 41.66667%; }
  .col-sm-offset-6 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 50%; }
  .col-sm-offset-7 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 58.33333%; }
  .col-sm-offset-8 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 66.66667%; }
  .col-sm-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 75%; }
  .col-sm-offset-10 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 83.33333%; }
  .col-sm-offset-11 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 91.66667%; }
  .col-sm-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 100%; }
  .col-sm {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-basis: 0;
    -moz-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%; }
  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: start; }
  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center; }
  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: end; }
  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start; }
  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; }
  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end; }
  .around-sm {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around; }
  .between-sm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between; }
  .first-sm {
    order: -1; }
  .last-sm {
    order: 1; }
  .col-sm-direction {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row; }
  .col-sm-direction-reverse {
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse; } }

@media (min-width: 1024px) {
  .container {
    width: 1024px; }
  .col-md {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto; }
  .col-md-1 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 8.33333%;
    -moz-flex-basis: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .col-md-2 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col-md-3 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .col-md-4 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-md-5 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 41.66667%;
    -moz-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .col-md-6 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .col-md-7 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 58.33333%;
    -moz-flex-basis: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .col-md-8 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-md-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .col-md-10 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col-md-11 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 91.66667%;
    -moz-flex-basis: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .col-md-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .col-md-offset-1 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 8.33333%; }
  .col-md-offset-2 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 16.66667%; }
  .col-md-offset-3 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 25%; }
  .col-md-offset-4 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 33.33333%; }
  .col-md-offset-5 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 41.66667%; }
  .col-md-offset-6 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 50%; }
  .col-md-offset-7 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 58.33333%; }
  .col-md-offset-8 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 66.66667%; }
  .col-md-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 75%; }
  .col-md-offset-10 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 83.33333%; }
  .col-md-offset-11 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 91.66667%; }
  .col-md-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 100%; }
  .col-md {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-basis: 0;
    -moz-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%; }
  .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: start; }
  .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center; }
  .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: end; }
  .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start; }
  .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; }
  .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end; }
  .around-md {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around; }
  .between-md {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between; }
  .first-md {
    order: -1; }
  .last-md {
    order: 1; }
  .col-md-direction {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row; }
  .col-md-direction-reverse {
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse; } }

@media (min-width: 1440px) {
  .container {
    width: 1440px; }
  .col-lg {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto; }
  .col-lg-1 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 8.33333%;
    -moz-flex-basis: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .col-lg-2 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col-lg-3 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .col-lg-4 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-lg-5 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 41.66667%;
    -moz-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .col-lg-6 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .col-lg-7 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 58.33333%;
    -moz-flex-basis: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .col-lg-8 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-lg-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .col-lg-10 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col-lg-11 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 91.66667%;
    -moz-flex-basis: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .col-lg-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .col-lg-offset-1 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 8.33333%; }
  .col-lg-offset-2 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 16.66667%; }
  .col-lg-offset-3 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 25%; }
  .col-lg-offset-4 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 33.33333%; }
  .col-lg-offset-5 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 41.66667%; }
  .col-lg-offset-6 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 50%; }
  .col-lg-offset-7 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 58.33333%; }
  .col-lg-offset-8 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 66.66667%; }
  .col-lg-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 75%; }
  .col-lg-offset-10 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 83.33333%; }
  .col-lg-offset-11 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 91.66667%; }
  .col-lg-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 100%; }
  .col-lg {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-basis: 0;
    -moz-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%; }
  .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: start; }
  .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center; }
  .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: end; }
  .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start; }
  .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; }
  .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end; }
  .around-lg {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around; }
  .between-lg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between; }
  .first-lg {
    order: -1; }
  .last-lg {
    order: 1; }
  .col-lg-direction {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row; }
  .col-lg-direction-reverse {
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse; } }

@media (min-width: 1920px) {
  .container {
    width: 1920px; }
  .col-xlg {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto; }
  .col-xlg-1 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 8.33333%;
    -moz-flex-basis: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .col-xlg-2 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 16.66667%;
    -moz-flex-basis: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .col-xlg-3 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .col-xlg-4 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .col-xlg-5 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 41.66667%;
    -moz-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .col-xlg-6 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .col-xlg-7 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 58.33333%;
    -moz-flex-basis: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .col-xlg-8 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 66.66667%;
    -moz-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .col-xlg-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .col-xlg-10 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 83.33333%;
    -moz-flex-basis: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .col-xlg-11 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 91.66667%;
    -moz-flex-basis: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .col-xlg-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .col-xlg-offset-1 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 8.33333%; }
  .col-xlg-offset-2 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 16.66667%; }
  .col-xlg-offset-3 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 25%; }
  .col-xlg-offset-4 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 33.33333%; }
  .col-xlg-offset-5 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 41.66667%; }
  .col-xlg-offset-6 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 50%; }
  .col-xlg-offset-7 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 58.33333%; }
  .col-xlg-offset-8 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 66.66667%; }
  .col-xlg-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 75%; }
  .col-xlg-offset-10 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 83.33333%; }
  .col-xlg-offset-11 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 91.66667%; }
  .col-xlg-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: calc(var(--gutter-width) * .5);
    padding-left: calc(var(--gutter-width) * .5);
    margin-left: 100%; }
  .col-xlg {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-basis: 0;
    -moz-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%; }
  .start-xlg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: start; }
  .center-xlg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center; }
  .end-xlg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: end; }
  .top-xlg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start; }
  .middle-xlg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; }
  .bottom-xlg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end; }
  .around-xlg {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around; }
  .between-xlg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between; }
  .first-xlg {
    order: -1; }
  .last-xlg {
    order: 1; }
  .col-xlg-direction {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row; }
  .col-xlg-direction-reverse {
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse; } }

@media (min-width: 860px) {
  .col-sm-fifth {
    -webkit-flex-basis: 20%;
    -moz-flex-basis: 20%;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%; }
  .col-sm-four-fifth {
    -webkit-flex-basis: 80%;
    -moz-flex-basis: 80%;
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    max-width: 80%; } }

.audio-player {
  display: flex;
  flex-direction: column;
  align-items: center;
  user-select: none;
  background: var(--color-even-more-light-grey);
  padding: 19px 25px; }
  .audio-player audio {
    position: absolute;
    height: 0; }
  .audio-player-overline {
    margin-bottom: 5px; }
  .audio-player-headline {
    margin-bottom: 0; }
  .audio-player .lazy-media-inline {
    width: 60vw;
    padding-bottom: var(--spacing-sixth); }
    @media (max-width: 1022px) {
      .audio-player .lazy-media-inline {
        max-width: 100%; } }
    .audio-player .lazy-media-inline .teaser-image-bg,
    .audio-player .lazy-media-inline img {
      height: 100%;
      object-fit: cover; }
    .audio-player .lazy-media-inline .height-container {
      height: 60vw;
      padding-bottom: 0 !important; }
      @media (max-width: 1022px) {
        .audio-player .lazy-media-inline .height-container {
          max-height: 300px;
          overflow: hidden; } }
    @media (min-width: 1023px) {
      .audio-player .lazy-media-inline {
        width: 100px;
        margin-right: var(--spacing-sixth) !important;
        padding-bottom: 0; }
        .audio-player .lazy-media-inline .height-container {
          height: 100px;
          padding-bottom: 0 !important; } }
  .audio-player-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center; }
  .audio-player-progress {
    position: relative;
    width: 100%;
    height: 10px;
    cursor: pointer; }
    .audio-player-progress-bar {
      position: relative;
      width: 0;
      top: 4px;
      height: 2px;
      background: black;
      pointer-events: none;
      z-index: 1; }
    .audio-player-progress-bg {
      position: absolute;
      top: 4px;
      width: 100%;
      height: 2px;
      background: black;
      opacity: .25;
      z-index: 0;
      pointer-events: none; }
    .audio-player-progress-pointer {
      position: absolute;
      padding: 20px;
      top: -22px;
      left: -0px;
      border-radius: 100%;
      z-index: 2; }
      .audio-player-progress-pointer-icon {
        position: relative;
        width: 14px;
        height: 14px;
        margin-left: -26px;
        background: var(--color-black);
        border-radius: 100%;
        box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.4);
        transform: scale(2); }
        @media (min-width: 1023px) {
          .audio-player-progress-pointer-icon {
            transform: scale(1);
            transition: transform .3s; } }
      .audio-player-progress-pointer:focus {
        outline: none; }
        @media (min-width: 1023px) {
          .audio-player-progress-pointer:focus .audio-player-progress-pointer-icon {
            transform: scale(1.4);
            background: var(--color-medium-grey); } }
    @media (min-width: 1023px) {
      .audio-player-progress:hover .audio-player-progress-pointer-icon {
        transform: scale(1.4); } }
  .audio-player-timer-start {
    margin: 0; }
  .audio-player-timer-end {
    margin: 0; }
  .audio-player-btns {
    position: relative;
    display: flex;
    justify-content: center; }
    .audio-player-btns .audio-player-btns-play {
      display: block; }
    .audio-player-btns-pause {
      display: none !important; }
    .audio-player-btns.playing .audio-player-btns-play {
      display: none !important; }
    .audio-player-btns.playing .audio-player-btns-pause {
      display: block !important; }
  .audio-player-top {
    margin-bottom: var(--spacing-minimal);
    display: flex;
    flex-direction: column;
    text-align: center; }
    @media (min-width: 1023px) {
      .audio-player-top {
        flex-direction: row;
        margin-bottom: var(--spacing-minimal);
        text-align: left; } }
  .audio-player-center {
    margin-top: var(--spacing-sixth); }
  .audio-player-end {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 15px;
    padding-bottom: var(--spacing-minimal); }
    .audio-player-end .audio-player-timer-start {
      display: flex;
      justify-self: flex-start; }
    .audio-player-end .audio-player-btns {
      width: 100%;
      justify-self: stretch; }
    .audio-player-end .audio-player-timer-end {
      display: flex;
      justify-self: flex-end; }

.tabbing .audio-player audio {
  position: relative;
  min-height: 120px;
  width: 100%; }

.tabbing .audio-player-center {
  display: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0; }

.lazy-media-inline {
  position: relative; }
  .lazy-media-inline .height-container {
    position: relative; }

.lazy-media-info-head {
  position: relative;
  z-index: 2; }
  .lazy-media-info-head-border {
    position: relative;
    width: 100%;
    height: 1px;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    background: var(--color-medium-grey); }

.lazy-media-info-body {
  width: 100%;
  margin: 0;
  flex-direction: column;
  height: 0;
  overflow: hidden; }
  .lazy-media-info-body-content {
    padding: var(--spacing-minimal) var(--spacing-minimal) var(--spacing-minimal) 0; }
    .lazy-media-info-body-content:empty {
      display: none; }

.lazy-media-info[aria-expanded="true"] .lazy-media-info-head-border {
  opacity: 1; }

.lazy-media-info.button-active .button-icon {
  transform: rotate(45deg); }

.lazy-info-margin-exception {
  margin-bottom: 0; }

.footer-gradient .image:after {
  display: block;
  position: absolute;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.8) 100%);
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  content: ''; }

.full-gradient .image:after {
  display: block;
  position: absolute;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  content: ''; }

.leftgradient .image:after {
  display: block;
  position: absolute;
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.8) 100%);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  content: ''; }

.rightgradient .image:after {
  display: block;
  position: absolute;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.8) 100%);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  content: ''; }

.press-shopping-cart-inline {
  margin-bottom: var(--spacing-sixth); }
  .press-shopping-cart-inline .vue-initialize .rem {
    display: none; }

#press-basket-list .isNotSelected {
  display: none; }

.event-button-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%; }
  .event-button-group > .button {
    display: flex;
    justify-content: center;
    width: 33.33%;
    margin-left: 5px;
    margin-right: 5px; }
    .event-button-group > .button img {
      height: 22px;
      width: auto; }
    .event-button-group > .button:first-of-type {
      margin-left: 0; }
    .event-button-group > .button:last-of-type {
      margin-right: 0; }
  .event-button-group--count--1 > .button {
    width: auto; }
  .event-button-group--count--2 > .button {
    width: 50%; }

.meta-row {
  border-bottom: 1px solid var(--color-lightest-grey);
  padding: var(--spacing-third) 0 var(--spacing-third); }
  .meta-row.no-border {
    border-bottom: 0;
    padding: var(--spacing-third) 0 var(--spacing-third); }
    .meta-row.no-border .meta-table {
      width: auto; }
  .meta-row .meta-table {
    width: 100%; }
    .meta-row .meta-table tr {
      width: 100%; }
      .meta-row .meta-table tr td, .meta-row .meta-table tr td span {
        transition: line-height .2s ease-in-out, opacity .6s ease-in-out, padding-bottom .2s ease-in-out, padding-top .2s ease-in-out; }
      .meta-row .meta-table tr.meta-hidden {
        display: none; }
      .meta-row .meta-table tr.meta-table-closed {
        display: table-row;
        opacity: 0; }
        .meta-row .meta-table tr.meta-table-closed td, .meta-row .meta-table tr.meta-table-closed td span {
          opacity: 0;
          line-height: 0px;
          padding-bottom: 0;
          padding-top: 0;
          font-size: 0; }
      .meta-row .meta-table tr.meta-table-opened {
        display: table-row;
        opacity: 1; }
        .meta-row .meta-table tr.meta-table-opened td, .meta-row .meta-table tr.meta-table-opened td span {
          opacity: 1; }
    .meta-row .meta-table .td-icon {
      font-size: 36px;
      width: 10%;
      padding-right: 13px;
      vertical-align: top;
      padding-bottom: .2em; }
      .meta-row .meta-table .td-icon.td-icon-img-src {
        padding-right: 13px;
        padding-bottom: 0;
        width: 33px;
        position: relative;
        vertical-align: middle; }
    .meta-row .meta-table .td-text {
      line-height: 1.33em;
      padding-top: 7px;
      padding-bottom: .6em; }
      .meta-row .meta-table .td-text a {
        line-height: 1em; }

body[class*="dark"] .td-icon-img-src img {
  filter: invert(1); }

.block {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--spacing-half); }
  .block:first-of-type.block-fullscreen-first {
    top: -70px;
    margin-bottom: -10px; }
    @media (min-width: 763px) {
      .block:first-of-type.block-fullscreen-first {
        top: -65px;
        margin-bottom: -5px; } }
  .block.block-no-margin {
    margin-bottom: 0; }
  .block .mobile-view {
    display: none !important; }
  @media (max-width: 764px) {
    .block .web-view {
      display: none !important; }
    .block .mobile-view {
      display: block !important; } }

.block-header-headline {
  margin-bottom: var(--spacing-sixth); }
  .block-header-headline.hyph-disable * {
    -webkit-hyphens: none;
    -moz-hyphens: none;
    hyphens: none; }

.block-header {
  position: relative;
  margin-bottom: var(--spacing-half);
  max-width: 2560px; }
  .block-header .lazy-media-info-container-fluid {
    position: relative !important;
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: var(--grid-side-margin);
    padding-right: var(--grid-side-margin); }
    .block-header .lazy-media-info-container-fluid .box {
      position: relative; }
    @media (max-width: 764px) {
      .block-header .lazy-media-info-container-fluid.container-fluid-mobile-zero {
        padding-left: 0;
        padding-right: 0; } }
    .block-header .lazy-media-info-container-fluid .lazy-media-info-row {
      box-sizing: border-box;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 0;
      -webkit-flex: 0 1 auto;
      -moz-box-flex: 0;
      -moz-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
      flex: 0 1 auto;
      -webkit-box-direction: normal;
      -webkit-box-orient: horizontal;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-right: calc(var(--gutter-width) * .5 * -1);
      margin-left: calc(var(--gutter-width) * .5 * -1); }
      .block-header .lazy-media-info-container-fluid .lazy-media-info-row .lazy-media-info-col {
        box-sizing: border-box;
        -webkit-box-flex: 0;
        -webkit-flex-grow: 0;
        -moz-flex-grow: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        -webkit-flex-shrink: 0;
        -moz-flex-shrink: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        padding-right: calc(var(--gutter-width) * .5);
        padding-left: calc(var(--gutter-width) * .5);
        -webkit-flex-basis: auto;
        -moz-flex-basis: auto;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -moz-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%; }
  .block-header .height-container {
    height: 65vh;
    padding-bottom: 0 !important; }
    .block-header .height-container .lazy-media {
      overflow: hidden; }
  @media (max-width: 764px) {
    .block-header {
      height: 85vh;
      max-height: 800px; }
      .block-header .height-container {
        height: 85vh;
        max-height: 800px; } }
  .block-header .autoplay-audio-description-btn {
    position: absolute;
    display: block;
    bottom: 20px;
    right: 70px;
    z-index: 1;
    font-size: 30px;
    padding: 5px 5px; }

.block-header-video {
  position: relative;
  margin-bottom: -40px;
  padding-bottom: 40px; }
  @media (max-width: 1022px) {
    .block-header-video {
      margin-bottom: -60px; } }
  .block-header-video figure {
    position: relative; }
  @media (max-width: 1022px) {
    .block-header-video {
      min-height: 80vh;
      padding-bottom: 20px; } }
  .block-header-video .height-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    padding-bottom: 0 !important;
    background: black;
    transition: background 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
    will-change: background; }
    .block-header-video .height-container.lazy-media-loaded {
      background: transparent; }
  .block-header-video-shadow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 66%;
    width: 100%;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 3%, #000000 83%);
    padding-bottom: 0 !important;
    display: none; }
  .block-header-video-text {
    z-index: 2;
    display: flex;
    position: relative;
    filter: invert(100%);
    min-height: calc(100vh - 200px); }
    @media (max-width: 762px) {
      .block-header-video-text {
        min-height: calc(100vh - 54px); } }
    .block-header-video-text .row {
      width: 100%; }
    .block-header-video-text h1 {
      margin-top: 0;
      margin-bottom: 30px;
      font-size: 80px;
      line-height: 1;
      text-transform: uppercase; }
      @media (max-width: 1022px) {
        .block-header-video-text h1 {
          font-size: 50px; } }
    .block-header-video-text .motion-item-exception {
      margin-top: 3vw;
      height: 50px;
      position: absolute;
      width: 100%;
      pointer-events: none; }
    .block-header-video-text .block-home-phase1-scroll-animation {
      position: relative;
      display: inline-block;
      width: 18px;
      height: 25px;
      margin-left: -9px; }
      @media screen and (prefers-reduced-motion: no-preference) {
        .block-header-video-text .block-home-phase1-scroll-animation {
          animation: jump 2.5s infinite; } }
  .block-header-video .autoplay-audio-description-btn {
    position: absolute;
    display: block;
    bottom: 20px;
    right: 70px;
    z-index: 3;
    font-size: 30px;
    padding: 5px 5px; }
  .block-header-video .lazy-media .autoplay-video-toggle-btn {
    z-index: 3; }

.block-campaign {
  position: relative;
  width: 100vw;
  height: 80vh;
  overflow: hidden;
  background: black;
  min-height: 620px; }
  .block-campaign .block-campaign-wrapper {
    position: relative;
    height: 100%;
    width: 100%; }
  @media (max-width: 1022px) {
    .block-campaign {
      min-height: calc(85vh - 54px); } }

.block-campaign-images {
  position: relative;
  height: 100%;
  width: 100%; }
  .block-campaign-images * {
    user-select: none; }
  .block-campaign-images .swiper-pagination {
    margin-top: 40px;
    position: relative; }
  .block-campaign-images .swipper-wrapper {
    will-change: transform; }
  .block-campaign-images .swiper-button-prev, .block-campaign-images .swiper-button-next {
    background-image: none;
    margin: 0;
    margin-top: -50px;
    display: none; }
    @media (min-width: 1023px) {
      .block-campaign-images .swiper-button-prev, .block-campaign-images .swiper-button-next {
        display: block; } }
  .block-campaign-images .swiper-button-prev {
    transform: scaleX(-1); }
  .block-campaign-images .swiper-pagination-bullet {
    background: var(--color-black); }
  .block-campaign-images .swiper-pagination-bullet-active {
    background: transparent;
    border: 2px solid var(--color-black);
    opacity: 1;
    transform: scale(1) !important; }
  .block-campaign-images .swiper-pagination-bullet-active-next, .block-campaign-images .swiper-pagination-bullet-active-prev {
    opacity: .75;
    transform: scale(0.75) !important; }
  .block-campaign-images .swiper-pagination-bullet-active-next-next, .block-campaign-images .swiper-pagination-bullet-active-prev-prev {
    opacity: .5;
    transform: scale(0.5) !important; }
  .block-campaign-images swiper, .block-campaign-images .swiper-wrapper, .block-campaign-images .swiper-container {
    position: relative;
    width: 100%;
    height: 100%; }
    .block-campaign-images swiper .swiper-slide, .block-campaign-images .swiper-wrapper .swiper-slide, .block-campaign-images .swiper-container .swiper-slide {
      position: absolute;
      left: 0;
      z-index: 0;
      opacity: 0;
      visibility: hidden;
      transition-duration: unset !important; }
    .block-campaign-images swiper .swiper-slide-next, .block-campaign-images .swiper-wrapper .swiper-slide-next, .block-campaign-images .swiper-container .swiper-slide-next {
      z-index: 1 !important; }
    .block-campaign-images swiper .swiper-slide-active, .block-campaign-images .swiper-wrapper .swiper-slide-active, .block-campaign-images .swiper-container .swiper-slide-active {
      z-index: 2 !important; }
  .block-campaign-images .swiper-slide {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%; }
    .block-campaign-images .swiper-slide .swiper-slide-image-wrapper {
      position: relative;
      height: 100%;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center; }
      .block-campaign-images .swiper-slide .swiper-slide-image-wrapper .width-container {
        position: relative;
        height: 100%;
        width: 100%;
        margin: auto;
        overflow: hidden;
        will-change: transform;
        background: black; }
        .block-campaign-images .swiper-slide .swiper-slide-image-wrapper .width-container .block-campaign-images-bg {
          height: 100%;
          width: 100%;
          object-fit: cover;
          opacity: 0;
          /*
          &.swiper-lazy-loaded
          {
            opacity: 1;
          }

          &:first-of-type
          {
            opacity: 0;
          }
          */ }
  .block-campaign-images.firstLoaded .swiper-slide .swiper-slide-image-wrapper .width-container img:first-of-type {
    opacity: 1;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s; }

.block-campaign-small-images {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none; }
  .block-campaign-small-images .container-fluid, .block-campaign-small-images .row {
    height: 100%; }
  .block-campaign-small-images .row {
    width: 100%; }
    @media (min-width: 1023px) {
      .block-campaign-small-images .row {
        width: 90%; } }
  .block-campaign-small-images-wrapper {
    position: relative;
    height: 100%; }
    @media (min-width: 764px) {
      .block-campaign-small-images-wrapper {
        margin-top: var(--spacing-two-thirds);
        height: calc(100% - var(--spacing-two-thirds) - var(--spacing-two-thirds)); } }
    @media (min-width: 1023px) {
      .block-campaign-small-images-wrapper {
        margin-top: var(--spacing-two-thirds);
        height: calc(100% - var(--spacing-two-thirds) - var(--spacing-two-thirds)); } }
  .block-campaign-small-images .block-campaign-small-images-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    display: flex;
    visibility: hidden;
    opacity: 0; }
    @media (min-width: 764px) {
      .block-campaign-small-images .block-campaign-small-images-slide {
        left: 12vw;
        right: 12vw; } }
    @media (min-width: 1023px) {
      .block-campaign-small-images .block-campaign-small-images-slide {
        left: 0;
        right: 0; } }
    .block-campaign-small-images .block-campaign-small-images-slide-wrapper {
      position: relative; }
    .block-campaign-small-images .block-campaign-small-images-slide .image {
      transform: translateZ(0);
      backface-visibility: hidden;
      will-change: transform; }
    .block-campaign-small-images .block-campaign-small-images-slide-center-image {
      position: absolute;
      width: 70%;
      left: 15%;
      top: 0;
      height: 0;
      padding-bottom: 70%;
      margin-top: 15%;
      transform-origin: 50% 50%;
      transform: rotate(-25deg);
      overflow: hidden;
      z-index: 3; }
      .block-campaign-small-images .block-campaign-small-images-slide-center-image-rotation {
        position: relative;
        transform: rotate(25deg); }
        .block-campaign-small-images .block-campaign-small-images-slide-center-image-rotation-content {
          position: absolute;
          left: 5%;
          right: -40%;
          transform: translateY(-17%); }
    .block-campaign-small-images .block-campaign-small-images-slide-border-image {
      position: relative;
      width: 100%;
      height: 0;
      padding-bottom: 100%;
      transform-origin: 50% 50%;
      transform: rotate(-15deg);
      overflow: hidden;
      z-index: 2; }

.block-campaign-copy {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1; }
  @media (max-width: 762px) {
    .block-campaign-copy {
      z-index: 2; } }
  .block-campaign-copy-darken {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.66) 99%); }
  .block-campaign-copy .container-fluid, .block-campaign-copy .row {
    height: 100%; }
  .block-campaign-copy-wrapper {
    position: relative;
    margin-top: 94px;
    height: calc(100% - 94px - 10px); }
    @media (min-width: 1023px) {
      .block-campaign-copy-wrapper {
        margin-top: var(--spacing-two-thirds);
        height: calc(100% - var(--spacing-two-thirds) - var(--spacing-two-thirds)); } }
  .block-campaign-copy .block-campaign-copy-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: start;
    display: none;
    visibility: hidden;
    opacity: 0; }
    @media (min-width: 1023px) {
      .block-campaign-copy .block-campaign-copy-slide {
        justify-content: center; } }
    @media (max-width: 1022px) {
      .block-campaign-copy .block-campaign-copy-slide-hitarea {
        position: absolute;
        left: 12vw;
        right: 12vw;
        margin-left: 5%;
        margin-right: 5%;
        cursor: pointer;
        top: 25%;
        height: 40%;
        transform: rotate(-15deg); } }
    @media (max-width: 1022px) {
      .block-campaign-copy .block-campaign-copy-slide-footer {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0; } }
    .block-campaign-copy .block-campaign-copy-slide-motion-wrapper {
      position: relative;
      overflow: hidden; }
      .block-campaign-copy .block-campaign-copy-slide-motion-wrapper-headline {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        overflow: hidden; }
        .block-campaign-copy .block-campaign-copy-slide-motion-wrapper-headline-position {
          position: relative;
          height: 52px;
          min-height: 52px;
          width: 100%;
          overflow: visible; }
          @media (min-width: 1023px) {
            .block-campaign-copy .block-campaign-copy-slide-motion-wrapper-headline-position {
              height: 118px;
              min-height: 118px; } }
      .block-campaign-copy .block-campaign-copy-slide-motion-wrapper-copy {
        text-align: center; }
        @media (min-width: 1023px) {
          .block-campaign-copy .block-campaign-copy-slide-motion-wrapper-copy {
            text-align: left; } }
      .block-campaign-copy .block-campaign-copy-slide-motion-wrapper-button {
        text-align: center;
        width: 100%; }
        .block-campaign-copy .block-campaign-copy-slide-motion-wrapper-button .block-campaign-copy-button:before {
          /* use !important to prevent issues with browser extensions that change fonts */
          font-family: 'HumboldtForum' !important;
          speak: none;
          font-style: normal;
          font-weight: normal;
          font-variant: normal;
          text-transform: none;
          line-height: 1;
          /* Better Font Rendering =========== */
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          opacity: 1 !important;
          content: "\e937";
          display: block;
          position: absolute;
          margin-right: 20px;
          font-size: 1.1em;
          background: transparent !important; }
        .block-campaign-copy .block-campaign-copy-slide-motion-wrapper-button .block-campaign-copy-button span {
          padding-left: 30px; }
        @media (min-width: 1023px) {
          .block-campaign-copy .block-campaign-copy-slide-motion-wrapper-button {
            text-align: left;
            width: auto; } }
    .block-campaign-copy .block-campaign-copy-slide-overline {
      font-size: 18px;
      line-height: 1;
      min-height: 18px;
      font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
      font-weight: 900;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-transform: uppercase;
      color: var(--color-invert);
      margin-bottom: var(--spacing-minimal); }
      .block-campaign-copy .block-campaign-copy-slide-overline-wrapper {
        margin-bottom: var(--spacing-minimal);
        min-height: 18px; }
        @media (min-width: 1023px) {
          .block-campaign-copy .block-campaign-copy-slide-overline-wrapper {
            min-height: 25px;
            margin-bottom: 3vh; } }
      @media (min-width: 1023px) {
        .block-campaign-copy .block-campaign-copy-slide-overline {
          font-size: 25px; } }
    .block-campaign-copy .block-campaign-copy-slide-headline1, .block-campaign-copy .block-campaign-copy-slide-headline2 {
      font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
      font-weight: 900;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-transform: uppercase;
      font-size: 60px;
      line-height: 0.85;
      white-space: nowrap;
      hyphens: none; }
      @media (min-width: 1023px) {
        .block-campaign-copy .block-campaign-copy-slide-headline1, .block-campaign-copy .block-campaign-copy-slide-headline2 {
          font-size: 118px;
          line-height: 0.92; } }
    .block-campaign-copy .block-campaign-copy-slide-copy {
      color: var(--color-invert);
      font-size: 20px;
      line-height: 1.25; }
      @media (min-width: 1023px) {
        .block-campaign-copy .block-campaign-copy-slide-copy {
          margin-top: var(--spacing-third);
          font-size: 22px;
          line-height: 1.32; } }
    .block-campaign-copy .block-campaign-copy-slide-button a {
      color: var(--color-invert);
      padding: 0;
      border: none; }

.block-campaign-nav * {
  user-select: none; }

.block-campaign-nav-shadow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 88px;
  opacity: .6;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0)); }

.block-campaign-nav .swiper-toggle-btn {
  position: absolute;
  display: block;
  top: 35px;
  left: 20px;
  z-index: 3;
  font-size: 30px;
  padding: 5px 5px; }
  @media (min-width: 1023px) {
    .block-campaign-nav .swiper-toggle-btn {
      top: 40px;
      font-size: 30px;
      left: 70px; } }

.block-campaign-nav .swiper-button-prev, .block-campaign-nav .swiper-button-next {
  position: absolute;
  background-image: none;
  transition: opacity .3s;
  width: auto;
  height: auto;
  font-size: 30px;
  padding: 5px 5px;
  top: 57px; }
  @media (min-width: 1023px) {
    .block-campaign-nav .swiper-button-prev, .block-campaign-nav .swiper-button-next {
      top: 62px; } }

.block-campaign-nav .swiper-button-prev {
  transform: scaleX(-1);
  left: auto;
  right: 72px; }
  @media (min-width: 1023px) {
    .block-campaign-nav .swiper-button-prev {
      right: 128px; } }

.block-campaign-nav .swiper-button-next {
  right: 20px; }
  @media (min-width: 1023px) {
    .block-campaign-nav .swiper-button-next {
      right: 78px; } }

.block-campaign-nav .swiper-progress-pos, .block-campaign-nav .swiper-progress-count {
  position: absolute;
  z-index: 3;
  color: white;
  font-size: 21px;
  line-height: 1;
  display: none; }
  @media (min-width: 1023px) {
    .block-campaign-nav .swiper-progress-pos, .block-campaign-nav .swiper-progress-count {
      top: 51px;
      left: auto;
      right: 330px;
      text-align: right;
      display: block; } }

.block-campaign-nav .swiper-progress-count {
  position: absolute;
  color: white; }
  @media (min-width: 1023px) {
    .block-campaign-nav .swiper-progress-count {
      text-align: left;
      right: 220px; } }

.block-campaign-nav .swiper-progress {
  position: absolute;
  top: 12px;
  left: 20px;
  right: 20px;
  height: 2px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap; }
  @media (min-width: 1023px) {
    .block-campaign-nav .swiper-progress {
      top: 55px;
      left: auto;
      width: 80px;
      right: 240px; } }
  .block-campaign-nav .swiper-progress-item {
    position: relative;
    flex-grow: 1;
    margin: 5px;
    height: 100%;
    background: rgba(255, 255, 255, 0.35); }
    .block-campaign-nav .swiper-progress-item-progress {
      position: absolute;
      width: 100%;
      height: 100%;
      background: white;
      transform: matrix(0, 0, 0, 1, 0, 0); }
      .block-campaign-nav .swiper-progress-item-progress.old {
        transform: none !important;
        background: white !important; }
    @media (min-width: 1023px) {
      .block-campaign-nav .swiper-progress-item {
        margin-left: 0;
        margin-right: 0; } }

.inTransition .block-campaign-nav {
  pointer-events: none; }

.inTransition .block-campaign-copy-slide-hitarea {
  pointer-events: none; }

.block-form .acf-form-fields {
  clear: both; }

@media (min-width: 764px) {
  .block-form .acf-form-fields:not(.acf-form-fields-full) > div {
    width: 50%;
    float: left; }
    .block-form .acf-form-fields:not(.acf-form-fields-full) > div:nth-child(odd) {
      padding-right: 14px;
      clear: left; }
    .block-form .acf-form-fields:not(.acf-form-fields-full) > div:nth-child(even) {
      padding-left: 14px; } }

.block-form .acf-form-fields:not(.acf-form-fields-full) > div.acf-form-fields-force-half {
  width: 50% !important;
  float: left !important; }

.block-form .acf-form-fields:not(.acf-form-fields-full) > div.acf-form-submit {
  width: 100%;
  text-align: right;
  padding-right: 0;
  padding-left: 0; }
  @media (max-width: 520px) {
    .block-form .acf-form-fields:not(.acf-form-fields-full) > div.acf-form-submit button {
      width: 50%;
      padding-left: 0;
      padding-right: 0; } }

.block-form input[name="email_for_non_humans"] {
  display: none; }

.block-form .acf-error-message.-dismiss {
  display: none; }

.block-form .acf-hidden {
  display: none; }

.block-form .acf-error-message p:before {
  content: '*'; }

.block-form .af-field-required > div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; }
  .block-form .af-field-required > div > div {
    flex: 1 0 100%; }
  .block-form .af-field-required > div .acf-checkbox-list,
  .block-form .af-field-required > div .acf-input-wrap {
    order: -1; }

.block-form .af-field-type-true-false > .acf-label,
.block-form .af-field-type-checkbox > .acf-label {
  visibility: hidden; }

.block-vergabeportal {
  padding-top: var(--spacing-third);
  padding-bottom: var(--spacing-third);
  background-color: var(--color-even-more-light-grey); }
  .block-vergabeportal .vergabe {
    padding-top: var(--spacing-third);
    padding-bottom: var(--spacing-sixth);
    border-bottom: 1px solid var(--color-black); }
    .block-vergabeportal .vergabe:first-of-type {
      padding-top: var(--spacing-sixth); }
    .block-vergabeportal .vergabe:last-of-type {
      border-bottom: none; }

.block-anchor-nav {
  margin-bottom: var(--spacing-third);
  top: 0;
  z-index: 10; }
  .block-anchor-nav .anchor-nav-accordion {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-invert);
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s; }
    .block-anchor-nav .anchor-nav-accordion .anchor-nav-title {
      outline: none; }
      .block-anchor-nav .anchor-nav-accordion .anchor-nav-title .button-icon {
        position: absolute;
        font-size: 30px;
        margin-top: -3px;
        transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1); }
        @media (min-width: 763px) {
          .block-anchor-nav .anchor-nav-accordion .anchor-nav-title .button-icon {
            font-size: 40px;
            margin-top: -5px; } }
    .block-anchor-nav .anchor-nav-accordion[aria-expanded="true"] .anchor-nav-title .button-icon {
      transform: rotate(180deg); }
    .block-anchor-nav .anchor-nav-accordion.isSticky {
      pointer-events: auto;
      visibility: visible;
      display: block;
      opacity: 1; }
    .block-anchor-nav .anchor-nav-accordion .anchor-nav {
      height: 0;
      overflow: hidden; }
  .block-anchor-nav .anchor-nav {
    position: relative;
    display: flex;
    width: 100%;
    /*
    height:auto;
    overflow: visible;
    flex-direction: column;
*/
    /*
      @include min-screen($screen-sm)
      {
        height:auto !important;
        overflow: visible !important;
        display: flex !important;
      }
    */ }
    @media (max-width: 764px) {
      .block-anchor-nav .anchor-nav {
        /*
        height:0;
        overflow: hidden;
      */ }
        .block-anchor-nav .anchor-nav .anchor-nav-item-wrapper {
          width: 100%; } }
    .block-anchor-nav .anchor-nav .anchor-nav-item-wrapper {
      display: flex;
      position: relative;
      flex-direction: row; }
      .block-anchor-nav .anchor-nav .anchor-nav-item-wrapper .anchor-nav-item {
        cursor: pointer; }
        .block-anchor-nav .anchor-nav .anchor-nav-item-wrapper .anchor-nav-item * {
          margin: 0; }

.block-standard-image {
  position: initial; }
  @media (max-width: 764px) {
    .block-standard-image .lazy-max-height-exception .height-container {
      padding-bottom: 100% !important; }
      .block-standard-image .lazy-max-height-exception .height-container img {
        height: 100%;
        object-fit: cover; } }

.block-button .center-xs {
  display: flex; }

.block:not(.block-no-margin) + .block-button {
  margin-top: calc(-1* var(--spacing-half)); }

.block.block-magazin-teaser-dossier + .block-button {
  margin-top: 0; }

.block-standard-video {
  position: relative; }
  .block-standard-video-wrapper {
    position: relative; }
    .block-standard-video-wrapper-content {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0; }
      .block-standard-video-wrapper-content * {
        color: var(--color-invert); }
      .block-standard-video-wrapper-content .container-fluid {
        height: 100%;
        display: flex; }
        .block-standard-video-wrapper-content .container-fluid .row {
          align-items: center; }

.block-gallery {
  background: var(--color-even-more-light-grey);
  padding-bottom: 20px;
  padding-top: 40px;
  max-width: 100%;
  overflow-x: hidden; }
  .block-gallery * {
    user-select: none; }
  .block-gallery .swiper-pagination {
    margin-top: 40px;
    position: relative; }
  .block-gallery .swipper-wrapper {
    will-change: transform; }
  .block-gallery .swiper-button-prev, .block-gallery .swiper-button-next {
    background-image: none;
    margin: 0;
    margin-top: -50px;
    display: none; }
    @media (min-width: 1023px) {
      .block-gallery .swiper-button-prev, .block-gallery .swiper-button-next {
        display: block; } }
  .block-gallery .swiper-button-prev {
    transform: scaleX(-1); }
  .block-gallery .swiper-pagination-bullet {
    background: var(--color-black); }
  .block-gallery .swiper-pagination-bullet-active {
    background: transparent;
    border: 2px solid var(--color-black);
    opacity: 1;
    transform: scale(1) !important; }
  .block-gallery .swiper-pagination-bullet-active-next, .block-gallery .swiper-pagination-bullet-active-prev {
    opacity: .75;
    transform: scale(0.75) !important; }
  .block-gallery .swiper-pagination-bullet-active-next-next, .block-gallery .swiper-pagination-bullet-active-prev-prev {
    opacity: .5;
    transform: scale(0.5) !important; }
  .block-gallery swiper, .block-gallery .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 60vh; }
  .block-gallery .swiper-slide {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 60vh; }
    .block-gallery .swiper-slide .swiper-slide-image-wrapper {
      position: relative;
      height: 100%;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center; }
      .block-gallery .swiper-slide .swiper-slide-image-wrapper .width-container {
        position: relative;
        height: 100%;
        width: 0;
        margin: auto;
        overflow: hidden;
        will-change: transform; }
        .block-gallery .swiper-slide .swiper-slide-image-wrapper .width-container img.swiper-lazy-loaded {
          opacity: 1; }
        .block-gallery .swiper-slide .swiper-slide-image-wrapper .width-container img:first-of-type {
          opacity: 0; }
    .block-gallery .swiper-slide figcaption {
      display: flex;
      text-align: left;
      width: 100%;
      padding-top: 20px;
      margin: 0; }
      .block-gallery .swiper-slide figcaption .lazy-media-info-body-content {
        width: 100%;
        padding: 0; }
        .block-gallery .swiper-slide figcaption .lazy-media-info-body-content *:empty {
          display: none; }
        @media (min-width: 1023px) {
          .block-gallery .swiper-slide figcaption .lazy-media-info-body-content {
            text-align: center; } }
  .block-gallery .firstLoaded .swiper-slide .swiper-slide-image-wrapper .width-container img:first-of-type {
    opacity: 1;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s; }

.block-gallery-moderated {
  position: relative;
  user-select: none;
  background: black;
  margin-bottom: 0;
  width: 100vw;
  height: 80vh;
  overflow: hidden;
  min-height: calc(85vh - 135px);
  /*
  @include min-screen($screen-tablet)
  {
	height: 56.25vw;
  }*/ }
  @media (max-width: 1022px) {
    .block-gallery-moderated {
      min-height: calc(85vh - 54px); } }
  .block-gallery-moderated * {
    user-select: none; }

.block-gallery-moderated-video {
  position: relative;
  background: black;
  width: 100vw;
  overflow: hidden;
  pointer-events: none;
  height: 80vh;
  min-height: calc(85vh - 135px); }
  @media (max-width: 1022px) {
    .block-gallery-moderated-video {
      min-height: calc(85vh - 54px); } }
  .block-gallery-moderated-video * {
    pointer-events: none; }
  .block-gallery-moderated-video .swiper-container {
    position: relative;
    background: black;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0; }
    .block-gallery-moderated-video .swiper-container .swiper-slide {
      position: absolute;
      left: 0; }
      .block-gallery-moderated-video .swiper-container .swiper-slide .width-container {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow: hidden; }
        .block-gallery-moderated-video .swiper-container .swiper-slide .width-container .wrapper {
          position: relative;
          width: 100%;
          height: 100%; }
        .block-gallery-moderated-video .swiper-container .swiper-slide .width-container img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
    .block-gallery-moderated-video .swiper-container .swiper-slide-active {
      z-index: 2 !important; }
  .block-gallery-moderated-video .hitarea {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    cursor: pointer; }
  .block-gallery-moderated-video .swiper-slide-autoplay {
    background: red; }
  .block-gallery-moderated-video .swiper-slide {
    position: relative; }
    .block-gallery-moderated-video .swiper-slide img, .block-gallery-moderated-video .swiper-slide video {
      position: absolute;
      object-fit: cover;
      height: 100%;
      width: 100%; }
      .block-gallery-moderated-video .swiper-slide img.swiper-lazy-loaded, .block-gallery-moderated-video .swiper-slide video.swiper-lazy-loaded {
        opacity: 1; }
    .block-gallery-moderated-video .swiper-slide video {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0; }
  .block-gallery-moderated-video.firstLoaded .swiper-container {
    opacity: 1;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s; }

.block-gallery-moderated-copy {
  width: 100%;
  position: absolute;
  top: 0;
  height: 100%; }
  .block-gallery-moderated-copy .swiper-container {
    position: relative;
    height: 100%; }
    .block-gallery-moderated-copy .swiper-container .swiper-wrapper {
      position: absolute;
      bottom: 15px;
      height: auto; }
      @media (min-width: 1023px) {
        .block-gallery-moderated-copy .swiper-container .swiper-wrapper {
          bottom: 30px; } }
  .block-gallery-moderated-copy swiper {
    display: none; }
  .block-gallery-moderated-copy-item {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--color-invert);
    width: 100%;
    height: auto;
    padding: var(--spacing-third);
    user-select: none;
    border-radius: 2px;
    max-width: 628px; }
    .block-gallery-moderated-copy-item-counter {
      position: relative;
      top: -6px;
      display: block !important;
      white-space: nowrap;
      text-align: right;
      line-height: 1;
      font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
      font-weight: 900;
      font-size: 14px; }
      .block-gallery-moderated-copy-item-counter span {
        color: var(--color-medium-grey); }
    .block-gallery-moderated-copy-item-dot {
      position: absolute;
      right: 29px;
      top: 29px;
      width: 6px;
      height: 6px;
      display: block !important;
      background: var(--color-black); }
      @media (min-width: 1023px) {
        .block-gallery-moderated-copy-item-dot {
          right: 40px;
          top: 40px; } }
    .block-gallery-moderated-copy-item-button a {
      border: none;
      padding: 0;
      margin-top: 13px;
      margin-bottom: 0;
      text-transform: none;
      font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
      font-weight: 400;
      font-size: 14px;
      line-height: 1.14;
      font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
      font-weight: 900; }
    .block-gallery-moderated-copy-item .overline {
      position: relative;
      font-size: 12px;
      line-height: 1;
      letter-spacing: 1.0px; }
    .block-gallery-moderated-copy-item p {
      font-size: 14px;
      font-weight: 500;
      font-stretch: normal;
      font-style: normal;
      line-height: 1.33; }
      @media (min-width: 1023px) {
        .block-gallery-moderated-copy-item p {
          font-size: 15px; } }
    .block-gallery-moderated-copy-item *:empty {
      display: none; }
    @media (min-width: 1023px) {
      .block-gallery-moderated-copy-item {
        width: 90%; } }
    @media (min-width: 1440px) {
      .block-gallery-moderated-copy-item {
        width: 846px; } }
    .block-gallery-moderated-copy-item .overline {
      margin-bottom: 30px; }
    .block-gallery-moderated-copy-item .headline {
      margin: 0; }
    .block-gallery-moderated-copy-item.teaser {
      margin: 0 !important; }
      .block-gallery-moderated-copy-item.teaser .headline {
        margin-bottom: 10px; }
  .block-gallery-moderated-copy .swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto; }
    .block-gallery-moderated-copy .swiper-slide .block-gallery-moderated-copy-item {
      opacity: .5;
      will-change: opacity;
      transition: opacity 0.6s; }
  .block-gallery-moderated-copy .swiper-slide-active .block-gallery-moderated-copy-item {
    opacity: 1; }

.block-gallery-moderated-nav * {
  user-select: none; }

.block-gallery-moderated-nav-shadow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 88px;
  opacity: .6;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0)); }

.block-gallery-moderated-nav .swiper-toggle-btn {
  position: absolute;
  display: block;
  top: 35px;
  left: 20px;
  z-index: 3;
  font-size: 30px;
  padding: 5px 5px; }
  @media (min-width: 1023px) {
    .block-gallery-moderated-nav .swiper-toggle-btn {
      top: 40px;
      font-size: 30px;
      left: 70px; } }

.block-gallery-moderated-nav .swiper-button-prev, .block-gallery-moderated-nav .swiper-button-next {
  position: absolute;
  background-image: none;
  transition: opacity .3s;
  width: auto;
  height: auto;
  font-size: 30px;
  padding: 5px 5px;
  top: 57px;
  display: none; }
  @media (min-width: 1023px) {
    .block-gallery-moderated-nav .swiper-button-prev, .block-gallery-moderated-nav .swiper-button-next {
      top: 62px;
      display: block; } }

.block-gallery-moderated-nav .swiper-button-prev {
  transform: scaleX(-1);
  left: auto;
  right: 72px; }
  @media (min-width: 1023px) {
    .block-gallery-moderated-nav .swiper-button-prev {
      right: 128px; } }

.block-gallery-moderated-nav .swiper-button-next {
  right: 20px; }
  @media (min-width: 1023px) {
    .block-gallery-moderated-nav .swiper-button-next {
      right: 78px; } }

.block-gallery-moderated-nav .swiper-progress-pos, .block-gallery-moderated-nav .swiper-progress-count {
  position: absolute;
  z-index: 3;
  color: white;
  font-size: 21px;
  line-height: 1;
  display: none; }
  @media (min-width: 1023px) {
    .block-gallery-moderated-nav .swiper-progress-pos, .block-gallery-moderated-nav .swiper-progress-count {
      top: 51px;
      left: auto;
      right: 330px;
      text-align: right;
      display: block; } }

.block-gallery-moderated-nav .swiper-progress-count {
  position: absolute;
  color: white; }
  @media (min-width: 1023px) {
    .block-gallery-moderated-nav .swiper-progress-count {
      text-align: left;
      right: 220px; } }

.block-gallery-moderated-nav .old {
  transform: none !important;
  background: white !important; }

.block-gallery-moderated-nav .swiper-progress {
  position: absolute;
  top: 12px;
  left: 20px;
  right: 20px;
  height: 2px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap; }
  @media (min-width: 1023px) {
    .block-gallery-moderated-nav .swiper-progress {
      top: 55px;
      left: auto;
      width: 80px;
      right: 240px; } }
  .block-gallery-moderated-nav .swiper-progress-item {
    position: relative;
    flex-grow: 1;
    margin: 5px;
    height: 100%;
    background: rgba(255, 255, 255, 0.35); }
    .block-gallery-moderated-nav .swiper-progress-item-progress {
      position: absolute;
      width: 100%;
      height: 100%;
      background: white;
      transform: matrix(0, 0, 0, 1, 0, 0); }
    @media (min-width: 1023px) {
      .block-gallery-moderated-nav .swiper-progress-item {
        margin-left: 0;
        margin-right: 0; } }

.block-media-quotes .swiper-outside {
  border: solid 2px var(--color-darkest-grey);
  padding: 9vh 12.5% 3.2vh; }
  @media (max-width: 762px) {
    .block-media-quotes .swiper-outside {
      padding: 9vh 8.33% 3.2vh; } }

@media (min-width: 763px) {
  .block-media-quotes h3 {
    -webkit-hyphens: none;
    -moz-hyphens: none;
    hyphens: none; } }

.block-media-quotes h3:before {
  content: "\201e";
  display: inline-block; }
  html[lang='en'] .block-media-quotes h3:before {
    content: "\201c"; }

.block-media-quotes h3:after {
  content: "\201c";
  display: inline; }
  html[lang='en'] .block-media-quotes h3:after {
    content: "\201d"; }

.block-media-quotes .Copyright {
  margin-top: var(--spacing-half);
  display: block; }

.block-media-quotes .swiper-lazy-preloader,
.block-media-quotes img {
  height: 60px !important;
  margin: 10px 0;
  width: auto;
  display: inline-block; }
  @media (max-width: 762px) {
    .block-media-quotes .swiper-lazy-preloader,
    .block-media-quotes img {
      height: 40px !important; } }

.block-media-quotes .swiper-slide {
  cursor: grab;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center; }

.block-media-quotes .swiper-pagination {
  margin-top: 40px;
  position: relative; }

.block-media-quotes .swipper-wrapper {
  will-change: transform; }

.block-media-quotes .swiper-pagination-bullet {
  background: var(--color-black); }

.block-media-quotes .swiper-pagination-bullet-active {
  background: transparent;
  border: 2px solid var(--color-black);
  opacity: 1;
  transform: scale(1) !important; }

.block-media-quotes .swiper-pagination-bullet-active-next,
.block-media-quotes .swiper-pagination-bullet-active-prev {
  opacity: .75;
  transform: scale(0.75) !important; }

.block-media-quotes .swiper-pagination-bullet-active-next-next,
.block-media-quotes .swiper-pagination-bullet-active-prev-prev {
  opacity: .5;
  transform: scale(0.5) !important; }

@media (max-width: 1022px) {
  .block-magazine-article-header > .container-fluid-first {
    padding-left: 0;
    padding-right: 0; } }

@media (min-width: 1023px) {
  .block-magazine-article-header .header-image figure {
    position: relative;
    top: 0;
    left: -17.4%;
    width: calc(117.4%);
    height: 100%;
    z-index: 0; } }

.block-magazine-article-header .header-image figure .height-container {
  padding-bottom: 100% !important; }

.block-magazine-article-header .header-image figure .lazy-media-info-col > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: right; }
  .block-magazine-article-header .header-image figure .lazy-media-info-col > div .lazy-media-info-head {
    -ms-flex-item-align: end;
    align-self: flex-end; }

@media (max-width: 1022px) {
  .block-magazine-article-header .same-height {
    margin-right: 0;
    margin-left: 0;
    text-align: center;
    margin-bottom: var(--spacing-third); }
    .block-magazine-article-header .same-height *[class^="col-"] {
      padding-right: 0;
      padding-left: 0; }
    .block-magazine-article-header .same-height .header-text {
      padding-left: var(--grid-side-margin);
      padding-right: var(--grid-side-margin);
      box-sizing: border-box; }
    .block-magazine-article-header .same-height .header-image {
      margin-top: -13vw; } }

@media (max-width: 762px) {
  .block-magazine-article-header .same-height .header-image {
    margin-top: -22vw; } }

.block-magazine-article-header .header-copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  min-height: 81%;
  margin-top: 7%;
  margin-bottom: 7%;
  border: solid 2px var(--color-darkest-grey); }
  @media (max-width: 1022px) {
    .block-magazine-article-header .header-copy .header-copy-content {
      padding-bottom: 20vw; } }
  .block-magazine-article-header .header-copy .header-copy-wrapper {
    padding: 0; }
  .block-magazine-article-header .header-copy-subline * {
    display: inline-block;
    vertical-align: baseline; }
  .block-magazine-article-header .header-copy-subline .tax-list-magazine-author {
    display: block; }

@media (max-width: 1022px) {
  .block-magazine-article-header > .container-fluid-first {
    padding-left: 0;
    padding-right: 0; } }

@media (min-width: 1023px) {
  .block-magazine-article-header .header-image figure {
    position: relative;
    top: 0;
    left: -17.4%;
    width: calc(117.4%);
    height: 100%;
    z-index: 0; } }

.block-magazine-article-header .header-image figure .height-container {
  padding-bottom: 100% !important; }

.block-magazine-article-header .header-image figure .lazy-media-info-col > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: right; }
  .block-magazine-article-header .header-image figure .lazy-media-info-col > div .lazy-media-info-head {
    -ms-flex-item-align: end;
    align-self: flex-end; }

@media (max-width: 1022px) {
  .block-magazine-article-header .same-height {
    margin-right: 0;
    margin-left: 0;
    text-align: center;
    margin-bottom: var(--spacing-third); }
    .block-magazine-article-header .same-height *[class^="col-"] {
      padding-right: 0;
      padding-left: 0; }
    .block-magazine-article-header .same-height .header-text {
      padding-left: var(--grid-side-margin);
      padding-right: var(--grid-side-margin);
      box-sizing: border-box; }
    .block-magazine-article-header .same-height .header-image {
      margin-top: -13vw; } }

@media (max-width: 762px) {
  .block-magazine-article-header .same-height .header-image {
    margin-top: -22vw; } }

.block-magazine-article-header .header-copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  min-height: 81%;
  margin-top: 7%;
  margin-bottom: 7%;
  border: solid 2px var(--color-darkest-grey); }
  @media (max-width: 1022px) {
    .block-magazine-article-header .header-copy .header-copy-content {
      padding-bottom: 20vw; } }
  .block-magazine-article-header .header-copy .header-copy-wrapper {
    padding: 0; }
  .block-magazine-article-header .header-copy-subline * {
    display: inline-block;
    vertical-align: baseline; }
  .block-magazine-article-header .header-copy-subline .tax-list-magazine-author {
    display: block; }

.block-magazin-teaser-dossier {
  margin-bottom: 0; }
  .block-magazin-teaser-dossier .meta {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.67;
    color: inherit; }
  @media (max-width: 763px) {
    .block-magazin-teaser-dossier .teaser {
      margin-bottom: 0 !important; }
      .block-magazin-teaser-dossier .teaser .teaser-header {
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
        hyphens: auto; }
    .block-magazin-teaser-dossier .teaser-magazine-dossier-full {
      padding: 0; }
      .block-magazin-teaser-dossier .teaser-magazine-dossier-full .teaser-image {
        padding: 0; }
    .block-magazin-teaser-dossier .container-fluid.container-fluid-no-padding {
      padding: 0; }
      .block-magazin-teaser-dossier .container-fluid.container-fluid-no-padding .row {
        margin: 0; }
    .block-magazin-teaser-dossier .teaser-magazine-dossier-full-copy-wrapper {
      margin: 0;
      padding-left: var(--grid-side-margin);
      padding-right: var(--grid-side-margin); } }
  @media (min-width: 764px) {
    .block-magazin-teaser-dossier {
      margin-bottom: 0; }
      .block-magazin-teaser-dossier .row:not(.align-right) .teaser-image {
        padding-right: 0; }
      .block-magazin-teaser-dossier .row.align-right .teaser-image {
        padding-left: 0; } }

.block-magazin-teaser-dossier + :not(.block-magazin-teaser-dossier) {
  margin-top: var(--spacing-half); }

.block-press-image-select .pdf-row-box {
  border-top: 1px solid var(--color-black);
  padding-top: var(--spacing-sixth);
  padding-bottom: var(--spacing-atom);
  border-bottom: 1px solid var(--color-black); }
  .block-press-image-select .pdf-row-box h5 {
    margin-bottom: var(--spacing-minimal); }
  .block-press-image-select .pdf-row-box .pdf-row-icons {
    display: flex; }
    .block-press-image-select .pdf-row-box .pdf-row-icons .press-shopping-cart-inline {
      margin-bottom: 0; }
    .block-press-image-select .pdf-row-box .pdf-row-icons > * + * {
      margin-left: var(--spacing-sixth); }

.block-press-image-select .pdf-row + .pdf-row .pdf-row-box {
  border-top: none; }

.block-logos {
  margin-top: 36px;
  background-color: white; }
  .block-logos .col-xs-12 > .box {
    border-top: 1px solid var(--color-light-grey); }
  .block-logos .row > div {
    padding-top: 18px; }

.block-taxes .teaser-lane li a {
  padding-right: 0; }

.block-taxes .teaser-lane-wrapper:after {
  content: "";
  display: block;
  width: 30px;
  height: 100%;
  right: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.001)), to(white));
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0.001), white);
  background: linear-gradient(to right, rgba(255, 255, 255, 0.001), white);
  position: absolute;
  z-index: 1; }

.block-service {
  position: relative;
  pointer-events: none;
  z-index: 1;
  margin-bottom: var(--spacing-sixth);
  padding-bottom: var(--spacing-half); }
  .block-service.block-service-dock-on-module-before {
    margin-top: calc((var(--spacing) + 40px + 39px) * -1); }
    @media (max-width: 1022px) {
      .block-service.block-service-dock-on-module-before {
        margin-top: calc((var(--spacing) + 20px + 39px) * -1); } }
    @media (max-width: 762px) {
      .block-service.block-service-dock-on-module-before {
        margin-top: calc((var(--spacing)) * -1); } }
  @media (min-width: 763px) {
    .block-service {
      margin-bottom: var(--spacing-half);
      padding-bottom: 0;
      border-bottom: none;
      margin-top: calc((var(--spacing)) * -1); }
      .block-service.block-service-dock-on-module-before {
        position: relative;
        z-index: 2; } }
  @media (min-width: 763px) {
    .block-service .only-mobile {
      display: none !important; } }
  @media (max-width: 762px) {
    .block-service .only-desktop {
      display: none !important; } }
  @media (max-width: 762px) {
    .block-service .box {
      display: flex;
      margin: 0 -.2em; }
      .block-service .box > a {
        margin: 0 .2em;
        flex: 1; } }
  .block-service a {
    pointer-events: all; }

.block-live-section .block {
  top: 0 !important;
  margin-bottom: 0 !important; }

.block-live {
  margin-bottom: var(--spacing-half); }
  .block-live .block-event-header-highlight-text {
    height: calc(0.5625 * 1280px);
    min-height: 700px; }
    @media (max-width: 1438px) {
      .block-live .block-event-header-highlight-text {
        min-height: 56.25vw; } }
    @media (max-width: 1022px) {
      .block-live .block-event-header-highlight-text {
        height: 90vw; } }
    @media (max-width: 762px) {
      .block-live .block-event-header-highlight-text {
        height: 80vh;
        max-height: 500px; } }
    .block-live .block-event-header-highlight-text h1, .block-live .block-event-header-highlight-text .Untertitel {
      overflow: hidden;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2; }
  .block-live .block-event-header-highlight {
    top: 0;
    margin-bottom: 0; }
    .block-live .block-event-header-highlight .alert {
      right: var(--gutter-width); }
  .block-live.isLive .external-content-play-btn .button-icon {
    color: red; }

.inactive-play-button .external-content-play-btn {
  opacity: 0.7;
  pointer-events: none;
  cursor: default; }

.inactive-play-button .external-content-play-btn span {
  opacity: 0.5; }

.schedule-container {
  position: relative;
  padding-left: var(--gutter-width); }
  @media (max-width: 1022px) {
    .schedule-container {
      padding-left: calc(var(--gutter-width) * 2); } }

.schedule-linebox {
  border-right: 2px solid black;
  margin-top: 11px;
  height: 100%;
  float: left; }

.schedule-bullet {
  position: absolute;
  display: inline-block;
  left: -9px;
  top: 7.5px;
  width: 18px;
  height: 18px; }
  @media (max-width: 762px) {
    .schedule-bullet {
      top: 3px; } }
  .schedule-bullet-end {
    top: auto;
    bottom: -14px; }

@keyframes jump {
  0% {
    top: 0; }
  50% {
    top: 20px; }
  100% {
    top: 0; } }

.block-home-phase1 * {
  hyphens: none !important; }

.block-home-phase1 h1 {
  hyphens: none !important; }

.block-home-phase1 h2 {
  font-family: "JoannaNova", Georgia, serif;
  font-weight: 300;
  font-style: normal;
  hyphens: none !important; }
  .block-home-phase1 h2 strong {
    font-family: "JoannaNova", Georgia, serif;
    font-weight: 400; }

.block-home-phase1 .lazy-media-info-container-fluid {
  display: none; }

.block-home-phase1 .block-home-rectangle {
  border: solid 2px black;
  height: 0;
  padding-bottom: 100%; }

.block-home-phase1 .lazy-media-inline .height-container {
  padding-bottom: 100% !important; }
  .block-home-phase1 .lazy-media-inline .height-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.block-home-phase1 .button-wrapper {
  width: 100%; }

.block-home-phase1 .block-home-phase1-head h1 {
  margin-top: 0;
  margin-bottom: 30px; }
  @media (min-width: 1023px) {
    .block-home-phase1 .block-home-phase1-head h1 {
      margin-top: 70px;
      margin-bottom: 110px; } }

.block-home-phase1 .block-home-phase1-head .block-home-phase1-scroll-animation {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 25px;
  margin-bottom: 50px; }
  @media screen and (prefers-reduced-motion: no-preference) {
    .block-home-phase1 .block-home-phase1-head .block-home-phase1-scroll-animation {
      animation: jump 2.5s infinite; } }
  @media (min-width: 1023px) {
    .block-home-phase1 .block-home-phase1-head .block-home-phase1-scroll-animation {
      margin-bottom: 120px; } }

@media (min-width: 1023px) {
  .block-home-phase1 .block-home-phase1-white .first_text_right {
    margin-top: 45px; } }

.block-home-phase1 .block-home-phase1-white .big-rect {
  position: relative;
  z-index: 1; }
  .block-home-phase1 .block-home-phase1-white .big-rect .block-home-rectangle {
    position: absolute;
    width: 100%;
    top: -20px; }
  @media (min-width: 1023px) {
    .block-home-phase1 .block-home-phase1-white .big-rect .block-home-rectangle {
      top: -200px; } }

.block-home-phase1 .block-home-phase1-white .big_image_right {
  margin-top: 60px; }
  @media (min-width: 1023px) {
    .block-home-phase1 .block-home-phase1-white .big_image_right {
      margin-top: 0; } }

.block-home-phase1 .block-home-phase1-white .small_image_left {
  position: relative; }
  @media (min-width: 1023px) {
    .block-home-phase1 .block-home-phase1-white .small_image_left {
      top: -80px; } }

.block-home-phase1 .block-home-phase1-white .center_text_left {
  margin-top: 60px; }
  @media (min-width: 1023px) {
    .block-home-phase1 .block-home-phase1-white .center_text_left {
      margin-top: 160px;
      margin-bottom: 40px; } }

.block-home-phase1 .block-home-phase1-white .small-rect {
  position: relative;
  z-index: -1; }
  .block-home-phase1 .block-home-phase1-white .small-rect .block-home-rectangle {
    position: absolute;
    width: 100%; }
  @media (min-width: 1023px) {
    .block-home-phase1 .block-home-phase1-white .small-rect .block-home-rectangle {
      top: -60px; } }

.block-home-phase1 .block-home-phase1-white .smallest_image_right {
  position: relative;
  margin-top: 30px; }
  @media (min-width: 1023px) {
    .block-home-phase1 .block-home-phase1-white .smallest_image_right {
      margin-top: 0px; } }

.block-home-phase1 .block-home-phase1-white .last_text_right {
  margin-top: 50px;
  margin-bottom: 50px; }
  @media (min-width: 1023px) {
    .block-home-phase1 .block-home-phase1-white .last_text_right {
      margin-top: 45px;
      margin-bottom: 90px; } }

.block-home-phase1 .block-home-phase1-black {
  position: relative;
  width: 100%; }
  .block-home-phase1 .block-home-phase1-black .block-home-rectangle {
    border: solid 2px white; }
  .block-home-phase1 .block-home-phase1-black-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: black;
    top: 20vw;
    bottom: 12vw; }
    @media (min-width: 1024px) {
      .block-home-phase1 .block-home-phase1-black-background {
        top: 17vw;
        bottom: 14vw; } }
    @media (min-width: 1440px) {
      .block-home-phase1 .block-home-phase1-black-background {
        top: 210px;
        bottom: 190px; } }
  .block-home-phase1 .block-home-phase1-black .big-rect {
    position: relative;
    pointer-events: none; }
    .block-home-phase1 .block-home-phase1-black .big-rect .block-home-rectangle {
      position: absolute;
      width: 100%;
      top: -34px; }
    @media (min-width: 1023px) {
      .block-home-phase1 .block-home-phase1-black .big-rect .block-home-rectangle {
        top: -150px; } }
  .block-home-phase1 .block-home-phase1-black .small_image_left {
    position: relative;
    margin-top: 75px; }
    @media (min-width: 1023px) {
      .block-home-phase1 .block-home-phase1-black .small_image_left {
        margin-top: 130px; }
        .block-home-phase1 .block-home-phase1-black .small_image_left .lazy-media-inline {
          transform: translateY(40px); } }
  @media (min-width: 1023px) {
    .block-home-phase1 .block-home-phase1-black .final_small_image_left {
      margin-top: 20px; } }
  .block-home-phase1 .block-home-phase1-black .big-image .lazy-media-info-head, .block-home-phase1 .block-home-phase1-black .big-image .lazy-media-info-body {
    color: white; }
  .block-home-phase1 .block-home-phase1-black .big-image .lazy-media-info-head-border {
    background: #666; }

.block-home-phase1 .block-home-phase1-footer {
  padding-bottom: 40px; }
  @media (min-width: 1023px) {
    .block-home-phase1 .block-home-phase1-footer {
      padding-bottom: 40px; } }
  .block-home-phase1 .block-home-phase1-footer .accordion-small {
    margin-top: 20px; }
    .block-home-phase1 .block-home-phase1-footer .accordion-small[aria-expanded="true"] .icon-plus {
      transform: rotate(45deg); }
    .block-home-phase1 .block-home-phase1-footer .accordion-small-copy {
      height: 0;
      overflow: hidden;
      display: none; }
  .block-home-phase1 .block-home-phase1-footer-dot-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; }
  .block-home-phase1 .block-home-phase1-footer-dot {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 80px;
    width: 14px;
    height: 14px;
    background-color: var(--color-black); }

.block-event-header-highlight {
  position: relative;
  margin-bottom: -80px !important; }
  @media (max-width: 1022px) {
    .block-event-header-highlight {
      margin-bottom: -60px !important; } }
  .block-event-header-highlight figure {
    position: relative; }
  .block-event-header-highlight .alert {
    z-index: 99;
    position: absolute;
    right: var(--grid-side-margin);
    top: 35px; }
    @media (max-width: 1022px) {
      .block-event-header-highlight .alert {
        top: 15px; } }
  .block-event-header-highlight .height-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    padding-bottom: 0 !important; }
  .block-event-header-highlight-shadow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 66%;
    width: 100%;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 3%, #000000 83%);
    padding-bottom: 0 !important; }
  .block-event-header-highlight-text {
    z-index: 2;
    display: flex;
    position: relative;
    filter: invert(100%);
    min-height: calc(100vh - 120px);
    padding-bottom: 40px; }
    .block-event-header-highlight-text .row {
      width: 100%; }
    @media (max-width: 1022px) {
      .block-event-header-highlight-text {
        min-height: calc(80vh + 10px);
        padding-bottom: 20px; } }

.block-event-header-simple {
  position: relative;
  display: block;
  overflow: hidden;
  height: 100vw;
  margin-top: -55px; }
  @media (min-width: 763px) {
    .block-event-header-simple {
      min-height: auto;
      width: 100%;
      height: 65vh;
      max-height: 600px; } }
  .block-event-header-simple .special-5-1-height-half .height-container {
    padding-bottom: 0 !important;
    min-height: calc(200px - 50px - var(--gutter-width) * .5);
    height: calc(32.5vh - 5vh - var(--gutter-width) * .5);
    max-height: calc(300px - 50px - var(--gutter-width) * .5);
    margin-bottom: var(--gutter-width); }
  .block-event-header-simple .special-5-2-height-half .height-container {
    padding-bottom: 0 !important;
    min-height: calc(200px + 50px - var(--gutter-width) * .5);
    height: calc(32.5vh + 5vh - var(--gutter-width) * .5);
    max-height: calc(300px + 50px - var(--gutter-width) * .5); }
  .block-event-header-simple .special-5-3-height-half .height-container {
    padding-bottom: 0 !important;
    min-height: calc(200px + 50px - var(--gutter-width) * .5);
    height: calc(32.5vh + 5vh - var(--gutter-width) * .5);
    max-height: calc(300px + 50px - var(--gutter-width) * .5);
    margin-bottom: var(--gutter-width); }
  .block-event-header-simple .special-5-4-height-half .height-container {
    padding-bottom: 0 !important;
    min-height: calc(200px - 50px - var(--gutter-width) * .5);
    height: calc(32.5vh - 5vh - var(--gutter-width) * .5);
    max-height: calc(300px - 50px - var(--gutter-width) * .5); }
  .block-event-header-simple .event-header-simple-desktop {
    position: relative;
    display: none;
    padding-bottom: 0 !important;
    min-height: 400px;
    height: 65vh;
    max-height: 600px; }
    @media (min-width: 763px) {
      .block-event-header-simple .event-header-simple-desktop {
        display: block; } }
    .block-event-header-simple .event-header-simple-desktop .height-full .height-container {
      padding-bottom: 0 !important;
      min-height: 400px;
      height: 65vh;
      max-height: 600px; }
    .block-event-header-simple .event-header-simple-desktop .height-half .height-container {
      padding-bottom: 0 !important;
      min-height: calc(200px - var(--gutter-width) * .5);
      height: calc(32.5vh - var(--gutter-width) * .5);
      max-height: calc(300px - var(--gutter-width) *.5); }
    .block-event-header-simple .event-header-simple-desktop .height-half:first-child {
      margin-bottom: calc(var(--gutter-width)); }
  .block-event-header-simple .event-header-simple-mobile {
    max-width: 100%;
    overflow-x: hidden; }
    @media (min-width: 763px) {
      .block-event-header-simple .event-header-simple-mobile {
        display: none; } }
    .block-event-header-simple .event-header-simple-mobile .swiper-container {
      opacity: 0;
      transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      will-change: opacity; }
    .block-event-header-simple .event-header-simple-mobile .loaded .swiper-container {
      opacity: 1; }
    .block-event-header-simple .event-header-simple-mobile-shadow {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 33%;
      width: 100%;
      z-index: 2;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 3%, rgba(0, 0, 0, 0) 100%);
      padding-bottom: 0 !important; }
    .block-event-header-simple .event-header-simple-mobile .swiper-toggle-btn {
      position: absolute;
      display: block;
      top: 40px;
      left: 25px;
      z-index: 3;
      font-size: 30px;
      padding: 5px 5px; }
    .block-event-header-simple .event-header-simple-mobile .swiper-progress {
      position: absolute;
      top: 20px;
      left: 20px;
      right: 20px;
      height: 2px;
      z-index: 2;
      display: flex;
      flex-wrap: wrap; }
      .block-event-header-simple .event-header-simple-mobile .swiper-progress-item {
        position: relative;
        flex-grow: 1;
        margin: 5px;
        height: 100%;
        background: rgba(255, 255, 255, 0.35); }
        .block-event-header-simple .event-header-simple-mobile .swiper-progress-item-progress {
          position: absolute;
          width: 100%;
          height: 100%;
          background: transparent; }
      .block-event-header-simple .event-header-simple-mobile .swiper-progress .active * {
        background: white !important; }
      .block-event-header-simple .event-header-simple-mobile .swiper-progress .old * {
        transform: scale(1);
        background: white !important; }
    .block-event-header-simple .event-header-simple-mobile .event-header-simple-mobile {
      width: 100vw;
      height: 100vw; }
    .block-event-header-simple .event-header-simple-mobile .hitarea {
      background: transparent;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 3;
      cursor: pointer; }
    .block-event-header-simple .event-header-simple-mobile .swiper-slide {
      position: relative;
      width: 100%;
      height: 100vw; }
      .block-event-header-simple .event-header-simple-mobile .swiper-slide .image {
        position: absolute;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        top: 0;
        width: 100%;
        height: 100%; }
        .block-event-header-simple .event-header-simple-mobile .swiper-slide .image.swiper-lazy-loaded {
          opacity: 1; }
      .block-event-header-simple .event-header-simple-mobile .swiper-slide img, .block-event-header-simple .event-header-simple-mobile .swiper-slide video {
        position: absolute;
        object-fit: cover;
        height: 100%;
        width: 100%; }
        .block-event-header-simple .event-header-simple-mobile .swiper-slide img.swiper-lazy-loaded, .block-event-header-simple .event-header-simple-mobile .swiper-slide video.swiper-lazy-loaded {
          opacity: 1; }
      .block-event-header-simple .event-header-simple-mobile .swiper-slide video {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0; }

.block-event-header-simple .alert {
  z-index: 99;
  position: absolute;
  right: 35px;
  bottom: 35px; }
  @media (max-width: 1022px) {
    .block-event-header-simple .alert {
      right: 22px;
      bottom: 22px; } }

:root {
  --header-meta-height: 44px;
  --header-nav-height: 55px;
  --header-height: 55px; }
  @media (min-width: 763px) {
    :root {
      --header-nav-height: 76px;
      --header-height: 119px; } }

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  user-select: none; }
  header .logo {
    fill: var(--color-black); }
  header.nav-is-opening .nav-meta {
    border-bottom: 1px solid transparent; }
    header.nav-is-opening .nav-meta .opening-hours-line {
      display: none; }
  header.menu-nav-not-visible .nav-first {
    pointer-events: none; }
  header.nav-is-open {
    z-index: 4000; }
    header.nav-is-open .logo {
      pointer-events: none; }
  header .nav-meta {
    border-bottom: 1px solid var(--color-lightest-grey);
    transition: border 1.3s cubic-bezier(0.19, 1, 0.22, 1); }
    header .nav-meta .button-icon-simple {
      font-size: 40px;
      margin-right: 16px;
      line-height: 1.5; }
      header .nav-meta .button-icon-simple .button-label {
        top: -6px; }
      @media (min-width: 763px) {
        header .nav-meta .button-icon-simple {
          font-size: 28px; } }
    header .nav-meta .nav-bg {
      border: none; }
  header .nav-first {
    position: absolute;
    height: var(--header-nav-height);
    z-index: 3000; }
    header .nav-first .menu-nav .button-icon-simple {
      font-size: 42px; }
    header .nav-first .header-back span {
      line-height: 1.25; }
  header .nav-second {
    position: absolute;
    top: var(--header-nav-height);
    height: var(--header-nav-height);
    pointer-events: none; }
    header .nav-second .nav-second-wrapper {
      position: relative;
      width: 100%;
      height: 100%; }
      header .nav-second .nav-second-wrapper .current-menu-title {
        margin-top: 30px; }
  header .menu-search {
    position: absolute;
    right: var(--grid-side-margin);
    display: block;
    visibility: hidden;
    z-index: 1;
    margin-right: -4px; }
    header .menu-search a {
      text-decoration: none;
      color: black;
      display: inline-block; }
      header .menu-search a .button-label {
        position: relative;
        top: -14px;
        font-size: 13px;
        font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
        font-weight: 400; }
      header .menu-search a .icon-lupe {
        font-size: 42px; }
    @media (min-width: 763px) {
      header .menu-search {
        display: none !important; } }
  header .sub-menu-title {
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    text-align: center;
    pointer-events: none;
    display: none;
    opacity: 0;
    visibility: hidden;
    font-size: 20px;
    line-height: 0;
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900; }
    @media (min-width: 763px) {
      header .sub-menu-title {
        display: none !important; } }
  header .current-menu-title {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    pointer-events: none;
    font-size: 24px;
    line-height: 0;
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 400; }
    @media (min-width: 763px) {
      header .current-menu-title {
        font-size: 30px; } }
  header.menuHasImage {
    opacity: .5; }
  header .header-back {
    position: absolute;
    left: 0;
    top: 0;
    display: none; }
  header .header-close {
    position: absolute;
    left: 0;
    top: 7px;
    display: none; }
    header .header-close span {
      position: relative; }
    @media (min-width: 763px) {
      header .header-close {
        top: 13px; } }
  header .vue-initialize .header-close, header .vue-initialize .icon-close, header .vue-initialize .header-back {
    display: none; }

.skip-link {
  position: absolute;
  left: -1000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -9999; }

.skip-link:focus {
  position: fixed;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  overflow: visible;
  z-index: 9999;
  background-color: #FFF;
  /* Background color for visibility */
  color: #000;
  /* Text color for visibility */
  padding: 10px;
  text-align: center;
  font-size: 1.2em; }

.site-navigation-content-related, header {
  will-change: scroll-position, transform !important;
  transform: matrix(1, 0, 0, 1, 0, 0) !important;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) !important; }

.site-navigation-content-related {
  position: fixed;
  top: 64px; }
  @media (min-width: 763px) {
    .site-navigation-content-related {
      top: 118px; } }

.menu-nav {
  position: relative;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: row;
  will-change: scroll-position, top !important;
  transition: top 0.6s cubic-bezier(0.19, 1, 0.22, 1) !important; }

@media (max-width: 764px) {
  article {
    margin-top: 120px; }
  body.nav-sticky header {
    transform: matrix(1, 0, 0, 1, 0, 0) !important; }
  body.nav-sticky.nav-minified header {
    transform: matrix(1, 0, 0, 1, 0, -55) !important; }
  body.has-navigation-title article {
    margin-top: 180px; }
  body.has-navigation-title .nav-first {
    border-bottom: none; }
  body.has-navigation-title.nav-sticky .menu-nav {
    top: 55px !important; }
  body.has-navigation-title.nav-sticky .sub-menu-title {
    top: 82px !important; }
  body.has-navigation-title.nav-sticky header {
    transform: matrix(1, 0, 0, 1, 0, -55) !important; }
  body.has-navigation-title.nav-sticky.nav-minified header {
    transform: matrix(1, 0, 0, 1, 0, -130) !important; }
  body.nav-content-related article {
    margin-top: 160px; }
  body.nav-content-related .nav-first {
    border-bottom: none; }
  body.nav-content-related .nav-second {
    border-bottom: none; }
  body.nav-content-related.nav-minified header, body.nav-content-related.nav-minified .site-navigation-content-related {
    transform: matrix(1, 0, 0, 1, 0, -55) !important; }
  body.has-navigation-title.nav-content-related article {
    margin-top: 175px; }
  body.has-navigation-title.nav-content-related .site-navigation-content-related {
    top: 110px; }
  body.has-navigation-title.nav-content-related.nav-sticky header, body.has-navigation-title.nav-content-related.nav-sticky .site-navigation-content-related {
    transform: matrix(1, 0, 0, 1, 0, -55) !important; }
  body.has-navigation-title.nav-content-related.nav-sticky.nav-minified header, body.has-navigation-title.nav-content-related.nav-sticky.nav-minified .site-navigation-content-related {
    transform: matrix(1, 0, 0, 1, 0, -110) !important; }
  body.page-template-page-program-php.nav-content-related article {
    margin-top: 197px; }
  body.is-calendar-view:not(.nav-third-level) article {
    padding-top: 47px; }
  body.has-navigation-title.nav-content-related.nav-third-level article {
    margin-top: 222px; }
  body.page-template-page-program-php.has-navigation-title.nav-content-related.nav-third-level article {
    margin-top: 254px; } }

/*
body.nav-content-related.page-template-page-program
{
  &.nav-sticky
  {


	header,.site-navigation-content-related
	{
	  background: red;
	 // transform: matrix(1, 0, 0, 1, 0, -55) !important;
	}

	&.nav-minified
	{
	  header,.site-navigation-content-related
	  {
	//	transform: matrix(1, 0, 0, 1, 0, -55) !important;
	  }
	}
  }
}
*/
@media (min-width: 763px) {
  article {
    margin-top: 185px; }
  body.nav-content-related .nav-first {
    border-bottom: none; }
  body.nav-content-related article {
    margin-top: 235px; }
  body.page-template-page-program-php.nav-content-related article {
    margin-top: 257px; }
  body.nav-sticky .site-navigation-content-related, body.nav-sticky header {
    transform: matrix(1, 0, 0, 1, 0, 0) !important; }
  body.nav-sticky.nav-minified .site-navigation-content-related, body.nav-sticky.nav-minified header {
    transform: matrix(1, 0, 0, 1, 0, -119) !important; } }

.page-template-page-white-modal article,
.page-template-page-dark-modal article {
  margin-top: 20px !important; }

:root {
  --site-nav-col-width: 100vw;
  --site-nav-padding-right: 70px; }
  @media (min-width: 763px) {
    :root {
      --site-nav-col-width: 50vw; } }
  @media (min-width: 960px) {
    :root {
      --site-nav-col-width: 480px; } }

.site-navigation, .calendar-filter, .calendar-date-picker {
  display: none; }
  .site-navigation *, .calendar-filter *, .calendar-date-picker * {
    user-select: none; }
  .site-navigation a, .calendar-filter a, .calendar-date-picker a {
    /*click areas bigger*/ }
    .site-navigation a:before, .calendar-filter a:before, .calendar-date-picker a:before {
      /*
		display: block;
		content: "";
		position: absolute;
		width: 100%;
		height: 58px;
		
		@include min-screen($screen-sm-min) {
			height: 46px;
		}
		opacity: .1;

       */ }

.site-navigation-global-background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 100;
  display: none; }

.site-navigation, .calendar-filter, .calendar-date-picker {
  position: fixed;
  left: 0;
  top: 0;
  user-select: none;
  z-index: 2000;
  height: 100%;
  display: none;
  pointer-events: none; }
  @media (max-width: 763px) {
    .site-navigation, .calendar-filter, .calendar-date-picker {
      overflow: hidden;
      width: 100%; } }
  .site-navigation ul, .calendar-filter ul, .calendar-date-picker ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%; }
  .site-navigation li, .calendar-filter li, .calendar-date-picker li {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%; }
    .site-navigation li a, .calendar-filter li a, .calendar-date-picker li a {
      width: 100%;
      font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
      font-weight: 400;
      text-decoration: none;
      color: var(--color-black); }
      .site-navigation li a:hover, .calendar-filter li a:hover, .calendar-date-picker li a:hover {
        text-decoration: underline; }
  .site-navigation .site-navigation-first-top #menu-main-1 > li.current_page_parent > a,
  .site-navigation .current_page_ancestor > a, .site-navigation .current_page_item > a, .site-navigation .current-menu-item > a, .calendar-filter .site-navigation-first-top #menu-main-1 > li.current_page_parent > a,
  .calendar-filter .current_page_ancestor > a, .calendar-filter .current_page_item > a, .calendar-filter .current-menu-item > a, .calendar-date-picker .site-navigation-first-top #menu-main-1 > li.current_page_parent > a,
  .calendar-date-picker .current_page_ancestor > a, .calendar-date-picker .current_page_item > a, .calendar-date-picker .current-menu-item > a {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900; }
  .site-navigation a.active, .site-navigation a.init-active, .calendar-filter a.active, .calendar-filter a.init-active, .calendar-date-picker a.active, .calendar-date-picker a.init-active {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900; }
  .site-navigation .current_page_item > a, .calendar-filter .current_page_item > a, .calendar-date-picker .current_page_item > a {
    cursor: default;
    pointer-events: none; }
  .site-navigation-first, .calendar-filter-first, .calendar-date-picker-first {
    padding-top: var(--header-height);
    width: var(--site-nav-col-width);
    height: 100vh;
    z-index: 1;
    background: var(--color-invert); }
    .site-navigation-first nav, .calendar-filter-first nav, .calendar-date-picker-first nav {
      padding-left: var(--grid-side-margin);
      padding-top: 40px;
      padding-bottom: 20px;
      height: calc(100% - 10px);
      background: var(--color-invert);
      overflow-x: hidden;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      /*
	  &::-webkit-scrollbar {
		width: 0 !important;
		background-color: transparent;
	  }
      */ }
      @media (max-width: 762px) {
        .site-navigation-first nav, .calendar-filter-first nav, .calendar-date-picker-first nav {
          height: calc(100% - 55px); } }
  @media (max-width: 762px) and (max-height: 667px) {
    .site-navigation-first nav, .calendar-filter-first nav, .calendar-date-picker-first nav {
      padding-top: 0; } }
    .site-navigation-first-top, .calendar-filter-first-top, .calendar-date-picker-first-top {
      margin-bottom: 20px;
      padding-right: var(--site-nav-padding-right); }
      @media (min-width: 763px) {
        .site-navigation-first-top, .calendar-filter-first-top, .calendar-date-picker-first-top {
          margin-bottom: 40px; } }

@media (max-width: 762px) and (max-height: 667px) {
  .site-navigation-first-top, .calendar-filter-first-top, .calendar-date-picker-first-top {
    margin-bottom: 20px; } }
      .site-navigation-first-top li a,
      .site-navigation-first-top li .button-label, .calendar-filter-first-top li a,
      .calendar-filter-first-top li .button-label, .calendar-date-picker-first-top li a,
      .calendar-date-picker-first-top li .button-label {
        background-position: left bottom !important; }
      .site-navigation-first-top a, .calendar-filter-first-top a, .calendar-date-picker-first-top a {
        font-size: 36px;
        line-height: 58px; }
        @media (min-width: 763px) {
          .site-navigation-first-top a, .calendar-filter-first-top a, .calendar-date-picker-first-top a {
            font-size: 36px;
            line-height: 50px; } }
      .site-navigation-first-top > *, .calendar-filter-first-top > *, .calendar-date-picker-first-top > * {
        width: 100%; }
    .site-navigation-first-bottom, .calendar-filter-first-bottom, .calendar-date-picker-first-bottom {
      padding-right: var(--site-nav-padding-right);
      margin-bottom: 40px; }

@media (max-width: 762px) and (max-height: 667px) {
  .site-navigation-first-bottom, .calendar-filter-first-bottom, .calendar-date-picker-first-bottom {
    margin-bottom: 5px; } }
      .site-navigation-first-bottom li a,
      .site-navigation-first-bottom li .button-label, .calendar-filter-first-bottom li a,
      .calendar-filter-first-bottom li .button-label, .calendar-date-picker-first-bottom li a,
      .calendar-date-picker-first-bottom li .button-label {
        background-position: left bottom !important; }
      .site-navigation-first-bottom a, .calendar-filter-first-bottom a, .calendar-date-picker-first-bottom a {
        font-size: 22px !important;
        line-height: 40px !important; }
        @media (min-width: 763px) {
          .site-navigation-first-bottom a, .calendar-filter-first-bottom a, .calendar-date-picker-first-bottom a {
            font-size: 24px !important;
            line-height: 40px !important; } }
      .site-navigation-first-bottom > *, .calendar-filter-first-bottom > *, .calendar-date-picker-first-bottom > * {
        width: 100%; }
    .site-navigation-first-footer, .calendar-filter-first-footer, .calendar-date-picker-first-footer {
      padding-right: var(--site-nav-padding-right);
      text-align: left;
      font-size: 12px;
      line-height: 16px;
      margin-bottom: 44px;
      font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
      font-weight: 400;
      display: none;
      opacity: 0; }
      .site-navigation-first-footer strong, .calendar-filter-first-footer strong, .calendar-date-picker-first-footer strong {
        letter-spacing: .1em;
        text-transform: uppercase;
        font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
        font-weight: 900; }
      @media (max-width: 762px) {
        .site-navigation-first-footer, .calendar-filter-first-footer, .calendar-date-picker-first-footer {
          padding-right: var(--grid-side-margin); } }
      .site-navigation-first-footer a, .calendar-filter-first-footer a, .calendar-date-picker-first-footer a {
        display: inline-block;
        color: var(--color-black);
        height: auto; }
        .site-navigation-first-footer a:before, .calendar-filter-first-footer a:before, .calendar-date-picker-first-footer a:before {
          height: auto; }
      .site-navigation-first-footer .button-icon-simple, .calendar-filter-first-footer .button-icon-simple, .calendar-date-picker-first-footer .button-icon-simple {
        position: relative;
        font-size: 32px;
        margin-left: 5px;
        margin-right: 5px; }
  .site-navigation-first-sticky, .calendar-filter-first-sticky, .calendar-date-picker-first-sticky {
    position: relative;
    display: flex;
    width: calc(100% - 10px);
    padding: 0;
    margin-left: -8px; }
    .site-navigation-first-sticky .button-icon-simple, .calendar-filter-first-sticky .button-icon-simple, .calendar-date-picker-first-sticky .button-icon-simple {
      position: relative;
      font-size: 32px;
      margin-left: 5px;
      margin-right: 5px; }
    .site-navigation-first-sticky .button-nav-service, .calendar-filter-first-sticky .button-nav-service, .calendar-date-picker-first-sticky .button-nav-service {
      position: absolute !important;
      top: 4px;
      right: 0; }
  .site-navigation-image, .calendar-filter-image, .calendar-date-picker-image {
    position: absolute;
    top: 0;
    left: calc(1 * var(--site-nav-col-width));
    width: calc(100% - calc(1 * var(--site-nav-col-width)));
    height: 100%;
    z-index: -2; }
    .site-navigation-image-wrapper, .calendar-filter-image-wrapper, .calendar-date-picker-image-wrapper {
      position: relative;
      width: 100%;
      height: 100%; }
      .site-navigation-image-wrapper img, .calendar-filter-image-wrapper img, .calendar-date-picker-image-wrapper img {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        visibility: hidden; }
  .site-navigation .site-navigation-sub-menu-wrapper, .calendar-filter .site-navigation-sub-menu-wrapper, .calendar-date-picker .site-navigation-sub-menu-wrapper {
    display: inherit;
    width: 100%;
    height: 100%; }
    .site-navigation .site-navigation-sub-menu-wrapper *, .calendar-filter .site-navigation-sub-menu-wrapper *, .calendar-date-picker .site-navigation-sub-menu-wrapper * {
      user-select: none; }
    .site-navigation .site-navigation-sub-menu-wrapper .site-navigation-sub-menu-head, .calendar-filter .site-navigation-sub-menu-wrapper .site-navigation-sub-menu-head, .calendar-date-picker .site-navigation-sub-menu-wrapper .site-navigation-sub-menu-head {
      position: relative;
      display: inherit;
      width: 100%;
      height: 100%; }
      .site-navigation .site-navigation-sub-menu-wrapper .site-navigation-sub-menu-head .icon-arrow-rechts, .calendar-filter .site-navigation-sub-menu-wrapper .site-navigation-sub-menu-head .icon-arrow-rechts, .calendar-date-picker .site-navigation-sub-menu-wrapper .site-navigation-sub-menu-head .icon-arrow-rechts {
        position: absolute;
        top: 15px;
        left: calc(var(--site-nav-col-width) + 22px - var(--grid-side-margin) - var(--site-nav-padding-right)); }
        @media (min-width: 763px) {
          .site-navigation .site-navigation-sub-menu-wrapper .site-navigation-sub-menu-head .icon-arrow-rechts, .calendar-filter .site-navigation-sub-menu-wrapper .site-navigation-sub-menu-head .icon-arrow-rechts, .calendar-date-picker .site-navigation-sub-menu-wrapper .site-navigation-sub-menu-head .icon-arrow-rechts {
            top: 7px; } }
  .site-navigation .sub-menu-wrapper-position-holder, .calendar-filter .sub-menu-wrapper-position-holder, .calendar-date-picker .sub-menu-wrapper-position-holder {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--site-nav-col-width);
    height: 100%;
    display: none;
    z-index: 0; }
    @media (min-width: 763px) {
      .site-navigation .sub-menu-wrapper-position-holder, .calendar-filter .sub-menu-wrapper-position-holder, .calendar-date-picker .sub-menu-wrapper-position-holder {
        overflow: hidden;
        left: var(--site-nav-col-width); } }
    .site-navigation .sub-menu-wrapper-position-holder.active, .calendar-filter .sub-menu-wrapper-position-holder.active, .calendar-date-picker .sub-menu-wrapper-position-holder.active {
      z-index: 1; }
  .site-navigation .sub-menu-wrapper, .calendar-filter .sub-menu-wrapper, .calendar-date-picker .sub-menu-wrapper {
    position: relative;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 60px;
    padding-left: var(--grid-side-margin);
    padding-right: var(--site-nav-padding-right);
    width: 100%;
    height: 100%;
    overflow-x: visible;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--color-invert); }

@media (max-width: 762px) and (max-height: 667px) {
  .site-navigation .sub-menu-wrapper, .calendar-filter .sub-menu-wrapper, .calendar-date-picker .sub-menu-wrapper {
    padding-top: calc(var(--header-height));
    padding-bottom: 0; } }
  .site-navigation .sub-menu a, .calendar-filter .sub-menu a, .calendar-date-picker .sub-menu a {
    font-size: 22px !important;
    line-height: 40px !important;
    font-weight: 400; }
    @media (min-width: 763px) {
      .site-navigation .sub-menu a, .calendar-filter .sub-menu a, .calendar-date-picker .sub-menu a {
        font-size: 24px !important;
        line-height: 40px !important; } }

footer {
  width: 100%;
  padding-top: var(--spacing-third);
  margin-top: var(--spacing-third);
  max-width: 100%;
  overflow-x: hidden;
  border-top: 1px solid var(--color-light-grey);
  color: var(--color-black);
  background: var(--color-invert); }
  footer * {
    -webkit-user-drag: none; }
  footer #footertop {
    padding-bottom: 26px; }
    footer #footertop h6, footer #footertop .HourLabel {
      font-size: 16px;
      margin-bottom: 0;
      display: block;
      text-transform: unset;
      letter-spacing: initial; }
      footer #footertop h6:after, footer #footertop .HourLabel:after {
        display: none; }
    footer #footertop p, footer #footertop .HourText {
      font-size: 15px;
      display: inline-block;
      letter-spacing: initial;
      font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
      font-weight: 400; }
      @media (max-width: 762px) {
        footer #footertop p, footer #footertop .HourText {
          font-size: 14px;
          padding-bottom: 20px; } }
    footer #footertop .modal p {
      display: block; }
    footer #footertop a.HourText {
      padding-bottom: 0; }
    @media (max-width: 762px) {
      footer #footertop .opening-hours-line {
        padding-bottom: 20px; } }
    footer #footertop .icon-arrow_standart {
      display: none;
      text-transform: unset; }
    footer #footertop a {
      color: var(--black); }
  footer #footercenter {
    background-color: var(--color-even-more-light-grey);
    padding: 25px 0 var(--spacing-atom); }
    footer #footercenter #footercenter-meta {
      padding: var(--spacing-sixth) 0; }
    footer #footercenter #footercenter-social {
      padding: var(--spacing-sixth) 0 var(--spacing-half); }
      @media (max-width: 762px) {
        footer #footercenter #footercenter-social {
          padding: var(--spacing-sixth) 0 var(--spacing-sixth); } }
    footer #footercenter #footercenter-secondary {
      padding: 10px 0; }
      @media (max-width: 762px) {
        footer #footercenter #footercenter-secondary {
          padding: var(--spacing-sixth) 0 var(--spacing-atom); } }
      footer #footercenter #footercenter-secondary a {
        font-size: 15px;
        line-height: 0.7; }
        @media (max-width: 762px) {
          footer #footercenter #footercenter-secondary a {
            font-size: 12px; } }
  footer #footerbottom {
    padding: var(--spacing-third) 0 var(--spacing-half) 0; }
    footer #footerbottom h6 {
      font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
      font-weight: 400;
      font-weight: normal;
      font-size: 15px;
      padding-bottom: var(--spacing-minimal); }
      @media (max-width: 762px) {
        footer #footerbottom h6 {
          font-size: 12px; } }
    @media (max-width: 762px) {
      footer #footerbottom img {
        width: 40%;
        height: auto; } }
  footer ul {
    width: 100%;
    list-style: none; }
    footer ul li {
      display: inline-block;
      margin-left: .5em;
      margin-right: .5em;
      margin-bottom: .4em; }
      footer ul li a {
        text-decoration: none;
        font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
        font-weight: 400;
        font-size: 16px;
        text-decoration: none;
        color: var(--black);
        line-height: 2.5; }
  footer .footer-up {
    padding: 18px 0;
    text-align: center; }
    footer .footer-up button {
      font-size: 50px;
      background-color: var(--color-black);
      color: var(--color-invert); }
  footer #menu-footer-secondary li {
    margin-bottom: 1em; }
    footer #menu-footer-secondary li a {
      font-size: 15px;
      color: var(--color-medium-grey); }
      @media (max-width: 762px) {
        footer #menu-footer-secondary li a {
          font-size: 12px; } }
  footer .footer-logo {
    width: 245px;
    margin-right: 12px;
    display: inline-block; }
    @media (max-width: 762px) {
      footer .footer-logo {
        margin-right: 0; } }

.sharer {
  display: none;
  position: absolute;
  width: 400px;
  max-width: 100vw;
  top: 40px;
  left: 50%;
  margin-left: -200px;
  background-color: white;
  border-radius: 3px;
  padding: 40px;
  z-index: 1;
  color: black;
  font-size: 18px;
  z-index: 1;
  -webkit-box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.28);
  box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.28); }
  @media (max-width: 764px) {
    .sharer {
      width: 100%;
      left: 5vw;
      width: 90vw;
      /*top: $global-header-height-mobile;*/
      right: 5vw;
      margin-left: 0;
      top: 50%;
      transform: translate(0, -50%); } }
  @media (max-width: 520px) {
    .sharer {
      top: 70%; } }
  .sharer strong {
    text-align: center;
    display: block;
    padding-top: 1em;
    padding-bottom: 1.8em; }
  .sharer tr {
    border-width: 1px; }
  .sharer th {
    text-align: left; }
  .sharer th, .sharer td {
    padding: .8em; }
  .sharer tr:last-child {
    border: none; }
  .sharer a[class^='sharer--'] {
    position: relative;
    top: 7px; }
  .sharer .sharer--facebook {
    content: url(/pods/sharer/assets/facebook.svg); }
  .sharer .sharer--twitter {
    content: url(/pods/sharer/assets/twitter.svg); }
  .sharer .sharer--email {
    content: url(/pods/sharer/assets/email.svg); }
  .sharer .sharer--permalink {
    content: url(/pods/sharer/assets/permalink.svg); }
  .sharer .sharer--print {
    content: url(/pods/sharer/assets/print.svg); }
  .sharer-close {
    cursor: pointer;
    transform: rotate(45deg);
    width: 18px;
    height: 18px;
    margin-top: -20px;
    margin-right: 20px;
    float: right;
    content: url(/blocks/block-accordion/assets/plus.svg);
    position: absolute;
    right: 0; }

calendardetail {
  visibility: hidden; }

body[class*="single-event"] .meta {
  color: var(--color-black); }

@media (max-width: 762px) {
  body[class*="single-event"] .block-event-body .container-fluid {
    padding-left: 0;
    padding-right: 0;
    overflow: hidden; }
    body[class*="single-event"] .block-event-body .container-fluid .row .row {
      padding-left: var(--grid-side-margin);
      padding-right: var(--grid-side-margin); } }

@media (min-width: 764px) {
  body[class*="single-event"] .block-event-highlight .event-button-block {
    margin-top: 30px; } }

body[class*="single-event"] .event-footer a {
  width: 100%;
  text-align: center;
  margin: 0; }

@media (min-width: 763px) {
  body[class*="single-event"] .event-footer {
    position: -webkit-sticky;
    /* Safari */
    position: sticky;
    top: 0;
    padding-top: var(--spacing-third); }
    body[class*="single-event"] .event-footer a {
      margin-top: .5em; } }

@media (max-width: 762px) {
  body[class*="single-event"] .event-footer {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 22;
    background-color: var(--color-invert);
    padding: var(--gutter-width) 0;
    margin: 0;
    border-top: 1px solid var(--color-light-grey);
    transition: all .5s ease 0s; }
    body[class*="single-event"] .event-footer.mobile-visible {
      bottom: 0; } }

body[class*="single-event"] .event-body {
  padding-bottom: var(--spacing-sixth);
  border-bottom: 1px solid var(--color-lightest-grey); }

body[class*="single-event"] .event-times-row {
  padding: var(--spacing-third) 0 var(--spacing-sixth);
  border-bottom: 1px solid var(--color-lightest-grey); }
  body[class*="single-event"] .event-times-row a.button-icon-simple {
    float: right;
    font-size: 32px; }

body[class*="single-event"].single-event-sequence .event-meta-row {
  display: none; }

.isPast, .isCanceled {
  opacity: .7; }

.isCanceled * {
  text-decoration: line-through; }

.event-times-repository--future {
  height: 0px;
  overflow: hidden;
  display: none; }
  .event-times-repository--future > a {
    opacity: 0; }

.kalenderblatt {
  width: 65px;
  border: 2px solid black;
  display: inline-block;
  text-align: center;
  padding: .6em 1em .2em;
  margin-right: calc(var(--gutter-width) / 2);
  margin-top: calc(var(--gutter-width) / 2);
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transition: 0.3s; }
  @media (min-width: 763px) {
    .kalenderblatt {
      width: 72px; } }
  .kalenderblatt:hover {
    background-color: var(--color-black);
    color: var(--color-invert); }
  .kalenderblatt--past {
    opacity: .5;
    cursor: initial; }
    .kalenderblatt--past:hover {
      background-color: inherit;
      color: inherit; }
  .kalenderblatt--day {
    font-size: 28px; }
    @media (max-width: 762px) {
      .kalenderblatt--day {
        font-size: 24px; } }
  .kalenderblatt--month {
    font-size: 22px;
    text-transform: uppercase; }
    @media (max-width: 762px) {
      .kalenderblatt--month {
        font-size: 18px; } }
  .kalenderblatt--time {
    font-size: 14px;
    line-height: 2; }
    @media (max-width: 762px) {
      .kalenderblatt--time {
        font-size: 12px; } }

@media (min-width: 763px) {
  .block-event-body.block-event-simple {
    margin-top: -40px; } }

.calendar-date-picker .close {
  position: absolute;
  z-index: 11111;
  font-size: 42px;
  margin-top: -48px; }
  @media (min-width: 1023px) {
    .calendar-date-picker .close {
      margin-top: -63px; } }

.calendar-date-picker-main {
  padding-top: var(--header-height);
  width: var(--site-nav-col-width);
  height: 100vh;
  z-index: 1;
  background: var(--color-darkest-darkest-grey);
  color: var(--color-invert);
  padding-left: var(--grid-side-margin);
  padding-right: var(--grid-side-margin);
  margin-left: 0;
  margin-bottom: 40px;
  padding-bottom: 150px;
  overflow-x: visible;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }

.calendar-date-picker-main-hl {
  margin-top: 40px;
  margin-bottom: 30px; }
  @media (max-height: 375px) {
    .calendar-date-picker-main-hl {
      margin-top: 0;
      margin-bottom: 10px; } }

.calendar-date-picker-main-bottom {
  margin-top: 10px;
  margin-bottom: 60px; }
  .calendar-date-picker-main-bottom a {
    color: var(--color-invert); }

.calendar-date-picker .vc-bg-white {
  background-color: var(--color-darkest-darkest-grey); }

.calendar-date-picker .vc-text-gray-600 {
  color: white; }

.calendar-date-picker .vc-text-light-grey-900 {
  color: #333333; }

.calendar-date-picker .vc-container {
  border-width: 0;
  border-radius: 0;
  --header-padding: 0 10px 20px 10px;
  --title-padding: 0px 8px;
  --arrows-padding: 0px 20px;
  --day-content-bg-color-focus:var(--color-medium-grey);
  --day-content-bg-color-hover:var(--color-medium-grey);
  --day-content-height: 40px;
  --day-content-width: 40px; }
  @media (min-width: 1023px) {
    .calendar-date-picker .vc-container {
      margin-left: -10px; } }
  .calendar-date-picker .vc-container .vc-title {
    text-decoration: none;
    position: relative;
    margin-top: 3px; }
  .calendar-date-picker .vc-container .vc-popover-content-wrapper {
    filter: invert(100%); }
    .calendar-date-picker .vc-container .vc-popover-content-wrapper .vc-border-blue-600 {
      border-color: cyan !important; }
    .calendar-date-picker .vc-container .vc-popover-content-wrapper .focus\:vc-border-blue-600:focus {
      border-color: cyan; }
    .calendar-date-picker .vc-container .vc-popover-content-wrapper .vc-text-blue-900 {
      color: black; }
  .calendar-date-picker .vc-container .vc-weeks * {
    transition: all .3s !important; }
  .calendar-date-picker .vc-container * {
    border-radius: 0; }
  .calendar-date-picker .vc-container * {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900; }
  .calendar-date-picker .vc-container svg path {
    fill: var(--color-invert); }
  .calendar-date-picker .vc-container .vc-border-blue-600 {
    border-color: red !important; }
  .calendar-date-picker .vc-container .focus\:vc-border-blue-600:focus {
    border-color: red; }
  .calendar-date-picker .vc-container .hover\:vc-bg-gray-900:hover {
    background-color: var(--color-medium-grey); }
  .calendar-date-picker .vc-container .vc-bg-blue-100 {
    background-color: var(--color-invert); }
  .calendar-date-picker .vc-container .vc-border-blue-700 {
    border-color: white; }
  .calendar-date-picker .vc-container .vc-text-gray-800 {
    color: #eee; }
  .calendar-date-picker .vc-container .vc-day {
    color: white; }
  .calendar-date-picker .vc-container .vc-day-content {
    outline: none !important; }
    .calendar-date-picker .vc-container .vc-day-content .vc-day-content:focus * {
      color: red !important; }
  .calendar-date-picker .vc-container .vc-highlight {
    width: var(--day-content-width);
    height: var(--day-content-width); }
  .calendar-date-picker .vc-container .vc-text-light-grey-900 {
    color: #555; }
  .calendar-date-picker .vc-container .is-today .highlight-today-content {
    color: #fff; }
  .calendar-date-picker .vc-container .is-today .highlight-today-background {
    background: #000; }
  .calendar-date-picker .vc-container .vc-day .vc-highlights.vc-day-layer {
    opacity: .5; }
  .calendar-date-picker .vc-container .vc-text-gray-500 {
    color: #ccc; }
  .calendar-date-picker .vc-container .vc-text-sm {
    font-size: inherit; }
  .calendar-date-picker .vc-container .vc-text-blue-900 {
    color: white; }
  .calendar-date-picker .vc-container .vc-bg-blue-200 {
    background-color: var(--color-medium-grey); }
  .calendar-date-picker .vc-container .vc-bg-blue-600 {
    background-color: white; }
  .calendar-date-picker .vc-container .vc-dot {
    position: relative;
    top: -6px; }
  .calendar-date-picker .vc-container .vc-dot {
    border-radius: 0; }
  .calendar-date-picker .vc-container .vc-dot {
    background-color: red; }
  .calendar-date-picker .vc-container .vc-highlights .vc-dot {
    background-color: white; }
  .calendar-date-picker .vc-container .vc-rounded-full {
    border-radius: 0; }

.calendar-date-picker .vc-arrows-container .hover\:vc-opacity-50:hover {
  opacity: 1; }

.calendar-date-picker .vc-arrows-container .hover\:vc-bg-gray-300:hover {
  background-color: #444; }

.calendar-date-picker .vc-popover-content-wrapper .vc-bg-gray-800 {
  background-color: var(--color-darkest-darkest-grey); }

.calendar-date-picker .vc-popover-content-wrapper svg * {
  stroke: var(--color-invert) !important;
  fill: var(--color-invert) !important; }

.calendar-date-picker .button-wrapper {
  width: var(--site-nav-col-width);
  display: flex;
  text-align: center;
  justify-content: center;
  position: fixed;
  background: var(--color-darkest-darkest-grey);
  color: var(--color-invert);
  bottom: 0px;
  padding: 20px;
  z-index: 23;
  border-top: solid 1px rgba(226, 226, 226, 0.8); }
  .calendar-date-picker .button-wrapper button.black {
    background: var(--color-invert);
    color: var(--color-darkest-darkest-grey); }
  @media (min-width: 1023px) {
    .calendar-date-picker .button-wrapper {
      border-top: none;
      position: -webkit-sticky;
      position: sticky; } }

.calendar-date-picker.isFirefox .button-wrapper {
  position: fixed;
  bottom: 0; }

.calendar-filter .calendar-filter-menu-nav {
  position: absolute;
  z-index: 11111;
  height: auto;
  top: 8px;
  padding-left: var(--grid-side-margin); }
  @media (min-width: 763px) {
    .calendar-filter .calendar-filter-menu-nav {
      top: 56px; } }
  .calendar-filter .calendar-filter-menu-nav .header-back {
    position: absolute;
    left: 0;
    top: -3px;
    margin-left: 20px;
    display: none;
    font-size: 42px; }
  .calendar-filter .calendar-filter-menu-nav .close {
    font-size: 42px; }

.calendar-filter .calendar-date-picker-main-hl {
  position: absolute;
  margin-top: 90px;
  z-index: 4;
  color: var(--color-invert) !important;
  margin-bottom: 0;
  padding-left: var(--grid-side-margin);
  padding-right: var(--grid-side-margin); }
  @media (min-width: 763px) {
    .calendar-filter .calendar-date-picker-main-hl {
      margin-top: 160px; } }

.calendar-filter .calendar-filter-sub-menu-title {
  position: absolute;
  z-index: 111;
  top: 28px;
  left: 0;
  right: 0;
  text-align: center;
  pointer-events: none;
  font-size: 20px;
  line-height: 0;
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900; }
  @media (min-width: 763px) {
    .calendar-filter .calendar-filter-sub-menu-title {
      display: none !important; } }

.calendar-filter li {
  display: inline-block; }
  .calendar-filter li .button-label-line,
  .calendar-filter li a {
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: background-size 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    background-size: 0 2px; }
    .calendar-filter li .button-label-line.bigger,
    .calendar-filter li a.bigger {
      background-size: 0 3px; }
    @media screen and (prefers-reduced-motion: no-preference) {
      .calendar-filter li .button-label-line:hover,
      .calendar-filter li a:hover {
        text-decoration: none;
        transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
        background-size: 100% 2px; }
        .calendar-filter li .button-label-line:hover.bigger,
        .calendar-filter li a:hover.bigger {
          background-size: 100% 3px; } }
  .calendar-filter li a {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 400;
    font-weight: 400; }
  .calendar-filter li .current_page_ancestor > a,
  .calendar-filter li .current_page_item > a,
  .calendar-filter li .current_page_item > a,
  .calendar-filter li .current-menu-item > a {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900; }
  .calendar-filter li a.active,
  .calendar-filter li a[aria-current="page"] {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900; }
  .calendar-filter li.button-active .button-label {
    text-decoration: none;
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    background-size: 100% 2px; }
  .calendar-filter li a {
    color: var(--color-invert) !important; }

.calendar-filter-main {
  padding-top: var(--header-height);
  width: var(--site-nav-col-width);
  height: calc(100vh);
  z-index: 1;
  background: var(--color-darkest-darkest-grey);
  margin-bottom: 40px;
  padding-bottom: 100px; }
  .calendar-filter-main ul {
    padding-left: var(--grid-side-margin);
    padding-top: 40px;
    padding-bottom: 120px;
    height: 100%;
    background: var(--color-darkest-darkest-grey);
    overflow-x: visible;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; }
    .calendar-filter-main ul::-webkit-scrollbar-track {
      -webkit-box-shadow: none !important;
      background-color: transparent; }
    .calendar-filter-main ul::-webkit-scrollbar {
      width: 0 !important;
      background-color: transparent; }
    .calendar-filter-main ul::-webkit-scrollbar-thumb {
      background-color: transparent; }

.calendar-filter .button-wrapper {
  width: var(--site-nav-col-width);
  display: flex;
  text-align: center;
  justify-content: center;
  position: fixed;
  background: var(--color-darkest-darkest-grey);
  color: var(--color-invert);
  bottom: 0px;
  padding: 20px;
  z-index: 23;
  border-top: solid 1px rgba(226, 226, 226, 0.8); }
  @media (min-width: 1023px) {
    .calendar-filter .button-wrapper {
      border-top: none;
      position: -webkit-sticky;
      position: sticky; } }
  .calendar-filter .button-wrapper button.black {
    background: var(--color-invert);
    color: var(--color-black); }

.calendar-filter.isFirefox .button-wrapper {
  position: fixed;
  bottom: 0; }

.calendar-filter li.calendar-filter-group:first-of-type {
  margin-top: 90px; }

.calendar-filter-group-head-counter {
  position: relative;
  background: var(--color-invert);
  color: var(--color-black);
  border-radius: 5px;
  font-size: 12px;
  line-height: 0;
  padding: 2px 4px 2px 4px;
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400; }

.calendar-filter-group-head {
  position: relative;
  display: inherit;
  width: 100%;
  height: 100%; }
  .calendar-filter-group-head .calendar-filter-group-head-counter {
    top: -4px;
    margin-left: 2px; }
  .calendar-filter-group-head.submenu-open {
    pointer-events: none; }
    @media (min-width: 763px) {
      .calendar-filter-group-head.submenu-open {
        pointer-events: auto; } }
  .calendar-filter-group-head a.active, .calendar-filter-group-head a.init-active {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900; }
  .calendar-filter-group-head .icon-arrow-rechts {
    position: absolute;
    top: 15px;
    left: calc(var(--site-nav-col-width) + 22px - var(--grid-side-margin) - var(--site-nav-padding-right)); }
    @media (min-width: 763px) {
      .calendar-filter-group-head .icon-arrow-rechts {
        top: 7px; } }
  .calendar-filter-group-head a {
    font-size: 22px !important;
    line-height: 40px !important; }
    @media (min-width: 763px) {
      .calendar-filter-group-head a {
        font-size: 24px !important;
        line-height: 40px !important; } }

.calendar-filter-group-body-position-holder {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--site-nav-col-width);
  height: 100%;
  display: none;
  z-index: 0; }
  @media (min-width: 763px) {
    .calendar-filter-group-body-position-holder {
      overflow: hidden;
      left: var(--site-nav-col-width); } }
  @media (min-width: 763px) {
    .calendar-filter-group-body-position-holder {
      height: 100vh; } }
  .calendar-filter-group-body-position-holder.next {
    z-index: 1; }
  .calendar-filter-group-body-position-holder.active {
    z-index: 2; }
  .calendar-filter-group-body-position-holder .calendar-filter-group-body-wrapper {
    position: relative;
    padding-top: calc(var(--header-height) + 40px);
    padding-left: var(--grid-side-margin);
    padding-right: var(--grid-side-margin);
    width: 100%;
    height: 100%;
    overflow-x: visible;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--color-darkest-darkest-grey);
    color: var(--color-invert); }
    @media (min-width: 763px) {
      .calendar-filter-group-body-position-holder .calendar-filter-group-body-wrapper {
        padding-left: 0;
        padding-right: var(--site-nav-padding-right); } }
  .calendar-filter-group-body-position-holder .calendar-filter-group-body {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 400;
    font-size: 22px !important;
    line-height: 40px !important;
    padding-bottom: 240px;
    margin-bottom: 0; }
    @media (min-width: 763px) {
      .calendar-filter-group-body-position-holder .calendar-filter-group-body {
        font-size: 24px !important;
        line-height: 40px !important;
        padding-bottom: 80px; } }
    .calendar-filter-group-body-position-holder .calendar-filter-group-body .calendar-filter-checkbox-label {
      position: relative;
      display: inline-block;
      width: calc(95% - var(--site-nav-padding-right)); }

.calendar-filter-checkbox.disable {
  opacity: .4;
  pointer-events: none; }

calendar-head {
  visibility: hidden; }

.calendar-head, calendar-head {
  display: flex;
  flex-direction: column;
  width: 100%; }
  @media (min-width: 1023px) {
    .calendar-head, calendar-head {
      flex-direction: row; } }
  .calendar-head .calendar-filter-group-head-counter, calendar-head .calendar-filter-group-head-counter {
    position: relative;
    line-height: normal;
    margin-left: 6px;
    display: none;
    background: var(--color-invert);
    color: var(--color-black); }
  .calendar-head.loading, calendar-head.loading {
    opacity: .5;
    pointer-events: none; }
  .calendar-head.inited .calendar-filter-group-head-counter, calendar-head.inited .calendar-filter-group-head-counter {
    display: block; }
  .calendar-head-first-level, calendar-head-first-level {
    display: flex;
    justify-content: center;
    height: 60px;
    margin-top: 8px;
    margin-bottom: 8px; }
    @media (max-width: 762px) {
      .calendar-head-first-level .button-calendar, calendar-head-first-level .button-calendar {
        width: 100%; } }
    @media (max-width: 1022px) {
      .nav-minified .calendar-head-first-level, .nav-minified calendar-head-first-level {
        margin-bottom: 0px; }
      .calendar-head-first-level button:last-child, calendar-head-first-level button:last-child {
        margin-right: 0; } }
    @media (min-width: 1023px) {
      .calendar-head-first-level, calendar-head-first-level {
        margin-top: 18px;
        margin-bottom: 18px;
        margin-right: 13px; } }
  .calendar-head .has-more-items, calendar-head .has-more-items {
    display: none;
    background: var(--color-lightest-grey);
    width: 1px;
    margin-right: 0;
    height: 60px;
    margin-top: 8px;
    margin-bottom: 8px; }
    @media (min-width: 1023px) {
      .calendar-head .has-more-items, calendar-head .has-more-items {
        margin-top: 18px;
        margin-bottom: 18px; } }
    @media (min-width: 1023px) {
      .calendar-head .has-more-items.visible, calendar-head .has-more-items.visible {
        display: block; } }
  .calendar-head-second-level, calendar-head-second-level {
    display: none;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    align-items: center;
    margin-top: 8px;
    margin-bottom: 8px; }
    @media (min-width: 763px) {
      .calendar-head-second-level .button-calendar, calendar-head-second-level .button-calendar {
        height: 42px; } }
    @media (min-width: 1023px) {
      .calendar-head-second-level, calendar-head-second-level {
        margin-top: 18px;
        margin-bottom: 18px; } }
    @media (min-width: 1023px) {
      .calendar-head-second-level, calendar-head-second-level {
        padding-left: 18px;
        margin-bottom: 0;
        height: 60px; } }
    .calendar-head-second-level.empty, calendar-head-second-level.empty {
      display: none;
      margin-bottom: 0; }
    .calendar-head-second-level.inited, calendar-head-second-level.inited {
      display: flex; }
      @media (min-width: 1023px) {
        .calendar-head-second-level.inited, calendar-head-second-level.inited {
          display: flex; } }
    .calendar-head-second-level-spacer, calendar-head-second-level-spacer {
      position: relative;
      background: white;
      height: 100%;
      min-width: 20px; }
    .calendar-head-second-level-rectangle-border, calendar-head-second-level-rectangle-border {
      position: absolute;
      right: 0;
      pointer-events: none;
      width: 34px;
      height: 100%;
      background-image: linear-gradient(to left, var(--color-invert) 50%, rgba(255, 255, 255, 0)); }
      @media (max-width: 762px) {
        .calendar-head-second-level-rectangle-border, calendar-head-second-level-rectangle-border {
          display: none; } }

@media (max-width: 1023px) {
  #press-second-level .menu {
    padding-right: 40px; } }

.site-navigation-content-related .container-fluid {
  width: 100%; }

calendarteaserlist {
  visibility: hidden; }

.calendar-list-head {
  margin-bottom: var(--spacing-third); }

.calendar-list-exhibitions-inlet {
  background-color: var(--color-bang-grey);
  margin-bottom: var(--spacing-two-thirds);
  padding: var(--spacing-third) 0 var(--spacing-half); }

.calendar-loading {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  background-color: var(--color-transparent-light-grey);
  justify-content: center; }
  .calendar-loading .jumpingdots {
    height: 100px;
    width: 100%; }

.calendar-day {
  margin-bottom: 40px; }
  .calendar-day.isCanceled > div > *:not(hr) * {
    color: black; }
  .calendar-day.isCanceled > div > *:not(hr) .sideling-left, .calendar-day.isCanceled > div > *:not(hr) .sideling-right {
    text-decoration: line-through; }
  @media (min-width: 763px) {
    .calendar-day-head > div {
      display: flex;
      width: 100%;
      justify-content: space-between;
      align-items: center; } }
  .calendar-day-head hr {
    border-bottom: 2px solid var(--color-invert);
    margin-top: var(--spacing-minimal);
    margin-bottom: 15px; }
  .calendar-day-head h4 {
    margin-bottom: var(--spacing-atom); }
  .calendar-day-head span {
    line-height: 1.65; }
  .calendar-day-body ul.row > li {
    margin-top: var(--spacing-third) !important; }
    .calendar-day-body ul.row > li .teaser-image, .calendar-day-body ul.row > li .teaser-image-group {
      margin-bottom: var(--spacing-minimal); }

.block-shoeheader {
  padding-top: 8.33%;
  margin-bottom: var(--spacing); }
  .block-shoeheader .row {
    border: solid 2px var(--color-darkest-grey); }
  .block-shoeheader-image {
    width: 33%;
    float: right;
    margin-left: calc(var(--gutter-width));
    margin-bottom: calc(var(--gutter-width));
    position: relative;
    margin-top: -6%; }
    @media (max-width: 764px) {
      .block-shoeheader-image {
        display: none; } }
  .block-shoeheader-text {
    padding-top: 5.1em;
    padding-bottom: 5.1em;
    position: relative; }
    @media (max-width: 764px) {
      .block-shoeheader-text {
        padding-top: 3.1em;
        padding-bottom: 3.1em; }
        .block-shoeheader-text p {
          display: none; } }
  .block-shoeheader.block-shoeheader-noimage .block-shoeheader-text {
    padding-top: 8.33%; }

.no-default-size .blocks-default-content {
  display: none; }

.zoom-backdrop {
  position: fixed;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: var(--color-lightest-grey);
  backdrop-filter: blur(4px);
  user-select: none; }
  .zoom-backdrop.active {
    display: flex; }

.zoomcontainer {
  position: absolute;
  width: 100%;
  height: 100%; }
  .zoomcontainer .icon-close {
    position: fixed;
    right: 20px;
    top: 20px;
    cursor: pointer;
    z-index: 999999999;
    display: none;
    font-size: 40px; }
    .zoomcontainer .icon-close.visible {
      display: block; }

.zoomarea {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  cursor: zoom-in; }
  .zoomarea .zoom {
    position: absolute;
    width: 100%;
    height: 100%; }
  .zoomarea.zoomed {
    position: relative;
    cursor: pointer;
    cursor: zoom-out;
    z-index: 9999; }
    .zoomarea.zoomed .zoom-backdrop {
      display: flex; }
    .zoomarea.zoomed.isPortrait .height-container {
      padding-bottom: 80vh !important; }
    .zoomarea.zoomed .lazy-media-info-container-fluid,
    .zoomarea.zoomed figcaption {
      display: none; }

.openseadragon {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 99999999;
  display: none; }
  .openseadragon canvas {
    background-color: white !important; }

#commentform > div.copyfield,
#commentform > div.commentfield-half,
#commentform > div.commentfield {
  margin-bottom: var(--spacing-sixth); }

@media (min-width: 763px) {
  #commentform > div.commentfield-half {
    width: 50%;
    float: left; }
    #commentform > div.commentfield-half.commentfield-half-left {
      padding-right: 14px; }
    #commentform > div.commentfield-half.commentfield-half-right {
      padding-left: 14px; } }

#commentform p + p {
  margin-top: 0; }

#commentform p.form-submit {
  text-align: right; }

@media (min-width: 763px) {
  #commentform .comment-email, #commentform .comment-author {
    width: 50%; } }

#commentform .acf-error-message {
  display: none; }

#commentform .acf-error .acf-error-message {
  display: block; }

#comments #cancel-comment-reply-link,
#comments .logged-in-as {
  display: none; }

#comments > ol > li {
  background-color: rgba(125, 125, 125, 0.3); }

#comments ol {
  list-style-type: none;
  margin-left: 0; }
  #comments ol > li {
    margin-left: 0;
    margin-bottom: var(--spacing-sixth);
    border-radius: 5px;
    padding: var(--spacing-sixth); }
    #comments ol > li ol {
      margin-bottom: 0; }
    #comments ol > li li {
      padding-left: 1em;
      padding-right: 0;
      padding-bottom: 0;
      margin-bottom: 0; }

#comments .comment-author .fn {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 700; }

#comments .comment p {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 20px;
  line-height: 1.73;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  clear: both; }
  @media (max-width: 762px) {
    #comments .comment p {
      font-size: 18px;
      line-height: 1.78; } }

#comments .comment-edit-link {
  display: none; }

#comments .commentmetadata a {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  color: inherit; }
  @media (max-width: 762px) {
    #comments .commentmetadata a {
      font-size: 12px;
      line-height: 1.4; } }

#comments .comment-reply-title a {
  text-decoration: none;
  color: inherit; }

#comments .reply {
  text-align: right; }
  #comments .reply a {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 18px;
    line-height: 1.22;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    text-decoration: none;
    text-decoration: none;
    color: inherit; }
    @media (max-width: 762px) {
      #comments .reply a {
        font-size: 16px;
        line-height: 1.25; } }

.modal-backdrop {
  position: fixed;
  z-index: 99999;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  justify-content: center;
  align-items: center;
  background-color: var(--color-transparent-grey);
  user-select: none;
  display: none; }

.modal {
  position: relative;
  background: var(--color-invert);
  display: flex;
  min-width: 320px;
  max-width: 520px;
  width: 90vw;
  user-select: none;
  overflow-y: auto;
  border-radius: 3px; }
  @media (max-width: 762px) {
    .modal {
      max-height: 90vh;
      overflow-y: scroll;
      -webkit-overflow-scrolling: touch; } }
  .modal.fullWidth {
    max-width: 964px; }
  .modal .modal-close {
    position: absolute;
    cursor: pointer;
    display: block;
    right: 10px;
    top: 0;
    width: 16px;
    height: 15px;
    padding: 20px 30px 30px 20px;
    z-index: 10; }
    .modal .modal-close img {
      width: 16px;
      height: 15px; }
  .modal .icon-close {
    position: absolute;
    font-size: 50px;
    right: 12px;
    top: 11px;
    z-index: 99999; }
    @media (max-width: 762px) {
      .modal .icon-close {
        font-size: 40px;
        right: 5px;
        top: 5px; } }
  .modal a.button {
    justify-content: center;
    margin-top: var(--spacing-sixth);
    width: 100%;
    max-width: none; }

.modal > div {
  position: relative;
  padding: 52px var(--spacing-half) 42px;
  width: 100%; }
  @media (max-width: 762px) {
    .modal > div {
      padding: 25px 40px; } }

@media (max-width: 762px) {
  .modal.fullWidth > div {
    padding: 27px 25px; } }

.modal-fade-enter,
.modal-fade-leave-active {
  opacity: 0; }

.modal-fade-enter-active,
.modal-fade-leave-active {
  transition: opacity .3s; }

.button-icon-round-text-wrapper *, .button-icon-round-text-wrapper *:before, .button-icon-round-text-wrapper *:after {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.like.liked {
  background-color: var(--color-light-grey); }

.button-icon-round-text-wrapper-text span.like-count {
  padding-left: .5em;
  padding-right: 0; }

.like-wrapper {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1; }
  .like-wrapper > * {
    margin: auto;
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: 1 / 1; }

.like-interactions {
  text-align: center;
  margin-bottom: -100%; }
  @media (max-width: 1022px) {
    .like-interactions {
      margin-bottom: var(--spacing-third); } }
  .like-interactions > div {
    margin: 0 .5em; }
  @media (min-width: 1023px) {
    .like-interactions > div.button-icon-round-text-wrapper.textbelow {
      display: block; } }
  .like-interactions .button-icon-round-text-wrapper-text span.like-count {
    padding: 0; }

.lazy-media {
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /*
  .external-content-close-btn
  {
	position:absolute;
	width:22px;
	height:22px;
	top:56px;
	right:70px;
	margin-left:-41px;
	margin-top:-41px;
	cursor:pointer;

	background: url("/assets/media/graphics/close.svg");
	background-size:22px 22px;
	background-repeat:no-repeat;

	transform: translate3d(0,0,0);
	z-index:4;

	visibility:hidden;
	opacity:0;
	display:none;
  }
  */ }
  .lazy-media.loaded {
    opacity: 1;
    will-change: auto; }
  .lazy-media .image-wrapper {
    position: absolute;
    width: 100%;
    height: 100%; }
    .lazy-media .image-wrapper img {
      position: relative;
      width: 100%; }
    .lazy-media .image-wrapper .image {
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      position: relative;
      top: 0;
      width: 100%;
      height: 100%;
      max-width: 100vw; }
    .lazy-media .image-wrapper .autoplay-video {
      object-fit: cover;
      z-index: 1; }
  .lazy-media .external-content-darken-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-black);
    opacity: 0;
    pointer-events: none;
    z-index: 2; }
  .lazy-media .external-content-wrapper {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center; }
  .lazy-media .autoplay-video-toggle-btn {
    position: absolute;
    display: block;
    bottom: 20px;
    right: 20px;
    z-index: 6;
    font-size: 30px;
    padding: 5px 5px; }
  .lazy-media .external-content-play-btn {
    position: relative;
    display: flex;
    background: var(--color-invert);
    cursor: pointer;
    z-index: 3; }
  .lazy-media .external-content-holder {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--color-black);
    transform: translate3d(0, 0, 0);
    z-index: 3;
    visibility: hidden;
    opacity: 0;
    display: none; }
  .lazy-media video, .lazy-media iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.height-container {
  position: relative;
  width: 100%; }

figure {
  margin: 0 !important; }

.readspeak-toggle-btn {
  float: left;
  font-size: 1.9em;
  vertical-align: baseline;
  margin-right: 0.2em; }

@media print {
  .readspeak-toggle-btn {
    display: none; } }

.env-production .read-speaker-button {
  display: none; }

.container-fluid > ul.row {
  list-style: none; }
  .container-fluid > ul.row > li.teaser-wrapper {
    margin-left: initial; }

@media (max-width: 1022px) {
  .lane-special-item {
    display: none; } }

@media (min-width: 1023px) {
  .lane-special-header {
    display: none; } }

@media (min-width: 1023px) {
  .teaser-lane-buttons-wrapper.teaser-lane-buttons-wrapper-with-tax {
    margin-bottom: 8px; }
    .teaser-lane-buttons-wrapper.teaser-lane-buttons-wrapper-with-tax a {
      padding: 14px 0 14px !important; } }

@media (max-width: 1022px) {
  .teaser-lane-buttons-wrapper {
    display: none; }
    .teaser-lane-buttons-wrapper.teaser-lane-buttons-wrapper-with-tax {
      display: block; } }

.teaser-lane-buttons {
  display: inline;
  padding-left: 10px;
  vertical-align: text-bottom; }
  .teaser-lane-buttons button {
    opacity: .4;
    transition: opacity 300ms ease-out; }
    .teaser-lane-buttons button.active {
      opacity: 1; }
  .teaser-lane-buttons .prev {
    transform: scaleX(-1);
    display: inline; }
  .teaser-lane-buttons .next {
    display: inline; }
  @media (max-width: 1022px) {
    .teaser-lane-buttons {
      display: none; } }

.teaser-lane-empty {
  min-height: 233px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center; }
  .teaser-lane-empty .jumpingdots {
    width: 100%; }

#site-footer #cookieConsent .cookie-infos button.button-active {
  margin-bottom: var(--spacing-sixth); }

#site-footer #cookieConsent .cookie-infos #consent-info {
  height: 0;
  overflow: hidden; }

#site-footer #cookieConsent .cookie-infos[aria-expanded="true"] .icon-plus {
  transform: rotate(45deg); }

#site-footer #cookieConsent .form-scroll-area {
  max-height: 60vh;
  overflow: auto;
  margin-bottom: var(--spacing-sixth);
  -webkit-overflow-scrolling: touch; }

#site-footer #cookieConsent h6 {
  margin-bottom: var(--spacing-atom);
  font-size: 22px;
  font-weight: bold; }
  @media (max-width: 762px) {
    #site-footer #cookieConsent h6 {
      font-size: 20px; } }

.dialog-language ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  padding-bottom: .4em; }

.dialog-language li {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: inline-block;
  padding: .4em; }
  .dialog-language li .button-label-line,
  .dialog-language li a {
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: background-size 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    background-size: 0 2px; }
    .dialog-language li .button-label-line.bigger,
    .dialog-language li a.bigger {
      background-size: 0 3px; }
    @media screen and (prefers-reduced-motion: no-preference) {
      .dialog-language li .button-label-line:hover,
      .dialog-language li a:hover {
        text-decoration: none;
        transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
        background-size: 100% 2px; }
        .dialog-language li .button-label-line:hover.bigger,
        .dialog-language li a:hover.bigger {
          background-size: 100% 3px; } }
  .dialog-language li a {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 400;
    font-weight: 400; }
  .dialog-language li .current_page_ancestor > a,
  .dialog-language li .current_page_item > a,
  .dialog-language li .current_page_item > a,
  .dialog-language li .current-menu-item > a {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900; }
  .dialog-language li a.active,
  .dialog-language li a[aria-current="page"] {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900; }
  .dialog-language li.button-active .button-label {
    text-decoration: none;
    transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
    background-size: 100% 2px; }
  .dialog-language li a,
  .dialog-language li .button-label {
    background-position: left bottom !important; }
  .dialog-language li a {
    width: 100%;
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: var(--color-black); }

.dialog-language .wpml-ls-last-item:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: solid 1px var(--color-light-grey); }

.dialog-language .wpml-ls-current-language {
  position: relative; }
  .dialog-language .wpml-ls-current-language:before {
    position: absolute;
    font-size: 24px;
    left: -32px;
    top: 4px;
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'HumboldtForum' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e91b"; }

.dialog-language .wpml-ls-current-language a span, .dialog-language .current_page_item a span {
  font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
  font-weight: 900; }

.basket-count {
  position: absolute; }
  .basket-count i {
    font-family: "TSTARPRO", "Roboto", Arial, sans-serif;
    font-weight: 900;
    font-size: 12px;
    font-style: normal;
    border-radius: 50%;
    width: 1.7em;
    height: 1.7em;
    overflow: hidden;
    text-align: center;
    display: inline-block;
    position: relative;
    background-color: var(--color-black);
    color: var(--color-invert);
    top: -8px;
    left: 3px;
    line-height: 1.7; }

[data-motion-text] {
  visibility: hidden; }
  [data-motion-text].motionLoaded {
    visibility: visible; }

.data-motion-text-wrapper {
  overflow: hidden;
  opacity: 1; }

.wp-admin [data-motion-text] {
  visibility: visible !important; }

.opening-hours-line {
  min-height: 1em; }
  .opening-hours-line.opening-hours-line--lines {
    border-top: solid 1px var(--color-light-grey);
    border-bottom: solid 1px var(--color-light-grey);
    padding: 33px 0;
    text-align: center; }
    @media (max-width: 762px) {
      .opening-hours-line.opening-hours-line--lines {
        text-align: left; } }
  .opening-hours-line.clickable {
    cursor: pointer; }
  .opening-hours-line.unclickable a {
    cursor: default;
    background: none; }
  .opening-hours-line .icon-arrow_standart {
    position: relative;
    display: inline-block;
    top: 7px;
    font-size: 29px;
    line-height: 14px;
    max-height: 1em; }

.opening-hours .modal-backdrop {
  text-align: left; }

.opening-hours strong {
  margin-top: var(--spacing-sixth); }

nav .opening-hours-line {
  line-height: 3; }

nav .opening-hours-line a[href=""] {
  text-decoration: none; }

.block-opening-hours {
  min-height: 1em; }

.grid-helper {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  z-index: -1; }
  .grid-helper .wrapper {
    max-width: 100%; }
  .grid-helper * {
    height: 100%; }
  .grid-helper .grid-helper-cell {
    background-color: #f94a00; }

.header-copy-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  padding-top: 30px;
  padding-bottom: 30px; }

.header-copy-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  width: 100%;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly; }

@media (min-width: 763px) {
  .header-copy-subline {
    margin-top: var(--spacing-sixth); } }

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