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

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

abbr {
  text-decoration: none;
}

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

[role=tablist] {
  margin-bottom: 1.35em;
  margin-left: 1.25rem;
}
@media (min-width: 20rem) {
  [role=tablist] {
    margin-left: calc(1.25rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  [role=tablist] {
    margin-left: 2.5rem;
  }
}

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

[role=tab] {
  align-items: center;
  cursor: pointer;
  display: flex;
  margin: 0 0 0.3375em;
  min-width: 100%;
  padding: 0.45em 0;
}
[role=tab] .title {
  margin-right: 1.35em;
  overflow: hidden;
  text-overflow: ellipsis;
}
[role=tab] .icon {
  display: block;
  fill: #000;
  height: 1.625rem;
  transform: rotate(90deg);
  width: 1.625rem;
  transition: 300ms;
}
[role=tab][aria-expanded=true] {
  border-color: #e30613;
}
[role=tab][aria-expanded=true] .icon {
  transform: rotate(-90deg);
}
[role=tab]:focus {
  border-color: #e30613;
  outline: 0;
}
[role=tab]:focus .title {
  color: #e30613;
}

[role=tabpanel] {
  height: auto;
  margin: 0;
  max-height: 0;
  overflow: hidden;
}
[role=tabpanel][aria-hidden=false] {
  margin: 1.35em 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 p {
  margin-right: 2.025em;
}
.contact_wrapper .postal_address > span {
  display: block;
}

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

.address_vcard_button {
  margin: 0.675em 0;
}

.address_call_button {
  margin: 0.675em 0;
}

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

.sidebar {
  margin-bottom: 1.35em;
}
@media (min-width: 20rem) {
  .sidebar {
    margin-bottom: calc(1.35em + 1.35 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .sidebar {
    margin-bottom: 2.7em;
  }
}
@media (min-width: 61.875rem) {
  .sidebar {
    padding-top: 1.35em;
  }
}
@media (min-width: 61.875rem) and (min-width: 20rem) {
  .sidebar {
    padding-top: calc(1.35em + 1.35 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 61.875rem) and (min-width: 93.75rem) {
  .sidebar {
    padding-top: 2.7em;
  }
}

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

.atikon_logo {
  height: 100%;
}

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

.author_hor {
  display: inline-block;
  fill: #a0a0a0;
  height: 0.5625rem;
  line-height: 0.5625rem;
  width: 4.6875rem;
  position: absolute;
  z-index: 50;
  right: 0.1875rem;
  margin-top: 0.1875rem;
}

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

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

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

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

.button {
  border-radius: 0;
  padding: 0 2.025em;
  background: rgba(227, 6, 19, 0);
  border: 0.125rem solid #000;
  color: #000;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms;
  user-select: none;
}
@media (min-width: 61.875rem) {
  .button {
    border: 0.1875rem solid #000;
  }
}
.button > span {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 2.375rem;
}
@media (min-width: 20rem) {
  .button > span {
    min-height: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .button > span {
    min-height: 2.75rem;
  }
}
.button .icon {
  fill: #000;
  flex-shrink: 0;
  height: 1.5rem;
  transition: fill 300ms;
  width: 1.5rem;
}
.button .text {
  font-weight: 800;
  font-family: "Assistant", sans-serif;
  padding: 0.3375em 0;
  text-transform: uppercase;
}
.button .icon + .text {
  padding-left: 0.45em;
}
.button:focus {
  box-shadow: 0 0 0 0 rgba(227, 6, 19, 0.2);
  outline: 0;
  background: #000;
  border-color: #000;
  color: #fff;
}
.button:focus .icon {
  fill: #fff;
}
.button:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}
.button:hover .icon {
  fill: #fff;
}
.button:active, .button.active {
  box-shadow: 0 0 0 rgba(177, 5, 15, 0) inset;
  background: rgba(177, 5, 15, 0);
  border: 0.125rem solid rgba(177, 5, 15, 0);
  color: #000;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms;
  user-select: none;
}
@media (min-width: 61.875rem) {
  .button:active, .button.active {
    border: 0.1875rem solid rgba(177, 5, 15, 0);
  }
}
.button:active > span, .button.active > span {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 2.375rem;
}
@media (min-width: 20rem) {
  .button:active > span, .button.active > span {
    min-height: calc(2.375rem + 0.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .button:active > span, .button.active > span {
    min-height: 2.75rem;
  }
}
.button:active .icon, .button.active .icon {
  fill: #000;
  flex-shrink: 0;
  height: 1.5rem;
  transition: fill 300ms;
  width: 1.5rem;
}
.button:active .text, .button.active .text {
  font-weight: 800;
  font-family: "Assistant", sans-serif;
  padding: 0.3375em 0;
  text-transform: uppercase;
}
.button:active .icon + .text, .button.active .icon + .text {
  padding-left: 0.45em;
}
.button.bottom_spacing {
  margin-bottom: 0.675em;
}

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

/* 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;
}
@media (min-width: 30rem) {
  .bypass_links {
    position: fixed;
  }
}
.bypass_links li {
  display: block;
  width: 20rem;
}
.bypass_links a {
  background: #fff;
  color: #e30613;
  display: inline-block;
  font-size: 85%;
  height: 0.0625rem;
  left: -624.9375rem;
  overflow: hidden;
  padding: 0.3375em;
  position: absolute;
  text-decoration: underline;
  top: -624.9375rem;
  width: 0.0625rem;
}
.bypass_links a:focus {
  color: #e30613;
  height: auto;
  left: 0.3375em;
  top: 0.3375em;
  width: auto;
}

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

header .company_logo {
  width: 9.375rem;
  transition: 300ms;
}
@media (min-width: 20rem) {
  header .company_logo {
    width: calc(9.375rem + 1.4375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  header .company_logo {
    width: 10.8125rem;
  }
}
@media (min-width: 30rem) {
  .scrolled_down header .company_logo {
    width: 3.75rem;
  }
}
@media (min-width: 30rem) and (min-width: 20rem) {
  .scrolled_down header .company_logo {
    width: calc(3.75rem + 3.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 30rem) and (min-width: 93.75rem) {
  .scrolled_down header .company_logo {
    width: 6.875rem;
  }
}

.company_logo {
  width: 9.375rem;
  display: block;
}
@media (min-width: 20rem) {
  .company_logo {
    width: calc(9.375rem + 1.4375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .company_logo {
    width: 10.8125rem;
  }
}

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

.cookie_banner {
  align-items: center;
  background: #000;
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: 0;
  position: fixed;
  right: 0;
  text-align: center;
  z-index: 9000;
  padding-top: 0.675em;
  padding-bottom: 0.675em;
  padding-right: 0.675em;
  padding-left: 0.675em;
}
@media (min-width: 20rem) {
  .cookie_banner {
    padding-top: calc(0.675em + 0.675 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .cookie_banner {
    padding-top: 1.35em;
  }
}
@media (min-width: 20rem) {
  .cookie_banner {
    padding-bottom: calc(0.675em + 0.675 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .cookie_banner {
    padding-bottom: 1.35em;
  }
}
@media (min-width: 20rem) {
  .cookie_banner {
    padding-right: calc(0.675em + 0.675 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .cookie_banner {
    padding-right: 1.35em;
  }
}
@media (min-width: 20rem) {
  .cookie_banner {
    padding-left: calc(0.675em + 0.675 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .cookie_banner {
    padding-left: 1.35em;
  }
}
@media (min-width: 47.5rem) {
  .cookie_banner {
    flex-direction: row;
    text-align: left;
  }
}
.cookie_banner .cookie_headline {
  color: #fff;
  letter-spacing: calc((1.375rem + 0.5 * (100vw - 20rem) / (73.75)) / 1000 * 0);
  font-size: 1.375rem;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 20rem) {
  .cookie_banner .cookie_headline {
    font-size: calc(1.375rem + 0.5 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .cookie_banner .cookie_headline {
    font-size: 1.875rem;
  }
}
.cookie_banner p {
  letter-spacing: calc((0.9375rem + 0.125 * (100vw - 20rem) / (73.75)) / 1000 * 0);
  font-size: 0.9375rem;
  margin: 0;
  width: 100%;
  color: #fff;
  padding-top: 0.3375em;
}
@media (min-width: 20rem) {
  .cookie_banner p {
    font-size: calc(0.9375rem + 0.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .cookie_banner p {
    font-size: 1.0625rem;
  }
}
@media (min-width: 20rem) {
  .cookie_banner p {
    padding-top: calc(0.3375em + 0.3375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .cookie_banner p {
    padding-top: 0.675em;
  }
}
.cookie_banner .links_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 15rem;
}
@media (min-width: 61.875rem) {
  .cookie_banner .links_wrapper {
    min-width: 18.75rem;
  }
}
.cookie_banner .close {
  flex: 1 0 auto;
  margin: 0.675em 0;
  background: rgba(255, 255, 255, 0);
  color: #000;
  border: 0.1875rem solid #fff;
  padding: 0.45em 1.35em;
  text-decoration: none;
  transition: 300ms;
}
.cookie_banner .close:hover {
  background: #fff;
  border-color: #000;
}
.cookie_banner .close:hover .text {
  color: #000;
}
@media (min-width: 47.5rem) {
  .cookie_banner .close {
    margin: 0 0 0.675em 0;
  }
}
.cookie_banner .close .text {
  color: #fff;
  text-transform: uppercase;
  font-family: "Assistant", sans-serif;
  font-weight: 700;
  letter-spacing: calc((1.1875rem + 0.3125 * (100vw - 20rem) / (73.75)) / 1000 * 0);
  font-size: 1.1875rem;
  transition: 300ms;
}
@media (min-width: 20rem) {
  .cookie_banner .close .text {
    font-size: calc(1.1875rem + 0.3125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .cookie_banner .close .text {
    font-size: 1.5rem;
  }
}
.cookie_banner .learn_more {
  color: #fff;
  letter-spacing: calc((0.9375rem + 0.125 * (100vw - 20rem) / (73.75)) / 1000 * 0);
  font-size: 0.9375rem;
}
@media (min-width: 20rem) {
  .cookie_banner .learn_more {
    font-size: calc(0.9375rem + 0.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .cookie_banner .learn_more {
    font-size: 1.0625rem;
  }
}

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

.disclaimer {
  background: #F1F1F1;
  border-radius: 0;
  color: #000;
  font-size: 85%;
  margin: 1.35em 0;
  padding: 0.9em 1.35em;
}
.disclaimer a {
  display: inline;
}

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

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

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

.dropdown_menu {
  display: none;
}
@media (min-width: 75rem) {
  .dropdown_menu {
    align-items: center;
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
  }
}
.dropdown_menu > ul {
  display: flex;
  position: relative;
}
.dropdown_menu > ul > li {
  position: relative;
}
.dropdown_menu > ul > li:last-child a {
  color: #e30613;
}
.dropdown_menu > ul > li:last-child a:before {
  background: #e30613;
}
.dropdown_menu > ul > li:last-child a .text {
  display: none;
}
@media (min-width: 81.25rem) {
  .dropdown_menu > ul > li:last-child a .text {
    display: inline-block;
  }
}
.dropdown_menu > ul > li:last-child a .lock_icon {
  display: inline-block;
  position: relative;
  top: -0.3125rem;
  fill: #e30613;
}
@media (min-width: 81.25rem) {
  .dropdown_menu > ul > li:last-child a .lock_icon {
    display: none;
  }
}
.dropdown_menu > ul > li:hover > a:before, .dropdown_menu > ul > li:hover > a:after, .dropdown_menu > ul > li.hover > a:before, .dropdown_menu > ul > li.hover > a:after {
  right: 0;
}
.dropdown_menu > ul > li:hover > ul, .dropdown_menu > ul > li.hover > ul {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}
.dropdown_menu > ul > li .icon {
  box-sizing: content-box;
  display: inline-block;
  height: 0.625rem;
  padding-left: 0.675em;
  width: 0.625rem;
}
.dropdown_menu > ul > li {
  align-items: center;
  position: relative;
}
.dropdown_menu > ul > li > a {
  align-items: center;
  color: #000;
  display: flex;
  font-family: "Source Sans Pro", sans-serif;
  letter-spacing: calc((1.0625rem + 0.125 * (100vw - 20rem) / (73.75)) / 1000 * 0);
  font-size: 1.0625rem;
  hyphens: none;
  line-height: 1.1;
  position: relative;
  padding: 0.45em 0;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateZ(0);
  white-space: nowrap;
  margin: 0 0.5rem;
}
@media (min-width: 20rem) {
  .dropdown_menu > ul > li > a {
    font-size: calc(1.0625rem + 0.125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .dropdown_menu > ul > li > a {
    font-size: 1.1875rem;
  }
}
@media (min-width: 93.75rem) {
  .dropdown_menu > ul > li > a {
    margin: 0 0.9em;
  }
}
.dropdown_menu > ul > li > a:before {
  background: #000;
  content: "";
  height: 0.1875rem;
  left: 0;
  position: absolute;
  right: 100%;
  transition: right 300ms ease-out;
  z-index: -1;
  bottom: 0;
}
.dropdown_menu > ul > li > a.active:before {
  right: 0;
}
.dropdown_menu > ul > li ul {
  background: #fff;
  padding: 0.7714285714em 0;
  position: absolute;
  visibility: hidden;
  z-index: 1000;
  box-shadow: 0 0 0.3125rem 0 rgba(0, 0, 0, 0.25);
  min-width: 10.625rem;
  opacity: 0;
  transform: translateY(-0.625rem);
  transform-origin: center top;
  transition: opacity 300ms ease-in-out, transform 300ms ease-in-out, visibility 300ms ease-in-out;
  margin-top: 0.675em;
  margin-left: 0.675em;
}
@media (min-width: 20rem) {
  .dropdown_menu > ul > li ul {
    margin-left: calc(0.675em + 0.225 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .dropdown_menu > ul > li ul {
    margin-left: 0.9em;
  }
}
.dropdown_menu > ul > li ul:target {
  visibility: visible;
}
.dropdown_menu > ul > li ul li:hover a, .dropdown_menu > ul > li ul li:focus a, .dropdown_menu > ul > li ul li:active a, .dropdown_menu > ul > li ul li.active a {
  color: #e30613;
}
.dropdown_menu > ul > li ul li:hover a:before, .dropdown_menu > ul > li ul li:focus a:before, .dropdown_menu > ul > li ul li:active a:before, .dropdown_menu > ul > li ul li.active a:before {
  width: 0.8125rem;
}
.dropdown_menu > ul > li ul a {
  color: #000;
  font-family: "Source Sans Pro", sans-serif;
  hyphens: none;
  padding: 0 0.9em;
  margin: 0.3375em 0;
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
  transition: 300ms;
}
.dropdown_menu > ul > li ul a:before {
  background: #e30613;
  bottom: 0;
  content: "";
  height: 0.25rem;
  left: 0;
  position: absolute;
  right: 100%;
  transition: width 300ms ease-out;
  z-index: -1;
  top: 50%;
  transform: translateY(-0.0833333333rem);
  width: 0;
}
.dropdown_menu > ul > li ul a:active, .dropdown_menu > ul > li ul a.active {
  color: #e30613;
}
.dropdown_menu > ul > li ul a:active:before, .dropdown_menu > ul > li ul a.active:before {
  width: 0.8125rem;
}
.dropdown_menu > ul > li ul a:focus {
  outline-offset: -0.125rem;
}
.dropdown_menu > ul > li ul ul {
  left: 100%;
  position: absolute;
  top: -0.675em;
}

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

.footer_overview {
  margin-bottom: 1.35em;
}
@media (min-width: 20rem) {
  .footer_overview {
    margin-bottom: calc(1.35em + 2.7 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .footer_overview {
    margin-bottom: 4.05em;
  }
}
.footer_overview .footer_entries {
  display: flex;
  flex-direction: column;
  background: #dcdcdc;
  position: relative;
  padding-top: 0.675em;
  padding-bottom: 0.675em;
}
@media (min-width: 20rem) {
  .footer_overview .footer_entries {
    padding-top: calc(0.675em + 2.025 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .footer_overview .footer_entries {
    padding-top: 2.7em;
  }
}
@media (min-width: 20rem) {
  .footer_overview .footer_entries {
    padding-bottom: calc(0.675em + 2.025 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .footer_overview .footer_entries {
    padding-bottom: 2.7em;
  }
}
@media (min-width: 35rem) {
  .footer_overview .footer_entries {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }
}
@media (min-width: 61.875rem) {
  .footer_overview .footer_entries {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 0.675em;
  }
}
@media (min-width: 61.875rem) and (min-width: 20rem) {
  .footer_overview .footer_entries {
    padding-left: calc(0.675em + 2.025 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 61.875rem) and (min-width: 93.75rem) {
  .footer_overview .footer_entries {
    padding-left: 2.7em;
  }
}
@media (min-width: 75rem) {
  .footer_overview .footer_entries {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }
}
.footer_overview .footer_entries:before {
  background: #dcdcdc;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  left: 100%;
}
@media (max-width: 61.8125rem) {
  .footer_overview .footer_entries:after {
    background: #dcdcdc;
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    right: 100%;
  }
}
@media (max-width: 34.9375rem), (min-width: 61.875rem) and (max-width: 74.9375rem) {
  .footer_overview .footer_entries .button {
    margin-top: 0.9em;
  }
}
.footer_overview .footer_entries.special_look {
  background: #e30613;
  padding-left: 0;
}
@media (min-width: 61.875rem) {
  .footer_overview .footer_entries.special_look {
    padding-right: 0.675em;
  }
}
@media (min-width: 61.875rem) and (min-width: 20rem) {
  .footer_overview .footer_entries.special_look {
    padding-right: calc(0.675em + 2.025 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 61.875rem) and (min-width: 93.75rem) {
  .footer_overview .footer_entries.special_look {
    padding-right: 2.7em;
  }
}
.footer_overview .footer_entries.special_look:before {
  right: 100%;
  background: #e30613;
  left: inherit;
}
@media (max-width: 61.8125rem) {
  .footer_overview .footer_entries.special_look:after {
    left: 100%;
    background-color: #e30613;
    right: inherit;
  }
}
.footer_overview .footer_entries.special_look div > * {
  color: #fff;
}
.footer_overview .footer_entries.special_look div .small_headline {
  border-color: #fff;
}
.footer_overview .footer_entries.special_look div .button {
  border-color: #fff;
  color: #fff;
}
.footer_overview .footer_entries.special_look div .button:hover {
  background: #fff;
  color: #000;
}
.footer_overview .footer_entries .headline {
  display: block;
  padding-top: 0.5rem;
}

.footer_bottom {
  background: #F1F1F1;
  display: flex;
  flex-direction: column;
  padding-top: 1.35em;
  padding-left: 1.35em;
  padding-right: 1.35em;
  padding-bottom: 1.35em;
  margin-bottom: 1.35em;
}
@media (min-width: 20rem) {
  .footer_bottom {
    padding-top: calc(1.35em + 1.35 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .footer_bottom {
    padding-top: 2.7em;
  }
}
@media (min-width: 20rem) {
  .footer_bottom {
    padding-left: calc(1.35em + 1.35 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .footer_bottom {
    padding-left: 2.7em;
  }
}
@media (min-width: 20rem) {
  .footer_bottom {
    padding-right: calc(1.35em + 1.35 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .footer_bottom {
    padding-right: 2.7em;
  }
}
@media (min-width: 20rem) {
  .footer_bottom {
    padding-bottom: calc(1.35em + 1.35 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .footer_bottom {
    padding-bottom: 2.7em;
  }
}
@media (min-width: 20rem) {
  .footer_bottom {
    margin-bottom: calc(1.35em + 2.7 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .footer_bottom {
    margin-bottom: 4.05em;
  }
}
@media (min-width: 75rem) {
  .footer_bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer_bottom .left_side {
  display: flex;
  margin-top: 0.675em;
}
.footer_bottom .left_side .company_logo {
  display: none;
}
@media (min-width: 47.5rem) {
  .footer_bottom .left_side .company_logo {
    display: block;
  }
}
@media (min-width: 47.5rem) {
  .footer_bottom .left_side .address {
    margin-left: 1.35em;
  }
}
@media (min-width: 47.5rem) and (min-width: 20rem) {
  .footer_bottom .left_side .address {
    margin-left: calc(1.35em + 0.675 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 47.5rem) and (min-width: 93.75rem) {
  .footer_bottom .left_side .address {
    margin-left: 2.025em;
  }
}
.footer_bottom .left_side .address .company_name {
  padding-top: 0;
}
@media (max-width: 24.375rem) {
  .footer_bottom .left_side .address .company_name {
    font-size: 1.125rem;
  }
}
.footer_bottom .left_side .address .addition {
  display: block;
  text-transform: none;
}
.footer_bottom .right_side {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 87.5rem) {
  .footer_bottom .right_side {
    justify-content: space-between;
    flex-direction: row;
  }
}
@media (min-width: 87.5rem) {
  .footer_bottom .right_side .related_links {
    margin-right: 1.35em;
    margin-bottom: 0.675em;
    align-self: flex-end;
  }
}
@media (min-width: 97.5rem) {
  .footer_bottom .right_side .related_links {
    margin-right: 4.05em;
  }
}
.footer_bottom .right_side .footer_nav {
  margin-bottom: 0.675em;
}
@media (min-width: 87.5rem) {
  .footer_bottom .right_side .footer_nav {
    align-self: flex-end;
  }
}
.footer_bottom .right_side a {
  display: flex;
  text-decoration: none;
  margin-top: 0.3125rem;
}
.footer_bottom .right_side a:hover .text:before, .footer_bottom .right_side a.active .text:before {
  right: 0;
}
.footer_bottom .right_side a:hover .icon {
  transform: translateX(0.125rem);
}
.footer_bottom .right_side a .text {
  display: inline-block;
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
}
.footer_bottom .right_side a .text:before {
  background: #000;
  bottom: 0;
  content: "";
  height: 0.0625rem;
  left: 0;
  position: absolute;
  right: 100%;
  transition: right 300ms ease-out;
  z-index: -1;
}
.footer_bottom .right_side a .icon {
  width: 0.9375rem;
  flex-shrink: 0;
  display: inline-block;
  margin-right: 0.675em;
  transition: 300ms ease-out;
}
@media (min-width: 35rem) and (max-width: 74.9375rem) {
  .footer_bottom .right_side ul {
    display: flex;
    flex-wrap: wrap;
  }
  .footer_bottom .right_side ul li {
    margin-right: 1.35em;
  }
}
@media (max-width: 74.9375rem) {
  .footer_bottom .right_side .footer_nav ul {
    margin-top: 1.08em;
  }
}

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

.container {
  margin: 0 auto;
  max-width: 106.25rem;
  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 */

@media (min-width: 30rem) {
  header {
    position: fixed;
    z-index: 150;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
  }
  .scrolled_down header {
    box-shadow: 0 0 0.3125rem 0 rgba(0, 0, 0, 0.25);
  }
}

.logo_nav_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.7714285714em;
  padding-bottom: 0.7714285714em;
}
@media (min-width: 61.875rem) {
  .logo_nav_wrapper {
    padding-top: 1.08em;
    padding-bottom: 1.08em;
  }
}
.logo_nav_wrapper .logo-wrapper {
  display: flex;
}
.logo_nav_wrapper .company_name {
  font-family: "Assistant", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  max-width: 18.75rem;
  align-self: flex-end;
  hyphens: none;
  line-height: 1.25;
  letter-spacing: calc((0.8125rem + 0.4375 * (100vw - 20rem) / (73.75)) / 1000 * 0);
  font-size: 0.8125rem;
  transition: 300ms;
  text-decoration: none;
}
@media (min-width: 20rem) {
  .logo_nav_wrapper .company_name {
    font-size: calc(0.8125rem + 0.4375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .logo_nav_wrapper .company_name {
    font-size: 1.25rem;
  }
}
.scrolled_down .logo_nav_wrapper .company_name {
  letter-spacing: calc((0.8125rem + 0.3125 * (100vw - 20rem) / (73.75)) / 1000 * 0);
  font-size: 0.8125rem;
  max-width: 16.25rem;
}
@media (min-width: 20rem) {
  .scrolled_down .logo_nav_wrapper .company_name {
    font-size: calc(0.8125rem + 0.3125 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .scrolled_down .logo_nav_wrapper .company_name {
    font-size: 1.125rem;
  }
}
.logo_nav_wrapper .nav-wrapper {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 29.9375rem) {
  .logo_nav_wrapper .nav-wrapper {
    flex-direction: row-reverse;
    position: fixed;
    top: 0.675em;
    right: calc(0.9375rem + 2.1875 * (100vw - 20rem) / (73.75));
    z-index: 15;
  }
}
.logo_nav_wrapper .login_link {
  height: 2.75rem;
  padding: 0 0.675em;
  border: 0.125rem solid #e30613;
  background: #fff;
  align-self: center;
  margin-right: 0.675em;
  transition: 300ms;
  display: flex;
  align-items: center;
}
@media (min-width: 30rem) {
  .logo_nav_wrapper .login_link {
    margin-left: 0.675em;
    margin-right: 0;
  }
}
@media (min-width: 75rem) {
  .logo_nav_wrapper .login_link {
    display: none;
  }
}
.logo_nav_wrapper .login_link .icon {
  width: 1.1875rem;
  display: block;
  transition: 300ms;
  align-self: center;
  position: relative;
  top: 0.125rem;
}
.logo_nav_wrapper .login_link:hover {
  background: #e30613;
}
.logo_nav_wrapper .login_link:hover .icon {
  fill: #fff;
}

.startpage_header .startpage_header_entries {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 9.375rem;
  height: 28.125rem;
}
@media (min-width: 20rem) {
  .startpage_header .startpage_header_entries {
    height: calc(9.375rem + 12.5 * (100vw - 20rem) / (27.5));
  }
}
@media (min-width: 47.5rem) {
  .startpage_header .startpage_header_entries {
    height: 21.875rem;
  }
}
@media (min-width: 61.875rem) {
  .startpage_header .startpage_header_entries {
    height: calc(28.125rem + 13.75 * (100vw - 61.875rem) / (13.125));
  }
}
@media (min-width: 75rem) {
  .startpage_header .startpage_header_entries {
    height: 41.875rem;
  }
}
@media (min-width: 61.875rem) {
  .startpage_header .startpage_header_entries {
    align-items: flex-end;
    background-position: center;
  }
}
.startpage_header .startpage_header_entries:before {
  background: rgba(220, 220, 220, 0.8);
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.startpage_header .startpage_header_entries.special_look:before {
  background: rgba(227, 6, 19, 0.6);
}
.startpage_header .startpage_header_entries.special_look:after {
  background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0.6) 75%, rgba(0, 0, 0, 0) 100%);
  content: "";
  height: 45%;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}
.startpage_header .startpage_header_entries.special_look .text-wrapper .box_link > * {
  color: #fff;
}
.startpage_header .startpage_header_entries.special_look .text-wrapper .small_headline {
  border-color: #fff;
}
.startpage_header .startpage_header_entries.special_look .text-wrapper .button {
  border-color: #fff;
  color: #fff;
}
.startpage_header .startpage_header_entries.special_look .text-wrapper .button:hover {
  background: #fff;
  color: #000;
}
.startpage_header .startpage_header_entries .text-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0.9em;
  margin-bottom: 0;
}
@media (min-width: 61.875rem) {
  .startpage_header .startpage_header_entries .text-wrapper {
    padding: 1.35em;
    margin-bottom: 1.35em;
  }
}
@media (min-width: 61.875rem) and (min-width: 61.875rem) {
  .startpage_header .startpage_header_entries .text-wrapper {
    margin-bottom: calc(1.35em + 2.7 * (100vw - 61.875rem) / (13.125));
  }
}
@media (min-width: 61.875rem) and (min-width: 75rem) {
  .startpage_header .startpage_header_entries .text-wrapper {
    margin-bottom: 4.05em;
  }
}
.startpage_header .startpage_header_entries .text-wrapper .box_link {
  text-decoration: none;
  color: #000;
}
.startpage_header .startpage_header_entries .text-wrapper .box_link > * {
  color: #000;
}
.startpage_header .startpage_header_entries .text-wrapper .small_headline {
  font-style: italic;
  border-bottom: 0.0625rem solid #000;
}
@media (max-width: 29.9375rem) {
  .startpage_header .startpage_header_entries .text-wrapper .small_headline {
    font-size: 0.875rem;
  }
}
.startpage_header .startpage_header_entries .text-wrapper .headline {
  display: block;
  margin-bottom: 0.5rem;
  margin-top: 0.625rem;
  letter-spacing: calc((1.5625rem + 1.5625 * (100vw - 20rem) / (73.75)) / 1000 * 0);
  font-size: 1.5625rem;
}
@media (min-width: 20rem) {
  .startpage_header .startpage_header_entries .text-wrapper .headline {
    font-size: calc(1.5625rem + 1.5625 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .startpage_header .startpage_header_entries .text-wrapper .headline {
    font-size: 3.125rem;
  }
}
.startpage_header .startpage_header_entries .text-wrapper .description {
  display: none;
}
@media (min-width: 47.5rem) {
  .startpage_header .startpage_header_entries .text-wrapper .description {
    display: block;
  }
}
@media (min-width: 75rem) {
  .startpage_header .startpage_header_entries .text-wrapper .description {
    width: 70%;
    margin: 0 auto;
  }
}
@media (min-width: 93.75rem) {
  .startpage_header .startpage_header_entries .text-wrapper .description {
    width: 57%;
  }
}
.startpage_header .startpage_header_entries .text-wrapper .button {
  margin-top: 1.6875em;
}
@media (max-width: 34.9375rem) {
  .startpage_header .startpage_header_entries .text-wrapper .button {
    display: none;
  }
}

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

.header_background {
  background-position: center center;
  background-size: cover;
  margin: 0 auto;
  min-height: 11.25rem;
  position: relative;
}
@media (min-width: 20rem) {
  .header_background {
    min-height: calc(11.25rem + 21.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .header_background {
    min-height: 32.5rem;
  }
}
.header_background:after {
  background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0.7) 45%, rgba(0, 0, 0, 0) 100%);
  content: "";
  height: 40%;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}
.header_background:before {
  background: rgba(227, 6, 19, 0.65);
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.header_background .text-wrapper {
  position: absolute;
  bottom: 1.35em;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  padding: 0 0.675em;
}
@media (min-width: 20rem) {
  .header_background .text-wrapper {
    bottom: calc(1.35em + 0.675 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .header_background .text-wrapper {
    bottom: 2.025em;
  }
}
.header_background .text-wrapper .headline,
.header_background .text-wrapper .small_headline {
  color: #fff;
}
.header_background .text-wrapper .small_headline {
  border-color: #fff;
}
.header_background .text-wrapper .headline {
  display: block;
  margin-top: 0.225em;
}

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

.kanzlei_im_netz {
  margin: 0 0 1.35em;
}
.kanzlei_im_netz a:after {
  clear: both;
}
.kanzlei_im_netz a:after, .kanzlei_im_netz a:before {
  content: "";
  display: table;
}
.kanzlei_im_netz .icon {
  border-radius: 0;
  float: left;
  height: 3.75rem;
  margin: 1.875rem 1.875rem 1.875rem 0;
  width: 3.75rem;
}
.kanzlei_im_netz .icon_mobile, .kanzlei_im_netz .icon_mail, .kanzlei_im_netz .icon_video {
  background: #F1F1F1;
  fill: #000;
  padding: 0.3125rem;
}
.kanzlei_im_netz .icon_mobile svg, .kanzlei_im_netz .icon_mail svg, .kanzlei_im_netz .icon_video svg {
  height: 3rem;
  width: 3rem;
}
.kanzlei_im_netz .icon_linkedin {
  width: 4.875rem;
  height: 4.875rem;
}
.kanzlei_im_netz .description {
  display: block;
  overflow: hidden;
}

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

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

body,
.page_wrapper {
  overflow-x: hidden;
}

.small_headline {
  font-style: italic;
  border-bottom: 0.0625rem solid #000;
}
@media (max-width: 29.9375rem) {
  .small_headline {
    font-size: 0.875rem;
  }
}

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

.main-title {
  margin: 0 0 0.3375em;
  display: block;
}

.content_wrapper {
  padding-top: 0.675em;
}
@media (min-width: 20rem) {
  .content_wrapper {
    padding-top: calc(0.675em + 0.675 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .content_wrapper {
    padding-top: 1.35em;
  }
}
@media (min-width: 61.875rem) {
  .immobilien-vermietung .content_wrapper {
    position: relative;
  }
  .immobilien-vermietung .content_wrapper:before {
    background: #F1F1F1;
    height: 40.625rem;
    position: absolute;
    content: "";
    left: -100%;
    width: 300%;
    z-index: -1;
    top: 0;
  }
}

.horizontal_rule {
  background: #F1F1F1;
  height: 0.3125rem;
  border: 0;
  margin: 2.7em 0 1.35em;
}

.introduction {
  background: #F1F1F1;
  position: relative;
  padding-top: 1.35em;
  padding-bottom: 1.35em;
}
@media (min-width: 20rem) {
  .introduction {
    padding-top: calc(1.35em + 2.7 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .introduction {
    padding-top: 4.05em;
  }
}
@media (min-width: 20rem) {
  .introduction {
    padding-bottom: calc(1.35em + 2.7 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .introduction {
    padding-bottom: 4.05em;
  }
}
.introduction:before, .introduction:after {
  background: #F1F1F1;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.introduction:before {
  left: 100%;
}
.introduction:after {
  right: 100%;
}
.introduction .title_zusatz {
  margin-bottom: 0;
}
@media (min-width: 75rem) {
  .introduction .description {
    max-width: 80%;
  }
}
.introduction .button {
  margin-top: 1.6875em;
}

.address_box {
  border: 0.125rem solid #000;
  padding: 1.35em;
}
.startpage .address_box {
  margin-top: 1.35em;
}
@media (min-width: 61.875rem) {
  .address_box {
    border-width: 0.1875rem;
    max-width: 27.5rem;
    margin-left: auto;
    margin-top: 1.25rem;
  }
}
@media (min-width: 93.75rem) {
  .address_box {
    min-width: 25rem;
  }
}
.address_box .contact_wrapper {
  flex-direction: column;
}
@media (min-width: 35rem) {
  .address_box .contact_wrapper {
    flex-direction: row;
  }
  .address_box .contact_wrapper .contact_data {
    margin-top: 0.675em;
  }
}
@media (min-width: 61.875rem) {
  .address_box .contact_wrapper {
    flex-direction: column;
  }
}
.address_box .postal_address {
  margin-top: 0.675em;
}
.address_box p {
  margin-bottom: 0.9em;
}

.immobilien_overview .photo {
  margin-top: 2.025em;
  margin-bottom: 1.35em;
  position: relative;
}
@media (min-width: 20rem) {
  .immobilien_overview .photo {
    margin-top: calc(2.025em + 4.05 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .immobilien_overview .photo {
    margin-top: 6.075em;
  }
}
@media (min-width: 20rem) {
  .immobilien_overview .photo {
    margin-bottom: calc(1.35em + 1.35 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .immobilien_overview .photo {
    margin-bottom: 2.7em;
  }
}
.immobilien_overview .photo .bg_image {
  min-height: 20rem;
  display: flex;
  align-items: center;
  background-position: center;
}
@media (min-width: 20rem) {
  .immobilien_overview .photo .bg_image {
    min-height: calc(20rem + 9.375 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .immobilien_overview .photo .bg_image {
    min-height: 29.375rem;
  }
}
.immobilien_overview .text_wrapper {
  background: rgba(227, 6, 19, 0.8);
  display: inline-block;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 0.675em;
  padding-bottom: 0.675em;
  margin: 2.025em 0;
}
@media (min-width: 20rem) {
  .immobilien_overview .text_wrapper {
    padding-left: calc(1.25rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .immobilien_overview .text_wrapper {
    padding-left: 2.5rem;
  }
}
@media (min-width: 20rem) {
  .immobilien_overview .text_wrapper {
    padding-right: calc(1.25rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .immobilien_overview .text_wrapper {
    padding-right: 2.5rem;
  }
}
@media (min-width: 20rem) {
  .immobilien_overview .text_wrapper {
    padding-top: calc(0.675em + 0.675 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .immobilien_overview .text_wrapper {
    padding-top: 1.35em;
  }
}
@media (min-width: 20rem) {
  .immobilien_overview .text_wrapper {
    padding-bottom: calc(0.675em + 0.675 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .immobilien_overview .text_wrapper {
    padding-bottom: 1.35em;
  }
}
.immobilien_overview .text_wrapper > * {
  color: #fff;
}
.immobilien_overview .text_wrapper p {
  max-width: 38.125rem;
}
.immobilien_overview .symbolfoto {
  position: absolute;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  font-style: italic;
  font-size: 80%;
  display: inline-block;
  padding: 0.3125rem 0.5625rem;
}
@media (min-width: 47.5rem) {
  .immobilien_overview .symbolfoto {
    bottom: 0.675em;
  }
}
.immobilien_overview .grundrisse_entries {
  display: flex;
  flex-direction: column;
}
@media (min-width: 30rem) {
  .immobilien_overview .grundrisse_entries {
    flex-wrap: wrap;
    flex-direction: row;
  }
}
.immobilien_overview .grundrisse_entries a {
  margin-right: 1.35em;
  text-decoration: none;
}
.immobilien_overview .grundrisse_entries a:hover h4 {
  background: #e30613;
  color: #fff;
}
.immobilien_overview .grundrisse_entries h4 {
  background: #dcdcdc;
  letter-spacing: calc((1rem + 0.1875 * (100vw - 20rem) / (73.75)) / 1000 * 0);
  font-size: 1rem;
  display: inline-block;
  padding: 0.3375em 0.675em;
  transition: 300ms;
}
@media (min-width: 20rem) {
  .immobilien_overview .grundrisse_entries h4 {
    font-size: calc(1rem + 0.1875 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .immobilien_overview .grundrisse_entries h4 {
    font-size: 1.1875rem;
  }
}

.tipp_box {
  border: 0.125rem solid #000;
  padding: 1.35em;
  margin-top: 1.35em;
}
@media (min-width: 61.875rem) {
  .tipp_box {
    border-width: 0.1875rem;
    max-width: 27.5rem;
    margin-left: auto;
    margin-top: -3.0375em;
  }
}
@media (min-width: 93.75rem) {
  .tipp_box {
    min-width: 25rem;
  }
}
.tipp_box h2 {
  padding-top: 0;
}

.title_language_wrapper {
  display: flex;
  justify-content: space-between;
}
.title_language_wrapper img {
  height: 1.875rem;
}
@media (min-width: 20rem) {
  .title_language_wrapper img {
    height: calc(1.875rem + 1.25 * (100vw - 20rem) / (73.75));
  }
}
@media (min-width: 93.75rem) {
  .title_language_wrapper img {
    height: 3.125rem;
  }
}
.title_language_wrapper .main-title {
  width: 80%;
}

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

.toggle_offcanvas_menu {
  display: inline-block;
  position: relative;
  align-self: center;
}
@media (min-width: 75rem) {
  .toggle_offcanvas_menu {
    display: none;
  }
}
.toggle_offcanvas_menu label {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  background: #fff;
  border: 0.125rem solid #e30613;
  height: 2.75rem;
  position: relative;
  text-transform: uppercase;
  user-select: none;
  padding: 0 0.675em;
  z-index: 10;
  hyphens: none;
}
@media (max-width: 34.9375rem) {
  .toggle_offcanvas_menu label {
    height: 2.75rem;
    width: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.3375em;
  }
  .toggle_offcanvas_menu label .text {
    display: none;
  }
}
.toggle_offcanvas_menu label .icon {
  height: 0.875rem;
  position: relative;
  width: 1.5rem;
}
@media (min-width: 35rem) {
  .toggle_offcanvas_menu label .icon {
    margin-right: 0.675em;
  }
}
.toggle_offcanvas_menu label .line {
  background: #000;
  display: block;
  height: 0.125rem;
  position: absolute;
  width: 100%;
}
.toggle_offcanvas_menu label .line_1 {
  opacity: 1;
  top: 0;
  transition: top 300ms, transform 300ms;
  visibility: visible;
}
.toggle_offcanvas_menu label .line_2 {
  opacity: 1;
  top: calc(50% - (0.125rem / 2));
  transition: opacity 300ms;
  visibility: visible;
}
.toggle_offcanvas_menu label .line_3 {
  bottom: 0;
  transition: bottom 300ms, transform 300ms;
}
.toggle_offcanvas_menu a {
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.toggle_offcanvas_menu .open_offcanvas_menu {
  display: block;
}
.toggle_offcanvas_menu .close_offcanvas_menu {
  display: none;
}

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

@media (max-width: 74.9375rem) {
  .offcanvas_menu_state:checked ~ .offcanvas_menu_wrapper .offcanvas_menu, .offcanvas_menu_state:target ~ .offcanvas_menu_wrapper .offcanvas_menu {
    opacity: 1;
    transform: scaleX(1);
    visibility: visible;
  }
  .offcanvas_menu_state:checked ~ .offcanvas_menu_wrapper .offcanvas_menu_overlay, .offcanvas_menu_state:target ~ .offcanvas_menu_wrapper .offcanvas_menu_overlay {
    opacity: 1;
    visibility: visible;
  }
}
.offcanvas_menu_state:checked ~ header .toggle_offcanvas_menu label .line_1, .offcanvas_menu_state:checked ~ div .toggle_offcanvas_menu label .line_1, .offcanvas_menu_state:target ~ header .toggle_offcanvas_menu label .line_1, .offcanvas_menu_state:target ~ div .toggle_offcanvas_menu label .line_1 {
  top: calc(50% - (0.125rem / 2));
  transform: rotate(45deg);
}
.offcanvas_menu_state:checked ~ header .toggle_offcanvas_menu label .line_2, .offcanvas_menu_state:checked ~ div .toggle_offcanvas_menu label .line_2, .offcanvas_menu_state:target ~ header .toggle_offcanvas_menu label .line_2, .offcanvas_menu_state:target ~ div .toggle_offcanvas_menu label .line_2 {
  opacity: 0;
  visibility: hidden;
}
.offcanvas_menu_state:checked ~ header .toggle_offcanvas_menu label .line_3, .offcanvas_menu_state:checked ~ div .toggle_offcanvas_menu label .line_3, .offcanvas_menu_state:target ~ header .toggle_offcanvas_menu label .line_3, .offcanvas_menu_state:target ~ div .toggle_offcanvas_menu label .line_3 {
  bottom: calc(50% - (0.125rem / 2));
  transform: rotate(-45deg);
}
.offcanvas_menu_state:checked ~ header .open_offcanvas_menu, .offcanvas_menu_state:checked ~ div .open_offcanvas_menu, .offcanvas_menu_state:target ~ header .open_offcanvas_menu, .offcanvas_menu_state:target ~ div .open_offcanvas_menu {
  display: none;
}
.offcanvas_menu_state:checked ~ header .close_offcanvas_menu, .offcanvas_menu_state:checked ~ div .close_offcanvas_menu, .offcanvas_menu_state:target ~ header .close_offcanvas_menu, .offcanvas_menu_state:target ~ div .close_offcanvas_menu {
  display: block;
}

.offcanvas_menu {
  background-color: rgba(227, 6, 19, 0.95);
  box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.2);
  display: block;
  min-height: 100%;
  opacity: 0;
  padding: 1.35em 0;
  position: absolute;
  transform: scaleX(0);
  transition: opacity 240ms, transform 240ms, visibility 240ms;
  user-select: none;
  visibility: hidden;
  width: 15.625rem;
  z-index: 5000;
  left: 0;
  transform-origin: left;
}
@media (min-width: 30rem) {
  .offcanvas_menu {
    width: 21.875rem;
  }
}
@media (min-width: 35rem) {
  .offcanvas_menu {
    width: 60%;
    padding: 3.645em 0;
  }
}
.offcanvas_menu .offcanvas_menu_content > ul > li {
  padding: 0 1.35em;
  position: relative;
  text-align: center;
}
.offcanvas_menu .offcanvas_menu_content > ul > li > a {
  color: #fff;
  display: inline-block;
  font-family: "Assistant", sans-serif;
  font-size: 112.5%;
  line-height: 1.5714285714rem;
  text-align: center;
  overflow: hidden;
  padding: 0 0.675em;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  margin: 0.225em 0;
  transform: translateZ(0);
}
@media (min-width: 47.5rem) {
  .offcanvas_menu .offcanvas_menu_content > ul > li > a {
    line-height: 2.75rem;
    margin: 0;
  }
}
.offcanvas_menu .offcanvas_menu_content > ul > li > a:before {
  background: #fff;
  bottom: 0;
  content: "";
  height: 0.125rem;
  left: 50%;
  position: absolute;
  right: 50%;
  transition: left 300ms ease-out, right 300ms ease-out;
  z-index: -1;
}
.offcanvas_menu .offcanvas_menu_content > ul > li > a:hover:before, .offcanvas_menu .offcanvas_menu_content > ul > li > a:focus:before, .offcanvas_menu .offcanvas_menu_content > ul > li > a.active:before {
  left: 0;
  right: 0;
}
.offcanvas_menu .offcanvas_menu_content > ul > li > a .icon {
  display: inline-block;
  fill: #fff;
  height: 0.875rem;
  margin-left: 0.3375em;
  width: 0.875rem;
}
.offcanvas_menu .offcanvas_menu_content > ul li.expanded > a:before {
  left: 0;
  right: 0;
}
.offcanvas_menu .offcanvas_menu_content > ul li.expanded > ul {
  display: block;
}
.offcanvas_menu .offcanvas_menu_content > ul ul {
  display: none;
  background: rgba(255, 255, 255, 0.2);
}
.offcanvas_menu .offcanvas_menu_content > ul ul:target {
  display: block;
}
.offcanvas_menu .offcanvas_menu_content > ul ul li:first-child {
  padding-top: 0.675em;
}
.offcanvas_menu .offcanvas_menu_content > ul ul li:last-child {
  padding-bottom: 0.675em;
}
.offcanvas_menu .offcanvas_menu_content > ul ul a {
  color: #fff;
  display: block;
  padding: 0.16875em;
  text-align: center;
  text-decoration: none;
  font-size: 90%;
}
.offcanvas_menu .offcanvas_menu_content > ul ul a.active {
  text-decoration: underline;
}
.offcanvas_menu .offcanvas_menu_content > ul ul ul {
  border-bottom: 0.1875rem solid #d8d8d8;
  border-top: 0.1875rem solid #d8d8d8;
}

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

.offcanvas_menu .offcanvas_menu_content > ul ul {
  display: block !important;
  height: 0;
  margin-bottom: 0;
  overflow: hidden;
  transition: height 600ms;
}

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

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

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

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

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

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

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

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

.open_street_map .map {
  height: 21.875rem;
  background-color: #F1F1F1;
  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(241, 241, 241, 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.35em 2.7em;
  text-align: center;
}
.open_street_map .required_description {
  margin: 1.35em 0 0 0;
}
.open_street_map .plan_route {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 1.35em 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.35em 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.675em;
}
@media (min-width: 47.5rem) {
  .open_street_map .plan_route .select_wrapper {
    margin: 0 1.35em 0 0;
  }
}
@media (min-width: 47.5rem) {
  .open_street_map .plan_route .select_wrapper .select {
    margin-bottom: 0;
  }
}
@media (min-width: 47.5rem) {
  .open_street_map .plan_route .button_wrapper button {
    margin-bottom: 0;
  }
}
.open_street_map .ol-viewport {
  touch-action: pan-y !important;
}
.open_street_map .ol-overlaycontainer-stopevent button {
  align-items: center;
  background: rgba(227, 6, 19, 0);
  border: 0.1875rem solid #000;
  border-radius: 0;
  color: #000;
  display: inline-flex;
  font-weight: 700;
  height: 2.75rem;
  justify-content: center;
  margin: 0;
  padding: 0;
  text-decoration: none;
  transition: background 300ms, border 300ms, color 300ms;
  user-select: none;
  width: 2.75rem;
}
.open_street_map .ol-overlaycontainer-stopevent button:focus {
  background: #000;
  border: 0.1875rem solid #000;
  box-shadow: 0 0 0 0 rgba(227, 6, 19, 0.2);
  color: #fff;
  outline: 0;
}
.open_street_map .ol-overlaycontainer-stopevent button:hover {
  background: #000;
  border: 0.1875rem solid #000;
  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;
  cursor: pointer;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-zoom-out {
  line-height: 1;
  top: 3.375rem;
  cursor: pointer;
}
.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: 3.125rem;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
  text-shadow: 0 0 0.125rem rgba(0, 0, 0, 0.15);
  transform-origin: center right;
  transition: transform 300ms, opacity 300ms;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-attribution ul li {
  align-items: center;
  background-image: none;
  display: flex;
  font-size: 85%;
  margin: 0 0.675em;
  padding: 0;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-attribution ul li a {
  align-items: center;
  display: inline-flex;
  margin: 0 0.3125rem;
}
.open_street_map .ol-overlaycontainer-stopevent .ol-attribution button {
  display: none;
}
.open_street_map.disable_ui .ol-overlaycontainer-stopevent .ol-zoom-in,
.open_street_map.disable_ui .ol-overlaycontainer-stopevent .ol-zoom-out {
  display: none;
}

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

.opening_times .title {
  padding-top: 0.675em;
}
.opening_times .entries {
  display: flex;
  flex-wrap: wrap;
}
.opening_times .entry {
  margin-right: 2.025em;
}

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

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

.team_overview .entry {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 0.675em;
}
@media (min-width: 93.75rem) {
  .team_overview .entry {
    align-items: flex-start;
    flex-direction: row-reverse;
  }
}
.team_overview .title {
  margin: 0;
  padding: 0;
}
.team_overview .photo {
  display: block;
  margin: 0 1.35em 0.675em 0;
  max-width: 8.75rem;
}
.team_overview .photo img {
  display: block;
}
.team_overview .info {
  flex: 1 1 auto;
  margin-bottom: 0.675em;
}

.team_entry .photo {
  margin-bottom: 0.675em;
  max-width: 8.75rem;
}
.team_entry .photo img {
  display: block;
}
.team_entry .info {
  margin-bottom: 0.675em;
}

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

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

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

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

.video_overview .entry,
.video_infolists_overview .entry,
.video_infolist_overview .entry,
.video_tutorial_overview .entry {
  display: inline-block;
}
.video_overview .image,
.video_overview figure,
.video_infolists_overview .image,
.video_infolists_overview figure,
.video_infolist_overview .image,
.video_infolist_overview figure,
.video_tutorial_overview .image,
.video_tutorial_overview figure {
  margin: 0.675em 0;
}
.video_overview .image img,
.video_overview figure img,
.video_infolists_overview .image img,
.video_infolists_overview figure img,
.video_infolist_overview .image img,
.video_infolist_overview figure img,
.video_tutorial_overview .image img,
.video_tutorial_overview figure img {
  width: 100%;
}
.video_overview figcaption,
.video_infolists_overview figcaption,
.video_infolist_overview figcaption,
.video_tutorial_overview figcaption {
  font-size: 100%;
}
.video_overview .video_play,
.video_infolists_overview .video_play,
.video_infolist_overview .video_play,
.video_tutorial_overview .video_play {
  position: relative;
}
.video_overview .video_play .icon,
.video_infolists_overview .video_play .icon,
.video_infolist_overview .video_play .icon,
.video_tutorial_overview .video_play .icon {
  fill: #e30613;
  height: 2.75rem;
  left: 0;
  margin: -1.375rem 0 0 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
}

.video_infolist .button,
.video_tutorial .button {
  margin-bottom: 1.35em;
}

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

.video_preview {
  margin-bottom: 0.675em;
}
.video_preview .entry {
  display: flex;
  margin-bottom: 1.35em;
}
.video_preview figure {
  flex: 0 0 auto;
  margin: 0;
  order: 1;
  padding-right: 1.35em;
}
.video_preview .teaser_text {
  order: 2;
}
.video_preview .video_play {
  position: relative;
}
.video_preview .video_play .icon {
  fill: #e30613;
  height: 2.75rem;
  left: 0;
  margin: -1.375rem 0 0 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
}

.steuernews_preview .video_play {
  position: relative;
}
.steuernews_preview .video_play .icon {
  fill: #e30613;
  height: 2.75rem;
  left: 0;
  margin: -1.375rem 0 0 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
}

