:root {
  --background: white;
  --background2: #f6f6f6;
  --box-shadow: #00000029;
  --underline: #707070;
  --underline-opacity: #70707059;
  --underline-2: #414141;
  --underline-3: #EBEBEB;
  --grey-bg: #E2E2E2;
  --grey-bg-2: #EDEDED;
  --grey-bg-3: #EFEFEF;
  --grey-bg-4: #F4F4F4;
  --grey-bg-5: #F8F8F8;
  --custom-green: #87B229;
  --custom-red: #E21313;
  --light-blue: #4AC4E6;
  --text: #0F1531;
}

:root {
  --background: white;
  --background2: #f6f6f6;
  --box-shadow: #00000029;
  --underline: #707070;
  --underline-opacity: #70707059;
  --underline-2: #414141;
  --underline-3: #EBEBEB;
  --grey-bg: #E2E2E2;
  --grey-bg-2: #EDEDED;
  --grey-bg-3: #EFEFEF;
  --grey-bg-4: #F4F4F4;
  --grey-bg-5: #F8F8F8;
  --custom-green: #87B229;
  --custom-red: #E21313;
  --light-blue: #4AC4E6;
  --text: #0F1531;
}

/* Tenant 1 (Spranz) theme */
.tenant1 {
  --brandPrimary: #1F2748;
  --brandPrimaryHover: #00548d;
  --brandSecondary: #89cd79;
  --brandSecondaryHover: #75b267;
  --brandTertiary: #89cd79;
  --brandTertiaryHover: #75b267;
  --newAdvertiseBg: #414141;
  --newAdvertiseColor: white;
  --businessAccountBbImg: url("/images/spranz/spranz-business-account-bg.png");
  --rightArrowImg: url("/images/spranz/right-arrow.svg");
}

