*{
  box-sizing: border-box;
}
@font-face {
    font-family: 'nexaBlack';
    src: url('fonts/Nexa-Black.woff2') format('woff2'),
        url('fonts/Nexa-Black.woff') format('woff'),
        url('fonts/Nexa-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
  font-family: "nexaBold";
  src: url("fonts/NexaBold.ttf") format("ttf"),
  url("fonts/NexaBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "nexaLight";
  src: url("fonts/NexaLight.ttf") format("ttf"),
  url("fonts/NexaLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "openSansReg";
  src: url("fonts/OpenSansRegular.ttf") format("ttf"),
  url("fonts/OpenSansRegular.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "openSansBold";
  src: url("fonts/OpenSansBold.ttf") format("ttf"),
  url("fonts/OpenSansBold.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


:root {
  --carbon: #333333;
  --sunshine: #f3e63c;
  --pink: #ff00a8;
  --cargomint: #52cdb9;
  --allround-azur: #0066bb;
}


body, html{
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;

  background-color: var(--carbon);

  font-family: 'openSansReg', sans-serif;
  color: var(--carbon);

  display: flex;
  justify-content: center;

  background: linear-gradient(180deg, var(--carbon) 0%, #444444 100%);
}

h1{
  font-size: 20px;
  line-height: 20px;
}
h2{
  font-size: 14px;
  line-height: 14px;
}
h3{
  font-size: 20px;
  line-height: 20px;
}
h4{
  font-size: 16px;
  line-height: 16px;
}
h1, h2, h3, h4{
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-family: "nexaBlack", Arial, sans-serif;
  font-weight: normal;

  hyphens: auto;
  -webkit-hyphens: auto;
}
h1, h2, h3, p, strong, button {
  margin: 0;
  margin-bottom: 10px;
}
strong{
  hyphens: auto;
  -webkit-hyphens: auto;
}
button{
  font-family: "nexaLight";
  cursor: pointer;
}
p a{
  color: var(--sunshine);
  text-decoration: none;
}
p strong {
  font-family: 'openSansBold', sans-serif;
  font-weight: normal;
}

video::-webkit-media-controls {
  display:none !important;
}
video::media-controls {
  display:none !important;
}

#headline{
  padding: 20px 20px 10px 20px;
  z-index: 90;
  display: none;
}

#preloader{
  background-color: rgba(30,30,30,0.3);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);

  width: 100%;


  height: 100%;
  position: fixed;
  z-index: 999;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  color: white;

  flex-direction: column;
}
#preloader img{
  animation-name: pulse;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  margin-bottom: 20px;
}
#preloader p {
  font-family: Arial, sans-serif;
  animation-name: pulse;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-delay: .5s;

  text-transform: uppercase;
}
@keyframes pulse {
  0% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

#overlay{
  display:none;
  z-index: 998;
  position:absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.8);
  /*display: flex;*/
  justify-content: center;
  align-items: center;

  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
}
#overlay td{
  text-align: center;
}

#overlay #overlay-box{
  background-color: white;
  width: 90%;

  max-width: 1400px;
  
  height: calc(95% - 100px);

  margin-top: 100px;


  border-radius: 25px;
  overflow:hidden;

  display: flex;
  flex-direction: column;
  position: relative;

  margin-top: -100px;
  transition: margin .3s ease-in-out;

  overflow-y: auto;
}
#overlay #overlay-box #close-btn{
  font-size: 25px;
  position: absolute;
  right: 15px;
  top: 15px;
  width:30px;
  height:30px;

  z-index: 99;
  cursor: pointer;

  display: flex;
  justify-content: center;
  align-items: center;

  background-color: var(--carbon);
  color:white;

  border-radius: 30px;
  transition: background .3s ease-in-out, color .3s ease-in-out;
}
#overlay #overlay-box #close-btn:hover{
  background-color: var(--sunshine);
  color: var(--carbon);

  transition: background .3s ease-in-out, color .3s ease-in-out;
}
#overlay #overlay-box #offer-text{
  margin: 20px;

  height: 100%;
  /*
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items:flex-start;
  */
}
#overlay #overlay-box #offer-text .offer-text-p {
  margin-bottom: 10px;
  
  width: 100%;
}
#overlay #overlay-box #offer-text ul{
  padding-left: 20px;
}

