:root {
  --background: #F8F8F8;
  --brand-secondary: #f6f6f6;
  --text: #2D3643;
  --input-bg: #FCFCFC;
  --border: #DCDCDC;
  --box-shadow: #81818129;
  --grey: #6B6981;
  --border-grey: #939596;
  --grey2: #5C5F62;
  --separator: #414141;
  --comment: #425563;
}

/* Tenant 1 (Vogt) theme */
.tenant1 {
  --brandPrimary: #0070C0;
  --brandPrimaryHover: #00548d;
  --logoImg: url("/images/vogt/logo.png");
}

@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
}
@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;
}
body {
  background-color: var(--background) !important;
  color: var(--text) !important;
  font-family: "Poppins", sans-serif !important;
  margin: 0;
  animation: fadeInAnimation ease 2s;
  scrollbar-gutter: stable;
}
@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (min-width: 1200px) {
  body .container {
    max-width: 1400px;
  }
}
body span, body label, body p, body div {
  font-size: 16px;
}
body a {
  color: var(--brandPrimary);
  text-decoration: none;
}
body h1 {
  font-size: 45px;
  font-weight: bold;
}
body .small-text {
  font-size: 14px;
}
body .bordered-background {
  -webkit-box-shadow: 0 0 23px var(--box-shadow);
  -moz-box-shadow: 0 0 23px var(--box-shadow);
  box-shadow: 0 0 23px var(--box-shadow);
  border-radius: 15px;
  background-color: white;
}
body .main-navigation-container {
  width: auto;
  height: 80px;
  -webkit-box-pack: center;
  justify-content: center;
  margin-bottom: 76px;
}
body .btn {
  height: 50px;
  display: flex;
  align-items: center;
  border-radius: 20px;
}
body .form-check {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  padding: 20px;
  border-bottom: 1px solid #DCDCDC;
}
body .form-check:last-child {
  border-bottom: none;
}
body .form-check .type-text {
  margin-left: 20px;
  margin-bottom: 0;
}
body .form-check .type-text .form-check-input, body .form-check .type-text .title, body .form-check .type-text .description {
  cursor: pointer;
}
body .form-check .form-check-input {
  width: 20px;
  height: 20px;
  accent-color: #333;
}

