
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800&display=swap');

html {
  overflow-x: hidden;
  height: 100vh;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  height: inherit;
  line-height: 1.4;
  color: #000000;
  hyphens: auto; 
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -hyphens: auto; 
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

b, strong, span.bold {
  font-family: inherit;
  font-weight: 700;
}

a,a:link,a:visited,a:hover,a:active {
  color: #e50000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,h2,h3,h4,h5,h6 {
  font-weight: 400;
} 

span.italic {
  font-style: italic; 
}   

span.nowrap {
  white-space: nowrap;
}   

span.uppercase {
  text-transform: uppercase;
} 

span.stroked {
  text-decoration: line-through;
}   

input,textarea,select {
  font-family: 'Open Sans', sans-serif;
  padding: 10px 15px;
  border: none;
  width: 100%;
  font-size: 18px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  /*
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-box-shadow: 1px 1px 3px 2px rgba(0,0,0,0.2);
  -moz-box-shadow: 1px 1px 3px 2px rgba(0,0,0,0.2);
  box-shadow: 1px 1px 3px 2px rgba(0,0,0,0.2);
  */
  background-color: #dadada;
}  

input:focus,textarea:focus,select:focus {
  opacity: 0.9;
}

button[type="submit"],
button[type="reset"],
input[type="submit"] {
  cursor: pointer;
  background: none;
  border: 1px solid #e50000;
  background: #e50000;
  color: #ffffff;
  padding: 10px 70px 9px 70px;
  font-size: 20px;
  text-transform: uppercase;
  width: 100%;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -khtml-border-radius: 40px;
  -moz-border-radius: 40px;
  font-weight: bold;
}

button[type="submit"]:hover,
button[type="reset"]:hover,
input[type="submit"]:hover {
  opacity: 0.8;
}

input:-webkit-input-placeholder,
input:-moz-placeholder,
input:-moz-placeholder,
input:-ms-input-placeholder,
input:-ms-input-placeholder,
textarea:-webkit-input-placeholder,
textarea:-moz-placeholder,
textarea:-moz-placeholder,
textarea:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #8b8a8a;
}

input[type="number"]:-webkit-inner-spin-button, 
input[type="number"]:-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="time"] {
  padding-left: 15px;
}

input[type="range"] {
    -webkit-appearance: none;   
    border: 1px solid #dadada;    
    width: 100%;
    background: transparent;
    min-height: 40px;
}

input[type="range"]:-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    background: #dadada;
    border: none;
    border-radius: 4px;
}

input[type=range]:-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 22px;
    width: 22px;
    margin-top: -8px;
    background: #ffffff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;  
    cursor: pointer;
    background-image: url(../img/circle_grey.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 6px 6px;
}

input[type="range"]:focus {
    outline: 0;
}

input[type="range"]:focus:-webkit-slider-runnable-track {
    background: #dadada;
}

input[type="range"]:-moz-range-track {
    width: 100%;
    height: 6px;
    background: #dadada;
    border: none;
    border-radius: 4px;
}