#overlay #overlay-box img{
  width: 100%;
  height: 300px;
  position: sticky;

  object-fit: cover;
}
#order-special-edition{
  font-size: 12px;
  background-color: var(--pink);
  color: white;
  cursor: pointer;
}
#order-special-edition:hover{
  background-color: var(--sunshine);
  color: var(--carbon);
}
#overlay p, #overlay ul, #overlay a {
  font-size: 14px;
  line-height: 18px;
}
#self-configure{
  border-bottom: 1px dashed var(--carbon);
  cursor: pointer;
}
#self-configure-button{
  cursor: pointer;
}
#overlay h1,
#offer-text-buttons {
  flex-shrink:0;
  width: 100%;
  -webkit-hyphens: none;
  hyphens: none;
}
#alt-link-block{
  width: 100%;
  text-align: center;
  display: inline-block;
}
#self-configure:hover{
  color:var(--sunshine);
  border-bottom: 1px dashed var(--sunshine);
}
.hover-preview{
  display: none;
  position: absolute;
  /*min-width: 250px;*/
  width: calc(100% - 100px);
  /*height: 350px;*/
  border-radius:25px;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0,0,0,0.4);
  z-index: 200;
  /*transition: top .2s ease-in-out, left .2s ease-in-out;*/
  /*pointer-events: none;*/
  transform: translateY(-100%);
}
.hover-preview .previewcontent{
  width: 100%;
  height: 100%;
  /* position: absolute;*/
  top: 0;
  left: 0;
  display: none;
  background-color: white;
}
.previewtext {
  padding: 20px;
}
.hover-preview .previewcontent.visible{
  display: block;
}
.hover-preview .previewcontent div{
  font-size: 90%;
  display: block;
}
.previewtext h4 span {
  display: none;
}
.hover-preview .previewcontent div ul{
  padding: 0 0 0 20px;
  
}

.hover-preview .previewcontent div a{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed var(--sunshine);
}
.hover-preview .previewcontent img{
  object-fit: cover;
  width: 100%;
}

.wrapper{
  /*
  top: 100%;
  */
  position: relative;
  width: 100%;
  /*
  max-width: 1400px;
  */
  max-width: 1920px;

  display: flex;
  flex-direction: column;

  border-radius: 25px 25px 0 0;
  overflow: hidden;
  margin: 90px 10px 0px 10px;

  box-shadow: 0 0 20px rgba(0,0,0,0.3);

  transition: top 1s ease-in-out;
  box-shadow: 0 10px 50px rgb(from var(--sunshine) r g b / 10%);

}

#backtospecial{
  position: absolute;
  /*
  bottom: -30px;
  right: 30px;
  */

  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;

  top:-50px;
  right: 10px;
  bottom: auto;

  background-color: white;
  color: var(--carbon);
  border-radius: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  overflow: hidden;
  z-index: 999;
  max-width:30px;
  height: 30px;
  transition: max-width .5s ease-in-out,
              bottom .3s ease-out .2s,
              top .3s ease-in;

  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,.3);
}

#backtospecial.active{
  max-width:30px;
  /*bottom: 30px;*/
  top: 10px;
  transition: max-width .5s ease-in-out,
              bottom .3s ease-in,
              top .3s ease-in;
}

#backtospecial.over,
#backtospecial.active.over {
  max-width: 100%;
  transition: max-width .5s ease-in-out, bottom .3s ease-in;
}
#backtospecial #icon{
  flex-shrink: 0;
  background-color: var(--pink);
  color: white;
  
  height: 30px;
  width: 30px;
  margin: 0;
  text-align: center;
  font-size: 22px;
  font-family: 'nexaBlack';
  border-radius: 25px;

  animation-name: bounce;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  
  fill: var(--pink);
}
@keyframes bounce {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.6);
  }

  100% {
    transform: scale(1);
  }
}
#backtospecial span{
  flex-shrink: 0;
  margin: 5px 10px;
  font-size: 80%;
}
#support{
    position: fixed;
    bottom: 95px;
    top: auto;
  
    
    right: -300px;
    height: auto;
    z-index: 999;
    display: flex;
    
    background-color: white;
    border-radius: 100px 0 0 100px;
    box-shadow: 0 5px 20px rgba(0,0,0,.5);
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    transition: right .3s ease-in-out;
}
#support.active{
  right: -200px;
}
#support:hover,
#support.open{
  right: 0px;
  transition: right .3s ease-in-out;
}
#support span{
  margin: 10px 10px 10px 15px;
  width: 175px;
  font-size: 80%;
}
#support span a,
#support span a:visited{
  color:inherit;
  text-decoration: none;
  border-bottom:1px dashed var(--carbon); 
}