@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto-Black.ttf") format("truetype");
  font-weight: 900;
}
@font-face {
  font-family: "Barlow";
  src: url("/fonts/Barlow-Thin.ttf") format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "Barlow";
  src: url("/fonts/Barlow-ExtraLight.ttf") format("truetype");
  font-weight: 200;
}
@font-face {
  font-family: "Barlow";
  src: url("/fonts/Barlow-Light.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "Barlow";
  src: url("/fonts/Barlow-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Barlow";
  src: url("/fonts/Barlow-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Barlow";
  src: url("/fonts/Barlow-SemiBold.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "Barlow";
  src: url("/fonts/Barlow-Bold.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Barlow";
  src: url("/fonts/Barlow-ExtraBold.ttf") format("truetype");
  font-weight: 900;
}
body {
  font-size: 16px !important;
  font-family: "Roboto", sans-serif !important;
  color: var(--brandPrimary) !important;
  animation: fadeInAnimation ease 1s;
  scrollbar-gutter: stable;
}
body h1 {
  font-size: 30px;
  font-weight: 900;
}
body h2 {
  font-size: 25px;
  font-weight: bold;
}
body h3 {
  font-size: 20px;
  font-weight: 500;
}
body h4 {
  font-size: 16px;
  font-weight: 900;
}
body .small-text {
  font-size: 12px;
}
body .small-text span, body .small-text div, body .small-text p {
  font-size: 12px;
}
body a {
  cursor: pointer;
  color: var(--brandPrimary);
}
body a:hover {
  color: var(--brandPrimary);
  text-decoration: underline;
}
body input[type=radio] {
  accent-color: var(--brandPrimary);
}
body .error-text {
  color: var(--custom-red);
}
body .primary-color {
  color: var(--brandPrimary);
}
body .primary-color-hover {
  color: var(--brandPrimaryHover);
}
body .primary-bg-color {
  background-color: var(--brandPrimary);
}
body .primary-bg-color-hover {
  background-color: var(--brandPrimaryHover);
}
body .primary-gradient {
  background-image: linear-gradient(90deg, var(--brandPrimary) 50%, rgba(109, 79, 45, 0) 100%);
}
body .secondary-color {
  color: var(--brandSecondary);
}
body .secondary-color-hover {
  color: var(--brandSecondaryHover);
}
body .secondary-bg-color {
  background-color: var(--brandSecondary);
}
body .secondary-bg-color-hover {
  background-color: var(--brandSecondaryHover);
}
body .link-like-text {
  cursor: pointer;
}
body .link-like-text:hover {
  text-decoration: underline;
}
body .arrowed-text {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  padding: 10px 30px 10px 20px;
  clip-path: polygon(0px 0px, 87% 0px, 100% 50%, 87% 100%, 0px 100%);
  cursor: pointer;
  transition: 0.3s ease-in-out;
  background-color: var(--brandSecondary);
  border: 1px solid var(--brandSecondary);
  font-size: 18px;
}
body .arrowed-text:hover {
  color: white;
  text-decoration: none;
  background-color: var(--brandSecondaryHover);
  border: 1px solid var(--brandSecondaryHover);
}
@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1450px !important;
  }
}
:root {
  --background: white;
  --background2: #f6f6f6;
  --box-shadow: #00000029;
  --underline: #707070;
  --underline-opacity: #70707059;
  --underline-2: #414141;
  --underline-3: #EBEBEB;
  --grey-bg: #E2E2E2;
  --grey-bg-2: #EDEDED;
  --grey-bg-3: #EFEFEF;
  --grey-bg-4: #F4F4F4;
  --grey-bg-5: #F8F8F8;
  --custom-green: #87B229;
  --custom-red: #E21313;
  --light-blue: #4AC4E6;
  --text: #0F1531;
}

.header-desktop {
  display: flex;
  align-items: center;
  position: sticky;
  background-color: white;
  box-shadow: 0 10px 20px var(--box-shadow);
  padding-top: 22px;
  height: 175px;
  z-index: 100;
}
.header-desktop .products-submenu {
  position: relative;
}
.header-desktop .dropdown-button {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.header-desktop .dropdown-button .polygon {
  display: block;
  float: right;
  border-color: transparent;
  border-style: solid;
  width: 0;
  height: 0;
  position: relative;
  line-height: 0;
  border-width: 6px 0 6px 10px;
  border-left-color: var(--text);
  margin-left: 24px;
  transform: rotate(0deg);
  transition: transform 0.5s ease;
}
.header-desktop .submenu-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(255, 255, 255, 0.93);
  box-shadow: 0 10px 20px var(--box-shadow);
  min-width: 200px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
  z-index: 1000;
}
.header-desktop .submenu-dropdown .category-item {
  display: block;
  padding: 10px 10px 10px 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.header-desktop .submenu-dropdown .category-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
  text-decoration: none;
}
.header-desktop .submenu-dropdown .category-item h4 {
  text-transform: uppercase;
}
.header-desktop .products-submenu:hover .polygon {
  transform: rotate(90deg);
}
.header-desktop .products-submenu:hover .submenu-dropdown {
  max-height: 400px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  overflow-y: auto;
}
.header-desktop .logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-desktop .logo-container .logo-img-lg {
  width: 100%;
  max-width: 206px;
  min-width: 140px;
}
.header-desktop .right-header-content {
  margin-top: 20px;
}
.header-desktop .right-header-content .action-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-desktop .right-header-content .action-buttons .border {
  margin: 0 20px;
  border: 1px solid var(--underline);
  height: 63px;
}
.header-desktop .right-header-content .action-buttons .action-btn {
  min-width: 62px;
  min-height: 60px;
  text-align: center;
}
.header-desktop .right-header-content .action-buttons .action-btn img {
  width: 30px;
  height: 30px;
}
.header-desktop .menu-container {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  gap: 10px;
}
.header-desktop .menu-container h3 {
  margin: 0;
  cursor: pointer;
  padding: 23px 0;
}
@media (max-width: 991px) {
  .header-desktop {
    display: none;
  }
}

.header-mobile {
  display: none;
}
.header-mobile .mobile-navbar {
  padding: 20px;
  box-shadow: 0 10px 20px var(--box-shadow);
  background-color: white;
  z-index: 100;
  color: var(--text);
  position: relative;
}
.header-mobile .mobile-navbar .mobile-navbar-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
}
.header-mobile .mobile-navbar .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  margin-left: 10px;
}
.header-mobile .mobile-navbar .content .logo-img-sm {
  width: 30vw;
  max-width: 200px;
  min-width: 100px;
}
.header-mobile .mobile-navbar .content .action-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-mobile .mobile-navbar .content .action-buttons .border {
  margin: 0 6px;
  border: 1px solid var(--underline);
  height: 40px;
}
.header-mobile .mobile-navbar .content .action-buttons .action-btn {
  text-align: center;
}
.header-mobile .mobile-navbar .content .action-buttons .action-btn img {
  width: 20px;
  height: 20px;
}
.header-mobile .mobile-navbar .mobile-navbar-search {
  display: block;
  width: 100%;
}
.header-mobile .mobile-navbar .mobile-navbar-collapse {
  position: absolute;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 10px 20px 0 var(--box-shadow);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  padding: 0 20px;
}
.header-mobile .mobile-navbar .mobile-navbar-collapse.show {
  max-height: 1000px;
  opacity: 1;
  transition: max-height 0.5s ease-in, opacity 0.5s ease-in;
  padding: 20px;
}
.header-mobile .mobile-navbar .mobile-navbar-collapse .mobile-menu-item {
  display: block;
  text-decoration: none;
  color: var(--text);
}
.header-mobile .mobile-navbar .mobile-navbar-collapse .mobile-menu-item h3 {
  font-weight: bold;
  font-size: 20px;
  margin: 0 0 20px 0;
}
.header-mobile .mobile-navbar .mobile-navbar-collapse .mobile-menu-item:hover {
  text-decoration: none;
}
@media (max-width: 991px) {
  .header-mobile {
    display: block;
  }
}

.main-header {
  height: 175px;
}
@media (max-width: 991px) {
  .main-header {
    height: 185px;
  }
}

:root {
  --background: white;
  --background2: #f6f6f6;
  --box-shadow: #00000029;
  --underline: #707070;
  --underline-opacity: #70707059;
  --underline-2: #414141;
  --underline-3: #EBEBEB;
  --grey-bg: #E2E2E2;
  --grey-bg-2: #EDEDED;
  --grey-bg-3: #EFEFEF;
  --grey-bg-4: #F4F4F4;
  --grey-bg-5: #F8F8F8;
  --custom-green: #87B229;
  --custom-red: #E21313;
  --light-blue: #4AC4E6;
  --text: #0F1531;
}

.subscribe-business-account {
  position: relative;
}
.subscribe-business-account .background-image {
  position: absolute;
  width: 100%;
  height: 120%;
  background-image: var(--businessAccountBbImg);
  background-repeat: round;
  background-size: cover;
  z-index: -1;
}
.subscribe-business-account .data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 0;
  row-gap: 0;
}
.subscribe-business-account .subscribe-left-container {
  display: flex;
  align-items: center;
  padding: 40px 0;
}
.subscribe-business-account .subscribe-left-container h3, .subscribe-business-account .subscribe-left-container span {
  color: white;
}
.subscribe-business-account .subscribe-left-container .content img {
  margin-right: 12px;
}
.subscribe-business-account .business-right-container .content {
  padding: 40px;
}
.subscribe-business-account .business-right-container .content .business-account-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 14px 14px 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: var(--background);
}
.subscribe-business-account .business-right-container .content .business-account-image img {
  width: 100%;
  max-width: 100px;
}
.subscribe-business-account .business-right-container .content .about-account {
  width: 19vw;
  font-weight: lighter;
}
.subscribe-business-account .business-right-container .content .about-text {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-top: 16px;
}
.subscribe-business-account .business-right-container .content .about-text h3 {
  margin-right: 10px;
  margin-bottom: 0;
}
.subscribe-business-account .business-right-container .content .about-text .right-arrow-image {
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: var(--rightArrowImg);
}