input[type="range"]:-moz-range-thumb {
    border: none;
    height: 22px;
    width: 22px;
    background-color: #ffffff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;  
    cursor: pointer;
    background-image: url(../img/circle_grey.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 6px 6px;
}

input[type="range"]:-moz-focusring{
    outline: 1px solid #ffffff;
    outline-offset: -1px;
}

input[type="range"]:-ms-track {
    height: 6px;    
    /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
    background: transparent;    
    /*leave room for the larger thumb to overflow with a transparent border */
    border-color: transparent;
    border-width: 6px 0;

    /*remove default tick marks*/
    color: transparent;
}

input[type="range"]:-ms-thumb {
    border: none;
    height: 22px;
    width: 22px;
    top: -8px;
    left: 15px;
    background-color: #ffffff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;  
    cursor: pointer;
    background-image: url(../img/circle_grey.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 6px 6px;
}

input[type="range"]:-ms-fill-lower {
    background: #ffffff;
    border-radius: 4px;
}

input[type="range"]:-ms-fill-upper {
    background: #dadada;
    border-radius: 4px;
}

input[type="range"]:focus:-ms-fill-lower {
    background: #ffffff;
}

input[type="range"]:focus:-ms-fill-upper {
    background: #dadada;
}

input[type=range]:-ms-tooltip {
    display: none;
}

textarea {
  height: 150px; 
  resize: vertical; 
}

select {
  position: relative;
  z-index: 2;
  padding: 10px 30px 10px 15px;
  width: 100%;
  cursor: pointer;
}

select:-ms-expand {
  display: none;
}

/*
input[type="checkbox"],
input[type="radio"] {
  position: absolute;
  left: -10000px;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
  display: inline-block;
  cursor: pointer;
  padding: 0 0 0 45px;
}

input[type="checkbox"] + label:hover,
input[type="radio"] + label:hover {
  opacity: 0.8;
}

input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
  position: absolute;
  content: "";
  width: 35px;
  height: 35px;
  background-color: #dadada;
  margin: -5px 0 0 -45px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px 100%;
}

input[type="checkbox"][data-circle="yes"] + label:before,
input[type="radio"][data-circle="yes"] + label:before {
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -khtml-border-radius: 50px;
  -moz-border-radius: 50px;
}

input[type="checkbox"]:checked + label:before,
input[type="radio"]:checked + label:before {
  background-image: url(../img/checkbox_akitv.svg);
}

input[type="checkbox"][data-circle="yes"]:checked + label:before,
input[type="radio"][data-circle="yes"]:checked + label:before {
  background-image: url(../img/checkbox_akitv.svg);
}
*/


div.input-multiple {
  margin: 0 0 12px 0;
}

div.input {
  margin: 0 0 20px 0;
}

div.input-multiple div.input {
  margin: 0 0 8px 0;
}

div.input[data-valid="no"] input,
div.input[data-valid="no"] select,
div.input[data-valid="no"] textarea {
  background: #e60146;
  color: #ffffff;
}  

div.input[data-valid="no"] input.datepicker {
  max-width: 100%;
  background: url(../img/kalender.svg) no-repeat right center, linear-gradient(to right, #e60146 calc(100% - 60px), transparent 1px);  
  background: url(../img/kalender.svg) no-repeat right center, -webkit-linear-gradient(to right, #e60146 calc(100% - 60px), transparent 1px);  
  background: url(../img/kalender.svg) no-repeat right center, -moz-linear-gradient(to right, #e60146 calc(100% - 60px), transparent 1px);  
  background: url(../img/kalender.svg) no-repeat right center, -o-linear-gradient(to right, #e60146 calc(100% - 60px), transparent 1px);  
  background: url(../img/kalender.svg) no-repeat right center, -ms-linear-gradient(to right, #e60146 calc(100% - 60px), transparent 1px);  
  background: url(../img/kalender.svg) no-repeat right center, linear-gradient(to right, #e60146 calc(100% - 60px), transparent 1px);  
}   


div.input[data-valid="no"] input:-webkit-input-placeholder,
div.input[data-valid="no"] input:-moz-placeholder,
div.input[data-valid="no"] input:-moz-placeholder,
div.input[data-valid="no"] input:-ms-input-placeholder,
div.input[data-valid="no"] input:-ms-input-placeholder,
div.input[data-valid="no"] textarea:-webkit-input-placeholder,
div.input[data-valid="no"] textarea:-moz-placeholder,
div.input[data-valid="no"] textarea:-moz-placeholder,
div.input[data-valid="no"] textarea:-ms-input-placeholder,
div.input[data-valid="no"] textarea:-ms-input-placeholder {
  color: #ffffff;
}

div.input[data-valid="no"] input[type="checkbox"] + label:before,
div.input[data-valid="no"] input[type="radio"] + label:before,
div.input[data-valid="no"] input[type="checkbox"] + label,
div.input[data-valid="no"] input[type="radio"] + label {
  color: #e60146;
}

div.input > div.label,
fieldset > legend,
div.input-multiple > div.label {
  margin: 0 0 5px 0;
  font-weight: 600;
}

div.input[data-required="yes"] > div.label > label:after,
fieldset[data-required="yes"] > legend:after {
  position: absolute;
  content: "*";
  font-size: 14px;
  color: inherit;
  padding: 0 0 0 6px;
  margin: 0;
}

div.input-group {
  display: -webkit-flex;
  -webkit-flex-flow: wrap;
  display: flex;
  flex-flow: wrap;
  margin: 0 0 20px -20px;
  width: calc(100% + 20px);
}

div.input-group > div.input {
  margin: 0 0 0 20px;
  width: calc(100% - 20px);
}

div.input-group[data-length="2"] > div.input {
  width: calc(50% - 20px);
}

div.input-group[data-length="3"] > div.input {
  width: calc(100% / 3 - 20px);
}

div.input-group[data-length="4"] > div.input {
  width: calc(100% / 4 - 20px);
}

ul.checked {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

ul.checked > li {
  padding: 0 0 0 30px;
  margin: 0 0 10px 0;
}

ul.checked > li:before {
  content: " ";
  position: absolute;
  width: 18px;
  height: 14px;
  left: 0;
  background-image: url(../img/bulletpoint_haken_weiss.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: auto 14px;
}

ul.checked > li:last-of-type {
  margin: 0;
}

div.page {
  z-index: 1;
  margin: 0;
  padding: 0;
}

div.panel {
  max-width: 100%;
  width: 1230px;
  margin: 0 auto 0 auto;
  padding: 0;
}

header {
  z-index: 2;
  margin: 0;
  padding: 0;
  margin: 0 0 40px 0;
}

header img {
  min-width: 100%;
}

header img.standard {
  display: inline-block;
}

header img.medium {
  display: none;
}

header img.small {
  display: none;
}

main#main {
  z-index: 1;
  clear: both;
  margin: 0 auto 55px auto;
  width: 1074px;
  max-width: 100%;
}

#_COOKIE-POLICY_ {
  padding: 20px;
  text-align: center;
}

#_COOKIE-POLICY_ .button {
  background: transparent;
  background-repeat: no-repeat;
  background-size: auto;
  color: #000000;
  font-weight: bold;
  border-radius: 0px;
}

#_COOKIE-POLICY_ button {
  all: unset;
  border: 1px solid #1d1d1b;
  border-radius: 40px;
  padding: 4px 20px;
  margin-top: 10px;
  cursor: pointer;
}

.stoerer {
  position: absolute;
  left: 1074px;
  top: 0;
  margin: -30px 0 0 0;
  z-index: 2;
}                     

.stoerer > a {
  display: block;
  background-image: url(../img/ticket-toyota-copy_moccamedia2.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  padding: 15px 80px 15px 27px;
  width: 300px;
  line-height: normal;
  font-size: 15px;
  font-weight: 800;
  transform:rotate(-10deg);
  color: #000000;
}

div.component,
section.component {
  margin: 0 0 45px 0;
  padding: 0;
  z-index: 1;
  clear: both;
}

div.component img,
section.component img {
  max-width: 100%;
}

div.component[data-type="headline"] > h1,
div.component[data-type="headline"] > h2 {
  color: #000000;
  font-weight: 800;
  font-size: 1.75rem;
  text-align: center;
}

div.component[data-type="abstract"] {
  text-align: center;
}

div.component[data-type="button"] {
  margin: 0 auto 55px auto;
  padding: 0;
  width: auto;
  font-size: 1.1em;
  width: 500px;
  max-width: 100%;
}

div.component[data-type="button"][data-variant="phone"] {
  width: 334px;
  margin: 0 auto 0 auto;
}

div.component[data-type="button"] > a {
  display: block;
  background: #e50000;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -khtml-border-radius: 40px;
  -moz-border-radius: 40px;
  text-transform: uppercase;
  font-weight: bold;
  background-repeat: no-repeat;
  background-position: 25px center;
  background-size: contain;
  text-align: center;
}

div.component[data-type="button"][data-variant="phone"] > a {
  padding: 10px 20px 10px 93px;
  background-image: url(../img/headphones.svg);
  background-size: 45px auto;
  text-align: left;
}

div.component[data-type="address"] {
  margin: 0 auto 0 auto;
  font-weight: bold;
  font-size: 20px;
}

div.component[data-type="logo"] {
  margin: 0 auto 0 auto;
  text-align: center;
}

div.component[data-type="vehicle-list"] {
  margin-bottom: 5px;
}

div.component[data-type="vehicle-list"] > ul.item-list {
  display: -webkit-flex;
  -webkit-flex-flow: wrap;
  display: flex;
  flex-flow: wrap;
  margin: 0 0 0 -50px;
  width: calc(100% + 50px);
  -webkit-align-items: stretch;
  align-items: stretch;
}

div.component[data-type="vehicle-list"] > ul.item-list > li.item {
  margin: 0 0 50px 50px;
  width: calc(50% - 50px);
}

div.component[data-type="vehicle"] {
  margin: 0;
  width: auto;
}

div.component[data-type="vehicle"] > div.image {
  margin: 0 0 20px 0;
}

div.component[data-type="vehicle"] > div.image > img {
  display: block;
}

div.component[data-type="vehicle"] > h3 {
  font-size: 1.28em;
  font-weight: bold;
  margin: 0 0 25px 0;
}

div.component[data-type="vehicle"] > div.text {
  margin: 0 0 25px 0;
}

div.component[data-type="vehicle"] > div.text[data-rowheight="yes"] {
  height: 265px;
}

div.component[data-type="vehicle"] > div.text > ul {
  list-style-type: disc;
  margin: 15px 0 15px 20px;
  padding: 0;
}

div.component[data-type="vehicle"] > div.offer {
  background-color: #dadada;
  padding: 10px;
  margin: 0 0 25px 0;
  text-align: center;
  font-weight: bold;
  font-size: 1.22em;
}

div.component[data-type="vehicle"] > div.offer > span.highlight {
  font-size: 30px;
}

div.component[data-type="vehicle"] > div.offer > span.highlight01 {
  font-size: 15px;
}

div.component[data-type="vehicle"] > div.offer > span.price {
  font-size: 55px;
  font-weight: 800;
}

div.component[data-type="vehicle"] > div.offer > span.price sup {
  font-size: 15px;
  top: -13px;
}

div.component[data-type="vehicle"] > div.offer > span.price01 {
  font-size: 25px;
  font-weight: 800;
}

div.component[data-type="vehicle"] > div.offer > span.price01 sup {
  font-size: 10px;
  top: -9px;
}

div.component[data-type="vehicle"] > div.infos {
  font-size: 14px;
}

div.component[data-type="vehicle"] > div.infos[data-rowheight="yes"] {
  height: 100px;
}

div.component[data-type="vehicle"] > div.button {
  margin: 20px auto 0 auto;
  font-size: 1.2em;
  width: 400px;
  max-width: 100%;
}

div.component[data-type="vehicle"] > div.button > a {
  display: block;
  background: #e50000;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -khtml-border-radius: 40px;
  -moz-border-radius: 40px;
  font-weight: bold;
  text-align: center;
}

div.component[data-type="infos"] {
  font-size: 0.8em;
}

div.component[data-type="grid"] {
  padding: 0;
}

div.component[data-type="grid"] > ul.item-list {
  display: -webkit-flex;
  -webkit-flex-flow: wrap;
  display: flex;
  flex-flow: wrap;
  margin: 0 0 0 -30px;
  width: calc(100% + 30px);
  -webkit-align-items: stretch;
  align-items: stretch;
}

div.component[data-type="grid"][data-align="center"] > ul.item-list {
  -webkit-align-items: center;
  align-items: center;
}

div.component[data-type="grid"][data-align="stretch"] > ul.item-list {
  -webkit-align-items: stretch;
  align-items: stretch;
}

div.component[data-type="grid"] > ul.item-list > li.item {
  margin: 0 0 30px 30px;
  width: calc(100% - 0);
}

div.component[data-type="grid"] > ul.item-list > li.item[data-size="12"] {
  width: calc(100% / 12 * 12 - 30px);
}

div.component[data-type="grid"] > ul.item-list > li.item[data-size="11"] {
  width: calc(100% / 12 * 11 - 30px);
}

div.component[data-type="grid"] > ul.item-list > li.item[data-size="10"] {
  width: calc(100% / 12 * 10 - 30px);
}

div.component[data-type="grid"] > ul.item-list > li.item[data-size="9"] {
  width: calc(100% / 12 * 9 - 30px);
}

div.component[data-type="grid"] > ul.item-list > li.item[data-size="8"] {
  width: calc(100% / 12 * 8 - 30px);
}

div.component[data-type="grid"] > ul.item-list > li.item[data-size="7"] {
  width: calc(100% / 12 * 7 - 30px);
}

div.component[data-type="grid"] > ul.item-list > li.item[data-size="6"] {
  width: calc(100% / 12 * 6 - 30px);
}

div.component[data-type="grid"] > ul.item-list > li.item[data-size="5"] {
  width: calc(100% / 12 * 5 - 30px);
}

div.component[data-type="grid"] > ul.item-list > li.item[data-size="4"] {
  width: calc(100% / 12 * 4 - 30px);
}

div.component[data-type="grid"] > ul.item-list > li.item[data-size="3"] {
  width: calc(100% / 12 * 3 - 30px);
}

div.component[data-type="grid"] > ul.item-list > li.item[data-size="2"] {
  width: calc(100% / 12 * 2 - 30px);
}

div.component[data-type="grid"] > ul.item-list > li.item[data-size="1"] {
  width: calc(100% / 12 * 1 - 30px);
}

div.component[data-type="grid"] > ul.item-list > li.item > *:last-child {
  margin-bottom: 0;
}

footer {
  z-index: 1;
  border-top: 2px solid #000000;
  margin: 0 0 50px 0;
  margin: 0 auto 55px auto;
  width: 1074px;
  max-width: 100%;
  clear: both;
}

footer div.links {
  margin: 25px 0 0 0;
  text-transform: uppercase;
  font-size: 0.85em;
}

footer div.links a {
  color: inherit;
}

footer div.links > ul.item-list {
  display: -webkit-flex;
  -webkit-flex-flow: nowrap;
  display: flex;
  flex-flow: nowrap;
  margin: 0;
}

footer div.links > ul.item-list > li.item {
  padding: 0 20px 0 0;
  text-align: right;
  width: 50%;
}

footer div.links > ul.item-list > li.item:last-of-type {
  margin: 0;
  padding: 0 0 0 20px;
  border-left: 1px solid #000000;
  text-align: left;
}

footer div.social-media {
  position: absolute;
  right: -10px;
  top: 15px;
}

footer div.social-media > ul.item-list {
  display: -webkit-flex;
  -webkit-flex-flow: nowrap;
  display: flex;
  flex-flow: nowrap;
  margin: 0;
}

footer div.social-media > ul.item-list > li.item {
  padding: 0 10px 0 10px;
}

footer div.social-media a {
  display: block;
  width: 50px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: auto 40px;
}

footer div.social-media a[data-type="toyota"] {
  background-image: url(../img/toyota.png);
}

footer div.social-media a[data-type="fb"] {
  background-image: url(../img/facebook.svg);
}

footer div.social-media a[data-type="insta"] {
  background-image: url(../img/instagram.svg);
}

footer div.social-media a > span {
  display: none;
}

div#OVERLAYS {
  z-index: 3;
  background-color: #ffffff;
}

div#OVERLAYS > div.overlay {
  position: fixed;
  right: 0;
  left: 0;
  height: 100vh;
  min-height: 100vh;
  background-color: #ffffff;
  top: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

div#OVERLAYS > div.overlay > div.close {
  position: absolute;
  right: 0;
  z-index: 2;
}

div#OVERLAYS > div.overlay > div.close > button {
  background: none;
  cursor: pointer;
  border: none;
  color: #6a6a6a;
  font-size: 40px;
  font-weight: lighter;
  width: 60px;
  height: 60px;
  text-align: center;
  opacity: .5;
  transform: rotate(45deg); 
}

div#OVERLAYS > div.overlay > div.content {
  position: relative;
  width: 1074px;
  max-width: calc(100% - 40px);
  margin: 0 auto 0 auto;
  padding: 20px 0 0 0;
  background-image: url(../img/logo.png);
  background-repeat: no-repeat;
  background-position: right 0;
  background-size: auto 100px;
}

div#OVERLAYS > div.overlay > div.content > h4 {
  font-size: 1.6em;
  margin: 0 0 30px 0;
  font-weight: bold;
  z-index: 1;
}

div#OVERLAYS > div.overlay > div.content > div.form {
  z-index: 1;
}

div#OVERLAYS > div.overlay > div.content > div.form > div.response {
  display: none;
  z-index: 1;
}

