/* 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] {
  background: #F7F7F7;
  border: 0.125rem solid #F7F7F7;
  border-radius: 0.625rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  padding: 0.9375rem 1.25rem;
  min-height: 4.375rem;
  transition: background 300ms, border 300ms, color 300ms, transform 300ms, box-shadow 300ms;
  user-select: none;
  flex-direction: row;
  align-items: center;
  gap: 0.625rem;
  height: 100%;
  width: 100%;
}
[role=tab]::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #EB7B28;
  transition: left 300ms ease-in-out;
  z-index: 0;
}
[role=tab] > * {
  position: relative;
  z-index: 1;
}
[role=tab]:focus-visible {
  background: #2D2D2D;
  border-color: #2D2D2D;
  outline: 0.125rem solid #2D2D2D;
  outline-offset: 0.125rem;
  box-shadow: 0 0 0 0.375rem #fff;
}
[role=tab] .title {
  flex-basis: 100%;
  margin-right: 0.75em;
  overflow: hidden;
  text-overflow: ellipsis;
}
[role=tab] .icon {
  display: block;
  fill: #EB7B28;
  height: 1.5rem;
  transform: rotate(90deg);
  width: 1.5rem;
  transition: all 300ms;
}
[role=tab]:not([aria-expanded=true]):hover {
  transform: translateY(-2px);
  box-shadow: 0 0.25rem 0.75rem rgba(235, 123, 40, 0.3), 0 0.125rem 0.375rem rgba(235, 123, 40, 0.2);
  border-color: #EB7B28;
  color: #fff;
}
[role=tab]:not([aria-expanded=true]):hover::before {
  left: 0;
}
[role=tab]:not([aria-expanded=true]):hover .icon {
  fill: #fff;
  transition: all 300ms;
}
[role=tab]:not([aria-expanded=true]):hover .title,
[role=tab]:not([aria-expanded=true]):hover h2,
[role=tab]:not([aria-expanded=true]):hover .word-2,
[role=tab]:not([aria-expanded=true]):hover p {
  color: #fff;
}
[role=tab][aria-expanded=true] {
  border-color: #EB7B28;
  box-shadow: 0 0.125rem 0.375rem rgba(235, 123, 40, 0.2), 0 0 0.1875rem #803700 inset;
  color: #fff;
}
[role=tab][aria-expanded=true]::before {
  left: 0;
}
[role=tab][aria-expanded=true] .icon {
  fill: #fff;
  transform: rotate(-90deg);
  transition: all 300ms;
}
[role=tab][aria-expanded=true] .title,
[role=tab][aria-expanded=true] .word-2,
[role=tab][aria-expanded=true] h2 {
  color: #fff;
}

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

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

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

.contacts {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.contact {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.contact p {
  margin-bottom: 0;
}
.contact .icon {
  height: 2.5rem;
}
.contact > span {
  min-width: 1.5625rem;
  font-weight: 700;
}
.contact > span.text {
  font-weight: 400;
}

.address_vcard_button {
  margin: 0.75em 0;
}

.address_call_button {
  margin: 0.75em 0;
}

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

aside {
  margin-top: 5rem;
  margin-bottom: 5rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}
@media (min-width: 20rem) {
  aside {
    margin-top: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  aside {
    margin-top: 6.25rem;
  }
}
@media (min-width: 20rem) {
  aside {
    margin-bottom: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  aside {
    margin-bottom: 6.25rem;
  }
}
@media (min-width: 20rem) {
  aside {
    padding-top: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  aside {
    padding-top: 6.25rem;
  }
}
@media (min-width: 20rem) {
  aside {
    padding-bottom: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  aside {
    padding-bottom: 6.25rem;
  }
}
aside .sidebar::before {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background-color: #7D7069;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -2;
}
aside .sidebar .white_teaser {
  margin-top: 0;
}

/* 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;
  width: 4.625rem;
  position: relative;
  z-index: 20;
}

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

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

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

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

.button {
  border-radius: 0.5rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: #C25400;
  border: 0.125rem solid #EB7B28;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms, transform 300ms, box-shadow 300ms;
  user-select: none;
  padding: 0 1.25rem 0 1.25rem;
}
.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.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .button > span {
    min-height: 3.25rem;
  }
}
.button .icon {
  fill: #fff;
  flex-shrink: 0;
  height: 1.5rem;
  transition: fill 300ms;
  width: 1.5rem;
}
.button .text {
  font-weight: 400;
  padding: 0.375em 0;
}
.button .icon + .text {
  padding-left: 0.4995em;
}
.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #EB7B28;
  transition: left 300ms ease-in-out;
  z-index: 0;
}
.button > span {
  position: relative;
  z-index: 1;
}
.button:focus-visible {
  background: #2D2D2D;
  border-color: #2D2D2D;
  color: #fff;
  outline: 0.125rem solid #2D2D2D;
  outline-offset: 0.125rem;
  box-shadow: 0 0 0 0.375rem #fff;
}
.button:focus-visible .icon {
  fill: #fff;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.25rem 0.75rem rgba(235, 123, 40, 0.3), 0 0.125rem 0.375rem rgba(235, 123, 40, 0.2);
  color: #fff;
}
.button:hover::before {
  left: 0;
}
.button:active, .button.active {
  transform: translateY(0);
  box-shadow: 0 0.125rem 0.375rem rgba(235, 123, 40, 0.2), 0 0 0.1875rem #803700 inset;
  color: #fff;
}
.button:active::before, .button.active::before {
  left: 0;
}
.button.bottom_spacing {
  margin-bottom: 0.75em;
}

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

.button-group {
  display: flex;
  gap: 1.875rem;
  flex-wrap: wrap;
}
.button-group.horizontal {
  flex-direction: row;
  align-items: center;
}
.button-group.vertical {
  flex-direction: column;
  align-items: stretch;
}
.button-group.horizontal-center {
  justify-content: center;
}
.button-group.horizontal-space-between {
  justify-content: space-between;
}
.button-group.horizontal-space-around {
  justify-content: space-around;
}
@media (max-width: 35rem) {
  .button-group {
    gap: 1.5em;
  }
  .button-group.horizontal {
    flex-direction: column;
    align-items: stretch;
  }
}

.bg_color {
  background-color: rgba(255, 255, 255, 0.75);
  padding: 3.125rem 1.875rem;
}
@media (min-width: 61.875rem) {
  .bg_color {
    padding: 6.25rem 10.625rem 6.25rem 4.375rem;
  }
}
.bg_color .title {
  padding-top: 0;
}
.bg_color p {
  margin-bottom: 0;
}
.bg_color .button-group {
  margin-top: 3.125rem;
}

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

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

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

.company_logo {
  width: 18.125rem;
  height: auto;
  max-height: 7.5rem;
  display: block;
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1), max-height 300ms cubic-bezier(0.4, 0, 0.2, 1), opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: width, max-height, opacity;
  transform: translateZ(0);
}
@media (min-width: 35rem) {
  .company_logo {
    width: 13.75rem;
  }
}
@media (min-width: 47.5rem) {
  .company_logo {
    width: 15.625rem;
    max-height: 15.625rem;
  }
}
@media (min-width: 61.875rem) {
  .company_logo {
    width: 11.25rem;
  }
}
@media (min-width: 75rem) {
  .company_logo {
    width: 18.75rem;
  }
}
@media (min-width: 93.75rem) {
  .company_logo {
    width: 20rem;
  }
}

.company_logo .schrift {
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

body.scrolled_down .company_logo {
  width: 9.375rem;
}
@media (min-width: 20rem) {
  body.scrolled_down .company_logo {
    width: calc(9.375rem + 1.875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  body.scrolled_down .company_logo {
    width: 11.25rem;
  }
}

@media (max-width: 35rem) {
  body.scrolled_down .company_logo {
    width: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
  }
}
@media (min-width: 35rem) {
  body.scrolled_down .company_logo .schrift {
    opacity: 0;
  }
}

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

.content_bg_image_container {
  background-attachment: scroll;
  background-position: center center;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  position: relative;
  z-index: 0;
}
.content_bg_image_container > .container {
  width: 100%;
}
.content_bg_image_container.center {
  background-position-x: center;
}
.content_bg_image_container.left {
  background-position-x: left;
}
.content_bg_image_container.right {
  background-position-x: right;
}
.content_bg_image_container.middle {
  background-position-y: center;
}
.content_bg_image_container.top {
  background-position-y: top;
}
.content_bg_image_container.bottom {
  background-position-y: bottom;
}
.content_bg_image_container.show_overlay::after {
  background: rgba(255, 255, 255, 0.8);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.content_bg_image_container.fixed {
  background-attachment: fixed;
}
html.ios .content_bg_image_container.fixed, html.mobile .content_bg_image_container.fixed {
  background-attachment: scroll;
}
.content_bg_image_container.full_width {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
@media (min-width: 160rem) {
  .content_bg_image_container.full_width {
    margin-left: calc(50% - (160rem / 2));
    margin-right: calc(50% - (160rem / 2));
  }
}

.content_bg_image_container .intro {
  padding-top: 5rem;
  padding-bottom: 5rem;
  padding-right: 3.125rem;
  position: relative;
}
@media (min-width: 20rem) {
  .content_bg_image_container .intro {
    padding-top: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .content_bg_image_container .intro {
    padding-top: 6.25rem;
  }
}
@media (min-width: 20rem) {
  .content_bg_image_container .intro {
    padding-bottom: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .content_bg_image_container .intro {
    padding-bottom: 6.25rem;
  }
}
.content_bg_image_container .intro::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  left: -31.25rem;
  bottom: 0;
  background-color: #fff;
  z-index: -1;
}

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

.cookie_banner {
  display: grid;
  position: fixed;
  max-height: 100vh;
  overflow-y: auto;
  background: #F7F7F7;
  row-gap: 0.75em;
  border-top: 0.0625rem solid #dedede;
  padding: 0.75em;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  text-align: center;
  grid-template-areas: "cb_text_policy" "cb_link_privacy" "cb_button_confirm";
}
@media (min-width: 47.5rem) {
  .cookie_banner {
    align-items: center;
    column-gap: 0.3em;
    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: 85%;
  margin: 0;
  width: 100%;
}
.cookie_banner .close {
  flex: 0 0 auto;
}

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

.disclaimer {
  background: #F7F7F7;
  border-radius: 0.625rem;
  color: #2D2D2D !important;
  font-size: 85%;
  margin: 1.5em 0;
  padding: 0.999em 1.5em;
}
.disclaimer a {
  display: inline;
}

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

.down_arrow {
  animation: bounce 1.8s infinite;
  display: block;
  line-height: 0;
  opacity: 1;
  position: fixed;
  transition: opacity 300ms, visibility 300ms;
  visibility: visible;
  z-index: 10;
  top: 70vh;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 1.625rem;
  width: 1.625rem;
}
@media (min-width: 20rem) {
  .down_arrow {
    height: calc(1.625rem + 1.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .down_arrow {
    height: 3.125rem;
  }
}
@media (min-width: 20rem) {
  .down_arrow {
    width: calc(1.625rem + 1.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .down_arrow {
    width: 3.125rem;
  }
}
@media (min-width: 47.5rem) {
  .down_arrow {
    top: 45vh;
  }
}
@media (min-width: 61.875rem) {
  .down_arrow {
    top: 60vh;
  }
}
.down_arrow .icon {
  display: block;
  fill: #EB7B28;
  transition: fill 300ms;
  height: 1.625rem;
  width: 1.625rem;
}
@media (min-width: 20rem) {
  .down_arrow .icon {
    height: calc(1.625rem + 1.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .down_arrow .icon {
    height: 3.125rem;
  }
}
@media (min-width: 20rem) {
  .down_arrow .icon {
    width: calc(1.625rem + 1.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .down_arrow .icon {
    width: 3.125rem;
  }
}
.down_arrow:focus .icon, .down_arrow:hover .icon {
  fill: #2D2D2D;
}
.down_arrow.scrolled_down {
  opacity: 0;
  visibility: hidden;
}

body:not(.startpage) .down_arrow {
  display: none;
}

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

.download_overview {
  margin-bottom: 0.75em;
}
.download_overview .touch_link {
  background: #F7F7F7;
  border: 0.125rem solid #F7F7F7;
  border-radius: 0.625rem;
  color: #2D2D2D;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0.9375rem 1.25rem;
  min-height: 4.375rem;
  transition: background 300ms, border 300ms, color 300ms, transform 300ms, box-shadow 300ms;
  user-select: none;
}
.download_overview .touch_link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #EB7B28;
  transition: left 300ms ease-in-out;
  z-index: 0;
}
.download_overview .touch_link > * {
  position: relative;
  z-index: 1;
}
.download_overview .touch_link:focus-visible {
  background: #2D2D2D;
  border-color: #2D2D2D;
  color: #fff;
  outline: 0.125rem solid #2D2D2D;
  outline-offset: 0.125rem;
  box-shadow: 0 0 0 0.375rem #fff;
}
.download_overview .touch_link:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.25rem 0.75rem rgba(235, 123, 40, 0.3), 0 0.125rem 0.375rem rgba(235, 123, 40, 0.2);
  color: #fff;
}
.download_overview .touch_link:hover::before {
  left: 0;
}
.download_overview .touch_link:hover small {
  color: #fff;
}
.download_overview .touch_link:active, .download_overview .touch_link.active {
  transform: translateY(0);
  box-shadow: 0 0.125rem 0.375rem rgba(235, 123, 40, 0.2), 0 0 0.1875rem #803700 inset;
  color: #fff;
}
.download_overview .touch_link:active::before, .download_overview .touch_link.active::before {
  left: 0;
}
.download_overview .touch_link .title {
  text-decoration: none;
  margin-bottom: 0;
  color: #2D2D2D;
  font-weight: 400;
}
.download_overview .touch_link .title_wrapper {
  margin: 0;
  padding: 0;
}
.download_overview .touch_link small {
  font-size: 60%;
}
.download_overview .touch_link .text {
  display: none;
}
.download_overview .touch_link .icon {
  display: block;
  fill: #EB7B28;
  flex-shrink: 0;
  height: 2.5rem;
  transition: fill 300ms;
  width: 2.5rem;
}
.download_overview .touch_link:hover {
  border-color: #EB7B28;
}
.download_overview .touch_link:hover .icon {
  fill: #fff;
}
.download_overview .touch_link:hover .title {
  color: #fff;
}

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

.dropdown_menu {
  display: none;
}
@media (min-width: 67.5rem) {
  .dropdown_menu {
    align-items: center;
    display: flex;
    position: relative;
    height: 100%;
  }
}
.dropdown_menu > ul {
  display: flex;
  position: relative;
  height: 100%;
  align-items: center;
}
.dropdown_menu > ul li {
  position: relative;
}
.dropdown_menu > ul li:hover > a, .dropdown_menu > ul li.hover > a {
  color: #C25400;
  font-weight: 600;
}
.dropdown_menu > ul li:hover > ul, .dropdown_menu > ul li.hover > ul {
  opacity: 1;
  transform: translateY(0) scaleY(1);
  visibility: visible;
}
.dropdown_menu > ul li .icon {
  box-sizing: content-box;
  display: inline-block;
  height: 0.625rem;
  padding-left: 0.75em;
  width: 0.625rem;
}
.dropdown_menu > ul > li {
  align-items: center;
}
.dropdown_menu > ul > li > a {
  align-items: center;
  color: #7D7069;
  display: block;
  font-size: 1.125rem;
  hyphens: none;
  padding: 0 0.8125rem;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}
.dropdown_menu > ul > li > a::before {
  color: transparent;
  content: attr(data-title);
  display: block;
  font-weight: 600;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
@media (min-width: 75rem) {
  .dropdown_menu > ul > li > a {
    padding: 0 1.125rem;
  }
}
.dropdown_menu > ul > li > a:hover {
  color: #C25400;
  font-weight: 600;
}
.dropdown_menu > ul > li > a.active {
  color: #C25400;
  font-weight: 600;
}
.dropdown_menu > ul > li:last-child > a {
  padding-right: 0;
}
.dropdown_menu > ul > li ul {
  background: #fff;
  border-left: 0.1875rem solid #EB7B28;
  box-shadow: 0 0 0.5625rem 0 rgba(0, 75, 58, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  opacity: 0;
  margin-top: 3.4375rem;
  padding: 1.25rem 1.875rem;
  position: absolute;
  transform: translateY(-0.625rem) scaleY(0);
  transform-origin: top;
  transition: opacity 300ms ease-out, transform 300ms ease-out;
  visibility: hidden;
  z-index: 1000;
}
.scrolled_down .dropdown_menu > ul > li ul {
  margin-top: 2.125rem;
}
.dropdown_menu > ul > li ul:target {
  opacity: 1;
  transform: translateY(0) scaleY(1);
  visibility: visible;
}
.dropdown_menu > ul > li ul a {
  color: #2D2D2D;
  display: block;
  hyphens: none;
  justify-content: space-between;
  padding: 0;
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
  position: relative;
}
.dropdown_menu > ul > li ul a::before {
  color: transparent;
  content: attr(data-title);
  display: block;
  font-weight: 600;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.dropdown_menu > ul > li ul a:hover {
  color: #C25400;
  font-weight: 600;
}
.dropdown_menu > ul > li ul a:focus {
  outline-offset: -0.125rem;
}
.dropdown_menu > ul > li ul a.active {
  color: #C25400;
}
.dropdown_menu > ul > li ul ul {
  left: 100%;
  position: absolute;
  top: -0.75em;
}

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

footer {
  margin-top: 5rem;
}
@media (min-width: 20rem) {
  footer {
    margin-top: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer {
    margin-top: 6.25rem;
  }
}
footer .footer_wrapper {
  position: relative;
}
footer .footer_wrapper::before {
  content: "";
  position: absolute;
  background-image: url("../../common/images/logo_element.svg");
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 35%;
  z-index: 1;
  display: none;
}
@media (min-width: 47.5rem) {
  footer .footer_wrapper::before {
    display: block;
  }
}
@media (min-width: 61.875rem) {
  footer .footer_wrapper::before {
    height: 90%;
  }
}
footer .footer_wrapper .headline .title {
  padding: 0;
}
footer .footer_news {
  position: relative;
  z-index: 10;
}
footer .footer_news .footer_leistungen {
  margin-bottom: 5rem;
}
@media (min-width: 20rem) {
  footer .footer_news .footer_leistungen {
    margin-bottom: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .footer_news .footer_leistungen {
    margin-bottom: 6.25rem;
  }
}
footer .footer_news .title {
  text-align: center;
}
footer .footer_news .steuernews_preview {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 5rem;
  margin-top: 2.5rem;
}
@media (min-width: 20rem) {
  footer .footer_news .steuernews_preview {
    margin-bottom: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .footer_news .steuernews_preview {
    margin-bottom: 6.25rem;
  }
}
@media (min-width: 20rem) {
  footer .footer_news .steuernews_preview {
    margin-top: calc(2.5rem + 2.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .footer_news .steuernews_preview {
    margin-top: 5rem;
  }
}
@media (min-width: 61.875rem) {
  footer .footer_news .steuernews_preview {
    flex-direction: row;
  }
}
footer .footer_background {
  background-color: #7D7069;
  position: relative;
  padding-bottom: 0.9375rem;
  padding-top: 0.9375rem;
}
@media (min-width: 20rem) {
  footer .footer_background {
    padding-top: calc(0.9375rem + 5.3125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .footer_background {
    padding-top: 6.25rem;
  }
}
footer .footer_background::before {
  content: "";
  position: absolute;
  background: #7D7069;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0 calc(-50% - 50vw);
  z-index: -10;
}
footer .footer_background .footer_address {
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 20rem) {
  footer .footer_background .footer_address {
    margin-bottom: calc(1.25rem + 3.75 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .footer_background .footer_address {
    margin-bottom: 5rem;
  }
}
footer .footer_background .footer_address .company_name {
  color: #fff;
  margin-bottom: 0;
  padding-top: 0;
}
footer .footer_background .footer_address .contact_wrapper {
  display: flex;
  flex-direction: column;
}
footer .footer_background .footer_address .contact_wrapper .postal_address {
  color: #fff;
  margin-bottom: 0.9375rem;
}
@media (min-width: 20rem) {
  footer .footer_background .footer_address .contact_wrapper .postal_address {
    margin-bottom: calc(0.9375rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .footer_background .footer_address .contact_wrapper .postal_address {
    margin-bottom: 1.875rem;
  }
}
footer .footer_background .footer_address .contact_wrapper .contact_address {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media (min-width: 93.75rem) {
  footer .footer_background .footer_address .contact_wrapper .contact_address {
    flex-direction: row;
    gap: 2.1875rem;
  }
}
footer .footer_background .footer_address .contact_wrapper .contact_address .contact {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
footer .footer_background .footer_address .contact_wrapper .contact_address .contact .text {
  color: #fff;
}
footer .footer_background .footer_newsletter {
  max-width: 29.375rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 20rem) {
  footer .footer_background .footer_newsletter {
    margin-bottom: calc(1.25rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .footer_background .footer_newsletter {
    margin-bottom: 1.875rem;
  }
}
footer .footer_background .footer_newsletter::before {
  content: "";
  position: absolute;
  background: #fff;
}
footer .footer_background .footer_newsletter h2 {
  color: #fff;
  padding-top: 0;
}
footer .footer_background .footer_newsletter p,
footer .footer_background .footer_newsletter .label {
  color: #fff;
}
footer .related_links {
  background-color: #fff;
  padding-top: 0.9375rem;
  margin-bottom: 0.6875rem;
  position: relative;
  z-index: 10;
}
footer .related_links ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
footer .related_links ul li {
  margin-right: 1.125rem;
}
footer .related_links ul li a {
  color: #2D2D2D;
  position: relative;
}
footer .related_links ul li a.active {
  text-decoration: none;
}
footer .related_links ul li a::after {
  content: "|";
  position: absolute;
  right: -0.6875rem;
  color: #EB7B28;
}
footer .related_links ul li:last-child a::after {
  content: none;
}

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

.kontaktformular .form label,
.kontaktformular .form .text,
.kontaktformular .form a {
  color: #fff;
}

.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.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file {
    height: 3.375rem;
  }
}
.file.error .file_name {
  border-color: #EB7B28;
}
.file .file_name {
  background: #fff;
  border: 0.0625rem solid #dedede;
  border-radius: 0.625rem 0 0 0.625rem;
  color: #2D2D2D;
  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.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file .file_name {
    line-height: 3.25rem;
  }
}
@media (min-width: 20rem) {
  .file .file_name {
    height: calc(2.75rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file .file_name {
    height: 3.375rem;
  }
}
.file .file_button {
  border-radius: 0 0.625rem 0.625rem 0;
  flex: 1 0 auto;
  padding: 0 1.5em;
  z-index: 10;
  background: #C25400;
  border: 0.125rem solid #EB7B28;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms, transform 300ms, box-shadow 300ms;
  user-select: none;
  padding: 0 1.25rem 0 1.25rem;
}
.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.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file .file_button > span {
    min-height: 3.25rem;
  }
}
.file .file_button .icon {
  fill: #fff;
  flex-shrink: 0;
  height: 1.5rem;
  transition: fill 300ms;
  width: 1.5rem;
}
.file .file_button .text {
  font-weight: 400;
  padding: 0.375em 0;
}
.file .file_button .icon + .text {
  padding-left: 0.4995em;
}
.file .file_button > span {
  min-height: 2.625rem;
}
@media (min-width: 20rem) {
  .file .file_button > span {
    min-height: calc(2.625rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file .file_button > span {
    min-height: 3.25rem;
  }
}
.file .file_button.focus {
  box-shadow: 0 0 0 0.1875rem rgba(235, 123, 40, 0.2);
  background: #2D2D2D;
  border-color: #2D2D2D;
  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.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file [type=file] {
    height: 3.375rem;
  }
}
.file [type=file]:hover ~ .file_button {
  background: #2D2D2D;
  border-color: #2D2D2D;
  color: #fff;
}
.file [type=file]:hover ~ .file_button .icon {
  fill: #fff;
}
.file [type=file]:active ~ .file_button {
  box-shadow: 0 0 0.1875rem #803700 inset;
  background: #803700;
  border: 0.125rem solid #803700;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms, transform 300ms, box-shadow 300ms;
  user-select: none;
  padding: 0 1.25rem 0 1.25rem;
}
.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.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file [type=file]:active ~ .file_button > span {
    min-height: 3.25rem;
  }
}
.file [type=file]:active ~ .file_button .icon {
  fill: #fff;
  flex-shrink: 0;
  height: 1.5rem;
  transition: fill 300ms;
  width: 1.5rem;
}
.file [type=file]:active ~ .file_button .text {
  font-weight: 400;
  padding: 0.375em 0;
}
.file [type=file]:active ~ .file_button .icon + .text {
  padding-left: 0.4995em;
}

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

button {
  cursor: pointer;
  margin: 0.75em 0;
  outline: 0;
  overflow: hidden;
  padding: 0 1.5em;
  width: 100%;
  height: 2.75rem;
}
@media (min-width: 20rem) {
  button {
    height: calc(2.75rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  button {
    height: 3.375rem;
  }
}
@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 {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(0.5rem);
  box-shadow: 0 0.3125rem 0.45625rem 0 rgba(0, 0, 0, 0.04);
  will-change: transform;
  transform: translateZ(0);
}
header .top_header {
  display: flex;
  flex-direction: column;
  height: auto;
  padding: 1.25rem 0;
  gap: 0.9375rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
header .top_header .top_header_logo {
  width: 100%;
  display: flex;
  justify-content: center;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
header .top_header .top_header_menu {
  display: none;
  position: relative;
  z-index: 1;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
header .top_header .top_header_buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 35rem) {
  header .top_header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 8.625rem;
    padding: 0;
    gap: 0;
  }
  header .top_header .top_header_logo {
    width: auto;
    justify-self: start;
    justify-content: flex-start;
  }
  header .top_header .top_header_menu {
    display: flex;
    height: 100%;
    justify-self: center;
    justify-content: center;
    align-items: center;
  }
  header .top_header .top_header_buttons {
    justify-self: end;
    width: auto;
    justify-content: flex-end;
    gap: 1.25rem;
  }
}
body.scrolled_down header {
  background-color: rgba(255, 255, 255, 0.9);
}
body.scrolled_down header .top_header {
  padding: 0 0 0.9375rem;
}
@media (min-width: 35rem) {
  body.scrolled_down header .top_header {
    height: 5.9375rem;
    padding: 0;
  }
}

.header_fixed_wrapper {
  min-height: 31.25rem;
  margin-bottom: 0;
  position: relative;
  height: 70vh;
}
@media (min-width: 20rem) {
  .header_fixed_wrapper {
    min-height: calc(31.25rem + 12.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .header_fixed_wrapper {
    min-height: 43.75rem;
  }
}
@media (min-width: 47.5rem) {
  .header_fixed_wrapper {
    height: 50vh;
  }
}
@media (min-width: 61.875rem) {
  .header_fixed_wrapper {
    height: 70vh;
  }
}
.header_fixed_wrapper .header_content {
  min-height: 31.25rem;
  z-index: 0;
  max-height: 100vh;
  overflow: hidden;
  width: 100%;
  position: relative;
}
@media (min-width: 20rem) {
  .header_fixed_wrapper .header_content {
    min-height: calc(31.25rem + 12.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .header_fixed_wrapper .header_content {
    min-height: 43.75rem;
  }
}
.header_fixed_wrapper .icon_bar {
  position: absolute;
  right: 0rem;
  transition: transform 300ms ease-in;
  z-index: 99;
  top: 12.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75em;
}
.header_fixed_wrapper .icon_bar .link-button {
  padding-right: 1.25rem;
  transition: all 300ms ease-in-out;
}
.header_fixed_wrapper .icon_bar .link-button:hover {
  transform: scale(1.08);
}
.header_fixed_wrapper .icon_bar .link-button .text {
  display: none;
}
@media (min-width: 61.875rem) {
  .header_fixed_wrapper .icon_bar {
    top: 17.5rem;
  }
}
.scrolled_down .header_fixed_wrapper .icon_bar {
  transform: translateX(100%);
  transition: transform 300ms ease-in;
}
@media (max-width: 34.9375rem) {
  .header_fixed_wrapper .icon_bar {
    display: none;
  }
}
body:not(.startpage) .header_fixed_wrapper {
  height: 30vh;
  min-height: 18.75rem;
  max-height: 25rem;
  margin-top: 12.5rem;
}
@media (min-width: 35rem) {
  body:not(.startpage) .header_fixed_wrapper {
    height: 45vh;
    min-height: 25rem;
    max-height: 31.25rem;
    margin-top: 8.75rem;
  }
}
@media (min-width: 47.5rem) {
  body:not(.startpage) .header_fixed_wrapper {
    height: 50vh;
    min-height: 31.25rem;
    max-height: 37.5rem;
    margin-top: 0;
  }
}
@media (min-width: 75rem) {
  body:not(.startpage) .header_fixed_wrapper {
    height: 65vh;
    min-height: 40.625rem;
    max-height: 40.625rem;
  }
}
body:not(.startpage) .header_fixed_wrapper .header_content {
  min-height: unset;
  height: 30vh;
  min-height: 18.75rem;
  max-height: 25rem;
}
body:not(.startpage) .header_fixed_wrapper .header_content h1 {
  margin-bottom: 0;
}
@media (min-width: 35rem) {
  body:not(.startpage) .header_fixed_wrapper .header_content {
    height: 45vh;
    min-height: 25rem;
    max-height: 31.25rem;
  }
}
@media (min-width: 47.5rem) {
  body:not(.startpage) .header_fixed_wrapper .header_content {
    height: 50vh;
    min-height: 31.25rem;
    max-height: 37.5rem;
  }
}
@media (min-width: 75rem) {
  body:not(.startpage) .header_fixed_wrapper .header_content {
    height: 65vh;
    min-height: 40.625rem;
    max-height: 40.625rem;
  }
}
.header_fixed_wrapper .content_bg_image_container {
  min-height: 31.25rem;
  margin-bottom: 0;
  height: 70vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (min-width: 20rem) {
  .header_fixed_wrapper .content_bg_image_container {
    min-height: calc(31.25rem + 12.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .header_fixed_wrapper .content_bg_image_container {
    min-height: 43.75rem;
  }
}
@media (min-width: 47.5rem) {
  .header_fixed_wrapper .content_bg_image_container {
    height: 50vh;
  }
}
@media (min-width: 61.875rem) {
  .header_fixed_wrapper .content_bg_image_container {
    height: 70vh;
  }
}
.header_fixed_wrapper .content_bg_image_container > .container {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.header_fixed_wrapper .content_bg_image_container > .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -624.9375rem;
  right: -624.9375rem;
  bottom: 0;
  backdrop-filter: blur(0.5rem);
  background-color: rgba(235, 123, 40, 0.7);
}
.header_fixed_wrapper .content_bg_image_container .headline {
  position: relative;
  z-index: 2;
}
.header_fixed_wrapper .content_bg_image_container .headline * {
  color: #fff;
}
.header_fixed_wrapper .content_bg_image_container .headline .title {
  margin: 0.625rem 0;
}
.header_fixed_wrapper .content_bg_image_container .headline.text {
  display: none;
}
@media (min-width: 47.5rem) {
  .header_fixed_wrapper .content_bg_image_container .headline.text {
    display: block;
  }
}
body:not(.startpage) .header_fixed_wrapper .content_bg_image_container {
  height: 30vh;
  min-height: 18.75rem;
  max-height: 25rem;
}
@media (min-width: 35rem) {
  body:not(.startpage) .header_fixed_wrapper .content_bg_image_container {
    height: 45vh;
    min-height: 25rem;
    max-height: 31.25rem;
  }
}
@media (min-width: 47.5rem) {
  body:not(.startpage) .header_fixed_wrapper .content_bg_image_container {
    height: 50vh;
    min-height: 31.25rem;
    max-height: 37.5rem;
  }
}
@media (min-width: 75rem) {
  body:not(.startpage) .header_fixed_wrapper .content_bg_image_container {
    height: 65vh;
    min-height: 40.625rem;
    max-height: 40.625rem;
  }
}
body:not(.startpage) .header_fixed_wrapper .content_bg_image_container {
  position: relative;
}
body:not(.startpage) .header_fixed_wrapper .content_bg_image_container > .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 100%;
}
body:not(.startpage) .header_fixed_wrapper .container {
  position: absolute;
  z-index: 2;
  text-align: center;
  width: 100%;
  backdrop-filter: blur(0.5rem);
  bottom: 0;
  left: 0;
  right: 0;
}
body:not(.startpage) .header_fixed_wrapper .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -624.9375rem;
  right: -624.9375rem;
  bottom: 0;
  background-color: rgba(235, 123, 40, 0.7);
}
body:not(.startpage) .header_fixed_wrapper .container * {
  color: #fff;
}
body:not(.startpage) .header_fixed_wrapper .container h1 {
  margin: 0.625rem 0;
  position: relative;
}

@media (max-width: 47.5rem) {
  .startpage header {
    position: relative;
  }
  .startpage header .content_bg_image_container {
    background-attachment: scroll;
  }
}
.startpage .header_fixed_wrapper {
  height: auto;
  min-height: auto;
}
.startpage .header_fixed_wrapper .header_content {
  height: auto;
  min-height: auto;
}
.startpage .header_fixed_wrapper .header_content .content_bg_image_container {
  height: 31.25rem;
  min-height: auto;
  background-attachment: scroll;
}
@media (min-width: 47.5rem) {
  .startpage .header_fixed_wrapper .header_content .content_bg_image_container {
    height: 40.625rem;
  }
}
@media (min-width: 75rem) {
  .startpage .header_fixed_wrapper .header_content .content_bg_image_container {
    height: 46.875rem;
    background-attachment: fixed;
  }
}

.ios .startpage .header_fixed_wrapper .header_content .content_bg_image_container {
  background-attachment: initial;
}

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

.header_background {
  background-position: center center;
  background-size: cover;
  margin: 0 auto;
}

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

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

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

.img_container.infolist_graphic_a_online_graphic_small {
  max-width: 18.125rem;
}
@media (min-width: 47.5rem) {
  .img_container.infolist_graphic_a_online_graphic_small {
    display: none;
  }
}
.img_container.infolist_graphic_a_online_graphic_large {
  margin: 0 0 1.5em;
  max-width: 28.125rem;
}
@media (min-width: 47.5rem) {
  .img_container.infolist_graphic_a_online_graphic_large {
    display: block;
  }
}

.infolist_graphic_a_online_graphic_small {
  display: block;
  margin: 1.5em auto;
}

.infolist_graphic_a_online_graphic_large {
  display: none;
}

.arbeitnehmer_online_2_headline {
  fill: #2D2D2D;
  font-family: "SourceSans3", sans-serif;
  font-size: 90%;
  text-anchor: middle;
}
@media (min-width: 47.5rem) {
  .arbeitnehmer_online_2_headline {
    font-size: 80%;
  }
}
.arbeitnehmer_online_2_headline .strong {
  fill: #2D2D2D;
  font-weight: 700;
}

.arbeitnehmer_online_text {
  fill: #2D2D2D;
  font-family: "SourceSans3", sans-serif;
  font-size: 90%;
  text-anchor: middle;
}
@media (min-width: 47.5rem) {
  .arbeitnehmer_online_text {
    font-size: 80%;
  }
}

.arbeitnehmer_online_company_logo {
  fill: #2D2D2D;
}

.arbeitnehmer_online_icon {
  fill: #EB7B28;
  transition: 300ms;
}

.arbeitnehmer_online_button .normal {
  display: block;
}
.arbeitnehmer_online_button .hover {
  display: none;
}
.arbeitnehmer_online_button:hover .normal {
  display: none;
}
.arbeitnehmer_online_button:hover .hover {
  display: block;
}
.arbeitnehmer_online_button:hover .arbeitnehmer_online_euro_icon,
.arbeitnehmer_online_button:hover .arbeitnehmer_online_warning_icon,
.arbeitnehmer_online_button:hover .arbeitnehmer_online_check_icon {
  fill: #EB7B28;
}
.arbeitnehmer_online_button:hover .arbeitnehmer_online_icon {
  fill: #2D2D2D;
}

.arbeitnehmer_online_lines {
  fill: #EB7B28;
}

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

.infolist_download {
  align-items: baseline;
  background: #F7F7F7;
  border-radius: 0.625rem;
  color: #2D2D2D;
  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_meine_steuern.scss */

