/* 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 #de2e25;
  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: block;
  fill: #005090;
  height: 1.5rem;
  transform: rotate(90deg);
  width: 1.5rem;
}
[role=tab] .icon svg {
  display: block;
}
[role=tab][aria-expanded=true] {
  border-color: #005090;
}
[role=tab][aria-expanded=true] .icon {
  transform: rotate(-90deg);
}
[role=tab]:focus {
  border-color: #005090;
  outline: 0;
}
[role=tab]:focus .title {
  color: #005090;
}
[role=tab]:focus-visible {
  border-width: 0.1875rem;
  background: #eaeaeb;
}

[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 */

.address .company_name .addition {
  display: block;
  text-transform: none;
}

.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: 1.5em;
}
.contact_wrapper .postal_address > span {
  display: block;
}

.contact {
  display: flex;
}
.contact p {
  margin-bottom: 0;
}
.contact > span {
  margin-right: 0.375em;
}

/* 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: #fff;
  height: 0.8125rem;
  line-height: 0.8125rem;
  position: absolute;
  right: 0.625rem;
  top: 0.625rem;
  transition: fill 300ms;
  width: 4.625rem;
}
.author:focus, .author:hover {
  fill: rgba(255, 255, 255, 0.8);
}

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

.background_image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 20rem;
  position: relative;
  width: 100%;
  z-index: 1;
}
.background_image.fullscreen {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: 12.5rem;
}
@media (min-width: 20rem) {
  .background_image.fullscreen {
    height: calc(12.5rem + 21.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .background_image.fullscreen {
    height: 34.375rem;
  }
}

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

.breadcrumbs {
  display: none;
}

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

.button {
  border-radius: 0;
  padding: 0 0.9375em;
  cursor: pointer;
  background: #fff;
  border: 0.0625rem solid #de2e25;
  color: #000000;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms;
  user-select: none;
}
.button > span {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 2.625rem;
}
@media (min-width: 20rem) {
  .button > span {
    min-height: calc(2.625rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .button > span {
    min-height: 2.625rem;
  }
}
.button .icon {
  fill: #005090;
  flex-shrink: 0;
  height: 1rem;
  margin-left: 0.75em;
  transition: fill 300ms;
  width: 1rem;
}
.button .icon svg {
  display: block;
}
.button .text {
  font-weight: 700;
  padding: 0.375em 0;
  transition: color 300ms;
}
.button:focus-visible {
  background: #005090;
  border-color: #de2e25;
  color: #fff;
  outline: 0.125rem solid #000000;
  outline-offset: 0.125rem;
  box-shadow: 0 0 0 0.375rem #fff;
}
.button:focus-visible .icon {
  fill: #fff;
}
.button:hover {
  background: #005090;
  border-color: #de2e25;
  color: #fff;
}
.button:hover .icon {
  fill: #fff;
}
.button:active, .button.active {
  background: #000000;
  border: 0.0625rem solid #de2e25;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms;
  user-select: none;
}
.button:active > span, .button.active > span {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 2.625rem;
}
@media (min-width: 20rem) {
  .button:active > span, .button.active > span {
    min-height: calc(2.625rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .button:active > span, .button.active > span {
    min-height: 2.625rem;
  }
}
.button:active .icon, .button.active .icon {
  fill: #fff;
  flex-shrink: 0;
  height: 1rem;
  margin-left: 0.75em;
  transition: fill 300ms;
  width: 1rem;
}
.button:active .icon svg, .button.active .icon svg {
  display: block;
}
.button:active .text, .button.active .text {
  font-weight: 700;
  padding: 0.375em 0;
  transition: color 300ms;
}
.button.bottom_spacing {
  margin-bottom: 0.75em;
}
.button.on_blue {
  background: #005090;
  border: 0.0625rem solid #de2e25;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms;
  user-select: none;
}
.button.on_blue > span {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 2.625rem;
}
@media (min-width: 20rem) {
  .button.on_blue > span {
    min-height: calc(2.625rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .button.on_blue > span {
    min-height: 2.625rem;
  }
}
.button.on_blue .icon {
  fill: #fff;
  flex-shrink: 0;
  height: 1rem;
  margin-left: 0.75em;
  transition: fill 300ms;
  width: 1rem;
}
.button.on_blue .icon svg {
  display: block;
}
.button.on_blue .text {
  font-weight: 700;
  padding: 0.375em 0;
  transition: color 300ms;
}
.button.on_blue:focus, .button.on_blue:hover {
  background: #fff;
  border-color: #de2e25;
  color: #000000;
}
.button.on_blue:focus .icon, .button.on_blue:hover .icon {
  fill: #005090;
}
.button.on_blue:active, .button.on_blue.active {
  background: #000000;
  border: 0.0625rem solid #de2e25;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms;
  user-select: none;
}
.button.on_blue:active > span, .button.on_blue.active > span {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 2.625rem;
}
@media (min-width: 20rem) {
  .button.on_blue:active > span, .button.on_blue.active > span {
    min-height: calc(2.625rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .button.on_blue:active > span, .button.on_blue.active > span {
    min-height: 2.625rem;
  }
}
.button.on_blue:active .icon, .button.on_blue.active .icon {
  fill: #fff;
  flex-shrink: 0;
  height: 1rem;
  margin-left: 0.75em;
  transition: fill 300ms;
  width: 1rem;
}
.button.on_blue:active .icon svg, .button.on_blue.active .icon svg {
  display: block;
}
.button.on_blue:active .text, .button.on_blue.active .text {
  font-weight: 700;
  padding: 0.375em 0;
  transition: color 300ms;
}
.button.red {
  background: #de2e25;
  border: 0.0625rem solid #de2e25;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms;
  user-select: none;
}
.button.red > span {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 2.625rem;
}
@media (min-width: 20rem) {
  .button.red > span {
    min-height: calc(2.625rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .button.red > span {
    min-height: 2.625rem;
  }
}
.button.red .icon {
  fill: #fff;
  flex-shrink: 0;
  height: 1rem;
  margin-left: 0.75em;
  transition: fill 300ms;
  width: 1rem;
}
.button.red .icon svg {
  display: block;
}
.button.red .text {
  font-weight: 700;
  padding: 0.375em 0;
  transition: color 300ms;
}
.button.red:hover, .button.red:focus {
  background: #000000;
  border-color: #000000;
  color: #005090;
}
.button.red:hover .icon, .button.red:focus .icon {
  fill: #fff;
}
.button.bottom_margin {
  margin-bottom: 2.25em;
}

.button_overview {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5em;
}
.button_overview .button {
  margin: 0 1.125em 1.125em 0;
}

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

.bypass_links {
  left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  z-index: 6000;
}
.bypass_links li {
  display: block;
  width: 20rem;
}
.bypass_links a {
  background: #fff;
  color: #005090;
  display: inline-block;
  font-size: 87.5%;
  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: #005090;
  height: auto;
  left: 0.375em;
  top: 0.375em;
  width: auto;
}

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

.company_logo {
  display: block;
}
.company_logo img {
  display: block;
}

header .company_logo {
  left: 0;
  position: absolute;
  top: 0;
  transition: box-shadow 300ms, width 300ms;
  z-index: 1;
  width: 12.5rem;
  width: 17.5rem;
}
@media (min-width: 20rem) {
  header .company_logo {
    width: calc(12.5rem + 21.5625 * (100vw - 20rem) / (55));
  }
}
@media (min-width: 75rem) {
  header .company_logo {
    width: 34.0625rem;
  }
}
@media (min-width: 75rem) {
  header .company_logo {
    width: calc(17.5rem + 6.25 * (100vw - 75rem) / (18.75));
  }
}
@media (min-width: 93.75rem) {
  header .company_logo {
    width: calc(23.75rem + 4.375 * (100vw - 93.75rem) / (6.25));
  }
}
@media (min-width: 100rem) {
  header .company_logo {
    width: 28.125rem;
  }
}
@media (min-width: 100rem) {
  header .company_logo {
    width: calc(28.125rem + 9.375 * (100vw - 100rem) / (20));
  }
}
@media (min-width: 120rem) {
  header .company_logo {
    width: 37.5rem;
  }
}
@media (min-width: 75rem) {
  header .company_logo {
    margin-left: -1.5em;
  }
}
@media (min-width: 75rem) and (min-width: 75rem) {
  header .company_logo {
    margin-left: calc(-1.5em + 1.5 * (100vw - 75rem) / (25));
  }
}
@media (min-width: 75rem) and (min-width: 100rem) {
  header .company_logo {
    margin-left: 0;
  }
}

body.scrolled_down header .company_logo {
  box-shadow: 0 0 0.9375rem rgba(0, 38, 68, 0.25);
  width: 12.5rem;
}
@media (min-width: 20rem) {
  body.scrolled_down header .company_logo {
    width: calc(12.5rem + 11.25 * (100vw - 20rem) / (55));
  }
}
@media (min-width: 75rem) {
  body.scrolled_down header .company_logo {
    width: 23.75rem;
  }
}
@media (min-width: 75rem) {
  body.scrolled_down header .company_logo {
    width: calc(13.4375rem + 8.4375 * (100vw - 75rem) / (25));
  }
}
@media (min-width: 100rem) {
  body.scrolled_down header .company_logo {
    width: 21.875rem;
  }
}
@media (min-width: 100rem) {
  body.scrolled_down header .company_logo {
    width: calc(21.875rem + 3.125 * (100vw - 100rem) / (20));
  }
}
@media (min-width: 120rem) {
  body.scrolled_down header .company_logo {
    width: 25rem;
  }
}

footer .company_logo {
  outline-color: #000000 !important;
  position: relative;
  z-index: 1;
  width: 9.375rem;
}
@media (min-width: 20rem) {
  footer .company_logo {
    width: calc(9.375rem + 2.1875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .company_logo {
    width: 11.5625rem;
  }
}
footer .company_logo:before {
  background: #fff;
  bottom: -1.5em;
  content: "";
  display: block;
  left: -624.9375rem;
  position: absolute;
  top: -1.5em;
  z-index: -1;
  right: -0.9375rem;
}
@media (min-width: 20rem) {
  footer .company_logo:before {
    right: calc(-0.9375rem + -2.1875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .company_logo:before {
    right: -3.125rem;
  }
}
@media (min-width: 61.875rem) {
  footer .company_logo:before {
    right: calc(-2.25em + -2.25 * (100vw - 61.875rem) / (31.875));
  }
}
@media (min-width: 93.75rem) {
  footer .company_logo:before {
    right: -4.5em;
  }
}

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

.cookie_banner {
  background: #e7e7e9;
  border-top: 0.0625rem solid #de2e25;
  bottom: 0;
  display: grid;
  left: 0;
  max-height: 100vh;
  overflow-y: auto;
  padding: 1.125em;
  position: fixed;
  right: 0;
  row-gap: 1.125em;
  text-align: center;
  z-index: 9000;
  grid-template-areas: "cb_text_policy" "cb_link_privacy" "cb_button_confirm";
}
@media (min-width: 47.5rem) {
  .cookie_banner {
    align-items: center;
    column-gap: 1.5em;
    grid-template-columns: 1fr;
    grid-template-areas: "cb_text_policy cb_button_confirm" "cb_link_privacy cb_button_confirm";
  }
  .cookie_banner .cb_text_policy {
    text-align: left;
  }
  .cookie_banner .cb_link_privacy {
    justify-self: flex-start;
  }
}
.cookie_banner .cb_title_with_svg {
  display: none;
  grid-area: cb_title_with_svg;
}
.cookie_banner .cb_text_policy {
  grid-area: cb_text_policy;
}
.cookie_banner .cb_link_privacy {
  grid-area: cb_link_privacy;
}
.cookie_banner .cb_button_confirm {
  grid-area: cb_button_confirm;
}
.cookie_banner p {
  font-size: 87.5%;
  margin: 0;
  width: 100%;
}
.cookie_banner .close {
  flex: 0 0 auto;
}

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

.disclaimer {
  background: #e7e7e9;
  border-radius: 0;
  color: #000000;
  font-size: 87.5%;
  margin: 1.5em 0;
  padding: 0.999em 1.5em;
}
.disclaimer a {
  display: inline;
}

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

.down_arrow {
  background: #de2e25;
  bottom: 1.5em;
  display: block;
  line-height: 0;
  padding: 0.625rem;
  position: absolute;
  right: 1.5em;
  transition: all 300ms;
  z-index: 5;
  height: 2.75rem;
  width: 2.75rem;
}
@media (min-width: 20rem) {
  .down_arrow {
    height: calc(2.75rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .down_arrow {
    height: 2.75rem;
  }
}
@media (min-width: 20rem) {
  .down_arrow {
    width: calc(2.75rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .down_arrow {
    width: 2.75rem;
  }
}
.down_arrow .icon {
  display: block;
  fill: #fff;
  transform: rotate(90deg);
  transition: fill 300ms;
}
.down_arrow .icon svg {
  display: block;
}
.down_arrow:focus, .down_arrow:hover {
  background: #000000;
  transform: scale(1.1);
}
@media (min-width: 30rem) and (max-width: 61.8125rem) {
  .down_arrow {
    display: none;
  }
}

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

.download_overview {
  margin-bottom: 0.75em;
}
.download_overview .touch_link {
  display: flex;
  border: 0.0625rem solid #de2e25;
  display: flex;
  height: 100%;
  flex-grow: 1;
  padding: 0.9375rem;
  transition: all 300ms;
}
@media (min-width: 20rem) {
  .download_overview .touch_link {
    padding: calc(0.9375rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .download_overview .touch_link {
    padding: 1.5625rem;
  }
}
.blue_bg .download_overview .touch_link {
  padding: 1.5em 0;
  border: transparent;
}
.download_overview .touch_link .title {
  color: #000000;
  text-decoration: none;
}
.blue_bg .download_overview .touch_link .title {
  color: #fff;
}
.download_overview .touch_link .text {
  margin-bottom: 0;
}
.download_overview .touch_link .title_wrapper {
  margin-bottom: 0;
  padding-top: 0;
}
.download_overview .touch_link:hover .icon, .download_overview .touch_link:focus .icon {
  transform: scale(1.2);
}
.download_overview .icon {
  flex-shrink: 0;
  height: 2rem;
  margin-top: 0.375em;
  margin-right: 1.5em;
  width: 2rem;
  transition: transform 300ms;
  fill: #005090;
}
.blue_bg .download_overview .icon {
  fill: #fff;
}
.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;
  }
}
.dropdown_menu > ul {
  align-items: center;
  display: flex;
  position: relative;
}
.dropdown_menu > ul li {
  position: relative;
}
.dropdown_menu > ul li:hover > a .text, .dropdown_menu > ul li.hover > a .text {
  font-weight: 700;
}
.dropdown_menu > ul li:hover > ul, .dropdown_menu > ul li.hover > ul {
  margin-top: 1.5em;
  opacity: 1;
  visibility: visible;
}
.dropdown_menu > ul > li {
  align-items: center;
  margin-right: 0.515625rem;
}
@media (min-width: 75rem) {
  .dropdown_menu > ul > li {
    margin-right: calc(0.515625rem + 1.359375 * (100vw - 75rem) / (18.75));
  }
}
@media (min-width: 93.75rem) {
  .dropdown_menu > ul > li {
    margin-right: 1.875rem;
  }
}
.dropdown_menu > ul > li > a {
  align-items: center;
  color: #fff;
  display: flex;
  hyphens: none;
  outline-color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.dropdown_menu > ul > li > a .text {
  transition: color 300ms;
}
.dropdown_menu > ul > li > a .text:before {
  color: transparent;
  content: attr(data-title);
  display: block;
  font-weight: 700;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.dropdown_menu > ul > li > a .icon {
  display: block;
  fill: #fff;
  height: 1rem;
  margin-left: 0.1875em;
  transition: fill 300ms;
  width: 1rem;
}
.dropdown_menu > ul > li > a .icon svg {
  display: block;
}
.dropdown_menu > ul > li > a.active .text, .dropdown_menu > ul > li > a:focus .text, .dropdown_menu > ul > li > a:hover .text {
  font-weight: 700;
}
.dropdown_menu > ul > li:last-child > a {
  border: 0.0625rem solid #de2e25;
  min-height: 2.5rem;
  padding: 0 0.75em;
  transition: background 300ms;
}
.dropdown_menu > ul > li:last-child > a.active, .dropdown_menu > ul > li:last-child > a:focus, .dropdown_menu > ul > li:last-child > a:hover {
  background: #fff;
}
.dropdown_menu > ul > li:last-child > a.active .text, .dropdown_menu > ul > li:last-child > a:focus .text, .dropdown_menu > ul > li:last-child > a:hover .text {
  color: #000000;
  font-weight: 400;
}
.dropdown_menu > ul > li:last-child > a.active .icon, .dropdown_menu > ul > li:last-child > a:focus .icon, .dropdown_menu > ul > li:last-child > a:hover .icon {
  fill: #005090;
}
.dropdown_menu > ul > li:last-child .active:hover, .dropdown_menu > ul > li:last-child .active:focus {
  background: #ecf6ff;
}
.dropdown_menu > ul > li ul {
  background: rgba(255, 255, 255, 0.9);
  border: 0.0625rem solid #de2e25;
  opacity: 0;
  padding: 1.125em 1.5em;
  position: absolute;
  transition: margin-top 300ms, opacity 300ms, visibility 300ms;
  visibility: hidden;
  z-index: 1000;
}
.dropdown_menu > ul > li ul:target {
  margin-top: 1.5em;
  opacity: 1;
  visibility: visible;
}
.dropdown_menu > ul > li ul a {
  color: #000000;
  display: block;
  hyphens: none;
  padding: 0.3em 0;
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
}
.dropdown_menu > ul > li ul a > span {
  align-items: center;
  display: flex;
}
.dropdown_menu > ul > li ul a .icon {
  display: block;
  fill: #000000;
  height: 1rem;
  margin-left: 0.75em;
  opacity: 0;
  transform: translateX(-0.5em);
  transition: 300ms;
  visibility: hidden;
  width: 1rem;
}
.dropdown_menu > ul > li ul a .icon svg {
  display: block;
}
.dropdown_menu > ul > li ul a.active {
  color: #005090;
}
.dropdown_menu > ul > li ul a:focus .text, .dropdown_menu > ul > li ul a:hover .text {
  font-weight: 400;
}
.dropdown_menu > ul > li ul a:focus .icon, .dropdown_menu > ul > li ul a:hover .icon {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

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

footer .footer_pre .footer_news .wrap-text {
  height: 100%;
  padding: 1.875em 1.5em 0 0;
  position: relative;
  margin-bottom: 0.9375rem;
}
@media (min-width: 20rem) {
  footer .footer_pre .footer_news .wrap-text {
    margin-bottom: calc(0.9375rem + 2.1875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .footer_pre .footer_news .wrap-text {
    margin-bottom: 3.125rem;
  }
}
footer .footer_pre .footer_news .wrap-text:before {
  background: #005090;
  bottom: 0;
  content: "";
  display: block;
  left: -624.9375rem;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
footer .footer_pre .footer_news .wrap-text p {
  color: #fff;
}
footer .footer_post ::selection {
  background: #fff;
  color: #000000;
}
footer .footer_post .footer_nl {
  background: #005090;
  color: #fff;
  padding: 2.625em 0 3.375em;
  margin-bottom: 3em;
}
@media (min-width: 20rem) {
  footer .footer_post .footer_nl {
    margin-bottom: calc(3em + 3 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .footer_post .footer_nl {
    margin-bottom: 6em;
  }
}
footer .footer_post .footer_nl .style_h3 {
  padding: 0;
}
@media (min-width: 61.875rem) {
  footer .footer_post .footer_nl .style_h3 {
    margin: 0;
  }
}
footer .footer_post .footer_nl p {
  color: #fff;
}
@media (min-width: 61.875rem) {
  footer .footer_post .footer_nl p {
    margin: 0;
  }
}
footer .footer_post .footer_address {
  background: #005090;
  overflow: hidden;
  position: relative;
}
footer .footer_post .footer_address a {
  color: #fff;
  outline-color: #fff;
}
footer .footer_post .footer_address a.active {
  font-weight: 600;
  text-decoration: none;
}
footer .footer_post .footer_address .wrap-flex {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 3em 0 1.5em;
}
footer .footer_post .footer_address .wrap-logo {
  padding: 1.125em 0;
}
footer .footer_post .contact_wrapper address {
  align-items: flex-end;
}
footer .footer_post .contact_wrapper p {
  color: #fff;
  margin-right: 2.25em;
}
@media (min-width: 20rem) {
  footer .footer_post .contact_wrapper p {
    margin-right: calc(2.25em + 1.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .footer_post .contact_wrapper p {
    margin-right: 4.125em;
  }
}
footer .footer_post .contact_wrapper .company_name {
  letter-spacing: calc((1rem + 0.25 * (100vw - 20rem) / (73.75)) * 0);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
}
@media (min-width: 93.75rem) {
  footer .footer_post .contact_wrapper .company_name {
    letter-spacing: calc(1.25rem * 0);
  }
}
@media (min-width: 20rem) {
  footer .footer_post .contact_wrapper .company_name {
    font-size: calc(1rem + 0.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .footer_post .contact_wrapper .company_name {
    font-size: 1.25rem;
  }
}
footer .footer_post .contact_wrapper .company_name .addition {
  letter-spacing: calc((0.875rem + 0.125 * (100vw - 20rem) / (73.75)) * 0);
  font-size: 0.875rem;
  display: block;
  font-weight: 400;
  text-transform: none;
}
@media (min-width: 93.75rem) {
  footer .footer_post .contact_wrapper .company_name .addition {
    letter-spacing: calc(1rem * 0);
  }
}
@media (min-width: 20rem) {
  footer .footer_post .contact_wrapper .company_name .addition {
    font-size: calc(0.875rem + 0.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .footer_post .contact_wrapper .company_name .addition {
    font-size: 1rem;
  }
}
footer .footer_post .related_links {
  margin-bottom: 1.5em;
}
footer .footer_post .related_links a {
  display: inline-block;
  padding: 0.25em 0;
}

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

.file {
  display: flex;
  flex-basis: 65%;
  margin: 0 0 0.999em;
  position: relative;
  height: 2.75rem;
}
@media (min-width: 20rem) {
  .file {
    height: calc(2.75rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file {
    height: 2.75rem;
  }
}
.file.error .file_name {
  border-color: #005090;
}
.file .file_name {
  background: #fff;
  border: 0.0625rem solid #b2b2b8;
  border-radius: 0 0 0 0;
  color: #000000;
  flex: 0 1 100%;
  overflow: hidden;
  padding: 0 0.75em;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 8.125rem;
  line-height: 2.625rem;
  height: 2.75rem;
}
@media (min-width: 20rem) {
  .file .file_name {
    line-height: calc(2.625rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file .file_name {
    line-height: 2.625rem;
  }
}
@media (min-width: 20rem) {
  .file .file_name {
    height: calc(2.75rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file .file_name {
    height: 2.75rem;
  }
}
.file .file_button {
  border-radius: 0 0 0 0;
  flex: 1 0 auto;
  padding: 0 1.5em;
  z-index: 10;
  background: #fff;
  border: 0.0625rem solid #de2e25;
  color: #000000;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms;
  user-select: none;
}
.file .file_button > span {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 2.625rem;
}
@media (min-width: 20rem) {
  .file .file_button > span {
    min-height: calc(2.625rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file .file_button > span {
    min-height: 2.625rem;
  }
}
.file .file_button .icon {
  fill: #005090;
  flex-shrink: 0;
  height: 1rem;
  margin-left: 0.75em;
  transition: fill 300ms;
  width: 1rem;
}
.file .file_button .icon svg {
  display: block;
}
.file .file_button .text {
  font-weight: 700;
  padding: 0.375em 0;
  transition: color 300ms;
}
.file .file_button > span {
  min-height: 2.625rem;
}
@media (min-width: 20rem) {
  .file .file_button > span {
    min-height: calc(2.625rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file .file_button > span {
    min-height: 2.625rem;
  }
}
.file .file_button.focus {
  background: #005090;
  border-color: #de2e25;
  color: #fff;
}
.file .file_button.focus .icon {
  fill: #fff;
}
.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.75rem;
}
@media (min-width: 20rem) {
  .file [type=file] {
    height: calc(2.75rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file [type=file] {
    height: 2.75rem;
  }
}
.file [type=file]:hover ~ .file_button {
  background: #005090;
  border-color: #de2e25;
  color: #fff;
}
.file [type=file]:hover ~ .file_button .icon {
  fill: #fff;
}
.file [type=file]:active ~ .file_button {
  background: #000000;
  border: 0.0625rem solid #de2e25;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms;
  user-select: none;
}
.file [type=file]:active ~ .file_button > span {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 2.625rem;
}
@media (min-width: 20rem) {
  .file [type=file]:active ~ .file_button > span {
    min-height: calc(2.625rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file [type=file]:active ~ .file_button > span {
    min-height: 2.625rem;
  }
}
.file [type=file]:active ~ .file_button .icon {
  fill: #fff;
  flex-shrink: 0;
  height: 1rem;
  margin-left: 0.75em;
  transition: fill 300ms;
  width: 1rem;
}
.file [type=file]:active ~ .file_button .icon svg {
  display: block;
}
.file [type=file]:active ~ .file_button .text {
  font-weight: 700;
  padding: 0.375em 0;
  transition: color 300ms;
}

@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.75rem;
}
@media (min-width: 20rem) {
  button {
    height: calc(2.75rem + 0 * (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 .wrap-top {
  background: #005090;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: box-shadow 300ms;
  z-index: 10;
}
header .wrap-top .wrap-flex {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
header .wrap-top .functions {
  align-items: center;
  display: flex;
  position: relative;
  transition: padding 300ms;
  padding-bottom: 0.855em;
  padding-top: 0.855em;
}
@media (min-width: 20rem) {
  header .wrap-top .functions {
    padding-bottom: calc(0.855em + 1.395 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  header .wrap-top .functions {
    padding-bottom: 2.25em;
  }
}
@media (min-width: 20rem) {
  header .wrap-top .functions {
    padding-top: calc(0.855em + 1.395 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  header .wrap-top .functions {
    padding-top: 2.25em;
  }
}
@media (min-width: 75rem) {
  header .wrap-top .functions {
    padding-bottom: calc(1.65em + 0.6 * (100vw - 75rem) / (18.75));
  }
}
@media (min-width: 93.75rem) {
  header .wrap-top .functions {
    padding-bottom: 2.25em;
  }
}
@media (min-width: 75rem) {
  header .wrap-top .functions {
    padding-top: calc(1.65em + 0.6 * (100vw - 75rem) / (18.75));
  }
}
@media (min-width: 93.75rem) {
  header .wrap-top .functions {
    padding-top: 2.25em;
  }
}
@media (min-width: 100rem) {
  header .wrap-top .functions {
    right: calc(0rem + -8.75 * (100vw - 100rem) / (20));
  }
}
@media (min-width: 120rem) {
  header .wrap-top .functions {
    right: -8.75rem;
  }
}
header .wrap-top .functions .toggle_search_box {
  display: none;
}
@media (min-width: 35rem) {
  header .wrap-top .functions .toggle_search_box {
    display: block;
  }
}
header .wrap-bottom {
  position: relative;
  height: 25rem;
}
@media (min-width: 20rem) {
  header .wrap-bottom {
    height: calc(25rem + 25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  header .wrap-bottom {
    height: 50rem;
  }
}
header .wrap-bottom .container {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
header .wrap-bottom .wrap-flex {
  align-items: flex-end;
  display: flex;
  height: 100%;
}
header .wrap-bottom .wrap-sitetitle {
  position: relative;
  z-index: 1;
  max-width: 100%;
  padding-bottom: 0.75em;
  padding-top: 0.75em;
}
@media (min-width: 20rem) {
  header .wrap-bottom .wrap-sitetitle {
    padding-bottom: calc(0.75em + 1.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  header .wrap-bottom .wrap-sitetitle {
    padding-bottom: 2.25em;
  }
}
@media (min-width: 20rem) {
  header .wrap-bottom .wrap-sitetitle {
    padding-top: calc(0.75em + 1.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  header .wrap-bottom .wrap-sitetitle {
    padding-top: 2.25em;
  }
}
@media (min-width: 47.5rem) {
  header .wrap-bottom .wrap-sitetitle {
    margin-bottom: 9em;
    padding-right: 1.25rem;
  }
}
@media (min-width: 47.5rem) and (min-width: 20rem) {
  header .wrap-bottom .wrap-sitetitle {
    padding-right: calc(1.25rem + 1.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 47.5rem) and (min-width: 93.75rem) {
  header .wrap-bottom .wrap-sitetitle {
    padding-right: 3.125rem;
  }
}
header .wrap-bottom .wrap-sitetitle:before {
  background: #005090;
  bottom: 0;
  content: "";
  display: block;
  left: -624.9375rem;
  position: absolute;
  right: -62.4375rem;
  top: 0;
  z-index: -1;
}
@media (min-width: 47.5rem) {
  header .wrap-bottom .wrap-sitetitle:before {
    right: 0;
  }
}

body.scrolled_down header .wrap-top {
  box-shadow: 0 0 1.25rem rgba(0, 38, 68, 0.6);
}
body.scrolled_down header .wrap-top .functions {
  padding-bottom: 0.855em;
  padding-top: 0.855em;
}
@media (min-width: 20rem) {
  body.scrolled_down header .wrap-top .functions {
    padding-bottom: calc(0.855em + 0.795 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  body.scrolled_down header .wrap-top .functions {
    padding-bottom: 1.65em;
  }
}
@media (min-width: 20rem) {
  body.scrolled_down header .wrap-top .functions {
    padding-top: calc(0.855em + 0.795 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  body.scrolled_down header .wrap-top .functions {
    padding-top: 1.65em;
  }
}
@media (min-width: 75rem) {
  body.scrolled_down header .wrap-top .functions {
    padding-bottom: calc(0.9em + 0.6 * (100vw - 75rem) / (18.75));
  }
}
@media (min-width: 93.75rem) {
  body.scrolled_down header .wrap-top .functions {
    padding-bottom: 1.5em;
  }
}
@media (min-width: 75rem) {
  body.scrolled_down header .wrap-top .functions {
    padding-top: calc(0.9em + 0.6 * (100vw - 75rem) / (18.75));
  }
}
@media (min-width: 93.75rem) {
  body.scrolled_down header .wrap-top .functions {
    padding-top: 1.5em;
  }
}

body.startpage header .wrap-sitetitle {
  max-width: 44.1875rem;
  padding-right: 1.125em;
}
@media (min-width: 20rem) {
  body.startpage header .wrap-sitetitle {
    padding-right: calc(1.125em + 2.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  body.startpage header .wrap-sitetitle {
    padding-right: 3.75em;
  }
}
body.startpage header .wrap-sitetitle .headline {
  max-width: 15.625rem;
}
@media (min-width: 20rem) {
  body.startpage header .wrap-sitetitle .headline {
    max-width: calc(15.625rem + 0 * (100vw - 20rem) / (14.9375));
  }
}
@media (min-width: 34.9375rem) {
  body.startpage header .wrap-sitetitle .headline {
    max-width: calc(15.625rem + 28.5625 * (100vw - 34.9375rem) / (0.0625));
  }
}
@media (min-width: 35rem) {
  body.startpage header .wrap-sitetitle .headline {
    max-width: 44.1875rem;
  }
}
body.startpage header .wrap-sitetitle .headline .line2 {
  display: inline-block;
  margin-top: 0.625rem;
}
@media (min-width: 20rem) {
  body.startpage header .wrap-sitetitle .headline .line2 {
    margin-top: calc(0.625rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  body.startpage header .wrap-sitetitle .headline .line2 {
    margin-top: 1.25rem;
  }
}
@media (min-width: 47.5rem) {
  body.startpage header .wrap-sitetitle {
    margin-bottom: 14.375rem;
  }
}
@media (min-width: 75rem) {
  body.startpage header .wrap-sitetitle {
    max-width: 63.125rem;
  }
  body.startpage header .wrap-sitetitle .headline {
    max-width: 63.125rem;
  }
}
body.startpage header .wrap-bottom {
  height: 37.5rem;
}
@media (min-width: 20rem) {
  body.startpage header .wrap-bottom {
    height: calc(37.5rem + 20.3125 * (100vw - 20rem) / (27.5));
  }
}
@media (min-width: 47.5rem) {
  body.startpage header .wrap-bottom {
    height: 57.8125rem;
  }
}
@media (min-width: 61.875rem) {
  body.startpage header .wrap-bottom {
    height: 100vh;
  }
}

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

.header_background {
  background-color: #e7e7e9;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.startpage .header_background {
  top: 3.125rem;
  bottom: 6.25rem;
}
@media (min-width: 47.5rem) {
  .startpage .header_background {
    bottom: 0;
  }
}
@media (min-width: 93.75rem) {
  .startpage .header_background {
    top: 6.25rem;
  }
}

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

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

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

.infolist_download {
  align-items: baseline;
  background: #e7e7e9;
  border-radius: 0;
  color: #000000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1.5em;
  padding: 1.5em;
}
.infolist_download .infolist_title {
  font-weight: 700;
}
.infolist_download p {
  margin-right: 1.5em;
}

/* 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 {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.infolist_top_link a:hover .icon, .infolist_top_link a:focus .icon {
  fill: #de2e25;
  transform: translateY(-0.625rem) rotate(-90deg);
}
.infolist_top_link .icon {
  display: block;
  fill: #005090;
  height: 2rem;
  transform: rotate(-90deg);
  width: 2rem;
  margin-bottom: 0.75em;
  transition: all 300ms;
}

/* 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 main,
.infolist_faq main,
.infolist_text main {
  max-width: 60.375rem;
  margin: 0 auto;
}

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

.infolist_cta_style, .infolist_cta {
  align-items: center;
  background: #005090;
  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(0, 80, 144, 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: #e7e7e9;
  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('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10" width="10" height="10"><rect height="7" width="7" x="0" y="1" fill="%23de2e25"/></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('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10" width="10" height="10"><rect height="7" width="7" x="0" y="1" fill="%23de2e25"/></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: #e7e7e9;
  color: #005090;
  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: #005090;
  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: #dfdfe2;
}
.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(0, 80, 144, 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;
}

.infolist_overview .entry {
  margin-bottom: 1.5625rem;
  flex-grow: 1;
  border: 0.0625rem solid #de2e25;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  height: 100%;
  text-decoration: none;
  padding: 0.9375rem;
  gap: 0.9375rem;
  transition: all 300ms;
}
@media (min-width: 20rem) {
  .infolist_overview .entry {
    margin-bottom: calc(1.5625rem + 1.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .infolist_overview .entry {
    margin-bottom: 3.125rem;
  }
}
@media (min-width: 20rem) {
  .infolist_overview .entry {
    padding: calc(0.9375rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .infolist_overview .entry {
    padding: 1.5625rem;
  }
}
@media (min-width: 20rem) {
  .infolist_overview .entry {
    gap: calc(0.9375rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .infolist_overview .entry {
    gap: 1.5625rem;
  }
}
.infolist_overview .entry:hover, .infolist_overview .entry:focus {
  transform: scale(1.05);
}
.infolist_overview .entry:hover .icon, .infolist_overview .entry:focus .icon {
  transform: translateX(0.75em);
  fill: #de2e25;
}
.infolist_overview .entry .text_wrapper {
  flex-grow: 1;
}
.infolist_overview .entry .title {
  padding-top: 0;
  color: #000000;
  text-decoration: none;
}
.infolist_overview .entry p {
  margin-bottom: 0;
}
.infolist_overview .entry .icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.375rem;
  fill: #005090;
  flex-shrink: 0;
  transition: transform 300ms, fill 300ms;
}
@media (min-width: 20rem) {
  .infolist_overview .entry .icon {
    width: calc(1.5rem + 0.6875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .infolist_overview .entry .icon {
    width: 2.1875rem;
  }
}
@media (min-width: 20rem) {
  .infolist_overview .entry .icon {
    height: calc(1.5rem + 0.6875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .infolist_overview .entry .icon {
    height: 2.1875rem;
  }
}
.infolist_overview .entry .icon svg {
  display: block;
}

/* 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: 0.0625rem solid #de2e25;
  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: #005090;
}
.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: #e7e7e9;
  border: 0.0625rem solid #de2e25;
  border-radius: 0;
  color: #000000;
  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.4);
  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/karrierepaket_icon_text.scss */

