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

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

.breadcrumbs {
  margin-bottom: 30px;
}
.breadcrumbs .crumb .breadcrumb-text {
  cursor: pointer;
}
.breadcrumbs .crumb .breadcrumb-text.active {
  text-decoration: underline;
  font-weight: bold;
}
.breadcrumbs .crumb .breadcrumb-separator {
  padding: 0 5px;
}

.category-navigation {
  display: flex;
  flex-wrap: wrap;
}
.category-navigation ul {
  margin: 0;
  padding: 0;
  display: inline-flex;
  list-style: none;
}
.category-navigation ul li {
  padding: 10px 25px;
}
.category-navigation ul li:first-of-type {
  padding-left: 0;
}
.category-navigation ul li a {
  font-weight: 600;
  font-size: 18px;
  line-height: -0.9px;
}
.category-navigation ul li a span {
  display: inline-block;
  padding: 0 10px;
}
.category-navigation ul li a.active {
  color: var(--brandPrimary);
}
.category-navigation ul li a.active span {
  display: inline-block;
  border-bottom: 3px solid;
  padding: 0 10px;
}
.category-navigation ul li a :hover {
  color: var(--brandPrimary);
  text-decoration: none;
}
.category-navigation ul li a :hover span {
  display: inline-block;
  border-bottom: 2px solid;
  padding: 0 10px;
}

.info-drawer {
  position: relative;
  float: right;
}
.info-drawer .info-drawer-content {
  position: fixed;
  right: -100%;
  width: 600px;
  transition: right 0.4s ease;
  z-index: 1000;
  overflow-y: auto;
  border-radius: 14px;
  top: 33%;
}
.info-drawer .info-drawer-content .drawer-close-button {
  position: absolute;
  left: 10px;
  font-size: 35px;
  color: white;
  cursor: pointer;
  z-index: 1001;
}
.info-drawer .info-drawer-content .row {
  margin-left: 0;
  margin-right: 0;
}
.info-drawer .info-drawer-content .drawer-left {
  background-color: var(--brandPrimary);
  color: white;
  padding: 20px;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  gap: 10px;
}
.info-drawer .info-drawer-content .drawer-left .phone-hint {
  font-size: 17px;
}
.info-drawer .info-drawer-content .drawer-left .contact-phone {
  font-size: 20px;
  color: white;
  font-weight: 600;
}
.info-drawer .info-drawer-content .drawer-right {
  background-color: white;
  color: black;
  padding: 20px;
  font-size: 12px;
}
.info-drawer .info-drawer-content .drawer-right h5 {
  color: var(--brandPrimary);
  font-size: 17px;
}
.info-drawer .info-drawer-content .drawer-left,
.info-drawer .info-drawer-content .drawer-right {
  transition: background-color 0.3s ease;
}
.info-drawer .drawer-toggle:checked ~ .info-drawer-content {
  right: 0;
}
.info-drawer .info-drawer-toggle-area {
  position: fixed;
  right: -60px;
  z-index: 1001;
  top: 33%;
}
.info-drawer .info-drawer-toggle-area button {
  border: none;
  font: inherit;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--brandPrimary);
  color: white;
  padding: 10px 15px;
}
.info-drawer .info-drawer-toggle-area label {
  display: flex;
  align-items: center;
  float: right;
  width: 144px;
  height: 211px;
  gap: 10px;
  background-image: url("/images/png/contact.png");
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  padding: 10px;
  cursor: pointer;
}
.info-drawer .info-drawer-toggle-area .drawer-close-icon {
  display: none;
}
.info-drawer .info-drawer-toggle-area .drawer-open-label {
  display: inline;
}
.info-drawer .drawer-toggle:checked ~ .info-drawer-toggle-area label .drawer-close-icon {
  display: inline-block;
}
.info-drawer .drawer-toggle:checked ~ .info-drawer-toggle-area label .drawer-open-label {
  display: none;
}
.info-drawer .drawer-toggle:checked ~ .info-drawer-toggle-area {
  display: none;
}
@media (max-width: 1200px) {
  .info-drawer {
    display: none;
  }
}