.img_container.infolist_graphic_meine_steuern_graphic_large {
  display: none;
  margin: 3em auto;
  width: 37.5rem;
}
@media (min-width: 47.5rem) {
  .img_container.infolist_graphic_meine_steuern_graphic_large {
    display: block;
  }
}
.img_container.infolist_graphic_meine_steuern_graphic_small {
  margin: 3em auto;
  width: 15.625rem;
}
@media (min-width: 47.5rem) {
  .img_container.infolist_graphic_meine_steuern_graphic_small {
    display: none;
  }
}

.meine_steuern_text {
  fill: #2D2D2D;
  font-family: "SourceSans3", sans-serif;
}

.meine_steuern_arrows {
  fill: #EB7B28;
}

.meine_steuern_icon {
  fill: #2D2D2D;
}

.infolist_graphic_meine_steuern_graphic_large svg stop:nth-child(1) {
  stop-color: #fffcfa;
}
.infolist_graphic_meine_steuern_graphic_large svg stop:nth-child(2) {
  stop-color: #fff;
}

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

.infolist_top_link {
  align-items: center;
  display: inline-flex;
  flex-direction: column;
  margin: 0.75em 0;
  width: 100%;
}
.infolist_top_link a {
  background: #F7F7F7;
  border: 0.125rem solid #F7F7F7;
  border-radius: 0.625rem;
  color: #2D2D2D;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  padding: 0.9375rem 1.25rem;
  min-height: 4.375rem;
  transition: background 300ms, border 300ms, color 300ms, transform 300ms, box-shadow 300ms;
  user-select: none;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  height: 100%;
}
.infolist_top_link a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #EB7B28;
  transition: left 300ms ease-in-out;
  z-index: 0;
}
.infolist_top_link a > * {
  position: relative;
  z-index: 1;
}
.infolist_top_link a:focus-visible {
  background: #2D2D2D;
  border-color: #2D2D2D;
  color: #fff;
  outline: 0.125rem solid #2D2D2D;
  outline-offset: 0.125rem;
  box-shadow: 0 0 0 0.375rem #fff;
}
.infolist_top_link a:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.25rem 0.75rem rgba(235, 123, 40, 0.3), 0 0.125rem 0.375rem rgba(235, 123, 40, 0.2);
  color: #fff;
}
.infolist_top_link a:hover::before {
  left: 0;
}
.infolist_top_link a:active, .infolist_top_link a.active {
  transform: translateY(0);
  box-shadow: 0 0.125rem 0.375rem rgba(235, 123, 40, 0.2), 0 0 0.1875rem #803700 inset;
  color: #fff;
}
.infolist_top_link a:active::before, .infolist_top_link a.active::before {
  left: 0;
}
.infolist_top_link a p {
  color: #2D2D2D;
  margin: 0;
  line-height: 1.5;
  transition: color 300ms;
}
.infolist_top_link a:hover {
  border-color: #EB7B28;
}
.infolist_top_link a:hover .icon {
  fill: #fff;
}
.infolist_top_link a:hover .text,
.infolist_top_link a:hover p {
  color: #fff;
}
.infolist_top_link .icon {
  display: block;
  fill: #EB7B28;
  height: 3rem;
  transform: rotate(-180deg);
  width: 3rem;
  transition: fill 300ms;
}

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