#support img{
  background-color: var(--sunshine);
  padding: 15px;
  
  height: 90px;
  object-fit: fill;
}


section{
  display: flex;
  flex-direction: column-reverse;
  background-color: white;

  justify-content: flex-end;

  z-index: 99;
  position: relative;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;

  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);

}

article{
  width: 100%;
  /*
  height: 45vh;
  height: 300px;
  */
  background-color: white;
  position: relative;

  display: flex;
  flex-direction: column;

}
article .image-container{
  display: none;
  width: 100%;
  height: 100%;
  
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #eeeeee;

}
article .image-container img,
article .image-container picture,
article .image-container video {
  width: 100%;
  height: 100%;
  object-fit:cover;

  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

article .image-container .img-options {

  z-index: 1;

}

article .image-container .img-options.visible {
  z-index: 99;

  animation-name: zoom;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-direction: alternate;

}
@keyframes zoom {
  0% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.1) rotate(2deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

.summary{
  position: relative;
  width: 100%;

  background-color: var(--sunshine);

  color: var(--carbon);
  z-index: 4;

  padding: 20px;

  display: flex;
  justify-content:space-between;
  align-items: flex-start;

  flex-direction: row;

  box-shadow: 0 0 30px rgba(0,0,0,0.3);

  overflow-x: auto;
  overflow-y: hidden;
  flex-shrink: 0;

}
.summary p{
  margin: 0px;
}
.summary p.plus{
  display: none;
  width: 10px;
  height: 10px;
  margin:0px;
  background-color: white;
  color: var(--carbon);

  border-radius: 20px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;

}

.summary #delivery-price{
  font-family: "openSansBold";
  font-weight: normal;
}
.summary #totalPrice,
.summary #options-costs,
.summary #battery-buying-costs {
  font-size: 12px;
  line-height: 12px;
  text-align: left;
}
.summary #totalPrice{
  margin-right: 5px;
  
}
.summary #options-costs {
  margin-right: 5px;
  margin-left: 5px;
}
.summary #battery-buying-costs{
  margin-left: 5px;
}
.summary #battery-buying-costs .small,
.summary #totalPrice .small,
.summary #options-costs .small {
  font-size: 10px;
  line-height: 12px;
  display:inline-block;
}
.summary #battery-buying-costs strong,
.summary #totalPrice strong,
.summary #options-costs strong {
  margin-bottom: 5px;
  display: block;
  font-weight: normal;
  font-family: "nexaBold", Arial, sans-serif;
  white-space:nowrap;
}

#receipt #selected-rate-items,
#receipt #selected-fixed-items,
#receipt #selected-options-items,
#receipt #selected-battery-items {
  font-size: 12px;
  line-height: 16px;
}
#receipt{
  transform: rotate(-3deg) translateY(10px);
  

  min-width: 350px;
  position: absolute;

  background-image: url("../img/paper.jpg");
  background-size: cover;
  background-repeat: repeat-y;
  z-index: 5;

  max-height: calc(100% - 40px);
  overflow: hidden;

  padding: 20px 20px 60px 20px;
  bottom: -20px;
  left: 40px;
  box-shadow: 0 8px 10px rgba(0,0,0,0.4);

  display: none;

  transition: max-height .3s ease-in-out, bottom .3s ease-in;
}
#receipt #list-wrapper{
  overflow-y: auto;
  max-height: 320px;
  position: relative;
  display: block;
}

#receipt .summe{
  font-family: 'openSansBold', sans-serif;
  border-top: 1px dashed var(--carbon);
}
#receipt.closed{
  max-height: 60px;
  transition: max-height .3s ease-in-out, bottom .2s ease-in;
}
#receipt.bounce{
  bottom:0px;
  transition: bottom .3s ease-out;
}
#receipt #receipt-showhide{
  background-color: var(--pink);
  color: white;
  text-transform: uppercase;
    padding: 5px 10px 8px 15px;
    border-radius: 0 0 0px 20px;
    top: 0;
    right: 0;
    position: absolute;
}
#receipt #receiptheadline {
  font-size: 12px;
  line-height: 16px;
  margin: 0 0 10px 0;
  /*border-bottom: 1px dashed var(--carbon);*/
  display: block;
  padding-bottom: 10px;
  font-family: "nexaLight", Arial, sans-serif;
  font-weight: normal;
  text-align: right;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
}
#receipt small{
  font-size: 12px;
  line-height: 16px;
}
#receipt strong{
  font-family: 'openSansBold', sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: var(--pink);
}