.main-header {
  width: 100%;
  background: transparent;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
}
.main-header .header-container-lg {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px 20px;
}
.main-header .header-container-lg.scrolled {
  background-color: white;
  box-shadow: 0 0 11px var(--box-shadow);
  border-radius: 0 0 30px 30px;
  transition: background-color 0.5s ease;
}
.main-header .hamburger-menu {
  display: none;
}
.main-header .logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-header .logo-container img {
  width: 100%;
}
.main-header .btn.btn-primary {
  height: auto;
}
.main-header .main-navigation {
  padding: 0 15px;
}
.main-header .main-navigation ul {
  margin: 0;
  padding: 0;
  display: inline-flex;
  list-style: none;
}
.main-header .main-navigation ul li:not(:last-of-type) {
  padding-right: 10px;
}
.main-header .main-navigation ul li a {
  font-weight: 500;
  font-size: 16px;
  color: var(--text-color-main);
}
.main-header .main-navigation ul li a span {
  display: inline-block;
  padding: 0 10px;
}
.main-header .main-navigation ul li a.active {
  color: var(--brandPrimary);
  font-weight: 600;
}
.main-header .main-navigation ul li a.active span {
  display: inline-block;
  border-bottom: 5px solid;
  padding: 0 10px;
}
.main-header .main-navigation ul li a :hover {
  color: var(--brandPrimary);
  text-decoration: none;
}
.main-header .main-navigation ul li a :hover span {
  display: inline-block;
  border-bottom: 2px solid;
  padding: 0 10px;
}

@media (max-width: 1200px) {
  .main-header .header-container-lg {
    display: none;
  }
}
.about-container {
  margin-bottom: 150px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  flex: 100%;
}
.about-container .about-left {
  width: 50%;
  height: 300px;
  position: relative;
  background-color: var(--brandPrimary);
  text-align: right;
  padding-top: 50px;
  padding-bottom: 50px;
  color: white;
  border-top: 25px solid white;
  border-bottom: 25px solid white;
}
.about-container .about-left h1 {
  font-size: 36px;
  font-weight: 600;
}
.about-container .about-left:after {
  content: "";
  display: block;
  position: absolute;
  width: 300px;
  height: 150px;
  background-color: #e6007e;
  border-top-left-radius: 150px;
  border-top-right-radius: 148px;
  border: 25px solid white;
  border-bottom: 0;
  top: 50px;
  right: -225px;
  transform: rotate(90deg);
  z-index: 2;
}
.about-container .about-right {
  position: relative;
  width: 50%;
  background: url("/images/png/about_man.png") no-repeat center;
  background-size: cover;
}
.about-container .about-right a {
  position: absolute;
  top: 30%;
  left: 22%;
  border: 1px solid white;
  padding: 0.75rem 0.95rem;
}

@media (max-width: 1200px) {
  .about-container {
    flex-direction: column;
    background: url("/images/png/fahrzeugbuchung_banner_mobile.jpg") no-repeat center;
    background-size: cover;
    margin-bottom: 100px;
    padding: 40px 20px;
  }
  .about-container .about-left {
    width: 80%;
    height: auto;
    text-align: center;
    border: none;
    background-color: transparent;
  }
  .about-container .about-left:after {
    display: none;
  }
  .about-container .about-right {
    width: fit-content;
    background: none;
  }
  .about-container .about-right a {
    position: initial;
  }
}
.start-welcome-teaser {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 780px;
  background-color: var(--grey-bg-4);
  margin-bottom: 150px;
}
.start-welcome-teaser .start-welcome-teaser-bg.city {
  position: absolute;
  width: 100%;
  height: 110%;
  background: url("/images/png/banner_image.png") no-repeat top right;
  background-size: contain;
  top: 0;
  opacity: 0.5;
  animation: fadeIn 1s forwards;
}
.start-welcome-teaser .start-welcome-teaser-bg.car {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(/images/png/banner_car.png) no-repeat 90% center;
  opacity: 0;
  animation: fadeIn 3s forwards;
}
.start-welcome-teaser .welcome-teaser-intro {
  max-width: 50%;
  position: relative;
  z-index: 1;
}
.start-welcome-teaser .welcome-teaser-intro h4 {
  margin-bottom: 20px;
}
.start-welcome-teaser .welcome-teaser-intro h1 span {
  color: var(--brandPrimary);
}
.start-welcome-teaser .welcome-teaser-intro p {
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 30px;
}
.start-welcome-teaser .welcome-teaser-intro .action-buttons .btn-primary {
  color: white;
  margin-right: 25px;
  line-height: 35px;
}
.start-welcome-teaser .welcome-teaser-intro .action-buttons .btn-outline-primary {
  color: var(--brandPrimary);
  line-height: 35px;
}
.start-welcome-teaser .welcome-teaser-intro .action-buttons .btn-outline-primary:hover {
  color: white;
}
.start-welcome-teaser .search-wrapper {
  display: flex;
  justify-content: center;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@media (max-width: 1200px) {
  .start-welcome-teaser {
    min-height: 90vh;
    background-position: top;
    background-size: auto;
    padding: 150px 0;
    margin-bottom: 100px;
  }
  .start-welcome-teaser .start-welcome-teaser-bg.city {
    height: 100%;
    opacity: 0.4;
  }
  .start-welcome-teaser .start-welcome-teaser-bg.car {
    background-position: left;
    opacity: 0.5;
  }
  .start-welcome-teaser .welcome-teaser-intro {
    max-width: 100%;
    margin-bottom: 50px;
  }
}

.reserve-pickup {
  margin-bottom: 100px;
  scroll-margin-top: 150px;
}
.reserve-pickup h1 {
  text-align: center;
  margin-bottom: 50px;
}
.reserve-pickup h1 span {
  color: var(--brandPrimary);
}
.reserve-pickup .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}
.reserve-pickup .step img {
  width: 100%;
  margin-bottom: 35px;
}
.reserve-pickup .step p {
  text-align: center;
}
.reserve-pickup .step p:not(.small-text) {
  color: var(--brandPrimary);
}
.reserve-pickup .separator-lg {
  display: block;
}
.reserve-pickup .separator-sm {
  display: none;
}
@media (max-width: 991px) {
  .reserve-pickup {
    margin: 100px 0;
    scroll-margin-top: 50px;
  }
  .reserve-pickup .separator-lg {
    display: none;
  }
  .reserve-pickup .separator-sm {
    display: block;
  }
}