.kpt_icon_text_entry {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  justify-content: flex-start;
  margin-bottom: 0.75em;
}
.kpt_icon_text_entry.vertical_center {
  align-items: center;
}
.kpt_icon_text_entry .title {
  margin: 0;
  padding-top: 0;
  text-transform: uppercase;
  font-weight: 700;
}
.kpt_icon_text_entry p {
  margin: 0;
}
.kpt_icon_text_entry .icon {
  display: block;
  fill: #000000;
  flex-shrink: 0;
  height: 3.125rem;
  line-height: 0;
  margin-right: 0.75em;
  width: 3.125rem;
  padding: 0.5rem;
  flex-wrap: wrap;
}
.startpage .kpt_icon_text_entry .text_wrapper {
  display: flex;
  gap: 0.3125rem;
  flex-wrap: wrap;
}
.startpage .kpt_icon_text_entry .text_wrapper .addition {
  display: inline-block;
}

.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: #000000;
  height: 5.625rem;
  margin: 0 0 0.75em 0;
  width: 6.875rem;
}

.icon_text_background .kpt_icon_text_entry {
  background-color: #005090;
  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: #fff;
}
.icon_text_background .kpt_icon_text_entry .text_wrapper * {
  color: #fff;
}
.icon_text_background.icon_text_center .icon_text_entry .icon {
  margin-bottom: 0.75em;
  padding: 0;
}