#receipt > div {
  margin: 0px;
}


#receipt #selected-rate-items ul,
#receipt #selected-fixed-items ul,
#receipt #selected-options-items ul,
#receipt #selected-battery-items ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#receipt #selected-rate-items ul li,
#receipt #selected-fixed-items ul li,
#receipt #selected-options-items ul li,
#receipt #selected-battery-items ul li {
  display: flex;
 justify-content: space-between;
}

#receipt li span:first-child{
  text-overflow: ellipsis;
  max-width: 250px;
  overflow: hidden;
  white-space: nowrap;
}
.sales-question {
  opacity:0;
  width:0;
  height:0;
  overflow:hidden;
}
#receipt #gesamtsumme{
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  line-height: 16px;
  border-top: 1px dashed var(--carbon);
  padding-top:5px;
}

aside {
  width: 100%;
  height: 100%;
  position: relative;
  
  background-color: white;
  box-shadow: 0 0 30px rgba(0,0,0,.3);

  padding: 20px;
  z-index: 100;

  overflow-y: auto;
  overflow-x: hidden;

  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;

  padding-right: 20px;

}

/*
aside::before{
  z-index: 999;
  content: '';
  display: block;
  height: 40px;
  width: 330px;
  position: fixed;
  bottom: 0px;
  background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
*/




aside #scroller{

  min-width: 100%;
  display: flex;
  flex-wrap: nowrap;
  transition: margin .3s ease-in-out;

  -webkit-overflow-scrolling: touch;
  border-top-right-radius : 25px;

  height: 100%;

}
aside #scroller .page{
  width: 100%;
  display: inline-block;



}
aside #scroller #page-1{
  display: block;
}
aside #scroller #page-2,
aside #scroller #page-3 {
  display: none;

  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}


/*
aside #scroller #page-2 #back{
  background-color: var(--sunshine);
  color: var(--carbon);
  padding: 10px 20px;
  border-radius: 25px;
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: "nexaLight";
  cursor: pointer;
}*/


aside #scroller .page form input,
aside #scroller .page form textarea {
  width: 100%;
  border-radius: 25px;
  border: 1px solid var(--carbon);
  color: var(--carbon);
  padding: 15px 20px;
  margin: 10px 0;
  background-color: white;
  font-family: 'openSansReg', sans-serif;
  font-size: inherit;
  text-align: center;
  transition: background .3s ease-in-out;
}
aside #scroller .page form input:hover,
aside #scroller .page form textarea:hover {
  background-color: #eee;
  transition: background .3s ease-in-out;
}

form input[type="checkbox"]{
  display: inline;
  width: 20px!important;
  margin: 0 5px 0 0!important;
}
form p {
  font-size: 14px;
  line-height: 18px;
}
.row-2 a, form p a, aside a{
  color: var(--carbon);
  border-bottom: 1px dashed var(--sunshine);
  padding-bottom: .5px;

  transition: border .3s ease-in-out;
}
.seleced .row-2 a, aside .selected a{
  border-color: var(--carbon) !important;
}

#allround.selected a,
#basevehicle.selected a {
  border-color: white !important;
  color: white !important;
}

.row-2 a:hover, form p a:hover, aside a:hover{
  border-color: var(--carbon);
  transition: border .3s ease-in-out;
}
label {
  margin: 0 0 20px 0;
  display: inline-block;
  font-size: 14px;
  line-height: 18px;
}
input::placeholder,
textarea::placeholder {
  color: var(--carbon);
}

.custom-select {
  font-family: 'openSansReg', sans-serif;
  position: relative;
  width: 100%;
  border-radius: 35px;
  border: 1px solid var(--carbon);
  color: var(--carbon);
  padding: 5px;
  margin: 10px 0;
  background-color: white;

}
.custom-select select {
  display: none; /*hide original SELECT element: */
}
/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #333 transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div, .select-selected {
  color: var(--carbon);
  padding: 8px 16px;

  cursor: pointer;
  text-align: center;
}

