:root{
    --liquimoly-blue: #00519e;
    --liquimoly-red: #e2001a;
    --liquimoly-white: #ffffff;
    --liquimoly-black: #000000;
    --liquimoly-grey: #b7b7b7;
    --liquimoly-lightgrey: #F6F6F6;

    
    font-size: 16px;
}
body{
    font-family: 'DIN Pro', Arial, Helvetica, sans-serif;
}
.text-bold{
    font-weight: 600;
}
.text-blue{
    color: var(--liquimoly-blue);
}
.text-white{
    color: var(--liquimoly-blue);
}
.bg-blue{
    background: var(--liquimoly-blue);
}
.bg-lightgrey{
    background: var(--liquimoly-lightgrey);
}
.text-black{
    color: var(--liquimoly-black);
}
.text-2rem {
    font-size: clamp(1.5rem, 2vw, 2.25rem);
}
.text-3rem {
    font-size: clamp(2rem, 2.5vw, 3.75rem);
}
.text-small{
    font-size: 0.875rem;
}
.text-25{
    font-size: 25px;
}
.w-70{
    width: 70%;
}
.w-50{
    width: 50%;
}
.ml-126{
    margin-left: 126px;
}
.-mt-8{
    margin-top: calc(-8px + -1rem) !important;
}
.-mt-90{
    margin-top: -90px; 
}
.rounded {
    border-radius: .313rem !important;
}
.shadow{
    -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .2);
}
.z-100{
    z-index: 100;
}
.z-0{
    z-index: 0;
}
.pos-rel{
    position: relative;
}
.pt-50{
    padding-top: 50px;
}
.pb-50{
    padding-bottom: 50px;
}
footer {
    border-top: 5px solid var(--liquimoly-blue);
}
.w-174{
    width: 174px;
}
@media (min-width: 992px) {
    img.logo{
        height: 4.875rem;
        -webkit-transition: all .35s;
        transition: all .35s;
        width: auto;
    }
}
.banner-container {
    height: 435px;
    border-top: 1px solid var(--liquimoly-grey);
 }
 .banner-container { background-image: url('../media/csm_Slider_ServicePartner_Large_59292c4191.webp'); background-position: center; background-size: cover;z-index: 0;}
  
  .banner-teaser {
    position: relative;
    height: 100%;
 }

footer a{
    text-decoration: none;
}
footer a:hover{
    text-decoration: underline;
}





/* modal-img Zoom Imgage */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: none;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal {
    background: #fff;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    overflow: auto;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.modal.active {
    display: block;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    height: auto;
    width: auto;
    display: block;
    margin: 0 auto;
}

 @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, 0.6);
     opacity: 0;
     visibility: hidden;
     backface-visibility: hidden;
     transition: opacity 0.3s ease, visibility 0.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, 0.1);
   backface-visibility: hidden;
   transform: scale(1.2);
   transition: all 0.3s ease;
 }
 
 .modal .close-modal {
   position: absolute;
   cursor: pointer;
   top: 5px;
   right: 15px;
   opacity: 0;
   backface-visibility: hidden;
   transition: opacity 0.3s ease, transform 0.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 0.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 svg.bi.bi-zoom-in {
   color: #fff;
   background: var(--liquimoly-blue);
   padding: 5px;
   width: 25px;
   height: 25px;
   border-radius: 5px;
}

 /**
  * Mobile styling
  */
 @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;
   }
 }
 
