/* ************************************************************
***************************************************************
***************************************************************
 FONTS
***************************************************************
***************************************************************
************************************************************* */
@font-face {
    font-family: 'OpenSans';
    src: url('../ressources/fonts/OpenSans-Regular.eot');
    src: url('../ressources/fonts/OpenSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('../ressources/fonts/OpenSans-Regular.woff2') format('woff2'),
        url('../ressources/fonts/OpenSans-Regular.woff') format('woff'),
        url('../ressources/fonts/OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'OpenSans';
    src: url('../ressources/fonts/OpenSans-Bold.eot');
    src: url('../ressources/fonts/OpenSans-Bold.eot?#iefix') format('embedded-opentype'),
        url('../ressources/fonts/OpenSans-Bold.woff2') format('woff2'),
        url('../ressources/fonts/OpenSans-Bold.woff') format('woff'),
        url('../ressources/fonts/OpenSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'OpenSans';
    src: url('../ressources/fonts/OpenSans-ExtraBold.eot');
    src: url('../ressources/fonts/OpenSans-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('../ressources/fonts/OpenSans-ExtraBold.woff2') format('woff2'),
        url('../ressources/fonts/OpenSans-ExtraBold.woff') format('woff'),
        url('../ressources/fonts/OpenSans-ExtraBold.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ************************************************************
***************************************************************
***************************************************************
 GLOBAL
***************************************************************
***************************************************************
************************************************************* */
:root {
  --pinky: rgb(241,19,94);
  --pinky2: rgb(227,17,88);
  --pinky3: rgb(186,17,71);

  --brain: rgb(188,255,0);
  --brain2: rgb(179,246,0);
  --brain3: rgb(170,234,0);

  --calimero: rgb(0,0,0);
  --calimero2: rgb(20,20,20);
  --calimero3: rgb(40,40,40);

  --walterwhite: rgb(250,250,250);

  --windowWidth: 100%;
  --windowHeight: 100%;
  --safetySpacer: 20px;
  --safetySpacer2: 8px;
}

html {
  background: rgb(0,0,0);
  background: linear-gradient(180deg, var(--pinky) 0%, var(--pinky3) 100%);
  min-height: 100%;
  font-family: 'OpenSans';
  font-size: 18px;
  color: var(--walterwhite);
  height: 100%;
}
body {
  height: 100%;
  margin: 0px;
}

* {
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */

  outline: none;
}

/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: none;
  color: var(--walterwhite) !important;
  -webkit-text-fill-color: var(--walterwhite);
  -webkit-box-shadow: none;
  transition: background-color 5000s ease-in-out 0s;
}

/* Clobal Classes */
.highlightColor {
  color: var(--brain);
}

.dNone {
  display: none;
}
.dNoneImp {
  display: none !important;
}

.innerCnt {
  position: relative;
  flex-grow: 1;
  display: flex;
  overflow: hidden;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
}

.mainActionBtn {
  background-color: var(--brain);
  color: #DE3660;
  font-size: 14px;
  padding: 15px 0px;
  border-radius: 25px;
  font-weight: bold;
  border: none;
  text-transform: uppercase;
}
.txtField {
  position: relative;
  background-color: rgb(186,0,66);
  border-radius: 25px;
  height: 50px;
  -webkit-box-shadow: inset 0px 2px 6px 2px rgba(0,0,0,0.15);
  box-shadow: inset 0px 2px 6px 2px rgba(0,0,0,0.15);
}
.txtField input {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0px 20px;
  color: var(--walterwhite);
  font-size: 14px;
  font-weight: normal;
  background: transparent;
}
.txtField .placeholder {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 0;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  padding: 0px 20px;
  color: var(--walterwhite);
  font-size: 12px;
  font-weight: normal;
}

.txtField input:focus,
.txtField input:not(:placeholder-shown) {
  top: 35%;
  height: 65%;
}
.txtField input:focus + .placeholder,
.txtField input:not(:placeholder-shown) + .placeholder {
  color: var(--brain);
  font-size: 10px;
  height: 75%;
}

a, a:link, a:visited, a:active {
  color: var(--walterwhite);
}
a:hover {
  color: var(--brain);
}

#smoothPreloadScreen  {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: var(--pinky);
  background: linear-gradient(180deg, var(--pinky) 0%, var(--pinky3) 100%);
}
/* ************************************************************
***************************************************************
***************************************************************
 MAIN MENU
***************************************************************
***************************************************************
************************************************************* */
section[data-sectionname="mainMenu"] {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  z-index: 10;
  padding: 0px calc(var(--windowWidth)*0.05089058524) calc(var(--windowWidth)*0.05089058524) calc(var(--windowWidth)*0.05089058524);
  background: linear-gradient(180deg, var(--pinky) 0%, var(--pinky3) 100%);
}
section[data-sectionname="mainMenu"].active {
  display: flex;
}
section[data-sectionname="mainMenu"] .innerPart {
  position: relative;
  flex-grow: 1;
  padding: 0px calc(var(--windowWidth)*0.05089058524) calc(var(--windowWidth)*0.05089058524) calc(var(--windowWidth)*0.05089058524);
  overflow: scroll;
}
section[data-sectionname="mainMenu"]  .innerPart .inner {
  position: absolute;
  width: calc(100% - calc(var(--windowWidth)*0.10178117048));
  transition: transform 0.6s ease;
}
section[data-sectionname="mainMenu"]  .innerPart .inner.done {
  transform: translateX(-125%);
}
section[data-sectionname="mainMenu"] .innerPart .elm,
section[data-sectionname="mainMenu"] .innerPart .elm {
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: flex-start;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  padding: 0px calc(var(--windowWidth)*0.02798982188);
  border-bottom: 1px rgb(221,53,95) solid;
  height: calc(var(--windowHeight)*0.09040333797);
}
section[data-sectionname="mainMenu"] .innerPart .elm.visible,
section[data-sectionname="mainMenu"] .innerPart .elm.visible {
  display: flex;
}
section[data-sectionname="mainMenu"] .innerPart .elm .icon {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}
section[data-sectionname="mainMenu"] .innerPart .elm .icon > svg {
  width: 28px;
  height: 28px;
  fill: var(--brain);
}

@media only screen and (min-width: 768px) {
  section[data-sectionname="mainMenu"] {
    left: auto;
    right: 20px;
    width: 350px;
    height: auto;
    padding: 20px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    background: var(--pinky);
    -webkit-box-shadow: 0px 8px 30px 10px rgba(0,0,0,0.10);
  }
  section[data-sectionname="mainMenu"] .innerPart {
    padding: 0px 0px;
    overflow: visible;
  }
  section[data-sectionname="mainMenu"] .innerPart .inner {
    position: static;
    width: 100%;
  }
  section[data-sectionname="mainMenu"] .innerPart .elm {
    height: auto;
    border: none;
    padding: 10px 0px;
  }
  section[data-sectionname="mainMenu"] .innerPart .elm:first-child {
    padding-top: 0px;
  }
  section[data-sectionname="mainMenu"] .innerPart .elm:last-child {
    padding-bottom: 0px;
  }
  section[data-sectionname="mainMenu"] .innerPart .elm .icon {
    display: none;
  }
}
/* ************************************************************
***************************************************************
***************************************************************
 GLOBAL CAR SEARCH
***************************************************************
***************************************************************
************************************************************* */
section[data-sectionname="globalCarSearch"] {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  z-index: 10;
}
section[data-sectionname="globalCarSearch"].active {
  display: flex;
}
section[data-sectionname="globalCarSearch"] .searchInput {
  width: 100%;
  padding: 0px calc(var(--windowWidth)*0.05089058524) calc(var(--windowWidth)*0.05089058524) calc(var(--windowWidth)*0.05089058524);
  background: linear-gradient(180deg, var(--pinky2) 0%, var(--pinky2) 100%);
  font-size: 1em;
  position: relative;
  display: flex;
  align-content: stretch;
  align-items: stretch;
}
section[data-sectionname="globalCarSearch"] .searchInput .inner {
  position: relative;
  width: 100%;
}
section[data-sectionname="globalCarSearch"] .searchInput input[name="search"] {
  width: 100%;
  height: calc(var(--windowHeight)*0.06397774687);
  font-size: 1em;
  color: var(--brain);
  border-radius: calc(var(--windowHeight) / 0.03198887344);
  padding: 0px calc(var(--windowWidth)*0.02798982188);
  background-color: var(--pinky);
  border: none;
}
section[data-sectionname="globalCarSearch"] .searchInput .placeholder {
  position: absolute;
  left: 0px;
  top: 0px;
  height: calc(var(--windowHeight)*0.06397774687);
  line-height: calc(var(--windowHeight)*0.06397774687);
  padding: 0px calc(var(--windowWidth)*0.03888040712);
}
section[data-sectionname="globalCarSearch"] .searchInput .prebrandLabel {
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 1em;
  color: var(--walterwhite);
  height: calc(var(--windowHeight)*0.06397774687);
  line-height: calc(var(--windowHeight)*0.06397774687);
  padding: 0px calc(var(--windowWidth)*0.03888040712);
}
section[data-sectionname="globalCarSearch"] .searchInput input[name="search"]:focus + .placeholder,
section[data-sectionname="globalCarSearch"] .searchInput input[name="search"]:not(:placeholder-shown) + .placeholder,
section[data-sectionname="globalCarSearch"] .placeholderHidden {
  display: none;
}
section[data-sectionname="globalCarSearch"] .searchInput .searchIcon {
  position: absolute;
  right: 0px;
  top: 0px;
  height: calc(var(--windowHeight)*0.06397774687);
  padding-right: calc(var(--windowWidth)*0.01888040712);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section[data-sectionname="globalCarSearch"] .searchInput .searchIcon .inner {
  width: calc(var(--windowWidth)*0.08669211196);
  height: calc(var(--windowWidth)*0.08669211196);
  border-radius: calc(var(--windowWidth)*0.09669211196);
  background-color: var(--pinky3);
  display: flex;
  align-content: center;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
section[data-sectionname="globalCarSearch"] .searchInput .searchIcon .inner svg {
  width: 47%;
  height: 47%;
  color: var(--walterwhite);
  fill: var(--walterwhite);
}
section[data-sectionname="globalCarSearch"] .alphabet {
  display: none;
}
section[data-sectionname="globalCarSearch"] .searchResults {
  position: relative;
  flex-grow: 1;
  padding: 0px calc(var(--windowWidth)*0.05089058524) calc(var(--windowWidth)*0.05089058524) calc(var(--windowWidth)*0.05089058524);
  background: linear-gradient(180deg, var(--pinky) 0%, var(--pinky3) 100%);
  overflow: hidden;
}
section[data-sectionname="globalCarSearch"]  .searchResults .inner {
  display: none;
  flex-direction: column;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  position: absolute;
  width: calc(100% - calc(var(--windowWidth)*0.10178117048));
  transition: transform 0.6s ease;
  height: 100%;
  overflow-y: scroll;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
section[data-sectionname="globalCarSearch"]  .searchResults .inner::-webkit-scrollbar {
  display: none;
}
section[data-sectionname="globalCarSearch"]  .searchResults .inner.done {
  transform: translateX(-125%);
}
section[data-sectionname="globalCarSearch"] .searchResults .brandSelectionList .elm,
section[data-sectionname="globalCarSearch"] .searchResults .modelSelectionList .elm {
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: flex-start;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  padding: 0px calc(var(--windowWidth)*0.02798982188);
  border-bottom: 1px rgb(221,53,95) solid;
  height: calc(var(--windowHeight)*0.09040333797);
}
section[data-sectionname="globalCarSearch"] .searchResults .brandSelectionList .elm.visible,
section[data-sectionname="globalCarSearch"] .searchResults .modelSelectionList .elm.visible {
  display: flex;
}
section[data-sectionname="globalCarSearch"] .searchResults .brandSelectionList .elm .image {
  height: 100%;
  max-height: calc(var(--windowHeight)*0.09040333797);
}
section[data-sectionname="globalCarSearch"] .searchResults .brandSelectionList .elm .image img {
  height: 100%;
  transform: scale(-1.5, 1.5);
  transform-origin: 50% 50%;
}

section[data-sectionname="globalCarSearch"] .searchResults .inner.visible{
  display: flex;
}
section[data-sectionname="globalCarSearch"] .searchResults .modelSelectionList {
  transform: translateX(110%);
  transition: transform 0.6s ease;
}
section[data-sectionname="globalCarSearch"] .searchResults .modelSelectionList .elm {
  height: calc(var(--windowHeight)*0.1111111);
  justify-content: space-between;
  width: 100%;
}
section[data-sectionname="globalCarSearch"] .searchResults .modelSelectionList .elm.visible {
  justify-content: space-between;
}
section[data-sectionname="globalCarSearch"] .searchResults .modelSelectionList .elm .uvpRow {
  font-size: 12px;
}
section[data-sectionname="globalCarSearch"] .searchResults .modelSelectionList .elm .image {
  height: 100%;
  width: auto;
  overflow: hidden;
  min-width: 50px;
  min-height: 88px;
  max-height: calc(var(--windowHeight)*0.09040333797);
}
section[data-sectionname="globalCarSearch"] .searchResults .modelSelectionList .elm .image img {
  height: 100%;
  transform: scale(-1.5, 1.5);
  transform-origin: 50% 50%;
}
section[data-sectionname="globalCarSearch"] .searchResults .elm:hover * {
  color: var(--brain) !important;
}
section[data-sectionname="globalCarSearch"] .searchResults .elm .icon {
  width: 80px;
  max-width: 80px;
  min-width: 80px;
  height: 80px;
  max-height: 80px;
  min-height: 80px;
  margin-right: 15px;
}
section[data-sectionname="globalCarSearch"] .searchResults .elm .icon > svg {
  width: 80px;
  height: 80px;
  /*transform: translateX(-25%);*/
}
section[data-sectionname="globalCarSearch"] .searchResults .elm .icon > svg * {
  fill: var(--walterwhite) !important;
  color: var(--walterwhite) !important;
}
section[data-sectionname="globalCarSearch"] .searchResults .elm:hover .icon > svg * {
  fill: var(--brain) !important;
}
section[data-sectionname="globalCarSearch"] .searchResults .elm .label {

}
section[data-sectionname="globalCarSearch"] .searchResults .elm:last-child {
  border: none;
}
section[data-sectionname="globalCarSearch"] .searchResults .elm.brandModelCombination {
  width: 100%;
  justify-content: space-between;
  height: calc(var(--windowHeight)*0.13);
}
section[data-sectionname="globalCarSearch"] .searchResults .elm.brandModelCombination .icon > svg {
  width: 80px;
  height: 80px;
}
section[data-sectionname="globalCarSearch"] .searchResults .elm.brandModelCombination .icon > svg * {
  fill: var(--walterwhite) !important;
  color: var(--walterwhite) !important;
}
section[data-sectionname="globalCarSearch"] .searchResults .elm.brandModelCombination:hover .icon > svg * {
  fill: var(--brain) !important;
}
section[data-sectionname="globalCarSearch"] .searchResults .elm.brandModelCombination .label {
  flex-grow: 1;
}
section[data-sectionname="globalCarSearch"] .searchResults .elm.brandModelCombination .label .uvpRow {
  font-size: 12px;
}
section[data-sectionname="globalCarSearch"] .searchResults .elm.brandModelCombination .image {
  height: 100%;
  width: auto;
  overflow: hidden;
  min-width: 50px;
  max-height: calc(var(--windowHeight)*0.09040333797);
}
@media only screen and (min-width: 768px) {
  section[data-sectionname="globalCarSearch"] {
    top: 0px !important;
  }
  section[data-sectionname="globalCarSearch"] .searchInput {
    justify-content: center;
    padding: calc(var(--windowHeight)*0.03055555556) 0px;;
    background: var(--pinky3);
  }
  section[data-sectionname="globalCarSearch"] .searchInput .inner {
    max-width: calc(var(--windowWidth)*0.68);
  }
  section[data-sectionname="globalCarSearch"] .searchInput input[name="search"] {
    height: calc(var(--windowHeight)*0.03518518519);
    font-size: calc(var(--windowHeight)*0.02222222222);
    border-radius: 0px;
    padding: 0px;
    background: none;
  }
  section[data-sectionname="globalCarSearch"] .searchInput .searchIcon {
    height: 100%;
    padding-right: 0px;
  }
  section[data-sectionname="globalCarSearch"] .searchInput .searchIcon .inner {
    background: none;
    align-items: flex-end;
  }
  section[data-sectionname="globalCarSearch"] .searchInput .placeholder {
    line-height: calc(var(--windowHeight)*0.03518518519);
    padding: 0px;
    /*background: none;*/
  }
  section[data-sectionname="globalCarSearch"] .alphabet {
    display: none;
    justify-content: center;
    padding: 0px;
  }
  section[data-sectionname="globalCarSearch"] .alphabet .inner {
    width: 100%;
    max-width: calc(var(--windowWidth)*0.68);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
  }
  section[data-sectionname="globalCarSearch"] .alphabet .inner > div:not(:last-child) {
    margin-right: calc(var(--windowWidth)*0.01770833333);
  }
  section[data-sectionname="globalCarSearch"]  .searchResults {
    display: flex;
    justify-content: center;
    padding: 0px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
  section[data-sectionname="globalCarSearch"]  .searchResults::-webkit-scrollbar {
    display: none;
  }
  section[data-sectionname="globalCarSearch"]  .searchResults .inner {
    width: 100%;
    max-width: calc(var(--windowWidth)*0.68);
  }
  section[data-sectionname="globalCarSearch"]  .searchResults .inner .elm {
    padding: 0px;
  }
  section[data-sectionname="globalCarSearch"] .searchInput .prebrandLabel {
    padding: 0px;
    height: 100%;
    line-height: 100%;
    display: flex;
    align-content: center;
    align-items: center;
  }
}

/* ************************************************************
***************************************************************
***************************************************************
 CAR DETAILS VIEW
***************************************************************
***************************************************************
************************************************************* */
section[data-sectionname="carDetailsView"] {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  z-index: 10;
  padding: calc(var(--windowWidth)*0.05089058524);
  /*background: linear-gradient(180deg, rgb(205,48,87) 0%, rgb(199,45,82) 100%);*/
  background: linear-gradient(180deg, var(--pinky) 0%, var(--pinky3) 100%);
}
section[data-sectionname="carDetailsView"].active {
  display: flex;
}
section[data-sectionname="carDetailsView"] .infoView {
  align-items: stretch;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
section[data-sectionname="carDetailsView"].active .infoView {
  display: flex;
}
section[data-sectionname="carDetailsView"] .infoView .head {
  height: 100px;
}
section[data-sectionname="carDetailsView"] .infoView .head .carName {
  font-size: 28px;
  font-weight: 900;
}
section[data-sectionname="carDetailsView"] .infoView .head .uvpRow {
  font-size: 12px;
}
section[data-sectionname="carDetailsView"] .infoView .body {
  flex-grow: 1;
}
section[data-sectionname="carDetailsView"] .infoView .body .images {
  position: relative;
  width: calc(100% + (var(--windowWidth)*0.1017811705));
  height: 100%;
  margin-left: calc((var(--windowWidth)*0.05089058524)*-1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}
section[data-sectionname="carDetailsView"] .infoView .body .images img {
  position: absolute;
  width: 100%;
  height: auto;
  transform: scale(1.3);
  transform-origin: 50% 100%;
  display: none;
}
section[data-sectionname="carDetailsView"] .infoView .body .images img.active {
  display: block;
}
section[data-sectionname="carDetailsView"] .infoView .body .points {
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
}
section[data-sectionname="carDetailsView"] .infoView .body .points .elm {
  width: 8px;
  height: 8px;
  border-radius: 5px;
  background-color: rgba(0,0,0,0.1);
}
section[data-sectionname="carDetailsView"] .infoView .body .points .elm:not(:last-child) {
  margin-right: 6px;
}
section[data-sectionname="carDetailsView"] .infoView .body .points .elm.active {
  background-color: var(--brain);
}
section[data-sectionname="carDetailsView"] .infoView .foot {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
}
section[data-sectionname="carDetailsView"] .infoView .foot .buttons {
  width: 60%;
}
section[data-sectionname="carDetailsView"] .infoView .foot .buttons button {
  width: 100%;
}
section[data-sectionname="carDetailsView"] .carRequestView {
  display: none;
  align-items: stretch;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
section[data-sectionname="carDetailsView"] .carRequestView.active {
  display: flex;
}
section[data-sectionname="carDetailsView"] .carRequestView . {
}

@media only screen and (min-width: 768px) {
  section[data-sectionname="carDetailsView"] .infoView {
    align-items: center
  }
  section[data-sectionname="carDetailsView"] .infoView .head {
    height: auto;
  }
  section[data-sectionname="carDetailsView"] .infoView .head .carName {
    font-size: 78px;
    font-weight: 900;
  }
  section[data-sectionname="carDetailsView"] .infoView .head .uvpRow {
    text-align: center;
  }
  section[data-sectionname="carDetailsView"] .infoView .body {
    height: calc(100% - 200px);
    width: 100%;
  }
  section[data-sectionname="carDetailsView"] .infoView .body .images {
    height: 90%;
    width: 100%;
    margin-left: 0px;
  }
  section[data-sectionname="carDetailsView"] .infoView .body .images img {
    width: auto;
    height: 100%;
    transform-origin: 50% 100%;
  }
  section[data-sectionname="carDetailsView"] .infoView .foot {
    width: 100%;
    height: auto;
  }
  section[data-sectionname="carDetailsView"] .infoView .foot .buttons {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: row;
  }
  section[data-sectionname="carDetailsView"] .infoView .foot .buttons button {
    width: 100%;
    max-width: 350px;
  }
}

/* ************************************************************
***************************************************************
***************************************************************
 CAR REQUEST VIEW
***************************************************************
***************************************************************
************************************************************* */
section[data-sectionname="carRequestView"] {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 10;
  padding: calc(var(--windowWidth)*0.05089058524);

  /*background: linear-gradient(180deg, rgb(205,48,87) 0%, rgb(199,45,82) 100%);*/
  background: linear-gradient(180deg, var(--pinky) 0%, var(--pinky3) 100%);
}
section[data-sectionname="carRequestView"] .page {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  z-index: 10;
  padding: calc(var(--windowWidth)*0.05089058524);
}
section[data-sectionname="carRequestView"] .page:not(:first-child) {
  display: none;
}
section[data-sectionname="carRequestView"].active {
  display: flex;
}
section[data-sectionname="carRequestView"] .head {
  font-size: 16px;
}
section[data-sectionname="carRequestView"] .head > div {
  margin-bottom: 18px;
}
section[data-sectionname="carRequestView"] .head .headline {
  font-size: 18px;
  color: var(--brain);
  font-weight: bold;
  text-transform: uppercase;
}
section[data-sectionname="carRequestView"] .foot {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
}
section[data-sectionname="carRequestView"] .foot .form {
  width: 100%;
}
section[data-sectionname="carRequestView"] .foot .form > div:not(:last-child) {
  margin-bottom: 20px;
}
section[data-sectionname="carRequestView"] .foot .form .txtField,
section[data-sectionname="carRequestView"] .foot .form button {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  section[data-sectionname="carRequestView"] {
    justify-content: center;
  }
  section[data-sectionname="carRequestView"] .page {
    position: static;
    max-width: 730px;
  }
}

/* ************************************************************
***************************************************************
***************************************************************
 IMPRINT VIEW
***************************************************************
***************************************************************
************************************************************* */
section[data-sectionname="imprint"] {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 10;
  padding: calc(var(--windowWidth)*0.025) calc(var(--windowWidth)*0.05089058524);
  background: linear-gradient(180deg, var(--pinky) 0%, var(--pinky3) 100%);
  overflow-x: hidden;
  overflow-y: scroll;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
section[data-sectionname="imprint"]::-webkit-scrollbar {
  display: none;
}
section[data-sectionname="imprint"].active {
  display: flex;
}
section[data-sectionname="imprint"] .head {
  font-size: 16px;
}
section[data-sectionname="imprint"] .head > div {
  margin-bottom: 18px;
}
section[data-sectionname="imprint"] .head .headline {
  font-size: 18px;
  color: var(--brain);
  font-weight: bold;
  text-transform: uppercase;
}
/* ************************************************************
***************************************************************
***************************************************************
 ABOUTUS VIEW
***************************************************************
***************************************************************
************************************************************* */
section[data-sectionname="aboutus"] {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 10;
  padding: calc(var(--windowWidth)*0.05089058524);
  background: linear-gradient(180deg, var(--pinky) 0%, var(--pinky3) 100%);
}
section[data-sectionname="aboutus"].active {
  display: flex;
}
section[data-sectionname="aboutus"] .head {
  font-size: 16px;
}
section[data-sectionname="aboutus"] .head > div {
  margin-bottom: 18px;
}
section[data-sectionname="aboutus"] .head .headline {
  font-size: 18px;
  color: var(--brain);
  font-weight: bold;
  text-transform: uppercase;
}

/* ************************************************************
***************************************************************
***************************************************************
 MAIN PAGE ELEMENTS
***************************************************************
***************************************************************
************************************************************* */
.main {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* Header Navi */
.naviHeader {
  width: 100%;
  padding: calc(var(--windowHeight)*0.02086230876) calc(var(--windowWidth)*0.05089058524);
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  background: linear-gradient(180deg, var(--pinky2) 0%, var(--pinky2) 100%);
}
.naviHeader .left {
  display: flex;
  align-items: center;
}
.naviHeader .left .lnk {
  display: none;
}
.naviHeader .left .backIcon {
  width: 100%;
  display: flex;
  align-content: center;
  align-items: center;
  flex-direction: row;
  }
.naviHeader .left .backIcon svg {
  width: 20px;
  height: 20px;
  fill: var(--brain);
}
.naviHeader .middle {
  grid-column: 2/2;
  grid-row: 1/2;
  font-weight: bolder;
  font-size: 28px;
  text-align: center;
  cursor: pointer;
}
.naviHeader .right {
  width: 100%;
  grid-column: 3/4;
  grid-row: 1/2;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}
.naviHeader .right svg {
  width: 28px;
  height: 28px;
  fill: var(--brain);
}
.naviHeader .threebar {
  cursor: pointer;
}
.naviHeader .threebar .bar {
  width: 20px;
  height: 2px;
  background: var(--brain);
  margin-bottom: 4px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.naviHeader .threebar .bar:nth-child(1) {
  transform-origin: 50% !important;
}
.naviHeader .threebar .bar:nth-child(2) {
  transform-origin: 50% !important;
}
.naviHeader .threebar .bar:nth-child(3) {
  margin-bottom: 0px;
}
.naviHeader .threebar.cross .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg) !important;
}
.naviHeader .threebar.cross .bar:nth-child(2) {
  opacity: 0 !important;
  margin-left: 1000%;
}
.naviHeader .threebar.cross .bar:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg) !important;
}

@media only screen and (min-width: 768px) {
  .naviHeader {
    padding: 0px calc(var(--windowWidth)*0.02604166667);
  }
  .naviHeader .left {
    width: 100%;
    grid-column: 2/3;
    grid-row: 1/2;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
  }
  .naviHeader .left > .lnk {
    display: block;
    font-weight: bold;
    border-bottom: calc(var(--windowHeight)*0.002777777778) transparent solid;
  }
  .naviHeader .left > .lnk:not(:last-child) {
    margin-right: calc(var(--windowWidth)*0.03645833333);
  }
  .naviHeader .left > .lnk:hover {
    cursor: pointer;
    border-color: var(--brain);
  }
  .naviHeader .left .backIcon {
    display: none;
  }
  .naviHeader .left svg {
    width: 18px;
    height: 18px;
    fill: var(--brain);
  }
  .naviHeader .middle {
    grid-column: 1/2;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    font-size: calc(var(--windowWidth)*0.02552083333);
  }
}

/* Footer Navi */
.naviFooter {

  /*display: flex;*/
  display: none;

  background-color: var(--pinky2);
  height: 58px;
  width: 100%;

  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-around;
  align-items: center;
}
.naviFooter .elm {
  width: 46px;
  height: 46px;
  display: flex;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.naviFooter .elm.active {
  background-color: #AB2344;
  border-radius: 58px;
}
.naviFooter svg {
  width: 28px;
  height: 28px;
  fill: var(--brain);
}


/* ************************************************************
***************************************************************
***************************************************************
 SECTION: HOME
***************************************************************
***************************************************************
************************************************************* */
section[data-sectionname="home"] {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: calc(var(--windowWidth)*0.9109414758);
}
section[data-sectionname="home"] .bigTxt {
  font-size: calc(var(--windowWidth)*0.1501272265);
  text-transform: uppercase;
  font-weight: 900;
  white-space: nowrap;
  position: absolute;
  left: 0px;
  top: calc(var(--windowHeight)*0.07462686567);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
}
section[data-sectionname="home"] .bigTxt > div {
  line-height: 1em;
  padding: 0px 10px;
  background-color: var(--pinky);
}
section[data-sectionname="home"] .bigTxt > div:not(:last-child) {
  margin-bottom: 15px;
}
section[data-sectionname="home"] .bigTxt .magglass {
  width: calc(var(--windowWidth)*0.1526717557);
  height: calc(var(--windowWidth)*0.1526717557);
  border-radius: calc(var(--windowWidth)*0.1526717557);
  background-color: var(--pinky);
  padding: 0px;
  display: flex;
  align-content: center;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
section[data-sectionname="home"] .bigTxt .magglass .inner {
  width: 76.666%;
  height: 76.666%;
  border-radius: 76.666%;
  background-color: var(--pinky3);
  display: flex;
  align-content: center;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
section[data-sectionname="home"] .bigTxt .magglass .inner > svg {
  width: 47%;
  height: 47%;
  color: var(--walterwhite);
  fill: var(--walterwhite);
}
section[data-sectionname="home"] .homeCar {
  position: absolute;
  width: 200%;
  right: 0px;
  z-index: 1;
  bottom: calc(var(--windowHeight)*0.07633587786);
  transform: translateX(25%) translateY(20%);
}

@media only screen and (min-width: 768px) {
  section[data-sectionname="home"] {
    align-items: center;
    width: 100%;
    max-width: calc(var(--windowWidth)*0.68);
  }
  section[data-sectionname="home"] .bigTxt {
    top: inherit;
    font-size: calc(var(--windowWidth)*0.04947916667);
  }
  section[data-sectionname="home"] .bigTxt .magglass {
    width: calc(var(--windowWidth)*0.0515625);
    height: calc(var(--windowWidth)*0.0515625);
  }
  section[data-sectionname="home"] .homeCar {
    position: absolute;
    width: 100%;
    right: 0px;
    bottom: inherit;
    width: calc(var(--windowWidth)*0.8125);
    transform: translateX(25%) translateY(0%);
  }
}

/* ************************************************************
***************************************************************
***************************************************************
 OTHER: STUFF
***************************************************************
***************************************************************
************************************************************* */

/* Loading Spinner */
.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  z-index: 1;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid var(--brain);
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--brain) transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