/* Style items (options): */
.select-items {
  position: absolute;

  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;

  border-radius: 25px;
  background-color: #eeeeee;
  overflow: hidden;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: var(--sunshine);
}

#shelvecover-49, #shelvecover-75, #shelvecover-140 {
  margin-left: 30px;
}


button{
  width: 100%;
  min-height: 50px;
  padding: 10px 20px;
  border: 0;
  
  border-radius: 25px;
  text-transform: uppercase;
  font-size: inherit;

  background-color: var(--sunshine);
  color: var(--carbon);

  transition: background .3s ease-in-out, color .3s ease-in-out;
}
button:hover{
  background-color: var(--carbon);
  color: white;
  transition: background .3s ease-in-out, color .3s ease-in-out;
}

aside button:disabled,
aside button[disabled]{
  background-color: #eeeeee!important;
  color: #333333!important;
  transition: background .3s ease-in-out, color .3s ease-in-out;
}
#next-1, #send {
  margin-bottom: 30px;
}
aside .separator{
  
  border-bottom: 1px dashed #666666;
  width: 100%;
  height: 5px;
  display: inline-block;
  margin: 10px 0;
}
.or-separator{
  color:#666666;
  width: 100%;
  display: inline-block;
  margin: 0;
  text-align: center;
  font-size: 14px;
}
aside .saddle-options .saddle-box{
  display: flex;
  flex-direction: column;
}
aside .saddle-options .option-head{
  border-radius: 25px 25px 0 0;
  border: 1px solid var(--sunshine);
}
article #payoptions{
  display: none;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.3);
  width: 280px;
  bottom: 5px;
  right: 20px;
  position: absolute;
  z-index: 3;
  border-radius: 25px;
  overflow: hidden;
}
@media all and (min-width:500px){
  article #payoptions{
    display: block;
  }
}

#payoptions,
aside #batterypayoptions,
aside #buyoptions{
  width: 100%;
  margin: 0 auto 20px auto;
}
#payments,
aside #batterypayments,
aside .saddle-options .options-switch {
  width: 100%;
  display:flex;

  align-items: stretch;
}
aside #batterypayments div,
#payments div,
aside .saddle-options .options-switch div{
  margin:0;
  padding:10px;
  border-top: 2px solid var(--sunshine);
  border-bottom: 2px solid var(--sunshine);
  border-right: 1px solid var(--sunshine);
  border-left: 1px solid var(--sunshine);
  background-color:white;
  color:var(--carbon);
  display:flex;
  align-items: center;
  justify-content: center;
  text-align:center;
  flex-grow: 1;
  cursor: pointer;
  transition: background .3s ease-in-out;

  font-size: 14px;
  line-height: 16px;
}

#payments div:hover,
aside #batterypayments div:hover,
aside .saddle-options .options-switch div:hover{
  background-color: #eee;

}
#payments div:first-child,
aside #batterypayments div:first-child,
aside .saddle-options .options-switch div:first-child{
  border-radius: 25px 0 0 25px;
  border-left: 2px solid var(--sunshine);
  
  padding-left:15px;
}
aside .saddle-options .options-switch div:first-child{
  border-radius: 0 0 0 25px;
}

#payments div:nth-child(2),
aside #batterypayments div:nth-child(2)
aside .saddle-options .options-switch div:nth-child(2){
  border-right: 1px solid var(--sunshine);
  border-left: 1px solid var(--sunshine);
}
#payments div:nth-child(3),
aside #batterypayments div:nth-child(3),
aside .saddle-options .options-switch div:nth-child(3)
{
  border-right: 1px solid var(--sunshine);
}
#payments div:last-child,
aside #batterypayments div:last-child,
aside .saddle-options .options-switch div:last-child{
  border-radius: 0 25px 25px 0;
  border-right: 2px solid var(--sunshine);

  padding-right:15px;
}
aside .saddle-options .options-switch div:last-child{
  border-radius: 0 0 25px 0;
}
#payments div.active,
aside #batterypayments div.active,
aside .saddle-options .options-switch div.active {
  border-color:var(--sunshine);
  background-color:var(--sunshine);
  transition: background .3s ease-in-out;

  
}
aside .more, aside .delete, aside .more-saddles, aside .delete-saddle {
  position: absolute;
  top: -6px;
  right:0;
  
  width: 100%;

  margin-bottom: 15px;

  cursor: pointer;
}
aside .delete-saddle{
  position: relative;
  width: auto;
}
aside .more, aside .more-saddles{
  position: relative;
  order: 2;
  display: flex;

  border: 2px solid var(--sunshine);
  border-radius: 25px;

  align-items: center;

  justify-content: space-between;
  justify-items: flex-end;
  padding: 0 20px 0 0;

  margin-top: 10px;

}
aside .more img, aside .more-saddles img {
  width: 35px;
  height: 35px;
}
aside .delete, aside .delete-saddle {
  width: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  
  height: 27px;
  border: 1px solid var(--pink);
  border-radius: 25px;
  padding-left: 10px;
}
aside .delete img, aside .delete-saddle img{
  width: 25px;
  height: 25px;
  margin-left: 10px;
}