/* Badge */
.vehicle-offer-badge-campaign h3 {
   display: inline-block;
   background: red;
   padding: 0.3rem 1rem;
   color: #fff;
}
.vehicle-offer-badge{
   background: var(--liquimoly-blue);
   color: #fff;
   display: inline-block;
   margin: 0 0 0 -16px;
   padding-top: 5px;
   position: absolute;
    max-width: 350px;
}
.vehicle-offer-cta a {
   background: var(--liquimoly-blue);
   border: 0;
   color: #fff;
   padding: 0.5rem 1rem;
   border-radius: 0.3rem;
   text-decoration: none;
   display: inline-block;
}
.vehicle-offer-cta 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: #f5f5f5;
}
.back-to-top {
   background: var(--liquimoly-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;
 }
/* 3 for 1 campaign */
.no-sponsor {
   background: #fff;
}
.campaign-bg{
   background: rgb(217,217,217);
   background: -moz-linear-gradient(107deg, rgba(217,217,217,1) 0%, rgba(217,217,217,1) 26%, rgba(21,65,146,1) 26%, rgba(14,47,110,1) 100%);
   background: -webkit-linear-gradient(107deg, rgba(217,217,217,1) 0%, rgba(217,217,217,1) 26%, rgba(21,65,146,1) 26%, rgba(14,47,110,1) 100%);
   background: linear-gradient(107deg, rgba(217,217,217,1) 0%, rgba(217,217,217,1) 26%, rgba(21,65,146,1) 26%, rgba(14,47,110,1) 100%);
   filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d9d9d9",endColorstr="#0e2f6e",GradientType=1);
}
.campaign-bg-txt-white{
   color: #fff;
   line-height: 50px;
}
.campaign-h3 {
 font-size: 1.5rem;
}
.campaign-h2 {
 font-size: 5rem;
 font-weight: 800;
 text-shadow: 4px 3px 4px #3d6cc1;
}
.col.campaign-bg-txt-white.campaign-h1 {
 font-size: 6rem;
 margin-top: 74px;
 margin-bottom: 74px;
 font-weight: 900;
 line-height: 110px;
}
.campaign-h1 span {
 font-weight: 400;
 font-size: 1.5rem;
}
/*
i::before {
margin-right: -10px;
font-size: 38px;
color: transparent;
-webkit-text-stroke: 0.8px #ffffff;
animation: glowing 1.2s reverse infinite ease-in-out;
}

i:nth-child(1)::before {
animation-delay: 0;
}
i:nth-child(2)::before {
animation-delay: 0.14s;
}
i:nth-child(3)::before {
animation-delay: 0.21s;
}
i:nth-child(4)::before {
animation-delay: 0.28s;
}
i:nth-child(5)::before {
animation-delay: 0.35s;
}
i:nth-child(6)::before {
animation-delay: 0.42s;
}
i:nth-child(7)::before {
animation-delay: 0.49s;
}
i:nth-child(8)::before {
animation-delay: 0.56s;
}
*/
/* Let's Create Arrow Animation */
@keyframes glowing {
0% {
 opacity: 0;
}
100% {
 opacity: 1;
 filter: drop-shadow(0 0 0 #ffffff) drop-shadow(0 0 1px #ffffff)
   drop-shadow(0 0 2px #ff0000) drop-shadow(0 0 3px #ff0000)
   drop-shadow(0 0 4px #ff0000) drop-shadow(0 0 5px #ff0000);
}
}
.neonText {
color: #fff;
text-shadow:
   0 0 7px #fff,
   0 0 10px #fff,
   0 0 21px #fff,
   0 0 42px #0fa,
   0 0 82px #0fa,
   0 0 92px #0fa,
   0 0 102px #0fa,
   0 0 151px #0fa;
   animation: flicker 1.5s infinite alternate;
}
.neonText {
 font-size: 12rem;
}
@keyframes flicker {
 
 0%, 18%, 22%, 25%, 53%, 57%, 100% {

     text-shadow:
     0 0 4px #fff,
     0 0 11px #fff,
     0 0 19px #fff,
     0 0 40px #0fa,
     0 0 80px #0fa,
     0 0 90px #0fa,
     0 0 100px #0fa,
     0 0 150px #0fa;
 
 }
 
 20%, 24%, 55% {        
     text-shadow: none;
 }    
}
.campaign-h2-color{
color: #133b84;
text-shadow: none;
}
.partner-bg {
 background: #d9d9d9;
}

input[type="radio"][id^="indu-partner-"] {
display: none;
}
.partner-bg label {
padding: 10px;
display: block;
position: relative;
margin: 10px;
cursor: pointer;
text-align: center;
}
.link-delivery a {
    color: #154192;
    text-decoration: none;
}
.link-delivery a:hover {
    font-weight: 600;
    color: #154192;
}
.partner-bg label:before {
background-color: white;
color: white;
content: " ";
display: block;
border-radius: 50%;
border: 1px solid grey;
position: absolute;
top: -5px;
left: -5px;
width: 25px;
height: 25px;
text-align: center;
line-height: 28px;
transition-duration: 0.4s;
transform: scale(0);
left: 26%;
}
.partner-bg label img {
height: 100px;
width: 100px;
transition-duration: 0.2s;
transform-origin: 50% 50%;
object-fit: contain;
background: #fff;
}
/* :checked + label {
border-color: #ddd;
}
:checked + label:before {
content: "✓";
background-color: grey;
transform: scale(1);
}
:checked + label img {
transform: scale(0.9);
box-shadow: 0 0 5px #333;
z-index: -1;
} */
i.bi.bi-plus {
 font-size: 6rem;
}
.campaign-h2 span {
 font-size: 2rem;
 font-weight: 400;
 margin-bottom: -158px;
 position: relative;
 display: block;
}

.toggleContainerBtn{
 font-size: 3rem;
 font-weight: 900;
 color: #0f4678;
 background: none;
 border: 0;
}
.toggleContainerBtn button {
 font-size: 2rem;
 color: #fff;
 background: none;
 border: 0;
 background: #133b84;
 margin-right: 10px;
 box-shadow: 0pc 3px 6px #d9d6d6;
 padding: 0 10px;
 border: 2px solid #0d285a;
 border-radius: 10px;
 transition: all 0.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;
 }
 /*
 .bg-red-line{
   background-image: url(assets/media/bg-red-line.jpg);
   background-repeat: no-repeat;
   background-position: center bottom;
 }*/
.b2b-brand-logo-partner {
   width: 12vw;
}
/* End Campaign*/
html {
   box-sizing: border-box;
 }

header{
   margin-top: 2rem;
   margin-bottom: 2.1rem;
}

button,
button.btn.btn-primary.btn-lg.AnfrageAbsenden{
   background: var(--liquimoly-blue);
   border: 0;
   color: #fff;
   padding: 0.5rem 1rem;
   margin-top: 1.8rem;
   border-radius: 0.3rem;
}
.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;
}


/*.vehicle-offer-image{
   clip-path: polygon(0% 0%, 71.7% 0%, 59.1% 100%, 0% 100%);
   border-right: 5px solid red;
}*/
section.vehicle-offers .container-fluid,
section.vehicle-offer-form-conatiner{
   width: 65%;
   margin-top: 3rem;
}
.vehicle-offer-container {
   margin-top: 6%;
   margin-bottom: 6%;
}
.vehicle-offer-price span {
   font-weight: 600;
   font-size: 3rem;
   line-height: 5rem;
}
.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;
}

.vehicle-offer-footer-container {
   display: flex;
   flex-direction: row;
   flex-wrap: nowrap;
   align-items: stretch;
   justify-content: center;
}

.vehicle-offer-footer-column img {
   margin-right: 0.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(--liquimoly-blue);
   color: #fff;
   padding: 0.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(--liquimoly-blue);
   font-weight: 600;
   text-decoration: none;
}
.vehicle-offer-insurance {
   background: whitesmoke;
   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: darkgrey;
   margin-left: -31px;
   z-index: 0;
}
/*
   Tooltip
*/
.b2b-lp-tooltip {
	position: relative;
    margin: 7px 5px 6px 5px;
    text-align: center;
    display: inline-block;
    top: -4px;
}
.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: 0.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);
}
/*
   End b2b-lp-tooltip
*/
/*
   Grid
*/
.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;
  }