.img_container.infolist_graphic_u_online_graphic_small {
  width: 18.125rem;
}
@media (min-width: 47.5rem) {
  .img_container.infolist_graphic_u_online_graphic_small {
    display: none;
  }
}
.img_container.infolist_graphic_u_online_graphic_large {
  margin: 0 0 1.5em;
  max-width: 28.125rem;
}
@media (min-width: 47.5rem) {
  .img_container.infolist_graphic_u_online_graphic_large {
    display: block;
  }
}

.infolist_graphic_u_online_graphic_small {
  display: block;
  margin: 1.5em auto;
}

.infolist_graphic_u_online_graphic_large {
  display: none;
}

.u_online_2_headline {
  fill: #2D2D2D;
  font-family: "SourceSans3", sans-serif;
  font-size: 90%;
  text-anchor: middle;
}
@media (min-width: 47.5rem) {
  .u_online_2_headline {
    font-size: 80%;
  }
}
.u_online_2_headline .strong {
  fill: #2D2D2D;
  font-weight: 700;
}

.u_online_text {
  fill: #2D2D2D;
  font-family: "SourceSans3", sans-serif;
  font-size: 90%;
  text-anchor: middle;
}
@media (min-width: 47.5rem) {
  .u_online_text {
    font-size: 80%;
  }
}

.u_online_company_logo {
  fill: #2D2D2D;
}

.u_online_warning_icon {
  fill: #2D2D2D;
  transition: 300ms;
}

.u_online_euro_icon,
.u_online_check_icon {
  fill: #2D2D2D;
  transition: 300ms;
}

.u_online_icon {
  fill: #EB7B28;
  transition: 300ms;
}

.u_online_button .normal {
  display: block;
}
.u_online_button .hover {
  display: none;
}
.u_online_button:hover .normal {
  display: none;
}
.u_online_button:hover .hover {
  display: block;
}
.u_online_button:hover .u_online_euro_icon,
.u_online_button:hover .u_online_warning_icon,
.u_online_button:hover .u_online_check_icon {
  fill: #EB7B28;
}
.u_online_button:hover .u_online_icon {
  fill: #2D2D2D;
}

.u_online_lines {
  fill: #EB7B28;
}

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

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

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

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

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

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

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

