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

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

.contact_wrapper {
  display: flex;
  flex-wrap: wrap;
}
.contact_wrapper p {
  margin-right: 1.5em;
}
.contact_wrapper .postal_address > span {
  display: block;
}

.contact {
  display: flex;
}
.contact strong {
  min-width: 1.5625rem;
}

.address_vcard_button {
  margin: 0.75em 0;
}

.address_call_button {
  margin: 0.75em 0;
}

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


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

.atikon_logo {
  height: 100%;
}

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

.author_hor {
  display: inline-block;
  fill: #a0a0a0;
  height: 0.5625rem;
  line-height: 0.5625rem;
  width: 4.6875rem;
}

.author_ver {
  display: inline-block;
  fill: #a0a0a0;
  height: 4.6875rem;
  line-height: 4.6875rem;
  width: 0.5625rem;
}

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

.background_image_slider_overview {
  min-height: 13.75rem;
  position: relative;
  width: 100%;
}
@media (min-width: 18.75rem) {
  .background_image_slider_overview {
    min-height: calc(13.75rem + 22.5 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .background_image_slider_overview {
    min-height: 36.25rem;
  }
}
.background_image_slider_overview .background_image_wrapper {
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 600ms ease-in-out;
  width: 100%;
  z-index: 1;
}
.background_image_slider_overview .background_image_wrapper .background_image {
  height: 100%;
  position: absolute;
}
.background_image_slider_overview .background_image_wrapper.show {
  opacity: 1;
  pointer-events: auto;
}
.background_image_slider_overview .navigation_wrapper {
  bottom: 1.5em;
  display: flex;
  position: absolute;
  right: 1.5em;
  z-index: 3333;
}
.background_image_slider_overview .navigation_wrapper .navigation {
  cursor: pointer;
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
}
.background_image_slider_overview .navigation_wrapper .navigation.prev .icon {
  transform: rotate(180deg);
}
.background_image_slider_overview .navigation_wrapper .pagination {
  display: flex;
}
.background_image_slider_overview .navigation_wrapper .pagination .item {
  background-color: rgba(255, 255, 255, 0.3);
  border: 0.1875rem solid #fff;
  cursor: pointer;
  display: flex;
  height: 2.75rem;
  margin-right: 1.5em;
  opacity: 0.5;
  width: 2.75rem;
}
.background_image_slider_overview .navigation_wrapper .pagination .item:last-child {
  margin-right: 0;
}
.background_image_slider_overview .navigation_wrapper .pagination .item.active {
  opacity: 1;
}
.background_image_slider_overview .navigation_wrapper > div {
  margin-right: 1.5em;
}
.background_image_slider_overview .navigation_wrapper > div:last-child {
  margin-right: 0;
}

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

.background_image {
  background-position: 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.125rem;
  padding: 0 1.5em;
  background: #FFE456;
  border: 0.0625rem solid #FFE456;
  color: #464F50;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms;
  user-select: none;
}
.button > span {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 2.625rem;
}
@media (min-width: 18.75rem) {
  .button > span {
    min-height: calc(2.625rem + 0.625 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .button > span {
    min-height: 3.25rem;
  }
}
.button .icon {
  fill: #464F50;
  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.5em;
}
.button:focus {
  outline: none;
  box-shadow: none;
  background: #464F50;
  border-color: #464F50;
  color: #fff;
}
.button:focus .icon {
  fill: #fff;
}
.button:hover {
  background: #464F50;
  border-color: #464F50;
  color: #fff;
}
.button:hover .icon {
  fill: #fff;
}
.button:active, .button.active {
  box-shadow: none;
  background: #ffdc23;
  border: 0.0625rem solid #ffdc23;
  color: #464F50;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms;
  user-select: none;
}
.button:active > span, .button.active > span {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 2.625rem;
}
@media (min-width: 18.75rem) {
  .button:active > span, .button.active > span {
    min-height: calc(2.625rem + 0.625 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .button:active > span, .button.active > span {
    min-height: 3.25rem;
  }
}
.button:active .icon, .button.active .icon {
  fill: #464F50;
  flex-shrink: 0;
  height: 1.5rem;
  transition: fill 300ms;
  width: 1.5rem;
}
.button:active .text, .button.active .text {
  font-weight: 400;
  padding: 0.375em 0;
}
.button:active .icon + .text, .button.active .icon + .text {
  padding-left: 0.5em;
}
.button.bottom_spacing {
  margin-bottom: 0.75em;
}

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

/* 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: 18.75rem;
}
.bypass_links a {
  background: #fff;
  color: #464F50;
  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: #464F50;
  height: auto;
  left: 0.375em;
  top: 0.375em;
  width: auto;
}

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

.company_logo {
  width: 6.25rem;
  transition: all 0.4s ease-out;
  display: block;
  position: relative;
  z-index: 2;
}
@media (min-width: 18.75rem) {
  .company_logo {
    width: calc(6.25rem + 21.875 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .company_logo {
    width: 28.125rem;
  }
}
@media (max-width: 47.5rem) {
  .company_logo {
    width: 11.5625rem;
  }
}

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

.content_slider {
  position: relative;
}
.content_slider .slide_wrapper {
  display: flex;
  overflow: hidden;
  position: relative;
}
.content_slider .slide_wrapper .slide {
  flex: 1 0 100%;
  max-width: 100%;
  transition: transform 900ms;
  z-index: 10;
}
.content_slider .navigation_wrapper {
  display: flex;
  position: relative;
  z-index: 30;
}
.content_slider .dot {
  background-color: #fff;
  border: 0.125rem solid #fff;
  border-radius: 50%;
  cursor: pointer;
  height: 0.9375rem;
  transition: all 300ms;
  width: 0.9375rem;
}
.content_slider .dot_1 {
  background-color: #464F50;
}
.content_slider .slide_prev,
.content_slider .slide_next {
  background-color: rgba(70, 79, 80, 0.5);
  bottom: 0;
  cursor: pointer;
  display: block;
  opacity: 1;
  position: absolute;
  top: 0;
  transition: all 300ms;
  width: 1.875rem;
  z-index: 20;
}
.content_slider .slide_prev.hidden,
.content_slider .slide_next.hidden {
  cursor: default;
  opacity: 0;
}
.content_slider .slide_prev {
  left: 0;
}
.content_slider .slide_next {
  right: 0;
}

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

.cookie_banner {
  align-items: center;
  background: #e2e5e6;
  border-top: 0.0625rem solid #c7cdce;
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: 0;
  padding: 0.75em;
  position: fixed;
  right: 0;
  text-align: center;
  z-index: 9000;
}
@media (min-width: 35rem) {
  .cookie_banner {
    flex-direction: row;
    text-align: left;
  }
}
.cookie_banner p {
  font-size: 85%;
  margin: 0;
  width: 100%;
}
.cookie_banner .close {
  flex: 1 0 auto;
  margin: 0.75em 0 0 0;
}
@media (min-width: 35rem) {
  .cookie_banner .close {
    margin: 0 0 0 0.75em;
  }
}

/* Source common/css/styles/screen/data-animated.scss */

@keyframes slide_from_left {
  0% {
    left: -20em;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
@keyframes slide_from_right {
  0% {
    right: -20em;
    opacity: 0;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}
@keyframes slide_from_top {
  0% {
    top: -20em;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes slide_from_bottom {
  0% {
    bottom: -20em;
    opacity: 0;
  }
  100% {
    bottom: 0;
    opacity: 1;
  }
}

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

.disclaimer {
  background: #e2e5e6;
  border-radius: 0.125rem;
  color: #464F50;
  font-size: 85%;
  margin: 1.5em 0;
  padding: 1em 1.5em;
}
.disclaimer a {
  display: inline;
}

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

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

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

footer {
  background: #808787;
}
footer .footer-box {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 47.5rem) {
  footer .footer-box {
    min-height: 6.1875rem;
  }
}
@media (min-width: 61.875rem) {
  footer .footer-box {
    min-height: 9.375rem;
  }
}
footer a {
  color: #fff;
}
footer .container {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 61.875rem) {
  footer .container {
    flex-direction: row;
  }
}
footer .footer_links a {
  color: #fff;
  text-decoration: none;
}
footer .footer_links a:hover {
  color: #FFE456;
}
footer .footer_links ul {
  padding: 1.25rem 0;
  text-align: center;
}
footer .footer_links li {
  display: inline;
  line-height: 2.5rem;
  white-space: nowrap;
}
footer .footer_links li:after {
  padding: 0.625rem;
  content: "|";
  color: #fff;
}
footer .footer_links li:last-child:after {
  content: "";
  padding: 0;
}
footer .footer_logo h3 {
  color: #fff;
}
footer .footer_logo img {
  padding-top: 1.25rem;
  max-height: 6.25rem;
  width: auto;
}

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

.file {
  display: flex;
  flex-basis: 65%;
  margin: 0 0 1em;
  position: relative;
  height: 2.75rem;
}
@media (min-width: 18.75rem) {
  .file {
    height: calc(2.75rem + 0.625 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .file {
    height: 3.375rem;
  }
}
.file.error .file_name {
  border-color: #464F50;
}
.file .file_name {
  background: #fff;
  border: 0.0625rem solid #c7cdce;
  border-radius: 0.125rem 0 0 0.125rem;
  box-shadow: 0 0 0.1875rem #c7cdce inset;
  color: #464F50;
  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: 18.75rem) {
  .file .file_name {
    line-height: calc(2.625rem + 0.625 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .file .file_name {
    line-height: 3.25rem;
  }
}
@media (min-width: 18.75rem) {
  .file .file_name {
    height: calc(2.75rem + 0.625 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .file .file_name {
    height: 3.375rem;
  }
}
.file .file_button {
  border-radius: 0 0.125rem 0.125rem 0;
  flex: 1 0 auto;
  padding: 0 1.5em;
  z-index: 10;
  background: #FFE456;
  border: 0.0625rem solid #FFE456;
  color: #464F50;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms;
  user-select: none;
}
.file .file_button > span {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 2.625rem;
}
@media (min-width: 18.75rem) {
  .file .file_button > span {
    min-height: calc(2.625rem + 0.625 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .file .file_button > span {
    min-height: 3.25rem;
  }
}
.file .file_button .icon {
  fill: #464F50;
  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.5em;
}
.file .file_button > span {
  min-height: 2.625rem;
}
@media (min-width: 18.75rem) {
  .file .file_button > span {
    min-height: calc(2.625rem + 0.625 * (100vw - 18.75rem) / (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(70, 79, 80, 0.2);
  background: #464F50;
  border-color: #464F50;
  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: 18.75rem) {
  .file [type=file] {
    height: calc(2.75rem + 0.625 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .file [type=file] {
    height: 3.375rem;
  }
}
.file [type=file]:hover ~ .file_button {
  background: #464F50;
  border-color: #464F50;
  color: #fff;
}
.file [type=file]:hover ~ .file_button .icon {
  fill: #fff;
}
.file [type=file]:active ~ .file_button {
  box-shadow: 0 0 0.1875rem #ffdc23 inset;
  background: #ffdc23;
  border: 0.0625rem solid #ffdc23;
  color: #464F50;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms;
  user-select: none;
}
.file [type=file]:active ~ .file_button > span {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 2.625rem;
}
@media (min-width: 18.75rem) {
  .file [type=file]:active ~ .file_button > span {
    min-height: calc(2.625rem + 0.625 * (100vw - 18.75rem) / (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: #464F50;
  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.5em;
}

@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: 18.75rem) {
  button {
    height: calc(2.75rem + 0.625 * (100vw - 18.75rem) / (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: 18.75rem;
  padding: 0 0.9375rem;
}
@media (min-width: 18.75rem) {
  .container {
    padding: 0 calc(0.9375rem + 2.1875 * (100vw - 18.75rem) / (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: 18.75rem) {
  .row {
    margin: 0 calc((-0.9375rem / 2) - (2.1875 / 2) * (100vw - 18.75rem) / (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: 18.75rem) {
  .row.half_column_margin {
    margin: 0 calc((-0.9375rem / 4) - (2.1875 / 4) * (100vw - 18.75rem) / (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: 18.75rem) {
  .row.half_column_margin > [class*=span] {
    padding: 0 calc((0.9375rem / 4) + (2.1875 / 4) * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .row.half_column_margin > [class*=span] {
    padding: 0 0.78125rem;
  }
}

@media (min-width: 18.75rem) {
  .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: 18.75rem) {
  [class*=span] {
    padding: 0 calc((0.9375rem / 2) + (2.1875 / 2) * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  [class*=span] {
    padding: 0 1.5625rem;
  }
}
[class*=span].span_column {
  display: flex;
  flex-direction: column;
}

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

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

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

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

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

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

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

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

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

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

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

  .order11_xsmall {
    order: 11;
  }
}
@media (min-width: 18.75rem) {
  .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 */

.navbar {
  background-color: transparent;
  z-index: 1000;
  height: 0;
}
.navbar.without_height {
  height: inherit;
}
.navbar .row {
  width: 100%;
  align-items: flex-start;
}
.navbar .company_logo {
  position: relative;
  z-index: 111;
}
.navbar .company_logo img {
  transition: all 3s ease-out;
}
.navbar .menu-wrap {
  padding: 0.625rem;
  justify-content: flex-end;
}
@media (min-width: 30rem) {
  .navbar .menu-wrap {
    padding: 1.5625rem;
  }
}
.navbar .menu-box {
  display: flex;
  background-color: #fff;
}
.navbar .menu-box .language-select {
  flex-direction: row;
  position: relative;
  z-index: 111;
  text-decoration: none;
  font-size: 1.5rem;
  display: none;
}
@media (min-width: 35rem) {
  .navbar .menu-box .language-select {
    display: inherit;
  }
}
.navbar .menu-box .language-select a {
  text-decoration: none;
  color: #6C6D75;
}
.navbar .menu-box .language-select a.active {
  color: black;
  font-size: 105%;
}
.navbar .menu-box .language-select a:hover {
  text-decoration: underline;
}
.navbar .menu-box .language-select li:first-child:after {
  padding-right: 0.3125rem;
  content: "|";
}
.navbar .menu-box .language-select ul {
  display: flex;
  background-color: #fff;
  margin-right: 0.625rem;
  padding: 0 0.3125rem;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
}
.navbar .menu-box .menu {
  position: relative;
  z-index: 111;
}

.scrolled_down .toggle_offcanvas_menu {
  margin: 0.625rem;
  top: 0;
  right: 0;
  position: fixed;
  z-index: 1000;
}

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

.header_picture_wrap {
  position: relative;
}
.header_picture_wrap .header_picture img {
  min-width: 100%;
  max-width: 100%;
  display: block;
}
.single_person_page .header_picture_wrap .header_picture img {
  object-fit: cover;
  max-height: 50vh;
  object-position: top;
}
.header_picture_wrap .overlay {
  height: 100%;
  z-index: 1;
  width: 100%;
  background: linear-gradient(190deg, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.4) 100%);
  position: absolute;
}
.header_picture_wrap h1 {
  letter-spacing: 0.0625rem;
  bottom: 1.875rem;
  color: #fff;
  margin: 0;
  position: absolute;
  z-index: 2;
}
@media (min-width: 18.75rem) {
  .header_picture_wrap h1 {
    letter-spacing: calc(0.0625rem + 0.25 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .header_picture_wrap h1 {
    letter-spacing: 0.3125rem;
  }
}
@media (min-width: 18.75rem) {
  .header_picture_wrap h1 {
    bottom: calc(1.875rem + 6.875 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .header_picture_wrap h1 {
    bottom: 8.75rem;
  }
}
.startseite .header_picture_wrap h1 {
  bottom: 1.875rem;
}
@media (min-width: 18.75rem) {
  .startseite .header_picture_wrap h1 {
    bottom: calc(1.875rem + 9.375 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .startseite .header_picture_wrap h1 {
    bottom: 11.25rem;
  }
}
.single_person_page .header_picture_wrap h1 {
  display: none;
}

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

.image_with_content {
  background: #e2e5e6;
}
.image_with_content .wrapper_image .img_resize {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

/* 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: 18.75rem) {
  @supports (padding-left: env(safe-area-inset-left)) {
    html.iphone .container {
      padding-left: "max(calc(0.9375rem + 2.1875 * (100vw - 18.75rem) / (75)), env(safe-area-inset-left))";
      padding-right: "max(calc(0.9375rem + 2.1875 * (100vw - 18.75rem) / (75)), env(safe-area-inset-right))";
    }
  }
}

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


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

.job_overview {
  margin-bottom: 0.75em;
}

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


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

@charset "UTF-8";
.page_wrapper {
  overflow-x: hidden;
}

.object_shadow {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
}

.author_box {
  position: absolute;
  right: 0;
  padding: 0.625rem;
}

.tab_button {
  position: relative;
  border-radius: 0;
  margin-top: 1.25rem;
  background: #fff;
  border: 0.1875rem solid #464F50;
  color: #464F50;
  display: inline-flex;
  justify-content: center;
  padding: 0;
  margin: 0 0 1.875rem 0;
}
.tab_button a {
  padding: 0.9375rem 1.25rem;
  text-decoration: none;
}
@media (min-width: 18.75rem) {
  .tab_button a {
    padding: calc(0.9375rem 1.25rem + 1.25rem 1.875rem-0.9375rem 1.25rem * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .tab_button a {
    padding: 1.25rem 1.875rem;
  }
}
.tab_button .text {
  padding: 0.9375rem 1.25rem;
  text-decoration: none;
}
@media (min-width: 18.75rem) {
  .tab_button .text {
    padding: calc(0.9375rem 1.25rem + 1.25rem 1.875rem-0.9375rem 1.25rem * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .tab_button .text {
    padding: 1.25rem 1.875rem;
  }
}
.tab_button .icon {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(0.4375rem, 0.9375rem);
  height: 2.3125rem;
  width: 3.75rem;
}

.tab_button:hover {
  background: #FFE456;
}

.animation_from_left {
  position: relative;
  opacity: 0;
}
.animation_from_left.animated {
  opacity: 1;
  animation: slide_from_left 1s backwards;
  animation-timing-function: ease-in-out;
}

.animation_from_right {
  position: relative;
  opacity: 0;
}
.animation_from_right.animated {
  opacity: 1;
  animation: slide_from_right 1s backwards;
  animation-timing-function: ease-in-out;
}

.animation_from_top {
  position: relative;
  opacity: 0;
}
.animation_from_top.animated {
  opacity: 1;
  animation: slide_from_top 1s backwards;
  animation-timing-function: ease-in-out;
}

.animation_from_bottom {
  position: relative;
  opacity: 0;
}
.animation_from_bottom.animated {
  opacity: 1;
  animation: slide_from_bottom 1s backwards;
  animation-timing-function: ease-in-out;
}

.animation_apear {
  position: relative;
  opacity: 0;
}
.animation_apear.animated {
  opacity: 1;
  animation: slide_apear 1.5s backwards;
  animation-timing-function: ease-in-out;
}

main {
  margin-bottom: 1.875rem;
  position: relative;
}
@media (min-width: 18.75rem) {
  main {
    margin-bottom: calc(1.875rem + 7.5 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  main {
    margin-bottom: 9.375rem;
  }
}
.startseite main {
  margin-bottom: 0;
}
.no_bottom_margin main {
  margin-bottom: 0;
}
.error_site main {
  margin-top: 1.875rem;
}
@media (min-width: 18.75rem) {
  .error_site main {
    margin-top: calc(1.875rem + 7.5 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .error_site main {
    margin-top: 9.375rem;
  }
}
main .intro_button_box {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
@media (max-width: 30rem) {
  main .intro_button_box {
    display: none;
  }
}
main .intro_button_box :hover {
  transition: all 0.2s ease-in-out;
}
main .intro_button_box :hover .icon {
  position: relative;
  margin-left: 0.625rem !important;
  fill: #FFE456;
}
main .intro_button_box .intro_button {
  margin: 0 !important;
}
@media (min-width: 47.5rem) {
  main .intro_button_box {
    justify-content: center;
    align-items: center;
  }
}
main .intro_button_box .button_arrow {
  display: flex;
}
main .intro_button_box .button_arrow h3 {
  display: none;
}
@media (min-width: 47.5rem) {
  main .intro_button_box .button_arrow h3 {
    display: block;
  }
}
main .intro_button_box .button_arrow .text_arrow {
  display: flex;
  align-items: center;
  color: #464F50;
  padding-bottom: 1.25rem;
}
main .intro_button_box .button_arrow .text_arrow h3 {
  font-size: 0.875rem;
  line-height: 0.875rem;
}
@media (min-width: 18.75rem) {
  main .intro_button_box .button_arrow .text_arrow h3 {
    font-size: calc(0.875rem + 2.125 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  main .intro_button_box .button_arrow .text_arrow h3 {
    font-size: 3rem;
  }
}
@media (min-width: 18.75rem) {
  main .intro_button_box .button_arrow .text_arrow h3 {
    line-height: calc(0.875rem + 2.125 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  main .intro_button_box .button_arrow .text_arrow h3 {
    line-height: 3rem;
  }
}
main .intro_button_box .button_arrow .button {
  padding: 0;
  border-radius: none;
  background: none;
  border: none;
}
main .intro_button_box .button_arrow .icon {
  transform: rotate(90deg);
  transition: all 0.2s ease-in-out;
  width: 3.125rem;
  margin-left: 1.875rem;
  height: auto;
}
@media (min-width: 47.5rem) {
  main .intro_button_box .button_arrow .icon {
    transform: none;
    margin-bottom: -1.125rem;
  }
}
main .col {
  flex: 1;
}
main .intro_text {
  padding-right: 2.5rem;
  padding-top: 1.875rem;
}
@media (min-width: 18.75rem) {
  main .intro_text {
    padding-top: calc(1.875rem + 7.5 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  main .intro_text {
    padding-top: 9.375rem;
  }
}
main .intro_text h2 {
  padding-top: 0;
}
main .intro_text_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
main .intro_text_box_top {
  position: relative;
  z-index: 1;
  padding-bottom: 1.5625rem;
}
@media (min-width: 18.75rem) {
  main .intro_text_box_top {
    padding-bottom: calc(1.5625rem + 4.375 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  main .intro_text_box_top {
    padding-bottom: 5.9375rem;
  }
}
main .intro_text_box_top:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -2rem;
  left: -50vw;
  background: #FFE456;
  z-index: -1;
  top: -1.5625rem;
}
@media (min-width: 18.75rem) {
  main .intro_text_box_top:after {
    top: calc(-1.5625rem + -4.375 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  main .intro_text_box_top:after {
    top: -5.9375rem;
  }
}
main .intro_text_box_bottom {
  position: relative;
  z-index: 1;
  padding-top: 1.5625rem;
}
@media (min-width: 18.75rem) {
  main .intro_text_box_bottom {
    padding-top: calc(1.5625rem + 4.375 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  main .intro_text_box_bottom {
    padding-top: 5.9375rem;
  }
}
main .intro_text_box_bottom:after {
  content: "";
  position: absolute;
  top: 0;
  right: -2rem;
  left: -50vw;
  background: #FFE456;
  z-index: -1;
  bottom: -1.5625rem;
}
@media (min-width: 18.75rem) {
  main .intro_text_box_bottom:after {
    bottom: calc(-1.5625rem + -4.375 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  main .intro_text_box_bottom:after {
    bottom: -5.9375rem;
  }
}
main .philosophy .philosophy_image_box {
  position: relative;
  width: 100%;
  z-index: 1;
}
@media (max-width: 47.5rem) {
  main .philosophy .philosophy_image_box {
    order: 2;
  }
}
main .philosophy .philosophy_image_box .philosophy_image_left {
  margin-right: calc(-52vw + 50%);
  margin-left: calc(-52vw + 50%);
}
@media (min-width: 47.5rem) {
  main .philosophy .philosophy_image_box .philosophy_image_left {
    margin-left: 0;
  }
}
main .philosophy .philosophy_image_box .philosophy_image_right {
  margin-left: calc(-52vw + 50%);
  margin-right: calc(-52vw + 50%);
}
@media (min-width: 47.5rem) {
  main .philosophy .philosophy_image_box .philosophy_image_right {
    margin-right: 0;
  }
}
main .philosophy .philosophy_image_box .background_image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 20rem;
}
@media (min-width: 47.5rem) {
  main .philosophy .philosophy_image_box .background_image {
    height: 40.625rem;
  }
}
@media (min-width: 61.875rem) {
  main .philosophy .philosophy_image_box .background_image {
    height: 46.875rem;
  }
}
@media (min-width: 93.75rem) {
  main .philosophy .philosophy_image_box .background_image {
    height: 64.375rem;
  }
}
main .philosophy .philosophy_text_box {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 47.5rem) {
  main .philosophy .philosophy_text_box {
    order: 1;
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 47.5rem) and (min-width: 18.75rem) {
  main .philosophy .philosophy_text_box {
    margin-top: calc(1.875rem + 7.5 * (100vw - 18.75rem) / (75));
  }
}
@media (max-width: 47.5rem) and (min-width: 93.75rem) {
  main .philosophy .philosophy_text_box {
    margin-top: 9.375rem;
  }
}
@media (max-width: 47.5rem) and (min-width: 18.75rem) {
  main .philosophy .philosophy_text_box {
    margin-bottom: calc(1.875rem + 7.5 * (100vw - 18.75rem) / (75));
  }
}
@media (max-width: 47.5rem) and (min-width: 93.75rem) {
  main .philosophy .philosophy_text_box {
    margin-bottom: 9.375rem;
  }
}
main .philosophy .philosophy_text_box h2 {
  padding-top: 0;
}
main .philosophy .philosophy_text_box .philosophy_text .button {
  border-radius: 0;
  margin-top: 1.25rem;
  background: #fff;
  border: 0.1875rem solid #464F50;
  color: #464F50;
  display: inline-flex;
  justify-content: center;
  position: relative;
  padding: 0;
}
main .philosophy .philosophy_text_box .philosophy_text .button .text {
  padding: 0.9375rem 1.25rem;
}
@media (min-width: 18.75rem) {
  main .philosophy .philosophy_text_box .philosophy_text .button .text {
    padding: calc(0.9375rem 1.25rem + 1.25rem 1.875rem-0.9375rem 1.25rem * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  main .philosophy .philosophy_text_box .philosophy_text .button .text {
    padding: 1.25rem 1.875rem;
  }
}
main .philosophy .philosophy_text_box .philosophy_text .button:hover {
  background: #FFE456;
}
main .philosophy .philosophy_text_box .philosophy_text .icon {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(0.4375rem, 0.9375rem);
  height: 2.3125rem;
  width: 3.75rem;
}
main .contact_us .contact_us_text_box {
  display: flex;
  flex-direction: column;
  margin: auto;
  order: 1;
}
@media (max-width: 47.5rem) {
  main .contact_us .contact_us_text_box {
    order: 2;
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 47.5rem) and (min-width: 18.75rem) {
  main .contact_us .contact_us_text_box {
    margin-top: calc(1.875rem + 7.5 * (100vw - 18.75rem) / (75));
  }
}
@media (max-width: 47.5rem) and (min-width: 93.75rem) {
  main .contact_us .contact_us_text_box {
    margin-top: 9.375rem;
  }
}
@media (max-width: 47.5rem) and (min-width: 18.75rem) {
  main .contact_us .contact_us_text_box {
    margin-bottom: calc(1.875rem + 7.5 * (100vw - 18.75rem) / (75));
  }
}
@media (max-width: 47.5rem) and (min-width: 93.75rem) {
  main .contact_us .contact_us_text_box {
    margin-bottom: 9.375rem;
  }
}
main .contact_us .contact_us_text_box .opening_times h2,
main .contact_us .contact_us_text_box .opening_times p {
  margin-bottom: 0;
}
main .contact_us .contact_us_map_box {
  order: 1;
}
@media (min-width: 47.5rem) {
  main .contact_us .contact_us_map_box {
    order: 2;
  }
}
main .contact_us .contact_us_map {
  margin-right: calc(-52vw + 50%);
  margin-left: calc(-52vw + 50%);
  height: 20rem;
}
@media (min-width: 47.5rem) {
  main .contact_us .contact_us_map {
    height: 40.625rem;
    margin-right: calc(-37vw + 50%);
    margin-left: 0;
  }
}
@media (min-width: 75rem) {
  main .contact_us .contact_us_map {
    height: 46.875rem;
    margin-right: calc(-39vw + 50%);
    margin-left: 0;
  }
}
@media (min-width: 93.75rem) {
  main .contact_us .contact_us_map {
    height: 64.375rem;
    margin-right: calc(-40vw + 50%);
    margin-left: 0;
  }
}
main .contact_us .contact_us_map .open_street_map {
  height: 100% !important;
  width: auto;
}
main .contact_us .contact_us_map .open_street_map .map {
  height: 100% !important;
  width: auto;
}
main .contact_us .contact_us_map .open_street_map .map .ol-control > button {
  margin-right: 4%;
}
@media (min-width: 47.5rem) {
  main .contact_us .contact_us_map .open_street_map .map .ol-control > button {
    margin-right: 14%;
  }
}
@media (min-width: 61.875rem) {
  main .contact_us .contact_us_map .open_street_map .map .ol-control > button {
    margin-right: 6%;
  }
}
@media (min-width: 75rem) {
  main .contact_us .contact_us_map .open_street_map .map .ol-control > button {
    margin-right: 9%;
  }
}
@media (min-width: 93.75rem) {
  main .contact_us .contact_us_map .open_street_map .map .ol-control > button {
    margin-right: 10%;
  }
}
@media (min-width: 118.75rem) {
  main .contact_us .contact_us_map .open_street_map .map .ol-control > button {
    margin-right: 6%;
  }
}
@media (min-width: 137.5rem) {
  main .contact_us .contact_us_map .open_street_map .map .ol-control > button {
    margin-right: 3%;
  }
}

.main_focus .intro_text {
  padding-right: 2.5rem;
}
.main_focus .intro_text h2 {
  padding-top: 0;
}
.main_focus .intro_text_wrap {
  justify-content: space-between;
}
.main_focus .intro_text_box {
  display: flex;
  align-items: center;
}
.main_focus .intro_text_box_top {
  position: relative;
  z-index: 1;
}
.main_focus .intro_text_box_top:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -2rem;
  left: -50vw;
  background: #FFE456;
  z-index: -1;
  top: -1.5625rem;
}
@media (min-width: 18.75rem) {
  .main_focus .intro_text_box_top:after {
    top: calc(-1.5625rem + -4.375 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .main_focus .intro_text_box_top:after {
    top: -5.9375rem;
  }
}
.main_focus .philosophy .philosophy_image_box {
  order: 1;
}
.main_focus .philosophy .philosophy_image_box .philosophy_image_left {
  margin-right: calc(-52vw + 50%);
  margin-left: calc(-52vw + 50%);
}
@media (min-width: 93.75rem) {
  .main_focus .philosophy .philosophy_image_box .philosophy_image_left {
    margin-left: 0;
  }
}
.main_focus .philosophy .philosophy_image_box .philosophy_image_right {
  margin-left: calc(-52vw + 50%);
  margin-right: calc(-52vw + 50%);
}
@media (min-width: 93.75rem) {
  .main_focus .philosophy .philosophy_image_box .philosophy_image_right {
    margin-right: 0;
  }
}
@media (min-width: 93.75rem) {
  .main_focus .philosophy .philosophy_image_box {
    order: inherit;
  }
}
.main_focus .philosophy .philosophy_text_box {
  order: 2;
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
}
@media (min-width: 18.75rem) {
  .main_focus .philosophy .philosophy_text_box {
    margin-top: calc(1.875rem + 7.5 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .main_focus .philosophy .philosophy_text_box {
    margin-top: 9.375rem;
  }
}
@media (min-width: 18.75rem) {
  .main_focus .philosophy .philosophy_text_box {
    margin-bottom: calc(1.875rem + 7.5 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .main_focus .philosophy .philosophy_text_box {
    margin-bottom: 9.375rem;
  }
}
@media (min-width: 93.75rem) {
  .main_focus .philosophy .philosophy_text_box {
    order: inherit;
  }
}
@media (min-width: 93.75rem) {
  .main_focus .philosophy .main_focus_philosophy_text_box_first {
    margin-bottom: 0;
  }
}

main ul {
  column-count: 1;
  list-style: none;
  padding-left: 0;
  line-height: 1.875rem;
}
main ul li {
  break-inside: avoid;
}
main ul li:before {
  color: #FFE456;
  fill: #FFE456;
  content: "▪";
  font-size: 1.5em;
  position: relative;
  top: 0.1em;
  right: 0.2em;
}

.subpage_wrap ul {
  column-count: 1;
  list-style: none;
  padding-left: 0;
}
@media (min-width: 47.5rem) {
  .subpage_wrap ul {
    column-count: 2;
  }
}
.subpage_wrap ul li {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  break-inside: avoid;
  display: flex;
}
@media (min-width: 18.75rem) {
  .subpage_wrap ul li {
    padding-top: calc(0.625rem + 1.25 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .subpage_wrap ul li {
    padding-top: 1.875rem;
  }
}
@media (min-width: 18.75rem) {
  .subpage_wrap ul li {
    padding-bottom: calc(0.625rem + 1.25 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .subpage_wrap ul li {
    padding-bottom: 1.875rem;
  }
}
.subpage_wrap ul li:before {
  color: #FFE456;
  content: "▪";
  font-size: 1.5em;
  position: relative;
  top: 0px;
  right: 0.2em;
}
.subpage_wrap .subpage_intro .row {
  justify-content: space-between;
}
.subpage_wrap .title_text {
  padding-right: 2.5rem;
}
.subpage_wrap .title_text h2 {
  padding-top: 0;
}
.subpage_wrap .subpage_title_box {
  display: flex;
  position: relative;
  z-index: 1;
  padding-top: 1.875rem;
}
@media (min-width: 18.75rem) {
  .subpage_wrap .subpage_title_box {
    padding-top: calc(1.875rem + 7.5 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .subpage_wrap .subpage_title_box {
    padding-top: 9.375rem;
  }
}
.subpage_wrap .subpage_title_box:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -2rem;
  left: -50vw;
  background: #FFE456;
  z-index: -10;
  margin-right: calc(-52vw + 50%);
  margin-left: calc(-52vw + 50%);
  top: -1.5625rem;
}
@media (min-width: 18.75rem) {
  .subpage_wrap .subpage_title_box:after {
    top: calc(-1.5625rem + -4.375 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .subpage_wrap .subpage_title_box:after {
    top: -5.9375rem;
  }
}
@media (max-width: 47.5rem) {
  .subpage_wrap .subpage_title_box:after {
    top: 0;
  }
}
@media (min-width: 47.5rem) {
  .subpage_wrap .subpage_title_box:after {
    margin-right: inherit;
    margin-left: inherit;
  }
}
.subpage_wrap .subpage_text_box {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}
@media (min-width: 18.75rem) {
  .subpage_wrap .subpage_text_box {
    padding-top: calc(1.875rem + 7.5 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .subpage_wrap .subpage_text_box {
    padding-top: 9.375rem;
  }
}
@media (min-width: 18.75rem) {
  .subpage_wrap .subpage_text_box {
    padding-bottom: calc(1.875rem + 7.5 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .subpage_wrap .subpage_text_box {
    padding-bottom: 9.375rem;
  }
}
.subpage_wrap .slider {
  margin-right: 0;
}
@media (min-width: 75rem) {
  .subpage_wrap .slider {
    margin-right: calc(-52vw + 47%);
  }
}
.subpage_wrap .slider .teaser_row {
  display: flex;
  align-items: center;
  justify-content: normal;
}
.subpage_wrap .slider .teaser_image {
  width: auto;
  height: 100%;
}
.subpage_wrap .slider .teaser_image img {
  object-fit: cover;
  display: block;
  width: 100%;
  height: 20rem;
}
@media (min-width: 35rem) {
  .subpage_wrap .slider .teaser_image img {
    height: 28.125rem;
  }
}
@media (min-width: 47.5rem) {
  .subpage_wrap .slider .teaser_image img {
    height: 34.375rem;
  }
}
@media (min-width: 75rem) {
  .subpage_wrap .slider .teaser_image img {
    height: 50rem;
  }
}

@media (min-width: 61.875rem) {
  .impressum_subpage h1,
.legal_notice_subpage h1 {
    font-size: 140%;
  }
  .impressum_subpage main h2,
.legal_notice_subpage main h2 {
    font-size: 100%;
  }
  .impressum_subpage main h3,
.legal_notice_subpage main h3 {
    font-size: 90%;
  }
  .impressum_subpage main p, .impressum_subpage main li, .impressum_subpage main dt,
.legal_notice_subpage main p,
.legal_notice_subpage main li,
.legal_notice_subpage main dt {
    font-size: 80%;
  }
}

.related_links a.active {
  text-decoration: underline !important;
}

.news .teaser img {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.toggle_offcanvas_menu {
  display: inline-block;
  position: relative;
}
.toggle_offcanvas_menu:hover .line {
  background: #FFE456;
}
.toggle_offcanvas_menu label {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 112.5%;
  font-weight: 600;
  height: 2.75rem;
  position: relative;
  text-transform: uppercase;
  user-select: none;
  z-index: 10;
  height: 3.125rem;
  width: 3.125rem;
  background-color: #fff;
}
@media (min-width: 35rem) {
  .toggle_offcanvas_menu label {
    height: 4.6875rem;
    width: 4.6875rem;
  }
}
.toggle_offcanvas_menu label .icon {
  height: 1.875rem;
  margin: 0.5rem;
  position: relative;
  width: 2.125rem;
  padding: 0rem;
}
@media (min-width: 35rem) {
  .toggle_offcanvas_menu label .icon {
    height: 2.8125rem;
    width: 3.0625rem;
    margin: 0.9375rem;
  }
}
.toggle_offcanvas_menu label .line {
  background: #464F50;
  display: block;
  height: 0.375rem;
  position: absolute;
  width: 100%;
}
@media (min-width: 35rem) {
  .toggle_offcanvas_menu label .line {
    height: 0.5rem;
  }
}
.toggle_offcanvas_menu label .line :hover {
  background: #FFE456;
}
.toggle_offcanvas_menu label .line_1 {
  opacity: 1;
  top: 0;
  transition: top 300ms, transform 300ms;
  visibility: visible;
}
.toggle_offcanvas_menu label .line_2 {
  opacity: 1;
  top: calc(50% - (0.5rem / 2));
  transition: opacity 300ms;
  visibility: visible;
}
@media (max-width: 35rem) {
  .toggle_offcanvas_menu label .line_2 {
    top: calc(50% - (0.375rem / 2));
  }
}
.toggle_offcanvas_menu label .line_3 {
  bottom: 0;
  transition: bottom 300ms, transform 300ms;
}
.toggle_offcanvas_menu a {
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.toggle_offcanvas_menu .open_offcanvas_menu {
  display: block;
}
.toggle_offcanvas_menu .close_offcanvas_menu {
  display: none;
}

.offcanvas_menu_overlay {
  -webkit-backdrop-filter: blur(0.125rem);
  background: rgba(70, 79, 80, 0.5);
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 240ms, visibility 240ms;
  visibility: hidden;
  z-index: 110;
}

.offcanvas_menu_state:checked ~ .offcanvas_menu_wrapper .offcanvas_menu, .offcanvas_menu_state:target ~ .offcanvas_menu_wrapper .offcanvas_menu {
  opacity: 1;
  transform: scaleX(1);
  visibility: visible;
}
.offcanvas_menu_state:checked ~ .offcanvas_menu_wrapper .offcanvas_menu_overlay, .offcanvas_menu_state:target ~ .offcanvas_menu_wrapper .offcanvas_menu_overlay {
  opacity: 1;
  visibility: visible;
}

.offcanvas_menu_state {
  position: fixed;
}
.offcanvas_menu_state:checked ~ header .toggle_offcanvas_menu label .line_1, .offcanvas_menu_state:checked ~ div .toggle_offcanvas_menu label .line_1, .offcanvas_menu_state:target ~ header .toggle_offcanvas_menu label .line_1, .offcanvas_menu_state:target ~ div .toggle_offcanvas_menu label .line_1 {
  top: calc(50% - (0.5rem / 2));
  transform: rotate(45deg);
}
.offcanvas_menu_state:checked ~ header .toggle_offcanvas_menu label .line_2, .offcanvas_menu_state:checked ~ div .toggle_offcanvas_menu label .line_2, .offcanvas_menu_state:target ~ header .toggle_offcanvas_menu label .line_2, .offcanvas_menu_state:target ~ div .toggle_offcanvas_menu label .line_2 {
  opacity: 0;
  visibility: hidden;
}
.offcanvas_menu_state:checked ~ header .toggle_offcanvas_menu label .line_3, .offcanvas_menu_state:checked ~ div .toggle_offcanvas_menu label .line_3, .offcanvas_menu_state:target ~ header .toggle_offcanvas_menu label .line_3, .offcanvas_menu_state:target ~ div .toggle_offcanvas_menu label .line_3 {
  bottom: calc(50% - (0.5rem / 2));
  transform: rotate(-45deg);
}
.offcanvas_menu_state:checked ~ header .open_offcanvas_menu, .offcanvas_menu_state:checked ~ div .open_offcanvas_menu, .offcanvas_menu_state:target ~ header .open_offcanvas_menu, .offcanvas_menu_state:target ~ div .open_offcanvas_menu {
  display: none;
}
.offcanvas_menu_state:checked ~ header .close_offcanvas_menu, .offcanvas_menu_state:checked ~ div .close_offcanvas_menu, .offcanvas_menu_state:target ~ header .close_offcanvas_menu, .offcanvas_menu_state:target ~ div .close_offcanvas_menu {
  display: block;
}

.offcanvas_menu {
  background-color: #4B4D52;
  color: #fff;
  box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.2);
  display: block;
  min-height: 100vh;
  min-width: 100%;
  opacity: 0;
  padding: 0;
  position: fixed;
  transform: scaleX(0);
  transition: opacity 240ms, transform 240ms, visibility 240ms;
  user-select: none;
  visibility: hidden;
  width: 15.625rem;
  z-index: 110;
  left: 0;
  transform-origin: left;
}
.offcanvas_menu .language-select {
  color: #464F50;
  flex-direction: row;
  position: relative;
  z-index: 111;
  text-decoration: none;
  font-size: 1.5rem;
  display: block;
}
@media (min-width: 35rem) {
  .offcanvas_menu .language-select {
    display: none;
  }
}
.offcanvas_menu .language-select a {
  text-decoration: none;
  color: #6C6D75;
}
.offcanvas_menu .language-select a.active {
  color: black;
  font-size: 105%;
}
.offcanvas_menu .language-select a:hover {
  text-decoration: underline;
}
.offcanvas_menu .language-select li:first-child:after {
  padding-right: 0.3125rem;
  content: "|";
}
.offcanvas_menu .language-select ul {
  display: flex;
  background-color: #fff;
  margin-right: 0.625rem;
  padding: 0 0.3125rem;
}
.offcanvas_menu .hide_menu {
  display: none;
}
@media (min-width: 35rem) {
  .offcanvas_menu .hide_menu {
    display: inherit;
  }
}
@media (min-width: 30rem) {
  .offcanvas_menu {
    width: 21.875rem;
  }
}
.offcanvas_menu .offcanvas_menu_content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-height: 100%;
  text-align: left;
  flex-direction: column;
}
.offcanvas_menu .offcanvas_menu_content .hide {
  display: none;
}
.offcanvas_menu .offcanvas_menu_content a:hover + .hide {
  display: block;
}
.offcanvas_menu .offcanvas_menu_content .offcanvas_footer {
  position: absolute;
  margin-bottom: 1.25rem;
  bottom: 0;
}
.offcanvas_menu .offcanvas_menu_content .offcanvas_footer a {
  color: #fff;
  text-decoration: none;
}
.offcanvas_menu .offcanvas_menu_content .offcanvas_footer a:hover {
  color: #FFE456;
}
.offcanvas_menu .offcanvas_menu_content .offcanvas_footer .links li {
  display: inline;
}
.offcanvas_menu .offcanvas_menu_content .offcanvas_footer .links li:after {
  padding: 0.625rem;
  content: "|";
}
.offcanvas_menu .offcanvas_menu_content .offcanvas_footer .links li:last-child:after {
  content: "";
}
.offcanvas_menu .offcanvas_menu_content .offcanvas_footer .language-select li:last-child:before {
  content: "|";
}
.offcanvas_menu .offcanvas_menu_content .offcanvas_footer .language-select a {
  color: #464F50;
}
.offcanvas_menu .offcanvas_menu_content .offcanvas_footer .language-select a:active {
  color: #000000;
}
.offcanvas_menu .offcanvas_menu_content > ul > li {
  padding: 0 1.5em;
  position: relative;
  padding: 0;
}
.offcanvas_menu .offcanvas_menu_content > ul > li > a {
  display: block;
  font-size: 3rem;
  font-family: "Barlow", sans-serif;
  line-height: 3.75rem;
  font-weight: 300;
  text-decoration: none;
  color: #fff;
  padding: 0.625rem 0.625rem;
  margin: 1.5625rem 0;
  font-size: 1.875rem;
  line-height: 1.875rem;
}
@media (min-width: 18.75rem) {
  .offcanvas_menu .offcanvas_menu_content > ul > li > a {
    font-size: calc(1.875rem + 1.125 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .offcanvas_menu .offcanvas_menu_content > ul > li > a {
    font-size: 3rem;
  }
}
@media (min-width: 18.75rem) {
  .offcanvas_menu .offcanvas_menu_content > ul > li > a {
    line-height: calc(1.875rem + 1.125 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .offcanvas_menu .offcanvas_menu_content > ul > li > a {
    line-height: 3rem;
  }
}
.offcanvas_menu .offcanvas_menu_content > ul > li > a.active {
  color: #FFE456;
}
.offcanvas_menu .offcanvas_menu_content > ul > li > a:hover {
  display: block;
  color: #FFE456;
}
.offcanvas_menu .offcanvas_menu_content > ul li.expanded > ul {
  display: block;
}
.offcanvas_menu .offcanvas_menu_content > ul ul {
  display: none;
}
.offcanvas_menu .offcanvas_menu_content > ul ul:target {
  display: block;
}
.offcanvas_menu .offcanvas_menu_content > ul ul a {
  color: #464F50;
  display: block;
  padding: 0.375em 1.5em 0.375em 0;
}
.offcanvas_menu .offcanvas_menu_content > ul ul a.active {
  color: #464F50;
}
.offcanvas_menu .offcanvas_menu_content > ul ul ul {
  border-bottom: 0.0625rem solid #c7cdce;
  border-top: 0.0625rem solid #c7cdce;
}

/* 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 {
  -webkit-backdrop-filter: blur(0.125rem);
  background: rgba(70, 79, 80, 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 {
  opacity: 1;
  visibility: visible;
  z-index: 9000;
}

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

.popup_close {
  align-items: center;
  background: #464F50;
  border-radius: 0.125rem 0.125rem 0 0;
  cursor: pointer;
  display: flex;
  float: right;
  justify-content: center;
  margin-right: 0.0625rem;
  padding: 0.4285714286em;
  text-align: center;
  height: 2.75rem;
  width: 2.75rem;
}
@media (min-width: 18.75rem) {
  .popup_close {
    height: calc(2.75rem + 0.625 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .popup_close {
    height: 3.375rem;
  }
}
@media (min-width: 18.75rem) {
  .popup_close {
    width: calc(2.75rem + 0.625 * (100vw - 18.75rem) / (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: 18.75rem) {
  .popup_content .content {
    top: calc(2.75rem + 0.625 * (100vw - 18.75rem) / (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/open_street_map.scss */

.open_street_map {
  overflow: hidden;
}
.open_street_map .map {
  height: 21.875rem;
  background-color: #e2e5e6;
  cursor: move;
  position: relative;
  width: 100%;
}
@media (min-width: 18.75rem) {
  .open_street_map .map {
    height: calc(21.875rem + 12.5 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .open_street_map .map {
    height: 34.375rem;
  }
}
.open_street_map .map_overlay {
  align-items: center;
  background-color: rgba(226, 229, 230, 0.85);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 300ms;
  z-index: 1;
}
.open_street_map .map_overlay.show {
  opacity: 1;
  transition-delay: 0;
}
.open_street_map .map_overlay.show p {
  font-size: 120%;
  margin: 1.5em 3em;
  text-align: center;
}
.open_street_map .required_description {
  margin: 1.5em 0 0 0;
}
.open_street_map .plan_route {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 1.5em 0;
  position: relative;
}
@media (min-width: 47.5rem) {
  .open_street_map .plan_route {
    align-items: flex-end;
    flex-direction: row;
  }
}
.open_street_map .plan_route .saddr {
  flex-grow: 1;
  flex-shrink: 1;
}
@media (min-width: 47.5rem) {
  .open_street_map .plan_route .saddr {
    margin: 0 1.5em 0 0;
    max-width: 40.625rem;
  }
  .open_street_map .plan_route .saddr input {
    margin-bottom: 0;
  }
}
.open_street_map .plan_route .select_wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 1;
  margin-top: 0.75em;
}
@media (min-width: 47.5rem) {
  .open_street_map .plan_route .select_wrapper {
    margin: 0 1.5em 0 0;
  }
}
@media (min-width: 47.5rem) {
  .open_street_map .plan_route .select_wrapper .select {
    margin-bottom: 0;
  }
}
@media (min-width: 47.5rem) {
  .open_street_map .plan_route .button_wrapper button {
    margin-bottom: 0;
  }
}
.open_street_map .ol-viewport {
  touch-action: pan-y !important;
}
.open_street_map .ol-overlaycontainer-stopevent button {
  align-items: center;
  background: #FFE456;
  border: 0.0625rem solid #FFE456;
  border-radius: 0.125rem;
  color: #464F50;
  display: inline-flex;
  font-weight: 600;
  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: #464F50;
  border: 0.0625rem solid #464F50;
  box-shadow: 0 0 0 0.1875rem rgba(70, 79, 80, 0.2);
  color: #fff;
  outline: 0;
}
.open_street_map .ol-overlaycontainer-stopevent button:hover {
  background: #464F50;
  border: 0.0625rem solid #464F50;
  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-start;
  left: 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 .title {
  padding-top: 0.75em;
}
.opening_times .entries {
  display: flex;
  flex-wrap: wrap;
}
.opening_times .entry {
  margin-right: 2.25em;
}
.opening_times .entry .day {
  display: inline-flex;
}

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

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

.slider {
  position: relative;
}
.slider:focus {
  outline: 0;
}
.slider .slides_wrapper {
  overflow: hidden;
  position: relative;
}
.slider .slides_wrapper .slides {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  position: relative;
}
.slider .slides_wrapper .slides .slide {
  opacity: 0;
  position: relative;
  visibility: hidden;
  width: 100%;
}
.slider .slides_wrapper .slides .slide.slide[data-position="-10000"] {
  transform: translateX(-10000%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-9900"] {
  transform: translateX(-9900%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-9800"] {
  transform: translateX(-9800%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-9700"] {
  transform: translateX(-9700%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-9600"] {
  transform: translateX(-9600%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-9500"] {
  transform: translateX(-9500%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-9400"] {
  transform: translateX(-9400%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-9300"] {
  transform: translateX(-9300%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-9200"] {
  transform: translateX(-9200%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-9100"] {
  transform: translateX(-9100%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-9000"] {
  transform: translateX(-9000%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-8900"] {
  transform: translateX(-8900%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-8800"] {
  transform: translateX(-8800%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-8700"] {
  transform: translateX(-8700%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-8600"] {
  transform: translateX(-8600%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-8500"] {
  transform: translateX(-8500%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-8400"] {
  transform: translateX(-8400%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-8300"] {
  transform: translateX(-8300%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-8200"] {
  transform: translateX(-8200%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-8100"] {
  transform: translateX(-8100%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-8000"] {
  transform: translateX(-8000%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-7900"] {
  transform: translateX(-7900%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-7800"] {
  transform: translateX(-7800%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-7700"] {
  transform: translateX(-7700%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-7600"] {
  transform: translateX(-7600%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-7500"] {
  transform: translateX(-7500%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-7400"] {
  transform: translateX(-7400%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-7300"] {
  transform: translateX(-7300%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-7200"] {
  transform: translateX(-7200%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-7100"] {
  transform: translateX(-7100%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-7000"] {
  transform: translateX(-7000%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-6900"] {
  transform: translateX(-6900%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-6800"] {
  transform: translateX(-6800%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-6700"] {
  transform: translateX(-6700%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-6600"] {
  transform: translateX(-6600%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-6500"] {
  transform: translateX(-6500%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-6400"] {
  transform: translateX(-6400%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-6300"] {
  transform: translateX(-6300%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-6200"] {
  transform: translateX(-6200%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-6100"] {
  transform: translateX(-6100%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-6000"] {
  transform: translateX(-6000%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-5900"] {
  transform: translateX(-5900%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-5800"] {
  transform: translateX(-5800%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-5700"] {
  transform: translateX(-5700%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-5600"] {
  transform: translateX(-5600%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-5500"] {
  transform: translateX(-5500%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-5400"] {
  transform: translateX(-5400%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-5300"] {
  transform: translateX(-5300%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-5200"] {
  transform: translateX(-5200%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-5100"] {
  transform: translateX(-5100%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-5000"] {
  transform: translateX(-5000%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-4900"] {
  transform: translateX(-4900%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-4800"] {
  transform: translateX(-4800%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-4700"] {
  transform: translateX(-4700%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-4600"] {
  transform: translateX(-4600%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-4500"] {
  transform: translateX(-4500%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-4400"] {
  transform: translateX(-4400%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-4300"] {
  transform: translateX(-4300%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-4200"] {
  transform: translateX(-4200%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-4100"] {
  transform: translateX(-4100%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-4000"] {
  transform: translateX(-4000%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-3900"] {
  transform: translateX(-3900%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-3800"] {
  transform: translateX(-3800%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-3700"] {
  transform: translateX(-3700%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-3600"] {
  transform: translateX(-3600%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-3500"] {
  transform: translateX(-3500%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-3400"] {
  transform: translateX(-3400%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-3300"] {
  transform: translateX(-3300%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-3200"] {
  transform: translateX(-3200%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-3100"] {
  transform: translateX(-3100%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-3000"] {
  transform: translateX(-3000%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-2900"] {
  transform: translateX(-2900%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-2800"] {
  transform: translateX(-2800%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-2700"] {
  transform: translateX(-2700%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-2600"] {
  transform: translateX(-2600%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-2500"] {
  transform: translateX(-2500%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-2400"] {
  transform: translateX(-2400%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-2300"] {
  transform: translateX(-2300%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-2200"] {
  transform: translateX(-2200%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-2100"] {
  transform: translateX(-2100%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-2000"] {
  transform: translateX(-2000%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-1900"] {
  transform: translateX(-1900%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-1800"] {
  transform: translateX(-1800%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-1700"] {
  transform: translateX(-1700%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-1600"] {
  transform: translateX(-1600%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-1500"] {
  transform: translateX(-1500%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-1400"] {
  transform: translateX(-1400%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-1300"] {
  transform: translateX(-1300%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-1200"] {
  transform: translateX(-1200%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-1100"] {
  transform: translateX(-1100%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-1000"] {
  transform: translateX(-1000%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-900"] {
  transform: translateX(-900%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-800"] {
  transform: translateX(-800%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-700"] {
  transform: translateX(-700%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-600"] {
  transform: translateX(-600%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-500"] {
  transform: translateX(-500%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-400"] {
  transform: translateX(-400%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-300"] {
  transform: translateX(-300%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-200"] {
  transform: translateX(-200%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="-100"] {
  transform: translateX(-100%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="0"] {
  transform: translateX(0%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="100"] {
  transform: translateX(100%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="200"] {
  transform: translateX(200%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="300"] {
  transform: translateX(300%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="400"] {
  transform: translateX(400%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="500"] {
  transform: translateX(500%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="600"] {
  transform: translateX(600%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="700"] {
  transform: translateX(700%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="800"] {
  transform: translateX(800%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="900"] {
  transform: translateX(900%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="1000"] {
  transform: translateX(1000%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="1100"] {
  transform: translateX(1100%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="1200"] {
  transform: translateX(1200%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="1300"] {
  transform: translateX(1300%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="1400"] {
  transform: translateX(1400%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="1500"] {
  transform: translateX(1500%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="1600"] {
  transform: translateX(1600%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="1700"] {
  transform: translateX(1700%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="1800"] {
  transform: translateX(1800%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="1900"] {
  transform: translateX(1900%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="2000"] {
  transform: translateX(2000%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="2100"] {
  transform: translateX(2100%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="2200"] {
  transform: translateX(2200%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="2300"] {
  transform: translateX(2300%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="2400"] {
  transform: translateX(2400%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="2500"] {
  transform: translateX(2500%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="2600"] {
  transform: translateX(2600%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="2700"] {
  transform: translateX(2700%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="2800"] {
  transform: translateX(2800%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="2900"] {
  transform: translateX(2900%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="3000"] {
  transform: translateX(3000%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="3100"] {
  transform: translateX(3100%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="3200"] {
  transform: translateX(3200%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="3300"] {
  transform: translateX(3300%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="3400"] {
  transform: translateX(3400%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="3500"] {
  transform: translateX(3500%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="3600"] {
  transform: translateX(3600%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="3700"] {
  transform: translateX(3700%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="3800"] {
  transform: translateX(3800%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="3900"] {
  transform: translateX(3900%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="4000"] {
  transform: translateX(4000%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="4100"] {
  transform: translateX(4100%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="4200"] {
  transform: translateX(4200%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="4300"] {
  transform: translateX(4300%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="4400"] {
  transform: translateX(4400%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="4500"] {
  transform: translateX(4500%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="4600"] {
  transform: translateX(4600%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="4700"] {
  transform: translateX(4700%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="4800"] {
  transform: translateX(4800%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="4900"] {
  transform: translateX(4900%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="5000"] {
  transform: translateX(5000%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="5100"] {
  transform: translateX(5100%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="5200"] {
  transform: translateX(5200%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="5300"] {
  transform: translateX(5300%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="5400"] {
  transform: translateX(5400%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="5500"] {
  transform: translateX(5500%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="5600"] {
  transform: translateX(5600%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="5700"] {
  transform: translateX(5700%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="5800"] {
  transform: translateX(5800%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="5900"] {
  transform: translateX(5900%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="6000"] {
  transform: translateX(6000%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="6100"] {
  transform: translateX(6100%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="6200"] {
  transform: translateX(6200%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="6300"] {
  transform: translateX(6300%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="6400"] {
  transform: translateX(6400%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="6500"] {
  transform: translateX(6500%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="6600"] {
  transform: translateX(6600%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="6700"] {
  transform: translateX(6700%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="6800"] {
  transform: translateX(6800%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="6900"] {
  transform: translateX(6900%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="7000"] {
  transform: translateX(7000%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="7100"] {
  transform: translateX(7100%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="7200"] {
  transform: translateX(7200%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="7300"] {
  transform: translateX(7300%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="7400"] {
  transform: translateX(7400%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="7500"] {
  transform: translateX(7500%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="7600"] {
  transform: translateX(7600%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="7700"] {
  transform: translateX(7700%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="7800"] {
  transform: translateX(7800%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="7900"] {
  transform: translateX(7900%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="8000"] {
  transform: translateX(8000%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="8100"] {
  transform: translateX(8100%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="8200"] {
  transform: translateX(8200%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="8300"] {
  transform: translateX(8300%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="8400"] {
  transform: translateX(8400%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="8500"] {
  transform: translateX(8500%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="8600"] {
  transform: translateX(8600%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="8700"] {
  transform: translateX(8700%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="8800"] {
  transform: translateX(8800%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="8900"] {
  transform: translateX(8900%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="9000"] {
  transform: translateX(9000%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="9100"] {
  transform: translateX(9100%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="9200"] {
  transform: translateX(9200%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="9300"] {
  transform: translateX(9300%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="9400"] {
  transform: translateX(9400%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="9500"] {
  transform: translateX(9500%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="9600"] {
  transform: translateX(9600%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="9700"] {
  transform: translateX(9700%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="9800"] {
  transform: translateX(9800%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="9900"] {
  transform: translateX(9900%);
}
.slider .slides_wrapper .slides .slide.slide[data-position="10000"] {
  transform: translateX(10000%);
}
.slider .slides_wrapper .slides .slide.no_grid {
  min-width: 100%;
}
.slider .slides_wrapper .slides .slide.active {
  opacity: 1;
  visibility: visible;
}
.slider .slides_wrapper .slides .slide.visible {
  bottom: 0;
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  visibility: visible;
}
.slider .slides_wrapper .slides .slide:focus {
  outline: 0;
}
.slider .slide.animated {
  transition: transform 300ms ease-out;
}
.slider.fade .slide.animated {
  animation: slider_fade 600ms ease-out forwards;
  opacity: 0;
  transition: unset;
}
.slider.navigation_outside {
  padding: 0;
}
.slider .navigation {
  display: flex;
  position: relative;
  height: 6.25rem;
}
@media (min-width: 75rem) {
  .slider .navigation {
    height: 0;
    bottom: 4.375rem;
    right: 21.875rem;
  }
}
@media (min-width: 93.75rem) {
  .slider .navigation {
    bottom: 5rem;
    right: 30rem;
  }
}
.slider .navigation a .icon {
  display: block;
  height: 3.75rem;
  min-width: 2.75rem;
  transition: fill 300ms ease-out;
  width: 2.75rem;
  margin: 0 10px;
  fill: #464F50;
}
.slider .navigation a.prev {
  left: 0;
  margin-left: auto;
  margin-top: auto;
  margin-bottom: auto;
}
.slider .navigation a.prev .icon {
  transform: rotate(180deg);
}
.slider .navigation a.next {
  right: 0;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
}
.slider .navigation a:hover .icon {
  fill: #FFE456;
  transition: all 0.2s ease-in-out;
}
.slider.pagination {
  margin-bottom: 3em;
}
.slider .pagination {
  bottom: -3em;
  display: flex;
  justify-content: center;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
.slider .pagination a {
  border-radius: 50%;
  border: 0.0625rem solid #464F50;
  display: inline-block;
  height: 0.9375rem;
  margin: 0 0.125rem;
  width: 0.9375rem;
}
.slider .pagination a.active, .slider .pagination a:hover {
  background-color: #464F50;
}

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


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

.steuernews_preview {
  margin-bottom: 0.75em;
}
.steuernews_preview .entry {
  overflow: hidden;
}
.steuernews_preview .entry:hover .image {
  transform: scale(1.1);
  transition: transform 0.5s ease;
  overflow: hidden;
}
.steuernews_preview a.touch_link .title {
  text-decoration: none;
  padding: 1.25rem;
  background: #FFE456;
  color: #464F50;
  position: relative;
  z-index: 2;
}
.steuernews_preview .sub_title {
  display: block;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.steuernews_preview .entry {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5em;
}
.steuernews_preview .image {
  flex: 0 0 auto;
  line-height: 0;
  margin: 0;
  order: 1;
}
.steuernews_preview .image img {
  margin-right: 1.5em;
  width: 100%;
  object-position: center;
  object-fit: cover;
  min-height: 25rem;
  max-height: 25rem;
}
.steuernews_preview .photo .bg_image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 10rem;
  margin-right: 1.5em;
  width: 10rem;
}
.steuernews_preview .teaser_text a {
  text-decoration: none;
}
.steuernews_preview .title {
  word-wrap: break-word;
  width: 100%;
  padding-top: 0;
  margin: 0.625rem 0 0 0;
}
.steuernews_preview .title time a {
  text-decoration: none;
}

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

.news_entity .hide_image_author,
.news_entity .hide_creation_date {
  display: none;
}
.news_entity .sub_title {
  font-size: 0.3125rem;
}

.news_image {
  width: 100%;
  height: auto;
}
.news_image img {
  width: 100%;
  height: 18.75rem;
  object-fit: cover;
  object-position: center;
}
.news_image + * {
  padding-top: 0;
}

.steuernews_issues ul {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
}
.steuernews_issues ul li {
  padding-left: 0;
}
.steuernews_issues .tab_button svg {
  height: 1.875rem;
  width: 4.0625rem;
  position: absolute;
  z-index: 1000;
  transform: translate(-3px, 5px);
}
.steuernews_issues .tab_button .icon {
  margin-right: -0.375rem;
}
.steuernews_issues a {
  padding: 20px 40px;
}
.steuernews_issues a:hover {
  color: #464F50;
}

.steuernews_disclaimer {
  clear: both;
}

.steuernews_sidebar {
  margin: 1.5em 0 0.75em;
}
.steuernews_sidebar a :hover {
  color: #464F50;
}

.steuernews_current_issue {
  margin-bottom: 0.75em;
}

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

.steuernews_article_slider {
  display: none;
}
@media (min-width: 61.875rem) {
  .steuernews_article_slider {
    display: block;
    height: 20.4375rem;
    overflow: hidden;
    position: relative;
    user-select: none;
  }
  .steuernews_article_slider .slide {
    display: flex;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity 300ms, visibility 300ms;
    visibility: hidden;
    z-index: 0;
  }
  .steuernews_article_slider .slide .image {
    flex-grow: 0;
    flex-shrink: 0;
  }
  .steuernews_article_slider .slide .description {
    padding: 0 4.5em 0 3em;
    width: 100%;
  }
  .steuernews_article_slider .slide .description .title {
    margin: 0;
    word-wrap: break-word;
  }
  .steuernews_article_slider .slide .description .sub_title {
    display: block;
    margin-bottom: 0.75em;
  }
  .steuernews_article_slider .slide_anchor:checked + .slide {
    opacity: 1;
    visibility: visible;
    z-index: 5;
  }
  .steuernews_article_slider .control_slides {
    background: #e2e5e6;
    display: block;
    fill: #464F50;
    height: 3.75rem;
    margin-top: -1.875rem;
    padding: 1em;
    position: absolute;
    right: 0;
    top: 50%;
    transition: background 300ms;
    width: 3.75rem;
    z-index: 15;
  }
  .steuernews_article_slider .control_slides:focus, .steuernews_article_slider .control_slides:hover {
    fill: #464F50;
    outline: 0;
  }
  .steuernews_article_slider .prev_slide {
    left: 0;
    transform: rotate(180deg);
  }
  .steuernews_article_slider .next_slide {
    right: 0;
  }
}

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

.steuernews_navigation {
  margin: 1.5em 0;
}
.steuernews_navigation nav ul:after {
  clear: both;
}
.steuernews_navigation nav ul:after, .steuernews_navigation nav ul:before {
  content: "";
  display: table;
}
.steuernews_navigation nav li {
  float: left;
}
.steuernews_navigation nav li:first-child a {
  padding-left: 0;
}
.steuernews_navigation nav a {
  display: inline-block;
  line-height: 1.5;
  padding: 0 1.5em;
}

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

.steuernews_search {
  margin: 0 0 1.5em;
}
.steuernews_search .search {
  margin: 0 0 0.75em;
}

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

@charset "UTF-8";
.info_wrap {
  justify-content: flex-start;
}

.team_overview .entry {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 0.75em;
}
@media (min-width: 93.75rem) {
  .team_overview .entry {
    align-items: flex-start;
    flex-direction: row-reverse;
  }
}
.team_overview .title {
  margin: 0;
  padding: 0;
  font-size: 1rem;
}
@media (min-width: 18.75rem) {
  .team_overview .title {
    font-size: calc(1rem + 1.375 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .team_overview .title {
    font-size: 2.375rem;
  }
}
.team_overview .title a {
  text-decoration: none;
}
.team_overview .title a:hover {
  text-decoration: underline;
}
.team_overview .photo {
  display: block;
  margin-bottom: 0.75em;
}
.team_overview .photo img {
  display: block;
  max-width: 100%;
  padding-top: 2.5rem;
  top: 0;
}
.team_overview .info {
  flex: 1 1 auto;
  margin-bottom: 0.75em;
}

.team_entry {
  justify-content: end;
}
.team_entry .title a {
  text-decoration: none;
}
.team_entry .photo {
  left: 0;
  margin-bottom: 0.75em;
  margin-left: calc((100vw - 100%) / -2);
  margin-right: calc((100vw - 150%) / -2);
  max-width: 110%;
  min-width: 140%;
  position: relative;
  right: 0;
  z-index: 2;
}
@media (min-width: 47.5rem) {
  .team_entry .photo {
    top: -1.5625rem;
    min-width: 140%;
    margin-left: calc((100vw - 150%) / -2);
  }
}
@media (min-width: 47.5rem) and (min-width: 18.75rem) {
  .team_entry .photo {
    top: calc(-1.5625rem + -4.375 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 47.5rem) and (min-width: 93.75rem) {
  .team_entry .photo {
    top: -5.9375rem;
  }
}
@media (min-width: 93.75rem) {
  .team_entry .photo {
    top: -1.5625rem;
    margin-left: calc((85vw - 150%) / -2);
  }
}
@media (min-width: 93.75rem) and (min-width: 18.75rem) {
  .team_entry .photo {
    top: calc(-1.5625rem + -4.375 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) and (min-width: 93.75rem) {
  .team_entry .photo {
    top: -5.9375rem;
  }
}
@media (min-width: 103.75rem) {
  .team_entry .photo {
    top: -1.5625rem;
    min-width: 6.25rem;
    margin-left: calc((80vw - 150%) / -2);
  }
}
@media (min-width: 103.75rem) and (min-width: 18.75rem) {
  .team_entry .photo {
    top: calc(-1.5625rem + -4.375 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 103.75rem) and (min-width: 93.75rem) {
  .team_entry .photo {
    top: -5.9375rem;
  }
}
@media (min-width: 103.75rem) and (min-width: 18.75rem) {
  .team_entry .photo {
    min-width: calc(6.25rem + 43.75 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 103.75rem) and (min-width: 93.75rem) {
  .team_entry .photo {
    min-width: 50rem;
  }
}
.team_entry .photo:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: #FFE456;
  z-index: 10;
  width: 1.5625rem;
  height: 1.5625rem;
}
@media (min-width: 18.75rem) {
  .team_entry .photo:after {
    width: calc(1.5625rem + 4.375 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .team_entry .photo:after {
    width: 5.9375rem;
  }
}
@media (min-width: 18.75rem) {
  .team_entry .photo:after {
    height: calc(1.5625rem + 4.375 * (100vw - 18.75rem) / (75));
  }
}
@media (min-width: 93.75rem) {
  .team_entry .photo:after {
    height: 5.9375rem;
  }
}
.team_entry .photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 100%;
  position: relative;
}
.team_entry .photo .info_image {
  max-width: 100%;
}
.team_entry .info_image img {
  max-width: 100%;
}
.no_contact .team_entry .info_contact {
  display: none;
}
.team_entry .info {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.75em;
  justify-content: center;
}
.team_entry .info .tab_button {
  margin-top: 0.625rem;
  margin-right: 2.5rem;
}
.team_entry em {
  font-style: italic;
}
.team_entry li:before {
  color: #464F50;
  content: "▪";
  font-size: 1.5em;
  position: relative;
  top: 0.1em;
  right: 0.2em;
}
.team_entry .vcard_social {
  display: flex;
}
.team_entry .vcard_social .icon {
  display: block;
  height: 2.75rem;
  width: 2.75rem;
  margin: 1.25rem 1.5625rem 1.25rem 0;
  fill: #464F50;
}
.team_entry .vcard_social .icon:hover {
  fill: #FFE456;
}

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


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

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

[role=tooltip] {
  background: #e2e5e6;
  border: 0.0625rem solid #c7cdce;
  border-radius: 0.125rem;
  bottom: 100%;
  color: #464F50;
  font-size: 85%;
  font-weight: 400;
  line-height: 1.5;
  padding: 0.75em;
  position: absolute;
  right: 0;
  text-align: center;
  transform: translateY(-0.3125rem);
  z-index: 50;
}
[role=tooltip]:after {
  border: 0.625rem solid transparent;
  border-top-color: #e2e5e6;
  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: #c7cdce;
  bottom: -1.375rem;
  content: "";
  display: block;
  height: 0;
  left: 50%;
  margin-left: -0.6875rem;
  position: absolute;
  width: 0;
}
[role=tooltip][aria-hidden=true] {
  display: none;
}