aside .module {
  position: relative;
  margin: 20px 0;
  width: 100%;
}

aside .category {
  margin: 50px 0;
  width: 100%;
  position: relative;

  display: flex;
  flex-wrap: wrap;

  height: 30px;
  overflow: hidden;
  
  transition: height .3s ease-in-out;
}
aside .category ul {
  margin: 0;
}

.price-item ul{
  font-size: 75%;
  padding: 0 17px;
}
aside .category > div{
  width: 100%;
}

aside .category.openclosed div.more{
  display: flex;
}
aside div.category.openclosed {
  height: auto;
  /*margin: 0 0 50px 0;*/
  
  transition: height .3s ease-in-out;
}
aside div.category > h3{
  transition: color .3s ease-in-out;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
aside div.category > h3:hover{
  color: var(--sunshine);
  cursor: pointer;
  transition: color .3s ease-in-out;
}
aside div.category > h3:after {
  content: '▾';
  transform: rotate(90deg);
  color: #777;
  font-weight: bold;
  /*
  float: right;
  margin-left: 5px;
  */
  position: absolute;
  right: 0;
  transition: transform .3s ease-in-out;
}

aside div.category.openclosed > h3:after {
  transform: rotate(0deg);
  transition: transform .3s ease-in-out;

}

aside .price-item {
  border-radius: 25px;
  background-color: white;
  padding: 15px 20px;
  margin: 30px 10px;
  /*border: 2px solid var(--sunshine);*/

  display: flex;
  flex-wrap: wrap;
  z-index: 1;
  position: relative;
  

  transition: background .3s ease-in-out;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;

  box-shadow: 0 0 10px rgba(0,0,0,.1);
}
aside .withquanitity {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}
.qlabel{
  margin-top: -11px;
  margin-left: 25px;
  border: 1px solid var(--sunshine);
  border-radius: 0 0 25px 25px;
  padding: 15px;
  width: 150px;
  display: flex;
  flex-direction: row;
}
aside .withquanitity input#quantity{
  width: 50px;
  border: 0;
  flex-grow: 1;
  margin-left: 10px;
  text-align: center;
}

#basevehicle, #basevehicle span.listprice {
  border-color: var(--cargomint);
}
#basevehicle.selected {
  background-color: var(--cargomint);
  color:white;
}
#allround, #allround span.listprice {
  border-color: var(--allround-azur);

}
#allround.selected {
  background-color: var(--allround-azur);
  color:white;
}
/*
#zurich{
  cursor:not-allowed !important;
}
*/
aside .price-item.sub-item {
  /*margin:0 20px;
  margin-top: -12px;*/
  margin:0 30px;
  margin-top: -30px;
  border-radius: 0 0 25px 25px;
  display: none;
  z-index: 0;
}
aside .price-item.sub-item-following {
  /*margin:10px 20px;*/
  margin:10px 30px;
  
  border-radius: 25px;
  display: none;
}

aside .price-item .row-1 {
  justify-content: space-between;

  display: flex;

  width: 100%;
  flex-wrap: nowrap;

  align-items: flex-start;
}
aside .price-item .row-2 {
  display: flex;
  flex-grow: 100%;
  flex-direction: column;
  width: 100%;
}
/*
aside .price-item .row-2 .availability {
  text-align:right;
}
*/
aside .price-item .row-2 p{
  font-size: 75%;
  margin-bottom: 5px;
}


aside .price-item .row-1 img {
  /*
  overflow: hidden;
  border-radius: 15px;
  height: 15px;*/

  margin-right: 10px;
  max-width: 150px;
  width: 100%;
}