@media (max-width: 990px) {
  .subscribe-business-account .data-grid {
    grid-template-columns: 1fr;
  }
  .subscribe-business-account .background-image {
    display: none;
  }
  .subscribe-business-account .subscribe-left-container {
    padding: 40px 10px;
    background-color: var(--brandSecondary);
  }
  .subscribe-business-account .business-right-container {
    background-color: var(--grey-bg-2);
    padding: 40px 10px;
  }
  .subscribe-business-account .business-right-container .content {
    width: fit-content;
    margin: 0 auto;
    padding: 0;
  }
  .subscribe-business-account .business-right-container .content .about-account {
    width: fit-content;
  }
}
@media (max-width: 400px) {
  .subscribe-business-account .subscribe-left-container, .subscribe-business-account .business-right-container {
    padding: 20px 10px;
  }
  .subscribe-business-account .subscribe-left-container .content .row, .subscribe-business-account .business-right-container .content .row {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.company-advantages {
  margin-top: 100px;
}
.company-advantages .header {
  text-align: center;
  margin-bottom: 50px;
}
.company-advantages .advantage {
  display: flex;
  align-items: center;
  justify-content: center;
}
.company-advantages .advantage span {
  max-width: 150px;
  overflow-wrap: break-word;
  margin-left: 10px;
}
.company-advantages .advantage img {
  width: 58px;
  height: 58px;
}
@media (max-width: 991px) {
  .company-advantages .header {
    text-align: center;
    margin-bottom: 30px;
  }
  .company-advantages .advantage {
    margin-top: 20px;
  }
}

:root {
  --background: white;
  --background2: #f6f6f6;
  --box-shadow: #00000029;
  --underline: #707070;
  --underline-opacity: #70707059;
  --underline-2: #414141;
  --underline-3: #EBEBEB;
  --grey-bg: #E2E2E2;
  --grey-bg-2: #EDEDED;
  --grey-bg-3: #EFEFEF;
  --grey-bg-4: #F4F4F4;
  --grey-bg-5: #F8F8F8;
  --custom-green: #87B229;
  --custom-red: #E21313;
  --light-blue: #4AC4E6;
  --text: #0F1531;
}

.footer {
  padding: 65px 0;
  background-color: var(--grey-bg-2);
  margin-top: 100px;
}
.footer .payment-grid {
  display: grid;
  grid-template-columns: auto auto 1fr;
  column-gap: 20px;
  row-gap: 10px;
}
.footer .information-links {
  width: fit-content;
  display: flex;
  flex-direction: column;
}
.footer .information-links a:not(:last-child) {
  margin-bottom: 10px;
}
.footer .magazin {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.footer .magazin .how-works-text {
  font-weight: bold;
  cursor: pointer;
}
.footer .magazin .separator {
  width: 1px;
  height: 20px;
  background-color: var(--underline);
  margin: 0 15px;
}
.footer .separator {
  width: 100%;
  height: 1px;
  background-color: var(--underline-2);
  margin-top: 15px;
  margin-bottom: 30px;
  opacity: 0.41;
}
.footer .telephone {
  text-decoration: none;
  color: var(--dark-blue);
}
.footer .telephone:hover {
  text-decoration: underline;
}
.footer .opening-time {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
}
.footer .opening-time span {
  font-size: 14px;
  font-weight: lighter;
}
.footer .mobile-charges {
  font-size: 11px;
  font-weight: lighter;
}
.footer .new-jobs-image {
  max-width: 164px;
  max-height: 164px;
}
.footer .social-grid {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  column-gap: 30px;
  row-gap: 10px;
  margin-bottom: 40px;
}
.footer .social-grid img {
  cursor: pointer;
}
@media (max-width: 991px) {
  .footer h3 {
    margin: 20px 0;
  }
}

:root {
  --background: white;
  --background2: #f6f6f6;
  --box-shadow: #00000029;
  --underline: #707070;
  --underline-opacity: #70707059;
  --underline-2: #414141;
  --underline-3: #EBEBEB;
  --grey-bg: #E2E2E2;
  --grey-bg-2: #EDEDED;
  --grey-bg-3: #EFEFEF;
  --grey-bg-4: #F4F4F4;
  --grey-bg-5: #F8F8F8;
  --custom-green: #87B229;
  --custom-red: #E21313;
  --light-blue: #4AC4E6;
  --text: #0F1531;
}

.license-footer {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.license-footer span {
  color: white;
}
.license-footer .right-side {
  text-align: end;
}
.license-footer .right-side a:not(:last-child) {
  margin-right: 47px;
}

@media (max-width: 992px) {
  .license-footer .row {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .license-footer .row .right-side {
    margin-bottom: 15px;
  }
  .license-footer .row .right-side a:not(:last-child) {
    margin-right: 15px;
  }
  .license-footer .row .left-side, .license-footer .row .right-side {
    text-align: start;
  }
}
@media (max-width: 576px) {
  .license-footer {
    padding: 15px 0;
  }
}
.title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 60px 0;
}
.title-container .background-image {
  width: calc(100% + 40px);
  height: 160px;
  position: absolute;
  left: -40px;
  z-index: -1;
}

.impressum-container {
  margin-top: 80px;
}
.impressum-container .contact-information-container {
  padding: 26px 45px;
  margin-bottom: 100px;
}
.impressum-container .contact-information-container .data-wrapper {
  margin-bottom: 40px;
}
.impressum-container .contact-information-container .data-wrapper p {
  color: white;
  margin-bottom: 0;
}
.impressum-container .content-wrapper {
  margin-left: 65px;
}
.impressum-container .content-wrapper h1 {
  margin-bottom: 20px;
}
.impressum-container .content-wrapper p {
  margin-bottom: 100px;
}
@media (max-width: 1200px) {
  .impressum-container .content-wrapper {
    margin-left: 30px;
  }
}
@media (max-width: 991px) {
  .impressum-container .content-wrapper {
    margin-left: 0;
  }
}

/*# sourceMappingURL=impressum.css.map */