.horizontal-between {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.vertical-between {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container .header-content, .container .header-content-mobile {
  background-color: white;
  box-shadow: 0 6px 30.3px -4px rgba(12, 12, 13, 0.1);
  border-radius: 0 0 48px 48px;
  padding: 30px;
}
.container .header-content-mobile {
  display: none;
}
.container .header-content-mobile .menu-content {
  display: none;
}
.container .header-content-mobile .menu-content.active {
  display: block;
}
.container .header-content {
  display: flex;
  justify-content: space-between;
  height: 100px;
  margin: 0 0 70px;
  align-items: center;
  position: relative;
}
.container .header-content .nav-link {
  color: var(--text);
}
.container .header-content .nav-link:hover {
  text-decoration: none;
}
.container .header-content .center-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.container .header-content .center-container .logo-img {
  width: fit-content;
  transition: all 0.3s ease;
}
.container .header-content .additional-container {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.container .header-content .additional-container .button-container {
  min-width: 24px;
  min-height: 24px;
}
.container .header-content .additional-container .select-container {
  min-width: 53px;
  min-height: 19px;
}
.container .header-content .additional-container img {
  cursor: pointer;
}
.container .header-content .additional-container .border {
  margin: 0 25px;
  border: 1px solid var(--border-grey);
  height: 17px;
}
@media screen and (max-width: 991px) {
  .container .header-content {
    display: none;
  }
  .container .header-content-mobile {
    display: block;
    height: fit-content;
    margin: 0 0 70px;
  }
}

body.search-active .container .header-content .center-container .logo-img {
  width: 100px;
  height: auto;
  transition: all 0.3s ease;
}

.blue-content-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 400px;
  margin-bottom: 120px;
}
.blue-content-wrapper .blue-background {
  width: 80%;
  height: 100%;
  position: absolute;
  background-color: var(--brandPrimary);
  border-radius: 0 50px 50px 0;
}
.blue-content-wrapper .container {
  border-radius: 0 50px 50px 0;
}
.blue-content-wrapper .container h2 {
  font-size: 32px;
  font-weight: 500;
  color: white;
  margin-bottom: 40px;
}
.blue-content-wrapper .container h4 {
  color: white;
  font-weight: 400;
}
.blue-content-wrapper .container img {
  width: auto;
  max-height: 400px;
  position: absolute;
  border-radius: 20px;
  bottom: 0;
}
@media (max-width: 1200px) {
  .blue-content-wrapper {
    min-height: 300px;
  }
  .blue-content-wrapper .blue-background {
    width: 100%;
    border-radius: 0 20px 20px 0;
  }
  .blue-content-wrapper .container {
    border-radius: 0 20px 20px 0;
    padding: 20px 15px;
  }
  .blue-content-wrapper .container h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .blue-content-wrapper .container h3 {
    font-size: 18px;
  }
  .blue-content-wrapper .container img {
    width: 100%;
    border-radius: 10px;
    position: relative;
  }
}

:root {
  --background: #F8F8F8;
  --brand-secondary: #f6f6f6;
  --text: #2D3643;
  --input-bg: #FCFCFC;
  --border: #DCDCDC;
  --box-shadow: #81818129;
  --grey: #6B6981;
  --border-grey: #939596;
  --grey2: #5C5F62;
  --separator: #414141;
  --comment: #425563;
}

.main-footer {
  padding: 200px 0 70px 0;
  background-image: url("/images/main/png/footer-background.png");
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% 100%;
}
.main-footer h3 {
  font-size: 20px;
  color: var(--grey2);
}
.main-footer a {
  color: var(--text);
}
.main-footer .riding-text span {
  color: var(--brandPrimary);
}
.main-footer .payment-grid {
  display: grid;
  grid-template-columns: auto auto 1fr;
  column-gap: 20px;
  row-gap: 10px;
}
.main-footer .information-links {
  width: fit-content;
  display: flex;
  flex-direction: column;
}
.main-footer .information-links a:not(:last-child) {
  margin-bottom: 10px;
}
.main-footer .magazin {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.main-footer .magazin .how-works-text {
  font-weight: bold;
  cursor: pointer;
}
.main-footer .magazin .separator {
  width: 1px;
  height: 20px;
  background-color: var(--separator);
  margin: 0 15px;
}
.main-footer .separator {
  width: 100%;
  height: 1px;
  background-color: var(--separator);
  margin-top: 15px;
  margin-bottom: 30px;
  opacity: 0.41;
}
.main-footer .telephone {
  text-decoration: none;
  color: var(--dark-blue);
}
.main-footer .telephone:hover {
  text-decoration: underline;
}
.main-footer .opening-time {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
}
.main-footer .opening-time span {
  font-size: 14px;
  font-weight: lighter;
}
.main-footer .new-jobs-image {
  max-width: 164px;
  max-height: 164px;
}
.main-footer .social-grid {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  column-gap: 30px;
  row-gap: 10px;
}
.main-footer .social-grid img {
  cursor: pointer;
}
@media (max-width: 991px) {
  .main-footer {
    margin-top: 100px;
    padding: 50px 0 70px 0;
    background-image: none;
    background-color: var(--background);
  }
  .main-footer h3 {
    margin: 20px 0;
  }
}

:root {
  --background: #F8F8F8;
  --brand-secondary: #f6f6f6;
  --text: #2D3643;
  --input-bg: #FCFCFC;
  --border: #DCDCDC;
  --box-shadow: #81818129;
  --grey: #6B6981;
  --border-grey: #939596;
  --grey2: #5C5F62;
  --separator: #414141;
  --comment: #425563;
}

.license-footer {
  display: flex;
  align-items: center;
  font-size: 14px;
  background-color: var(--grey2);
  padding: 20px 0;
}
.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 .left-side, .license-footer .row .right-side {
    text-align: start;
  }
}
@media (max-width: 576px) {
  .license-footer {
    padding: 15px 0;
  }
}
.contact-directions-container .title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
}
.contact-directions-container .contact-form-container {
  width: 100%;
  min-height: 30vw;
  background-color: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 23px var(--box-shadow);
}
.contact-directions-container .location-data-container h4 {
  margin-bottom: 24px;
}
.contact-directions-container .location-data-container p {
  margin-bottom: 0;
}
.contact-directions-container .location-data-container .row {
  margin-bottom: 16px;
}

/*# sourceMappingURL=contact-directions.css.map */