aside .price-item .row-1 strong {
  font-weight: normal;
  font-family: "nexaBold", Arial, sans-serif;
  /*min-width: 110px;*/
  /*margin-bottom: 30px;*/
  margin-right: 5px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
aside .price-item .row-1 strong svg{
  /*height:20px;*/
  max-width: 150px;
  width: 100%;
}
aside .price-item .row-1 strong span{
  display: none;
}
aside .price-item.selected .row-1 strong .cls-2,
aside .price-item.selected .row-1 strong .cls-1{
  fill:white !important;
}
#Cargo-Inhalt > .cls-1,
#Allround-Inhalt > .cls-2 {
  fill:#333;
}

#Cargo-Inhalt > .cls-2 {
  fill: var(--cargomint);
}
#Allround-Inhalt > .cls-1 {
  fill: var(--allround-azur);
}
@media all and (min-width:768px){
  .listprice{
    display: none;
  }
}
aside .price-item .row-1 span.listprice{
  
  font-family: "nexaLight", Arial, sans-serif;

  background-color: white;
  color: var(--carbon);
  padding: 6px 14px 10px 15px;
  border-radius: 0 20px 0 20px;
  /*
  margin-right: -22px;
  margin-top: -17px;
  border: 2px solid var(--sunshine);
  text-align: right;
  */
  margin-right: -15px;
  margin-top: -10px;
  text-align: center;

  line-height: 100%;
  
  background-color: var(--sunshine);
  transition: background .3s ease-in-out,

}
aside .price-item:hover .row-1 span.listprice,
aside .price-item.selected .row-1 span.listprice{
  background-color: white;
  transition: background .3s ease-in-out;
}

aside .price-item.sub-item .row-1 span.listprice{
  border-radius: 0 0 0 25px;
}


aside .price-item .row-1 span.listprice span:first-child,
aside .price-item.sub-item .row-1 span.listprice span:first-child{
  font-size: 75%;
}
aside .price-item .row-1 span.listprice span:last-child,
aside .price-item.sub-item .row-1 span.listprice span:last-child{
  flex-shrink: 0;
}

aside .price-item:hover{
  background-color: #cfcfcf;
  

  transition: background .3s ease-in-out,
              border .3s ease-in-out;
}


aside .price-item.selected{
  background-color: var(--sunshine);
  /*border: 2px solid var(--sunshine);*/
  transition: background .3s ease-in-out,
              border .3s ease-in-out;
}
/*
aside .price-item.sub-item.selected{
  background: linear-gradient(180deg, rgba(214,192,53,1) 0%, rgba(243,230,60,1) 15%);
}
*/

aside .price-item[data-group="payment"] span.listprice,
aside .price-item[data-inquiry="true"] span.listprice {
  display: none;
}
@media screen and (min-width:375px) {
  
  h1{
    font-size: 25px;
    line-height: 25px;
  }
  #order-special-edition{
    font-size: 14px;
  }
  .summary #totalPrice,
  .summary #options-costs,
  .summary #battery-buying-costs {
    font-size: 16px;
    line-height: 16px;
  }
  .summary #totalPrice{
    margin-right: 10px;
    
  }
  .summary #options-costs {
    margin-right: 10px;
    margin-left: 10px;
  }
  .summary #battery-buying-costs{
    margin-left: 10px;
  }
  aside .price-item .row-1 span.listprice{
    flex-shrink: 0;
  }
  
}
@media screen and (min-width:500px) {
  #overlay #overlay-box img{
    height: 350px;
  }
  .summary p.plus{
    
    display: flex;
  }
  
  article .image-container{
    display: block;
  }
  article {
    height: 40vh;
  }
  #support{
    bottom: auto;
    top: 150px;
  }
  .hover-preview{
    max-width: 300px;
    width: 300px;
  }

}
@media screen and (min-width:768px) and (orientation: portrait) {
  article {
    height: 40vh;
  }
  #receipt{
    display: block;
  }
  #receipt #list-wrapper{
    max-height: 320px;
  }
  .summary #battery-buying-costs .small,
  .summary #totalPrice .small {
    font-size: 12px;
    line-height: 12px;
  }
  .wrapper{
    width: 100%;
    margin: 90px 20px 0px 20px;
  }
  #overlay #overlay-box img{
    height: 50vh;
  }
  
  .summary #totalPrice{
    margin-right: 20px;
    
  }
  .summary #options-costs {
    margin-right: 20px;
    margin-left: 20px;
  }
  .summary #battery-buying-costs{
    margin-left: 20px;
  }
  .summary p.plus{
    width: 20px;
    height: 20px;
    margin:10px;
    display: flex;
  }

}