.infolist_cta_style, .infolist_cta {
  align-items: center;
  background: #C25400;
  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 .word-2, .infolist_cta .word-2,
.infolist_cta_style .word-4,
.infolist_cta .word-4 {
  color: #fff !important;
}
.infolist_cta_style:hover, .infolist_cta:hover, .infolist_cta_style:focus, .infolist_cta:focus {
  background: rgba(235, 123, 40, 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: #F7F7F7;
  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"><circle cx="7" cy="4" r="3" fill="%23EB7B28"/></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"><circle cx="7" cy="4" r="3" fill="%23EB7B28"/></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: #F7F7F7;
  color: #EB7B28;
  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: #EB7B28;
  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: #efefef;
}
.infolist_accordion_style .infolist_text:focus > *:not(h2):not(h3) {
  letter-spacing: calc((1rem + 0 * (100vw - 20rem) / (73.75)) * 0);
  font-size: 1rem;
}
@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(1rem + 0 * (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(235, 123, 40, 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 .touch_link {
  background: #F7F7F7;
  border: 0.125rem solid #F7F7F7;
  border-radius: 0.625rem;
  color: #2D2D2D;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0.9375rem 1.25rem;
  min-height: 4.375rem;
  transition: background 300ms, border 300ms, color 300ms, transform 300ms, box-shadow 300ms;
  user-select: none;
}
.infolist_overview .touch_link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #EB7B28;
  transition: left 300ms ease-in-out;
  z-index: 0;
}
.infolist_overview .touch_link > * {
  position: relative;
  z-index: 1;
}
.infolist_overview .touch_link:focus-visible {
  background: #2D2D2D;
  border-color: #2D2D2D;
  color: #fff;
  outline: 0.125rem solid #2D2D2D;
  outline-offset: 0.125rem;
  box-shadow: 0 0 0 0.375rem #fff;
}
.infolist_overview .touch_link:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.25rem 0.75rem rgba(235, 123, 40, 0.3), 0 0.125rem 0.375rem rgba(235, 123, 40, 0.2);
  color: #fff;
}
.infolist_overview .touch_link:hover::before {
  left: 0;
}
.infolist_overview .touch_link:active, .infolist_overview .touch_link.active {
  transform: translateY(0);
  box-shadow: 0 0.125rem 0.375rem rgba(235, 123, 40, 0.2), 0 0 0.1875rem #803700 inset;
  color: #fff;
}
.infolist_overview .touch_link:active::before, .infolist_overview .touch_link.active::before {
  left: 0;
}
.infolist_overview .touch_link .title {
  text-decoration: none;
  margin-bottom: 0;
  color: #2D2D2D;
}
.infolist_overview .touch_link .text {
  display: none;
}
.infolist_overview .touch_link .icon {
  display: block;
  fill: #EB7B28;
  flex-shrink: 0;
  height: 2.5rem;
  transition: fill 300ms;
  width: 2.5rem;
  rotate: 270deg;
}
.infolist_overview .touch_link:hover {
  border-color: #EB7B28;
}
.infolist_overview .touch_link:hover .icon {
  fill: #fff;
}
.infolist_overview .touch_link:hover .title {
  color: #fff;
}

.digital_overview .entry {
  margin-bottom: 1.875rem;
}

.lexikon_bereich h1 span, .lexikon_bereich h2 span {
  font-weight: 400;
  color: #7D7069;
}
.lexikon_bereich h1 .word-2,
.lexikon_bereich h1 .word-4, .lexikon_bereich h2 .word-2,
.lexikon_bereich h2 .word-4 {
  font-weight: 600;
  color: #C25400;
}

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

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

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

.job_benefit_overview .row > div {
  display: flex;
}
.job_benefit_overview .entry {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 0.0625rem solid #696765;
  border-radius: 1.5625rem;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
  margin-bottom: 3em;
  transition: transform 300ms;
}
.job_benefit_overview .entry .photo {
  margin: 0;
  width: 100%;
  height: 12rem;
  object-fit: cover;
  overflow: hidden;
  border-top-left-radius: 1.5625rem;
  border-top-right-radius: 1.5625rem;
}
.job_benefit_overview .entry .photo img {
  border-top-left-radius: 1.5625rem;
  border-top-right-radius: 1.5625rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms;
  transform-origin: center center;
}
.job_benefit_overview .entry .teaser_text {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
@media (min-width: 20rem) {
  .job_benefit_overview .entry .teaser_text {
    padding-top: calc(0.75rem + 1 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .job_benefit_overview .entry .teaser_text {
    padding-top: 1.75rem;
  }
}
@media (min-width: 20rem) {
  .job_benefit_overview .entry .teaser_text {
    padding-bottom: calc(0.75rem + 1 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .job_benefit_overview .entry .teaser_text {
    padding-bottom: 1.75rem;
  }
}
@media (min-width: 20rem) {
  .job_benefit_overview .entry .teaser_text {
    padding-left: calc(0.625rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .job_benefit_overview .entry .teaser_text {
    padding-left: 1.5625rem;
  }
}
@media (min-width: 20rem) {
  .job_benefit_overview .entry .teaser_text {
    padding-right: calc(0.625rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .job_benefit_overview .entry .teaser_text {
    padding-right: 1.5625rem;
  }
}
.job_benefit_overview .entry .teaser_text .title {
  text-decoration: none;
  color: #2D2D2D;
}
.job_benefit_overview .icon {
  display: block;
  height: 6.25rem;
  width: 6.25rem;
}

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

.job_entry .description {
  margin: 5rem 0;
}
@media (min-width: 61.875rem) {
  .job_entry .description {
    margin: 6.25rem 0 3.125rem;
  }
}
.job_entry .image_wrapper {
  height: 100%;
  max-width: 100vw;
  width: 100%;
}
.job_entry figure {
  height: 100%;
  padding: 0;
  margin-right: calc(-50vw + 50% + 0.9375rem);
  margin-bottom: 0;
  max-height: 12.5rem;
}
@media (min-width: 20rem) {
  .job_entry figure {
    margin-right: calc(-50vw + 50% + calc(0.9375rem + 2.1875 * (100vw - 20rem) / (73.75)));
  }
}
@media (min-width: 47.5rem) {
  .job_entry figure {
    max-height: none;
  }
}
@media (min-width: 93.75rem) {
  .job_entry figure {
    margin-right: calc(-50vw + 50% + 3.125rem);
  }
}
.job_entry figure img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.job_entry_more_jobs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2.1875rem;
  flex-wrap: wrap;
}
.job_entry_more_jobs ul li {
  padding-left: 0;
  list-style: none;
}
.job_entry_more_jobs ul li a {
  background: #F7F7F7;
  border: 0.125rem solid #F7F7F7;
  border-radius: 0.625rem;
  color: #2D2D2D;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0.9375rem 1.25rem;
  min-height: 4.375rem;
  transition: background 300ms, border 300ms, color 300ms, transform 300ms, box-shadow 300ms;
  user-select: none;
  flex-direction: row;
  align-items: center;
  gap: 0.625rem;
  height: 100%;
  text-decoration: none;
  color: #2D2D2D;
}
.job_entry_more_jobs ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #EB7B28;
  transition: left 300ms ease-in-out;
  z-index: 0;
}
.job_entry_more_jobs ul li a > * {
  position: relative;
  z-index: 1;
}
.job_entry_more_jobs ul li a .title {
  margin: 0;
  padding: 0;
  transition: color 300ms;
}
.job_entry_more_jobs ul li a:focus-visible {
  background: #2D2D2D;
  border-color: #2D2D2D;
  color: #fff;
  outline: 0.125rem solid #2D2D2D;
  outline-offset: 0.125rem;
  box-shadow: 0 0 0 0.375rem #fff;
}
.job_entry_more_jobs ul li a:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.25rem 0.75rem rgba(235, 123, 40, 0.3), 0 0.125rem 0.375rem rgba(235, 123, 40, 0.2);
}
.job_entry_more_jobs ul li a:hover::before {
  left: 0;
}
.job_entry_more_jobs ul li a:hover .title {
  color: #fff;
}
.job_entry_more_jobs ul li a:active, .job_entry_more_jobs ul li a.active {
  transform: translateY(0);
  box-shadow: 0 0.125rem 0.375rem rgba(235, 123, 40, 0.2), 0 0 0.1875rem #803700 inset;
  color: #fff;
}
.job_entry_more_jobs ul li a:active::before, .job_entry_more_jobs ul li a.active::before {
  left: 0;
}
.job_entry_more_jobs ul li a .icon {
  display: block;
  fill: #EB7B28;
  flex-shrink: 0;
  height: 2.5rem;
  transition: fill 300ms;
  width: 2.5rem;
  rotate: 270deg;
}
.job_entry_more_jobs ul li a:hover {
  border-color: #EB7B28;
}
.job_entry_more_jobs ul li a:hover .icon {
  fill: #fff;
}
.job_entry_more_jobs ul li a:hover .text {
  color: #fff;
}

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

.job_overview {
  margin-bottom: 0.75em;
  margin-top: 3.75rem;
  display: flex;
  flex-direction: column;
}
.job_overview .entry {
  background: #F7F7F7;
  border: 0.125rem solid #F7F7F7;
  border-radius: 0.625rem;
  color: #2D2D2D;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0;
  margin-bottom: 1.875rem;
  padding: 0.9375rem 1.25rem;
  min-height: 4.375rem;
  transition: background 300ms, border 300ms, color 300ms, transform 300ms, box-shadow 300ms;
  user-select: none;
}
.job_overview .entry a {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #2D2D2D;
}
.job_overview .entry::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #EB7B28;
  transition: left 300ms ease-in-out;
  z-index: 0;
}
.job_overview .entry > * {
  position: relative;
  z-index: 1;
}
.job_overview .entry:focus-visible {
  background: #2D2D2D;
  border-color: #2D2D2D;
  color: #fff;
  outline: 0.125rem solid #2D2D2D;
  outline-offset: 0.125rem;
  box-shadow: 0 0 0 0.375rem #fff;
}
.job_overview .entry:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.25rem 0.75rem rgba(235, 123, 40, 0.3), 0 0.125rem 0.375rem rgba(235, 123, 40, 0.2);
  color: #fff;
}
.job_overview .entry:hover::before {
  left: 0;
}
.job_overview .entry:hover em {
  color: #fff;
}
.job_overview .entry:active, .job_overview .entry.active {
  transform: translateY(0);
  box-shadow: 0 0.125rem 0.375rem rgba(235, 123, 40, 0.2), 0 0 0.1875rem #803700 inset;
  color: #fff;
}
.job_overview .entry:active::before, .job_overview .entry.active::before {
  left: 0;
}
.job_overview .entry .icon {
  display: block;
  fill: #EB7B28;
  flex-shrink: 0;
  height: 2.5rem;
  transition: fill 300ms;
  width: 2.5rem;
  rotate: 270deg;
  order: 2;
}
.job_overview .entry .text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.125rem;
  flex: 1;
}
.job_overview .entry .title {
  font-weight: 400;
  color: #2D2D2D;
  margin: 0;
  transition: color 300ms;
  padding: 0;
  order: 1;
  text-decoration: none;
}
.job_overview .entry:hover {
  border-color: #EB7B28;
}
.job_overview .entry:hover .icon {
  fill: #fff;
}
.job_overview .entry:hover .title,
.job_overview .entry:hover p {
  color: #fff;
}

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

.section {
  margin-top: 5rem;
  margin-bottom: 5rem;
  padding: 1.5em 0 1.5em 0;
  position: relative;
}
@media (min-width: 20rem) {
  .section {
    margin-top: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .section {
    margin-top: 6.25rem;
  }
}
@media (min-width: 20rem) {
  .section {
    margin-bottom: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .section {
    margin-bottom: 6.25rem;
  }
}

.section_top {
  margin-top: 5rem;
  padding: 1.5em 0 1.5em 0;
  position: relative;
}
@media (min-width: 20rem) {
  .section_top {
    margin-top: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .section_top {
    margin-top: 6.25rem;
  }
}

.section_bottom {
  margin-bottom: 5rem;
  padding: 1.5em 0 1.5em 0;
  position: relative;
}
@media (min-width: 20rem) {
  .section_bottom {
    margin-bottom: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .section_bottom {
    margin-bottom: 6.25rem;
  }
}

.section_bg {
  position: relative;
  padding: 1.5em 0 1.5em;
}
.section_bg .title,
.section_bg h2 {
  padding-top: 0;
  color: #fff;
  margin-bottom: 1.875rem;
}
.section_bg .title .word-2,
.section_bg .title .word-4,
.section_bg h2 .word-2,
.section_bg h2 .word-4 {
  color: #fff;
}
.section_bg .title > span,
.section_bg h2 > span {
  color: #fff;
}
.section_bg .legend {
  color: #fff;
}
.section_bg p,
.section_bg .word-2 {
  color: #fff;
}
.section_bg .content > * {
  color: #fff;
}
.section_bg .contact_headline {
  padding-bottom: 0;
  margin-bottom: 0;
}
.section_bg .contact_headline .title {
  margin-bottom: 0;
  color: #fff;
}
.section_bg::before {
  background-color: #7D7069;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -2;
}
.section_bg::after {
  content: "";
  position: absolute;
  left: calc(-50vw + 50%);
  top: -21.875rem;
  width: 100%;
  bottom: 0;
  background-image: url("../../common/images/logo_element_left.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  z-index: -1;
  pointer-events: none;
}
.section_bg::before {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.section_bg_without_logo_element {
  position: relative;
  padding: 1.5em 0 1.5em;
}
.section_bg_without_logo_element .title,
.section_bg_without_logo_element h2 {
  padding-top: 0;
  color: #fff;
  margin-bottom: 1.875rem;
  margin-top: 5rem;
}
@media (min-width: 20rem) {
  .section_bg_without_logo_element .title,
.section_bg_without_logo_element h2 {
    margin-top: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .section_bg_without_logo_element .title,
.section_bg_without_logo_element h2 {
    margin-top: 6.25rem;
  }
}
.section_bg_without_logo_element .title > span,
.section_bg_without_logo_element h2 > span {
  color: #fff;
}
.section_bg_without_logo_element .title .word-2,
.section_bg_without_logo_element .title .word,
.section_bg_without_logo_element .title em,
.section_bg_without_logo_element h2 .word-2,
.section_bg_without_logo_element h2 .word,
.section_bg_without_logo_element h2 em {
  color: #fff;
}
.section_bg_without_logo_element p,
.section_bg_without_logo_element span,
.section_bg_without_logo_element label,
.section_bg_without_logo_element a {
  color: #fff;
}
.section_bg_without_logo_element .content > * {
  color: #fff;
}
.section_bg_without_logo_element .button {
  margin-bottom: 5rem;
}
@media (min-width: 20rem) {
  .section_bg_without_logo_element .button {
    margin-bottom: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .section_bg_without_logo_element .button {
    margin-bottom: 6.25rem;
  }
}
.section_bg_without_logo_element::before {
  background-color: #7D7069;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -2;
}
.section_bg_without_logo_element::before {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.background_image_section {
  padding: 1.5em 0 1.5em;
}
.background_image_section > .title {
  padding-top: 0;
  color: #fff;
}
.background_image_section .content > * {
  color: #fff;
}
.background_image_section .section_background_image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  z-index: -10;
}
.background_image_section .section_background_image::before {
  background-color: #EB7B28;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 0;
}
.background_image_section .section_background_image {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

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

.orange_headline {
  color: #C25400;
}
.orange_headline .word {
  font-weight: 300 !important;
}

.no_margin_top .section {
  margin-top: 0 !important;
}

.page_wrapper {
  overflow-x: hidden;
}

.no_margin {
  margin: 0;
}

.no_padding {
  padding: 0;
}

.no_gap {
  margin: 0;
  padding: 0;
}

.no_margin_top {
  margin-top: 0;
}

.no_margin_bottom {
  margin-bottom: 0;
}

.margin_top_30 {
  margin-top: 1.875rem;
}

.margin_top_50 {
  margin-top: 3.125rem;
}

.margin_bottom_20 {
  margin-bottom: 1.25rem;
}

.margin_main main {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
@media (min-width: 20rem) {
  .margin_main main {
    margin-top: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .margin_main main {
    margin-top: 6.25rem;
  }
}
@media (min-width: 20rem) {
  .margin_main main {
    margin-bottom: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .margin_main main {
    margin-bottom: 6.25rem;
  }
}

.margin_headline {
  margin-bottom: 1.875rem;
  margin-top: 3.125rem;
}

.no_padding_top {
  padding-top: 0;
}

.no_padding_bottom {
  padding-bottom: 0;
}

.gap_top_bottom {
  gap: 1.875rem 0;
}

body:not(.startpage) .word-2,
body:not(.startpage) .word-4 {
  color: #C25400;
  font-weight: 600;
}

body.online-tools main {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
@media (min-width: 20rem) {
  body.online-tools main {
    margin-top: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  body.online-tools main {
    margin-top: 6.25rem;
  }
}
@media (min-width: 20rem) {
  body.online-tools main {
    margin-bottom: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  body.online-tools main {
    margin-bottom: 6.25rem;
  }
}

.infolist_content {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
@media (min-width: 20rem) {
  .infolist_content {
    margin-top: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .infolist_content {
    margin-top: 6.25rem;
  }
}
@media (min-width: 20rem) {
  .infolist_content {
    margin-bottom: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .infolist_content {
    margin-bottom: 6.25rem;
  }
}

.einleitung .intro {
  margin: 5rem 0;
}
@media (min-width: 75rem) {
  .einleitung .intro {
    margin: 6.25rem 0;
  }
}
.einleitung .text_center {
  text-align: center;
  display: flex;
  align-items: center;
  height: 100%;
}
.einleitung .image_wrapper {
  height: 100%;
  max-width: 100vw;
  width: 100%;
  position: relative;
}
.einleitung figure {
  max-height: 25rem;
  padding: 0;
  margin-right: calc(-50vw + 50%);
  margin-left: calc(-50vw + 50%);
  margin-bottom: 0;
  overflow: hidden;
}
.einleitung figure.img_wirtschaftspruefung img {
  object-position: center;
}
@media (min-width: 61.875rem) {
  .einleitung figure {
    margin-left: auto;
    margin-right: calc(-41vw + 100%);
    max-height: none;
  }
}
@media (min-width: 75rem) {
  .einleitung figure {
    margin-right: calc(-41vw + 120%);
    text-align: right;
  }
}
@media (min-width: 160rem) {
  .einleitung figure {
    margin-right: -33rem;
  }
}
.einleitung figure img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 61.875rem) {
  .einleitung figure img {
    object-position: 70%;
  }
}
@media (min-width: 75rem) {
  .einleitung figure img {
    object-position: right center;
  }
}

.leistungen {
  text-align: center;
}
.leistungen h2 {
  margin-bottom: 4.375rem;
  padding-top: 0;
}

.confirm_page {
  margin-top: 5rem;
  margin-bottom: 5rem;
  text-align: center;
}
@media (min-width: 20rem) {
  .confirm_page {
    margin-top: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .confirm_page {
    margin-top: 6.25rem;
  }
}
@media (min-width: 20rem) {
  .confirm_page {
    margin-bottom: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .confirm_page {
    margin-bottom: 6.25rem;
  }
}

.section.online-tools .content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 47.5rem) {
  .section.online-tools .content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5625rem 1.875rem;
  }
}
@media (min-width: 93.75rem) {
  .section.online-tools .content {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem 3.125rem;
  }
}
.section.online-tools .content [class*=_overview] {
  display: contents;
}
.section.online-tools .content [class*=_overview] .entry,
.section.online-tools .content [class*=_overview] .touch_link,
.section.online-tools .content [class*=_overview] a[class*=entry],
.section.online-tools .content [class*=_overview] a[class*=touch_link] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F7F7F7;
  border: 0.125rem solid #F7F7F7;
  border-radius: 0.625rem;
  padding: 0.9375rem 1.25rem;
  min-height: 4.375rem;
  text-decoration: none;
  color: #2D2D2D;
  transition: all 300ms;
}
.section.online-tools .content [class*=_overview] .entry:hover,
.section.online-tools .content [class*=_overview] .touch_link:hover,
.section.online-tools .content [class*=_overview] a[class*=entry]:hover,
.section.online-tools .content [class*=_overview] a[class*=touch_link]:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  border-color: #EB7B28;
}
.section.online-tools .content [class*=_overview] .entry:hover .icon,
.section.online-tools .content [class*=_overview] .touch_link:hover .icon,
.section.online-tools .content [class*=_overview] a[class*=entry]:hover .icon,
.section.online-tools .content [class*=_overview] a[class*=touch_link]:hover .icon {
  fill: #fff;
}
.section.online-tools .content [class*=_overview] .entry:hover .title,
.section.online-tools .content [class*=_overview] .touch_link:hover .title,
.section.online-tools .content [class*=_overview] a[class*=entry]:hover .title,
.section.online-tools .content [class*=_overview] a[class*=touch_link]:hover .title {
  color: #fff;
  text-decoration: none;
  padding: 0;
  margin: 0;
}
.section.online-tools .content [class*=_overview] .entry:focus-visible,
.section.online-tools .content [class*=_overview] .touch_link:focus-visible,
.section.online-tools .content [class*=_overview] a[class*=entry]:focus-visible,
.section.online-tools .content [class*=_overview] a[class*=touch_link]:focus-visible {
  background: #2D2D2D;
  border-color: #2D2D2D;
  color: #fff;
  outline: 0.125rem solid #2D2D2D;
  outline-offset: 0.125rem;
  box-shadow: 0 0 0 0.375rem #fff;
}

.headline_onlinetools .title {
  margin-bottom: 0;
  padding-top: 5rem;
}
@media (min-width: 20rem) {
  .headline_onlinetools .title {
    padding-top: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .headline_onlinetools .title {
    padding-top: 6.25rem;
  }
}

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

.newsletter_quick_subscribe {
  padding-top: 1.25rem;
}
@media (min-width: 20rem) {
  .newsletter_quick_subscribe {
    padding-top: calc(1.25rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .newsletter_quick_subscribe {
    padding-top: 1.875rem;
  }
}
.newsletter_quick_subscribe form {
  display: block;
}
@media (min-width: 30rem) {
  .newsletter_quick_subscribe form {
    display: flex;
    align-items: end;
  }
}
.newsletter_quick_subscribe .entry {
  width: 100%;
}
.newsletter_quick_subscribe input[type=email] {
  appearance: none;
  background: #fff;
  border: 0.125rem solid #EB7B28;
  border-right: none;
  border-radius: 0.625rem;
  box-shadow: 0 0 0 #dedede inset;
  color: #2D2D2D;
  margin: 0;
  padding: 0 0.75em;
  transition: background 300ms, border-color 300ms, box-shadow 300ms, color 300ms, outline 300ms;
  width: 100%;
  height: 2.75rem;
}
@media (min-width: 20rem) {
  .newsletter_quick_subscribe input[type=email] {
    height: calc(2.75rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .newsletter_quick_subscribe input[type=email] {
    height: 3.375rem;
  }
}
.newsletter_quick_subscribe input[type=email]:focus {
  background: #fff;
  border-color: #EB7B28;
  box-shadow: 0 0 0.1875rem #EB7B28 inset, 0 0 0 0.1875rem rgba(235, 123, 40, 0.2);
  color: #2D2D2D;
  outline: 0;
}
.newsletter_quick_subscribe button {
  background: #C25400;
  border: 0.125rem solid #EB7B28;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms, transform 300ms, box-shadow 300ms;
  user-select: none;
  padding: 0 1.25rem 0 1.25rem;
  border: 0.125rem solid #EB7B28;
  border-radius: 0.625rem;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0 1.5em;
  width: 100%;
  height: 2.75rem;
}
.newsletter_quick_subscribe button > span {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 2.625rem;
}
@media (min-width: 20rem) {
  .newsletter_quick_subscribe button > span {
    min-height: calc(2.625rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .newsletter_quick_subscribe button > span {
    min-height: 3.25rem;
  }
}
.newsletter_quick_subscribe button .icon {
  fill: #fff;
  flex-shrink: 0;
  height: 1.5rem;
  transition: fill 300ms;
  width: 1.5rem;
}
.newsletter_quick_subscribe button .text {
  font-weight: 400;
  padding: 0.375em 0;
}
.newsletter_quick_subscribe button .icon + .text {
  padding-left: 0.4995em;
}
@media (min-width: 20rem) {
  .newsletter_quick_subscribe button {
    height: calc(2.75rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .newsletter_quick_subscribe button {
    height: 3.375rem;
  }
}
.newsletter_quick_subscribe button > span {
  min-height: 2.625rem;
}
@media (min-width: 20rem) {
  .newsletter_quick_subscribe button > span {
    min-height: calc(2.625rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .newsletter_quick_subscribe button > span {
    min-height: 3.25rem;
  }
}
@media (min-width: 30rem) {
  .newsletter_quick_subscribe button {
    flex-shrink: 0;
    width: auto;
    transform: translateX(-1.25rem);
    z-index: 10;
  }
  .newsletter_quick_subscribe button:hover {
    transform: translateX(-1.125rem);
  }
}
.newsletter_quick_subscribe button:focus {
  box-shadow: 0 0 0 0.1875rem rgba(235, 123, 40, 0.2);
  background: #2D2D2D;
  border-color: #2D2D2D;
  color: #fff;
  transform: translateX(-1.25rem);
}
.newsletter_quick_subscribe button:focus .icon {
  fill: #fff;
}

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

.toggle_offcanvas_menu {
  display: block;
  position: relative;
}
@media (min-width: 67.5rem) {
  .toggle_offcanvas_menu {
    display: none;
  }
}
.toggle_offcanvas_menu .open_btn {
  align-items: center;
  cursor: pointer;
  font-size: 100%;
  font-weight: 700;
  position: relative;
  text-transform: none;
  user-select: none;
  z-index: 10;
  display: inline-flex;
  min-height: 2.625rem;
}
@media (min-width: 20rem) {
  .toggle_offcanvas_menu .open_btn {
    min-height: calc(2.625rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .toggle_offcanvas_menu .open_btn {
    min-height: 3.25rem;
  }
}
.toggle_offcanvas_menu .open_btn .sr_open {
  display: block;
}
.toggle_offcanvas_menu .open_btn .sr_close {
  display: none;
}
.toggle_offcanvas_menu .open_btn .icon {
  height: 1.875rem;
  margin-right: 0.75em;
  position: relative;
  width: 1.875rem;
}
.toggle_offcanvas_menu .open_btn .icon .line {
  background: #fff;
  display: block;
  height: 0.3125rem;
  position: absolute;
  width: 100%;
  transition: top 300ms, transform 300ms;
}
.toggle_offcanvas_menu .open_btn .icon .line_1 {
  top: 0;
}
.toggle_offcanvas_menu .open_btn .icon .line_2 {
  top: 50%;
  transform: translateY(-50%);
}
.toggle_offcanvas_menu .open_btn .icon .line_3 {
  top: 100%;
  transform: translateY(-100%);
}
.toggle_offcanvas_menu .open_btn.open .icon .line_1 {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition-delay: 150ms;
}
.toggle_offcanvas_menu .open_btn.open .icon .line_2 {
  transform: translateY(-50%) scaleX(0);
}
.toggle_offcanvas_menu .open_btn.open .icon .line_3 {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition-delay: 150ms;
}
.toggle_offcanvas_menu .open_btn.open .sr_open {
  display: none;
}
.toggle_offcanvas_menu .open_btn.open .sr_close {
  display: block;
}

.offcanvas_menu {
  display: flex;
  position: fixed;
  margin: 0;
  padding: 0;
  top: 0;
  height: 100%;
  max-height: 100%;
  min-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  border: none;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease-in-out;
  z-index: 1000;
  -webkit-backdrop-filter: blur(0.125rem);
  backdrop-filter: blur(0.125rem);
  background: rgba(45, 45, 45, 0.5);
  min-width: 100%;
}
.offcanvas_menu .menu_wrapper {
  transition: all 300ms ease-in-out;
  padding: 0.75em;
  min-height: 100%;
  background-color: #fff;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 15.625rem;
  position: absolute;
  left: 0;
  transform-origin: left;
  transform: translateX(-100%);
}
@media (min-width: 30rem) {
  .offcanvas_menu .menu_wrapper {
    width: 21.875rem;
  }
}
.offcanvas_menu[open] {
  opacity: 1;
  visibility: visible;
}
.offcanvas_menu[open] .menu_wrapper {
  transform: translateX(0);
}
.offcanvas_menu .close_btn {
  margin-bottom: 0.75em;
  display: inline-flex;
}
.offcanvas_menu .close_btn .icon {
  height: 1.875rem;
  width: 1.875rem;
  margin: 0;
  margin-right: 0.75em;
  position: relative;
}
.offcanvas_menu .close_btn .icon .line {
  background: #fff;
  display: block;
  height: 0.3125rem;
  position: absolute;
  width: 100%;
  top: 50%;
}
.offcanvas_menu .close_btn .icon .line_1 {
  opacity: 1;
  transition: top 300ms, transform 300ms;
  visibility: visible;
  transform: translateY(-50%) rotate(45deg);
}
.offcanvas_menu .close_btn .icon .line_2 {
  top: 50%;
  transition: bottom 300ms, transform 300ms;
  transform: translateY(-50%) rotate(-45deg);
}
.offcanvas_menu .navigation {
  width: 100%;
  position: relative;
}
.offcanvas_menu .navigation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(235, 123, 40, 0.05) 0%, rgba(235, 123, 40, 0.02) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.offcanvas_menu .navigation > ul {
  position: relative;
  z-index: 1;
}
.offcanvas_menu .navigation > ul ul {
  max-height: 0;
  margin-bottom: 0;
  overflow: hidden;
  transition: max-height 600ms ease-in-out;
  background: rgba(247, 247, 247, 0.3);
  border-radius: 0.5rem;
  margin-top: 0.375em;
  box-shadow: inset 0 0.125rem 0.25rem rgba(45, 45, 45, 0.1);
}
.offcanvas_menu .navigation > ul {
  width: 100%;
}
.offcanvas_menu .navigation > ul > li {
  margin-bottom: 0.375em;
  position: relative;
}
.offcanvas_menu .navigation > ul > li > a {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #7D7069;
  font-weight: 400;
  line-height: 2.75rem;
  padding: 0.75em 1.125em;
  border-radius: 0.75rem;
  position: relative;
  transition: all 300ms ease-in-out;
  text-decoration: none;
  overflow: hidden;
}
.offcanvas_menu .navigation > ul > li > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(235, 123, 40, 0.1) 50%, transparent 100%);
  transition: left 600ms ease-in-out;
  z-index: 0;
}
.offcanvas_menu .navigation > ul > li > a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(235, 123, 40, 0.08) 0%, rgba(235, 123, 40, 0.04) 100%);
  border-radius: 0.75rem;
  opacity: 0;
  transition: opacity 300ms ease-in-out;
  z-index: 0;
}
.offcanvas_menu .navigation > ul > li > a > * {
  position: relative;
  z-index: 1;
}
.offcanvas_menu .navigation > ul > li > a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #7D7069;
  height: 1rem;
  width: 1rem;
  margin-left: 0.75em;
  transition: all 300ms ease-in-out;
  flex-shrink: 0;
}
@media (min-width: 20rem) {
  .offcanvas_menu .navigation > ul > li > a .icon {
    height: calc(1rem + 0.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .offcanvas_menu .navigation > ul > li > a .icon {
    height: 1.125rem;
  }
}
@media (min-width: 20rem) {
  .offcanvas_menu .navigation > ul > li > a .icon {
    width: calc(1rem + 0.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .offcanvas_menu .navigation > ul > li > a .icon {
    width: 1.125rem;
  }
}
.offcanvas_menu .navigation > ul > li > a .icon svg {
  transition: all 300ms ease-in-out;
  filter: drop-shadow(0 0.0625rem 0.125rem rgba(45, 45, 45, 0.1));
}
.offcanvas_menu .navigation > ul > li > a.active {
  color: #C25400;
  background: rgba(235, 123, 40, 0.05);
  box-shadow: 0 0.125rem 0.5rem rgba(235, 123, 40, 0.15);
}
.offcanvas_menu .navigation > ul > li > a.active::after {
  opacity: 1;
}
.offcanvas_menu .navigation > ul > li > a.active .icon {
  fill: #EB7B28;
  transform: scale(1.1);
}
.offcanvas_menu .navigation > ul > li > a.active .icon svg {
  filter: drop-shadow(0 0.125rem 0.25rem rgba(235, 123, 40, 0.2));
}
.offcanvas_menu .navigation > ul > li > a:hover {
  color: #C25400;
  box-shadow: 0 0.25rem 0.75rem rgba(235, 123, 40, 0.15);
}
.offcanvas_menu .navigation > ul > li > a:hover::before {
  left: 100%;
}
.offcanvas_menu .navigation > ul > li > a:hover::after {
  opacity: 1;
}
.offcanvas_menu .navigation > ul > li > a:hover .icon {
  fill: #EB7B28;
  transform: scale(1.05);
}
.offcanvas_menu .navigation > ul > li > a:hover .icon svg {
  filter: drop-shadow(0 0.125rem 0.25rem rgba(235, 123, 40, 0.2));
}
.offcanvas_menu .navigation > ul > li > a:focus {
  outline: 0.125rem solid #EB7B28;
  outline-offset: 0.125rem;
}
.offcanvas_menu .navigation > ul > li ul {
  padding-left: 0;
  margin-left: 0.375em;
}
.offcanvas_menu .navigation > ul li.expanded > ul {
  display: block;
  max-height: 31.25rem;
}
.offcanvas_menu .navigation > ul li.expanded > a .icon svg {
  transform: rotate(180deg) scale(1.1);
}
.offcanvas_menu .navigation > ul ul a {
  color: #2D2D2D;
  display: flex;
  align-items: center;
  padding: 0.375em 0.75em 0.375em 0.75em;
  border-radius: 0.375rem;
  position: relative;
  transition: all 300ms ease-in-out;
  text-decoration: none;
  font-weight: 400;
}
.offcanvas_menu .navigation > ul ul a.active {
  color: #C25400;
  background: rgba(235, 123, 40, 0.08);
  font-weight: 600;
}
.offcanvas_menu .navigation > ul ul a:hover {
  color: #C25400;
  background: rgba(235, 123, 40, 0.05);
}
.offcanvas_menu .navigation > ul ul a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #2D2D2D;
  height: 0.75rem;
  width: 0.75rem;
  margin-left: 0.375em;
  transition: all 300ms ease-in-out;
}
@media (min-width: 20rem) {
  .offcanvas_menu .navigation > ul ul a .icon {
    height: calc(0.75rem + 0.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .offcanvas_menu .navigation > ul ul a .icon {
    height: 0.875rem;
  }
}
@media (min-width: 20rem) {
  .offcanvas_menu .navigation > ul ul a .icon {
    width: calc(0.75rem + 0.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .offcanvas_menu .navigation > ul ul a .icon {
    width: 0.875rem;
  }
}
.offcanvas_menu .navigation > ul ul a .icon svg {
  transition: all 300ms ease-in-out;
}
.offcanvas_menu .navigation > ul ul a:hover .icon, .offcanvas_menu .navigation > ul ul a.active .icon {
  fill: #EB7B28;
}

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

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

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

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

.popup_close {
  align-items: center;
  background: #EB7B28;
  border-radius: 0.625rem 0.625rem 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.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .popup_close {
    height: 3.375rem;
  }
}
@media (min-width: 20rem) {
  .popup_close {
    width: calc(2.75rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .popup_close {
    width: 3.375rem;
  }
}
.popup_close svg {
  fill: #fff;
  height: 1.5rem;
  width: 1.5rem;
}

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

.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/onlinetools.scss */

.onlinetool_v2_overview {
  display: flex;
  flex-direction: column;
}
.onlinetool_v2_overview .entry {
  background: #F7F7F7;
  border: 0.125rem solid #F7F7F7;
  border-radius: 0.625rem;
  color: #2D2D2D;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0.9375rem 1.25rem;
  min-height: 4.375rem;
  transition: background 300ms, border 300ms, color 300ms, transform 300ms, box-shadow 300ms;
  user-select: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  height: 100%;
  color: #2D2D2D;
}
.onlinetool_v2_overview .entry::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #EB7B28;
  transition: left 300ms ease-in-out;
  z-index: 0;
}
.onlinetool_v2_overview .entry > * {
  position: relative;
  z-index: 1;
}
.onlinetool_v2_overview .entry:focus-visible {
  background: #2D2D2D;
  border-color: #2D2D2D;
  color: #fff;
  outline: 0.125rem solid #2D2D2D;
  outline-offset: 0.125rem;
  box-shadow: 0 0 0 0.375rem #fff;
}
.onlinetool_v2_overview .entry:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.25rem 0.75rem rgba(235, 123, 40, 0.3), 0 0.125rem 0.375rem rgba(235, 123, 40, 0.2);
  color: #fff;
}
.onlinetool_v2_overview .entry:hover::before {
  left: 0;
}
.onlinetool_v2_overview .entry:active, .onlinetool_v2_overview .entry.active {
  transform: translateY(0);
  box-shadow: 0 0.125rem 0.375rem rgba(235, 123, 40, 0.2), 0 0 0.1875rem #803700 inset;
  color: #fff;
}
.onlinetool_v2_overview .entry:active::before, .onlinetool_v2_overview .entry.active::before {
  left: 0;
}
.onlinetool_v2_overview .entry .icon {
  display: block;
  fill: #EB7B28;
  flex-shrink: 0;
  height: 2.5rem;
  transition: fill 300ms;
  width: 2.5rem;
  rotate: 270deg;
}
.onlinetool_v2_overview .entry .text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.125rem;
  flex: 1;
}
.onlinetool_v2_overview .entry .title {
  font-weight: 400;
  color: #2D2D2D;
  margin: 0;
  transition: color 300ms;
  padding: 0;
  text-decoration: none;
}
.onlinetool_v2_overview .entry p {
  color: #2D2D2D;
  margin: 0;
  line-height: 1.5;
  transition: color 300ms;
}
.onlinetool_v2_overview .entry:hover {
  border-color: #EB7B28;
}
.onlinetool_v2_overview .entry:hover .icon {
  fill: #fff;
}
.onlinetool_v2_overview .entry:hover .title,
.onlinetool_v2_overview .entry:hover p {
  color: #fff;
}

.online-tools .image_wrapper {
  height: 100%;
  max-width: 100vw;
  width: 100%;
}
.online-tools figure {
  height: 100%;
  max-height: 42.5rem;
  padding: 0;
  margin-right: calc(-50vw + 50% + 0.9375rem);
  margin-bottom: 0;
}
@media (min-width: 20rem) {
  .online-tools figure {
    margin-right: calc(-50vw + 50% + calc(0.9375rem + 2.1875 * (100vw - 20rem) / (73.75)));
  }
}
@media (min-width: 93.75rem) {
  .online-tools figure {
    margin-right: calc(-50vw + 50% + 3.125rem);
  }
}
.online-tools figure img {
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

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

.open_street_map .map {
  height: 21.875rem;
  background-color: #F7F7F7;
  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(247, 247, 247, 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 .saddr .tooltip_wrapper input {
  border: 0.125rem solid #EB7B28;
}
.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;
  }
}
.open_street_map .plan_route .button_wrapper {
  z-index: 10;
}
@media (min-width: 47.5rem) {
  .open_street_map .plan_route .button_wrapper {
    transform: translateX(-2.5rem);
  }
}
@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: #C25400;
  border: 0.0625rem solid #EB7B28;
  border-radius: 0.625rem;
  color: #fff;
  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: #2D2D2D;
  border: 0.0625rem solid #2D2D2D;
  box-shadow: 0 0 0 0.1875rem rgba(235, 123, 40, 0.2);
  color: #fff;
  outline: 0;
}
.open_street_map .ol-overlaycontainer-stopevent button:hover {
  background: #2D2D2D;
  border: 0.0625rem solid #2D2D2D;
  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: 99;
}
.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: 99;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-attribution ul {
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  color: black;
  display: flex;
  height: 2.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: 85%;
  margin: 0 0.75em;
  padding: 0;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-attribution ul li a {
  align-items: center;
  display: inline-flex;
  margin: 0 0.3125rem;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-attribution button {
  display: none;
}
.open_street_map.disable_ui .ol-overlaycontainer-stopevent .ol-zoom-in,
.open_street_map.disable_ui .ol-overlaycontainer-stopevent .ol-zoom-out {
  display: none;
}

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

.opening_times .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: #cd6213;
  color: #fff;
}

* {
  -webkit-tap-highlight-color: rgba(235, 123, 40, 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((1rem + 0 * (100vw - 20rem) / (73.75)) * 0);
  font-size: 1rem;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background: #fff;
  color: #2D2D2D;
  font-family: "SourceSans3", 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(1rem + 0 * (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;
}

body:not(.startpage) .word-2 {
  color: #C25400;
  font-weight: 600;
}

h1,
.style_h1,
[data-otool-headlinestyling=style_h1] .ot_headline {
  letter-spacing: calc((2.5rem + 0.9375 * (100vw - 20rem) / (73.75)) * 0.02);
  font-size: 2.5rem;
  color: #7D7069;
  font-family: "SourceSans3", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 0.75em;
}
@media (min-width: 93.75rem) {
  h1,
.style_h1,
[data-otool-headlinestyling=style_h1] .ot_headline {
    letter-spacing: calc(3.4375rem * 0.02);
  }
}
@media (min-width: 20rem) {
  h1,
.style_h1,
[data-otool-headlinestyling=style_h1] .ot_headline {
    font-size: calc(2.5rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  h1,
.style_h1,
[data-otool-headlinestyling=style_h1] .ot_headline {
    font-size: 3.4375rem;
  }
}
h1 span,
.style_h1 span,
[data-otool-headlinestyling=style_h1] .ot_headline span {
  color: #C25400;
  font-weight: 600;
}

h2,
.style_h2,
[data-otool-headlinestyling=style_h2] .ot_headline,
.ot_headline {
  letter-spacing: calc((1.5rem + 0.375 * (100vw - 20rem) / (73.75)) * 0.02);
  font-size: 1.5rem;
  color: #7D7069;
  font-family: "SourceSans3", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 0.75em;
  padding-top: 0.75em;
}
@media (min-width: 93.75rem) {
  h2,
.style_h2,
[data-otool-headlinestyling=style_h2] .ot_headline,
.ot_headline {
    letter-spacing: calc(1.875rem * 0.02);
  }
}
@media (min-width: 20rem) {
  h2,
.style_h2,
[data-otool-headlinestyling=style_h2] .ot_headline,
.ot_headline {
    font-size: calc(1.5rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  h2,
.style_h2,
[data-otool-headlinestyling=style_h2] .ot_headline,
.ot_headline {
    font-size: 1.875rem;
  }
}
h2 span,
.style_h2 span,
[data-otool-headlinestyling=style_h2] .ot_headline span,
.ot_headline span {
  color: #C25400;
  font-weight: 600;
}

h3,
.style_h3,
[data-otool-headlinestyling=style_h3] .ot_headline {
  letter-spacing: calc((1.25rem + 0.3125 * (100vw - 20rem) / (73.75)) * 0.02);
  font-size: 1.25rem;
  color: #7D7069;
  font-family: "SourceSans3", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  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.5625rem * 0.02);
  }
}
@media (min-width: 20rem) {
  h3,
.style_h3,
[data-otool-headlinestyling=style_h3] .ot_headline {
    font-size: calc(1.25rem + 0.3125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  h3,
.style_h3,
[data-otool-headlinestyling=style_h3] .ot_headline {
    font-size: 1.5625rem;
  }
}
h3 span,
.style_h3 span,
[data-otool-headlinestyling=style_h3] .ot_headline span {
  color: #C25400;
  font-weight: 600;
}

h4,
.style_h4,
[data-otool-headlinestyling=style_h4] .ot_headline {
  letter-spacing: calc((1rem + 0.25 * (100vw - 20rem) / (73.75)) * 0.02);
  font-size: 1rem;
  color: #2D2D2D;
  font-family: "SourceSans3", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 0.75em;
}
@media (min-width: 93.75rem) {
  h4,
.style_h4,
[data-otool-headlinestyling=style_h4] .ot_headline {
    letter-spacing: calc(1.25rem * 0.02);
  }
}
@media (min-width: 20rem) {
  h4,
.style_h4,
[data-otool-headlinestyling=style_h4] .ot_headline {
    font-size: calc(1rem + 0.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  h4,
.style_h4,
[data-otool-headlinestyling=style_h4] .ot_headline {
    font-size: 1.25rem;
  }
}
h4 span,
.style_h4 span,
[data-otool-headlinestyling=style_h4] .ot_headline span {
  color: #C25400;
  font-weight: 600;
}

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: #2D2D2D;
  font-family: "SourceSans3", sans-serif;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
}
@media (min-width: 93.75rem) {
  h5,
.style_h5,
[data-otool-headlinestyling=style_h5] .ot_headline {
    letter-spacing: calc(1rem * 0);
  }
}
@media (min-width: 20rem) {
  h5,
.style_h5,
[data-otool-headlinestyling=style_h5] .ot_headline {
    font-size: calc(0.875rem + 0.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  h5,
.style_h5,
[data-otool-headlinestyling=style_h5] .ot_headline {
    font-size: 1rem;
  }
}
h5 span,
.style_h5 span,
[data-otool-headlinestyling=style_h5] .ot_headline span {
  color: #C25400;
  font-weight: 600;
}

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: #2D2D2D;
  font-family: "SourceSans3", sans-serif;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
}
@media (min-width: 93.75rem) {
  h6,
.style_h6,
[data-otool-headlinestyling=style_h6] .ot_headline {
    letter-spacing: calc(0.875rem * 0);
  }
}
@media (min-width: 20rem) {
  h6,
.style_h6,
[data-otool-headlinestyling=style_h6] .ot_headline {
    font-size: calc(0.75rem + 0.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  h6,
.style_h6,
[data-otool-headlinestyling=style_h6] .ot_headline {
    font-size: 0.875rem;
  }
}

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

a {
  color: #2D2D2D;
  text-decoration: underline;
  transition: color 300ms;
}
a:active, a.active {
  color: #2D2D2D;
  outline: 0;
}
a:focus-visible {
  outline: 0.125rem solid #2D2D2D;
  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: #2D2D2D;
  display: block;
  text-decoration: none;
}
a.touch_link .title {
  color: #C25400;
  display: inline-block;
  margin-bottom: 0.375em;
  outline-offset: 0;
  padding: 0;
  text-decoration: underline;
  transition: color 300ms;
}
a.touch_link .title.active {
  color: #C25400;
}
a.touch_link:focus {
  outline: 0;
}
a.touch_link:focus .title {
  outline: 0.125rem solid rgba(45, 45, 45, 0.8);
  outline-offset: 0.0625rem;
  text-decoration: none;
}
a.touch_link:focus[data-focus-method=mouse] .title, a.touch_link:focus[data-focus-method=touch] .title {
  outline: 0;
}
a.touch_link:hover .title {
  text-decoration: none;
}

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

strong {
  font-weight: 700;
}

em {
  font-style: normal;
}

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

small {
  font-size: 85%;
}

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

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

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

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

table {
  border-bottom: 0.0625rem solid #dedede;
  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 #dedede;
  padding: 0.4995em;
  transition: background 300ms;
  vertical-align: top;
}

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

ol {
  counter-reset: list;
  list-style: none;
  margin: 0 0 0.75em;
  padding: 0;
}
ol > li {
  padding-left: 1.5em;
  position: relative;
}
ol > li:before {
  color: #EB7B28;
  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"><circle cx="7" cy="4" r="3" fill="%23EB7B28"/></svg>');
  margin: 0 0 0.75em;
  padding-left: 1.125em;
}
ul > li {
  padding-left: 0.375em;
}
ul ol, ul ul {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

.ot_ui {
  letter-spacing: calc((1rem + 0 * (100vw - 20rem) / (73.75)) * 0);
  font-size: 1rem;
  margin-top: 5rem;
  margin-bottom: 5rem;
}
@media (min-width: 93.75rem) {
  .ot_ui {
    letter-spacing: calc(1rem * 0);
  }
}
@media (min-width: 20rem) {
  .ot_ui {
    font-size: calc(1rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .ot_ui {
    font-size: 1rem;
  }
}
@media (min-width: 20rem) {
  .ot_ui {
    margin-top: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .ot_ui {
    margin-top: 6.25rem;
  }
}
@media (min-width: 20rem) {
  .ot_ui {
    margin-bottom: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .ot_ui {
    margin-bottom: 6.25rem;
  }
}

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

:root {
  --ot-main-color: #C25400;
  --ot-secondary-color: #EB7B28;
  --ot-contrast-main-color: #fff;
  --ot-contrast-secondary-color: #fff;
  --ot-selection-contrast: #cd6213;
  --ot-rgba-main-01: rgba(235, 123, 40, 0.1);
  --ot-rgba-main-02: rgba(235, 123, 40, 0.2);
  --ot-rgba-main-05: rgba(235, 123, 40, 0.5);
  --ot-rgba-main-08: rgba(235, 123, 40, 0.8);
  --ot-rgba-secondary-01: rgba(235, 123, 40, 0.1);
  --ot-rgba-secondary-02: rgba(235, 123, 40, 0.2);
  --ot-lighten-main-30: #f8d1b4;
  --ot-main-color-darken-40: #411f06;
  --ot-button-color: #C25400;
  --ot-button-active-color: #8f3e00;
  --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.625rem;
  --ot-button-height-min: 2.75rem;
  --ot-button-height-max: 3.375rem;
  --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: #2D2D2D;
  --ot-bg-color: #F7F7F7;
  --ot-border-color: #dedede;
  --ot-okay-color: #96ca67;
  --ot-okay-bg-color: #ecf6e4;
  --ot-error-text-color: #ad0000;
  --ot-error-bg-color: #f6ecec;
  --ot-error-border-color: #EB7B28;
  --ot-popup-overlay-color: rgba(45, 45, 45, 0.5);
  --ot-shadow-color: rgba(0, 0, 0, 0.2);
  --ot-font-family-headline: SourceSans3, sans-serif;
  --ot-font-family: SourceSans3, sans-serif;
  --ot-font-size-max: 1rem;
  --ot-font-size-min: 1rem;
  --ot-font-weight-strong: 700;
  --ot-font-weight: 400;
  --ot-line-height: 1.5;
  --ot-font-size-h1-max: 3.4375rem;
  --ot-font-size-h1-min: 2.5rem;
  --ot-font-weight-h1: 400;
  --ot-letter-spacing-h1: 2%;
  --ot-line-height-h1: 1.2;
  --ot-text-color-h1: #7D7069;
  --ot-font-size-h2-max: 1.875rem;
  --ot-font-size-h2-min: 1.5rem;
  --ot-font-weight-h2: 400;
  --ot-letter-spacing-h2: 2%;
  --ot-line-height-h2: 1.5;
  --ot-text-color-h2: #7D7069;
  --ot-font-size-h3-max: 1.5625rem;
  --ot-font-size-h3-min: 1.25rem;
  --ot-font-weight-h3: 400;
  --ot-letter-spacing-h3: 2%;
  --ot-line-height-h3: 1.5;
  --ot-text-color-h3: #7D7069;
  --ot-font-size-h4-max: 1.25rem;
  --ot-font-size-h4-min: 1rem;
  --ot-font-weight-h4: 400;
  --ot-letter-spacing-h4: 2%;
  --ot-line-height-h4: 1.5;
  --ot-text-color-h4: #2D2D2D;
  --ot-font-size-h5-max: 1rem;
  --ot-font-size-h5-min: 0.875rem;
  --ot-font-weight-h5: 400;
  --ot-letter-spacing-h5: 0%;
  --ot-line-height-h5: 1.35;
  --ot-text-color-h5: #2D2D2D;
  --ot-font-size-h6-max: 0.875rem;
  --ot-font-size-h6-min: 0.75rem;
  --ot-font-weight-h6: 400;
  --ot-letter-spacing-h6: 0%;
  --ot-line-height-h6: 1.35;
  --ot-text-color-h6: #2D2D2D;
  --ot-font-size-legend-max: 1.5625rem;
  --ot-font-size-legend-min: 1.25rem;
  --ot-font-weight-legend: 400;
  --ot-letter-spacing-legend: 2%;
  --ot-line-height-legend: 1.5;
  --ot-text-color-legend: #7D7069;
  --ot-font-size-bigger: 112.5%;
  --ot-font-size-biggest: 162.5%;
  --ot-font-size-smaller: 85%;
  --ot-spacing: 1.5em;
  --ot-box-shadow-width: 0.1875rem;
  --ot-input-border-width: 0.0625rem;
  --ot-input-bg-color: #fff;
  --ot-input-border-color: #dedede;
  --ot-input-text-color: #2D2D2D;
  --ot-input-focus-bg-color: #fff;
  --ot-input-focus-border-color: #EB7B28;
  --ot-input-focus-text-color: #2D2D2D;
  --ot-button-bg-color: #C25400;
  --ot-button-border-color: #EB7B28;
  --ot-button-text-color: #fff;
  --ot-button-hover-bg-color: #2D2D2D;
  --ot-button-hover-border-color: #2D2D2D;
  --ot-button-hover-text-color: #fff;
  --ot-button-focus-bg-color: #2D2D2D;
  --ot-button-focus-border-color: #2D2D2D;
  --ot-button-focus-text-color: #fff;
  --ot-button-active-bg-color: #803700;
  --ot-button-active-border-color: #803700;
  --ot-button-active-text-color: #fff;
  --ot-button-disabled-bg-color: #F7F7F7;
  --ot-button-disabled-border-color: #eaeaea;
  --ot-button-disabled-text-color: #adadad;
}

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

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

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

html:not(.reduced_motion) .animation,
html:not(.reduced_motion) [data-animation] {
  transition: opacity 600ms ease, transform 600ms ease;
  transition-delay: 300ms;
}
html:not(.reduced_motion) .animation.not_in_viewport,
html:not(.reduced_motion) [data-animation].not_in_viewport {
  opacity: 0;
  transform: translateY(2em);
  transition: unset;
}
html:not(.reduced_motion) .animate_slide_in_left {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 750ms ease-out, transform 750ms ease-out;
}
html:not(.reduced_motion) .animate_slide_in_left.not_in_viewport {
  opacity: 0;
  transform: translateX(-5em);
  transition: none;
}
html:not(.reduced_motion) .animate_slide_in_left.delay_short {
  transition-delay: 120ms;
}
html:not(.reduced_motion) .animate_slide_in_left.delay_medium {
  transition-delay: 220ms;
}
html:not(.reduced_motion) .animate_slide_in_right {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 750ms ease-out, transform 750ms ease-out;
}
html:not(.reduced_motion) .animate_slide_in_right.not_in_viewport {
  opacity: 0;
  transform: translateX(5em);
  transition: none;
}
html:not(.reduced_motion) .animate_slide_in_right.delay_short {
  transition-delay: 120ms;
}
html:not(.reduced_motion) .animate_slide_in_right.delay_medium {
  transition-delay: 220ms;
}
html:not(.reduced_motion) .animate_slide_in_bottom {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 750ms ease-out, transform 750ms ease-out;
}
html:not(.reduced_motion) .animate_slide_in_bottom.not_in_viewport {
  opacity: 0;
  transform: translateY(5em);
  transition: none;
}
html:not(.reduced_motion) .animate_slide_in_bottom.delay_short {
  transition-delay: 120ms;
}
html:not(.reduced_motion) .animate_slide_in_bottom.delay_medium {
  transition-delay: 220ms;
}
html:not(.reduced_motion) .animate_slide_in_bottom.delay_long {
  transition-delay: 320ms;
}
html:not(.reduced_motion) .animate_slide_in_top {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 750ms ease-out, transform 750ms ease-out;
}
html:not(.reduced_motion) .animate_slide_in_top.not_in_viewport {
  opacity: 0;
  transform: translateY(-5em);
  transition: none;
}
html:not(.reduced_motion) .animate_slide_in_top.delay_short {
  transition-delay: 120ms;
}
html:not(.reduced_motion) .animate_slide_in_top.delay_medium {
  transition-delay: 220ms;
}

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

.steuernews_preview .row > div {
  display: flex;
}
.steuernews_preview .entry {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 0.0625rem solid #696765;
  border-radius: 1.5625rem;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
  margin-bottom: 3em;
  transition: transform 300ms;
}
.steuernews_preview .entry:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.625rem 0.9375rem -0.1875rem rgba(0, 0, 0, 0.1);
}
.steuernews_preview .entry:hover .image img {
  transform: scale(1.1);
}
.steuernews_preview .entry .teaser_text {
  padding-top: 1.375rem;
  padding-bottom: 0.75rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
@media (min-width: 20rem) {
  .steuernews_preview .entry .teaser_text {
    padding-top: calc(1.375rem + 1.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_preview .entry .teaser_text {
    padding-top: 3rem;
  }
}
@media (min-width: 20rem) {
  .steuernews_preview .entry .teaser_text {
    padding-bottom: calc(0.75rem + 1 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_preview .entry .teaser_text {
    padding-bottom: 1.75rem;
  }
}
@media (min-width: 20rem) {
  .steuernews_preview .entry .teaser_text {
    padding-left: calc(0.625rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_preview .entry .teaser_text {
    padding-left: 1.5625rem;
  }
}
@media (min-width: 20rem) {
  .steuernews_preview .entry .teaser_text {
    padding-right: calc(0.625rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_preview .entry .teaser_text {
    padding-right: 1.5625rem;
  }
}
.steuernews_preview .entry .teaser_text .title {
  text-decoration: none;
  color: #2D2D2D;
  text-align: left;
}
.steuernews_preview .entry .teaser_text .title .sub_title {
  display: flex;
  align-items: center;
  margin-bottom: 0.625rem;
  font-size: 1rem;
  font-weight: 400;
  font-family: "SourceSans3", sans-serif;
  color: #2D2D2D;
}
@media (min-width: 20rem) {
  .steuernews_preview .entry .teaser_text .title .sub_title {
    margin-bottom: calc(0.625rem + 0.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_preview .entry .teaser_text .title .sub_title {
    margin-bottom: 1.25rem;
  }
}
.steuernews_preview .entry .teaser_text .title .sub_title .icon {
  display: flex;
  align-items: center;
  margin-right: 0.28125rem;
}
.steuernews_preview .entry .teaser_text .title .sub_title .icon svg {
  width: 1rem;
  height: 1rem;
}
.steuernews_preview .entry .teaser_text .news_category {
  position: absolute;
  border: 0.125rem solid #EB7B28;
  top: 0.75rem;
  left: 0.75rem;
  background: #C25400;
  color: #fff;
  font-weight: 400;
  padding: 0.25rem 0.75rem;
  border-radius: 0.625rem;
  font-size: 1rem;
  line-height: 1.5;
  font-family: "SourceSans3", sans-serif;
  z-index: 10;
}
.steuernews_preview .image {
  margin: 0;
  order: 1;
  width: 100%;
  height: 12rem;
  object-fit: cover;
  overflow: hidden;
  border-top-left-radius: 1.5625rem;
  border-top-right-radius: 1.5625rem;
}
.steuernews_preview .image img {
  border-top-left-radius: 1.5625rem;
  border-top-right-radius: 1.5625rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms;
  transform-origin: center center;
}
@media (min-width: 35rem) {
  .steuernews_preview .photo {
    flex: 0 1 35%;
    margin-right: 1.5em;
  }
}
.steuernews_preview .photo .bg_image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  margin-right: 1.5em;
  width: 100%;
  padding-top: 66.64%;
}
.steuernews_preview .teaser_text {
  order: 2;
  flex: 0 1 auto;
}
.steuernews_preview .title {
  word-wrap: break-word;
}
.steuernews_preview .sub_title {
  display: block;
}

.news_entity .hide_image_author,
.news_entity .hide_creation_date {
  display: none;
}

.news_image {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media (min-width: 35rem) {
  .news_image {
    width: auto;
    margin-left: 1.5em;
    max-width: 50vw;
  }
}
.news_image + * {
  padding-top: 0;
}

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

.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;
  background: #F7F7F7;
  border-radius: 0.625rem;
}
.steuernews_issues a,
.steuernews_navigation a,
.blog_issues a,
.blog_tags a {
  color: #2D2D2D;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.9375rem 1.25rem;
  min-height: 4.375rem;
  transition: background 300ms, border 300ms, color 300ms, transform 300ms, box-shadow 300ms;
  user-select: none;
}
.steuernews_issues a::before,
.steuernews_navigation a::before,
.blog_issues a::before,
.blog_tags a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #EB7B28;
  transition: left 300ms ease-in-out;
  z-index: -1;
}
.steuernews_issues a > *,
.steuernews_navigation a > *,
.blog_issues a > *,
.blog_tags a > * {
  position: relative;
  z-index: 1;
}
.steuernews_issues a:focus-visible,
.steuernews_navigation a:focus-visible,
.blog_issues a:focus-visible,
.blog_tags a:focus-visible {
  background: #2D2D2D;
  border-color: #2D2D2D;
  color: #fff;
  outline: 0.125rem solid #2D2D2D;
  outline-offset: 0.125rem;
  box-shadow: 0 0 0 0.375rem #fff;
}
.steuernews_issues a:hover,
.steuernews_navigation a:hover,
.blog_issues a:hover,
.blog_tags a:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: #EB7B28;
  box-shadow: 0 0.25rem 0.75rem rgba(235, 123, 40, 0.3), 0 0.125rem 0.375rem rgba(235, 123, 40, 0.2);
}
.steuernews_issues a:hover::before,
.steuernews_navigation a:hover::before,
.blog_issues a:hover::before,
.blog_tags a:hover::before {
  left: 0;
}
.steuernews_issues a:hover .icon,
.steuernews_navigation a:hover .icon,
.blog_issues a:hover .icon,
.blog_tags a:hover .icon {
  fill: #fff;
}
.steuernews_issues a:active, .steuernews_issues a.active,
.steuernews_navigation a:active,
.steuernews_navigation a.active,
.blog_issues a:active,
.blog_issues a.active,
.blog_tags a:active,
.blog_tags a.active {
  transform: translateY(0);
  color: #fff;
  box-shadow: 0 0.125rem 0.375rem rgba(235, 123, 40, 0.2), 0 0 0.1875rem #803700 inset;
}
.steuernews_issues a:active::before, .steuernews_issues a.active::before,
.steuernews_navigation a:active::before,
.steuernews_navigation a.active::before,
.blog_issues a:active::before,
.blog_issues a.active::before,
.blog_tags a:active::before,
.blog_tags a.active::before {
  left: 0;
}
.steuernews_issues a:active .icon, .steuernews_issues a.active .icon,
.steuernews_navigation a:active .icon,
.steuernews_navigation a.active .icon,
.blog_issues a:active .icon,
.blog_issues a.active .icon,
.blog_tags a:active .icon,
.blog_tags a.active .icon {
  fill: #fff;
}
.steuernews_issues a .icon,
.steuernews_navigation a .icon,
.blog_issues a .icon,
.blog_tags a .icon {
  display: block;
  fill: #EB7B28;
  flex-shrink: 0;
  height: 2.5rem;
  transition: fill 300ms;
  width: 2.5rem;
  rotate: 270deg;
  margin-left: 1.5em;
}

.steuernews_disclaimer {
  clear: both;
}

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

.steuernews_current_issue {
  margin-bottom: 0.75em;
}
.steuernews_current_issue ul li {
  padding-left: 0;
  background: #F7F7F7;
  border-radius: 0.625rem;
  margin: 0 0.75em 0.75em 0;
}
.steuernews_current_issue ul li a {
  color: #2D2D2D;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.625rem;
  width: 100%;
  padding: 0.9375rem 1.25rem;
  min-height: 4.375rem;
  transition: background 300ms, border 300ms, color 300ms, transform 300ms, box-shadow 300ms;
  user-select: none;
}
.steuernews_current_issue ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #EB7B28;
  transition: left 300ms ease-in-out;
  z-index: -1;
}
.steuernews_current_issue ul li a > * {
  position: relative;
  z-index: 1;
}
.steuernews_current_issue ul li a:focus-visible {
  background: #2D2D2D;
  border-color: #2D2D2D;
  color: #fff;
  outline: 0.125rem solid #2D2D2D;
  outline-offset: 0.125rem;
  box-shadow: 0 0 0 0.375rem #fff;
}
.steuernews_current_issue ul li a:hover {
  transform: translateY(-2px);
  color: #fff;
  border-radius: 0.625rem;
  border-color: #EB7B28;
  box-shadow: 0 0.25rem 0.75rem rgba(235, 123, 40, 0.3), 0 0.125rem 0.375rem rgba(235, 123, 40, 0.2);
}
.steuernews_current_issue ul li a:hover::before {
  left: 0;
}
.steuernews_current_issue ul li a:hover .icon {
  fill: #fff;
}
.steuernews_current_issue ul li a:active, .steuernews_current_issue ul li a.active {
  transform: translateY(0);
  color: #fff;
  border-radius: 0.625rem;
  box-shadow: 0 0.125rem 0.375rem rgba(235, 123, 40, 0.2), 0 0 0.1875rem #803700 inset;
}
.steuernews_current_issue ul li a:active::before, .steuernews_current_issue ul li a.active::before {
  left: 0;
}
.steuernews_current_issue ul li a:active .icon, .steuernews_current_issue ul li a.active .icon {
  fill: #fff;
}
.steuernews_current_issue ul li a .icon {
  display: block;
  fill: #EB7B28;
  flex-shrink: 0;
  height: 2.5rem;
  transition: fill 300ms;
  width: 2.5rem;
  rotate: 270deg;
  margin-left: 1.5em;
}

.news_entity .news_entity_content {
  margin-top: 5rem;
}
@media (min-width: 20rem) {
  .news_entity .news_entity_content {
    margin-top: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .news_entity .news_entity_content {
    margin-top: 6.25rem;
  }
}
.news_entity .image_wrapper {
  height: 100%;
}
@media (min-width: 75rem) {
  .news_entity .image_wrapper {
    height: 44rem;
    width: 42.25rem;
  }
}
.news_entity figure {
  height: 100%;
  padding: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: calc(-50vw + 50% + 0.9375rem);
}
@media (min-width: 20rem) {
  .news_entity figure {
    margin-right: calc(-50vw + 50% + calc(0.9375rem + 2.1875 * (100vw - 20rem) / (73.75)));
  }
}
@media (min-width: 93.75rem) {
  .news_entity figure {
    margin-right: calc(-50vw + 50% + 3.125rem);
  }
}
@media (min-width: 75rem) {
  .news_entity figure {
    height: 44rem;
  }
}
.news_entity figure img {
  height: 100%;
  max-width: 100vw;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.steuernews_more_articles_overview {
  padding-top: 5rem;
}
@media (min-width: 20rem) {
  .steuernews_more_articles_overview {
    padding-top: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_more_articles_overview {
    padding-top: 6.25rem;
  }
}
.steuernews_more_articles_overview .overview_title {
  text-align: center;
  color: #fff;
}
.steuernews_more_articles_overview .overview_title em {
  color: #fff;
}
.steuernews_more_articles_overview .more_articles_wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 5rem;
  margin-top: 2.5rem;
}
@media (min-width: 20rem) {
  .steuernews_more_articles_overview .more_articles_wrapper {
    margin-bottom: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_more_articles_overview .more_articles_wrapper {
    margin-bottom: 6.25rem;
  }
}
@media (min-width: 20rem) {
  .steuernews_more_articles_overview .more_articles_wrapper {
    margin-top: calc(2.5rem + 2.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_more_articles_overview .more_articles_wrapper {
    margin-top: 5rem;
  }
}
@media (min-width: 61.875rem) {
  .steuernews_more_articles_overview .more_articles_wrapper {
    flex-direction: row;
  }
}

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

.steuernews_newsletter_subscribe {
  color: #fff;
}
.steuernews_newsletter_subscribe form {
  padding: 0;
}
.steuernews_newsletter_subscribe .button {
  margin-bottom: 0;
}
.steuernews_newsletter_subscribe .titel,
.steuernews_newsletter_subscribe p {
  color: #fff;
}
.steuernews_newsletter_subscribe .title em {
  color: #fff;
}

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

.sub_menu {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.1);
  z-index: 10;
  overflow: hidden;
  margin-top: 1.25rem;
}
.sub_menu li.has-submenu .menu-title {
  display: block;
  padding: 0.75rem 1rem;
  color: #fff;
  text-decoration: none;
  cursor: default;
  font-weight: 600;
  background: #C25400;
  border-bottom: 0.0625rem solid #EB7B28;
  transition: all 300ms;
}
.sub_menu li.no-submenu a.menu-title {
  display: block;
  padding: 0.75rem 1rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  background: #C25400;
  border-top: 0.0625rem solid #EB7B28;
  border-bottom: 0.0625rem solid #EB7B28;
  transition: all 300ms;
}
.sub_menu li.no-submenu a.menu-title:hover {
  color: #C25400;
  text-decoration: none;
  background: #fffcfa;
}
.sub_menu li.no-submenu a.menu-title.active {
  color: #EB7B28;
  font-weight: 600;
  background: #fceee3;
}
.sub_menu li.has-submenu ul {
  background: #fff;
  margin: 0;
  padding: 0;
}
.sub_menu li.has-submenu ul li a {
  display: block;
  padding: 0.625rem 1rem 0.625rem 1.75rem;
  color: #535353;
  text-decoration: none;
  transition: all 300ms;
  border-bottom: 0.0625rem solid #eaeaea;
  position: relative;
}
.sub_menu li.has-submenu ul li a:hover {
  color: #EB7B28;
  text-decoration: none;
  background: white;
}
.sub_menu li.has-submenu ul li a.active {
  color: #C25400;
  font-weight: 600;
  background: #fdf3ec;
}
.sub_menu li.has-submenu ul li:last-child a {
  border-bottom: none;
}
@media (min-width: 30rem) {
  .sub_menu li.has-submenu .menu-title,
.sub_menu li.no-submenu a.menu-title {
    padding: 0.875rem 1.125rem;
  }
  .sub_menu li.has-submenu ul li a {
    padding: 0.6875rem 1.125rem 0.6875rem 1.875rem;
  }
}
@media (min-width: 35rem) {
  .sub_menu li.has-submenu .menu-title,
.sub_menu li.no-submenu a.menu-title {
    padding: 0.9375rem 1.1875rem;
  }
  .sub_menu li.has-submenu ul li a {
    padding: 0.75rem 1.1875rem 0.75rem 1.9375rem;
  }
}
@media (min-width: 61.875rem) {
  .sub_menu {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 17.5rem;
    margin-top: 0;
    box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.1);
  }
  .sub_menu li.has-submenu .menu-title,
.sub_menu li.no-submenu a.menu-title {
    padding: 1rem 1.25rem;
  }
  .sub_menu li.has-submenu ul li a {
    padding: 0.75rem 1.25rem 0.75rem 2rem;
  }
}
@media (min-width: 93.75rem) {
  .sub_menu {
    width: 20rem;
    top: 1.875rem;
    right: 2.5rem;
  }
}

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

.team_headline {
  padding-top: 5rem;
  text-align: center;
}
@media (min-width: 20rem) {
  .team_headline {
    padding-top: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .team_headline {
    padding-top: 6.25rem;
  }
}

.team_overview {
  padding-bottom: 5rem;
}
@media (min-width: 20rem) {
  .team_overview {
    padding-bottom: calc(5rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .team_overview {
    padding-bottom: 6.25rem;
  }
}
.team_overview .row > div {
  display: flex;
}
.team_overview .team_entry {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  background: #fff;
  border: 0.0625rem solid #696765;
  border-radius: 1.5625rem;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
  margin-bottom: 3em;
  transition: transform 300ms;
}
.team_overview .team_entry .photo {
  margin: 0;
  width: 100%;
  height: 34.375rem;
  object-fit: cover;
  overflow: hidden;
  border-top-left-radius: 1.5625rem;
  border-top-right-radius: 1.5625rem;
}
.team_overview .team_entry .photo img {
  border-top-left-radius: 1.5625rem;
  border-top-right-radius: 1.5625rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms;
  transform-origin: center center;
}
.team_overview .team_entry .info {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
@media (min-width: 20rem) {
  .team_overview .team_entry .info {
    padding-top: calc(0.75rem + 1 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .team_overview .team_entry .info {
    padding-top: 1.75rem;
  }
}
@media (min-width: 20rem) {
  .team_overview .team_entry .info {
    padding-bottom: calc(0.75rem + 1 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .team_overview .team_entry .info {
    padding-bottom: 1.75rem;
  }
}
@media (min-width: 20rem) {
  .team_overview .team_entry .info {
    padding-left: calc(0.625rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .team_overview .team_entry .info {
    padding-left: 1.5625rem;
  }
}
@media (min-width: 20rem) {
  .team_overview .team_entry .info {
    padding-right: calc(0.625rem + 0.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .team_overview .team_entry .info {
    padding-right: 1.5625rem;
  }
}
.team_overview .team_entry .info .title span {
  color: #EB7B28;
}
.team_overview .team_entry .info p {
  color: #2D2D2D;
}
.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 p:first-of-type {
  font-weight: 700;
}
.team_entry .contact .text {
  font-weight: 400;
}
.team_entry .photo {
  margin-bottom: 0.75em;
}
.team_entry .photo img {
  display: block;
}
.team_entry .info {
  margin-bottom: 0.75em;
}
.team_entry .buttons .button {
  margin-bottom: 0.75em;
  margin-right: 0.75em;
}

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

.teaser {
  display: flex;
  flex-direction: column;
}
.teaser .teaser_background_image .image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 18.75rem;
}

.icon_text_teaser .teaser {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.625rem;
  background-color: #fff;
  border-radius: 1.5625rem;
  padding: 0.9375rem 0.9375rem;
  color: #7D7069;
  transition: box-shadow 300ms;
  margin-bottom: 0.625rem;
  margin: 1.875rem 0;
}
.icon_text_teaser .teaser:hover {
  box-shadow: 0 0.625rem 0.9375rem -0.1875rem rgba(0, 0, 0, 0.1);
}
.icon_text_teaser .teaser .icon {
  fill: #EB7B28;
  height: 3rem;
  width: 3rem;
  flex-shrink: 0;
}
.icon_text_teaser .teaser .text-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.icon_text_teaser .teaser .title {
  font-weight: 700;
  color: #7D7069;
  margin: 0;
}
.icon_text_teaser .teaser p {
  color: #7D7069;
  margin: 0;
  line-height: 1.5;
}

.button_teaser.datev_login {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.button_teaser .teaser {
  background: #F7F7F7;
  border: 0.125rem solid #F7F7F7;
  border-radius: 0.625rem;
  color: #2D2D2D;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0.9375rem 1.25rem;
  min-height: 4.375rem;
  transition: background 300ms, border 300ms, color 300ms, transform 300ms, box-shadow 300ms;
  user-select: none;
}
.button_teaser .teaser a {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #2D2D2D;
}
.button_teaser .teaser::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #EB7B28;
  transition: left 300ms ease-in-out;
  z-index: 0;
}
.button_teaser .teaser > * {
  position: relative;
  z-index: 1;
}
.button_teaser .teaser:focus-visible {
  background: #2D2D2D;
  border-color: #2D2D2D;
  color: #fff;
  outline: 0.125rem solid #2D2D2D;
  outline-offset: 0.125rem;
  box-shadow: 0 0 0 0.375rem #fff;
}
.button_teaser .teaser:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.25rem 0.75rem rgba(235, 123, 40, 0.3), 0 0.125rem 0.375rem rgba(235, 123, 40, 0.2);
  color: #fff;
}
.button_teaser .teaser:hover::before {
  left: 0;
}
.button_teaser .teaser:active, .button_teaser .teaser.active {
  transform: translateY(0);
  box-shadow: 0 0.125rem 0.375rem rgba(235, 123, 40, 0.2), 0 0 0.1875rem #803700 inset;
  color: #fff;
}
.button_teaser .teaser:active::before, .button_teaser .teaser.active::before {
  left: 0;
}
.button_teaser .teaser .icon {
  display: block;
  fill: #EB7B28;
  flex-shrink: 0;
  height: 2.5rem;
  transition: fill 300ms;
  width: 2.5rem;
  rotate: 270deg;
}
.button_teaser .teaser .text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.125rem;
  flex: 1;
}
.button_teaser .teaser .title {
  font-weight: 400;
  color: #2D2D2D;
  margin: 0;
  transition: color 300ms;
  padding: 0;
}
.button_teaser .teaser p {
  color: #2D2D2D;
  margin: 0;
  line-height: 1.5;
  transition: color 300ms;
}
.button_teaser .teaser:hover {
  border-color: #EB7B28;
}
.button_teaser .teaser:hover .icon {
  fill: #fff;
}
.button_teaser .teaser:hover .title,
.button_teaser .teaser:hover p {
  color: #fff;
}
.button_teaser .teaser.button_color {
  background: #C25400;
  border-color: #EB7B28;
  color: #fff;
}
.button_teaser .teaser.button_color a {
  color: #fff;
}
.button_teaser .teaser.button_color .icon {
  fill: #fff;
}
.button_teaser .teaser.button_color .title,
.button_teaser .teaser.button_color p {
  color: #fff;
}
.button_teaser .teaser.button_color:hover .icon {
  fill: #fff;
}
.button_teaser .teaser.button_color:hover .title,
.button_teaser .teaser.button_color:hover p {
  color: #fff;
}

.white_teaser {
  margin-top: 3.125rem;
}
.white_teaser .teaser {
  border: 0.0625rem solid #fff;
  background-color: #7D7069;
  border-radius: 1.5625rem;
  padding: 1.25rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: box-shadow 300ms, transform 300ms;
}
.white_teaser .teaser:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.625rem 0.9375rem -0.1875rem rgba(0, 0, 0, 0.1);
}
.white_teaser .teaser:first-child {
  margin-bottom: 2.1875rem;
}
@media (min-width: 61.875rem) {
  .white_teaser .teaser:first-child {
    margin-bottom: 0;
  }
}
.white_teaser .teaser a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.white_teaser .teaser .title {
  color: #fff;
  margin: 0 0 0.75em 0;
}
.white_teaser .teaser .word-2,
.white_teaser .teaser .word-4 {
  color: #fff;
}
.white_teaser .teaser p {
  color: #fff;
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

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

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

[role=tooltip] {
  background: #F7F7F7;
  border: 0.0625rem solid #dedede;
  border-radius: 0.625rem;
  bottom: 100%;
  color: #2D2D2D;
  font-size: 85%;
  font-weight: 400;
  line-height: 1.5;
  opacity: 1;
  padding: 0.75em;
  position: absolute;
  right: 0;
  text-align: center;
  transform: translateY(-0.3125rem);
  transition: opacity 300ms, transform 300ms, visibility 300ms;
  visibility: visible;
  z-index: 50;
}
[role=tooltip]:after {
  border: 0.625rem solid transparent;
  border-top-color: #F7F7F7;
  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: #dedede;
  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;
}

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

.useful_link_overview .entry {
  background: #F7F7F7;
  border: 0.125rem solid #F7F7F7;
  border-radius: 0.625rem;
  color: #2D2D2D;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0.9375rem 1.25rem;
  min-height: 4.375rem;
  transition: background 300ms, border 300ms, color 300ms, transform 300ms, box-shadow 300ms;
  user-select: none;
  flex-direction: row;
  align-items: center;
  gap: 0.625rem;
  height: 100%;
  text-decoration: none;
  color: #2D2D2D;
}
.useful_link_overview .entry::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #EB7B28;
  transition: left 300ms ease-in-out;
  z-index: 0;
}
.useful_link_overview .entry > * {
  position: relative;
  z-index: 1;
}
.useful_link_overview .entry:focus-visible {
  background: #2D2D2D;
  border-color: #2D2D2D;
  color: #fff;
  outline: 0.125rem solid #2D2D2D;
  outline-offset: 0.125rem;
  box-shadow: 0 0 0 0.375rem #fff;
}
.useful_link_overview .entry:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.25rem 0.75rem rgba(235, 123, 40, 0.3), 0 0.125rem 0.375rem rgba(235, 123, 40, 0.2);
  color: #fff;
}
.useful_link_overview .entry:hover::before {
  left: 0;
}
.useful_link_overview .entry:active, .useful_link_overview .entry.active {
  transform: translateY(0);
  box-shadow: 0 0.125rem 0.375rem rgba(235, 123, 40, 0.2), 0 0 0.1875rem #803700 inset;
  color: #fff;
}
.useful_link_overview .entry:active::before, .useful_link_overview .entry.active::before {
  left: 0;
}
.useful_link_overview .entry .icon {
  display: block;
  fill: #EB7B28;
  flex-shrink: 0;
  height: 2.5rem;
  transition: fill 300ms;
  width: 2.5rem;
  rotate: 270deg;
}
.useful_link_overview .entry .text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.125rem;
  flex: 1;
}
.useful_link_overview .entry .title {
  font-weight: 400;
  color: #2D2D2D;
  margin: 0;
  transition: color 300ms;
  padding: 0;
  text-decoration: none;
}
.useful_link_overview .entry .text {
  color: #2D2D2D;
  margin: 0;
  line-height: 1.5;
  transition: color 300ms;
}
.useful_link_overview .entry:hover {
  border-color: #EB7B28;
}
.useful_link_overview .entry:hover .icon {
  fill: #fff;
}
.useful_link_overview .entry:hover .text {
  color: #fff;
}

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

.control_wrapper {
  height: 2.5rem;
  width: 2.5rem;
}

.button.video_controls,
.toggle_play {
  position: relative;
  z-index: 10;
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  height: 2.5rem;
  width: 2.5rem;
}
.button.video_controls .icon,
.toggle_play .icon {
  fill: #fff;
  height: 2.5rem;
  width: 2.5rem;
}
.button.video_controls .pause,
.toggle_play .pause {
  display: none;
}
.button.video_controls.playing .play,
.toggle_play.playing .play {
  display: none;
}
.button.video_controls.playing .pause,
.toggle_play.playing .pause {
  display: inline;
}

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

.video_wrapper {
  height: 0;
  padding-top: 56.25%;
  position: relative;
}
.video_wrapper video {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  object-fit: cover;
}
.video_wrapper video::cue {
  background: #000000;
  color: #ffffff;
}
.video_wrapper .video_content {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  max-width: 100%;
  padding: 0 1.25rem;
}
@media (min-width: 47.5rem) {
  .video_wrapper .video_content {
    top: 50%;
  }
}
@media (min-width: 75rem) {
  .video_wrapper .video_content {
    max-width: 70.25rem;
  }
}
.video_wrapper .video_content > span {
  display: block;
}
.video_wrapper .video_content .text {
  display: none;
}
@media (min-width: 47.5rem) {
  .video_wrapper .video_content .text {
    display: block;
  }
}