@media only screen and (max-width: 1400px) {
   section.vehicle-offers .container-fluid, section.vehicle-offer-form-conatiner {
      width: 90%;
   }
   footer {
      font-size: 0.7rem;
   }
 }
 @media only screen and (max-width: 1200px) {
   .vehicle-offer-price span {
      font-size: 2.5rem;
  }
   a.modal-img-toggle {
      top: 0px;
   }
   .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;
}
 }
 @media only screen and (max-width: 768px) {
  .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%;
   }
   .col-md-8 {
        width: 100%;
    }
}
@media only screen and (max-width: 640px) {
  .banner-container { height: 229px; }
  .filter-wrapper-desktop input:checked + label:before { height: unset; }
  .ml-126 { margin-left: 10px; }
  .filter-wrapper-desktop.d-flex {
    flex-direction: column;
    align-items: center;
  }
  .w-70 {
    width: 30%;
}
.justify-content-end {
    justify-content: flex-start!important; 
}
.w-50 {
    width: 30% !important;
}

}
 @media only screen and (max-width: 576px) {
   .navbar-claim {
      margin-top: 2rem;
  }
.b2b-brand-logo {
      width: 12vw;
   }
   .toggleContainerBtn button {
      font-size: 1rem;
      margin-right: 6px;
  }
 
}
@media only screen and (max-width: 414px) {

   .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
   }
   .text-3rem {
        font-size: clamp(1.8rem, 2.5vw, 3.75rem);
    }
    .vehicle-offer-insurance .col-5 {
    width: 50%;
}
}
.no-insurance-wrapper {
   min-height: 75px;
   display: none !important;
}
.vehicle-offer-cta-pdf a {
   background: var(--liquimoly-blue);
   border: 0;
   color: #fff;
   padding: 0.5rem 1rem;
   border-radius: 0.3rem;
   text-decoration: none;
   display: inline-block;
}

.vehicle-offer-cta-pdf span svg {
   margin-bottom: 4px;
}