.footer {
  padding: 40px 0;
  background-color: #2d3643;
  color: #fff;
}
.footer .footer-row {
  padding: 40px 0 20px 0;
}
.footer .footer-row:first-of-type {
  border-bottom: 1px solid var(--underline-2);
}
.footer .footer-row h4 {
  margin: 15px 0;
}
.footer .footer-row a {
  color: #fff;
}
.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 {
  color: var(--brandPrimary);
  font-weight: bold;
  text-transform: uppercase;
}
.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: #fff;
}
.footer .telephone:hover {
  text-decoration: underline;
}
.footer .opening-time {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
}
.footer .opening-time b, .footer .opening-time span {
  font-size: 14px;
}
.footer .opening-time span {
  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;
}
.footer .social-grid img {
  cursor: pointer;
}

.license-footer {
  min-height: 57px;
  display: flex;
  align-items: center;
  background-color: var(--brandPrimary);
  color: #fff;
  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 {
    height: 77px;
  }
  .license-footer .row {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .license-footer .row .left-side, .license-footer .row .right-side {
    text-align: center;
  }
  .license-footer .row .right-side {
    margin-bottom: 10px;
  }
  .license-footer .row .right-side a:not(:last-child) {
    margin-right: 20px;
  }
}
@media (max-width: 576px) {
  .license-footer {
    height: 90px;
    padding: 15px 0;
  }
}
.product-list {
  padding-top: 150px;
}
.product-list .catalog-navigation-wrapper .static-title {
  margin-bottom: 100px;
}
.product-list .catalog-navigation-wrapper .static-title .sub-text {
  color: var(--brandPrimary);
  text-decoration: underline;
}
.product-list .catalog-navigation-wrapper .category-navigation {
  margin-bottom: 50px;
}
.product-list .grid-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 20px;
  row-gap: 100px;
}
.product-list .grid-body .product-box {
  width: 100%;
}
.product-list .grid-body .product-box .product-tile {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 3px 6px var(--box-shadow);
}
.product-list .grid-body .product-box .product-tile .product-thumbnail-wrapper {
  display: flex;
  justify-content: center;
}
.product-list .grid-body .product-box .product-tile .product-thumbnail-wrapper .product-thumbnail {
  max-height: 225px;
  object-fit: scale-down;
}
.product-list .grid-body .product-box .product-tile .product-info .btn {
  height: auto;
  cursor: auto;
}
.product-list .grid-body .product-box .product-tile .product-info .btn.btn-primary {
  font-weight: 400;
}
.product-list .grid-body .product-box .title-wrapper {
  padding: 10px 20px;
  color: var(--brandPrimary);
}
.product-list .grid-body .product-box:hover {
  text-decoration: none;
}
.product-list .grid-body .product-box:hover .product-tile {
  cursor: pointer;
  box-shadow: 0 0 15px 5px var(--box-shadow);
  text-decoration: none;
}
.product-list .pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}
.product-list .pagination-container .pagination-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
}
.product-list .pagination-container .pagination-more .more-button {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--dark-blue);
  border-radius: 20px;
  margin-bottom: 16px;
}
@media (max-width: 1400px) {
  .product-list .grid-body {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 1200px) {
  .product-list {
    padding-top: 100px;
  }
  .product-list .grid-body {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 770px) {
  .product-list .grid-body {
    grid-template-columns: 1fr;
  }
}

.product-description-tab .tab-list {
  display: flex;
  flex-wrap: wrap;
}
.product-description-tab .tab-list .tab {
  width: fit-content;
  display: flex;
  align-items: center;
  position: relative;
  border: none;
  margin-right: 3px;
  cursor: pointer;
  font-weight: bold;
  padding: 24px 20px;
}
.product-description-tab .tab-list .tab span, .product-description-tab .tab-list .tab a {
  padding: 0 10px;
}
.product-description-tab .tab-list .tab.active span, .product-description-tab .tab-list .tab.active a, .product-description-tab .tab-list .tab:hover span, .product-description-tab .tab-list .tab:hover a {
  text-decoration: none;
  color: var(--brandPrimary);
  border-bottom: 3px solid;
}
.product-description-tab .tab-content {
  width: 100%;
  border: none;
  padding: 20px;
}
.product-description-tab .tab-content .features-tab-data .description {
  white-space: pre-line;
}
.product-description-tab .tab-content .addons-tab-data .price, .product-description-tab .tab-content .currency-symbol {
  font-weight: normal;
  font-size: 16px;
}
.product-description-tab .tab-content table {
  width: 100%;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 16px;
}
.product-description-tab .tab-content table tr td {
  padding: 10px;
  border-top: 1px solid var(--grey-bg-3);
}
.product-description-tab .tab-content table tr td.td-label {
  font-weight: 600;
}
.product-description-tab .tab-content table tr:nth-of-type(odd) td {
  background-color: var(--grey-bg-5);
}
.product-description-tab .tab-content p {
  font-size: 12px;
}
.product-description-tab .tab-content .phone {
  color: var(--brandPrimary);
}
.product-description-tab .tab-content .product-image {
  width: 100%;
  position: relative;
  right: -150px;
  transform: scaleX(-1);
}
.product-description-tab .tab-content > div {
  display: none;
}
.product-description-tab .tab-content > .active {
  display: block;
}

@media (max-width: 1200px) {
  .product-description-tab .tab-content .product-image {
    position: unset;
  }
}
.product-variants-tabs {
  display: flex;
}
.product-variants-tabs .tab-list {
  display: flex;
  flex-direction: column;
}
.product-variants-tabs .tab-list .tab {
  width: fit-content;
  display: flex;
  align-items: center;
  position: relative;
  border: 1px solid var(--underline-3);
  margin-bottom: 3px;
  cursor: pointer;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}
.product-variants-tabs .tab-list .tab span {
  padding: 26px 15px;
}
.product-variants-tabs .tab-list .tab.active {
  background-color: var(--grey-bg-3);
  font-weight: bold;
}
.product-variants-tabs .tab-content {
  width: 100%;
  min-height: 200px;
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.0509803922);
  border: 1px solid #EBEBEB;
  position: relative;
}
.product-variants-tabs .tab-content .variant-data {
  display: none;
  margin: 0 0 100px 0;
  padding: 40px 30px;
}
.product-variants-tabs .tab-content .variant-data.active {
  display: flex;
}
.product-variants-tabs .tab-content .variant-data .about-product-container {
  padding-left: 0;
  padding-right: 100px;
  border-right: 2px solid rgba(112, 112, 112, 0.2);
}
.product-variants-tabs .tab-content .variant-data .about-product-container .about-text {
  font-weight: lighter;
}
.product-variants-tabs .tab-content .variant-data .about-product-container .about-text label {
  margin-bottom: 20px;
}
.product-variants-tabs .tab-content .variant-data .about-product-container .technical-characteristic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
  row-gap: 30px;
}
.product-variants-tabs .tab-content .variant-data .about-product-container .technical-characteristic .characteristic {
  display: flex;
  flex-direction: column;
}
.product-variants-tabs .tab-content .variant-data .about-product-container .technical-characteristic .characteristic .label {
  font-weight: bold;
}
.product-variants-tabs .tab-content .variant-data .about-product-container .technical-characteristic .characteristic .data {
  font-weight: lighter;
}
.product-variants-tabs .tab-content .variant-data .add-product-to-cart-container {
  padding-left: 30px;
  padding-right: 0;
}
.product-variants-tabs .tab-content .consultation-footer {
  width: 100%;
  background-color: var(--underline-2);
  position: absolute;
  bottom: 0;
  padding: 15px 10px 25px 10px;
  color: white;
  margin: 0;
}
.product-variants-tabs .tab-content .consultation-footer .description {
  display: flex;
  border-right: 1px solid rgba(255, 255, 255, 0.63);
}
.product-variants-tabs .tab-content .consultation-footer .description .consultation-tag {
  width: fit-content;
  position: relative;
  background-color: var(--orange);
  padding: 6px;
}
.product-variants-tabs .tab-content .consultation-footer .description .consultation-tag .expert-consultation-text {
  color: white;
  font-size: 14px;
  font-weight: bold;
}
.product-variants-tabs .tab-content .consultation-footer .description .consultation-tag .expert-tag {
  position: absolute;
  left: 20px;
  bottom: -15px;
  padding: 0 10px;
  background-color: white;
}
.product-variants-tabs .tab-content .consultation-footer .description .consultation-tag .expert-tag span {
  font-size: 10px;
  font-weight: bold;
  color: initial;
}
.product-variants-tabs .tab-content .consultation-footer .description .advice-before-buying {
  margin-left: 20px;
  font-size: 12px;
}
.product-variants-tabs .tab-content .consultation-footer .get-advice-button {
  display: flex;
  align-items: center;
}
.product-variants-tabs .tab-content .consultation-footer .get-advice-button span {
  font-weight: bold;
  margin-right: 15px;
}

