:root {
  --temp-black: #010101;
  --temp-grey: #DADADA;
  --temp-yellow: #F9B000;
  --temp-white: #ffffff
}
body {
  font-family: Montserrat,sans-serif
}
body:before {
  position: absolute;
  z-index: 0;
  content: "";
  height: 30px;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--temp-yellow)
}
body:after {
  position: absolute;
  z-index: 0;
  content: "";
  height: 200px;
  width: 100%;
  top: 0;
  left: 0;
  opacity: .5;
  background: #fff;
  background: -moz-linear-gradient(0deg,rgba(255,255,255,0) 0,#000 100%);
  background: -webkit-linear-gradient(0deg,rgba(255,255,255,0) 0,#000 100%);
  background: linear-gradient(0deg,rgba(255,255,255,0) 0,#000 100%)
}
body .svgContainer {
  pointer-events: none;
  position: absolute;
  top: -21px;
  left: 0;
  height: 311px;
  width: 100%;
  z-index: 0
}
body .svgContainer svg {
  height: 100%;
  width: 100%
}
header {
  position: relative;
  max-width: 1570px;
  width: 100%;
  margin: 0 auto
}
header .topbar {
  background: var(--temp-black);
  position: relative;
  z-index: 1
}
header .topbar ul.topbar-menu li a {
  color: var(--temp-white)
}
header .topbar ul.topbar-menu li:not(:last-child) {
  margin-right: 30px
}
header .topbar ul.topbar-menu li a {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5
}
.header-bar {
  background: var(--temp-white)
}
.hero-img {
  height: 640px
}
.hero-img > div {
  height: 100%
}
.hero-img .img-wrap {
  position: relative;
  height: 100%;
  width: 100%
}
.cover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}
.hero-img .img-wrap:before {
  position: absolute;
  z-index: 2;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: .75;
  background: #000;
  background: -moz-linear-gradient(90deg,#000 0,rgba(29,29,27,.25) 100%);
  background: linear-gradient(90deg,#000 0,rgba(29,29,27,.25) 100%)
}
.banner_content {
  position: absolute;
  width: 100%;
  height: fit-content!important;
  z-index: 150;
  top: calc(50% + 80px);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3
}
.banner_content h1 {
  color: #fff;
  margin-bottom: 10px;
  line-height: 60px;
  font-size: 3.75rem;
  font-weight: 700
}
.banner_content p {
  color: #fff;
  font-size: 1.875rem;
  line-height: 1
}
.hero-img .object-center {
  object-position: center
}
.text-black {
  color: var(--temp-black)
}
.text-white {
  color: var(--temp-white)
}
.text-yellow {
  color: var(--temp-yellow)
}
.bg-grey {
  background: var(--temp-grey)
}
.bg-yellow {
  background: var(--temp-yellow)
}
.bg-black {
  background: var(--temp-black)
}
.text-16 {
  font-size: 16px
}
.text-25 {
  font-size: 25px
}
.text-48 {
  font-size: 48px
}
.w-70 {
  width: 70%
}
.font-bold {
  font-weight: 600
}
.font-black {
  font-weight: 800
}
.font-italic {
  font-style: italic
}
.inline {
  display: inline
}
.text-deco-none {
  text-decoration: none
}
ul {
  margin: 0!important;
  padding: 0!important
}
.banner-container {
  height: 435px;
  border-top: 2px solid var(--temp-blue)
}
.banner-container {
  background-image: url('../images/header-banner.jpg');
  background-position: center;
  background-size: cover
}
.banner-teaser {
  position: relative;
  height: 100%
}
.banner-teaser-box {
  color: var(--temp-white)
}
a:hover {
  color: var(--temp-lightblue-hover)
}
.vehicle-offer-equipmentline {
  min-height: 40px
}
@media only screen and (min-width:40em) {
  .modal-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background-color: rgba(0,0,0,.6);
    opacity: 0;
    visibility: hidden;
    backface-visibility: hidden;
    transition: opacity .3s ease,visibility .3s ease
  }
  .modal-overlay.active {
    opacity: 1;
    visibility: visible
  }
}
.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  background-color: #fff;
  width: 65%;
  max-width: 75rem;
  height: auto;
  padding: 1rem;
  border-radius: 3px;
  opacity: 0;
  overflow-y: auto;
  visibility: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
  backface-visibility: hidden;
  transform: scale(1.2);
  transition: all .3s ease
}
.modal .close-modal {
  position: absolute;
  cursor: pointer;
  top: 5px;
  right: 15px;
  opacity: 0;
  backface-visibility: hidden;
  transition: opacity .3s ease,transform .3s ease;
  transition-delay: 0.2s;
  z-index: 1
}
.modal .close-modal svg {
  width: 1.75em;
  height: 1.75em
}
.modal .modal-content {
  opacity: 0;
  backface-visibility: hidden;
  transition: opacity .3s ease;
  transition-delay: 0.2s
}
.modal.active {
  visibility: visible;
  opacity: 1;
  transform: scale(1)
}
.modal.active .modal-content {
  opacity: 1
}
.modal.active .close-modal {
  transform: translateY(10px);
  opacity: 1
}
.modal-content {
  border: 0
}
.modal-img-toggle {
  cursor: zoom-in
}
@media only screen and (max-width:39.9375em) {
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    border-radius: 0;
    transform: scale(1.1);
    padding: 0!important
  }
  .modal .close-modal {
    right: 20px!important
  }
}
.vehicle-offer-badge-campaign h3 {
  display: inline-block;
  background: red;
  padding: .3rem 1rem;
  color: #fff
}
.vehicle-offer-badge {
  background: var(--temp-yellow);
  color: #fff;
  display: inline-block;
  margin: 0 0 0 -16px;
  padding-top: 5px;
  position: absolute;
  max-width: 320px
}
.vehicle-offer-cta a {
  background: var(--temp-blue);
  border: 0;
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 0.3rem;
  text-decoration: none;
  display: inline-block
}
.vehicle-offer-cta span svg {
  margin-bottom: 4px
}
.vehicle-offer-cta-pdf a {
  background: var(--temp-blue);
  border: 0;
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 0.3rem;
  text-decoration: none;
  display: inline-block
}
.vehicle-offer-cta-pdf span svg {
  margin-bottom: 4px
}
summary {
  text-align: left
}
.vehicle-offer-cards .vehicle-offer-effiency {
  font-size: 14px;
  line-height: 20px;
  height: 96px
}
.vehicle-offer-cards .vehicle-offer-effiency svg {
  margin-top: 10px
}
.vehicle-offer-cards .vehicle-offer-effiency svg {
  margin-top: -2px;
  position: absolute
}
.vehicle-offer-cards .vehicle-offer-image img {
  object-fit: contain;
  height: 380px
}
.vehicle-offer-cards {
  margin-top: 0!important;
  margin-bottom: 2%!important
}
.bg-grey-100 {
  background: #fff
}
.back-to-top {
  background: var(--temp-blue);
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 5px 10px;
  z-index: 100;
  color: #fff;
  border-radius: 0.3rem
}
.back-to-top:hover {
  color: #fff
}
.brand-logo {
  margin-top: -56px
}
.toggleContainerBtn {
  font-size: 3rem;
  font-weight: 900;
  color: #0f4678;
  background: 0 0;
  border: 0
}
.toggleContainerBtn button {
  font-size: 2rem;
  color: #fff;
  background: 0 0;
  border: 0;
  background: #133b84;
  margin-right: 10px;
  box-shadow: 0 3px 6px #d9d6d6;
  padding: 0 10px;
  border: 2px solid #0d285a;
  border-radius: 10px;
  transition: all .3s ease-in
}
.toggleContainerBtn button:hover {
  background: #7a8fb5;
  border: 2px solid #687da3
}
.content {
  display: none
}
.box-product-info-btn {
  background-image: url(assets/media/bg-search.jpg);
  background-repeat: no-repeat
}
.b2b-brand-logo-partner {
  width: 12vw
}
html {
  box-sizing: border-box
}
.temp-button-secondary {
  background: var(--temp-black);
  font-size: .875rem;
  padding: 15px 20px;
  width: 100%;
  border-radius: 10px
}
.temp-button-primary {
  background: var(--temp-yellow);
  font-size: .875rem;
  padding: 15px 20px;
  border-radius: 10px
}
button,
button.btn.btn-primary.btn-lg.AnfrageAbsenden {
  background: var(--temp-yellow);
  border: 0;
  color: #fff;
  padding: .5rem 1rem;
  margin-top: 1.8rem;
  border-radius: 10px
}
.vehicle-offer-cta button {
  width: 100%;
  border-radius: 10px
}
.vehicle-offer-cards button,
.vehicle-offer-cards button.btn.btn-primary.btn-lg.AnfrageAbsenden {
  margin-top: 0
}
.b2b-brand-logo {
  width: 4vw
}
.issue-block {
  background: #ededed;
  padding: 1rem 0 1.5rem 0
}
.lc-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.45);
  z-index: 9999;
  padding: 12px
}
.lc-modal[aria-hidden=false] {
  display: flex
}
.lc-modal__dialog {
  background: #fff;
  max-width: 720px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  padding: 16px 16px 18px;
  position: relative
}
.lc-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: 0;
  background: #000;
  font-size: 19px;
  line-height: 1;
  cursor: pointer
}
.kg-switch {
  align-items: center
}
.kg-tab {
  color: var(--temp-black);
  background: var(--temp-grey);
  padding: .6rem .9rem;
  border-radius: .5rem;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .5rem
}
.kg-tab.is-active {
  background: var(--temp-yellow);
  color: var(--temp-white)
}
.kg-badge {
  font-size: .85em;
  opacity: .8;
  color: var(--temp-black)
}
.kg-tab.is-active .kg-badge {
  color: var(--temp-white)
}
section.vehicle-offer-form-conatiner,
section.vehicle-offers .container-fluid {
  margin-top: 3rem
}
.vehicle-offer-container {
  margin-top: 6%;
  margin-bottom: 6%
}
.scooter-container .vehicle-offer-price span {
  font-size: 3.5rem!important
}
.vehicle-offer-tax {
  margin-bottom: -10px
}
.vehicle-offer-desc {
  padding-left: 3rem
}
.vehicle-offer-cards .card-body {
  border: 1px solid #e9e9e9;
  background: #fff;
  border-radius: 10px
}
footer {
  font-size: .8rem;
  padding: 2rem
}
.vehicle-offer-footer-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center
}
footer ul {
  list-style-type: none
}
.vehicle-offer-footer-column img {
  margin-right: .5rem
}
.vehicle-offer-footer-column {
  border-right: 1px solid #fff;
  padding-left: 20px;
  padding-right: 20px
}
.vehicle-offer-footer-column:first-child,
.vehicle-offer-footer-column:last-child {
  border-right: 0
}
.vehicle-offer-footer-column a {
  color: #fff;
  text-decoration: none
}
hr {
  overflow: visible;
  padding: 0;
  border: none;
  border-top: medium double #dfdfdf;
  color: #d9d9d9;
  text-align: center;
  width: 50%;
  margin: 0 auto
}
.vehicle-offer-current-selection {
  display: inline-block;
  background: var(--temp-yellow);
  color: var(--temp-white);
  padding: .5rem;
  font-size: 1.2rem;
  margin: 1rem 0
}
.form-control {
  border-radius: 0
}
.vehicle-offer-current-selection-wrapper {
  display: flex;
  align-items: center
}
.image-container {
  max-width: 150px
}
button.btn.btn-primary.btn-lg.AnfrageAbsenden {
  margin-top: 3rem;
  margin-bottom: 3rem;
  font-size: 1rem
}
.angebot_anfordern a {
  color: var(--temp-blue);
  font-weight: 600;
  text-decoration: none
}
.vehicle-offer-insurance {
  background: #f5f5f5;
  margin-top: 28px;
  padding: 5px
}
.vehicle-offer-insurance label {
  font-size: 23px
}
.vehicle-offer-insurance .form-check-input {
  margin-top: 10px;
  z-index: 1;
  position: relative
}
.vehicle-offer-insurance label span {
  position: relative;
  color: #a9a9a9;
  margin-left: -31px;
  z-index: 0
}
.b2b-lp-tooltip {
  position: relative;
  margin: 7px 5px 6px 5px;
  text-align: center;
  display: inline-block;
  top: -4px;
  font-weight: 400
}
.b2b-lp-tooltip::after {
  background-color: #333;
  border-radius: 10px;
  color: #fff;
  display: none;
  padding: 10px 15px;
  position: absolute;
  text-align: center;
  z-index: 999;
  font-size: .65rem;
  width: 300px
}
.b2b-lp-tooltip::before {
  background-color: #333;
  content: ' ';
  display: none;
  position: absolute;
  width: 15px;
  height: 15px;
  z-index: 999
}
.b2b-lp-tooltip:hover::after {
  display: block
}
.b2b-lp-tooltip:hover::before {
  display: block
}
.b2b-lp-tooltip.b2b-lp-tooltip-top::after {
  content: attr(data-tooltip);
  top: 0;
  left: 50%;
  transform: translate(-50%,calc(-100% - 10px))
}
.b2b-lp-tooltip.b2b-lp-tooltip-top::before {
  top: 0;
  left: 50%;
  transform: translate(-50%,calc(-100% - 5px)) rotate(45deg)
}
.b2b-lp-tooltip.bottom::after {
  content: 'bottom';
  bottom: 0;
  left: 50%;
  transform: translate(-50%,calc(100% + 10px))
}
.b2b-lp-tooltip.bottom::before {
  bottom: 0;
  left: 50%;
  transform: translate(-50%,calc(100% + 5px)) rotate(45deg)
}
.b2b-lp-tooltip.right::after {
  content: 'right';
  top: 0;
  right: 0;
  transform: translateX(calc(100% + 10px))
}
.b2b-lp-tooltip.right::before {
  top: 50%;
  right: 0;
  transform: translate(calc(100% + 5px),-50%) rotate(45deg)
}
.b2b-lp-tooltip.left::after {
  content: 'left';
  top: 0;
  left: 0;
  transform: translateX(calc(-100% - 10px))
}
.b2b-lp-tooltip.left::before {
  top: 50%;
  left: 0;
  transform: translate(calc(-100% - 5px),-50%) rotate(45deg)
}
.parent {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: repeat(6,1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px
}
.div1 {
  grid-area: 1/1/2/2
}
.div2 {
  grid-area: 1/1/2/2
}
.div3 {
  grid-area: 1/1/2/2
}
.div4 {
  grid-area: 2/1/3/2
}
.div5 {
  grid-area: 3/1/4/2
}
.div6 {
  grid-area: 4/1/5/2
}
.div7 {
  grid-area: 5/1/6/2
}
.div8 {
  grid-area: 6/1/7/2
}
.div9 {
  grid-area: 1/2/2/3
}
.div10 {
  grid-area: 2/2/3/3
}
.div11 {
  grid-area: 3/2/4/3
}
.div12 {
  grid-area: 4/2/5/3
}
.div13 {
  grid-area: 5/2/6/3
}
.div14 {
  grid-area: 6/2/7/3
}
.div15 {
  grid-area: 1/3/2/4
}
.div16 {
  grid-area: 2/3/3/4
}
.div17 {
  grid-area: 3/3/4/4
}
.div18 {
  grid-area: 4/3/5/4
}
.div19 {
  grid-area: 5/3/6/4
}
.div20 {
  grid-area: 6/3/7/4
}
section.vehicle-offers hr:last-child {
  display: none
}
.filter-wrapper-desktop .select {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 250px;
  height: 40px
}
.filter-wrapper-desktop .option {
  padding: 0 30px 0 10px;
  min-height: 40px;
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-right: #cbcbcb solid 1px;
  position: absolute;
  top: 0;
  width: 100%;
  pointer-events: none;
  order: 2;
  z-index: 1;
  transition: background .2s ease-in-out;
  box-sizing: border-box;
  overflow: hidden;
  white-space: nowrap
}
.filter-wrapper-desktop input:checked + label:before {
  transition: background .2s ease-in-out
}
.filter-wrapper-desktop .option:hover,
.filter-wrapper-desktop input:checked + label:hover:before {
  background: var(--temp-yellow);
  color: #fff
}
.filter-wrapper-desktop .select:focus .option {
  position: relative;
  pointer-events: all
}
.filter-wrapper-desktop input {
  opacity: 0;
  position: absolute;
  left: -99999px
}
.filter-wrapper-desktop input:checked + label {
  order: 1;
  z-index: 2;
  background: var(--temp-grey);
  border-top: none;
  position: relative
}
.filter-wrapper-desktop input:checked + label:after {
  content: '';
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--temp-black);
  position: absolute;
  right: 10px;
  top: calc(50% - 2.5px);
  pointer-events: none;
  z-index: 3
}
.filter-wrapper-desktop input:checked + label:hover:after {
  border-top: 5px solid #fff
}
.filter-wrapper-desktop input:checked + label:before {
  position: absolute;
  right: 0;
  height: 40px;
  width: 40px;
  content: '';
  background: var(--temp-grey)
}
.modal-content {
  border: 0
}
a.close-modal svg {
  background: #fff
}
.vehicle-offer-model {
  min-height: 78px
}
@media only screen and (max-width:1400px) {
  section.vehicle-offer-form-conatiner,
  section.vehicle-offers .container-fluid {
    width: 90%
  }
  footer {
    font-size: .7rem
  }
}
@media only screen and (max-width:1200px) {
  .vehicle-offer-price span {
    font-size: 2rem
  }
  .col-4.grid-item.vehicle-offer-container.vehicle-offer-cards {
    width: 50%
  }
}
@media only screen and (max-width:992px) {
  .vehicle-offer-footer-container {
    flex-direction: column
  }
  .vehicle-offer-footer-column {
    border-right: 0;
    padding-bottom: 20px
  }
  .b2b-brand-logo {
    width: 9vw
  }
  .campaign-bg-txt-white {
    line-height: 38px
  }
  .campaign-h2 {
    font-size: 3rem
  }
  .neonText {
    font-size: 8rem
  }
  .campaign-h2 span {
    margin-bottom: -96px
  }
  summary {
    padding: .5em 1em .5em 1em
  }
  .temp-button-secondary {
    padding: 15px 10px
  }
}
@media only screen and (max-width:768px) {
  .banner-teaser-box {
    max-width: 65%
  }
  .vehicle-offer-desc {
    padding-left: 0.8rem;
    padding-top: 2rem;
    padding-bottom: 2rem
  }
  hr {
    width: 95%
  }
  .toggleContainerBtn button {
    font-size: 1.5rem
  }
  .col-4.grid-item.vehicle-offer-container.vehicle-offer-cards {
    width: 100%
  }
}
@media only screen and (max-width:640px) {
  .banner-container {
    height: 229px
  }
}
@media only screen and (max-width:576px) {
  .navbar-claim {
    margin-top: 2rem
  }
  .banner-teaser-box {
    max-width: 90%
  }
  .b2b-brand-logo {
    width: 12vw
  }
  .toggleContainerBtn button {
    font-size: 1rem;
    margin-right: 6px
  }
  button.temp-button-secondary.js-open-installments {
    text-align: left
  }
}
@media only screen and (max-width:414px) {
  .banner-teaser-box {
    padding: 1rem
  }
  .banner-teaser-item {
    padding: 0
  }
  .vehicle-offer-current-selection-wrapper {
    align-items: flex-start;
    flex-direction: column;
    align-content: flex-start
  }
  .toggleContainerBtn {
    display: flex;
    flex-direction: column;
    align-items: center
  }
  .campaign-h2 {
    text-align: center
  }
  .click-campaign {
    text-align: center
  }
  .bg-red-line .campaign-h2 span {
    margin-bottom: -60px
  }
  form .row {
    flex-direction: column
  }
  .banner_content h1 {
    font-size: 2.3rem
  }
  .banner_content p {
    font-size: 1.3rem
  }
}
.no-insurance-wrapper {
  min-height: 75px;
  display: none!important
}
.svg--fill-white {
  fill: #fff
}
.w-50 {
  width: 50%!important
}
.w-40 {
  width: 40%!important
}
.w-34 {
  width: 34%!important
}
.w-30 {
  width: 30%!important
}
.w-20 {
  width: 20%!important
}
.w-13 {
  width: 13%!important
}
.inline-block {
  display: inline-block
}
.btn-disabled {
  opacity: .6;
  cursor: not-allowed
}
.link-delivery a {
    color: #000;
    text-decoration: none;
}
.link-delivery a:hover {
    font-weight: 600;
    color: #000;
}