/* 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;
}

main {
  padding-top: 1.5625rem;
  padding-bottom: 1.5625rem;
}
@media (min-width: 20rem) {
  main {
    padding-top: calc(1.5625rem + 4.6875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  main {
    padding-top: 6.25rem;
  }
}
@media (min-width: 20rem) {
  main {
    padding-bottom: calc(1.5625rem + 4.6875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  main {
    padding-bottom: 6.25rem;
  }
}
.startpage main {
  padding: 0;
}

.section_padding {
  padding-top: 1.5625rem;
  padding-bottom: 1.5625rem;
}
@media (min-width: 20rem) {
  .section_padding {
    padding-top: calc(1.5625rem + 4.6875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .section_padding {
    padding-top: 6.25rem;
  }
}
@media (min-width: 20rem) {
  .section_padding {
    padding-bottom: calc(1.5625rem + 4.6875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .section_padding {
    padding-bottom: 6.25rem;
  }
}

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

.section_padding_bottom {
  padding-bottom: 1.5625rem;
}
@media (min-width: 20rem) {
  .section_padding_bottom {
    padding-bottom: calc(1.5625rem + 4.6875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .section_padding_bottom {
    padding-bottom: 6.25rem;
  }
}

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

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

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

.intro {
  max-width: 60.375rem;
  margin: 0 auto;
  text-align: center;
  hyphens: none;
}

.blue_bg {
  background: #005090;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-right: 1.25rem;
  position: relative;
}
@media (min-width: 20rem) {
  .blue_bg {
    padding-top: calc(1.25rem + 1.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .blue_bg {
    padding-top: 3.125rem;
  }
}
@media (min-width: 20rem) {
  .blue_bg {
    padding-bottom: calc(1.25rem + 1.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .blue_bg {
    padding-bottom: 3.125rem;
  }
}
@media (min-width: 20rem) {
  .blue_bg {
    padding-right: calc(1.25rem + 1.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .blue_bg {
    padding-right: 3.125rem;
  }
}
.blue_bg * {
  color: #fff;
  fill: #fff;
}
.blue_bg:before {
  background: #005090;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  right: 100%;
}

.liste_leistungen h4 {
  margin: 0;
  padding-top: 1em;
  color: #005090;
}

.headline.center {
  text-align: center;
}
.headline.section_padding_top h2 {
  padding-top: 0;
}

.uid_check {
  border: 0.0625rem solid #de2e25;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  max-width: 25rem;
  flex-grow: 1;
  text-decoration: none;
  padding: 0.9375rem;
  gap: 0.9375rem;
  transition: all 300ms;
}
@media (min-width: 20rem) {
  .uid_check {
    padding: calc(0.9375rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .uid_check {
    padding: 1.5625rem;
  }
}
@media (min-width: 20rem) {
  .uid_check {
    gap: calc(0.9375rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .uid_check {
    gap: 1.5625rem;
  }
}
.uid_check:hover, .uid_check:focus {
  transform: scale(1.05);
}
.uid_check:hover .icon, .uid_check:focus .icon {
  transform: translateX(0.75em);
  fill: #de2e25;
}
.uid_check .title {
  padding-top: 0;
  margin: 0;
}
.uid_check .icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.375rem;
  fill: #005090;
  flex-shrink: 0;
  transition: transform 300ms, fill 300ms;
}
@media (min-width: 20rem) {
  .uid_check .icon {
    width: calc(1.5rem + 0.6875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .uid_check .icon {
    width: 2.1875rem;
  }
}
@media (min-width: 20rem) {
  .uid_check .icon {
    height: calc(1.5rem + 0.6875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .uid_check .icon {
    height: 2.1875rem;
  }
}
.uid_check .icon svg {
  display: block;
}

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

.newsletter_quick_subscribe form {
  display: block;
}
@media (min-width: 30rem) {
  .newsletter_quick_subscribe form {
    align-items: flex-end;
    display: flex;
  }
}
.newsletter_quick_subscribe .required_asterisk {
  color: #fff;
}
.newsletter_quick_subscribe .entry {
  min-width: 17.8125rem;
}
.newsletter_quick_subscribe input[type=email] {
  appearance: none;
  margin: 0;
  width: 100%;
  border-color: #de2e25;
}
@media (min-width: 30rem) {
  .newsletter_quick_subscribe input[type=email] {
    border-right: 0 !important;
  }
}
.newsletter_quick_subscribe .button {
  margin-bottom: 0;
  width: 100%;
}
.newsletter_quick_subscribe .button .text {
  color: #fff !important;
}
@media (min-width: 30rem) {
  .newsletter_quick_subscribe .button {
    flex-shrink: 0;
    margin: 0;
    width: auto;
  }
}

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

.toggle_offcanvas_menu {
  display: block;
  margin-left: 1.125em;
  position: relative;
}
@media (min-width: 75rem) {
  .toggle_offcanvas_menu {
    display: none;
  }
}
.toggle_offcanvas_menu .open_btn {
  align-items: center;
  background: #de2e25;
  cursor: pointer;
  display: inline-flex;
  height: 2.75rem;
  padding: 0;
  position: relative;
  user-select: none;
  width: 2.75rem;
  z-index: 10;
}
.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.3125rem;
  margin: 0;
  position: relative;
  width: 1.875rem;
}
.toggle_offcanvas_menu .open_btn .icon .line {
  background: #fff;
  display: block;
  height: 0.1875rem;
  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: calc(50% - (0.1875rem / 2));
}
.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(0, 0, 0, 0.65);
  min-width: 100%;
}
.offcanvas_menu .menu_wrapper {
  align-items: flex-start;
  background: #005090;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: absolute;
  transition: all 300ms ease-in-out;
  width: 15.625rem;
  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: 0.75em 0.75em 0 0.75em;
  display: inline-flex;
}
.offcanvas_menu .close_btn .icon {
  height: 1.3125rem !important;
  margin: 0 0.75em 0 0 !important;
  position: relative;
  width: 1.875rem !important;
}
.offcanvas_menu .close_btn .icon .line {
  background: #fff;
  display: block;
  height: 0.1875rem;
  position: absolute;
  top: 50%;
  transition: background 300ms;
  width: 100%;
}
.offcanvas_menu .close_btn .icon .line_1 {
  opacity: 1;
  transition: background 300ms, top 300ms, transform 300ms;
  visibility: visible;
  transform: translateY(-50%) rotate(45deg);
}
.offcanvas_menu .close_btn .icon .line_2 {
  top: 50%;
  transition: background 300ms, bottom 300ms, transform 300ms;
  transform: translateY(-50%) rotate(-45deg);
}
.offcanvas_menu .close_btn:focus, .offcanvas_menu .close_btn:hover {
  background: #fff;
}
.offcanvas_menu .close_btn:focus .text, .offcanvas_menu .close_btn:hover .text {
  color: #000000;
}
.offcanvas_menu .close_btn:focus .icon .line, .offcanvas_menu .close_btn:hover .icon .line {
  background: #005090;
}
.offcanvas_menu .navigation {
  padding: 0.75em 0;
  margin-top: 1.5em;
  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 > a {
  color: #fff;
  display: flex;
  flex-direction: row;
  outline-color: #fff;
  padding: 0.75em 0.75em;
  text-decoration: none;
}
.offcanvas_menu .navigation > ul > li > a .icon {
  display: block;
  fill: #fff;
  height: 1rem;
  margin-left: 0.75em;
  transition: fill 300ms;
  width: 1rem;
}
.offcanvas_menu .navigation > ul > li > a .icon svg {
  display: block;
}
.offcanvas_menu .navigation > ul > li > a.active, .offcanvas_menu .navigation > ul > li > a:focus, .offcanvas_menu .navigation > ul > li > a:hover {
  color: #fff;
  font-weight: 700;
}
.offcanvas_menu .navigation > ul > li:last-child > a {
  align-items: center;
  border: 0.0625rem solid #de2e25;
  margin: 0.75em;
  transition: background 300ms;
  display: inline-flex;
}
.offcanvas_menu .navigation > ul > li:last-child > a .text {
  transition: color 300ms;
}
.offcanvas_menu .navigation > ul > li:last-child > a.active, .offcanvas_menu .navigation > ul > li:last-child > a:focus, .offcanvas_menu .navigation > ul > li:last-child > a:hover {
  background: #fff;
}
.offcanvas_menu .navigation > ul > li:last-child > a.active .text, .offcanvas_menu .navigation > ul > li:last-child > a:focus .text, .offcanvas_menu .navigation > ul > li:last-child > a:hover .text {
  color: #000000;
  font-weight: 400;
}
.offcanvas_menu .navigation > ul > li:last-child > a.active .icon, .offcanvas_menu .navigation > ul > li:last-child > a:focus .icon, .offcanvas_menu .navigation > ul > li:last-child > a:hover .icon {
  fill: #005090;
}
.offcanvas_menu .navigation > ul li.expanded > ul {
  display: block;
}
.offcanvas_menu .navigation > ul ul {
  background: #fff;
}
.offcanvas_menu .navigation > ul ul li:first-child {
  padding-top: 1.125em;
}
.offcanvas_menu .navigation > ul ul li:last-child {
  margin-bottom: 1.5em;
}
.offcanvas_menu .navigation > ul ul a {
  color: #000000;
  display: block;
  hyphens: none;
  padding: 0.375em 0.75em;
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
}
.offcanvas_menu .navigation > ul ul a > span {
  align-items: center;
  display: flex;
}
.offcanvas_menu .navigation > ul ul a .icon {
  display: block;
  fill: #000000;
  height: 0.75rem;
  margin-left: 0.75em;
  opacity: 0;
  transform: translateX(-0.5em);
  transition: 300ms;
  visibility: hidden;
  width: 0.75rem;
}
.offcanvas_menu .navigation > ul ul a .icon svg {
  display: block;
}
.offcanvas_menu .navigation > ul ul a.active {
  color: #005090;
}
.offcanvas_menu .navigation > ul ul a:focus .text, .offcanvas_menu .navigation > ul ul a:hover .text {
  font-weight: 400;
}
.offcanvas_menu .navigation > ul ul a:focus .icon, .offcanvas_menu .navigation > ul ul a:hover .icon {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}
.offcanvas_menu .functions {
  margin: 0 0.75em;
}
@media (min-width: 35rem) {
  .offcanvas_menu .functions {
    display: none;
  }
}

/* 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;
}

.onlinetool_v2_overview .entry {
  margin-bottom: 1.5em;
}
@media (min-width: 47.5rem) {
  .onlinetool_v2_overview .entry {
    margin-bottom: 0;
  }
}

.popup_overlay,
.popup_overlay_v2 {
  -webkit-backdrop-filter: blur(0.125rem);
  backdrop-filter: blur(0.125rem);
  background: rgba(0, 0, 0, 0.65);
  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: #005090;
  border-radius: 0 0 0 0;
  cursor: pointer;
  display: flex;
  float: right;
  justify-content: center;
  margin-right: 0.0625rem;
  padding: 0.4275em;
  text-align: center;
  height: 2.75rem;
  width: 2.75rem;
}
@media (min-width: 20rem) {
  .popup_close {
    height: calc(2.75rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .popup_close {
    height: 2.75rem;
  }
}
@media (min-width: 20rem) {
  .popup_close {
    width: calc(2.75rem + 0 * (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.4);
  left: 0;
  position: absolute;
  right: 0;
  top: 2.75rem;
}
@media (min-width: 20rem) {
  .popup_content .content {
    top: calc(2.75rem + 0 * (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 .map {
  height: 21.875rem;
  background-color: #e7e7e9;
  cursor: move;
  position: relative;
  width: 100%;
}
@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(231, 231, 233, 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 .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;
}
@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: #fff;
  border: 0.0625rem solid #de2e25;
  border-radius: 0;
  color: #000000;
  display: inline-flex;
  font-weight: 700;
  height: 2.75rem;
  justify-content: center;
  margin: 0;
  padding: 0;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms;
  user-select: none;
  width: 2.75rem;
}
.open_street_map .ol-overlaycontainer-stopevent button:focus {
  background: #005090;
  border: 0.0625rem solid #de2e25;
  color: #fff;
  outline: 0;
}
.open_street_map .ol-overlaycontainer-stopevent button:hover {
  background: #005090;
  border: 0.0625rem solid #de2e25;
  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.3125rem;
  z-index: 5;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-zoom-in {
  line-height: 1;
  top: 0.3125rem;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-zoom-out {
  line-height: 1;
  top: 3.375rem;
}
.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: 5;
}
.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.875rem;
  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: 87.5%;
  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: #005090;
  padding: 2.25em;
}
.opening_times * {
  color: #fff;
}
.opening_times .entries {
  column-gap: 2.25em;
  display: flex;
  flex-wrap: wrap;
}

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

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

.nohyphens {
  hyphens: none;
}

.hideme {
  display: none !important;
}

::selection {
  background: #00345d;
  color: #fff;
}

* {
  -webkit-tap-highlight-color: rgba(0, 80, 144, 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: #000000;
  font-family: "Open Sans", 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.75rem + 1.25 * (100vw - 20rem) / (73.75)) * 0);
  font-size: 1.75rem;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  line-height: 1.38;
  margin: 0;
  padding: 0;
  word-wrap: break-word;
  word-break: normal;
  text-wrap: balance;
}
@media (min-width: 93.75rem) {
  h1,
.style_h1,
[data-otool-headlinestyling=style_h1] .ot_headline {
    letter-spacing: calc(3rem * 0);
  }
}
@media (min-width: 20rem) {
  h1,
.style_h1,
[data-otool-headlinestyling=style_h1] .ot_headline {
    font-size: calc(1.75rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  h1,
.style_h1,
[data-otool-headlinestyling=style_h1] .ot_headline {
    font-size: 3rem;
  }
}

h2,
.style_h2,
[data-otool-headlinestyling=style_h2] .ot_headline,
.ot_headline {
  letter-spacing: calc((1.25rem + 0.25 * (100vw - 20rem) / (73.75)) * 0);
  font-size: 1.25rem;
  color: #005090;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 0.75em;
  padding-top: 0.75em;
  text-transform: uppercase;
}
@media (min-width: 93.75rem) {
  h2,
.style_h2,
[data-otool-headlinestyling=style_h2] .ot_headline,
.ot_headline {
    letter-spacing: calc(1.5rem * 0);
  }
}
@media (min-width: 20rem) {
  h2,
.style_h2,
[data-otool-headlinestyling=style_h2] .ot_headline,
.ot_headline {
    font-size: calc(1.25rem + 0.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  h2,
.style_h2,
[data-otool-headlinestyling=style_h2] .ot_headline,
.ot_headline {
    font-size: 1.5rem;
  }
}

h3,
.style_h3,
[data-otool-headlinestyling=style_h3] .ot_headline {
  letter-spacing: calc((1rem + 0.25 * (100vw - 20rem) / (73.75)) * 0);
  font-size: 1rem;
  color: #000000;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  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.25rem * 0);
  }
}
@media (min-width: 20rem) {
  h3,
.style_h3,
[data-otool-headlinestyling=style_h3] .ot_headline {
    font-size: calc(1rem + 0.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  h3,
.style_h3,
[data-otool-headlinestyling=style_h3] .ot_headline {
    font-size: 1.25rem;
  }
}

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: #000000;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 0.75em;
  padding-top: 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: #000000;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 0.75em;
  padding-top: 0.75em;
}
@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: #000000;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 0.75em;
  padding-top: 0.75em;
}
@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: #000000;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 1.5em;
}
@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;
  }
}

a {
  color: #000000;
  text-decoration: underline;
  transition: color 300ms;
}
a:active, a.active {
  color: #005090;
  outline: 0;
}
a:focus-visible {
  outline: 0.125rem solid #000000;
  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: #000000;
  display: block;
  text-decoration: none;
}
a.touch_link .title {
  color: #005090;
  display: inline-block;
  margin-bottom: 0.375em;
  outline-offset: 0;
  padding: 0;
  text-decoration: underline;
  transition: color 300ms;
}
a.touch_link .title.active {
  color: #000000;
}
a.touch_link:focus {
  outline: 0;
}
a.touch_link:focus .title {
  outline: 0.125rem solid #000000;
  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: 87.5%;
}

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

sub {
  bottom: -0.125rem;
  font-size: 87.5%;
  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: 0.0625rem solid #e7e7e9;
  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: 0.0625rem solid #e7e7e9;
  padding: 0.4995em;
  transition: background 300ms;
  vertical-align: top;
}

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

ol {
  counter-reset: list;
  list-style: none;
  margin: 0 0 1.5em;
  padding: 0;
}
ol > li {
  padding-left: 1.5em;
  position: relative;
}
ol > li:before {
  color: #005090;
  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('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10" width="10" height="10"><rect height="9" width="9" x="0" y="0" fill="%23de2e25"/></svg>');
  margin: 0 0 1.5em;
  padding-left: 1.125em;
}
ul > li {
  padding-left: 0.375em;
}
ul ol, ul ul {
  margin: 0;
}

.defined_list dl {
  border-bottom: 0.0625rem solid #e7e7e9;
  margin: 0.75em 0;
}
@media (min-width: 35rem) {
  .defined_list dl {
    display: flex;
    flex-wrap: wrap;
  }
}
.defined_list dt {
  border-top: 0.0625rem solid #e7e7e9;
  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 #e7e7e9;
    flex: 0 0 60%;
    max-width: 60%;
    padding: 0.75em 0.4995em 0 0;
  }
}
.defined_list dd p {
  margin: 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: 87.5%;
  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;
}
@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;
  }
}

.ot_input_units input::placeholder {
  opacity: 0.7;
}

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

:root {
  --ot-main-color: #005090;
  --ot-secondary-color: #005090;
  --ot-contrast-main-color: #fff;
  --ot-contrast-secondary-color: #fff;
  --ot-selection-contrast: #00345d;
  --ot-rgba-main-01: rgba(0, 80, 144, 0.1);
  --ot-rgba-main-02: rgba(0, 80, 144, 0.2);
  --ot-rgba-main-05: rgba(0, 80, 144, 0.5);
  --ot-rgba-main-08: rgba(0, 80, 144, 0.8);
  --ot-rgba-secondary-01: rgba(0, 80, 144, 0.1);
  --ot-rgba-secondary-02: rgba(0, 80, 144, 0.2);
  --ot-lighten-main-30: #2aa0ff;
  --ot-main-color-darken-40: black;
  --ot-button-color: #fff;
  --ot-button-active-color: #e6e6e6;
  --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: 0.0625rem;
  --ot-border-radius: 0;
  --ot-button-height-min: 2.75rem;
  --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: #000000;
  --ot-bg-color: #e7e7e9;
  --ot-border-color: #de2e25;
  --ot-okay-color: #96ca67;
  --ot-okay-bg-color: #ecf6e4;
  --ot-error-text-color: #de2e25;
  --ot-error-bg-color: #f6ecec;
  --ot-error-border-color: #005090;
  --ot-popup-overlay-color: rgba(0, 0, 0, 0.65);
  --ot-shadow-color: rgba(0, 0, 0, 0.4);
  --ot-font-family-headline: Open Sans, sans-serif;
  --ot-font-family: Open Sans, 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: 3rem;
  --ot-font-size-h1-min: 1.75rem;
  --ot-font-weight-h1: 700;
  --ot-letter-spacing-h1: 0%;
  --ot-line-height-h1: 1.38;
  --ot-text-color-h1: #fff;
  --ot-font-size-h2-max: 1.5rem;
  --ot-font-size-h2-min: 1.25rem;
  --ot-font-weight-h2: 700;
  --ot-letter-spacing-h2: 0%;
  --ot-line-height-h2: 1.35;
  --ot-text-color-h2: #005090;
  --ot-font-size-h3-max: 1.25rem;
  --ot-font-size-h3-min: 1rem;
  --ot-font-weight-h3: 700;
  --ot-letter-spacing-h3: 0%;
  --ot-line-height-h3: 1.35;
  --ot-text-color-h3: #000000;
  --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: #000000;
  --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: #000000;
  --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: #000000;
  --ot-font-size-legend-max: 1.25rem;
  --ot-font-size-legend-min: 1rem;
  --ot-font-weight-legend: 700;
  --ot-letter-spacing-legend: 0%;
  --ot-line-height-legend: 1.35;
  --ot-text-color-legend: #000000;
  --ot-font-size-bigger: 112.5%;
  --ot-font-size-biggest: 162.5%;
  --ot-font-size-smaller: 87.5%;
  --ot-spacing: 1.5em;
  --ot-box-shadow-width: 0.1875rem;
  --ot-input-border-width: 0.0625rem;
  --ot-input-bg-color: #fff;
  --ot-input-border-color: #b2b2b8;
  --ot-input-text-color: #000000;
  --ot-input-focus-bg-color: #fff;
  --ot-input-focus-border-color: #005090;
  --ot-input-focus-text-color: #000000;
  --ot-button-bg-color: #fff;
  --ot-button-border-color: #de2e25;
  --ot-button-text-color: #000000;
  --ot-button-hover-bg-color: #005090;
  --ot-button-hover-border-color: #de2e25;
  --ot-button-hover-text-color: #fff;
  --ot-button-focus-bg-color: #005090;
  --ot-button-focus-border-color: #de2e25;
  --ot-button-focus-text-color: #fff;
  --ot-button-active-bg-color: #000000;
  --ot-button-active-border-color: #de2e25;
  --ot-button-active-text-color: #fff;
  --ot-button-disabled-bg-color: #e7e7e9;
  --ot-button-disabled-border-color: #dadadd;
  --ot-button-disabled-text-color: gray;
}

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

.preloader {
  display: block;
  position: relative;
}
.preloader .icon_spin {
  animation: preloader_rotate 900ms linear infinite;
  display: block;
  fill: #de2e25;
  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/search.scss */