@media screen and (min-width:850px) and (orientation: landscape) {
  #backtospecial{
    top: auto;
    bottom: -30px;
    right: 20px;
  }
  #backtospecial.active{
    bottom: 30px;
    right: 20px;
    top: auto;
    
  }
  

  #receipt{
    display: block;
  }
  #receipt #list-wrapper{
    max-height: 450px;
  }
  .summary {
    position: absolute;
    background-color: rgba(0,0,0,0.3);
    backdrop-filter:blur(50px);
    -webkit-backdrop-filter:blur(50px);

    color: white;
  }
  .summary #totalPrice {
    font-size: 30px;
    
  }

  .summary #battery-buying-costs .small,
  .summary #options-costs .small,
  .summary #totalPrice .small {
    font-size: 12px;
    line-height: 14px;
  }
  .summary p.plus{
    width: 20px;
    height: 20px;
    margin:10px;
    display: flex;
  }

  .wrapper {
    flex-direction: row;

    margin: 120px 10px 0px 10px;
  }

  h1{
    font-size: 35px;
    line-height: 35px;
  }
  h2{
    font-size: 20px;
    line-height: 20px;
  }
  #headline{
    padding: 40px;
    z-index: 1;
  }
  section{

    width: 100%;
    position: relative;
    box-shadow: none;
    z-index: 99;
    overflow: hidden;
  }
  article{
    z-index: 1;
    height: 100%;
  }
  .summary{
    padding: 30px;
    justify-content: space-between;
    flex-direction: row;

    top: 0;
  }
  .hover-preview{
    max-width: 300px;
    width: 300px;
    margin-left: -285px;
    margin-top: 15px;

    border-radius: 25px 25px 0 25px;    
  }
  .hover-preview div{
    display: flex;
    flex-direction: column;
  }
 
  aside{
    /*
    max-width: 370px;
    */
    width: 450px;

    /*min-width: 370px;
    width: 40%;
    */
    height: 100%;
    right: 0;
    padding:30px;

    position: relative;
    box-shadow: 0 0 150px rgba(0,0,0,.3);

    border-top-right-radius : 25px;
  }
  .summary #battery-buying-costs {
    margin-bottom: 0px;
  }
  /*
  .summary #battery-buying-costs{
    margin-right: 20px;
  }
  */

  

  #overlay #overlay-box{
    width: 90%;
    height: 90%;
    max-height: 750px;
    flex-direction:row;
    overflow-y: hidden;
  }

  #overlay #overlay-box img{
    width: 65%;
    height: 100%;
  }
  #overlay #overlay-box #offer-text {
    margin: 30px;
    height: auto;
    width: 35%;
    overflow-y: auto;
    overflow-x: hidden;

  }
  
  #overlay p, #overlay ul, #overlay a {
    font-size: 14px;
    line-height: 18px;
  }


}

@media screen and (max-height:800px) and (orientation: landscape){
  h1{
    font-size: 22px; line-height: 22px;
  }
  p, ul {
    font-size: 90%;
    line-height: 110%;
  }
  aside #batterypayments div, aside #payments div{
    font-size: 11px;
    line-height: 13px;
  }

}

@media screen and (min-width:1070px) and (orientation: landscape){
  #order-special-edition{
    font-size: inherit;
  }
  .wrapper {
    flex-direction: row;

    margin: 120px 40px 0px 40px;
   
  }
  /*
  .summary #battery-buying-costs{
    margin-right: 20px;
  }
  */

}
@media screen and (min-width:1250px) and (orientation: landscape) {
  #overlay #overlay-box{
    width: 90%;
    height: 80%;
  }
  .summary{
    flex-direction: row;
    align-items: flex-start;
    justify-content:space-between;
    
    margin: 15px;
    border-radius: 20px;
    width: calc(100% - 35px);
  }
  .summary #battery-buying-costs {
    margin-bottom: 0px;
  }
  /*
  .summary #battery-buying-costs{
    margin-right: 20px;
  }
  */


}
