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

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

abbr {
  text-decoration: none;
}

address {
  font-style: normal;
}

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

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

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

[role=tab] {
  align-items: center;
  border-top: 0.0625rem solid #d7d5d5;
  cursor: pointer;
  display: flex;
  margin: 0 0 0.375em;
  min-width: 100%;
  padding: 0.75em 0;
  transition: border 300ms;
}
[role=tab] .title {
  flex-basis: 100%;
  font-size: 111.111%;
  font-weight: 600;
  margin-right: 1.125em;
  overflow: hidden;
  text-overflow: ellipsis;
}
[role=tab] .icon {
  display: block;
  fill: #a12b2a;
  height: 1.5rem;
  transform: rotate(90deg);
  width: 1.5rem;
}
[role=tab] .icon svg {
  display: block;
}
[role=tab][aria-expanded=true] {
  border-color: #a12b2a;
}
[role=tab][aria-expanded=true] .icon {
  transform: rotate(-90deg);
}
[role=tab]:focus {
  border-color: #a12b2a;
  outline: 0;
}
[role=tab]:focus .title {
  color: #a12b2a;
}

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

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

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

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

.address_vcard_button {
  margin: 0.75em 0;
}

.address_call_button {
  margin: 0.75em 0;
}

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

aside.aside {
  padding-top: 0em;
}
@media (min-width: 20rem) {
  aside.aside {
    padding-top: calc(0em + 3 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  aside.aside {
    padding-top: 3em;
  }
}
aside.aside .arrow_icon {
  display: block;
  fill: #a12b2a;
  flex-shrink: 0;
  height: 6.25rem;
  margin-bottom: 1.5em;
  width: 6.25rem;
}
@media (min-width: 20rem) {
  aside.aside .arrow_icon {
    height: calc(6.25rem + 3.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  aside.aside .arrow_icon {
    height: 9.375rem;
  }
}
@media (min-width: 20rem) {
  aside.aside .arrow_icon {
    margin-bottom: calc(1.5em + 1.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  aside.aside .arrow_icon {
    margin-bottom: 3em;
  }
}
@media (min-width: 20rem) {
  aside.aside .arrow_icon {
    width: calc(6.25rem + 3.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  aside.aside .arrow_icon {
    width: 9.375rem;
  }
}
aside.aside .arrow_icon svg {
  display: block;
  transform: rotate(-50deg) scaleX(-1);
}
aside.aside .teaser {
  background: #a12b2a;
}
aside.aside .teaser .title {
  font-weight: 400;
}

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

.atikon_logo {
  height: 100%;
}

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

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

.author {
  bottom: 0.9375rem;
  display: block;
  fill: #888888;
  height: 0.8125rem;
  line-height: 0.8125rem;
  position: absolute;
  right: 0.9375rem;
  transition: fill 300ms;
  width: 4.625rem;
}
.author:focus, .author:hover {
  fill: #000000;
}

/* 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 {
  cursor: pointer;
  padding: 0 0.125rem;
  background: none;
  border: 0;
  color: #000000;
  display: inline-flex;
  justify-content: center;
  position: relative;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms;
  user-select: none;
}
.button:before {
  background: #a12b2a;
  bottom: 0;
  content: "";
  display: block;
  height: 0.4375rem;
  left: 0;
  position: absolute;
  right: 0;
  transition: background 300ms, height 300ms;
}
.button > span {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  min-height: 2.125rem;
}
@media (min-width: 20rem) {
  .button > span {
    min-height: calc(2.125rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .button > span {
    min-height: 2.125rem;
  }
}
.button .icon {
  fill: #000000;
  flex-shrink: 0;
  height: 1.5rem;
  transition: fill 300ms;
  width: 1.5rem;
}
.button .text {
  letter-spacing: calc((1.125rem + 0.125 * (100vw - 20rem) / (73.75)) * 0.1);
  font-size: 1.125rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
}
@media (min-width: 93.75rem) {
  .button .text {
    letter-spacing: calc(1.25rem * 0.1);
  }
}
@media (min-width: 20rem) {
  .button .text {
    font-size: calc(1.125rem + 0.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .button .text {
    font-size: 1.25rem;
  }
}
.button .icon + .text {
  padding-left: 0.4995em;
}
.button:focus-visible {
  color: #fff;
  outline: 0.125rem solid #000000;
  outline-offset: 0.125rem;
  box-shadow: 0 0 0 0.375rem #fff;
}
.button:focus-visible:before {
  background: #a12b2a;
  height: 100%;
}
.button:focus-visible .icon {
  fill: #fff;
}
.button:hover {
  color: #fff;
}
.button:hover:before {
  background: #a12b2a;
  height: 100%;
}
.button:hover .icon {
  fill: #fff;
}
.button:active, .button.active {
  background: none;
  border: 0;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  position: relative;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms;
  user-select: none;
}
.button:active:before, .button.active:before {
  background: #000000;
  bottom: 0;
  content: "";
  display: block;
  height: 0.4375rem;
  left: 0;
  position: absolute;
  right: 0;
  transition: background 300ms, height 300ms;
}
.button:active > span, .button.active > span {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  min-height: 2.125rem;
}
@media (min-width: 20rem) {
  .button:active > span, .button.active > span {
    min-height: calc(2.125rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .button:active > span, .button.active > span {
    min-height: 2.125rem;
  }
}
.button:active .icon, .button.active .icon {
  fill: #fff;
  flex-shrink: 0;
  height: 1.5rem;
  transition: fill 300ms;
  width: 1.5rem;
}
.button:active .text, .button.active .text {
  letter-spacing: calc((1.125rem + 0.125 * (100vw - 20rem) / (73.75)) * 0.1);
  font-size: 1.125rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
}
@media (min-width: 93.75rem) {
  .button:active .text, .button.active .text {
    letter-spacing: calc(1.25rem * 0.1);
  }
}
@media (min-width: 20rem) {
  .button:active .text, .button.active .text {
    font-size: calc(1.125rem + 0.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .button:active .text, .button.active .text {
    font-size: 1.25rem;
  }
}
.button:active .icon + .text, .button.active .icon + .text {
  padding-left: 0.4995em;
}
.button:active:before, .button.active:before {
  height: 100%;
}
.button.bottom_spacing {
  margin-bottom: 0.75em;
}
.button.on_color {
  background: none;
  border: 0;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  position: relative;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms;
  user-select: none;
}
.button.on_color:before {
  background: #fff;
  bottom: 0;
  content: "";
  display: block;
  height: 0.4375rem;
  left: 0;
  position: absolute;
  right: 0;
  transition: background 300ms, height 300ms;
}
.button.on_color > span {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  min-height: 2.125rem;
}
@media (min-width: 20rem) {
  .button.on_color > span {
    min-height: calc(2.125rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .button.on_color > span {
    min-height: 2.125rem;
  }
}
.button.on_color .icon {
  fill: #fff;
  flex-shrink: 0;
  height: 1.5rem;
  transition: fill 300ms;
  width: 1.5rem;
}
.button.on_color .text {
  letter-spacing: calc((1.125rem + 0.125 * (100vw - 20rem) / (73.75)) * 0.1);
  font-size: 1.125rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
}
@media (min-width: 93.75rem) {
  .button.on_color .text {
    letter-spacing: calc(1.25rem * 0.1);
  }
}
@media (min-width: 20rem) {
  .button.on_color .text {
    font-size: calc(1.125rem + 0.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .button.on_color .text {
    font-size: 1.25rem;
  }
}
.button.on_color .icon + .text {
  padding-left: 0.4995em;
}
.button.on_color:focus-visible {
  color: #000000;
}
.button.on_color:focus-visible:before {
  background: #fff;
  height: 100%;
}
.button.on_color:focus-visible .icon {
  fill: #000000;
}
.button.on_color:hover {
  color: #000000;
}
.button.on_color:hover:before {
  background: #fff;
  height: 100%;
}
.button.on_color:hover .icon {
  fill: #000000;
}

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

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

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

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

.company_logo {
  display: block;
}

header .company_logo {
  width: 8.75rem;
}
@media (min-width: 20rem) {
  header .company_logo {
    width: calc(8.75rem + 20.625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  header .company_logo {
    width: 29.375rem;
  }
}

footer .company_logo {
  margin-bottom: 1.5em;
  width: 8.75rem;
}
@media (min-width: 20rem) {
  footer .company_logo {
    width: calc(8.75rem + 12.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .company_logo {
    width: 21.25rem;
  }
}
@media (min-width: 61.875rem) {
  footer .company_logo {
    margin: 0;
  }
}

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

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

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

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

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

.down_arrow {
  display: block;
  fill: #a12b2a;
  flex-shrink: 0;
  line-height: 0;
  transform-origin: 100% 50%;
  height: 5rem;
  width: 5rem;
}
@media (min-width: 20rem) {
  .down_arrow {
    height: calc(5rem + 6.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .down_arrow {
    height: 11.25rem;
  }
}
@media (min-width: 47.5rem) {
  .down_arrow {
    margin-left: calc(0.75em + 3.75 * (100vw - 47.5rem) / (46.25));
  }
}
@media (min-width: 93.75rem) {
  .down_arrow {
    margin-left: 4.5em;
  }
}
@media (min-width: 20rem) {
  .down_arrow {
    width: calc(5rem + 6.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .down_arrow {
    width: 11.25rem;
  }
}
@media (max-width: 47.4375rem) {
  .down_arrow {
    bottom: 1.5em;
    position: absolute;
    right: 0;
    margin-right: -0.375em;
  }
}
@media (max-width: 47.4375rem) and (min-width: 20rem) {
  .down_arrow {
    margin-right: calc(-0.375em + 4.875 * (100vw - 20rem) / (73.75));
  }
}
@media (max-width: 47.4375rem) and (min-width: 93.75rem) {
  .down_arrow {
    margin-right: 4.5em;
  }
}
.down_arrow .icon {
  display: block;
  transition: fill 300ms;
}
.down_arrow .icon svg {
  display: block;
}
.down_arrow:focus .icon, .down_arrow:hover .icon {
  fill: #c94d0e;
}

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

.dropdown_menu {
  display: none;
}
@media (min-width: 75rem) {
  .dropdown_menu {
    align-items: center;
    display: flex;
  }
}
.dropdown_menu > ul {
  display: flex;
  position: relative;
}
.dropdown_menu > ul li {
  position: relative;
}
.dropdown_menu > ul li:hover > a, .dropdown_menu > ul li.hover > a {
  color: #a12b2a;
}
.dropdown_menu > ul li:hover > ul, .dropdown_menu > ul li.hover > ul {
  margin-top: 1.125em;
  opacity: 1;
  transform: scaleY(1);
  visibility: visible;
}
.dropdown_menu > ul li:hover > ul li.icon_only, .dropdown_menu > ul li.hover > ul li.icon_only {
  margin-top: 0;
  opacity: 1;
}
.dropdown_menu > ul > li {
  align-items: center;
  margin-left: 1.875rem;
}
@media (min-width: 75rem) {
  .dropdown_menu > ul > li {
    margin-left: calc(1.875rem + 2.8125 * (100vw - 75rem) / (18.75));
  }
}
@media (min-width: 93.75rem) {
  .dropdown_menu > ul > li {
    margin-left: 4.6875rem;
  }
}
.dropdown_menu > ul > li > a {
  align-items: center;
  display: flex;
  font-size: 111.111%;
  font-weight: 600;
  hyphens: none;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.dropdown_menu > ul > li > a.active, .dropdown_menu > ul > li > a:focus, .dropdown_menu > ul > li > a:hover {
  color: #a12b2a;
}
.dropdown_menu > ul > li ul {
  background: #f0efef;
  line-height: 2.109375;
  opacity: 0;
  padding: 1.125em 1.5em;
  position: absolute;
  transform: scaleY(0.85);
  transform-origin: 0 0;
  transition: margin-top 300ms, opacity 300ms, transform 300ms, visibility 300ms;
  visibility: hidden;
  z-index: 1000;
}
.dropdown_menu > ul > li ul:target {
  margin-top: 1.125em;
  opacity: 1;
  transform: scaleY(1);
  visibility: visible;
}
.dropdown_menu > ul > li ul:target li.icon_only {
  margin-top: 0;
  opacity: 1;
}
.dropdown_menu > ul > li ul li.icon_only {
  left: 0;
  margin-top: -0.75em;
  opacity: 0;
  position: absolute;
  transition: margin-top 300ms, opacity 300ms;
  transition-delay: 75ms;
  z-index: 1;
  top: -0.6875rem;
}
@media (min-width: 75rem) {
  .dropdown_menu > ul > li ul li.icon_only {
    top: calc(-0.6875rem + -0.125 * (100vw - 75rem) / (18.75));
  }
}
@media (min-width: 93.75rem) {
  .dropdown_menu > ul > li ul li.icon_only {
    top: -0.8125rem;
  }
}
.dropdown_menu > ul > li ul li.icon_only .icon {
  display: block;
  flex-shrink: 0;
  transform: rotate(90deg);
  height: 2rem;
  width: 2rem;
}
@media (min-width: 75rem) {
  .dropdown_menu > ul > li ul li.icon_only .icon {
    height: calc(2rem + 0.25 * (100vw - 75rem) / (18.75));
  }
}
@media (min-width: 93.75rem) {
  .dropdown_menu > ul > li ul li.icon_only .icon {
    height: 2.25rem;
  }
}
@media (min-width: 75rem) {
  .dropdown_menu > ul > li ul li.icon_only .icon {
    width: calc(2rem + 0.25 * (100vw - 75rem) / (18.75));
  }
}
@media (min-width: 93.75rem) {
  .dropdown_menu > ul > li ul li.icon_only .icon {
    width: 2.25rem;
  }
}
.dropdown_menu > ul > li ul li.icon_only .icon svg {
  display: block;
}
.dropdown_menu > ul > li ul a {
  color: #000000;
  display: block;
  hyphens: none;
  justify-content: space-between;
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
}
.dropdown_menu > ul > li ul a:before {
  color: transparent;
  content: attr(data-title);
  display: block;
  font-weight: 600;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.dropdown_menu > ul > li ul a.active, .dropdown_menu > ul > li ul a:focus, .dropdown_menu > ul > li ul a:hover {
  color: #000000;
  font-weight: 600;
}
.dropdown_menu > ul > li:last-child ul {
  right: 0;
}
.dropdown_menu > ul > li:last-child ul li.icon_only {
  left: auto;
  right: 0;
}
.dropdown_menu > ul > li:last-child ul a {
  text-align: right;
}

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

footer .footer_pre {
  padding-bottom: 2.25em;
}
@media (min-width: 20rem) {
  footer .footer_pre {
    padding-bottom: calc(2.25em + 2.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .footer_pre {
    padding-bottom: 4.5em;
  }
}
footer .footer_pre h2 {
  margin: 0 0 0.375em;
  padding: 0;
  text-align: center;
}
footer .footer_pre .button {
  margin-bottom: 2.25em;
}
footer .footer_pre .steuernews_article_overview {
  margin: 0;
}
footer .footer_fixed {
  background: #f0efef;
  position: relative;
  padding-bottom: 1.875em;
  padding-top: 1.875em;
}
@media (min-width: 20rem) {
  footer .footer_fixed {
    padding-bottom: calc(1.875em + 0.75 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .footer_fixed {
    padding-bottom: 2.625em;
  }
}
@media (min-width: 20rem) {
  footer .footer_fixed {
    padding-top: calc(1.875em + 0.75 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .footer_fixed {
    padding-top: 2.625em;
  }
}
footer .modular_address {
  margin-bottom: 1.5em;
}
@media (min-width: 47.5rem) {
  footer .modular_address {
    margin: 0;
  }
}
footer .modular_address a {
  text-decoration: none;
}
footer .modular_address a:focus, footer .modular_address a:hover {
  text-decoration: underline;
}
footer .modular_address p {
  line-height: 1.875;
  margin: 0;
}
footer .related_links {
  line-height: 1.875;
}
footer .related_links a.active {
  font-weight: 600;
  text-decoration: none;
}
footer .wrap-data-security {
  padding-top: 1.875em;
}
footer .wrap-data-security .icon.data_security {
  display: block;
  height: 1.9375rem;
  width: 6.25rem;
}
@media (min-width: 20rem) {
  footer .wrap-data-security .icon.data_security {
    height: calc(1.9375rem + 0.7265625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .wrap-data-security .icon.data_security {
    height: 2.6640625rem;
  }
}
@media (min-width: 20rem) {
  footer .wrap-data-security .icon.data_security {
    width: calc(6.25rem + 2.34375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  footer .wrap-data-security .icon.data_security {
    width: 8.59375rem;
  }
}
footer .wrap-data-security .icon.data_security svg {
  display: block;
}
footer .button {
  margin-top: 1.5em;
}

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

.file {
  align-items: center;
  display: flex;
  flex-basis: 65%;
  margin: 0 0 0.999em;
  position: relative;
  height: 2.75rem;
}
@media (min-width: 20rem) {
  .file {
    height: calc(2.75rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file {
    height: 3.125rem;
  }
}
.file.error .file_name {
  border-color: #a12b2a;
}
.file .file_name {
  background: #fff;
  border: 0.0625rem solid #d7d5d5;
  border-radius: 0 0 0 0;
  color: #000000;
  flex: 0 1 100%;
  overflow: hidden;
  padding: 0 0.75em;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 8.125rem;
  line-height: 2.625rem;
  height: 2.75rem;
}
@media (min-width: 20rem) {
  .file .file_name {
    line-height: calc(2.625rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file .file_name {
    line-height: 3rem;
  }
}
@media (min-width: 20rem) {
  .file .file_name {
    height: calc(2.75rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file .file_name {
    height: 3.125rem;
  }
}
.file .file_button {
  flex: 1 0 auto;
  margin-left: 0.75em;
  z-index: 10;
  background: none;
  border: 0;
  color: #000000;
  display: inline-flex;
  justify-content: center;
  position: relative;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms;
  user-select: none;
}
.file .file_button:before {
  background: #a12b2a;
  bottom: 0;
  content: "";
  display: block;
  height: 0.4375rem;
  left: 0;
  position: absolute;
  right: 0;
  transition: background 300ms, height 300ms;
}
.file .file_button > span {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  min-height: 2.125rem;
}
@media (min-width: 20rem) {
  .file .file_button > span {
    min-height: calc(2.125rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file .file_button > span {
    min-height: 2.125rem;
  }
}
.file .file_button .icon {
  fill: #000000;
  flex-shrink: 0;
  height: 1.5rem;
  transition: fill 300ms;
  width: 1.5rem;
}
.file .file_button .text {
  letter-spacing: calc((1.125rem + 0.125 * (100vw - 20rem) / (73.75)) * 0.1);
  font-size: 1.125rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
}
@media (min-width: 93.75rem) {
  .file .file_button .text {
    letter-spacing: calc(1.25rem * 0.1);
  }
}
@media (min-width: 20rem) {
  .file .file_button .text {
    font-size: calc(1.125rem + 0.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file .file_button .text {
    font-size: 1.25rem;
  }
}
.file .file_button .icon + .text {
  padding-left: 0.4995em;
}
.file .file_button.focus {
  color: #fff;
}
.file .file_button.focus:before {
  background: #a12b2a;
  height: 100%;
}
.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;
}
.file [type=file]:hover ~ .file_button {
  color: #fff;
}
.file [type=file]:hover ~ .file_button:before {
  background: #a12b2a;
  height: 100%;
}
.file [type=file]:hover ~ .file_button .icon {
  fill: #fff;
}
.file [type=file]:active ~ .file_button {
  background: none;
  border: 0;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  position: relative;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms;
  user-select: none;
}
.file [type=file]:active ~ .file_button:before {
  background: #000000;
  bottom: 0;
  content: "";
  display: block;
  height: 0.4375rem;
  left: 0;
  position: absolute;
  right: 0;
  transition: background 300ms, height 300ms;
}
.file [type=file]:active ~ .file_button > span {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  min-height: 2.125rem;
}
@media (min-width: 20rem) {
  .file [type=file]:active ~ .file_button > span {
    min-height: calc(2.125rem + 0 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file [type=file]:active ~ .file_button > span {
    min-height: 2.125rem;
  }
}
.file [type=file]:active ~ .file_button .icon {
  fill: #fff;
  flex-shrink: 0;
  height: 1.5rem;
  transition: fill 300ms;
  width: 1.5rem;
}
.file [type=file]:active ~ .file_button .text {
  letter-spacing: calc((1.125rem + 0.125 * (100vw - 20rem) / (73.75)) * 0.1);
  font-size: 1.125rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
}
@media (min-width: 93.75rem) {
  .file [type=file]:active ~ .file_button .text {
    letter-spacing: calc(1.25rem * 0.1);
  }
}
@media (min-width: 20rem) {
  .file [type=file]:active ~ .file_button .text {
    font-size: calc(1.125rem + 0.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .file [type=file]:active ~ .file_button .text {
    font-size: 1.25rem;
  }
}
.file [type=file]:active ~ .file_button .icon + .text {
  padding-left: 0.4995em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order12_xxxlarge {
    order: 12;
  }
}

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

header {
  margin-bottom: 0em;
}
@media (min-width: 20rem) {
  header {
    margin-bottom: calc(0em + 3 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  header {
    margin-bottom: 3em;
  }
}
header .wrap-top {
  padding-bottom: 1.125em;
  padding-top: 1.125em;
}
@media (min-width: 20rem) {
  header .wrap-top {
    padding-bottom: calc(1.125em + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  header .wrap-top {
    padding-bottom: 1.5em;
  }
}
@media (min-width: 20rem) {
  header .wrap-top {
    padding-top: calc(1.125em + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  header .wrap-top {
    padding-top: 1.5em;
  }
}
header .wrap-top .wrap-flex {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
header .wrap-bottom .container {
  position: relative;
}
header .wrap-bottom .wrap-slogan {
  margin-top: 1.125em;
}
@media (min-width: 47.5rem) {
  header .wrap-bottom .wrap-slogan {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}
header .wrap-bottom .wrap-slogan h1 {
  max-width: 15ch;
}
@media (min-width: 30rem) {
  header .wrap-bottom .wrap-slogan h1 {
    max-width: 18ch;
  }
}
@media (min-width: 75rem) {
  header .wrap-bottom .wrap-slogan h1 {
    max-width: none;
  }
}

body.startpage header {
  margin: 0;
}

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

.header_background {
  background-color: #f0efef;
  background-position: 50% 50%;
  background-size: cover;
  margin-bottom: 1.5em;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media (min-width: 20rem) {
  .header_background {
    height: calc(10rem + 20 * (100vw - 20rem) / (41.875));
  }
}
@media (min-width: 61.875rem) {
  .header_background {
    height: 30rem;
  }
}
@media (min-width: 61.875rem) {
  .header_background {
    height: calc(20rem + 15.4375 * (100vw - 61.875rem) / (31.875));
  }
}
@media (min-width: 93.75rem) {
  .header_background {
    height: 35.4375rem;
  }
}
@media (min-width: 61.875rem) {
  .header_background {
    margin-bottom: 0;
  }
}
.header_background .icon {
  bottom: 0;
  display: block;
  fill: #fff;
  flex-shrink: 0;
  left: 0;
  position: absolute;
  transform: translateX(-38%) translateY(24%);
  height: 10rem;
  width: 10rem;
}
@media (min-width: 20rem) {
  .header_background .icon {
    height: calc(10rem + 15.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .header_background .icon {
    height: 25.9375rem;
  }
}
@media (min-width: 20rem) {
  .header_background .icon {
    width: calc(10rem + 15.9375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .header_background .icon {
    width: 25.9375rem;
  }
}
.header_background .icon svg {
  display: block;
}

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

.header_image img {
  display: block;
  margin: 0 0 0 auto;
}
@media (min-width: 47.5rem) {
  .header_image img {
    max-width: calc(26.25rem + 25.9375 * (100vw - 47.5rem) / (46.25));
  }
}
@media (min-width: 93.75rem) {
  .header_image img {
    max-width: 52.1875rem;
  }
}
@media (min-width: 47.5rem) {
  .header_image img {
    margin-right: calc(-6.25rem + 2.5 * (100vw - 47.5rem) / (27.5));
  }
}
@media (min-width: 75rem) {
  .header_image img {
    margin-right: -3.75rem;
  }
}
@media (min-width: 75rem) {
  .header_image img {
    margin-right: calc(-10rem + 1.25 * (100vw - 75rem) / (18.75));
  }
}
@media (min-width: 93.75rem) {
  .header_image img {
    margin-right: -8.75rem;
  }
}
@media (min-width: 93.75rem) {
  .header_image img {
    margin-right: calc(-8.75rem + 8.75 * (100vw - 93.75rem) / (26.25));
  }
}
@media (min-width: 120rem) {
  .header_image img {
    margin-right: 0rem;
  }
}

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

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

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

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

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

.infolist_graphic_a_online_graphic_large {
  display: none;
}

.arbeitnehmer_online_2_headline {
  fill: #000000;
  font-family: "Montserrat", sans-serif;
  font-size: 80%;
  text-anchor: middle;
}
@media (min-width: 47.5rem) {
  .arbeitnehmer_online_2_headline {
    font-size: 65%;
  }
}
.arbeitnehmer_online_2_headline .strong {
  fill: #000000;
  font-weight: 600;
}

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

.arbeitnehmer_online_company_logo {
  fill: #000000;
}

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

.arbeitnehmer_online_button .normal {
  display: block;
}
.arbeitnehmer_online_button .hover {
  display: none;
}
.arbeitnehmer_online_button:hover .normal {
  display: none;
}
.arbeitnehmer_online_button:hover .hover {
  display: block;
}
.arbeitnehmer_online_button:hover .arbeitnehmer_online_euro_icon,
.arbeitnehmer_online_button:hover .arbeitnehmer_online_warning_icon,
.arbeitnehmer_online_button:hover .arbeitnehmer_online_check_icon {
  fill: #a12b2a;
}
.arbeitnehmer_online_button:hover .arbeitnehmer_online_icon {
  fill: #000000;
}

.arbeitnehmer_online_lines {
  fill: #a12b2a;
}

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

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

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

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

.meine_steuern_text {
  fill: #000000;
  font-family: "Montserrat", sans-serif;
}

.meine_steuern_arrows {
  fill: #a12b2a;
}

.meine_steuern_icon {
  fill: #c94d0e;
}

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

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

.infolist_top_link {
  align-items: flex-end;
  border-top: 0.125rem dashed #d7d5d5;
  display: flex;
  flex-direction: column;
  margin: 0.75em 0;
}
.infolist_top_link a {
  align-items: center;
  display: flex;
  text-align: center;
}
.infolist_top_link a .icon {
  display: block;
  fill: #a12b2a;
  margin-right: 0.75em;
  transform: rotate(110deg) scaleX(-1);
  transition: fill 300ms;
  height: 2rem;
  width: 2rem;
}
@media (min-width: 20rem) {
  .infolist_top_link a .icon {
    height: calc(2rem + 2 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .infolist_top_link a .icon {
    height: 4rem;
  }
}
@media (min-width: 20rem) {
  .infolist_top_link a .icon {
    width: calc(2rem + 2 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .infolist_top_link a .icon {
    width: 4rem;
  }
}
.infolist_top_link a .text {
  font-size: 88.889%;
}
.infolist_top_link a:focus .icon, .infolist_top_link a:hover .icon {
  fill: #c94d0e;
}

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

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

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

.infolist_graphic_u_online_graphic_large {
  display: none;
}

.u_online_2_headline {
  fill: #000000;
  font-family: "Montserrat", sans-serif;
  font-size: 90%;
  text-anchor: middle;
}
@media (min-width: 47.5rem) {
  .u_online_2_headline {
    font-size: 65%;
  }
}
.u_online_2_headline .strong {
  fill: #000000;
  font-weight: 600;
}

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

.u_online_company_logo {
  fill: #000000;
}

.u_online_warning_icon {
  fill: #000000;
  transition: 300ms;
}

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

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

.u_online_button .normal {
  display: block;
}
.u_online_button .hover {
  display: none;
}
.u_online_button:hover .normal {
  display: none;
}
.u_online_button:hover .hover {
  display: block;
}
.u_online_button:hover .u_online_euro_icon,
.u_online_button:hover .u_online_warning_icon,
.u_online_button:hover .u_online_check_icon {
  fill: #a12b2a;
}
.u_online_button:hover .u_online_icon {
  fill: #000000;
}

.u_online_lines {
  fill: #a12b2a;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.job_benefit_overview .entry {
  background: #f0efef;
  display: block;
  margin-bottom: 1.5em;
  padding: 1.5em 1.125em;
}
@media (min-width: 35rem) {
  .job_benefit_overview .entry {
    display: flex;
  }
}
.job_benefit_overview .entry .photo {
  flex-shrink: 0;
  margin-bottom: 0.75em;
  margin-right: 1.5em;
  width: 7.5rem;
}
@media (min-width: 20rem) {
  .job_benefit_overview .entry .photo {
    margin-right: calc(1.5em + 0.75 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .job_benefit_overview .entry .photo {
    margin-right: 2.25em;
  }
}
@media (min-width: 20rem) {
  .job_benefit_overview .entry .photo {
    width: calc(7.5rem + 2.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .job_benefit_overview .entry .photo {
    width: 10rem;
  }
}
.job_benefit_overview .entry .wrap-text .title {
  padding: 0;
}
.job_benefit_overview .entry .wrap-text p {
  margin: 0;
}

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

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

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

.page_wrapper {
  overflow-x: hidden;
}

.wrap-content {
  margin-bottom: 3em;
}
@media (min-width: 20rem) {
  .wrap-content {
    margin-bottom: calc(3em + 3 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .wrap-content {
    margin-bottom: 6em;
  }
}

.infolist_overview .entry,
.job_overview .entry {
  background: #c94d0e;
  display: block;
  margin-bottom: 1.5em;
  padding: 1.5em 1.125em;
  text-decoration: none;
  transition: background 300ms;
}
.infolist_overview .entry .title,
.job_overview .entry .title {
  color: #fff;
  padding: 0;
  word-wrap: break-word;
}
.infolist_overview .entry p,
.job_overview .entry p {
  color: #fff;
  margin: 0;
}
.infolist_overview .entry:focus, .infolist_overview .entry:hover,
.job_overview .entry:focus,
.job_overview .entry:hover {
  background: #a12b2a;
}

.job_overview .entry .title {
  margin: 0;
}

body.startpage .steuernews_preview .entry {
  padding: 1.125em 1.125em 1.5em 1.125em;
}

.start-dassindwir .icon_element,
.start-leistungen .icon_element,
.start-digital .icon_element {
  display: block;
  fill: #a12b2a;
  flex-shrink: 0;
  height: 6.25rem;
  width: 6.25rem;
}
@media (min-width: 20rem) {
  .start-dassindwir .icon_element,
.start-leistungen .icon_element,
.start-digital .icon_element {
    height: calc(6.25rem + 3.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .start-dassindwir .icon_element,
.start-leistungen .icon_element,
.start-digital .icon_element {
    height: 9.375rem;
  }
}
@media (min-width: 20rem) {
  .start-dassindwir .icon_element,
.start-leistungen .icon_element,
.start-digital .icon_element {
    width: calc(6.25rem + 3.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .start-dassindwir .icon_element,
.start-leistungen .icon_element,
.start-digital .icon_element {
    width: 9.375rem;
  }
}
.start-dassindwir .icon_element .icon,
.start-leistungen .icon_element .icon,
.start-digital .icon_element .icon {
  display: block;
}
.start-dassindwir .icon_element .icon svg,
.start-leistungen .icon_element .icon svg,
.start-digital .icon_element .icon svg {
  display: block;
}

.start-dassindwir .icon_element {
  margin: 0 0 0.75em auto;
}
.start-dassindwir .icon_element .icon {
  transform: scaleX(-1) rotate(-38deg);
}
.start-dassindwir figure {
  margin: 0;
}

.start-leistungen {
  margin-bottom: 1.5em;
  text-align: center;
  padding-top: 3em;
}
@media (min-width: 20rem) {
  .start-leistungen {
    padding-top: calc(3em + 3 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .start-leistungen {
    padding-top: 6em;
  }
}
.start-leistungen h2,
.start-leistungen .teaser {
  text-align: left;
}
.start-leistungen .teaser_overview.last {
  margin-bottom: 3em;
}
@media (min-width: 20rem) {
  .start-leistungen .teaser_overview.last {
    margin-bottom: calc(3em + 3 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .start-leistungen .teaser_overview.last {
    margin-bottom: 6em;
  }
}
@media (min-width: 61.875rem) {
  .start-leistungen .teaser_overview.last {
    padding-top: calc(1.5em + 1.5 * (100vw - 61.875rem) / (31.875));
  }
}
@media (min-width: 93.75rem) {
  .start-leistungen .teaser_overview.last {
    padding-top: 3em;
  }
}
.start-leistungen .icon_element {
  margin: 0 auto;
  height: 6.25rem;
  width: 6.25rem;
}
@media (min-width: 20rem) {
  .start-leistungen .icon_element {
    height: calc(6.25rem + 5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .start-leistungen .icon_element {
    height: 11.25rem;
  }
}
@media (min-width: 20rem) {
  .start-leistungen .icon_element {
    width: calc(6.25rem + 5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .start-leistungen .icon_element {
    width: 11.25rem;
  }
}
.start-leistungen .icon_element .icon {
  transform: scaleX(-1) rotate(40deg);
}
.start-leistungen .bigger {
  margin-bottom: 1.5em;
}
.start-leistungen .bigger .text {
  letter-spacing: calc((1.25rem + 0.75 * (100vw - 20rem) / (73.75)) * 0.05);
  font-size: 1.25rem;
  line-height: 1.25;
}
@media (min-width: 93.75rem) {
  .start-leistungen .bigger .text {
    letter-spacing: calc(2rem * 0.05);
  }
}
@media (min-width: 20rem) {
  .start-leistungen .bigger .text {
    font-size: calc(1.25rem + 0.75 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .start-leistungen .bigger .text {
    font-size: 2rem;
  }
}

.start-karriere .bg-img {
  position: relative;
  width: 100%;
  height: 9.375rem;
}
@media (min-width: 20rem) {
  .start-karriere .bg-img {
    height: calc(9.375rem + 15.625 * (100vw - 20rem) / (27.5));
  }
}
@media (min-width: 47.5rem) {
  .start-karriere .bg-img {
    height: 25rem;
  }
}
@media (min-width: 47.5rem) {
  .start-karriere .bg-img {
    height: calc(26.25rem + 8.75 * (100vw - 47.5rem) / (46.25));
  }
}
@media (min-width: 93.75rem) {
  .start-karriere .bg-img {
    height: 35rem;
  }
}
.start-karriere .bg-img:before {
  background-color: #f0efef;
  background-image: url("../../common/images/bg-start-karriere.jpg");
  background-position: 50% 0;
  background-size: cover;
  bottom: 0;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -0.9375rem;
  right: -0.9375rem;
}
@media (min-width: 20rem) {
  .start-karriere .bg-img:before {
    left: calc(-0.9375rem + -2.1875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .start-karriere .bg-img:before {
    left: -3.125rem;
  }
}
@media (min-width: 20rem) {
  .start-karriere .bg-img:before {
    right: calc(-0.9375rem + -2.1875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .start-karriere .bg-img:before {
    right: -3.125rem;
  }
}
@media (min-width: 47.5rem) {
  .start-karriere .bg-img:before {
    right: 0;
  }
}
@media (min-width: 100rem) {
  .start-karriere .bg-img:before {
    left: calc(-3.125rem + -30.625 * (100vw - 100rem) / (60));
  }
}
@media (min-width: 160rem) {
  .start-karriere .bg-img:before {
    left: -33.75rem;
  }
}
@media (min-width: 47.5rem) {
  .start-karriere .wrap-text p {
    max-width: 45ch;
  }
}

.start-digital {
  position: relative;
  margin-top: 0em;
  padding-bottom: 3em;
  padding-top: 1.5em;
}
@media (min-width: 20rem) {
  .start-digital {
    margin-top: calc(0em + -1.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .start-digital {
    margin-top: -1.5em;
  }
}
@media (min-width: 20rem) {
  .start-digital {
    padding-bottom: calc(3em + 3 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .start-digital {
    padding-bottom: 6em;
  }
}
@media (min-width: 20rem) {
  .start-digital {
    padding-top: calc(1.5em + 0.75 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .start-digital {
    padding-top: 2.25em;
  }
}
@media (min-width: 47.5rem) {
  .start-digital {
    padding-top: 0;
  }
}
.start-digital .icon.bg {
  display: block;
  left: -11.25em;
  opacity: 0.3;
  position: absolute;
  z-index: -1;
  height: 34.25rem;
  width: 12.5rem;
}
@media (min-width: 20rem) {
  .start-digital .icon.bg {
    bottom: calc(0em + -6 * (100vw - 20rem) / (27.5));
  }
}
@media (min-width: 47.5rem) {
  .start-digital .icon.bg {
    bottom: -6em;
  }
}
@media (min-width: 47.5rem) {
  .start-digital .icon.bg {
    bottom: auto;
    left: -13.5em;
    opacity: 1;
  }
}
@media (min-width: 61.875rem) {
  .start-digital .icon.bg {
    left: -10.875em;
  }
}
@media (min-width: 20rem) {
  .start-digital .icon.bg {
    height: calc(34.25rem + 17.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .start-digital .icon.bg {
    height: 51.375rem;
  }
}
@media (min-width: 75rem) {
  .start-digital .icon.bg {
    left: calc(-8.25em + 1.125 * (100vw - 75rem) / (18.75));
  }
}
@media (min-width: 93.75rem) {
  .start-digital .icon.bg {
    left: -7.125em;
  }
}
@media (min-width: 93.75rem) {
  .start-digital .icon.bg {
    left: calc(-7.125em + 6 * (100vw - 93.75rem) / (25));
  }
}
@media (min-width: 118.75rem) {
  .start-digital .icon.bg {
    left: -1.125em;
  }
}
@media (min-width: 47.5rem) {
  .start-digital .icon.bg {
    top: calc(-6em + 1.875 * (100vw - 47.5rem) / (46.25));
  }
}
@media (min-width: 93.75rem) {
  .start-digital .icon.bg {
    top: -4.125em;
  }
}
@media (min-width: 20rem) {
  .start-digital .icon.bg {
    width: calc(12.5rem + 6.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .start-digital .icon.bg {
    width: 18.75rem;
  }
}
.start-digital .icon_element {
  margin-left: auto;
  height: 6.25rem;
  margin-bottom: 1.5em;
  margin-right: 0em;
  width: 6.25rem;
}
@media (min-width: 20rem) {
  .start-digital .icon_element {
    height: calc(6.25rem + 5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .start-digital .icon_element {
    height: 11.25rem;
  }
}
@media (min-width: 20rem) {
  .start-digital .icon_element {
    margin-bottom: calc(1.5em + 3 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .start-digital .icon_element {
    margin-bottom: 4.5em;
  }
}
@media (min-width: 20rem) {
  .start-digital .icon_element {
    margin-right: calc(0em + 4.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .start-digital .icon_element {
    margin-right: 4.5em;
  }
}
@media (min-width: 20rem) {
  .start-digital .icon_element {
    width: calc(6.25rem + 5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .start-digital .icon_element {
    width: 11.25rem;
  }
}
.start-digital .icon_element .icon {
  transform: scaleX(-1) rotate(-12deg);
}
.start-digital .box {
  background: #a12b2a;
  padding: 1.5em 1.125em;
  column-gap: 0.9375rem;
}
@media (min-width: 20rem) {
  .start-digital .box {
    column-gap: calc(0.9375rem + 2.1875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .start-digital .box {
    column-gap: 3.125rem;
  }
}
@media (min-width: 61.875rem) {
  .start-digital .box {
    align-items: center;
    display: flex;
  }
}
.start-digital .box h2 {
  margin: 0 0 0.375em;
  padding: 0;
}
.start-digital .box h2,
.start-digital .box p {
  color: #fff;
}
@media (min-width: 61.875rem) {
  .start-digital .box p {
    margin: 0;
  }
}

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

.toggle_offcanvas_menu {
  display: block;
  position: relative;
}
@media (min-width: 75rem) {
  .toggle_offcanvas_menu {
    display: none;
  }
}
.toggle_offcanvas_menu .open_btn {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  height: 2.25rem;
  position: relative;
  user-select: none;
  z-index: 10;
}
.toggle_offcanvas_menu .open_btn:before {
  display: none;
}
.toggle_offcanvas_menu .open_btn .sr_open {
  display: block;
}
.toggle_offcanvas_menu .open_btn .sr_close {
  display: none;
}
.toggle_offcanvas_menu .open_btn .icon {
  display: flex;
  justify-content: flex-end;
  margin-right: 0.5625em;
  position: relative;
  transform: translateY(-0.125rem);
  height: 0.75rem;
  width: 2.1875rem;
}
@media (min-width: 20rem) {
  .toggle_offcanvas_menu .open_btn .icon {
    height: calc(0.75rem + 0.1875 * (100vw - 20rem) / (55));
  }
}
@media (min-width: 75rem) {
  .toggle_offcanvas_menu .open_btn .icon {
    height: 0.9375rem;
  }
}
@media (min-width: 20rem) {
  .toggle_offcanvas_menu .open_btn .icon {
    width: calc(2.1875rem + 0.3125 * (100vw - 20rem) / (55));
  }
}
@media (min-width: 75rem) {
  .toggle_offcanvas_menu .open_btn .icon {
    width: 2.5rem;
  }
}
.toggle_offcanvas_menu .open_btn .icon .line {
  background: #a12b2a;
  display: block;
  height: 0.25rem;
  position: absolute;
  transition: top 300ms, transform 300ms, width 300ms;
  width: 100%;
}
.toggle_offcanvas_menu .open_btn .icon .line_1 {
  background: #c94d0e;
  top: 0;
  width: 75%;
}
.toggle_offcanvas_menu .open_btn .icon .line_2 {
  top: 100%;
  transform: translateY(-100%);
}
.toggle_offcanvas_menu .open_btn .text {
  letter-spacing: calc((1.125rem + 0.125 * (100vw - 20rem) / (73.75)) * 0.1);
  font-size: 1.125rem;
  color: #000000;
  font-weight: 600;
  padding: 0 !important;
  text-transform: uppercase;
}
@media (min-width: 93.75rem) {
  .toggle_offcanvas_menu .open_btn .text {
    letter-spacing: calc(1.25rem * 0.1);
  }
}
@media (min-width: 20rem) {
  .toggle_offcanvas_menu .open_btn .text {
    font-size: calc(1.125rem + 0.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .toggle_offcanvas_menu .open_btn .text {
    font-size: 1.25rem;
  }
}
.toggle_offcanvas_menu .open_btn.open .icon .line_1 {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition-delay: 150ms;
  width: 100%;
}
.toggle_offcanvas_menu .open_btn.open .icon .line_2 {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition-delay: 150ms;
}
.toggle_offcanvas_menu .open_btn.open .sr_open {
  display: none;
}
.toggle_offcanvas_menu .open_btn.open .sr_close {
  display: block;
}

.offcanvas_menu {
  display: flex;
  position: fixed;
  margin: 0;
  padding: 0;
  top: 0;
  height: 100%;
  max-height: 100%;
  min-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  border: none;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease-in-out;
  z-index: 1000;
  -webkit-backdrop-filter: blur(0.125rem);
  backdrop-filter: blur(0.125rem);
  background: rgba(0, 0, 0, 0.65);
  min-width: 100%;
}
.offcanvas_menu .menu_wrapper {
  align-items: flex-start;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.5em 0;
  position: absolute;
  transition: all 300ms ease-in-out;
  width: 15.625rem;
  left: 0;
  transform-origin: left;
  transform: translateX(-100%);
}
@media (min-width: 30rem) {
  .offcanvas_menu .menu_wrapper {
    width: 21.875rem;
  }
}
.offcanvas_menu[open] {
  opacity: 1;
  visibility: visible;
}
.offcanvas_menu[open] .menu_wrapper {
  transform: translateX(0);
}
.offcanvas_menu .close_btn {
  display: inline-flex;
  margin: 0 1.125em 1.125em 1.125em;
}
.offcanvas_menu .navigation {
  width: 100%;
}
.offcanvas_menu .navigation > ul ul {
  max-height: 0;
  margin-bottom: 0;
  overflow: hidden;
  transition: max-height 600ms;
}
.offcanvas_menu .navigation > ul {
  width: 100%;
}
.offcanvas_menu .navigation > ul > li > a {
  color: #000000;
  display: flex;
  flex-direction: row;
  font-size: 111.111%;
  font-weight: 600;
  line-height: 2.25rem;
  padding: 0.25em 1.125em;
  text-decoration: none;
  text-transform: uppercase;
}
.offcanvas_menu .navigation > ul > li > a.active, .offcanvas_menu .navigation > ul > li > a:focus, .offcanvas_menu .navigation > ul > li > a:hover {
  color: #a12b2a;
}
.offcanvas_menu .navigation > ul li.expanded > ul {
  display: block;
}
.offcanvas_menu .navigation > ul li.expanded > a {
  color: #a12b2a;
}
.offcanvas_menu .navigation > ul ul {
  background: #f0efef;
  line-height: 2.109375;
  padding: 0 0.75em;
}
.offcanvas_menu .navigation > ul ul li:first-child {
  padding-top: 0.75em;
}
.offcanvas_menu .navigation > ul ul li:last-child {
  margin-bottom: 0.75em;
}
.offcanvas_menu .navigation > ul ul a {
  color: #000000;
  display: block;
  padding: 0 0.525em;
  text-decoration: none;
}
.offcanvas_menu .navigation > ul ul a.active, .offcanvas_menu .navigation > ul ul a:focus, .offcanvas_menu .navigation > ul ul a:hover {
  color: #000000;
  font-weight: 600;
}

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

.open_street_map .map {
  height: 21.875rem;
  background-color: #f0efef;
  cursor: move;
  position: relative;
  width: 100%;
}
@media (min-width: 20rem) {
  .open_street_map .map {
    height: calc(21.875rem + 12.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .open_street_map .map {
    height: 34.375rem;
  }
}
.open_street_map .map_overlay {
  align-items: center;
  background-color: rgba(240, 239, 239, 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 {
    padding-bottom: 0.5625em;
  }
}
@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: #a12b2a;
  border: 0;
  color: #fff;
  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: #c94d0e;
  color: #fff;
  outline: 0;
}
.open_street_map .ol-overlaycontainer-stopevent button:hover {
  background: #c94d0e;
  color: #fff;
}
.open_street_map .ol-overlaycontainer-stopevent button.disabled {
  cursor: default;
  opacity: 0.6;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-attribution,
.open_street_map .ol-overlaycontainer-stopevent .ol-zoom-in,
.open_street_map .ol-overlaycontainer-stopevent .ol-zoom-out,
.open_street_map .ol-overlaycontainer-stopevent .ol-zoomslider {
  position: absolute;
  right: 0.3125rem;
  z-index: 99;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-zoom-in {
  line-height: 1;
  top: 0.3125rem;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-zoom-out {
  line-height: 1;
  top: 3.375rem;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-rotate-reset {
  display: none;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-attribution {
  align-items: center;
  bottom: 0;
  cursor: default;
  display: flex;
  justify-content: flex-end;
  right: 0;
  text-align: right;
  user-select: none;
  z-index: 99;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-attribution ul {
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  color: black;
  display: flex;
  height: 2.375rem;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
  text-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.15);
  transform-origin: center right;
  transition: transform 300ms, opacity 300ms;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-attribution ul li {
  align-items: center;
  background-image: none;
  display: flex;
  font-size: 88.889%;
  margin: 0 0.75em;
  padding: 0;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-attribution ul li a {
  align-items: center;
  display: inline-flex;
  margin: 0 0.3125rem;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-attribution button {
  display: none;
}
.open_street_map.disable_ui .ol-overlaycontainer-stopevent .ol-zoom-in,
.open_street_map.disable_ui .ol-overlaycontainer-stopevent .ol-zoom-out {
  display: none;
}

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

.opening_times .entries {
  column-gap: 2.25em;
  display: flex;
  flex-wrap: wrap;
}

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

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

.steuernews_preview {
  margin-bottom: 1.5em;
}
.steuernews_preview .entry {
  background: #c94d0e;
  display: block;
  margin-bottom: 1.5em;
  padding: 1.5em 1.125em;
  text-decoration: none;
  transition: background 300ms;
}
.steuernews_preview .entry .overview_title {
  letter-spacing: calc((0.875rem + 0.125 * (100vw - 20rem) / (73.75)) * 0.1);
  font-size: 0.875rem;
  background: #fff;
  color: #000000;
  display: inline-block;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
  margin-bottom: 1.5em;
  padding: 0.09375em 0.5em;
}
@media (min-width: 93.75rem) {
  .steuernews_preview .entry .overview_title {
    letter-spacing: calc(1rem * 0.1);
  }
}
@media (min-width: 20rem) {
  .steuernews_preview .entry .overview_title {
    font-size: calc(0.875rem + 0.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .steuernews_preview .entry .overview_title {
    font-size: 1rem;
  }
}
.steuernews_preview .entry .title {
  color: #fff;
  padding: 0;
  word-wrap: break-word;
}
.steuernews_preview .entry p {
  color: #fff;
  margin: 0;
}
.steuernews_preview .entry:focus, .steuernews_preview .entry:hover {
  background: #a12b2a;
}

.news_entity .hide_image_author,
.news_entity .hide_creation_date {
  display: none;
}
.news_entity aside.aside {
  display: none;
}
@media (min-width: 61.875rem) {
  .news_entity aside.aside {
    display: block;
  }
}

.news_image {
  background: #a12b2a;
  margin-bottom: 1.5em;
  padding: 1.125em;
}
.news_image + * {
  padding-top: 0;
}
.news_image figcaption {
  color: #fff;
}

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

.steuernews_disclaimer {
  clear: both;
}

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

.steuernews_current_issue {
  margin-bottom: 1.5em;
}
.steuernews_current_issue a.active {
  font-weight: 600;
  text-decoration: none;
}

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

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

.team_overview {
  padding-top: 1.5em;
}
.team_overview .entry {
  background: #f0efef;
  display: block;
  margin-bottom: 1.5em;
  padding: 1.5em 1.125em;
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 75rem) {
  .team_overview .entry {
    flex-direction: row;
    justify-content: space-between;
  }
}
.team_overview .entry .title {
  margin: 0;
  margin-top: 0.75em;
  padding: 0;
}
.team_overview .entry .photo {
  display: block;
  max-width: 11.25rem;
}
.team_overview .entry .photo img {
  display: block;
}
.team_overview .entry .contacts {
  margin-bottom: 0.75em;
}
.team_overview .entry .contacts .contact {
  margin: 0;
}

.team_entry .contacts {
  margin-bottom: 0.75em;
}
.team_entry .contacts .contact {
  margin: 0;
}
.team_entry .button_overview {
  margin-bottom: 2.25em;
}

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

.teaser {
  background: #c94d0e;
  margin-bottom: 1.5em;
  padding: 1.125em;
}
.teaser .title {
  color: #fff;
  padding: 0;
}
.teaser .description p {
  color: #fff;
}

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

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

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