.product-suggest-selling {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 200px;
}
.product-suggest-selling .suggest-cell {
  flex-grow: 1;
  flex-basis: 350px;
  width: 350px;
  height: 300px;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px;
}
.product-suggest-selling .suggest-cell:not(:first-of-type) {
  background-image: url("/images/png/suggest_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 3px 6px var(--box-shadow);
  border-radius: 10px;
}
.product-suggest-selling .suggest-cell:not(:last-of-type) {
  margin-right: 25px;
  margin-bottom: 25px;
}
.product-suggest-selling .suggest-cell:first-of-type {
  justify-content: center;
}
.product-suggest-selling .suggest-cell:first-of-type .title span {
  color: var(--brandPrimary);
}
.product-suggest-selling .suggest-cell h3 {
  font-weight: bold;
}
.product-suggest-selling .suggest-cell p {
  font-size: 14px;
}
@media (max-width: 1200px) {
  .product-suggest-selling {
    margin-bottom: 100px;
  }
}

.product-cross-selling .grid-head {
  width: 90%;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 5%;
  background-color: #ffffff;
  border-radius: 10px;
  z-index: 1;
  position: relative;
  box-shadow: none;
}
.product-cross-selling .grid-head h1 span {
  color: var(--brandPrimary);
}
.product-cross-selling .grid-body {
  padding-top: 42px;
}
.product-cross-selling .category-navigation {
  justify-content: center;
}

.product-container {
  position: relative;
  min-height: 780px;
  padding: 150px 0;
  background-color: var(--grey-bg-4);
}
.product-container .background-image {
  position: absolute;
  width: 100%;
  height: 110%;
  background: url("/images/png/banner_image_product.png") no-repeat top right;
  background-size: contain;
  top: 0;
  opacity: 0.5;
  animation: fadeIn 1s forwards;
}
.product-container .product-image {
  width: 100%;
  opacity: 0;
  animation: fadeIn 3s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.product-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 500px;
  position: relative;
  z-index: 1;
}
.product-intro .separator-img {
  position: relative;
  left: -30px;
  margin: 30px 0;
}
.product-intro .description {
  white-space: pre-line;
}
.product-intro .contribution-container {
  color: var(--brandPrimary);
}
.product-intro h1 {
  font-size: 36px;
  font-weight: 600;
}
.product-intro p {
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 30px;
}
.product-intro .call-to-action a {
  font-weight: bold;
  color: var(--brandPrimary);
}

.product-details-wrapper {
  margin-bottom: 150px;
}
.product-details-wrapper .product-details {
  width: 90%;
  position: relative;
  top: -100px;
  background-color: #ffffff;
  border-radius: 10px;
  z-index: 1;
  box-shadow: 0 3px 6px var(--box-shadow);
}
.product-details-wrapper .product-details .vehicle-filter-bottom button {
  display: none;
}
.product-details-wrapper .product-details .btn-to-cart {
  position: relative;
  bottom: -35px;
  padding: 0.75rem 3.75rem;
}

@media (max-width: 1200px) {
  .product-details-wrapper {
    margin-bottom: 50px;
  }
}
.main-data-wrapper {
  margin-bottom: 200px;
}

@media (max-width: 1200px) {
  .main-data-wrapper {
    margin-bottom: 100px;
  }
}

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