/* Source common/css/styles/screen/accessibility.scss */

.visible_for_screen_reader {
  border: 0;
  clip: rect(0.0625rem, 0.0625rem, 0.0625rem, 0.0625rem);
  height: 0.0625rem;
  left: -624.9375rem;
  overflow: hidden;
  padding: 0;
  position: absolute;
  top: -624.9375rem;
  width: 0.0625rem;
}

abbr {
  text-decoration: none;
}

address {
  font-style: normal;
}

/* Source common/css/styles/screen/accordion.scss */

[role=tablist] {
  margin-bottom: 1.5em;
}

* + [role=tablist] {
  margin-top: 1.5em;
}

[role=tab] {
  align-items: center;
  border-top: 0.0625rem solid #d4d4d4;
  cursor: pointer;
  display: flex;
  margin: 0 0 0.375em;
  min-width: 100%;
  padding: 0.4995em 0;
}
[role=tab] .title {
  flex-basis: 100%;
  margin-right: 0.75em;
  overflow: hidden;
  text-overflow: ellipsis;
}
[role=tab] .icon {
  display: flex;
  fill: #312783;
  height: 1.5rem;
  transform: rotate(90deg);
  width: 1.5rem;
}
[role=tab][aria-expanded=true] {
  border-color: #9E2626;
}
[role=tab][aria-expanded=true] .icon {
  transform: rotate(-90deg);
  fill: #9E2626;
}
[role=tab]:focus {
  border-color: #9E2626;
  outline: 0;
}
[role=tab]:focus .title {
  color: #9E2626;
}
[role=tab]:focus .icon {
  fill: #9E2626;
}

[role=tabpanel] {
  height: auto;
  margin: 0;
  max-height: 0;
  overflow: hidden;
}
[role=tabpanel][aria-hidden=false] {
  margin: 1.5em 0;
  max-height: none;
}
[role=tabpanel].animated {
  transition: all 600ms;
}

/* Source common/css/styles/screen/address.scss */

.contact_wrapper {
  display: flex;
  flex-wrap: wrap;
}
.contact_wrapper address {
  display: flex;
  flex-wrap: wrap;
}
.contact_wrapper p {
  margin-right: 2.25em;
  margin-bottom: 0;
}
.contact_wrapper .postal_address, .contact_wrapper .contacts {
  margin-bottom: 0.75em;
}
.contact_wrapper .postal_address > span {
  display: block;
}

.contact {
  display: flex;
}
.contact p {
  margin-bottom: 0;
}
.contact > span {
  min-width: 1.5625rem;
  font-weight: 700;
}
.contact > span.text {
  font-weight: 400;
}

.address_vcard_button {
  margin: 0.75em 0;
}

.address_call_button {
  margin: 0.75em 0;
}

/* Source common/css/styles/screen/aside.scss */


/* Source common/css/styles/screen/atikon_address.scss */

.atikon_logo {
  height: 100%;
}

/* Source common/css/styles/screen/author.scss */

.author_rotate {
  transform-origin: bottom right;
  transform: rotate(-90deg);
}

.author {
  display: block;
  fill: #878787;
  height: 0.8125rem;
  line-height: 0.8125rem;
  width: 4.625rem;
  position: absolute;
  bottom: 0.9375rem;
  left: 0.9375rem;
  margin-left: calc(-50vw + 50%);
  text-align: right;
}

/* Source common/css/styles/screen/backroundimage.scss */

.background_image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 24rem;
  position: relative;
  z-index: 1;
  margin: 0 calc(50% - 50vw);
}
.background_image::after {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 64%, white 100%);
}

/* Source common/css/styles/screen/breadcrumbs.scss */

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.75em;
}
.breadcrumbs p {
  margin: 0 0.375em 0 0;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
}
.breadcrumbs .separator {
  margin: 0 0.375em;
}

/* Source common/css/styles/screen/button.scss */