form[role=search] {
  display: flex;
}
form[role=search] button {
  border-radius: 0 0 0 0;
  flex-grow: 0;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  background: #fff;
  border: 0.0625rem solid #de2e25;
  color: #000000;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms;
  user-select: none;
  height: 2.75rem;
  width: 2.75rem;
}
form[role=search] button > span {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 2.625rem;
}
@media (min-width: 20rem) {
  form[role=search] button > span {
    min-height: calc(2.625rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  form[role=search] button > span {
    min-height: 2.625rem;
  }
}
form[role=search] button .icon {
  fill: #005090;
  flex-shrink: 0;
  height: 1rem;
  margin-left: 0.75em;
  transition: fill 300ms;
  width: 1rem;
}
form[role=search] button .icon svg {
  display: block;
}
form[role=search] button .text {
  font-weight: 700;
  padding: 0.375em 0;
  transition: color 300ms;
}
@media (min-width: 20rem) {
  form[role=search] button {
    height: calc(2.75rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  form[role=search] button {
    height: 2.75rem;
  }
}
@media (min-width: 20rem) {
  form[role=search] button {
    width: calc(2.75rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  form[role=search] button {
    width: 2.75rem;
  }
}
form[role=search] button > span {
  min-height: 2.625rem;
}
@media (min-width: 20rem) {
  form[role=search] button > span {
    min-height: calc(2.625rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  form[role=search] button > span {
    min-height: 2.625rem;
  }
}
form[role=search] button[disabled] {
  background-color: #e7e7e9;
  border-color: #dadadd;
  color: gray;
}
form[role=search] button[disabled] .icon {
  fill: #000000;
}
form[role=search] button > span {
  width: 100%;
}
form[role=search] button:focus {
  position: relative;
  z-index: 10;
  background: #005090;
  border-color: #de2e25;
  color: #fff;
}
form[role=search] button:focus .icon {
  fill: #fff;
}
form[role=search] button .icon {
  height: 1.5rem !important;
  margin: 0 !important;
  width: 1.5rem !important;
}

input[type=search] {
  -moz-appearance: none;
  -webkit-appearance: none;
  background: #fff;
  border: 0.0625rem solid #b2b2b8;
  border-radius: 0 0 0 0;
  border-right: 0 !important;
  color: #000000;
  flex-basis: 100%;
  margin: 0;
  padding: 0 0.75em;
  transition: background 300ms, border-color 300ms, box-shadow 300ms, color 300ms, outline 300ms, z-index 300ms;
  height: 2.75rem;
}
@media (min-width: 20rem) {
  input[type=search] {
    height: calc(2.75rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  input[type=search] {
    height: 2.75rem;
  }
}
input[type=search]:focus {
  background: #fff;
  border-color: #005090;
  box-shadow: 0 0 0 0.1875rem rgba(0, 80, 144, 0.2);
  color: #000000;
  outline: 0;
  position: relative;
  z-index: 10;
}
input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-results-button, input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

.search dl {
  margin: 0 0 0.75em;
  padding-top: 0.375em;
}
.search dl br,
.search dl em,
.search dl img {
  display: none;
}
.search dd {
  margin: 0;
}
.search .count + .pages {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.search .count + .pages a {
  text-decoration: none;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.375em 0.375em 0.375em 0;
  background: #000000;
  white-space: nowrap;
  color: #fff;
  border-radius: 0;
}
.search .count + .pages a:first-of-type {
  margin-left: 0.75em;
  padding: 0 0.75em;
  width: auto;
}
.search .count + .pages a:last-of-type {
  width: auto;
  padding: 0 0.75em;
}
.search .count + .pages a[href] {
  background: #fff;
  color: #000000;
  transition: all 300ms;
}
.search .count + .pages a[href]:hover {
  background: #005090;
  color: #fff;
}

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

.toggle_search_box {
  position: relative;
}
.toggle_search_box label {
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}
.toggle_search_box label:hover ~ a .icon {
  transform: translateX(-50%) translateY(-50%) scale(0.88);
}
.toggle_search_box a {
  display: block;
  fill: #fff;
  height: 2.75rem;
  outline-color: #fff;
  position: relative;
  width: 2.75rem;
}
.toggle_search_box a .icon {
  display: block;
  height: 2.125rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: fill 300ms, transform 300ms;
  width: 2.125rem;
}
.toggle_search_box a .icon svg {
  display: block;
}
.toggle_search_box .open_search_box {
  display: block;
}
.toggle_search_box .close_search_box {
  display: none;
}

.search_box {
  -webkit-backdrop-filter: blur(0.125rem);
  backdrop-filter: blur(0.125rem);
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 0;
  padding: 0.75em;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 300ms;
  visibility: hidden;
  z-index: 9999;
}
.search_box .close_search_box_wrapper {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.search_box .close_search_box_wrapper label {
  background: rgba(0, 0, 0, 0.65);
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 300ms, visibility 300ms;
  visibility: hidden;
}
.search_box .close_search_box_wrapper .close_search_box {
  min-width: 2.625rem;
  padding: 0;
  position: absolute;
  right: 1.5em;
  top: 1.5em;
}
@media (min-width: 20rem) {
  .search_box .close_search_box_wrapper .close_search_box {
    min-width: calc(2.625rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .search_box .close_search_box_wrapper .close_search_box {
    min-width: 2.625rem;
  }
}
.search_box .close_search_box_wrapper .close_search_box .icon {
  margin: 0;
}
.search_box .close_search_box_wrapper .close_search_box:hover, .search_box .close_search_box_wrapper .close_search_box:focus {
  background: #005090;
  border-color: #de2e25;
  color: #fff;
}
.search_box .close_search_box_wrapper .close_search_box:hover .icon, .search_box .close_search_box_wrapper .close_search_box:focus .icon {
  fill: #fff;
}
.search_box form[role=search] {
  background: #fff;
  border: 0.625rem solid #fff;
  border-radius: 0;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.4);
  display: flex;
  opacity: 0;
  position: relative;
  transform: translateY(-6.25rem);
  transition: 300ms;
  visibility: hidden;
  width: 37.5rem;
  z-index: 1000;
}
.search_box form[role=search] button {
  width: 2.75rem;
  flex-grow: 0;
  flex-shrink: 0;
  background: #005090;
  border-color: #005090;
}
@media (min-width: 20rem) {
  .search_box form[role=search] button {
    width: calc(2.75rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .search_box form[role=search] button {
    width: 2.75rem;
  }
}
.search_box form[role=search] button .icon {
  fill: #fff;
}
.search_box form[role=search] button:hover, .search_box form[role=search] button:focus {
  background: #000000;
  border-color: #000000;
}
.search_box input[type=search] {
  flex: 1 1 auto;
  font-size: 115%;
  user-select: text;
}

.search_box_state {
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  visibility: hidden;
}
.search_box_state:checked ~ .search_box, .search_box_state:target ~ .search_box {
  opacity: 1;
  visibility: visible;
}
.search_box_state:checked ~ .search_box .close_search_box_wrapper label, .search_box_state:target ~ .search_box .close_search_box_wrapper label {
  opacity: 1;
  visibility: visible;
}
.search_box_state:checked ~ .search_box form[role=search], .search_box_state:target ~ .search_box form[role=search] {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.search_box_state:checked ~ .page_wrapper .toggle_search_box .open_search_box, .search_box_state:target ~ .page_wrapper .toggle_search_box .open_search_box {
  display: none;
}
.search_box_state:checked ~ .page_wrapper .toggle_search_box .close_search_box, .search_box_state:target ~ .page_wrapper .toggle_search_box .close_search_box {
  display: flex;
}

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

.startpage .ueber_uns .blue_section {
  background: #005090;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-right: 1.25rem;
  position: relative;
}
@media (min-width: 20rem) {
  .startpage .ueber_uns .blue_section {
    padding-top: calc(1.25rem + 1.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .startpage .ueber_uns .blue_section {
    padding-top: 3.125rem;
  }
}
@media (min-width: 20rem) {
  .startpage .ueber_uns .blue_section {
    padding-bottom: calc(1.25rem + 1.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .startpage .ueber_uns .blue_section {
    padding-bottom: 3.125rem;
  }
}
@media (min-width: 20rem) {
  .startpage .ueber_uns .blue_section {
    padding-right: calc(1.25rem + 3.75 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .startpage .ueber_uns .blue_section {
    padding-right: 5rem;
  }
}
.startpage .ueber_uns .blue_section:before {
  background: #005090;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  right: 100%;
}
.startpage .ueber_uns .blue_section * {
  color: #fff;
}
.startpage .ueber_uns .blue_section h3 {
  text-transform: uppercase;
}
.startpage .ueber_uns .background_image {
  margin: 3em calc(50% - 50vw) 0;
  height: 26.875rem;
  width: 100vw;
}
@media (min-width: 35rem) {
  .startpage .ueber_uns .background_image {
    height: 100%;
    width: unset;
    margin: 0;
  }
}

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

.steuernews_preview .entry {
  display: block;
  overflow: hidden;
  position: relative;
  height: 13.75rem;
  margin-bottom: 0.9375rem;
  max-width: 31.25rem;
}
@media (min-width: 20rem) {
  .steuernews_preview .entry {
    height: calc(13.75rem + 5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_preview .entry {
    height: 18.75rem;
  }
}
@media (min-width: 20rem) {
  .steuernews_preview .entry {
    margin-bottom: calc(0.9375rem + 2.1875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_preview .entry {
    margin-bottom: 3.125rem;
  }
}
.steuernews_preview .entry .photo .bg_image {
  background-color: #e7e7e9;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: transform 300ms;
}
.steuernews_preview .entry .teaser_text {
  background: #de2e25;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  transition: background 300ms;
  z-index: 1;
}
.steuernews_preview .entry .teaser_text .title {
  color: #fff;
  font-size: 112.5%;
  font-weight: 600;
  margin: 0;
  padding: 0.75em;
  transition: padding-bottom 300ms;
  word-wrap: break-word;
}
.steuernews_preview .entry .news_category {
  background: #005090;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  left: 0;
  margin: 0;
  padding: 0.75em;
  position: absolute;
  text-transform: uppercase;
  top: 0;
  z-index: 1;
}
.steuernews_preview .entry:focus .photo .bg_image, .steuernews_preview .entry:hover .photo .bg_image {
  transform: scale(1.05);
}
.steuernews_preview .entry:focus .teaser_text, .steuernews_preview .entry:hover .teaser_text {
  background: #005090;
}
.steuernews_preview .entry:focus .teaser_text .title, .steuernews_preview .entry:hover .teaser_text .title {
  padding-bottom: 1.125em;
}

.news_entity .hide_image_author,
.news_entity .hide_creation_date {
  display: none;
}
@media (min-width: 75rem) {
  .news_entity {
    margin-right: 3em;
  }
}
.news_entity table p {
  margin-bottom: 0;
}

.news_image {
  margin-top: 1.5em;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 61.875rem) {
  .news_image {
    margin-top: 0;
    width: auto;
    margin-left: auto;
    max-width: 50vw;
    align-items: flex-end;
  }
}

.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 {
  align-items: center;
  background: #fff;
  border-radius: 0;
  color: #000000;
  display: flex;
  margin: 0 0.75em 0.75em 0;
  padding: 0 1.5em;
  text-decoration: none;
  transition: all 300ms;
  white-space: nowrap;
  line-height: 2.75rem;
}
@media (min-width: 20rem) {
  .steuernews_issues a,
.steuernews_navigation a,
.blog_issues a,
.blog_tags a {
    line-height: calc(2.75rem + 0 * (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: #005090;
  color: #fff;
}

.steuernews_issues {
  background: #e7e7e9;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  position: relative;
}
@media (min-width: 20rem) {
  .steuernews_issues {
    margin-top: calc(1.25rem + 1.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_issues {
    margin-top: 3.125rem;
  }
}
@media (min-width: 20rem) {
  .steuernews_issues {
    padding-top: calc(1.25rem + 1.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_issues {
    padding-top: 3.125rem;
  }
}
@media (min-width: 20rem) {
  .steuernews_issues {
    padding-bottom: calc(1.25rem + 1.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_issues {
    padding-bottom: 3.125rem;
  }
}
.steuernews_issues:before, .steuernews_issues:after {
  background: #e7e7e9;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.steuernews_issues:before {
  left: 100%;
}
.steuernews_issues:after {
  right: 100%;
}

.steuernews_navigation {
  background: #005090;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-right: 1.5625rem;
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
}
@media (min-width: 20rem) {
  .steuernews_navigation {
    padding-top: calc(1.25rem + 1.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_navigation {
    padding-top: 3.125rem;
  }
}
@media (min-width: 20rem) {
  .steuernews_navigation {
    padding-bottom: calc(1.25rem + 1.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_navigation {
    padding-bottom: 3.125rem;
  }
}
@media (min-width: 20rem) {
  .steuernews_navigation {
    padding-right: calc(1.5625rem + 4.6875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_navigation {
    padding-right: 6.25rem;
  }
}
@media (min-width: 20rem) {
  .steuernews_navigation {
    margin-bottom: calc(1.25rem + 1.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_navigation {
    margin-bottom: 3.125rem;
  }
}
.steuernews_navigation:before {
  background: #005090;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  right: 100%;
}
.steuernews_navigation .overview_title {
  color: #fff;
}
.steuernews_navigation a {
  border: 0.0625rem solid #de2e25;
}
.steuernews_navigation a.active {
  background: #de2e25;
}

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

.steuernews_current_issue {
  background: #005090;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 1.25rem;
  position: relative;
}
@media (min-width: 20rem) {
  .steuernews_current_issue {
    padding-top: calc(1.25rem + 1.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_current_issue {
    padding-top: 3.125rem;
  }
}
@media (min-width: 20rem) {
  .steuernews_current_issue {
    padding-bottom: calc(1.25rem + 1.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_current_issue {
    padding-bottom: 3.125rem;
  }
}
@media (min-width: 20rem) {
  .steuernews_current_issue {
    padding-left: calc(1.25rem + 1.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_current_issue {
    padding-left: 3.125rem;
  }
}
.steuernews_current_issue:before {
  background: #005090;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  left: 100%;
}
.steuernews_current_issue * {
  color: #fff;
}
.steuernews_current_issue .overview_title {
  padding-top: 0;
}
.steuernews_current_issue li a {
  padding: 0.1875em 0;
  display: inline-block;
  hyphens: none;
  text-wrap: balance;
  word-wrap: break-word;
  word-break: normal;
}
.steuernews_current_issue li a.active {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.steuernews_current_issue li a:hover, .steuernews_current_issue li a:focus {
  color: #fff;
}

.steuernews_disclaimer {
  clear: both;
}

.steuernews_sidebar {
  margin: 1.5em 0 0.75em;
}

.steuernews_current_issue {
  margin-bottom: 0.75em;
}

/* 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;
}
@media (min-width: 30rem) {
  .team_overview .team_entry .buttons {
    flex-direction: row;
    align-items: flex-start;
  }
}
.team_overview .title {
  margin: 0;
  padding: 0;
}
.team_overview .photo {
  display: block;
  flex: 0 0 auto;
}
@media (min-width: 61.875rem) {
  .team_overview .photo {
    margin-right: 1.5em;
    margin-bottom: 0;
  }
}
.team_overview .photo img {
  display: block;
}
.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;
}
.team_entry .contact {
  margin-bottom: 0;
}
.team_entry .contacts {
  margin-bottom: 2.25em;
}

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

.teaser {
  flex-grow: 1;
  margin-bottom: 1.5625rem;
}
@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 a {
  border: 0.0625rem solid #de2e25;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  height: 100%;
  flex-grow: 1;
  text-decoration: none;
  padding: 0.9375rem;
  gap: 0.9375rem;
  transition: all 300ms;
}
@media (min-width: 20rem) {
  .teaser a {
    padding: calc(0.9375rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .teaser a {
    padding: 1.5625rem;
  }
}
@media (min-width: 20rem) {
  .teaser a {
    gap: calc(0.9375rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .teaser a {
    gap: 1.5625rem;
  }
}
.teaser a:hover, .teaser a:focus {
  transform: scale(1.05);
}
.teaser a:hover .icon, .teaser a:focus .icon {
  transform: translateX(0.75em);
  fill: #de2e25;
}
.teaser a .title {
  padding-top: 0;
  text-transform: uppercase;
  hyphens: auto;
  text-wrap: balance;
}
.teaser a .icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.375rem;
  fill: #005090;
  flex-shrink: 0;
  transition: transform 300ms, fill 300ms;
}
@media (min-width: 20rem) {
  .teaser a .icon {
    width: calc(1.5rem + 0.6875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .teaser a .icon {
    width: 2.1875rem;
  }
}
@media (min-width: 20rem) {
  .teaser a .icon {
    height: calc(1.5rem + 0.6875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .teaser a .icon {
    height: 2.1875rem;
  }
}
.teaser a .icon svg {
  display: block;
}

.icon_teaser .teaser {
  margin-bottom: 0;
}
.icon_teaser a {
  border: 0.0625rem solid #fff;
  padding: 0.9375rem;
  align-items: center;
  flex-direction: column;
  transition: all 300ms;
  margin: 0.375em 0;
}
.icon_teaser a:hover, .icon_teaser a:focus {
  border: 0.0625rem solid #de2e25;
  transform: scale(1);
}
.icon_teaser a:hover .icon, .icon_teaser a:focus .icon {
  transform: translateX(0);
  fill: #fff;
}
.icon_teaser a h3 {
  text-transform: uppercase;
  text-align: center;
}
.icon_teaser a p {
  text-align: center;
}
.icon_teaser a .icon {
  width: 3.125rem;
  height: 3.125rem;
  padding: 0.625rem;
  flex-shrink: 0;
  background: #005090;
  fill: #fff;
  border-radius: 50%;
}
@media (min-width: 20rem) {
  .icon_teaser a .icon {
    width: calc(3.125rem + 3.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .icon_teaser a .icon {
    width: 6.25rem;
  }
}
@media (min-width: 20rem) {
  .icon_teaser a .icon {
    height: calc(3.125rem + 3.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .icon_teaser a .icon {
    height: 6.25rem;
  }
}
@media (min-width: 20rem) {
  .icon_teaser a .icon {
    padding: calc(0.625rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .icon_teaser a .icon {
    padding: 1.25rem;
  }
}

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

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

[role=tooltip] {
  background: #de2e25;
  border: 0.0625rem solid #de2e25;
  border-radius: 0;
  bottom: 100%;
  color: #fff;
  font-size: 87.5%;
  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: #de2e25;
  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: #de2e25;
  bottom: -1.375rem;
  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;
}