div#OVERLAYS > div.overlay > div.content > div.form > div.response > div#error {
  display: none;
}

div#OVERLAYS > div.overlay > div.content > div.form div.form-info {
  margin: 0 0 20px 0;
}

div#OVERLAYS > div.overlay > div.content > div.form div.privacy-info h5 {
  font-weight: bold;
  font-size: 1.25rem;
  margin: 0 0 10px 0;
}

div#OVERLAYS > div.overlay > div.content > div.form div.privacy-info a {
  color: #e50000;
}

div#OVERLAYS > div.overlay > div.content > div.form div.privacy-info div.form-radios {
  display: -webkit-flex;
  -webkit-flex-flow: nowrap;
  display: flex;
  flex-flow: nowrap;
  margin: 30px 0 30px 0;
}

div#OVERLAYS > div.overlay > div.content > div.form div.privacy-info div.form-radios > div {
  margin: 0 30px 0 0;
}

div#OVERLAYS > div.overlay > div.content > div.form div.privacy-info div.form-radios > div > a {
  display: block;
}

div#OVERLAYS > div.overlay > div.content > div.form div.privacy-info div.form-radios label {
  font-weight: bold;
}

div#OVERLAYS > div.overlay > div.content > div.form div.submit {
  margin: 30px auto 30px auto;
  width: 400px;
  max-width: 100%;
}