.button {
  border-radius: 0.3125rem;
  padding: 0 1.5em;
  cursor: pointer;
  background: linear-gradient(80deg, #9E2626 0%, #9E2626 66%, #751c1c 100%);
  border: 0rem solid #9E2626;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms, transform 300ms;
  user-select: none;
  position: relative;
  overflow: hidden;
}
.button .text {
  z-index: 5;
}
.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(80deg, #751c1c 0%, #751c1c 100%);
  opacity: 0;
  transition: opacity 300ms;
  z-index: 0;
}
.button > span {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 2.375rem;
}
@media (min-width: 20rem) {
  .button > span {
    min-height: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .button > span {
    min-height: 2.75rem;
  }
}
.button .icon {
  fill: #fff;
  flex-shrink: 0;
  height: 1.5rem;
  transition: fill 300ms;
  width: 1.5rem;
  z-index: 5;
}
.button .text {
  font-weight: 700;
  padding: 0.375em 0;
}
.button .icon + .text {
  padding-left: 0.4995em;
}
.button:focus-visible {
  background: linear-gradient(80deg, #9E2626 0%, #9E2626 66%, #751c1c 100%);
  border-color: #751c1c;
  color: #fff;
  transform: scale(0.98);
  transition: transform 300ms;
  outline: 0.125rem solid #211B43;
  outline-offset: 0.125rem;
  box-shadow: 0 0 0 0.375rem #fff;
}
.button:focus-visible:after {
  opacity: 1;
}
.button:focus-visible .icon {
  fill: #fff;
  z-index: 5;
}
.button:hover {
  background: linear-gradient(80deg, #9E2626 0%, #9E2626 66%, #751c1c 100%);
  border-color: #751c1c;
  color: #fff;
  transform: scale(0.98);
  transition: transform 300ms;
}
.button:hover:after {
  opacity: 1;
}
.button:hover .icon {
  fill: #fff;
  z-index: 5;
}
.button:hover .icon {
  fill: #fff;
}
.button:active, .button.active {
  box-shadow: 0 0 0.1875rem #691919 inset;
  background: linear-gradient(80deg, #9E2626 0%, #9E2626 66%, #751c1c 100%);
  border: 0rem solid #691919;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms, transform 300ms;
  user-select: none;
  position: relative;
  overflow: hidden;
}
.button:active .text, .button.active .text {
  z-index: 5;
}
.button:active::after, .button.active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(80deg, #751c1c 0%, #751c1c 100%);
  opacity: 0;
  transition: opacity 300ms;
  z-index: 0;
}
.button:active > span, .button.active > span {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 2.375rem;
}
@media (min-width: 20rem) {
  .button:active > span, .button.active > span {
    min-height: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .button:active > span, .button.active > span {
    min-height: 2.75rem;
  }
}
.button:active .icon, .button.active .icon {
  fill: #fff;
  flex-shrink: 0;
  height: 1.5rem;
  transition: fill 300ms;
  width: 1.5rem;
  z-index: 5;
}
.button:active .text, .button.active .text {
  font-weight: 700;
  padding: 0.375em 0;
}
.button:active .icon + .text, .button.active .icon + .text {
  padding-left: 0.4995em;
}
.button.bottom_spacing {
  margin-bottom: 0.75em;
}
.button.blue {
  background: linear-gradient(80deg, #9E2626 0%, #9E2626 66%, #751c1c 100%);
  border: 0rem solid #9E2626;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms, transform 300ms;
  user-select: none;
  position: relative;
  overflow: hidden;
  background: #312783;
  background-color: #312783;
}
.button.blue .text {
  z-index: 5;
}
.button.blue::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(80deg, #751c1c 0%, #751c1c 100%);
  opacity: 0;
  transition: opacity 300ms;
  z-index: 0;
}
.button.blue > span {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 2.375rem;
}
@media (min-width: 20rem) {
  .button.blue > span {
    min-height: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .button.blue > span {
    min-height: 2.75rem;
  }
}
.button.blue .icon {
  fill: #fff;
  flex-shrink: 0;
  height: 1.5rem;
  transition: fill 300ms;
  width: 1.5rem;
  z-index: 5;
}
.button.blue .text {
  font-weight: 700;
  padding: 0.375em 0;
}
.button.blue .icon + .text {
  padding-left: 0.4995em;
}
.button.blue:after {
  content: none;
}
.button.blue:hover, .button.blue:focus, .button.blue:focus-visible {
  background: linear-gradient(80deg, #9E2626 0%, #9E2626 66%, #751c1c 100%);
  border-color: #751c1c;
  color: #fff;
  transform: scale(0.98);
  transition: transform 300ms;
  background: #211B43;
}
.button.blue:hover:after, .button.blue:focus:after, .button.blue:focus-visible:after {
  opacity: 1;
}
.button.blue:hover .icon, .button.blue:focus .icon, .button.blue:focus-visible .icon {
  fill: #fff;
  z-index: 5;
}
.button.light {
  background: linear-gradient(80deg, #9E2626 0%, #9E2626 66%, #751c1c 100%);
  border: 0rem solid #9E2626;
  color: #211B43;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms, transform 300ms;
  user-select: none;
  position: relative;
  overflow: hidden;
  background: #fff;
  background-color: #fff;
}
.button.light .text {
  z-index: 5;
}
.button.light::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(80deg, #751c1c 0%, #751c1c 100%);
  opacity: 0;
  transition: opacity 300ms;
  z-index: 0;
}
.button.light > span {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 2.375rem;
}
@media (min-width: 20rem) {
  .button.light > span {
    min-height: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .button.light > span {
    min-height: 2.75rem;
  }
}
.button.light .icon {
  fill: #211B43;
  flex-shrink: 0;
  height: 1.5rem;
  transition: fill 300ms;
  width: 1.5rem;
  z-index: 5;
}
.button.light .text {
  font-weight: 700;
  padding: 0.375em 0;
}
.button.light .icon + .text {
  padding-left: 0.4995em;
}
.button.light:after {
  content: none;
}
.button.light:hover, .button.light:focus, .button.light:focus-visible {
  background: linear-gradient(80deg, #9E2626 0%, #9E2626 66%, #751c1c 100%);
  border-color: #751c1c;
  color: #fff;
  transform: scale(0.98);
  transition: transform 300ms;
  background: #211B43;
}
.button.light:hover:after, .button.light:focus:after, .button.light:focus-visible:after {
  opacity: 1;
}
.button.light:hover .icon, .button.light:focus .icon, .button.light:focus-visible .icon {
  fill: #fff;
  z-index: 5;
}

.button_overview {
  display: flex;
  flex-wrap: wrap;
}
.button_overview .button {
  margin: 0.75em 0.75em 0 0;
}

/* Source common/css/styles/screen/bypass_links.scss */

.bypass_links {
  left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  z-index: 6000;
}
.bypass_links li {
  display: block;
  width: 20rem;
}
.bypass_links a {
  background: #fff;
  color: #9E2626;
  display: inline-block;
  font-size: 85%;
  height: 0.0625rem;
  left: -624.9375rem;
  overflow: hidden;
  padding: 0.375em;
  position: absolute;
  text-decoration: underline;
  top: -624.9375rem;
  width: 0.0625rem;
}
.bypass_links a:focus {
  color: #9E2626;
  height: auto;
  left: 0.375em;
  top: 0.375em;
  width: auto;
}

/* Source common/css/styles/screen/company_logo.scss */

.company_logo {
  width: 11.5rem;
  display: block;
  transition: width 300ms;
}
@media (min-width: 20rem) {
  .company_logo {
    width: calc(11.5rem + 10.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .company_logo {
    width: 21.75rem;
  }
}
.scrolled_down .company_logo.header_logo {
  width: 9.375rem;
  transition: width 300ms;
}
@media (min-width: 20rem) {
  .scrolled_down .company_logo.header_logo {
    width: calc(9.375rem + 6.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .scrolled_down .company_logo.header_logo {
    width: 15.625rem;
  }
}

/* Source common/css/styles/screen/cookie.scss */

.cookie {
  display: block;
  width: 3.125rem;
  height: 3.125rem;
}
.cookie svg {
  overflow: visible;
}
.cookie .crumb {
  transition: all 300ms;
  transform-origin: center center;
}
.cookie #crumb1 {
  transition-delay: 250ms;
}
.cookie #crumb2 {
  transition-delay: 200ms;
}
.cookie #crumb3 {
  transition-delay: 150ms;
}
.cookie #crumb4 {
  transition-delay: 100ms;
}
.cookie #crumb5 {
  transition-delay: 50ms;
}
.cookie #crumb6 {
  transition-delay: 0ms;
}
.cookie.is_clicked #crumb1 {
  transform: translate(30px, -30px) rotate(-20deg);
  transition-delay: 0ms;
}
.cookie.is_clicked #crumb2 {
  transform: translate(30px, -20px) rotate(-10deg);
  transition-delay: 50ms;
}
.cookie.is_clicked #crumb3 {
  transform: translate(30px, -40px) rotate(10deg);
  transition-delay: 100ms;
}
.cookie.is_clicked #crumb4 {
  transform: translate(30px, 0px) rotate(-10deg);
  transition-delay: 150ms;
}
.cookie.is_clicked #crumb5 {
  transform: translate(30px, -60px) rotate(30deg);
  transition-delay: 200ms;
}
.cookie.is_clicked #crumb6 {
  transform: translate(80px, -90px) rotate(60deg);
  transition-delay: 250ms;
}

/* Source common/css/styles/screen/cookie_banner_styling_5.scss */

body .page_wrapper.overlay-visible::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 300ms ease;
  z-index: 8999;
  opacity: 1;
}
body .cookie_banner {
  display: grid;
  position: fixed;
  max-height: 100vh;
  overflow-y: auto;
  width: 18.75rem;
  border-radius: 1.25rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  row-gap: 0.75em;
  column-gap: 0.75em;
  padding: 1.5625rem 1.25rem;
  z-index: 9000;
  grid-template-columns: auto;
  grid-template-areas: "cb_title_with_svg" "cb_text_policy" "cb_link_privacy" "cb_link_imprint" "cb_link_learn_more" "cb_button_confirm";
}
body .cookie_banner .cb_title_with_svg {
  grid-area: cb_title_with_svg;
  display: flex;
  align-items: center;
  gap: 0 20px;
  flex-wrap: wrap;
}
body .cookie_banner .cb_title_with_svg .title {
  margin: 0;
}
body .cookie_banner .cb_text_policy {
  grid-area: cb_text_policy;
}
body .cookie_banner .cb_link_privacy {
  grid-area: cb_link_privacy;
  align-self: flex-end;
}
body .cookie_banner .cb_link_privacy a,
body .cookie_banner .cb_link_imprint a,
body .cookie_banner .cb_link_learn_more a {
  position: relative;
  color: #9E2626;
  text-decoration: none;
}
body .cookie_banner .cb_link_privacy a::after,
body .cookie_banner .cb_link_imprint a::after,
body .cookie_banner .cb_link_learn_more a::after {
  content: "";
  position: absolute;
  bottom: -0.0625rem;
  left: 0;
  right: 0;
  height: 0.125rem;
  background-color: currentColor;
}
body .cookie_banner .cb_link_privacy a:hover::after, body .cookie_banner .cb_link_privacy a:focus::after,
body .cookie_banner .cb_link_imprint a:hover::after,
body .cookie_banner .cb_link_imprint a:focus::after,
body .cookie_banner .cb_link_learn_more a:hover::after,
body .cookie_banner .cb_link_learn_more a:focus::after {
  display: none;
}
@media (min-width: 93.75rem) {
  body .cookie_banner .cb_link_privacy a,
body .cookie_banner .cb_link_imprint a,
body .cookie_banner .cb_link_learn_more a {
    transition: opacity 300ms ease-in-out;
  }
  body .cookie_banner .cb_link_privacy a::after,
body .cookie_banner .cb_link_imprint a::after,
body .cookie_banner .cb_link_learn_more a::after {
    transition: right 300ms ease-out;
  }
  body .cookie_banner .cb_link_privacy a:hover::after, body .cookie_banner .cb_link_privacy a:focus::after,
body .cookie_banner .cb_link_imprint a:hover::after,
body .cookie_banner .cb_link_imprint a:focus::after,
body .cookie_banner .cb_link_learn_more a:hover::after,
body .cookie_banner .cb_link_learn_more a:focus::after {
    display: block;
    right: 100%;
  }
}
body .cookie_banner .cb_button_confirm {
  grid-area: cb_button_confirm;
  justify-self: center;
  width: 100%;
}
body .cookie_banner .cb_button_confirm .button {
  position: relative;
  padding: 0;
  border: none;
  background-color: #ededed;
  display: block;
  margin-top: 0.75em;
  background: linear-gradient(80deg, #9E2626 0%, #9E2626 66%, #751c1c 100%);
}
body .cookie_banner .cb_button_confirm .button span {
  transition: background 300ms, border 300ms, color 300ms;
  padding: 0 1.5625rem;
  width: auto;
  z-index: 2;
  position: relative;
}
body .cookie_banner .cb_button_confirm .button:focus {
  outline: 0.125rem solid #9E2626;
  outline-offset: 0.125rem;
}
body .cookie_banner .cb_link_imprint {
  grid-area: cb_link_imprint;
}
body .cookie_banner .cb_link_learn_more {
  grid-area: cb_link_learn_more;
}
body .cookie_banner p {
  font-size: 85%;
  margin: 0;
  width: 100%;
}
@media (min-width: 61.875rem) {
  body .cookie_banner {
    width: 34.375rem;
    row-gap: 0.375em;
    column-gap: 0;
    grid-template-columns: auto 1fr;
    grid-template-areas: "cb_title_with_svg cb_title_with_svg" "cb_text_policy cb_text_policy" "cb_link_privacy cb_button_confirm" "cb_link_imprint cb_button_confirm" "cb_link_learn_more cb_button_confirm";
  }
  body .cookie_banner .cb_text_policy {
    margin: 0.75em 0;
  }
  body .cookie_banner .cb_button_confirm {
    width: auto;
    justify-self: flex-end;
    align-self: flex-end;
  }
  body .cookie_banner .cb_button_confirm .button {
    margin-top: 0;
    width: 13.75rem;
  }
}

body.hide_consent_banner .page_wrapper.overlay-visible::before {
  content: none;
  background-color: rgba(0, 0, 0, 0);
}
body.hide_consent_banner .cookie_banner {
  left: auto;
  top: auto;
  transform: none;
}
@media (max-width: 29.9375rem) {
  body.hide_consent_banner .cookie_banner {
    width: 100%;
    bottom: 0;
  }
}
@media (min-width: 30rem) {
  body.hide_consent_banner .cookie_banner {
    right: 1.25rem;
    bottom: 1.25rem;
  }
}

/* Source common/css/styles/screen/disclaimer.scss */

.disclaimer {
  background: #ededed;
  border-radius: 0.3125rem;
  color: #211B43;
  font-size: 85%;
  margin: 1.5em 0;
  padding: 0.999em 1.5em;
}
.disclaimer a {
  display: inline;
}

/* Source common/css/styles/screen/downloads.scss */

.download_overview {
  margin-bottom: 0.75em;
}
.download_overview .touch_link {
  display: flex;
}
.download_overview .touch_link .title_wrapper {
  padding-top: 0;
  margin-bottom: 0;
}
.download_overview .touch_link .title_wrapper small {
  display: none;
}
.download_overview .icon {
  flex-shrink: 0;
}
.download_overview .icon_doc {
  fill: #2a5699;
}
.download_overview .icon_xls {
  fill: #4e892d;
}
.download_overview .icon_pdf {
  fill: #e44e4e;
}
.download_overview .icon_online {
  fill: #0074ce;
}

/* Source common/css/styles/screen/dropdown_menu.scss */

.dropdown_menu {
  display: none;
}
@media (min-width: 75rem) {
  .dropdown_menu {
    align-items: center;
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
  }
}
.dropdown_menu > ul {
  display: flex;
  position: relative;
  align-items: center;
}
.dropdown_menu > ul > li {
  position: relative;
}
.dropdown_menu > ul > li:hover > a, .dropdown_menu > ul > li.hover > a {
  color: #9E2626;
}
.dropdown_menu > ul > li:hover > ul, .dropdown_menu > ul > li.hover > ul {
  visibility: visible;
}
.dropdown_menu > ul > li:last-child:hover > a, .dropdown_menu > ul > li:last-child.hover > a {
  transition: opacity 300ms;
}
.dropdown_menu > ul > li .icon {
  box-sizing: content-box;
  display: inline-block;
  height: 0.625rem;
  padding-left: 0.75em;
  width: 0.625rem;
}
.dropdown_menu > ul > li {
  align-items: center;
}
.dropdown_menu > ul > li:last-child {
  margin-left: 1.25rem;
}
.dropdown_menu > ul > li:last-child > a {
  background: linear-gradient(80deg, #9E2626 0%, #9E2626 66%, #751c1c 100%);
  color: #fff;
  border-radius: 0.3125rem;
  padding: 0.625rem 1.25rem;
  position: relative;
  overflow: hidden;
}
.dropdown_menu > ul > li:last-child > a .text {
  z-index: 5;
}
.dropdown_menu > ul > li:last-child > a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(80deg, #751c1c 0%, #751c1c 100%);
  opacity: 0;
  transition: opacity 300ms;
  z-index: 0;
}
.dropdown_menu > ul > li:last-child > a.active, .dropdown_menu > ul > li:last-child > a:hover {
  color: #fff;
}
.dropdown_menu > ul > li:last-child > a.active::after, .dropdown_menu > ul > li:last-child > a:hover::after {
  opacity: 1;
  transition: opacity 300ms;
}
.dropdown_menu > ul > li:nth-last-child(2) ul {
  transform: translateX(-50%);
  left: -60%;
  margin-right: 2.5rem;
  margin-left: 0;
}
.dropdown_menu > ul > li > a {
  align-items: center;
  color: #312783;
  display: flex;
  hyphens: none;
  padding: 0 1.25rem;
  white-space: nowrap;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
}
.dropdown_menu > ul > li > a.active {
  color: #9E2626;
}
.dropdown_menu > ul > li ul {
  background: linear-gradient(80deg, #9E2626 0%, #9E2626 66%, #751c1c 100%);
  padding: 1.875rem;
  position: absolute;
  visibility: hidden;
  z-index: 1000;
  margin-left: 1.25rem;
  margin-top: 0.75rem;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.dropdown_menu > ul > li ul:target {
  visibility: visible;
}
.dropdown_menu > ul > li ul a {
  color: #fff;
  display: flex;
  hyphens: none;
  justify-content: space-between;
  white-space: nowrap;
  width: 100%;
  font-weight: 700;
  text-decoration: none;
}
.dropdown_menu > ul > li ul a:hover {
  text-decoration: underline;
}
.dropdown_menu > ul > li ul a:focus {
  outline-offset: -0.125rem;
}
.dropdown_menu > ul > li ul a.active {
  text-decoration: underline;
}
.dropdown_menu > ul > li ul ul {
  left: 100%;
  position: absolute;
  top: -0.75em;
}

/* Source common/css/styles/screen/folder_content.scss */

.folder_content.full_height {
  height: 100%;
  display: flex;
}
.folder_content.full_height .entry {
  display: flex;
  width: 100%;
}
.folder_content.full_height .entry > div {
  height: inherit;
  width: 100%;
}

/* Source common/css/styles/screen/footer.scss */

footer {
  overflow: hidden;
}
footer .footer_top .background_image {
  height: 15.625rem;
  background-position: 50% 40%;
}
@media (min-width: 20rem) {
  footer .footer_top .background_image {
    height: calc(15.625rem + 7.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .footer_top .background_image {
    height: 23.5rem;
  }
}
footer .footer_top .background_image.top {
  background-position: 50% 55%;
}
footer .footer_content {
  position: relative;
}
footer .footer_content > .row {
  align-items: center;
}
footer .footer_content .address {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
}
@media (min-width: 61.875rem) {
  footer .footer_content .address {
    margin-top: 0;
    margin-bottom: 0;
  }
}
footer .footer_content .postal_address {
  display: flex;
}
footer .footer_content .button_wrapper {
  display: flex;
  gap: 0.625rem 1.875rem;
  margin-top: 1.875rem;
  flex-wrap: wrap;
}
footer .footer_content .button_wrapper .button > span {
  min-height: 2.375rem;
}
@media (min-width: 20rem) {
  footer .footer_content .button_wrapper .button > span {
    min-height: calc(2.375rem + 0.75 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .footer_content .button_wrapper .button > span {
    min-height: 3.125rem;
  }
}
footer .footer_content .button_wrapper .button .icon {
  width: 1.25rem;
  height: 1.25rem;
}
@media (min-width: 20rem) {
  footer .footer_content .button_wrapper .button .icon {
    width: calc(1.25rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .footer_content .button_wrapper .button .icon {
    width: 1.875rem;
  }
}
@media (min-width: 20rem) {
  footer .footer_content .button_wrapper .button .icon {
    height: calc(1.25rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .footer_content .button_wrapper .button .icon {
    height: 1.875rem;
  }
}
footer .footer_content .button_wrapper .address_call_button {
  margin: 0;
}
footer .footer_content .company_logo {
  width: 17.5rem;
}
@media (min-width: 20rem) {
  footer .footer_content .company_logo {
    width: calc(17.5rem + 11.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .footer_content .company_logo {
    width: 29.0625rem;
  }
}
@media (min-width: 61.875rem) {
  footer .footer_content .company_logo {
    margin-left: auto;
  }
}
footer .footer_content .description {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
}
@media (min-width: 61.875rem) {
  footer .footer_content .description {
    text-align: right;
  }
}
footer .footer_content .icon_entry {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media (min-width: 61.875rem) {
  footer .footer_content .icon_entry {
    justify-content: flex-end;
  }
}
footer .footer_content .icon_entry p {
  margin-bottom: 0;
}
footer .footer_content .icon_entry .icon_wrapper {
  background: linear-gradient(80deg, #9E2626 0%, #9E2626 66%, #751c1c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  box-shadow: 0.25rem 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 20rem) {
  footer .footer_content .icon_entry .icon_wrapper {
    width: calc(1.875rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .footer_content .icon_entry .icon_wrapper {
    width: 2.5rem;
  }
}
@media (min-width: 20rem) {
  footer .footer_content .icon_entry .icon_wrapper {
    height: calc(1.875rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .footer_content .icon_entry .icon_wrapper {
    height: 2.5rem;
  }
}
footer .footer_content .icon_entry .icon_wrapper .icon {
  fill: #fff;
  display: flex;
  width: 0.9375rem;
  height: 0.9375rem;
}
@media (min-width: 20rem) {
  footer .footer_content .icon_entry .icon_wrapper .icon {
    width: calc(0.9375rem + 0.3125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .footer_content .icon_entry .icon_wrapper .icon {
    width: 1.25rem;
  }
}
@media (min-width: 20rem) {
  footer .footer_content .icon_entry .icon_wrapper .icon {
    height: calc(0.9375rem + 0.3125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .footer_content .icon_entry .icon_wrapper .icon {
    height: 1.25rem;
  }
}
footer .footer_bottom {
  position: relative;
  z-index: 0;
  padding: 0.625rem 0;
}
footer .footer_bottom ul {
  display: flex;
  gap: 1.875rem;
  justify-content: flex-end;
}
footer .footer_bottom ul li a {
  color: #fff;
  font-weight: 700;
}
footer .footer_bottom ul li a.active {
  text-decoration: none;
}
footer .footer_bottom ul li a:focus-visible {
  outline-color: #fff;
}
footer .footer_bottom::after {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  background-color: #312783;
  margin: 0 calc(50% - 50vw);
}

/* Source common/css/styles/screen/form.scss */

.file {
  display: flex;
  flex-basis: 65%;
  margin: 0 0 0.999em;
  position: relative;
  height: 2.375rem;
}
@media (min-width: 20rem) {
  .file {
    height: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file {
    height: 2.75rem;
  }
}
.file.error .file_name {
  border-color: #9E2626;
}
.file .file_name {
  background: #ededed;
  border: 0rem solid #d4d4d4;
  border-radius: 0.3125rem 0 0 0.3125rem;
  box-shadow: 0 0 0.1875rem #d4d4d4 inset;
  color: #211B43;
  flex: 0 1 100%;
  overflow: hidden;
  padding: 0 0.75em;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 8.125rem;
  line-height: 2.375rem;
  height: 2.375rem;
}
@media (min-width: 20rem) {
  .file .file_name {
    line-height: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file .file_name {
    line-height: 2.75rem;
  }
}
@media (min-width: 20rem) {
  .file .file_name {
    height: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file .file_name {
    height: 2.75rem;
  }
}
.file .file_button {
  border-radius: 0 0.3125rem 0.3125rem 0;
  flex: 1 0 auto;
  padding: 0 1.5em;
  z-index: 10;
  background: linear-gradient(80deg, #9E2626 0%, #9E2626 66%, #751c1c 100%);
  border: 0rem solid #9E2626;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms, transform 300ms;
  user-select: none;
  position: relative;
  overflow: hidden;
}
.file .file_button .text {
  z-index: 5;
}
.file .file_button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(80deg, #751c1c 0%, #751c1c 100%);
  opacity: 0;
  transition: opacity 300ms;
  z-index: 0;
}
.file .file_button > span {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 2.375rem;
}
@media (min-width: 20rem) {
  .file .file_button > span {
    min-height: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file .file_button > span {
    min-height: 2.75rem;
  }
}
.file .file_button .icon {
  fill: #fff;
  flex-shrink: 0;
  height: 1.5rem;
  transition: fill 300ms;
  width: 1.5rem;
  z-index: 5;
}
.file .file_button .text {
  font-weight: 700;
  padding: 0.375em 0;
}
.file .file_button .icon + .text {
  padding-left: 0.4995em;
}
.file .file_button > span {
  min-height: 2.375rem;
}
@media (min-width: 20rem) {
  .file .file_button > span {
    min-height: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file .file_button > span {
    min-height: 2.75rem;
  }
}
.file .file_button.focus {
  box-shadow: 0 0 0 0.1875rem rgba(158, 38, 38, 0.2);
  background: linear-gradient(80deg, #9E2626 0%, #9E2626 66%, #751c1c 100%);
  border-color: #751c1c;
  color: #fff;
  transform: scale(0.98);
  transition: transform 300ms;
}
.file .file_button.focus:after {
  opacity: 1;
}
.file .file_button.focus .icon {
  fill: #fff;
  z-index: 5;
}
.file [type=file] {
  bottom: 0;
  color: transparent;
  cursor: pointer;
  display: block;
  left: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 20;
  height: 2.375rem;
}
@media (min-width: 20rem) {
  .file [type=file] {
    height: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file [type=file] {
    height: 2.75rem;
  }
}
.file [type=file]:hover ~ .file_button {
  background: linear-gradient(80deg, #9E2626 0%, #9E2626 66%, #751c1c 100%);
  border-color: #751c1c;
  color: #fff;
  transform: scale(0.98);
  transition: transform 300ms;
}
.file [type=file]:hover ~ .file_button:after {
  opacity: 1;
}
.file [type=file]:hover ~ .file_button .icon {
  fill: #fff;
  z-index: 5;
}
.file [type=file]:active ~ .file_button {
  box-shadow: 0 0 0.1875rem #691919 inset;
  background: linear-gradient(80deg, #9E2626 0%, #9E2626 66%, #751c1c 100%);
  border: 0rem solid #691919;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms, transform 300ms;
  user-select: none;
  position: relative;
  overflow: hidden;
}
.file [type=file]:active ~ .file_button .text {
  z-index: 5;
}
.file [type=file]:active ~ .file_button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(80deg, #751c1c 0%, #751c1c 100%);
  opacity: 0;
  transition: opacity 300ms;
  z-index: 0;
}
.file [type=file]:active ~ .file_button > span {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 2.375rem;
}
@media (min-width: 20rem) {
  .file [type=file]:active ~ .file_button > span {
    min-height: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file [type=file]:active ~ .file_button > span {
    min-height: 2.75rem;
  }
}
.file [type=file]:active ~ .file_button .icon {
  fill: #fff;
  flex-shrink: 0;
  height: 1.5rem;
  transition: fill 300ms;
  width: 1.5rem;
  z-index: 5;
}
.file [type=file]:active ~ .file_button .text {
  font-weight: 700;
  padding: 0.375em 0;
}
.file [type=file]:active ~ .file_button .icon + .text {
  padding-left: 0.4995em;
}

@media (min-width: 35rem) {
  .formular .button_wrapper {
    text-align: right;
  }
}

button {
  cursor: pointer;
  margin: 0.75em 0;
  outline: 0;
  overflow: hidden;
  padding: 0 1.5em;
  width: 100%;
  height: 2.375rem;
}
@media (min-width: 20rem) {
  button {
    height: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  button {
    height: 2.75rem;
  }
}
@media (min-width: 35rem) {
  button {
    width: auto;
  }
}
button::-moz-focus-inner {
  border: 0;
}

/* Source common/css/styles/screen/grid.scss */

.container {
  margin: 0 auto;
  max-width: 100rem;
  min-width: 20rem;
  padding: 0 0.9375rem;
}
@media (min-width: 20rem) {
  .container {
    padding: 0 calc(0.9375rem + 2.1875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .container {
    padding: 0 3.125rem;
  }
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: -0.46875rem;
  margin-right: -0.46875rem;
}
@media (min-width: 20rem) {
  .row {
    margin: 0 calc((-0.9375rem / 2) - (2.1875 / 2) * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .row {
    margin: 0 -1.5625rem;
  }
}
.row.no_column_margin {
  margin-left: 0;
  margin-right: 0;
}
.row.no_column_margin > [class*=span] {
  padding-left: 0;
  padding-right: 0;
}
.row.half_column_margin {
  margin-left: -0.234375rem;
  margin-right: -0.234375rem;
}
@media (min-width: 20rem) {
  .row.half_column_margin {
    margin: 0 calc((-0.9375rem / 4) - (2.1875 / 4) * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .row.half_column_margin {
    margin: 0 -0.78125rem;
  }
}
.row.half_column_margin > [class*=span] {
  padding-left: 0.234375rem;
  padding-right: 0.234375rem;
}
@media (min-width: 20rem) {
  .row.half_column_margin > [class*=span] {
    padding: 0 calc((0.9375rem / 4) + (2.1875 / 4) * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .row.half_column_margin > [class*=span] {
    padding: 0 0.78125rem;
  }
}

@media (min-width: 20rem) {
  .row.around_xsmall {
    justify-content: space-around;
  }
  .row.between_xsmall {
    justify-content: space-between;
  }
  .row.start_xsmall {
    justify-content: flex-start;
  }
  .row.center_xsmall {
    justify-content: center;
  }
  .row.end_xsmall {
    justify-content: flex-end;
  }
  .row.top_xsmall {
    align-items: flex-start;
  }
  .row.middle_xsmall {
    align-items: center;
  }
  .row.bottom_xsmall {
    align-items: flex-end;
  }
  .row.baseline_xsmall {
    align-items: baseline;
  }
  .row.reverse_xsmall {
    flex-direction: row-reverse;
  }
}
@media (min-width: 30rem) {
  .row.around_small {
    justify-content: space-around;
  }
  .row.between_small {
    justify-content: space-between;
  }
  .row.start_small {
    justify-content: flex-start;
  }
  .row.center_small {
    justify-content: center;
  }
  .row.end_small {
    justify-content: flex-end;
  }
  .row.top_small {
    align-items: flex-start;
  }
  .row.middle_small {
    align-items: center;
  }
  .row.bottom_small {
    align-items: flex-end;
  }
  .row.baseline_small {
    align-items: baseline;
  }
  .row.reverse_small {
    flex-direction: row-reverse;
  }
}
@media (min-width: 35rem) {
  .row.around_medium {
    justify-content: space-around;
  }
  .row.between_medium {
    justify-content: space-between;
  }
  .row.start_medium {
    justify-content: flex-start;
  }
  .row.center_medium {
    justify-content: center;
  }
  .row.end_medium {
    justify-content: flex-end;
  }
  .row.top_medium {
    align-items: flex-start;
  }
  .row.middle_medium {
    align-items: center;
  }
  .row.bottom_medium {
    align-items: flex-end;
  }
  .row.baseline_medium {
    align-items: baseline;
  }
  .row.reverse_medium {
    flex-direction: row-reverse;
  }
}
@media (min-width: 47.5rem) {
  .row.around_large {
    justify-content: space-around;
  }
  .row.between_large {
    justify-content: space-between;
  }
  .row.start_large {
    justify-content: flex-start;
  }
  .row.center_large {
    justify-content: center;
  }
  .row.end_large {
    justify-content: flex-end;
  }
  .row.top_large {
    align-items: flex-start;
  }
  .row.middle_large {
    align-items: center;
  }
  .row.bottom_large {
    align-items: flex-end;
  }
  .row.baseline_large {
    align-items: baseline;
  }
  .row.reverse_large {
    flex-direction: row-reverse;
  }
}
@media (min-width: 61.875rem) {
  .row.around_xlarge {
    justify-content: space-around;
  }
  .row.between_xlarge {
    justify-content: space-between;
  }
  .row.start_xlarge {
    justify-content: flex-start;
  }
  .row.center_xlarge {
    justify-content: center;
  }
  .row.end_xlarge {
    justify-content: flex-end;
  }
  .row.top_xlarge {
    align-items: flex-start;
  }
  .row.middle_xlarge {
    align-items: center;
  }
  .row.bottom_xlarge {
    align-items: flex-end;
  }
  .row.baseline_xlarge {
    align-items: baseline;
  }
  .row.reverse_xlarge {
    flex-direction: row-reverse;
  }
}
@media (min-width: 75rem) {
  .row.around_xxlarge {
    justify-content: space-around;
  }
  .row.between_xxlarge {
    justify-content: space-between;
  }
  .row.start_xxlarge {
    justify-content: flex-start;
  }
  .row.center_xxlarge {
    justify-content: center;
  }
  .row.end_xxlarge {
    justify-content: flex-end;
  }
  .row.top_xxlarge {
    align-items: flex-start;
  }
  .row.middle_xxlarge {
    align-items: center;
  }
  .row.bottom_xxlarge {
    align-items: flex-end;
  }
  .row.baseline_xxlarge {
    align-items: baseline;
  }
  .row.reverse_xxlarge {
    flex-direction: row-reverse;
  }
}
@media (min-width: 93.75rem) {
  .row.around_xxxlarge {
    justify-content: space-around;
  }
  .row.between_xxxlarge {
    justify-content: space-between;
  }
  .row.start_xxxlarge {
    justify-content: flex-start;
  }
  .row.center_xxxlarge {
    justify-content: center;
  }
  .row.end_xxxlarge {
    justify-content: flex-end;
  }
  .row.top_xxxlarge {
    align-items: flex-start;
  }
  .row.middle_xxxlarge {
    align-items: center;
  }
  .row.bottom_xxxlarge {
    align-items: flex-end;
  }
  .row.baseline_xxxlarge {
    align-items: baseline;
  }
  .row.reverse_xxxlarge {
    flex-direction: row-reverse;
  }
}
[class*=span] {
  flex-basis: 100%;
  max-width: 100%;
  padding-left: 0.46875rem;
  padding-right: 0.46875rem;
}
@media (min-width: 20rem) {
  [class*=span] {
    padding: 0 calc((0.9375rem / 2) + (2.1875 / 2) * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  [class*=span] {
    padding: 0 1.5625rem;
  }
}
[class*=span].span_column {
  display: flex;
  flex-direction: column;
}

@media (min-width: 20rem) {
  .span1_xsmall {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    min-width: 8.3333333333%;
  }

  .order1_xsmall {
    order: 1;
  }
}
@media (min-width: 20rem) {
  .span2_xsmall {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    min-width: 16.6666666667%;
  }

  .order2_xsmall {
    order: 2;
  }
}
@media (min-width: 20rem) {
  .span3_xsmall {
    flex-basis: 25%;
    max-width: 25%;
    min-width: 25%;
  }

  .order3_xsmall {
    order: 3;
  }
}
@media (min-width: 20rem) {
  .span4_xsmall {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    min-width: 33.3333333333%;
  }

  .order4_xsmall {
    order: 4;
  }
}
@media (min-width: 20rem) {
  .span5_xsmall {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    min-width: 41.6666666667%;
  }

  .order5_xsmall {
    order: 5;
  }
}
@media (min-width: 20rem) {
  .span6_xsmall {
    flex-basis: 50%;
    max-width: 50%;
    min-width: 50%;
  }

  .order6_xsmall {
    order: 6;
  }
}
@media (min-width: 20rem) {
  .span7_xsmall {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    min-width: 58.3333333333%;
  }

  .order7_xsmall {
    order: 7;
  }
}
@media (min-width: 20rem) {
  .span8_xsmall {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    min-width: 66.6666666667%;
  }

  .order8_xsmall {
    order: 8;
  }
}
@media (min-width: 20rem) {
  .span9_xsmall {
    flex-basis: 75%;
    max-width: 75%;
    min-width: 75%;
  }

  .order9_xsmall {
    order: 9;
  }
}
@media (min-width: 20rem) {
  .span10_xsmall {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    min-width: 83.3333333333%;
  }

  .order10_xsmall {
    order: 10;
  }
}
@media (min-width: 20rem) {
  .span11_xsmall {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    min-width: 91.6666666667%;
  }

  .order11_xsmall {
    order: 11;
  }
}
@media (min-width: 20rem) {
  .span12_xsmall {
    flex-basis: 100%;
    max-width: 100%;
    min-width: 100%;
  }

  .order12_xsmall {
    order: 12;
  }
}
@media (min-width: 30rem) {
  .span1_small {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    min-width: 8.3333333333%;
  }

  .order1_small {
    order: 1;
  }
}
@media (min-width: 30rem) {
  .span2_small {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    min-width: 16.6666666667%;
  }

  .order2_small {
    order: 2;
  }
}
@media (min-width: 30rem) {
  .span3_small {
    flex-basis: 25%;
    max-width: 25%;
    min-width: 25%;
  }

  .order3_small {
    order: 3;
  }
}
@media (min-width: 30rem) {
  .span4_small {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    min-width: 33.3333333333%;
  }

  .order4_small {
    order: 4;
  }
}
@media (min-width: 30rem) {
  .span5_small {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    min-width: 41.6666666667%;
  }

  .order5_small {
    order: 5;
  }
}
@media (min-width: 30rem) {
  .span6_small {
    flex-basis: 50%;
    max-width: 50%;
    min-width: 50%;
  }

  .order6_small {
    order: 6;
  }
}
@media (min-width: 30rem) {
  .span7_small {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    min-width: 58.3333333333%;
  }

  .order7_small {
    order: 7;
  }
}
@media (min-width: 30rem) {
  .span8_small {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    min-width: 66.6666666667%;
  }

  .order8_small {
    order: 8;
  }
}
@media (min-width: 30rem) {
  .span9_small {
    flex-basis: 75%;
    max-width: 75%;
    min-width: 75%;
  }

  .order9_small {
    order: 9;
  }
}
@media (min-width: 30rem) {
  .span10_small {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    min-width: 83.3333333333%;
  }

  .order10_small {
    order: 10;
  }
}
@media (min-width: 30rem) {
  .span11_small {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    min-width: 91.6666666667%;
  }

  .order11_small {
    order: 11;
  }
}
@media (min-width: 30rem) {
  .span12_small {
    flex-basis: 100%;
    max-width: 100%;
    min-width: 100%;
  }

  .order12_small {
    order: 12;
  }
}
@media (min-width: 35rem) {
  .span1_medium {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    min-width: 8.3333333333%;
  }

  .order1_medium {
    order: 1;
  }
}
@media (min-width: 35rem) {
  .span2_medium {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    min-width: 16.6666666667%;
  }

  .order2_medium {
    order: 2;
  }
}
@media (min-width: 35rem) {
  .span3_medium {
    flex-basis: 25%;
    max-width: 25%;
    min-width: 25%;
  }

  .order3_medium {
    order: 3;
  }
}
@media (min-width: 35rem) {
  .span4_medium {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    min-width: 33.3333333333%;
  }

  .order4_medium {
    order: 4;
  }
}
@media (min-width: 35rem) {
  .span5_medium {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    min-width: 41.6666666667%;
  }

  .order5_medium {
    order: 5;
  }
}
@media (min-width: 35rem) {
  .span6_medium {
    flex-basis: 50%;
    max-width: 50%;
    min-width: 50%;
  }

  .order6_medium {
    order: 6;
  }
}
@media (min-width: 35rem) {
  .span7_medium {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    min-width: 58.3333333333%;
  }

  .order7_medium {
    order: 7;
  }
}
@media (min-width: 35rem) {
  .span8_medium {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    min-width: 66.6666666667%;
  }

  .order8_medium {
    order: 8;
  }
}
@media (min-width: 35rem) {
  .span9_medium {
    flex-basis: 75%;
    max-width: 75%;
    min-width: 75%;
  }

  .order9_medium {
    order: 9;
  }
}
@media (min-width: 35rem) {
  .span10_medium {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    min-width: 83.3333333333%;
  }

  .order10_medium {
    order: 10;
  }
}
@media (min-width: 35rem) {
  .span11_medium {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    min-width: 91.6666666667%;
  }

  .order11_medium {
    order: 11;
  }
}
@media (min-width: 35rem) {
  .span12_medium {
    flex-basis: 100%;
    max-width: 100%;
    min-width: 100%;
  }

  .order12_medium {
    order: 12;
  }
}
@media (min-width: 47.5rem) {
  .span1_large {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    min-width: 8.3333333333%;
  }

  .order1_large {
    order: 1;
  }
}
@media (min-width: 47.5rem) {
  .span2_large {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    min-width: 16.6666666667%;
  }

  .order2_large {
    order: 2;
  }
}
@media (min-width: 47.5rem) {
  .span3_large {
    flex-basis: 25%;
    max-width: 25%;
    min-width: 25%;
  }

  .order3_large {
    order: 3;
  }
}
@media (min-width: 47.5rem) {
  .span4_large {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    min-width: 33.3333333333%;
  }

  .order4_large {
    order: 4;
  }
}
@media (min-width: 47.5rem) {
  .span5_large {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    min-width: 41.6666666667%;
  }

  .order5_large {
    order: 5;
  }
}
@media (min-width: 47.5rem) {
  .span6_large {
    flex-basis: 50%;
    max-width: 50%;
    min-width: 50%;
  }

  .order6_large {
    order: 6;
  }
}
@media (min-width: 47.5rem) {
  .span7_large {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    min-width: 58.3333333333%;
  }

  .order7_large {
    order: 7;
  }
}
@media (min-width: 47.5rem) {
  .span8_large {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    min-width: 66.6666666667%;
  }

  .order8_large {
    order: 8;
  }
}
@media (min-width: 47.5rem) {
  .span9_large {
    flex-basis: 75%;
    max-width: 75%;
    min-width: 75%;
  }

  .order9_large {
    order: 9;
  }
}
@media (min-width: 47.5rem) {
  .span10_large {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    min-width: 83.3333333333%;
  }

  .order10_large {
    order: 10;
  }
}
@media (min-width: 47.5rem) {
  .span11_large {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    min-width: 91.6666666667%;
  }

  .order11_large {
    order: 11;
  }
}
@media (min-width: 47.5rem) {
  .span12_large {
    flex-basis: 100%;
    max-width: 100%;
    min-width: 100%;
  }

  .order12_large {
    order: 12;
  }
}
@media (min-width: 61.875rem) {
  .span1_xlarge {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    min-width: 8.3333333333%;
  }

  .order1_xlarge {
    order: 1;
  }
}
@media (min-width: 61.875rem) {
  .span2_xlarge {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    min-width: 16.6666666667%;
  }

  .order2_xlarge {
    order: 2;
  }
}
@media (min-width: 61.875rem) {
  .span3_xlarge {
    flex-basis: 25%;
    max-width: 25%;
    min-width: 25%;
  }

  .order3_xlarge {
    order: 3;
  }
}
@media (min-width: 61.875rem) {
  .span4_xlarge {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    min-width: 33.3333333333%;
  }

  .order4_xlarge {
    order: 4;
  }
}
@media (min-width: 61.875rem) {
  .span5_xlarge {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    min-width: 41.6666666667%;
  }

  .order5_xlarge {
    order: 5;
  }
}
@media (min-width: 61.875rem) {
  .span6_xlarge {
    flex-basis: 50%;
    max-width: 50%;
    min-width: 50%;
  }

  .order6_xlarge {
    order: 6;
  }
}
@media (min-width: 61.875rem) {
  .span7_xlarge {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    min-width: 58.3333333333%;
  }

  .order7_xlarge {
    order: 7;
  }
}
@media (min-width: 61.875rem) {
  .span8_xlarge {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    min-width: 66.6666666667%;
  }

  .order8_xlarge {
    order: 8;
  }
}
@media (min-width: 61.875rem) {
  .span9_xlarge {
    flex-basis: 75%;
    max-width: 75%;
    min-width: 75%;
  }

  .order9_xlarge {
    order: 9;
  }
}
@media (min-width: 61.875rem) {
  .span10_xlarge {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    min-width: 83.3333333333%;
  }

  .order10_xlarge {
    order: 10;
  }
}
@media (min-width: 61.875rem) {
  .span11_xlarge {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    min-width: 91.6666666667%;
  }

  .order11_xlarge {
    order: 11;
  }
}
@media (min-width: 61.875rem) {
  .span12_xlarge {
    flex-basis: 100%;
    max-width: 100%;
    min-width: 100%;
  }

  .order12_xlarge {
    order: 12;
  }
}
@media (min-width: 75rem) {
  .span1_xxlarge {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    min-width: 8.3333333333%;
  }

  .order1_xxlarge {
    order: 1;
  }
}
@media (min-width: 75rem) {
  .span2_xxlarge {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    min-width: 16.6666666667%;
  }

  .order2_xxlarge {
    order: 2;
  }
}
@media (min-width: 75rem) {
  .span3_xxlarge {
    flex-basis: 25%;
    max-width: 25%;
    min-width: 25%;
  }

  .order3_xxlarge {
    order: 3;
  }
}
@media (min-width: 75rem) {
  .span4_xxlarge {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    min-width: 33.3333333333%;
  }

  .order4_xxlarge {
    order: 4;
  }
}
@media (min-width: 75rem) {
  .span5_xxlarge {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    min-width: 41.6666666667%;
  }

  .order5_xxlarge {
    order: 5;
  }
}
@media (min-width: 75rem) {
  .span6_xxlarge {
    flex-basis: 50%;
    max-width: 50%;
    min-width: 50%;
  }

  .order6_xxlarge {
    order: 6;
  }
}
@media (min-width: 75rem) {
  .span7_xxlarge {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    min-width: 58.3333333333%;
  }

  .order7_xxlarge {
    order: 7;
  }
}
@media (min-width: 75rem) {
  .span8_xxlarge {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    min-width: 66.6666666667%;
  }

  .order8_xxlarge {
    order: 8;
  }
}
@media (min-width: 75rem) {
  .span9_xxlarge {
    flex-basis: 75%;
    max-width: 75%;
    min-width: 75%;
  }

  .order9_xxlarge {
    order: 9;
  }
}
@media (min-width: 75rem) {
  .span10_xxlarge {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    min-width: 83.3333333333%;
  }

  .order10_xxlarge {
    order: 10;
  }
}
@media (min-width: 75rem) {
  .span11_xxlarge {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    min-width: 91.6666666667%;
  }

  .order11_xxlarge {
    order: 11;
  }
}
@media (min-width: 75rem) {
  .span12_xxlarge {
    flex-basis: 100%;
    max-width: 100%;
    min-width: 100%;
  }

  .order12_xxlarge {
    order: 12;
  }
}
@media (min-width: 93.75rem) {
  .span1_xxxlarge {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    min-width: 8.3333333333%;
  }

  .order1_xxxlarge {
    order: 1;
  }
}
@media (min-width: 93.75rem) {
  .span2_xxxlarge {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    min-width: 16.6666666667%;
  }

  .order2_xxxlarge {
    order: 2;
  }
}
@media (min-width: 93.75rem) {
  .span3_xxxlarge {
    flex-basis: 25%;
    max-width: 25%;
    min-width: 25%;
  }

  .order3_xxxlarge {
    order: 3;
  }
}
@media (min-width: 93.75rem) {
  .span4_xxxlarge {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    min-width: 33.3333333333%;
  }

  .order4_xxxlarge {
    order: 4;
  }
}
@media (min-width: 93.75rem) {
  .span5_xxxlarge {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    min-width: 41.6666666667%;
  }

  .order5_xxxlarge {
    order: 5;
  }
}
@media (min-width: 93.75rem) {
  .span6_xxxlarge {
    flex-basis: 50%;
    max-width: 50%;
    min-width: 50%;
  }

  .order6_xxxlarge {
    order: 6;
  }
}
@media (min-width: 93.75rem) {
  .span7_xxxlarge {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    min-width: 58.3333333333%;
  }

  .order7_xxxlarge {
    order: 7;
  }
}
@media (min-width: 93.75rem) {
  .span8_xxxlarge {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    min-width: 66.6666666667%;
  }

  .order8_xxxlarge {
    order: 8;
  }
}
@media (min-width: 93.75rem) {
  .span9_xxxlarge {
    flex-basis: 75%;
    max-width: 75%;
    min-width: 75%;
  }

  .order9_xxxlarge {
    order: 9;
  }
}
@media (min-width: 93.75rem) {
  .span10_xxxlarge {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    min-width: 83.3333333333%;
  }

  .order10_xxxlarge {
    order: 10;
  }
}
@media (min-width: 93.75rem) {
  .span11_xxxlarge {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    min-width: 91.6666666667%;
  }

  .order11_xxxlarge {
    order: 11;
  }
}
@media (min-width: 93.75rem) {
  .span12_xxxlarge {
    flex-basis: 100%;
    max-width: 100%;
    min-width: 100%;
  }

  .order12_xxxlarge {
    order: 12;
  }
}

/* Source common/css/styles/screen/header.scss */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
}
.scrolled_down header {
  box-shadow: 0.25rem 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.1);
}
header .links {
  position: relative;
  z-index: 0;
  display: flex;
  gap: 1.25rem;
  padding: 0.625rem 0;
  justify-content: flex-end;
}
@media (min-width: 35rem) {
  header .links {
    gap: 1.875rem;
  }
}
header .links::after {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  background-color: #312783;
  margin: 0 calc(50% - 50vw);
}
header .links .quicklink {
  font-weight: 700;
  color: #fff;
  text-underline-offset: 0.1875rem;
}
header .links .quicklink > span {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
header .links .quicklink .text {
  color: #fff;
  display: none;
}
@media (min-width: 35rem) {
  header .links .quicklink .text {
    display: block;
  }
}
header .links .quicklink .icon {
  display: block;
  width: 1.875rem;
  height: 1.875rem;
  fill: #fff;
}
header .links .quicklink:focus-visible {
  outline-color: #fff;
}
header .header_logo_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}
.header_content_wrapper {
  position: relative;
  height: 21.875rem;
}
@media (min-width: 20rem) {
  .header_content_wrapper {
    height: calc(21.875rem + 30.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .header_content_wrapper {
    height: 52rem;
  }
}
.startpage .header_content_wrapper {
  height: auto;
}
.header_content_wrapper .wrapper {
  margin-top: -8.5rem;
  z-index: 1;
  position: relative;
}
@media (min-width: 35rem) {
  .header_content_wrapper .wrapper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0rem;
  }
}
@media (min-width: 35rem) and (min-width: 20rem) {
  .header_content_wrapper .wrapper {
    bottom: calc(0rem + 2.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 35rem) and (min-width: 93.75rem) {
  .header_content_wrapper .wrapper {
    bottom: 2.9375rem;
  }
}
.header_content_wrapper .header_content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.header_content_wrapper .link {
  display: none;
}
@media (min-width: 61.875rem) {
  .header_content_wrapper .link {
    display: block;
    position: relative;
    padding: 1.25rem 0;
    transition: opacity 300ms;
  }
  .scrolled_down .header_content_wrapper .link {
    opacity: 0;
    transition: opacity 300ms;
  }
}
.header_content_wrapper .link .content_link .icon {
  fill: #312783;
  width: 1.875rem;
  height: 1.875rem;
  display: block;
  transform: rotate(90deg);
  transition: fill 300ms;
}
@media (min-width: 20rem) {
  .header_content_wrapper .link .content_link .icon {
    width: calc(1.875rem + 0.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .header_content_wrapper .link .content_link .icon {
    width: 2.75rem;
  }
}
@media (min-width: 20rem) {
  .header_content_wrapper .link .content_link .icon {
    height: calc(1.875rem + 0.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .header_content_wrapper .link .content_link .icon {
    height: 2.75rem;
  }
}
.header_content_wrapper .link .content_link:hover .icon {
  fill: #9E2626;
  transition: fill 300ms;
}
.header_content_wrapper .link_mobile {
  position: absolute;
  top: 92dvh;
  right: 0.875rem;
  z-index: 10;
  opacity: 1;
  transition: opacity 300ms;
}
.scrolled_down .header_content_wrapper .link_mobile {
  opacity: 0;
  transition: opacity 300ms;
}
@media (min-width: 35rem) {
  .header_content_wrapper .link_mobile {
    display: none;
  }
}
.header_content_wrapper .link_mobile .content_link .icon {
  fill: #312783;
  width: 1.875rem;
  height: 1.875rem;
  display: block;
  transform: rotate(90deg);
  transition: fill 300ms;
}
@media (min-width: 20rem) {
  .header_content_wrapper .link_mobile .content_link .icon {
    width: calc(1.875rem + 0.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .header_content_wrapper .link_mobile .content_link .icon {
    width: 2.75rem;
  }
}
@media (min-width: 20rem) {
  .header_content_wrapper .link_mobile .content_link .icon {
    height: calc(1.875rem + 0.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .header_content_wrapper .link_mobile .content_link .icon {
    height: 2.75rem;
  }
}
.header_content_wrapper .link_mobile .content_link:hover .icon {
  fill: #9E2626;
  transition: fill 300ms;
}

/* Source common/css/styles/screen/header_background.scss */

.header_background {
  background-position: center center;
  background-size: cover;
  margin: 0 auto;
  width: 100%;
  height: 21.875rem;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media (min-width: 20rem) {
  .header_background {
    height: calc(21.875rem + 30.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .header_background {
    height: 52rem;
  }
}
.header_background::after {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  z-index: -1;
  height: 9.375rem;
  background: linear-gradient(to top, white 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0) 100%);
}
@media (min-width: 20rem) {
  .header_background::after {
    height: calc(9.375rem + 20.75 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .header_background::after {
    height: 30.125rem;
  }
}
.startpage .header_background::after {
  height: 15.625rem;
}
@media (min-width: 20rem) {
  .startpage .header_background::after {
    height: calc(15.625rem + 14.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .startpage .header_background::after {
    height: 30.125rem;
  }
}
.header_background::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.125rem;
  height: 0.25rem;
  background: #fff;
}
.startpage .header_background {
  height: 35.5rem;
}
@media (min-width: 20rem) {
  .startpage .header_background {
    height: calc(35.5rem + 21.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .startpage .header_background {
    height: 56.75rem;
  }
}
.header_background .signet {
  position: absolute;
  top: 9.375rem;
  right: -0.4375rem;
  z-index: -1;
  opacity: 0;
  animation: header_signet 1200ms ease forwards;
  animation-delay: 600ms;
}
@media (min-width: 20rem) {
  .header_background .signet {
    top: calc(9.375rem + 1.25 * (100vw - 20rem) / (27.5));
  }
}
@media (min-width: 47.5rem) {
  .header_background .signet {
    top: calc(10.625rem + 1.9375 * (100vw - 47.5rem) / (46.25));
  }
}
@media (min-width: 93.75rem) {
  .header_background .signet {
    top: 12.5625rem;
  }
}
.startpage .header_background .signet {
  top: 14.25rem;
}
@media (min-width: 20rem) {
  .startpage .header_background .signet {
    top: calc(14.25rem + 3.75 * (100vw - 20rem) / (27.5));
  }
}
@media (min-width: 47.5rem) {
  .startpage .header_background .signet {
    top: calc(18rem + -5.4375 * (100vw - 47.5rem) / (46.25));
  }
}
@media (min-width: 93.75rem) {
  .startpage .header_background .signet {
    top: 12.5625rem;
  }
}
.header_background .signet .icon {
  width: 13.875rem;
  height: 13.875rem;
  display: block;
  opacity: 0.5;
}
@media (min-width: 20rem) {
  .header_background .signet .icon {
    width: calc(13.875rem + 4.875 * (100vw - 20rem) / (27.5));
  }
}
@media (min-width: 47.5rem) {
  .header_background .signet .icon {
    width: calc(18.75rem + 16.375 * (100vw - 47.5rem) / (46.25));
  }
}
@media (min-width: 93.75rem) {
  .header_background .signet .icon {
    width: 35.125rem;
  }
}
@media (min-width: 20rem) {
  .header_background .signet .icon {
    height: calc(13.875rem + 4.875 * (100vw - 20rem) / (27.5));
  }
}
@media (min-width: 47.5rem) {
  .header_background .signet .icon {
    height: calc(18.75rem + 16.375 * (100vw - 47.5rem) / (46.25));
  }
}
@media (min-width: 93.75rem) {
  .header_background .signet .icon {
    height: 35.125rem;
  }
}
.startpage .header_background .signet .icon {
  width: 13.875rem;
  height: 13.875rem;
}
@media (min-width: 20rem) {
  .startpage .header_background .signet .icon {
    width: calc(13.875rem + 20 * (100vw - 20rem) / (27.5));
  }
}
@media (min-width: 47.5rem) {
  .startpage .header_background .signet .icon {
    width: calc(33.875rem + 1.25 * (100vw - 47.5rem) / (46.25));
  }
}
@media (min-width: 93.75rem) {
  .startpage .header_background .signet .icon {
    width: 35.125rem;
  }
}
@media (min-width: 20rem) {
  .startpage .header_background .signet .icon {
    height: calc(13.875rem + 20 * (100vw - 20rem) / (27.5));
  }
}
@media (min-width: 47.5rem) {
  .startpage .header_background .signet .icon {
    height: calc(33.875rem + 1.25 * (100vw - 47.5rem) / (46.25));
  }
}
@media (min-width: 93.75rem) {
  .startpage .header_background .signet .icon {
    height: 35.125rem;
  }
}

/* Source common/css/styles/screen/infolist_anchor_overview.scss */

.infolist_anchor_overview {
  background: #ededed;
  border-radius: 0.3125rem;
  padding: 0.75em 1.5em;
}
.infolist_anchor_overview a {
  display: block;
  padding: 0.75em 0;
}
.infolist_anchor_overview li {
  border-top: 0rem solid #d4d4d4;
}
.infolist_anchor_overview li:first-child {
  border-top: 0;
}

/* Source common/css/styles/screen/infolist_download_pdf.scss */

.infolist_download {
  align-items: baseline;
  background: #ededed;
  border-radius: 0.3125rem;
  color: #211B43;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1.5em;
  padding: 1.5em;
  gap: 0.625rem;
}
.infolist_download .infolist_title {
  font-weight: 700;
}
.infolist_download p {
  margin-right: 1.5em;
  margin-bottom: 0 !important;
}

/* Source common/css/styles/screen/infolist_overview.scss */

.infolist_overview,
.download_overview,
.onlinetool_v2_overview,
.onlineforms_popup_overview {
  background-color: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  height: 100%;
  margin-bottom: 1.875rem;
  display: flex;
  flex-direction: column;
  transition: transform 300ms;
}
@media (min-width: 20rem) {
  .infolist_overview,
.download_overview,
.onlinetool_v2_overview,
.onlineforms_popup_overview {
    margin-bottom: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .infolist_overview,
.download_overview,
.onlinetool_v2_overview,
.onlineforms_popup_overview {
    margin-bottom: 3.125rem;
  }
}
.infolist_overview:hover,
.download_overview:hover,
.onlinetool_v2_overview:hover,
.onlineforms_popup_overview:hover {
  transform: scale(1.04);
  transition: transform 300ms;
}
.infolist_overview .overview_title_wrapper,
.download_overview .overview_title_wrapper,
.onlinetool_v2_overview .overview_title_wrapper,
.onlineforms_popup_overview .overview_title_wrapper {
  background: linear-gradient(80deg, #9E2626 0%, #9E2626 66%, #751c1c 100%);
  padding: 0 1.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
}
@media (min-width: 20rem) {
  .infolist_overview .overview_title_wrapper,
.download_overview .overview_title_wrapper,
.onlinetool_v2_overview .overview_title_wrapper,
.onlineforms_popup_overview .overview_title_wrapper {
    padding-top: calc(0.9375rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .infolist_overview .overview_title_wrapper,
.download_overview .overview_title_wrapper,
.onlinetool_v2_overview .overview_title_wrapper,
.onlineforms_popup_overview .overview_title_wrapper {
    padding-top: 1.875rem;
  }
}
@media (min-width: 20rem) {
  .infolist_overview .overview_title_wrapper,
.download_overview .overview_title_wrapper,
.onlinetool_v2_overview .overview_title_wrapper,
.onlineforms_popup_overview .overview_title_wrapper {
    padding-bottom: calc(0.9375rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .infolist_overview .overview_title_wrapper,
.download_overview .overview_title_wrapper,
.onlinetool_v2_overview .overview_title_wrapper,
.onlineforms_popup_overview .overview_title_wrapper {
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 35rem) {
  .infolist_overview .overview_title_wrapper,
.download_overview .overview_title_wrapper,
.onlinetool_v2_overview .overview_title_wrapper,
.onlineforms_popup_overview .overview_title_wrapper {
    min-height: 10rem;
  }
}
@media (min-width: 35rem) and (min-width: 20rem) {
  .infolist_overview .overview_title_wrapper,
.download_overview .overview_title_wrapper,
.onlinetool_v2_overview .overview_title_wrapper,
.onlineforms_popup_overview .overview_title_wrapper {
    min-height: calc(10rem + 2.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 35rem) and (min-width: 93.75rem) {
  .infolist_overview .overview_title_wrapper,
.download_overview .overview_title_wrapper,
.onlinetool_v2_overview .overview_title_wrapper,
.onlineforms_popup_overview .overview_title_wrapper {
    min-height: 12.5rem;
  }
}
.infolist_overview .overview_title_wrapper .overview_title,
.download_overview .overview_title_wrapper .overview_title,
.onlinetool_v2_overview .overview_title_wrapper .overview_title,
.onlineforms_popup_overview .overview_title_wrapper .overview_title {
  color: #fff;
  margin-bottom: 0;
  text-align: center;
  padding-top: 0;
}
.infolist_overview .overview_title_wrapper .icon_wrapper,
.download_overview .overview_title_wrapper .icon_wrapper,
.onlinetool_v2_overview .overview_title_wrapper .icon_wrapper,
.onlineforms_popup_overview .overview_title_wrapper .icon_wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  box-shadow: 0.25rem 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 1.25rem;
}
@media (min-width: 20rem) {
  .infolist_overview .overview_title_wrapper .icon_wrapper,
.download_overview .overview_title_wrapper .icon_wrapper,
.onlinetool_v2_overview .overview_title_wrapper .icon_wrapper,
.onlineforms_popup_overview .overview_title_wrapper .icon_wrapper {
    width: calc(3.75rem + 1.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .infolist_overview .overview_title_wrapper .icon_wrapper,
.download_overview .overview_title_wrapper .icon_wrapper,
.onlinetool_v2_overview .overview_title_wrapper .icon_wrapper,
.onlineforms_popup_overview .overview_title_wrapper .icon_wrapper {
    width: 5.3125rem;
  }
}
@media (min-width: 20rem) {
  .infolist_overview .overview_title_wrapper .icon_wrapper,
.download_overview .overview_title_wrapper .icon_wrapper,
.onlinetool_v2_overview .overview_title_wrapper .icon_wrapper,
.onlineforms_popup_overview .overview_title_wrapper .icon_wrapper {
    height: calc(3.75rem + 1.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .infolist_overview .overview_title_wrapper .icon_wrapper,
.download_overview .overview_title_wrapper .icon_wrapper,
.onlinetool_v2_overview .overview_title_wrapper .icon_wrapper,
.onlineforms_popup_overview .overview_title_wrapper .icon_wrapper {
    height: 5.3125rem;
  }
}
.infolist_overview .overview_title_wrapper .icon_wrapper .icon,
.download_overview .overview_title_wrapper .icon_wrapper .icon,
.onlinetool_v2_overview .overview_title_wrapper .icon_wrapper .icon,
.onlineforms_popup_overview .overview_title_wrapper .icon_wrapper .icon {
  fill: #fff;
  width: 1.875rem;
  height: 1.875rem;
  display: block;
}
@media (min-width: 20rem) {
  .infolist_overview .overview_title_wrapper .icon_wrapper .icon,
.download_overview .overview_title_wrapper .icon_wrapper .icon,
.onlinetool_v2_overview .overview_title_wrapper .icon_wrapper .icon,
.onlineforms_popup_overview .overview_title_wrapper .icon_wrapper .icon {
    width: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .infolist_overview .overview_title_wrapper .icon_wrapper .icon,
.download_overview .overview_title_wrapper .icon_wrapper .icon,
.onlinetool_v2_overview .overview_title_wrapper .icon_wrapper .icon,
.onlineforms_popup_overview .overview_title_wrapper .icon_wrapper .icon {
    width: 3.125rem;
  }
}
@media (min-width: 20rem) {
  .infolist_overview .overview_title_wrapper .icon_wrapper .icon,
.download_overview .overview_title_wrapper .icon_wrapper .icon,
.onlinetool_v2_overview .overview_title_wrapper .icon_wrapper .icon,
.onlineforms_popup_overview .overview_title_wrapper .icon_wrapper .icon {
    height: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .infolist_overview .overview_title_wrapper .icon_wrapper .icon,
.download_overview .overview_title_wrapper .icon_wrapper .icon,
.onlinetool_v2_overview .overview_title_wrapper .icon_wrapper .icon,
.onlineforms_popup_overview .overview_title_wrapper .icon_wrapper .icon {
    height: 3.125rem;
  }
}
.infolist_overview .entries,
.download_overview .entries,
.onlinetool_v2_overview .entries,
.onlineforms_popup_overview .entries {
  padding: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  flex: 0 1 auto;
}
.infolist_overview .entry,
.download_overview .entry,
.onlinetool_v2_overview .entry,
.onlineforms_popup_overview .entry {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.infolist_overview .entry:hover .icon,
.download_overview .entry:hover .icon,
.onlinetool_v2_overview .entry:hover .icon,
.onlineforms_popup_overview .entry:hover .icon {
  fill: #9E2626;
  transition: all 300ms;
}
.infolist_overview .entry:hover .title,
.download_overview .entry:hover .title,
.onlinetool_v2_overview .entry:hover .title,
.onlineforms_popup_overview .entry:hover .title {
  color: #9E2626;
  transition: all 300ms;
}
.infolist_overview .entry .icon,
.download_overview .entry .icon,
.onlinetool_v2_overview .entry .icon,
.onlineforms_popup_overview .entry .icon {
  display: block;
  fill: #312783;
  width: 0.9375rem;
  height: 0.9375rem;
  transition: all 300ms;
  flex-shrink: 0;
}
@media (min-width: 20rem) {
  .infolist_overview .entry .icon,
.download_overview .entry .icon,
.onlinetool_v2_overview .entry .icon,
.onlineforms_popup_overview .entry .icon {
    width: calc(0.9375rem + 0.3125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .infolist_overview .entry .icon,
.download_overview .entry .icon,
.onlinetool_v2_overview .entry .icon,
.onlineforms_popup_overview .entry .icon {
    width: 1.25rem;
  }
}
@media (min-width: 20rem) {
  .infolist_overview .entry .icon,
.download_overview .entry .icon,
.onlinetool_v2_overview .entry .icon,
.onlineforms_popup_overview .entry .icon {
    height: calc(0.9375rem + 0.3125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .infolist_overview .entry .icon,
.download_overview .entry .icon,
.onlinetool_v2_overview .entry .icon,
.onlineforms_popup_overview .entry .icon {
    height: 1.25rem;
  }
}
.infolist_overview .entry .text,
.download_overview .entry .text,
.onlinetool_v2_overview .entry .text,
.onlineforms_popup_overview .entry .text {
  display: none;
}
.infolist_overview .entry .title,
.download_overview .entry .title,
.onlinetool_v2_overview .entry .title,
.onlineforms_popup_overview .entry .title {
  text-decoration: none;
  color: #312783;
  margin-bottom: 0;
  transition: all 300ms;
  word-break: break-word;
  hyphens: auto;
  text-wrap: balance;
}

/* Source common/css/styles/screen/infolist_top_link.scss */

.infolist_top_link {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0.75em 0;
}
.infolist_top_link a {
  text-decoration: none;
  align-items: center;
  display: flex;
  flex-direction: row;
  text-align: center;
  gap: 1.25rem;
}
.infolist_top_link a:hover .icon {
  fill: #9E2626;
  transition: all 300ms;
}
.infolist_top_link .icon {
  display: block;
  fill: #312783;
  height: 2.5rem;
  transform: rotate(-90deg);
  width: 2.5rem;
  transition: all 300ms;
}
.infolist_top_link .text {
  color: #312783;
  font-weight: 700;
}

/* Source common/css/styles/screen/infolists.scss */

.amount {
  display: block;
  text-align: right;
  white-space: nowrap;
}

.steuerlexikon .amount {
  display: table-cell;
}

.multi_columns li {
  break-inside: avoid;
}
@media (min-width: 47.5rem) {
  .multi_columns {
    column-count: 2;
    column-gap: 3em;
  }
}

.infolist_container_stand_haftung > div {
  margin-top: 3em;
}

.infolist_text_container,
.infolist_object {
  margin-bottom: 1.5em;
}

.infolist_text {
  transition: all 300ms;
}
.infolist_text:focus {
  outline: 0;
}

.infolist_cta_style, .infolist_cta {
  align-items: center;
  background: #9E2626;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 3em 0;
  padding: 3em;
  text-align: center;
  text-decoration: none;
  transition: all 300ms;
}
.infolist_cta_style > *, .infolist_cta > * {
  color: #fff;
  max-width: 50rem;
}
.infolist_cta_style:hover, .infolist_cta:hover, .infolist_cta_style:focus, .infolist_cta:focus {
  background: rgba(158, 38, 38, 0.8);
}

.infolist_teaser_style, .infolist_text_fader_style, .infolist_text_container_boxit_nutzen_fuer_klienten {
  display: flex;
  flex-direction: column;
}
.infolist_teaser_style .infolist_text, .infolist_text_fader_style .infolist_text, .infolist_text_container_boxit_nutzen_fuer_klienten .infolist_text {
  background: #ededed;
  margin-bottom: 1.5em;
  padding: 1.5em;
}
@media (min-width: 61.875rem) {
  .infolist_teaser_style, .infolist_text_fader_style, .infolist_text_container_boxit_nutzen_fuer_klienten {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .infolist_teaser_style .infolist_text, .infolist_text_fader_style .infolist_text, .infolist_text_container_boxit_nutzen_fuer_klienten .infolist_text {
    width: calc(50% - (1.5em / 2));
  }
}

.infolist_text_list_style:not(:has(div > ul)), .infolist:not(.infolist_boxit) .infolist_text_container:not(:has(div > ul)) {
  list-style: url("../../common/images/list-styles/list_style.svg");
  margin: 0 0 0.75em;
  padding-left: 1.125em;
}
.infolist_text_list_style:not(:has(div > ul)) > .infolist_text, .infolist:not(.infolist_boxit) .infolist_text_container:not(:has(div > ul)) > .infolist_text {
  display: list-item;
  padding-left: 0.375em;
}

@supports (-moz-appearance: none) {
  .infolist_text_list_style, .infolist:not(.infolist_boxit) .infolist_text_container {
    list-style: url("../../common/images/list-styles/list_style.svg");
    margin: 0 0 0.75em;
    padding-left: 1.125em;
  }
  .infolist_text_list_style > .infolist_text, .infolist:not(.infolist_boxit) .infolist_text_container > .infolist_text {
    display: list-item;
    padding-left: 0.375em;
  }
}
.infolist_accordion_style .infolist_text {
  background: none;
  margin-bottom: 1.5em;
  padding: 0;
}
.infolist_accordion_style .infolist_text > h3,
.infolist_accordion_style .infolist_text > h2 {
  background: #ededed;
  color: #9E2626;
  cursor: pointer;
  margin-bottom: 0;
  padding: 0.75em;
  user-select: none;
  transition: all 300ms;
}
.infolist_accordion_style .infolist_text > h3::before,
.infolist_accordion_style .infolist_text > h2::before {
  -webkit-mask: url("../../common/images/icons/arrow.svg") no-repeat 50% 50%;
  -webkit-mask-size: cover;
  background-color: #9E2626;
  content: "";
  display: inline-block;
  height: 1.25rem;
  margin-bottom: -0.1875rem;
  margin-right: 0.75em;
  mask: url("../../common/images/icons/arrow.svg") no-repeat 50% 50%;
  mask-size: cover;
  position: relative;
  transform: rotate(90deg);
  transition: all 300ms;
  width: 1.25rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .infolist_accordion_style .infolist_text > h3,
.infolist_accordion_style .infolist_text > h2 {
    text-decoration: underline;
  }
  .infolist_accordion_style .infolist_text > h3::before,
.infolist_accordion_style .infolist_text > h2::before {
    display: none;
  }
}
.infolist_accordion_style .infolist_text:hover > h3,
.infolist_accordion_style .infolist_text:hover > h2, .infolist_accordion_style .infolist_text:focus > h3,
.infolist_accordion_style .infolist_text:focus > h2 {
  background: #e5e5e5;
}
.infolist_accordion_style .infolist_text:focus > *:not(h2):not(h3) {
  letter-spacing: calc((0.875rem + 0.125 * (100vw - 20rem) / (73.75)) * 0);
  font-size: 0.875rem;
}
@media (min-width: 93.75rem) {
  .infolist_accordion_style .infolist_text:focus > *:not(h2):not(h3) {
    letter-spacing: calc(1rem * 0);
  }
}
@media (min-width: 20rem) {
  .infolist_accordion_style .infolist_text:focus > *:not(h2):not(h3) {
    font-size: calc(0.875rem + 0.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .infolist_accordion_style .infolist_text:focus > *:not(h2):not(h3) {
    font-size: 1rem;
  }
}
.infolist_accordion_style .infolist_text:focus > h3::before,
.infolist_accordion_style .infolist_text:focus > h2::before {
  transform: rotate(0);
}
.infolist_accordion_style .infolist_text > *:not(h2):not(h3) {
  font-size: 0;
  overflow: hidden;
  padding-top: 0.75em;
  transform-origin: top;
  transition: all 300ms;
}

.infolist_text_fader_style .infolist_text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: default;
}
.infolist_text_fader_style .infolist_text > h2,
.infolist_text_fader_style .infolist_text > h3 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  padding: 0 3em;
  transition: all 300ms;
  transform: translateY(0);
  text-align: center;
}
.infolist_text_fader_style .infolist_text > *:not(h2):not(h3) {
  margin: 0;
  padding: 3em;
  opacity: 0;
  transition: all 300ms;
  transform: translateY(1.875rem);
}
.infolist_text_fader_style .infolist_text:hover, .infolist_text_fader_style .infolist_text:focus {
  background: rgba(158, 38, 38, 0.3);
}
.infolist_text_fader_style .infolist_text:hover > h2,
.infolist_text_fader_style .infolist_text:hover > h3, .infolist_text_fader_style .infolist_text:focus > h2,
.infolist_text_fader_style .infolist_text:focus > h3 {
  bottom: 50%;
  opacity: 0;
}
.infolist_text_fader_style .infolist_text:hover > *:not(h2):not(h3), .infolist_text_fader_style .infolist_text:focus > *:not(h2):not(h3) {
  transform: translateY(0);
  opacity: 1;
}

/* Source common/css/styles/screen/infolists_at_reisekosten.scss */

.map_chart {
  height: 16.25rem;
  background-color: #fff;
  margin: 0 0 1.5em 0;
  max-width: 100%;
  position: relative;
}
@media (min-width: 20rem) {
  .map_chart {
    height: calc(16.25rem + 12.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .map_chart {
    height: 28.75rem;
  }
}
.map_chart .drag_area {
  bottom: 0;
  left: 3.75rem;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  visibility: hidden;
  z-index: 1;
}
.map_chart .drag_area.visible {
  visibility: visible;
}
.map_chart .map_chart_wrapper {
  height: 16.25rem;
  border: 0rem solid #d4d4d4;
  cursor: move;
  overflow: hidden;
  padding: 0.375em;
  position: relative;
  z-index: 0;
}
@media (min-width: 20rem) {
  .map_chart .map_chart_wrapper {
    height: calc(16.25rem + 12.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .map_chart .map_chart_wrapper {
    height: 28.75rem;
  }
}
.map_chart svg path {
  position: relative;
  stroke: #fff;
  transition: fill-opacity 300ms;
}
.map_chart svg path.hasData {
  fill: #9E2626;
}
.map_chart svg path.noData {
  fill: #dddddd;
}
.map_chart .map_chart_navigation {
  display: inline-flex;
  flex-direction: column;
  left: 0.75em;
  position: absolute;
  top: 0.75em;
}
.map_chart .map_chart_navigation .zoom {
  align-items: center;
  background-color: #ededed;
  border: 0rem solid #d4d4d4;
  border-radius: 0.3125rem;
  color: #211B43;
  cursor: pointer;
  display: flex;
  font-size: 120%;
  height: 2.5rem;
  justify-content: center;
  margin: 0 0 0.375em 0;
  padding: 0.375em 0.75em;
  text-decoration: none;
  width: 2.5rem;
}
.map_chart .map_chart_navigation .zoom.disabled {
  cursor: default;
  opacity: 0.4;
}
.map_chart .output {
  background-color: #fff;
  box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.2);
  min-width: 9.375rem;
  opacity: 0;
  padding: 1.05em;
  position: absolute;
  transition: left 300ms, opacity 300ms, top 300ms, visibility 300ms;
  user-select: none;
  visibility: hidden;
  z-index: 2;
}
.map_chart .output.show {
  opacity: 1;
  visibility: visible;
}
.map_chart .touch_info {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  display: flex;
  font-weight: 700;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  z-index: 3;
}

body.reisekosten .switch_view {
  margin-bottom: 0.75em;
}

/* Source common/css/styles/screen/iphone_safe_area.scss */

@supports (padding-left: env(safe-area-inset-left)) {
  html.iphone .container {
    padding-left: "max(0.9375rem, env(safe-area-inset-left))";
    padding-right: "max(0.9375rem, env(safe-area-inset-right))";
  }
}
@media (min-width: 20rem) {
  @supports (padding-left: env(safe-area-inset-left)) {
    html.iphone .container {
      padding-left: "max(calc(0.9375rem + 2.1875 * (100vw - 20rem) / (73.75)), env(safe-area-inset-left))";
      padding-right: "max(calc(0.9375rem + 2.1875 * (100vw - 20rem) / (73.75)), env(safe-area-inset-right))";
    }
  }
}

/* Source common/css/styles/screen/job_entry.scss */

.job_entry .job_entry_aside {
  margin-bottom: 1.875rem;
  margin-top: 3.125rem;
  background-color: #9E2626;
  color: #fff;
  border-radius: 1.25rem;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 20rem) {
  .job_entry .job_entry_aside {
    margin-bottom: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .job_entry .job_entry_aside {
    margin-bottom: 3.125rem;
  }
}
@media (min-width: 20rem) {
  .job_entry .job_entry_aside {
    margin-top: calc(3.125rem + 5.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .job_entry .job_entry_aside {
    margin-top: 8.375rem;
  }
}
@media (min-width: 20rem) {
  .job_entry .job_entry_aside {
    padding-left: calc(0.9375rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .job_entry .job_entry_aside {
    padding-left: 1.875rem;
  }
}
@media (min-width: 20rem) {
  .job_entry .job_entry_aside {
    padding-right: calc(0.9375rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .job_entry .job_entry_aside {
    padding-right: 1.875rem;
  }
}
@media (min-width: 20rem) {
  .job_entry .job_entry_aside {
    padding-top: calc(3.125rem + 3.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .job_entry .job_entry_aside {
    padding-top: 6.25rem;
  }
}
@media (min-width: 20rem) {
  .job_entry .job_entry_aside {
    padding-bottom: calc(3.125rem + 3.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .job_entry .job_entry_aside {
    padding-bottom: 6.25rem;
  }
}
.job_entry .job_entry_aside .icon_wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  box-shadow: 0.25rem 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 20rem) {
  .job_entry .job_entry_aside .icon_wrapper {
    width: calc(3.75rem + 1.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .job_entry .job_entry_aside .icon_wrapper {
    width: 5.3125rem;
  }
}
@media (min-width: 20rem) {
  .job_entry .job_entry_aside .icon_wrapper {
    height: calc(3.75rem + 1.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .job_entry .job_entry_aside .icon_wrapper {
    height: 5.3125rem;
  }
}
.job_entry .job_entry_aside .icon_wrapper .icon {
  fill: #fff;
  width: 1.875rem;
  height: 1.875rem;
  display: block;
}
@media (min-width: 20rem) {
  .job_entry .job_entry_aside .icon_wrapper .icon {
    width: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .job_entry .job_entry_aside .icon_wrapper .icon {
    width: 3.125rem;
  }
}
@media (min-width: 20rem) {
  .job_entry .job_entry_aside .icon_wrapper .icon {
    height: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .job_entry .job_entry_aside .icon_wrapper .icon {
    height: 3.125rem;
  }
}
.job_entry .job_entry_aside .title {
  color: #fff;
  text-align: center;
}
.job_entry .job_entry_aside .button_overview {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

/* Source common/css/styles/screen/job_overview.scss */

.job_overview {
  margin-bottom: 0.75em;
}
.job_overview .teaser .entry {
  text-decoration: none;
}
.job_overview .teaser .entry .title {
  text-decoration: none;
}

/* Source common/css/styles/screen/karrierepaket_icon_text.scss */

.kpt_icon_text_overview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 1.25rem;
  padding: 1.875rem 0;
  align-items: flex-start;
}
.kpt_icon_text_overview .list_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 1.25rem;
  align-items: flex-start;
}

.kpt_icon_text_entry {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.kpt_icon_text_entry.vertical_center {
  align-items: center;
}
.kpt_icon_text_entry .title {
  margin: 0;
  padding-top: 0;
  color: #211B43;
}
.kpt_icon_text_entry p {
  margin: 0;
  color: #211B43;
}
.kpt_icon_text_entry .icon {
  display: block;
  fill: #9E2626;
  flex-shrink: 0;
  height: 1.25rem;
  line-height: 0;
  margin-right: 0.75em;
  width: 1.25rem;
}

.icon_text_center .kpt_icon_text_entry {
  flex-direction: column;
}
.icon_text_center .kpt_icon_text_entry.vertical_top {
  align-items: center;
}
.icon_text_center .kpt_icon_text_entry * {
  text-align: center;
}
.icon_text_center .kpt_icon_text_entry .icon {
  fill: #9E2626;
  height: 5.625rem;
  margin: 0 0 0.75em 0;
  width: 6.875rem;
}

.icon_text_background .kpt_icon_text_entry {
  background-color: #9E2626;
  padding: 0.75em;
}
.icon_text_background .kpt_icon_text_entry .title {
  margin-bottom: 0;
}
.icon_text_background .kpt_icon_text_entry .title + .text_wrapper {
  margin-top: 0.75em;
}
.icon_text_background .kpt_icon_text_entry .icon {
  fill: #211B43;
}
.icon_text_background .kpt_icon_text_entry .text_wrapper * {
  color: #211B43;
}
.icon_text_background.icon_text_center .icon_text_entry .icon {
  margin-bottom: 0.75em;
  padding: 0;
}

.icon_circle {
  position: relative;
}
.icon_circle .info_top {
  margin-bottom: 3.125rem;
}
.icon_circle .kpt_icon_text_entry {
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 20rem) {
  .icon_circle .kpt_icon_text_entry {
    margin-bottom: calc(1.25rem + 1.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .icon_circle .kpt_icon_text_entry {
    margin-bottom: 3.125rem;
  }
}
.icon_circle .kpt_icon_text_entry .icon_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background-color: #9E2626;
  flex-shrink: 0;
  box-shadow: 0.25rem 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 20rem) {
  .icon_circle .kpt_icon_text_entry .icon_wrapper {
    width: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .icon_circle .kpt_icon_text_entry .icon_wrapper {
    width: 3.125rem;
  }
}
@media (min-width: 20rem) {
  .icon_circle .kpt_icon_text_entry .icon_wrapper {
    height: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .icon_circle .kpt_icon_text_entry .icon_wrapper {
    height: 3.125rem;
  }
}
.icon_circle .kpt_icon_text_entry .icon_wrapper .icon {
  fill: #fff;
  width: 0.9375rem;
  height: 0.9375rem;
  display: block;
  margin-right: 0;
}
@media (min-width: 20rem) {
  .icon_circle .kpt_icon_text_entry .icon_wrapper .icon {
    width: calc(0.9375rem + 0.3125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .icon_circle .kpt_icon_text_entry .icon_wrapper .icon {
    width: 1.25rem;
  }
}
@media (min-width: 20rem) {
  .icon_circle .kpt_icon_text_entry .icon_wrapper .icon {
    height: calc(0.9375rem + 0.3125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .icon_circle .kpt_icon_text_entry .icon_wrapper .icon {
    height: 1.25rem;
  }
}
.icon_circle .kpt_icon_text_entry .text_wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.icon_circle .kpt_icon_text_entry .text_wrapper .title {
  color: #312783;
}
.icon_circle .kpt_icon_text_entry .text_wrapper p {
  color: #211B43;
}
.icon_circle .button_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 20rem) {
  .icon_circle .button_wrapper {
    margin-bottom: calc(1.25rem + 1.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .icon_circle .button_wrapper {
    margin-bottom: 3.125rem;
  }
}
.icon_circle .photo {
  height: 11.5625rem;
  margin-top: auto;
  margin-bottom: auto;
}
@media (min-width: 20rem) {
  .icon_circle .photo {
    height: calc(11.5625rem + 27.1875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .icon_circle .photo {
    height: 38.75rem;
  }
}
.icon_circle .photo img {
  object-fit: cover;
  height: 100%;
  border-radius: 1.25rem;
}

/* Source common/css/styles/screen/legal_notice_aab.scss */

.legal_notice_tax_aut_aab {
  margin-bottom: 0.75em;
  padding-top: 0.75em;
}
.legal_notice_tax_aut_aab [href$=".pdf"] {
  display: block;
}
.legal_notice_tax_aut_aab [href$=".pdf"] > span {
  display: flex;
}
.legal_notice_tax_aut_aab .icon {
  display: block;
  fill: #e44e4e;
  height: 1.5rem;
  margin-right: 0.75em;
  min-width: 1.5rem;
  width: 1.5rem;
}

/* Source common/css/styles/screen/legal_notice_font_overview.scss */

.legal_notice_font_overview p {
  margin-bottom: 0;
}
.legal_notice_font_overview li {
  margin-bottom: 0.75em;
}

/* Source common/css/styles/screen/main.scss */

.page_wrapper {
  overflow-x: hidden;
}

.relative {
  position: relative;
}

.text_centered {
  text-align: center;
}

.page_wrapper_centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
}
.page_wrapper_centered .text_centered p {
  margin-bottom: 0;
}

.main_content_wrapper {
  margin-top: -1.875rem;
  z-index: 1;
  position: relative;
}
@media (min-width: 20rem) {
  .main_content_wrapper {
    margin-top: calc(-1.875rem + -1.6875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .main_content_wrapper {
    margin-top: -3.5625rem;
  }
}
.startpage .main_content_wrapper {
  margin-top: 0;
}

.padding_main, .blue_bg {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
@media (min-width: 20rem) {
  .padding_main, .blue_bg {
    padding-top: calc(3.75rem + 5.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .padding_main, .blue_bg {
    padding-top: 9.375rem;
  }
}
@media (min-width: 20rem) {
  .padding_main, .blue_bg {
    padding-bottom: calc(3.75rem + 5.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .padding_main, .blue_bg {
    padding-bottom: 9.375rem;
  }
}

.padding_main_bottom {
  padding-bottom: 3.75rem;
}
@media (min-width: 20rem) {
  .padding_main_bottom {
    padding-bottom: calc(3.75rem + 5.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .padding_main_bottom {
    padding-bottom: 9.375rem;
  }
}

.padding_small_bottom {
  padding-bottom: 1.875rem;
}
@media (min-width: 20rem) {
  .padding_small_bottom {
    padding-bottom: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .padding_small_bottom {
    padding-bottom: 3.125rem;
  }
}

.padding_half_top {
  padding-top: 1.875rem;
}
@media (min-width: 20rem) {
  .padding_half_top {
    padding-top: calc(1.875rem + 4.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .padding_half_top {
    padding-top: 6.25rem;
  }
}

.margin_main_top {
  margin-top: 3.75rem;
}
@media (min-width: 20rem) {
  .margin_main_top {
    margin-top: calc(3.75rem + 5.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .margin_main_top {
    margin-top: 9.375rem;
  }
}

.blue_bg {
  position: relative;
  z-index: 0;
}
.blue_bg::after {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  background-color: #312783;
  margin: 0 calc(50% - 50vw);
}
.blue_bg h2,
.blue_bg p {
  color: #fff;
}

.signet_wrapper {
  position: relative;
}

.signet_content {
  position: absolute;
  width: 6.25rem;
  height: 6.25rem;
  left: -1.25rem;
  bottom: -1.875rem;
  z-index: -5;
  margin-left: calc(-50vw + 50%);
  text-align: right;
  opacity: 0.3;
  user-select: none;
  pointer-events: none;
}
@media (min-width: 20rem) {
  .signet_content {
    width: calc(6.25rem + 16.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .signet_content {
    width: 23.125rem;
  }
}
@media (min-width: 20rem) {
  .signet_content {
    height: calc(6.25rem + 16.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .signet_content {
    height: 23.125rem;
  }
}
@media (min-width: 20rem) {
  .signet_content {
    left: calc(-1.25rem + -1.6875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .signet_content {
    left: -2.9375rem;
  }
}
@media (min-width: 20rem) {
  .signet_content {
    bottom: calc(-1.875rem + -0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .signet_content {
    bottom: -2.5rem;
  }
}
.signet_content.right {
  right: 0rem;
  left: inherit;
  margin-right: calc(-50vw + 50%);
  margin-left: 0;
}
@media (min-width: 20rem) {
  .signet_content.right {
    right: calc(0rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .signet_content.right {
    right: 0.625rem;
  }
}
.signet_top .signet_content.right {
  z-index: 1;
}

/* Source common/css/styles/screen/newsletter_quick_subscribe.scss */

.newsletter_quick_subscribe {
  position: relative;
  z-index: 0;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: flex-start;
}
@media (min-width: 20rem) {
  .newsletter_quick_subscribe {
    padding-top: calc(2.5rem + 1.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .newsletter_quick_subscribe {
    padding-top: 3.625rem;
  }
}
@media (min-width: 20rem) {
  .newsletter_quick_subscribe {
    padding-bottom: calc(2.5rem + 1.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .newsletter_quick_subscribe {
    padding-bottom: 3.625rem;
  }
}
@media (min-width: 61.875rem) {
  .newsletter_quick_subscribe {
    flex-direction: row;
    align-items: center;
  }
}
.newsletter_quick_subscribe::after {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  background-color: #9E2626;
  margin: 0 calc(50% - 50vw);
}
.newsletter_quick_subscribe .content p {
  color: #fff;
}
.newsletter_quick_subscribe .content p.style_h3 {
  padding-top: 0;
  margin-bottom: 0;
}
.newsletter_quick_subscribe form {
  display: block;
}
@media (min-width: 30rem) {
  .newsletter_quick_subscribe form {
    display: flex;
    align-items: flex-end;
  }
}
.newsletter_quick_subscribe .entry {
  width: 100%;
  margin-bottom: 0.625rem;
}
@media (min-width: 30rem) {
  .newsletter_quick_subscribe .entry {
    margin-bottom: 0;
  }
}
.newsletter_quick_subscribe .entry label {
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.9375rem;
}
@media (min-width: 93.75rem) {
  .newsletter_quick_subscribe .entry label {
    padding-right: 1.875rem;
  }
}
.newsletter_quick_subscribe .entry label abbr {
  color: #fff;
}
.newsletter_quick_subscribe .entry label .error_warning {
  background: #fff;
  color: #9E2626;
}
.newsletter_quick_subscribe .tooltip_wrapper {
  position: relative;
  z-index: 0;
}
@media (min-width: 30rem) {
  .newsletter_quick_subscribe .tooltip_wrapper::after {
    bottom: 0;
    content: "";
    left: 0.625rem;
    position: absolute;
    right: -0.625rem;
    top: 0;
    z-index: -1;
    background-color: #fff;
  }
}
.newsletter_quick_subscribe input[type=email] {
  appearance: none;
  background: #fff;
  border: 0rem solid #d4d4d4;
  border-radius: 0.3125rem;
  box-shadow: 0 0 0 #d4d4d4 inset;
  color: #211B43;
  margin: 0;
  padding: 0 1.875em;
  transition: background 300ms, border-color 300ms, box-shadow 300ms, color 300ms, outline 300ms;
  width: 100%;
  height: 2.375rem;
}
@media (min-width: 20rem) {
  .newsletter_quick_subscribe input[type=email] {
    height: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .newsletter_quick_subscribe input[type=email] {
    height: 2.75rem;
  }
}
.newsletter_quick_subscribe input[type=email]:focus {
  background: #fff;
  border-color: #9E2626;
  box-shadow: 0 0 0.1875rem #9E2626 inset, 0 0 0 0.1875rem rgba(158, 38, 38, 0.2);
  color: #211B43;
  outline: 0;
}
.newsletter_quick_subscribe button {
  background: linear-gradient(80deg, #9E2626 0%, #9E2626 66%, #751c1c 100%);
  border: 0rem solid #9E2626;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms, transform 300ms;
  user-select: none;
  position: relative;
  overflow: hidden;
  border-radius: 0.3125rem;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0 1.5em;
  width: 100%;
  height: 2.375rem;
}
.newsletter_quick_subscribe button .text {
  z-index: 5;
}
.newsletter_quick_subscribe button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(80deg, #751c1c 0%, #751c1c 100%);
  opacity: 0;
  transition: opacity 300ms;
  z-index: 0;
}
.newsletter_quick_subscribe button > span {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 2.375rem;
}
@media (min-width: 20rem) {
  .newsletter_quick_subscribe button > span {
    min-height: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .newsletter_quick_subscribe button > span {
    min-height: 2.75rem;
  }
}
.newsletter_quick_subscribe button .icon {
  fill: #fff;
  flex-shrink: 0;
  height: 1.5rem;
  transition: fill 300ms;
  width: 1.5rem;
  z-index: 5;
}
.newsletter_quick_subscribe button .text {
  font-weight: 700;
  padding: 0.375em 0;
}
.newsletter_quick_subscribe button .icon + .text {
  padding-left: 0.4995em;
}
@media (min-width: 20rem) {
  .newsletter_quick_subscribe button {
    height: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .newsletter_quick_subscribe button {
    height: 2.75rem;
  }
}
.newsletter_quick_subscribe button > span {
  min-height: 2.375rem;
}
@media (min-width: 20rem) {
  .newsletter_quick_subscribe button > span {
    min-height: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .newsletter_quick_subscribe button > span {
    min-height: 2.75rem;
  }
}
@media (min-width: 30rem) {
  .newsletter_quick_subscribe button {
    flex-shrink: 0;
    width: auto;
  }
}
.newsletter_quick_subscribe button:focus {
  box-shadow: 0 0 0 0.1875rem rgba(158, 38, 38, 0.2);
  background: linear-gradient(80deg, #9E2626 0%, #9E2626 66%, #751c1c 100%);
  border-color: #751c1c;
  color: #fff;
  transform: scale(0.98);
  transition: transform 300ms;
}
.newsletter_quick_subscribe button:focus:after {
  opacity: 1;
}
.newsletter_quick_subscribe button:focus .icon {
  fill: #fff;
  z-index: 5;
}
.newsletter_quick_subscribe button.blue:hover {
  transform: scale(1);
}

/* Source common/css/styles/screen/newsletter_subscribe.scss */

.newsletter_subscribe {
  height: 100%;
  margin-bottom: 1.875rem;
  margin-top: 3.125rem;
}
@media (min-width: 20rem) {
  .newsletter_subscribe {
    margin-bottom: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .newsletter_subscribe {
    margin-bottom: 3.125rem;
  }
}
@media (min-width: 20rem) {
  .newsletter_subscribe {
    margin-top: calc(3.125rem + 5.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .newsletter_subscribe {
    margin-top: 8.375rem;
  }
}
.startpage .newsletter_subscribe {
  margin-top: 0;
}
.newsletter_subscribe .entry {
  background-color: #9E2626;
  color: #fff;
  border-radius: 1.25rem;
  padding: 0.9375rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
  min-height: 12.5rem;
}
@media (min-width: 20rem) {
  .newsletter_subscribe .entry {
    padding: calc(0.9375rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .newsletter_subscribe .entry {
    padding: 1.875rem;
  }
}
@media (min-width: 20rem) {
  .newsletter_subscribe .entry {
    min-height: calc(12.5rem + 17.6875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .newsletter_subscribe .entry {
    min-height: 30.1875rem;
  }
}
.startapge .newsletter_subscribe .entry {
  min-height: inherit;
}
.newsletter_subscribe .entry .icon_wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  box-shadow: 0.25rem 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 20rem) {
  .newsletter_subscribe .entry .icon_wrapper {
    width: calc(3.75rem + 1.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .newsletter_subscribe .entry .icon_wrapper {
    width: 5.3125rem;
  }
}
@media (min-width: 20rem) {
  .newsletter_subscribe .entry .icon_wrapper {
    height: calc(3.75rem + 1.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .newsletter_subscribe .entry .icon_wrapper {
    height: 5.3125rem;
  }
}
.newsletter_subscribe .entry .icon_wrapper .icon {
  fill: #fff;
  width: 1.875rem;
  height: 1.875rem;
  display: block;
}
@media (min-width: 20rem) {
  .newsletter_subscribe .entry .icon_wrapper .icon {
    width: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .newsletter_subscribe .entry .icon_wrapper .icon {
    width: 3.125rem;
  }
}
@media (min-width: 20rem) {
  .newsletter_subscribe .entry .icon_wrapper .icon {
    height: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .newsletter_subscribe .entry .icon_wrapper .icon {
    height: 3.125rem;
  }
}
.newsletter_subscribe .entry .button {
  margin-top: 1.25rem;
}
.newsletter_subscribe .entry .title {
  color: #fff;
  text-align: center;
}
.newsletter_subscribe .entry p {
  text-align: center;
  color: #fff;
}

/* Source common/css/styles/screen/offcanvas_menu.scss */

.toggle_offcanvas_menu {
  display: block;
  position: relative;
}
@media (min-width: 75rem) {
  .toggle_offcanvas_menu {
    display: none;
  }
}
.toggle_offcanvas_menu .open_btn {
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  user-select: none;
  z-index: 10;
  display: inline-flex;
  background: linear-gradient(80deg, #9E2626 0%, #9E2626 66%, #751c1c 100%);
  padding: 0.625rem 0.9375rem;
  font-size: 1rem;
  transition: all 300ms;
  height: 2.4375rem;
}
.toggle_offcanvas_menu .open_btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(80deg, #751c1c 0%, #751c1c 100%);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 0;
}
.toggle_offcanvas_menu .open_btn:hover {
  border-color: #751c1c;
  transition: all 300ms;
}
.toggle_offcanvas_menu .open_btn:hover::before {
  opacity: 1;
}
.toggle_offcanvas_menu .open_btn > span {
  min-height: inherit;
  z-index: 5;
}
.toggle_offcanvas_menu .open_btn .text {
  font-weight: 700;
  padding: 0;
}
@media (min-width: 35rem) {
  .toggle_offcanvas_menu .open_btn {
    font-size: 1.125rem;
    padding: 0.625rem 1.25rem;
    height: 2.625rem;
  }
}
.toggle_offcanvas_menu .open_btn .sr_open {
  display: block;
}
.toggle_offcanvas_menu .open_btn .sr_close {
  display: none;
}
.toggle_offcanvas_menu .open_btn .icon {
  height: 1.875rem;
  margin-right: 0.75em;
  position: relative;
  width: 1.875rem;
}
.toggle_offcanvas_menu .open_btn .icon .line {
  background: #fff;
  display: block;
  height: 0.3125rem;
  position: absolute;
  width: 100%;
  transition: top 300ms, transform 300ms;
}
.toggle_offcanvas_menu .open_btn .icon .line_1 {
  top: 0;
}
.toggle_offcanvas_menu .open_btn .icon .line_2 {
  top: 50%;
  transform: translateY(-50%);
}
.toggle_offcanvas_menu .open_btn .icon .line_3 {
  top: 100%;
  transform: translateY(-100%);
}
.toggle_offcanvas_menu .open_btn.open .icon .line_1 {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition-delay: 150ms;
}
.toggle_offcanvas_menu .open_btn.open .icon .line_2 {
  transform: translateY(-50%) scaleX(0);
}
.toggle_offcanvas_menu .open_btn.open .icon .line_3 {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition-delay: 150ms;
}
.toggle_offcanvas_menu .open_btn.open .sr_open {
  display: none;
}
.toggle_offcanvas_menu .open_btn.open .sr_close {
  display: block;
}

.offcanvas_menu {
  display: flex;
  position: fixed;
  margin: 0;
  padding: 0;
  top: 0;
  height: 100%;
  max-height: 100%;
  min-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  border: none;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease-in-out;
  z-index: 1000;
  -webkit-backdrop-filter: blur(0.125rem);
  backdrop-filter: blur(0.125rem);
  background: rgba(33, 27, 67, 0.5);
  min-width: 100%;
}
.offcanvas_menu .menu_wrapper {
  transition: all 300ms ease-in-out;
  padding: 0.75em;
  min-height: 100%;
  background-color: #fff;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 15.625rem;
  position: absolute;
  left: 0;
  transform-origin: left;
  transform: translateX(-100%);
}
@media (min-width: 30rem) {
  .offcanvas_menu .menu_wrapper {
    width: 21.875rem;
  }
}
.offcanvas_menu[open] {
  opacity: 1;
  visibility: visible;
}
.offcanvas_menu[open] .menu_wrapper {
  transform: translateX(0);
}
.offcanvas_menu .close_btn {
  margin-bottom: 0.75em;
  display: inline-flex;
  background-color: linear-gradient(80deg, #9E2626 0%, #9E2626 66%, #751c1c 100%);
  padding: 0.625rem 0.9375rem;
  font-size: 1rem;
  transition: all 300ms;
  height: 2.4375rem;
}
.offcanvas_menu .close_btn:hover {
  border-color: #751c1c;
  background-color: #751c1c;
  transition: all 300ms;
}
.offcanvas_menu .close_btn > span {
  min-height: inherit;
}
.offcanvas_menu .close_btn .text {
  font-weight: 700;
  padding: 0;
  text-transform: uppercase;
}
@media (min-width: 35rem) {
  .offcanvas_menu .close_btn {
    font-size: 1.125rem;
    padding: 0.625rem 1.25rem;
    height: 2.625rem;
  }
}
.offcanvas_menu .close_btn .icon {
  height: 1.875rem;
  width: 1.875rem;
  margin: 0;
  margin-right: 0.75em;
  position: relative;
}
.offcanvas_menu .close_btn .icon .line {
  background: #fff;
  display: block;
  height: 0.3125rem;
  position: absolute;
  width: 100%;
  top: 50%;
}
.offcanvas_menu .close_btn .icon .line_1 {
  opacity: 1;
  transition: top 300ms, transform 300ms;
  visibility: visible;
  transform: translateY(-50%) rotate(45deg);
}
.offcanvas_menu .close_btn .icon .line_2 {
  top: 50%;
  transition: bottom 300ms, transform 300ms;
  transform: translateY(-50%) rotate(-45deg);
}
.offcanvas_menu .navigation {
  width: 100%;
}
.offcanvas_menu .navigation > ul ul {
  max-height: 0;
  margin-bottom: 0;
  overflow: hidden;
  transition: max-height 600ms;
}
.offcanvas_menu .navigation > ul {
  width: 100%;
}
.offcanvas_menu .navigation > ul > li {
  margin-bottom: 0.625rem;
}
.offcanvas_menu .navigation > ul > li:last-child a {
  color: #9E2626;
}
.offcanvas_menu .navigation > ul > li:last-child a.active {
  color: #751c1c;
}
.offcanvas_menu .navigation > ul > li > a {
  display: flex;
  flex-direction: row;
  color: #312783;
  font-size: 112.5%;
  font-weight: 700;
  line-height: 2.375rem;
  text-transform: uppercase;
  text-decoration: none;
}
.offcanvas_menu .navigation > ul > li > a .icon {
  display: inline-block;
  fill: #312783;
  height: 0.875rem;
  margin-left: 0.375em;
  width: 0.875rem;
}
.offcanvas_menu .navigation > ul > li > a .icon svg {
  transition: 300ms;
}
.offcanvas_menu .navigation > ul > li > a.active {
  color: #9E2626;
}
.offcanvas_menu .navigation > ul > li > a.active .icon {
  fill: #9E2626;
}
.offcanvas_menu .navigation > ul li.expanded > a {
  color: #9E2626;
}
.offcanvas_menu .navigation > ul li.expanded > a .icon {
  fill: #9E2626;
}
.offcanvas_menu .navigation > ul li.expanded > a .icon svg {
  transform: rotate(180deg);
}
.offcanvas_menu .navigation > ul ul {
  background: linear-gradient(80deg, #9E2626 0%, #9E2626 66%, #751c1c 100%);
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.offcanvas_menu .navigation > ul ul > li:first-child {
  padding-top: 1.25rem;
}
.offcanvas_menu .navigation > ul ul > li:last-child {
  padding-bottom: 1.25rem;
}
.offcanvas_menu .navigation > ul ul a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 0 1.5em;
  font-weight: 700;
}
.offcanvas_menu .navigation > ul ul a.active {
  color: #fff;
  text-decoration: underline;
}
.offcanvas_menu .navigation > ul ul a .icon {
  display: inline-block;
  fill: #211B43;
  height: 0.875rem;
  margin-left: 0.375em;
  width: 0.875rem;
}
.offcanvas_menu .navigation > ul ul a .icon svg {
  transition: 300ms;
}

/* Source common/css/styles/screen/onlinetool_popup.scss */

.onlinetools_popup_overview .entry {
  margin: 0 0 0.75em;
}
.onlinetools_popup_overview .description {
  display: block;
  margin-bottom: 0.75em;
}
.onlinetools_popup_overview .touch_link .title {
  margin: 0 0 0.375em;
  padding: 0;
}

.popup_overlay,
.popup_overlay_v2 {
  -webkit-backdrop-filter: blur(0.125rem);
  backdrop-filter: blur(0.125rem);
  background: rgba(33, 27, 67, 0.5);
  bottom: 0;
  left: 0;
  opacity: 0;
  padding: 1% 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 300ms, visibility 300ms;
  visibility: hidden;
  z-index: -1;
}
.popup_overlay.show,
.popup_overlay_v2.show {
  opacity: 1;
  visibility: visible;
  z-index: 9000;
}

.popup_header {
  padding: 0 0 0 1.5em;
}

.popup_close {
  align-items: center;
  background: #9E2626;
  border-radius: 0.3125rem 0.3125rem 0 0;
  cursor: pointer;
  display: flex;
  float: right;
  justify-content: center;
  margin-right: 0.0625rem;
  padding: 0.4275em;
  text-align: center;
  height: 2.375rem;
  width: 2.375rem;
}
@media (min-width: 20rem) {
  .popup_close {
    height: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .popup_close {
    height: 2.75rem;
  }
}
@media (min-width: 20rem) {
  .popup_close {
    width: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .popup_close {
    width: 2.75rem;
  }
}
.popup_close svg {
  fill: #fff;
  height: 1.5rem;
  width: 1.5rem;
}

.popup_content {
  height: 100%;
  margin: 0 auto;
  max-width: 100rem;
  opacity: 0;
  position: relative;
  transform: scale(0.6);
  transition: opacity 300ms, transform 300ms, visibility 300ms;
  visibility: hidden;
  z-index: 9500;
}
.popup_content.show {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}
.popup_content .content {
  background: #fff;
  bottom: 0;
  box-shadow: 0 0 1.5625rem rgba(0, 0, 0, 0.2);
  left: 0;
  position: absolute;
  right: 0;
  top: 2.375rem;
}
@media (min-width: 20rem) {
  .popup_content .content {
    top: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .popup_content .content {
    top: 2.75rem;
  }
}

.popup_iframe {
  background: #fff;
  border: 0;
  height: 100%;
  opacity: 0;
  position: relative;
  transition: opacity 300ms;
  width: 100%;
  z-index: 1;
}
.popup_iframe.show {
  opacity: 1;
}

/* Source common/css/styles/screen/open_street_map.scss */

.open_street_map > h2 {
  text-align: center;
}
.open_street_map .subtitle {
  text-align: center;
}
.open_street_map .map {
  height: 21.875rem;
  background-color: #ededed;
  cursor: move;
  position: relative;
  width: 100%;
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
  overflow: hidden;
}
@media (min-width: 20rem) {
  .open_street_map .map {
    height: calc(21.875rem + 12.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .open_street_map .map {
    height: 34.375rem;
  }
}
.open_street_map .map_overlay {
  align-items: center;
  background-color: rgba(237, 237, 237, 0.85);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 300ms;
  z-index: 1;
}
.open_street_map .map_overlay.show {
  opacity: 1;
  transition-delay: 0;
}
.open_street_map .map_overlay.show p {
  font-size: 120%;
  margin: 1.5em 3em;
  text-align: center;
}
.open_street_map form {
  background-color: #fff;
  border-bottom-left-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  padding: 0.9375rem;
}
@media (min-width: 20rem) {
  .open_street_map form {
    padding: calc(0.9375rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .open_street_map form {
    padding: 1.875rem;
  }
}
.open_street_map form .disclaimer,
.open_street_map form p {
  color: #211B43;
}
.open_street_map .required_description {
  margin: 1.5em 0 0 0;
}
.open_street_map .plan_route {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 1.5em 0;
  position: relative;
}
@media (min-width: 47.5rem) {
  .open_street_map .plan_route {
    align-items: flex-end;
    flex-direction: row;
  }
}
.open_street_map .plan_route .saddr {
  flex-grow: 1;
  flex-shrink: 1;
}
.open_street_map .plan_route .saddr input {
  background-color: #ededed;
}
@media (min-width: 47.5rem) {
  .open_street_map .plan_route .saddr {
    margin: 0 1.5em 0 0;
    max-width: 40.625rem;
  }
  .open_street_map .plan_route .saddr input {
    margin-bottom: 0;
  }
}
.open_street_map .plan_route .select_wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 1;
  margin-top: 0.75em;
}
@media (min-width: 47.5rem) {
  .open_street_map .plan_route .select_wrapper {
    margin: 0 1.5em 0 0;
  }
}
@media (min-width: 47.5rem) {
  .open_street_map .plan_route .select_wrapper .select {
    margin-bottom: 0;
  }
}
@media (min-width: 47.5rem) {
  .open_street_map .plan_route .button_wrapper button {
    margin-bottom: 0;
  }
}
.open_street_map .ol-viewport {
  touch-action: pan-y !important;
}
.open_street_map .ol-overlaycontainer-stopevent button {
  align-items: center;
  background: #9E2626;
  border: 0rem solid #9E2626;
  border-radius: 0.3125rem;
  color: #fff;
  display: inline-flex;
  font-weight: 700;
  height: 2.375rem;
  justify-content: center;
  margin: 0;
  padding: 0;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms;
  user-select: none;
  width: 2.375rem;
}
.open_street_map .ol-overlaycontainer-stopevent button:focus {
  background: #751c1c;
  border: 0rem solid #751c1c;
  box-shadow: 0 0 0 0.1875rem rgba(158, 38, 38, 0.2);
  color: #fff;
  outline: 0;
}
.open_street_map .ol-overlaycontainer-stopevent button:hover {
  background: #751c1c;
  border: 0rem solid #751c1c;
  color: #fff;
}
.open_street_map .ol-overlaycontainer-stopevent button.disabled {
  cursor: default;
  opacity: 0.6;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-attribution,
.open_street_map .ol-overlaycontainer-stopevent .ol-zoom-in,
.open_street_map .ol-overlaycontainer-stopevent .ol-zoom-out,
.open_street_map .ol-overlaycontainer-stopevent .ol-zoomslider {
  position: absolute;
  right: 0.625rem;
  z-index: 99;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-zoom-in {
  line-height: 1;
  top: 0.625rem;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-zoom-out {
  line-height: 1;
  top: 3.625rem;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-rotate-reset {
  display: none;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-attribution {
  align-items: center;
  bottom: 0;
  cursor: default;
  display: flex;
  justify-content: flex-end;
  right: 0;
  text-align: right;
  user-select: none;
  z-index: 99;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-attribution ul {
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  color: black;
  display: flex;
  height: 2.375rem;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
  text-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.15);
  transform-origin: center right;
  transition: transform 300ms, opacity 300ms;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-attribution ul li {
  align-items: center;
  background-image: none;
  display: flex;
  font-size: 85%;
  margin: 0 0.75em;
  padding: 0;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-attribution ul li a {
  align-items: center;
  display: inline-flex;
  margin: 0 0.3125rem;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-attribution button {
  display: none;
}
.open_street_map.disable_ui .ol-overlaycontainer-stopevent .ol-zoom-in,
.open_street_map.disable_ui .ol-overlaycontainer-stopevent .ol-zoom-out {
  display: none;
}

/* Source common/css/styles/screen/opening_times.scss */

.opening_times {
  background-color: #9E2626;
  color: #fff;
  border-radius: 1.25rem;
  padding: 0.9375rem;
  box-shadow: 0.25rem 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 1.875rem;
}
@media (min-width: 20rem) {
  .opening_times {
    padding: calc(0.9375rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .opening_times {
    padding: 1.875rem;
  }
}
@media (min-width: 20rem) {
  .opening_times {
    margin-top: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .opening_times {
    margin-top: 3.125rem;
  }
}
@media (min-width: 61.875rem) {
  .opening_times {
    margin-top: 0;
  }
}
.opening_times .title {
  color: #fff;
}
.opening_times .icon_wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  box-shadow: 0.25rem 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 20rem) {
  .opening_times .icon_wrapper {
    width: calc(3.75rem + 1.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .opening_times .icon_wrapper {
    width: 5.3125rem;
  }
}
@media (min-width: 20rem) {
  .opening_times .icon_wrapper {
    height: calc(3.75rem + 1.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .opening_times .icon_wrapper {
    height: 5.3125rem;
  }
}
.opening_times .icon_wrapper .icon {
  fill: #fff;
  width: 1.875rem;
  height: 1.875rem;
  display: block;
}
@media (min-width: 20rem) {
  .opening_times .icon_wrapper .icon {
    width: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .opening_times .icon_wrapper .icon {
    width: 3.125rem;
  }
}
@media (min-width: 20rem) {
  .opening_times .icon_wrapper .icon {
    height: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .opening_times .icon_wrapper .icon {
    height: 3.125rem;
  }
}
.opening_times p {
  color: #fff;
}
.opening_times .entries {
  column-gap: 2.25em;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

/* Source common/css/styles/screen/ot_main.scss */

@charset "UTF-8";
.nobreak {
  white-space: nowrap;
}

.nohyphens {
  hyphens: none;
}

.hideme {
  display: none !important;
}

::selection {
  background: #751c1c;
  color: #fff;
}

* {
  -webkit-tap-highlight-color: rgba(158, 38, 38, 0.1);
  box-sizing: border-box;
}
@media (min-width: 61.875rem) {
  * {
    hyphens: none;
  }
}

main {
  display: block;
}

html {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  letter-spacing: calc((0.875rem + 0.125 * (100vw - 20rem) / (73.75)) * 0);
  font-size: 0.875rem;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background: #fff;
  color: #211B43;
  font-family: "InterTight", sans-serif;
  font-feature-settings: "liga", "kern";
  font-kerning: normal;
  font-weight: 400;
  hyphenate-limit-chars: 6 3 2;
  hyphens: auto;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 160rem;
  position: relative;
  text-rendering: geometricPrecision;
}
@media (min-width: 93.75rem) {
  body {
    letter-spacing: calc(1rem * 0);
  }
}
@media (min-width: 20rem) {
  body {
    font-size: calc(0.875rem + 0.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  body {
    font-size: 1rem;
  }
}
body.no_scroll {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.style_h1,
[data-otool-headlinestyling=style_h1] .ot_headline,
.style_h2,
[data-otool-headlinestyling=style_h2] .ot_headline,
.ot_headline,
.style_h3,
[data-otool-headlinestyling=style_h3] .ot_headline,
.style_h4,
[data-otool-headlinestyling=style_h4] .ot_headline,
.style_h5,
[data-otool-headlinestyling=style_h5] .ot_headline,
.style_h6,
[data-otool-headlinestyling=style_h6] .ot_headline {
  hyphens: none;
  word-wrap: break-word;
}

h1,
.style_h1,
[data-otool-headlinestyling=style_h1] .ot_headline {
  letter-spacing: calc((1.875rem + 1.25 * (100vw - 20rem) / (73.75)) * 0);
  font-size: 1.875rem;
  color: #9E2626;
  font-family: "InterTight", sans-serif;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.75em;
}
@media (min-width: 93.75rem) {
  h1,
.style_h1,
[data-otool-headlinestyling=style_h1] .ot_headline {
    letter-spacing: calc(3.125rem * 0);
  }
}
@media (min-width: 20rem) {
  h1,
.style_h1,
[data-otool-headlinestyling=style_h1] .ot_headline {
    font-size: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  h1,
.style_h1,
[data-otool-headlinestyling=style_h1] .ot_headline {
    font-size: 3.125rem;
  }
}
h1:has(~ .subtitle),
.style_h1:has(~ .subtitle),
[data-otool-headlinestyling=style_h1] .ot_headline:has(~ .subtitle) {
  margin-bottom: 0;
}

h2,
.style_h2,
[data-otool-headlinestyling=style_h2] .ot_headline,
.ot_headline {
  letter-spacing: calc((1.5625rem + 0.625 * (100vw - 20rem) / (73.75)) * 0);
  font-size: 1.5625rem;
  color: #312783;
  font-family: "MontserratAlternates", sans-serif;
  font-weight: 400;
  line-height: 1.35;
  margin: 0 0 0.75em;
  padding-top: 0.75em;
  hyphens: auto;
  word-break: break-word;
  text-wrap: balance;
}
@media (min-width: 93.75rem) {
  h2,
.style_h2,
[data-otool-headlinestyling=style_h2] .ot_headline,
.ot_headline {
    letter-spacing: calc(2.1875rem * 0);
  }
}
@media (min-width: 20rem) {
  h2,
.style_h2,
[data-otool-headlinestyling=style_h2] .ot_headline,
.ot_headline {
    font-size: calc(1.5625rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  h2,
.style_h2,
[data-otool-headlinestyling=style_h2] .ot_headline,
.ot_headline {
    font-size: 2.1875rem;
  }
}

h3,
.style_h3,
[data-otool-headlinestyling=style_h3] .ot_headline {
  letter-spacing: calc((1.125rem + 0.25 * (100vw - 20rem) / (73.75)) * 0);
  font-size: 1.125rem;
  color: #211B43;
  font-family: "MontserratAlternates", sans-serif;
  font-weight: 400;
  line-height: 1.35;
  margin: 0 0 0.75em;
  padding-top: 0.75em;
}
@media (min-width: 93.75rem) {
  h3,
.style_h3,
[data-otool-headlinestyling=style_h3] .ot_headline {
    letter-spacing: calc(1.375rem * 0);
  }
}
@media (min-width: 20rem) {
  h3,
.style_h3,
[data-otool-headlinestyling=style_h3] .ot_headline {
    font-size: calc(1.125rem + 0.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  h3,
.style_h3,
[data-otool-headlinestyling=style_h3] .ot_headline {
    font-size: 1.375rem;
  }
}

h4,
.style_h4,
[data-otool-headlinestyling=style_h4] .ot_headline {
  letter-spacing: calc((0.875rem + 0.125 * (100vw - 20rem) / (73.75)) * 0);
  font-size: 0.875rem;
  color: #211B43;
  font-family: "MontserratAlternates", sans-serif;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 0.75em;
}
@media (min-width: 93.75rem) {
  h4,
.style_h4,
[data-otool-headlinestyling=style_h4] .ot_headline {
    letter-spacing: calc(1rem * 0);
  }
}
@media (min-width: 20rem) {
  h4,
.style_h4,
[data-otool-headlinestyling=style_h4] .ot_headline {
    font-size: calc(0.875rem + 0.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  h4,
.style_h4,
[data-otool-headlinestyling=style_h4] .ot_headline {
    font-size: 1rem;
  }
}

h5,
.style_h5,
[data-otool-headlinestyling=style_h5] .ot_headline {
  letter-spacing: calc((0.875rem + 0.125 * (100vw - 20rem) / (73.75)) * 0);
  font-size: 0.875rem;
  color: #211B43;
  font-family: "MontserratAlternates", sans-serif;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}
@media (min-width: 93.75rem) {
  h5,
.style_h5,
[data-otool-headlinestyling=style_h5] .ot_headline {
    letter-spacing: calc(1rem * 0);
  }
}
@media (min-width: 20rem) {
  h5,
.style_h5,
[data-otool-headlinestyling=style_h5] .ot_headline {
    font-size: calc(0.875rem + 0.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  h5,
.style_h5,
[data-otool-headlinestyling=style_h5] .ot_headline {
    font-size: 1rem;
  }
}

h6,
.style_h6,
[data-otool-headlinestyling=style_h6] .ot_headline {
  letter-spacing: calc((0.75rem + 0.125 * (100vw - 20rem) / (73.75)) * 0);
  font-size: 0.75rem;
  color: #211B43;
  font-family: "MontserratAlternates", sans-serif;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}
@media (min-width: 93.75rem) {
  h6,
.style_h6,
[data-otool-headlinestyling=style_h6] .ot_headline {
    letter-spacing: calc(0.875rem * 0);
  }
}
@media (min-width: 20rem) {
  h6,
.style_h6,
[data-otool-headlinestyling=style_h6] .ot_headline {
    font-size: calc(0.75rem + 0.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  h6,
.style_h6,
[data-otool-headlinestyling=style_h6] .ot_headline {
    font-size: 0.875rem;
  }
}

p,
.style_p,
[data-otool-headlinestyling=style_p] .ot_headline {
  letter-spacing: calc((0.875rem + 0.125 * (100vw - 20rem) / (73.75)) * 0);
  font-size: 0.875rem;
  color: #211B43;
  font-family: "InterTight", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 0.75em;
}
@media (min-width: 93.75rem) {
  p,
.style_p,
[data-otool-headlinestyling=style_p] .ot_headline {
    letter-spacing: calc(1rem * 0);
  }
}
@media (min-width: 20rem) {
  p,
.style_p,
[data-otool-headlinestyling=style_p] .ot_headline {
    font-size: calc(0.875rem + 0.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  p,
.style_p,
[data-otool-headlinestyling=style_p] .ot_headline {
    font-size: 1rem;
  }
}
p:has(+ .button),
.style_p:has(+ .button),
[data-otool-headlinestyling=style_p] .ot_headline:has(+ .button) {
  margin-bottom: 1.875em;
}

.subtitle_h1 {
  letter-spacing: calc((1rem + 1.8125 * (100vw - 20rem) / (73.75)) * 0);
  font-size: 1rem;
  font-family: "MontserratAlternates", sans-serif;
  color: #312783;
  line-height: 1.35;
}
@media (min-width: 93.75rem) {
  .subtitle_h1 {
    letter-spacing: calc(2.8125rem * 0);
  }
}
@media (min-width: 20rem) {
  .subtitle_h1 {
    font-size: calc(1rem + 1.8125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .subtitle_h1 {
    font-size: 2.8125rem;
  }
}
.subtitle_h2 {
  font-weight: 800;
  letter-spacing: calc((1rem + 0.5625 * (100vw - 20rem) / (73.75)) * 0);
  font-size: 1rem;
  color: #9E2626;
  line-height: 1.5;
  margin-bottom: 0;
}
@media (min-width: 93.75rem) {
  .subtitle_h2 {
    letter-spacing: calc(1.5625rem * 0);
  }
}
@media (min-width: 20rem) {
  .subtitle_h2 {
    font-size: calc(1rem + 0.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .subtitle_h2 {
    font-size: 1.5625rem;
  }
}
.subtitle_h2 ~ h2 {
  padding-top: 0;
}

a {
  color: #9E2626;
  text-decoration: underline;
  transition: color 300ms;
}
a:active, a.active {
  color: #211B43;
  outline: 0;
}
a:focus-visible {
  outline: 0.125rem solid #211B43;
  outline-offset: 0.125rem;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a[tabindex="-1"] {
  display: block;
}
a[tabindex="-1"]:focus {
  outline: 0;
}
a[tabindex="-1"][id] {
  position: relative;
}
a[tabindex="-1"][id]:after {
  content: "";
}
a.touch_link {
  color: #211B43;
  display: block;
  text-decoration: none;
}
a.touch_link .title {
  color: #9E2626;
  display: inline-block;
  margin-bottom: 0.375em;
  outline-offset: 0;
  padding: 0;
  text-decoration: underline;
  transition: color 300ms;
}
a.touch_link .title.active {
  color: #211B43;
}
a.touch_link:focus {
  outline: 0;
}
a.touch_link:focus .title {
  outline: 0.125rem solid rgba(33, 27, 67, 0.8);
  outline-offset: 0.0625rem;
  text-decoration: none;
}
a.touch_link:focus[data-focus-method=mouse] .title, a.touch_link:focus[data-focus-method=touch] .title {
  outline: 0;
}
a.touch_link:hover .title {
  text-decoration: none;
}

.highlighted:not(.form) {
  animation: highlighted_anchor 900ms;
}

strong {
  font-weight: 700;
}

em {
  font-style: normal;
}

blockquote {
  margin: 0 0 0.75em 1ch;
  text-indent: -1ch;
}
blockquote:before {
  content: "„";
}
blockquote:after {
  content: "“";
}

small {
  font-size: 85%;
}

sup {
  font-size: 85%;
  line-height: 1;
  position: relative;
  top: -0.3125rem;
}

sub {
  bottom: -0.125rem;
  font-size: 85%;
  line-height: 1;
  position: relative;
}

.table {
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.5em;
  overflow-y: auto;
}

* + .table {
  margin-top: 1.5em;
}

table {
  border-bottom: 0rem solid #d4d4d4;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0;
  width: 100%;
}

.responsive_table {
  overflow-x: auto;
}
.responsive_table table {
  min-width: 25rem;
}
.responsive_table_500 {
  overflow-x: auto;
}
.responsive_table_500 table {
  min-width: 31.25rem;
}
.responsive_table_600 {
  overflow-x: auto;
}
.responsive_table_600 table {
  min-width: 37.5rem;
}
.responsive_table_700 {
  overflow-x: auto;
}
.responsive_table_700 table {
  min-width: 43.75rem;
}
.responsive_table_800 {
  overflow-x: auto;
}
.responsive_table_800 table {
  min-width: 50rem;
}
.responsive_table_900 {
  overflow-x: auto;
}
.responsive_table_900 table {
  min-width: 56.25rem;
}

th {
  font-weight: 700;
  text-align: left;
}

td,
th {
  border-top: 0rem solid #d4d4d4;
  padding: 0.4995em;
  transition: background 300ms;
  vertical-align: top;
}

tr:hover td,
tr:hover th {
  background: #ededed;
}

ol {
  counter-reset: list;
  list-style: none;
  margin: 0 0 0.75em;
  padding: 0;
}
ol > li {
  padding-left: 1.5em;
  position: relative;
}
ol > li:before {
  color: #9E2626;
  content: counter(list) ".";
  counter-increment: list;
  font-weight: 700;
  left: 0;
  line-height: 1.5;
  position: absolute;
  text-align: right;
  width: 1.125em;
}
ol ol, ol ul {
  margin: 0;
}

ul {
  list-style: url("../../common/images/list-styles/list_style.svg");
  margin: 0 0 0.75em;
  padding-left: 1.125em;
}
ul > li {
  padding-left: 0.375em;
  padding-bottom: 0.3125rem;
}
ul ol, ul ul {
  margin: 0;
}

.defined_list dl {
  border-bottom: 0.0625rem solid #d4d4d4;
  margin: 0.75em 0;
}
@media (min-width: 35rem) {
  .defined_list dl {
    display: flex;
    flex-wrap: wrap;
  }
}
.defined_list dt {
  border-top: 0.0625rem solid #d4d4d4;
  font-weight: 700;
  padding: 0.75em 0;
}
@media (min-width: 35rem) {
  .defined_list dt {
    flex: 0 0 40%;
    max-width: 40%;
    padding: 0.75em 0.75em 0.75em 0;
  }
}
.defined_list dd {
  margin: 0;
}
@media (min-width: 35rem) {
  .defined_list dd {
    border-top: 0.0625rem solid #d4d4d4;
    flex: 0 0 60%;
    max-width: 60%;
    padding: 0.75em 0.4995em 0 0;
  }
}

nav {
  user-select: none;
}
nav ol {
  margin: 0;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav li {
  margin: 0;
  padding: 0;
}
nav li:before {
  display: none;
}

figure {
  margin: 0 0 1.5em;
}
figure img {
  display: block;
}
figure.center {
  margin-left: auto;
  margin-right: auto;
}
figure.floatleft {
  float: left;
  margin-right: 1.5em;
}
figure.floatright {
  float: right;
  margin-left: 1.5em;
}

figcaption {
  font-size: 85%;
  margin-top: 0.375em;
  text-align: left;
}

.img_container {
  overflow: hidden;
}
.img_container img,
.img_container svg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.img_resize {
  height: 0;
  position: relative;
  width: 100%;
}

img {
  border: 0;
  display: inline-block;
  height: auto;
  max-width: 100%;
  user-select: none;
}

svg {
  height: 100%;
  transform: scale(1);
  width: 100%;
}
svg a:focus {
  outline: 0;
}

.ot_external_accordion_svg::before {
  /*Mask wird verwendet um exterenes SVG für Onlinetools Akkordeon zur Verfügung zu stellen*/
  -webkit-mask: url("../../common/images/icons/arrow.svg") no-repeat 50% 50%;
  mask: url("../../common/images/icons/arrow.svg") no-repeat 50% 50%;
}

.ot_ui {
  letter-spacing: calc((0.875rem + 0.125 * (100vw - 20rem) / (73.75)) * 0);
  font-size: 0.875rem;
  padding-bottom: 3.75rem;
}
@media (min-width: 93.75rem) {
  .ot_ui {
    letter-spacing: calc(1rem * 0);
  }
}
@media (min-width: 20rem) {
  .ot_ui {
    font-size: calc(0.875rem + 0.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .ot_ui {
    font-size: 1rem;
  }
}
@media (min-width: 20rem) {
  .ot_ui {
    padding-bottom: calc(3.75rem + 5.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .ot_ui {
    padding-bottom: 9.375rem;
  }
}
.ot_ui .ot_accordion .ot_accordion_tab {
  align-items: center;
}
.ot_ui .ot_card:not(.ot_up_and_download_json) .ot_card_header h2 {
  color: #fff;
  font-weight: 700;
}

/* Source common/css/styles/screen/ot_settings.scss */

:root {
  --ot-main-color: #9E2626;
  --ot-secondary-color: #9E2626;
  --ot-contrast-main-color: #fff;
  --ot-contrast-secondary-color: #fff;
  --ot-selection-contrast: #751c1c;
  --ot-rgba-main-01: rgba(158, 38, 38, 0.1);
  --ot-rgba-main-02: rgba(158, 38, 38, 0.2);
  --ot-rgba-main-05: rgba(158, 38, 38, 0.5);
  --ot-rgba-main-08: rgba(158, 38, 38, 0.8);
  --ot-rgba-secondary-01: rgba(158, 38, 38, 0.1);
  --ot-rgba-secondary-02: rgba(158, 38, 38, 0.2);
  --ot-lighten-main-30: #e07d7d;
  --ot-main-color-darken-40: black;
  --ot-button-color: #9E2626;
  --ot-button-active-color: #751c1c;
  --ot-elements-border-radius: 2px;
  --ot-em: 16em;
  --ot-rem: 0.0625rem;
  /* set root for shadowDOM */
  --ot-container-min-width: 20rem;
  --ot-container-max-width: 100rem;
  --ot-column-margin-min: 0.9375rem;
  --ot-column-margin-max: 3.125rem;
  --ot-page-max-width: 160rem;
  --ot-xsmall-grid-breakpoint: 20rem;
  --ot-small-grid-breakpoint: 30rem;
  --ot-medium-grid-breakpoint: 35rem;
  --ot-large-grid-breakpoint: 47.5rem;
  --ot-xlarge-grid-breakpoint: 61.875rem;
  --ot-xxlarge-grid-breakpoint: 75rem;
  --ot-xxxlarge-grid-breakpoint: 93.75rem;
  --ot-border-width: 0rem;
  --ot-border-radius: 0.3125rem;
  --ot-button-height-min: 2.375rem;
  --ot-button-height-max: 2.75rem;
  --ot-input-height-min: input-height-min;
  --ot-input-height-max: input-height-max;
  --ot-transition-time: 300ms;
  --ot-body-bg-color: #fff;
  --ot-text-color-light: #fff;
  --ot-text-color: #211B43;
  --ot-bg-color: #ededed;
  --ot-border-color: #d4d4d4;
  --ot-okay-color: #96ca67;
  --ot-okay-bg-color: #ecf6e4;
  --ot-error-text-color: #ad0000;
  --ot-error-bg-color: #f6ecec;
  --ot-error-border-color: #9E2626;
  --ot-popup-overlay-color: rgba(33, 27, 67, 0.5);
  --ot-shadow-color: rgba(0, 0, 0, 0.2);
  --ot-font-family-headline: MontserratAlternates, sans-serif;
  --ot-font-family: InterTight, sans-serif;
  --ot-font-size-max: 1rem;
  --ot-font-size-min: 0.875rem;
  --ot-font-weight-strong: 700;
  --ot-font-weight: 400;
  --ot-line-height: 1.5;
  --ot-font-size-h1-max: 3.125rem;
  --ot-font-size-h1-min: 1.875rem;
  --ot-font-weight-h1: 800;
  --ot-letter-spacing-h1: 0%;
  --ot-line-height-h1: 1.15;
  --ot-text-color-h1: #9E2626;
  --ot-font-size-h2-max: 2.1875rem;
  --ot-font-size-h2-min: 1.5625rem;
  --ot-font-weight-h2: 400;
  --ot-letter-spacing-h2: 0%;
  --ot-line-height-h2: 1.35;
  --ot-text-color-h2: #312783;
  --ot-font-size-h3-max: 1.375rem;
  --ot-font-size-h3-min: 1.125rem;
  --ot-font-weight-h3: 400;
  --ot-letter-spacing-h3: 0%;
  --ot-line-height-h3: 1.35;
  --ot-text-color-h3: #211B43;
  --ot-font-size-h4-max: 1rem;
  --ot-font-size-h4-min: 0.875rem;
  --ot-font-weight-h4: 700;
  --ot-letter-spacing-h4: 0%;
  --ot-line-height-h4: 1.35;
  --ot-text-color-h4: #211B43;
  --ot-font-size-h5-max: 1rem;
  --ot-font-size-h5-min: 0.875rem;
  --ot-font-weight-h5: 700;
  --ot-letter-spacing-h5: 0%;
  --ot-line-height-h5: 1.35;
  --ot-text-color-h5: #211B43;
  --ot-font-size-h6-max: 0.875rem;
  --ot-font-size-h6-min: 0.75rem;
  --ot-font-weight-h6: 700;
  --ot-letter-spacing-h6: 0%;
  --ot-line-height-h6: 1.35;
  --ot-text-color-h6: #211B43;
  --ot-font-size-legend-max: 1.375rem;
  --ot-font-size-legend-min: 1.125rem;
  --ot-font-weight-legend: 400;
  --ot-letter-spacing-legend: 0%;
  --ot-line-height-legend: 1.35;
  --ot-text-color-legend: #211B43;
  --ot-font-size-bigger: 112.5%;
  --ot-font-size-biggest: 162.5%;
  --ot-font-size-smaller: 85%;
  --ot-spacing: 1.5em;
  --ot-box-shadow-width: 0.1875rem;
  --ot-input-border-width: 0rem;
  --ot-input-bg-color: #ededed;
  --ot-input-border-color: #d4d4d4;
  --ot-input-text-color: #211B43;
  --ot-input-focus-bg-color: #fff;
  --ot-input-focus-border-color: #9E2626;
  --ot-input-focus-text-color: #211B43;
  --ot-button-bg-color: #9E2626;
  --ot-button-border-color: #9E2626;
  --ot-button-text-color: #fff;
  --ot-button-hover-bg-color: #751c1c;
  --ot-button-hover-border-color: #751c1c;
  --ot-button-hover-text-color: #fff;
  --ot-button-focus-bg-color: #751c1c;
  --ot-button-focus-border-color: #751c1c;
  --ot-button-focus-text-color: #fff;
  --ot-button-active-bg-color: #691919;
  --ot-button-active-border-color: #691919;
  --ot-button-active-text-color: #fff;
  --ot-button-disabled-bg-color: #ededed;
  --ot-button-disabled-border-color: #e0e0e0;
  --ot-button-disabled-text-color: #978cd1;
}

/* Source common/css/styles/screen/preloader.scss */

.preloader {
  display: block;
  position: relative;
}
.preloader .icon_spin {
  animation: preloader_rotate 900ms linear infinite;
  display: block;
  fill: #d4d4d4;
  height: 3rem;
  left: 50%;
  margin: -1.5rem 0 0 -1.5rem;
  opacity: 1;
  position: absolute;
  top: 50%;
  transition: 300ms;
  visibility: visible;
  width: 3rem;
}
.preloader .icon_spin.hide {
  opacity: 0;
  visibility: hidden;
}

/* Source common/css/styles/screen/scroll_animations.scss */

html:not(.reduced_motion) .animation,
html:not(.reduced_motion) [data-animation] {
  transition: opacity 600ms ease, transform 600ms ease;
  transition-delay: 300ms;
}
html:not(.reduced_motion) .animation.not_in_viewport,
html:not(.reduced_motion) [data-animation].not_in_viewport {
  opacity: 0;
  transform: translateX(-1em);
  transition: unset;
}
html:not(.reduced_motion) .animation.right.not_in_viewport,
html:not(.reduced_motion) [data-animation].right.not_in_viewport {
  transform: translateX(1em);
}
html:not(.reduced_motion) .animation.header_icon,
html:not(.reduced_motion) [data-animation].header_icon {
  transition: opacity 1200ms ease, transform 1200ms ease;
  transition-delay: 600ms;
}
html:not(.reduced_motion) .animation.header_icon.not_in_viewport,
html:not(.reduced_motion) [data-animation].header_icon.not_in_viewport {
  transform: translateX(1em) rotate(180deg) scale(0);
}
html:not(.reduced_motion) .animation.top.not_in_viewport,
html:not(.reduced_motion) [data-animation].top.not_in_viewport {
  transform: translateY(1em);
}
html:not(.reduced_motion) .animation.top.video_overview_white,
html:not(.reduced_motion) [data-animation].top.video_overview_white {
  transition-delay: 0s;
}

/* Source common/css/styles/screen/steuernews.scss */

.steuernews_preview {
  padding-bottom: 1.875rem;
}
@media (min-width: 20rem) {
  .steuernews_preview {
    padding-bottom: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_preview {
    padding-bottom: 3.125rem;
  }
}
.steuernews_preview .title_wrapper {
  margin-bottom: 1.875rem;
}
@media (min-width: 20rem) {
  .steuernews_preview .title_wrapper {
    margin-bottom: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_preview .title_wrapper {
    margin-bottom: 3.125rem;
  }
}
.startpage .steuernews_preview {
  height: 100%;
}
.steuernews_preview.shadow .entry {
  box-shadow: 0.25rem 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.1);
}
.steuernews_preview .entry {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  color: #312783;
  text-decoration: none;
  border-radius: 1.25rem;
  overflow: hidden;
  height: 100%;
  transition: transform 300ms;
  margin-bottom: 1.875rem;
}
@media (min-width: 20rem) {
  .steuernews_preview .entry {
    margin-bottom: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_preview .entry {
    margin-bottom: 3.125rem;
  }
}
.steuernews_preview .entry:hover {
  transform: scale(1.04);
  transition: transform 300ms;
}
.steuernews_preview .entry:hover .teaser_text .icon {
  fill: #9E2626;
  transition: all 300ms;
}
.steuernews_preview .entry .image {
  height: 9.375rem;
  position: relative;
  z-index: 0;
}
@media (min-width: 20rem) {
  .steuernews_preview .entry .image {
    height: calc(9.375rem + 3.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_preview .entry .image {
    height: 12.5rem;
  }
}
.steuernews_preview .entry .image .category {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  background-color: #9E2626;
  color: #fff;
  padding: 0.3125rem 0.625rem;
  border-radius: 0.3125rem;
  font-weight: 700;
}
.steuernews_preview .entry .image .category.blue {
  background-color: #312783;
}
.steuernews_preview .entry .image::after {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.42) 90%, white 100%);
}
.steuernews_preview .entry .image img {
  height: 9.375rem;
  object-fit: cover;
}
@media (min-width: 20rem) {
  .steuernews_preview .entry .image img {
    height: calc(9.375rem + 3.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_preview .entry .image img {
    height: 12.5rem;
  }
}
.steuernews_preview .entry .teaser_text {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  padding-top: 0.9375rem;
}
@media (min-width: 20rem) {
  .steuernews_preview .entry .teaser_text {
    padding-left: calc(0.9375rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_preview .entry .teaser_text {
    padding-left: 1.875rem;
  }
}
@media (min-width: 20rem) {
  .steuernews_preview .entry .teaser_text {
    padding-right: calc(0.9375rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_preview .entry .teaser_text {
    padding-right: 1.875rem;
  }
}
@media (min-width: 20rem) {
  .steuernews_preview .entry .teaser_text {
    padding-top: calc(0.9375rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_preview .entry .teaser_text {
    padding-top: 1.875rem;
  }
}
.steuernews_preview .entry .teaser_text .text {
  color: #211B43;
}
.steuernews_preview .entry .teaser_text .title {
  word-wrap: break-word;
  color: #312783;
  text-decoration: none;
}
.steuernews_preview .entry .teaser_text .icon {
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  fill: #312783;
  margin-top: 0.9375rem;
  margin-bottom: 0.9375rem;
  margin-left: auto;
  transition: fill 300ms;
}
@media (min-width: 20rem) {
  .steuernews_preview .entry .teaser_text .icon {
    width: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_preview .entry .teaser_text .icon {
    width: 2.75rem;
  }
}
@media (min-width: 20rem) {
  .steuernews_preview .entry .teaser_text .icon {
    height: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_preview .entry .teaser_text .icon {
    height: 2.75rem;
  }
}
@media (min-width: 20rem) {
  .steuernews_preview .entry .teaser_text .icon {
    margin-top: calc(0.9375rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_preview .entry .teaser_text .icon {
    margin-top: 1.875rem;
  }
}
@media (min-width: 20rem) {
  .steuernews_preview .entry .teaser_text .icon {
    margin-bottom: calc(0.9375rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_preview .entry .teaser_text .icon {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 35rem) {
  .steuernews_preview .photo {
    flex: 0 1 35%;
    margin-right: 1.5em;
  }
}
.steuernews_preview .photo .bg_image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  margin-right: 1.5em;
  width: 100%;
  padding-top: 66.64%;
}
.steuernews_preview .sub_title {
  display: block;
}

.news_entity .hide_image_author,
.news_entity .hide_creation_date {
  display: none;
}
.news_entity .steuernews_current_issue {
  margin-bottom: 3em;
  background-color: #9E2626;
  border-radius: 1.25rem;
  padding: 3.125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.news_entity .steuernews_current_issue .icon_wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  box-shadow: 0.25rem 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 20rem) {
  .news_entity .steuernews_current_issue .icon_wrapper {
    width: calc(3.75rem + 1.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .news_entity .steuernews_current_issue .icon_wrapper {
    width: 5.3125rem;
  }
}
@media (min-width: 20rem) {
  .news_entity .steuernews_current_issue .icon_wrapper {
    height: calc(3.75rem + 1.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .news_entity .steuernews_current_issue .icon_wrapper {
    height: 5.3125rem;
  }
}
.news_entity .steuernews_current_issue .icon_wrapper .icon {
  fill: #fff;
  width: 1.875rem;
  height: 1.875rem;
  display: block;
}
@media (min-width: 20rem) {
  .news_entity .steuernews_current_issue .icon_wrapper .icon {
    width: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .news_entity .steuernews_current_issue .icon_wrapper .icon {
    width: 3.125rem;
  }
}
@media (min-width: 20rem) {
  .news_entity .steuernews_current_issue .icon_wrapper .icon {
    height: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .news_entity .steuernews_current_issue .icon_wrapper .icon {
    height: 3.125rem;
  }
}
.news_entity .steuernews_current_issue h2 {
  color: #fff;
  text-align: center;
}
.news_entity .steuernews_current_issue a,
.news_entity .steuernews_current_issue li {
  color: #fff;
  text-align: center;
}
.news_entity .steuernews_current_issue a.active, .news_entity .steuernews_current_issue a:hover,
.news_entity .steuernews_current_issue li.active,
.news_entity .steuernews_current_issue li:hover {
  text-decoration: none;
}
.news_entity .steuernews_current_issue a.active,
.news_entity .steuernews_current_issue li.active {
  font-weight: 700;
}
.news_entity .steuernews_current_issue ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
}
.news_entity .steuernews_issues {
  background-color: #211B43;
  position: relative;
  z-index: 0;
  padding-top: 3.75rem;
}
@media (min-width: 20rem) {
  .news_entity .steuernews_issues {
    padding-top: calc(3.75rem + 5.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .news_entity .steuernews_issues {
    padding-top: 9.375rem;
  }
}
.news_entity .steuernews_issues::after {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  background-color: #211B43;
  margin: 0 calc(50% - 50vw);
}
.news_entity .steuernews_issues .title_wrapper {
  margin-bottom: 1.875rem;
}
@media (min-width: 20rem) {
  .news_entity .steuernews_issues .title_wrapper {
    margin-bottom: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .news_entity .steuernews_issues .title_wrapper {
    margin-bottom: 3.125rem;
  }
}
.news_entity .steuernews_issues .title_wrapper .subtitle {
  color: #fff;
}
.news_entity .steuernews_issues .title_wrapper .overview_title {
  color: #fff;
}
.news_entity .steuernews_issues ul {
  flex-wrap: wrap;
  flex-direction: row;
}
.news_entity .steuernews_issues ul a {
  background: #fff;
  color: #211B43;
}
.news_entity .steuernews_issues ul a:hover, .news_entity .steuernews_issues ul a.active {
  background: #9E2626;
  color: #fff;
}

.news_image {
  margin: 0 calc(50% - 50vw);
  position: relative;
  z-index: 1;
}
.news_image::after {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 64%, white 100%);
}
.news_image img {
  height: 24rem;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 20rem) {
  .news_image img {
    height: calc(24rem + 7.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .news_image img {
    height: 31.25rem;
  }
}
.news_image figcaption {
  position: absolute;
  bottom: 0.625rem;
  left: 1.25rem;
  z-index: 2;
  font-weight: 700;
  color: #fff;
  padding: 0.625rem;
  background-color: #9E2626;
  border-radius: 0.3125rem;
  text-align: center;
}
.news_image + * {
  padding-top: 0;
}

.steuernews_issues ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
  gap: 0.625rem;
}
.steuernews_issues ul li {
  padding-left: 0;
}
.steuernews_issues a {
  background: #ededed;
  border-radius: 0.3125rem;
  display: inline-block;
  margin: 0 0.75em 0.75em 0;
  padding: 0 1.5em;
  white-space: nowrap;
  line-height: 2.375rem;
}
@media (min-width: 20rem) {
  .steuernews_issues a {
    line-height: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_issues a {
    line-height: 2.75rem;
  }
}

.steuernews_issues ul,
.steuernews_navigation ul,
.blog_issues ul,
.blog_tags ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
}
.steuernews_issues ul li,
.steuernews_navigation ul li,
.blog_issues ul li,
.blog_tags ul li {
  padding-left: 0;
}
.steuernews_issues a,
.steuernews_navigation a,
.blog_issues a,
.blog_tags a {
  background: #9E2626;
  color: #fff;
  border-radius: 0.3125rem;
  display: flex;
  align-items: center;
  margin: 0 0.75em 0.75em 0;
  padding: 0 1.5em;
  text-decoration: none;
  white-space: nowrap;
  line-height: 2.375rem;
  transition: all 300ms;
  font-weight: 700;
}
@media (min-width: 20rem) {
  .steuernews_issues a,
.steuernews_navigation a,
.blog_issues a,
.blog_tags a {
    line-height: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_issues a,
.steuernews_navigation a,
.blog_issues a,
.blog_tags a {
    line-height: 2.75rem;
  }
}
.steuernews_issues a.active, .steuernews_issues a:hover, .steuernews_issues a:focus,
.steuernews_navigation a.active,
.steuernews_navigation a:hover,
.steuernews_navigation a:focus,
.blog_issues a.active,
.blog_issues a:hover,
.blog_issues a:focus,
.blog_tags a.active,
.blog_tags a:hover,
.blog_tags a:focus {
  background: #211B43;
  color: #fff;
}

.steuernews_navigation,
.steuernews_sidebar_video {
  background-color: #9E2626;
  border-radius: 1.25rem;
  overflow: hidden;
  padding: 1.875rem;
  margin-top: 1.875rem;
}
@media (min-width: 20rem) {
  .steuernews_navigation,
.steuernews_sidebar_video {
    margin-top: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_navigation,
.steuernews_sidebar_video {
    margin-top: 3.125rem;
  }
}
@media (min-width: 61.875rem) {
  .steuernews_navigation,
.steuernews_sidebar_video {
    margin-top: 0;
  }
}
.steuernews_navigation nav,
.steuernews_sidebar_video nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.steuernews_navigation h2,
.steuernews_sidebar_video h2 {
  color: #fff;
  text-align: center;
}
.steuernews_navigation ul,
.steuernews_sidebar_video ul {
  justify-content: center;
  gap: 0 0.625rem;
}
.steuernews_navigation ul a,
.steuernews_sidebar_video ul a {
  margin-right: 0;
  background: #fff;
  color: #211B43;
  text-decoration: none;
}
.steuernews_navigation .icon_wrapper,
.steuernews_sidebar_video .icon_wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  box-shadow: 0.25rem 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 0.9375rem;
}
@media (min-width: 20rem) {
  .steuernews_navigation .icon_wrapper,
.steuernews_sidebar_video .icon_wrapper {
    width: calc(3.75rem + 1.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_navigation .icon_wrapper,
.steuernews_sidebar_video .icon_wrapper {
    width: 5.3125rem;
  }
}
@media (min-width: 20rem) {
  .steuernews_navigation .icon_wrapper,
.steuernews_sidebar_video .icon_wrapper {
    height: calc(3.75rem + 1.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_navigation .icon_wrapper,
.steuernews_sidebar_video .icon_wrapper {
    height: 5.3125rem;
  }
}
@media (min-width: 20rem) {
  .steuernews_navigation .icon_wrapper,
.steuernews_sidebar_video .icon_wrapper {
    margin-bottom: calc(0.9375rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_navigation .icon_wrapper,
.steuernews_sidebar_video .icon_wrapper {
    margin-bottom: 1.875rem;
  }
}
.steuernews_navigation .icon_wrapper .icon,
.steuernews_sidebar_video .icon_wrapper .icon {
  fill: #fff;
  width: 1.875rem;
  height: 1.875rem;
  display: block;
}
@media (min-width: 20rem) {
  .steuernews_navigation .icon_wrapper .icon,
.steuernews_sidebar_video .icon_wrapper .icon {
    width: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_navigation .icon_wrapper .icon,
.steuernews_sidebar_video .icon_wrapper .icon {
    width: 3.125rem;
  }
}
@media (min-width: 20rem) {
  .steuernews_navigation .icon_wrapper .icon,
.steuernews_sidebar_video .icon_wrapper .icon {
    height: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_navigation .icon_wrapper .icon,
.steuernews_sidebar_video .icon_wrapper .icon {
    height: 3.125rem;
  }
}

.steuernews_disclaimer {
  clear: both;
}

.steuernews_sidebar:not(.blue_bg),
.steuernews_sidebar_video {
  margin-top: 3.125rem;
}
@media (min-width: 20rem) {
  .steuernews_sidebar:not(.blue_bg),
.steuernews_sidebar_video {
    margin-top: calc(3.125rem + 5.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_sidebar:not(.blue_bg),
.steuernews_sidebar_video {
    margin-top: 8.375rem;
  }
}

.steuernews_more_articles_overview .title_wrapper {
  text-align: center;
  margin-bottom: 1.875rem;
}
@media (min-width: 20rem) {
  .steuernews_more_articles_overview .title_wrapper {
    margin-bottom: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_more_articles_overview .title_wrapper {
    margin-bottom: 3.125rem;
  }
}

/* Source common/css/styles/screen/steuernews_newsletter_subscribe.scss */

.steuernews_newsletter_subscribe {
  background: #ededed;
  border-radius: 0.3125rem;
  margin-bottom: 1.5em;
  padding: 1.5em;
}

/* Source common/css/styles/screen/steuernews_video_overview.scss */

.steuernews_video_overview .title_wrapper {
  text-align: center;
  margin-bottom: 1.875rem;
}
@media (min-width: 20rem) {
  .steuernews_video_overview .title_wrapper {
    margin-bottom: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_video_overview .title_wrapper {
    margin-bottom: 3.125rem;
  }
}
.steuernews_video_overview .video_overview_white {
  margin-bottom: 1.875rem;
  background-color: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  transition: transform 300ms;
  display: flex;
}
@media (min-width: 20rem) {
  .steuernews_video_overview .video_overview_white {
    margin-bottom: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_video_overview .video_overview_white {
    margin-bottom: 3.125rem;
  }
}
.steuernews_video_overview .video_overview_white:hover {
  transform: scale(1.02);
  transition: transform 300ms;
}
.steuernews_video_overview .video_overview_white .entry {
  box-shadow: none;
}
.steuernews_video_overview .video_overview_white .video_wrapper {
  padding-top: 0;
}
.steuernews_video_overview .video_overview_white .video_wrapper .image {
  margin-bottom: 0;
  height: 100%;
}
.steuernews_video_overview .video_overview_white .video_wrapper .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.steuernews_video_overview .video_wrapper {
  margin-bottom: 0;
  height: 100%;
  position: relative;
}
.steuernews_video_overview .video_wrapper video {
  object-fit: cover;
}
.steuernews_video_overview .video_wrapper .category {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  background-color: #211B43;
  color: #fff;
  padding: 0.3125rem 0.625rem;
  border-radius: 0.3125rem;
  font-weight: 700;
}
.steuernews_video_overview .entry {
  display: inline-block;
  text-decoration: none;
}
.steuernews_video_overview .entry:hover .icon {
  fill: #9E2626;
  transition: all 300ms;
}
.steuernews_video_overview .entry .icon {
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  fill: #312783;
  margin-top: 1.875rem;
  transition: fill 300ms;
  margin-left: auto;
  margin-right: 0.9375rem;
  margin-bottom: 0.9375rem;
}
@media (min-width: 20rem) {
  .steuernews_video_overview .entry .icon {
    width: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_video_overview .entry .icon {
    width: 2.75rem;
  }
}
@media (min-width: 20rem) {
  .steuernews_video_overview .entry .icon {
    height: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_video_overview .entry .icon {
    height: 2.75rem;
  }
}
@media (min-width: 20rem) {
  .steuernews_video_overview .entry .icon {
    margin-top: calc(1.875rem + 1.75 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_video_overview .entry .icon {
    margin-top: 3.625rem;
  }
}
@media (min-width: 20rem) {
  .steuernews_video_overview .entry .icon {
    margin-right: calc(0.9375rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_video_overview .entry .icon {
    margin-right: 1.875rem;
  }
}
@media (min-width: 20rem) {
  .steuernews_video_overview .entry .icon {
    margin-bottom: calc(0.9375rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_video_overview .entry .icon {
    margin-bottom: 1.875rem;
  }
}
.steuernews_video_overview .entry .content {
  padding-bottom: 0.9375rem;
  padding-top: 1.25rem;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
}
@media (min-width: 20rem) {
  .steuernews_video_overview .entry .content {
    padding-bottom: calc(0.9375rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_video_overview .entry .content {
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 20rem) {
  .steuernews_video_overview .entry .content {
    padding-top: calc(1.25rem + 3.75 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_video_overview .entry .content {
    padding-top: 5rem;
  }
}
@media (min-width: 20rem) {
  .steuernews_video_overview .entry .content {
    padding-right: calc(0.9375rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_video_overview .entry .content {
    padding-right: 1.875rem;
  }
}
@media (min-width: 20rem) {
  .steuernews_video_overview .entry .content {
    padding-left: calc(0.9375rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_video_overview .entry .content {
    padding-left: 1.875rem;
  }
}
.steuernews_video_overview .entry .content .title {
  color: #312783;
}
.steuernews_video_overview .entry .content p {
  margin-bottom: 0;
  color: #211B43;
}
.steuernews_video_overview .image {
  margin-bottom: 0.75em;
  position: relative;
}

/* Source common/css/styles/screen/team.scss */

.team_overview .team_entry {
  flex-direction: column-reverse;
  margin-bottom: 0.75em;
}
@media (min-width: 61.875rem) {
  .team_overview .team_entry {
    flex-direction: row-reverse;
    align-items: flex-start;
  }
}
.team_overview .team_entry .buttons {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media (min-width: 30rem) {
  .team_overview .team_entry .buttons {
    flex-direction: row;
  }
}
.team_overview .team_entry .contact_infos.icons .contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 1.875rem;
  margin: 1.875rem 0;
}
.team_overview .team_entry .contact_infos.icons .contacts a {
  color: #211B43;
}
.team_overview .team_entry .contact_infos.icons .contacts .icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: #9E2626;
}
.team_overview .team_entry .contact_infos.icons .contact {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.team_overview.teaser_style .pre_title_wrapper {
  text-align: center;
  margin-bottom: 1.5625rem;
}
@media (min-width: 20rem) {
  .team_overview.teaser_style .pre_title_wrapper {
    margin-bottom: calc(1.5625rem + 1.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .team_overview.teaser_style .pre_title_wrapper {
    margin-bottom: 3.125rem;
  }
}
.team_overview.teaser_style .team_entry {
  border-radius: 1.25rem;
  overflow: hidden;
  height: 100%;
  transition: transform 300ms;
}
.team_overview.teaser_style .team_entry:hover {
  transform: scale(1.02);
  transition: transform 300ms;
}
.team_overview.teaser_style .team_entry > .info {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.team_overview.teaser_style .title_wrapper {
  display: flex;
  flex-direction: column;
  background: linear-gradient(80deg, #9E2626 0%, #9E2626 66%, #751c1c 100%);
  padding: 0 1.875rem;
  justify-content: flex-start;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  text-align: center;
  align-items: center;
  border-radius: 1.25rem;
}
@media (min-width: 20rem) {
  .team_overview.teaser_style .title_wrapper {
    padding-top: calc(0.9375rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .team_overview.teaser_style .title_wrapper {
    padding-top: 1.875rem;
  }
}
@media (min-width: 20rem) {
  .team_overview.teaser_style .title_wrapper {
    padding-bottom: calc(0.9375rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .team_overview.teaser_style .title_wrapper {
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 35rem) {
  .team_overview.teaser_style .title_wrapper {
    min-height: 12.5rem;
  }
}
@media (min-width: 35rem) and (min-width: 20rem) {
  .team_overview.teaser_style .title_wrapper {
    min-height: calc(12.5rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 35rem) and (min-width: 93.75rem) {
  .team_overview.teaser_style .title_wrapper {
    min-height: 12.5rem;
  }
}
.team_overview.teaser_style .title_wrapper .icon_wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  box-shadow: 0.25rem 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 1.25rem;
}
@media (min-width: 20rem) {
  .team_overview.teaser_style .title_wrapper .icon_wrapper {
    width: calc(3.75rem + 1.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .team_overview.teaser_style .title_wrapper .icon_wrapper {
    width: 5.3125rem;
  }
}
@media (min-width: 20rem) {
  .team_overview.teaser_style .title_wrapper .icon_wrapper {
    height: calc(3.75rem + 1.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .team_overview.teaser_style .title_wrapper .icon_wrapper {
    height: 5.3125rem;
  }
}
.team_overview.teaser_style .title_wrapper .icon_wrapper .icon {
  fill: #fff;
  width: 1.875rem;
  height: 1.875rem;
  display: block;
}
@media (min-width: 20rem) {
  .team_overview.teaser_style .title_wrapper .icon_wrapper .icon {
    width: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .team_overview.teaser_style .title_wrapper .icon_wrapper .icon {
    width: 3.125rem;
  }
}
@media (min-width: 20rem) {
  .team_overview.teaser_style .title_wrapper .icon_wrapper .icon {
    height: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .team_overview.teaser_style .title_wrapper .icon_wrapper .icon {
    height: 3.125rem;
  }
}
.team_overview.teaser_style .contact_infos {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  margin-bottom: 1.5625rem;
  border-bottom-left-radius: 1.25rem;
  border-bottom-right-radius: 1.25rem;
  justify-content: space-between;
}
@media (min-width: 20rem) {
  .team_overview.teaser_style .contact_infos {
    margin-bottom: calc(1.5625rem + 1.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .team_overview.teaser_style .contact_infos {
    margin-bottom: 3.125rem;
  }
}
.team_overview.teaser_style .contact_infos address p {
  color: #211B43;
}
.team_overview.teaser_style .contact_infos .buttons {
  margin-top: 3em;
}
.team_overview.teaser_style .contact_infos .buttons .button {
  margin-bottom: 0;
}
.team_overview.teaser_style .info {
  margin-bottom: 0;
  width: 100%;
}
.team_overview .title {
  margin: 0;
  padding: 0;
}
.team_overview .photo {
  display: block;
  flex: 0 0 auto;
  max-width: 25rem;
  margin-left: auto;
}
@media (min-width: 61.875rem) {
  .team_overview .photo {
    margin-bottom: 0;
  }
}
.team_overview .photo img {
  display: block;
  width: 100%;
  border-radius: 1.25rem;
}
.team_overview .info {
  flex: 1 1 auto;
  margin-bottom: 0.75em;
}

.team_entry {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.team_entry .photo {
  margin-bottom: 0.75em;
}
.team_entry .photo img {
  display: block;
}
.team_entry .info {
  margin-bottom: 0.75em;
}
.team_entry .buttons .button {
  margin-bottom: 0.75em;
  margin-right: 0.75em;
}

/* Source common/css/styles/screen/teaser.scss */

.teaser_overview .intro_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 44.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.125rem;
}
.teaser_overview .intro_text h2 {
  margin-bottom: 1.25rem;
}
.teaser_overview .intro_text p,
.teaser_overview .intro_text h2 {
  text-align: center;
}
.teaser_overview .info_bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.teaser_overview .info_bottom .description {
  text-align: center;
  margin-bottom: 1.875rem;
}

.teaser {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 1.25rem;
  height: 100%;
  margin-bottom: 1.5625rem;
  transition: transform 300ms;
}
@media (min-width: 20rem) {
  .teaser {
    margin-bottom: calc(1.5625rem + 1.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .teaser {
    margin-bottom: 3.125rem;
  }
}
.teaser:hover, .teaser:focus {
  transform: scale(1.04);
  transition: transform 300ms;
}
.teaser a {
  text-decoration: none;
  color: #211B43;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 1.25rem;
  transition: transform 300ms;
}
.teaser a:hover, .teaser a:focus {
  transition: transform 300ms;
  box-shadow: 0.25rem 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.1);
}
.teaser a:hover .icon.link_arrow, .teaser a:focus .icon.link_arrow {
  fill: #9E2626;
  transition: fill 300ms;
}
.teaser a:focus-visible {
  outline: 0.125rem solid #fff;
  outline-offset: 0.125rem;
}
.teaser .top.red {
  background: linear-gradient(80deg, #9E2626 0%, #9E2626 66%, #751c1c 100%);
  padding: 0 1.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  border-top-right-radius: 1.25rem;
  border-top-left-radius: 1.25rem;
}
@media (min-width: 20rem) {
  .teaser .top.red {
    padding-top: calc(0.9375rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .teaser .top.red {
    padding-top: 1.875rem;
  }
}
@media (min-width: 20rem) {
  .teaser .top.red {
    padding-bottom: calc(0.9375rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .teaser .top.red {
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 35rem) {
  .teaser .top.red {
    min-height: 12.5rem;
  }
}
@media (min-width: 35rem) and (min-width: 20rem) {
  .teaser .top.red {
    min-height: calc(12.5rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 35rem) and (min-width: 93.75rem) {
  .teaser .top.red {
    min-height: 12.5rem;
  }
}
.teaser .top.red .icon_wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  box-shadow: 0.25rem 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 20rem) {
  .teaser .top.red .icon_wrapper {
    width: calc(3.75rem + 1.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .teaser .top.red .icon_wrapper {
    width: 5.3125rem;
  }
}
@media (min-width: 20rem) {
  .teaser .top.red .icon_wrapper {
    height: calc(3.75rem + 1.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .teaser .top.red .icon_wrapper {
    height: 5.3125rem;
  }
}
.teaser .top.red .icon_wrapper .icon {
  fill: #fff;
  width: 1.875rem;
  height: 1.875rem;
  display: block;
}
@media (min-width: 20rem) {
  .teaser .top.red .icon_wrapper .icon {
    width: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .teaser .top.red .icon_wrapper .icon {
    width: 3.125rem;
  }
}
@media (min-width: 20rem) {
  .teaser .top.red .icon_wrapper .icon {
    height: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .teaser .top.red .icon_wrapper .icon {
    height: 3.125rem;
  }
}
.teaser .top.red .title {
  color: #fff;
  text-align: center;
  padding-top: 1.25rem;
  margin-bottom: 0;
}
.teaser .bottom {
  padding: 1.875rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.teaser .bottom p {
  text-decoration: none;
  color: #211B43;
}
.teaser .link_arrow.icon {
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  fill: #312783;
  margin-top: 0.875rem;
  margin-left: auto;
  transition: fill 300ms;
}
@media (min-width: 20rem) {
  .teaser .link_arrow.icon {
    width: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .teaser .link_arrow.icon {
    width: 2.75rem;
  }
}
@media (min-width: 20rem) {
  .teaser .link_arrow.icon {
    height: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .teaser .link_arrow.icon {
    height: 2.75rem;
  }
}
.teaser .teaser_background_image .image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 18.75rem;
}

/* Source common/css/styles/screen/text_button.scss */

.text_button .content {
  position: relative;
}
.text_button .values {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: flex-end;
  margin-right: calc(-50vw + 50%);
  margin-top: 3em;
}
@media (min-width: 20rem) {
  .text_button .values {
    gap: calc(0.625rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .text_button .values {
    gap: 1.875rem;
  }
}
@media (min-width: 35rem) {
  .text_button .values {
    position: absolute;
    top: 0;
    bottom: 0;
    justify-content: center;
    right: 0;
    margin-top: 0;
  }
}
.text_button .values .value {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  z-index: 0;
}
.text_button .values .value::after {
  bottom: 0;
  content: "";
  left: 0.125rem;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  background-color: #9E2626;
  border-top-left-radius: 3.125rem;
  border-bottom-left-radius: 3.125rem;
}
.text_button .values .value .text {
  color: #fff;
  font-weight: 300;
  font-family: "MontserratAlternates", sans-serif;
  letter-spacing: calc((1rem + 0.25 * (100vw - 20rem) / (73.75)) * 0);
  font-size: 1rem;
  padding-right: 1.875rem;
}
@media (min-width: 93.75rem) {
  .text_button .values .value .text {
    letter-spacing: calc(1.25rem * 0);
  }
}
@media (min-width: 20rem) {
  .text_button .values .value .text {
    font-size: calc(1rem + 0.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .text_button .values .value .text {
    font-size: 1.25rem;
  }
}
.text_button .values .value .icon_wrapper {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 50%;
}
@media (min-width: 20rem) {
  .text_button .values .value .icon_wrapper {
    width: calc(2.5rem + 2.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .text_button .values .value .icon_wrapper {
    width: 5rem;
  }
}
@media (min-width: 20rem) {
  .text_button .values .value .icon_wrapper {
    height: calc(2.5rem + 2.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .text_button .values .value .icon_wrapper {
    height: 5rem;
  }
}
.text_button .values .value .icon {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  fill: #9E2626;
}
@media (min-width: 20rem) {
  .text_button .values .value .icon {
    width: calc(1.5rem + 1.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .text_button .values .value .icon {
    width: 3.0625rem;
  }
}
@media (min-width: 20rem) {
  .text_button .values .value .icon {
    height: calc(1.5rem + 1.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .text_button .values .value .icon {
    height: 3.0625rem;
  }
}
.text_button.centered .pre_title,
.text_button.centered .title,
.text_button.centered p {
  text-align: center;
}
@media (min-width: 61.875rem) {
  .text_button.centered > .content {
    max-width: 45.375rem;
    margin-left: auto;
    margin-right: auto;
  }
  .startpage .text_button.centered > .content {
    max-width: 44.5rem;
  }
}

/* Source common/css/styles/screen/tooltip.scss */

.tooltip_wrapper {
  display: block;
  position: relative;
  z-index: 1;
}
.checkbox .tooltip_wrapper {
  position: static;
}

[role=tooltip] {
  background: #312783;
  border: 0rem solid #312783;
  border-radius: 0.3125rem;
  bottom: 100%;
  color: #fff;
  font-size: 85%;
  font-weight: 400;
  line-height: 1.5;
  opacity: 1;
  padding: 0.75em;
  position: absolute;
  right: 0;
  text-align: center;
  transform: translateY(-0.3125rem);
  transition: opacity 300ms, transform 300ms, visibility 300ms;
  visibility: visible;
  z-index: 50;
}
[role=tooltip]:after {
  border: 0.625rem solid transparent;
  border-top-color: #312783;
  bottom: -1.25rem;
  content: "";
  display: block;
  height: 0;
  left: 50%;
  margin-left: -0.625rem;
  position: absolute;
  width: 0;
}
[role=tooltip]:before {
  border: 0.6875rem solid transparent;
  border-top-color: #312783;
  bottom: -1.25rem;
  content: "";
  display: block;
  height: 0;
  left: 50%;
  margin-left: -0.6875rem;
  position: absolute;
  width: 0;
}
[role=tooltip][aria-hidden=true] {
  opacity: 0;
  transform: translateY(-0.9375rem);
  visibility: hidden;
}

/* Source common/css/styles/screen/video.scss */

.video_overview .video_play,
.video_infolists_overview .video_play,
.video_infolist_overview .video_play,
.video_preview .video_play,
.steuernews_preview .video_play,
.steuernews_video_overview .video_play {
  position: relative;
}
.video_overview .video_play .icon,
.video_infolists_overview .video_play .icon,
.video_infolist_overview .video_play .icon,
.video_preview .video_play .icon,
.steuernews_preview .video_play .icon,
.steuernews_video_overview .video_play .icon {
  fill: #211B43;
  height: 2.375rem;
  left: 0;
  margin: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.video_overview .touch_link,
.video_infolists_overview .touch_link,
.video_infolist_overview .touch_link {
  display: inline-block;
}
.video_overview .entry,
.video_infolists_overview .entry,
.video_infolist_overview .entry {
  overflow: hidden;
  border-radius: 1.25rem;
  background-color: #fff;
  margin-bottom: 1.25rem;
  transition: transform 300ms;
  box-shadow: 0.25rem 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 20rem) {
  .video_overview .entry,
.video_infolists_overview .entry,
.video_infolist_overview .entry {
    margin-bottom: calc(1.25rem + 1.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .video_overview .entry,
.video_infolists_overview .entry,
.video_infolist_overview .entry {
    margin-bottom: 3.125rem;
  }
}
.video_overview .entry:hover, .video_overview .entry:focus,
.video_infolists_overview .entry:hover,
.video_infolists_overview .entry:focus,
.video_infolist_overview .entry:hover,
.video_infolist_overview .entry:focus {
  transform: scale(1.02);
  transition: transform 300ms;
}
.video_overview .entry .icon,
.video_infolists_overview .entry .icon,
.video_infolist_overview .entry .icon {
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  fill: #312783;
  margin-top: 1.875rem;
  transition: fill 300ms;
  margin-left: auto;
  margin-right: 0.9375rem;
  margin-bottom: 0.9375rem;
}
@media (min-width: 20rem) {
  .video_overview .entry .icon,
.video_infolists_overview .entry .icon,
.video_infolist_overview .entry .icon {
    width: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .video_overview .entry .icon,
.video_infolists_overview .entry .icon,
.video_infolist_overview .entry .icon {
    width: 2.75rem;
  }
}
@media (min-width: 20rem) {
  .video_overview .entry .icon,
.video_infolists_overview .entry .icon,
.video_infolist_overview .entry .icon {
    height: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .video_overview .entry .icon,
.video_infolists_overview .entry .icon,
.video_infolist_overview .entry .icon {
    height: 2.75rem;
  }
}
@media (min-width: 20rem) {
  .video_overview .entry .icon,
.video_infolists_overview .entry .icon,
.video_infolist_overview .entry .icon {
    margin-top: calc(1.875rem + 1.75 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .video_overview .entry .icon,
.video_infolists_overview .entry .icon,
.video_infolist_overview .entry .icon {
    margin-top: 3.625rem;
  }
}
@media (min-width: 20rem) {
  .video_overview .entry .icon,
.video_infolists_overview .entry .icon,
.video_infolist_overview .entry .icon {
    margin-right: calc(0.9375rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .video_overview .entry .icon,
.video_infolists_overview .entry .icon,
.video_infolist_overview .entry .icon {
    margin-right: 1.875rem;
  }
}
@media (min-width: 20rem) {
  .video_overview .entry .icon,
.video_infolists_overview .entry .icon,
.video_infolist_overview .entry .icon {
    margin-bottom: calc(0.9375rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .video_overview .entry .icon,
.video_infolists_overview .entry .icon,
.video_infolist_overview .entry .icon {
    margin-bottom: 1.875rem;
  }
}
.video_overview .entry .video_play,
.video_infolists_overview .entry .video_play,
.video_infolist_overview .entry .video_play {
  position: relative;
}
.video_overview .entry .video_play::after,
.video_infolists_overview .entry .video_play::after,
.video_infolist_overview .entry .video_play::after {
  bottom: 0rem;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.42) 90%, white 100%);
}
.video_overview .entry .video_play::before,
.video_infolists_overview .entry .video_play::before,
.video_infolist_overview .entry .video_play::before {
  bottom: -0.0625rem;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  height: 0.125rem;
  z-index: 1;
  background: #fff;
}
.video_overview .entry figcaption,
.video_infolists_overview .entry figcaption,
.video_infolist_overview .entry figcaption {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 1.25rem;
  padding-bottom: 0;
  margin-top: 0;
  word-break: break-word;
  text-wrap: balance;
  hyphens: auto;
}
@media (min-width: 20rem) {
  .video_overview .entry figcaption,
.video_infolists_overview .entry figcaption,
.video_infolist_overview .entry figcaption {
    padding-left: calc(1.25rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .video_overview .entry figcaption,
.video_infolists_overview .entry figcaption,
.video_infolist_overview .entry figcaption {
    padding-left: 1.875rem;
  }
}
@media (min-width: 20rem) {
  .video_overview .entry figcaption,
.video_infolists_overview .entry figcaption,
.video_infolist_overview .entry figcaption {
    padding-right: calc(1.25rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .video_overview .entry figcaption,
.video_infolists_overview .entry figcaption,
.video_infolist_overview .entry figcaption {
    padding-right: 1.875rem;
  }
}
@media (min-width: 20rem) {
  .video_overview .entry figcaption,
.video_infolists_overview .entry figcaption,
.video_infolist_overview .entry figcaption {
    padding-top: calc(1.25rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .video_overview .entry figcaption,
.video_infolists_overview .entry figcaption,
.video_infolist_overview .entry figcaption {
    padding-top: 1.875rem;
  }
}
.video_overview .entry figcaption p,
.video_infolists_overview .entry figcaption p,
.video_infolist_overview .entry figcaption p {
  margin-bottom: 0;
}
.video_overview .entry p.style_h3,
.video_infolists_overview .entry p.style_h3,
.video_infolist_overview .entry p.style_h3 {
  color: #312783;
}
.video_overview .entry .play_text,
.video_infolists_overview .entry .play_text,
.video_infolist_overview .entry .play_text {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  background-color: #211B43;
  padding: 0.3125rem 0.625rem;
  border-radius: 0.625rem;
}
.video_overview .entry .play_text p,
.video_infolists_overview .entry .play_text p,
.video_infolist_overview .entry .play_text p {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0;
}
.video_overview .image,
.video_overview figure,
.video_infolists_overview .image,
.video_infolists_overview figure,
.video_infolist_overview .image,
.video_infolist_overview figure {
  margin-bottom: 0;
  width: 100%;
}
.video_overview .image img,
.video_overview figure img,
.video_infolists_overview .image img,
.video_infolists_overview figure img,
.video_infolist_overview .image img,
.video_infolist_overview figure img {
  width: 100%;
}
.video_overview figcaption,
.video_infolists_overview figcaption,
.video_infolist_overview figcaption {
  font-size: 100%;
}
.video_overview .overview_title_wrapper,
.video_infolists_overview .overview_title_wrapper,
.video_infolist_overview .overview_title_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.875rem;
}
@media (min-width: 20rem) {
  .video_overview .overview_title_wrapper,
.video_infolists_overview .overview_title_wrapper,
.video_infolist_overview .overview_title_wrapper {
    margin-bottom: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .video_overview .overview_title_wrapper,
.video_infolists_overview .overview_title_wrapper,
.video_infolist_overview .overview_title_wrapper {
    margin-bottom: 3.125rem;
  }
}
.video_overview .overview_title_wrapper p,
.video_infolists_overview .overview_title_wrapper p,
.video_infolist_overview .overview_title_wrapper p {
  margin-top: 0;
}
@media (min-width: 61.875rem) {
  .video_overview .overview_title_wrapper,
.video_infolists_overview .overview_title_wrapper,
.video_infolist_overview .overview_title_wrapper {
    max-width: 45.375rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.video_overview.infovideo_overview .entry figure,
.video_infolists_overview.infovideo_overview .entry figure,
.video_infolist_overview.infovideo_overview .entry figure {
  margin: 0;
}

.video_infolist .button {
  margin-bottom: 1.5em;
}

.video_wrapper {
  height: 0;
  margin-bottom: 1.5em;
  padding-top: 56.25%;
  position: relative;
}
.video_wrapper video,
.video_wrapper iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.video_wrapper video::cue {
  background: #000000;
  color: #ffffff;
}

.video_preview .title_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 1.25rem;
}
@media (min-width: 20rem) {
  .video_preview .title_wrapper {
    margin-bottom: calc(1.25rem + 1.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .video_preview .title_wrapper {
    margin-bottom: 3.125rem;
  }
}

.video_title_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 1.25rem;
}
@media (min-width: 20rem) {
  .video_title_wrapper {
    margin-bottom: calc(1.25rem + 1.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .video_title_wrapper {
    margin-bottom: 3.125rem;
  }
}

