/* === === === === === === === === ===
				Mixins
 === === === === === === === === === */
/* === === === === === === === === ===
			Font faces
 === === === === === === === === === */
@font-face {
  font-family: "FuturaPTBook";
  src: url("./fonts/FuturaPTBook.otf");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "FuturaPTDemi";
  src: url("./fonts/FuturaPTDemi.otf");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "FuturaPT";
  src: url("./fonts/FuturaPTMedium.otf");
  font-style: normal;
  font-weight: normal;
}
/* === === === === === === === === ===
				Root
 === === === === === === === === === */
:root {
  --application-main-background-color: #fff;
  --application-link-color: #00bce8;
  --application-hover-text-color: #000;
  --application-text-light-color: #666;
  --application-header-light-color: #ccc;
  --home-aside-panel-width: 200px;
  --header-height: 100px;
}

/* === === === === === === === === ===
			Generic styles
 === === === === === === === === === */
* {
  color: inherit;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  padding: 0;
  margin: 0;
}

body {
  background: var(--application-main-background-color);
  font-family: "FuturaPTBook", serif;
  box-sizing: border-box;
}

svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

h1 {
  font-family: FuturaPTDemi, serif;
  color: var(--header-color, currentColor);
  font-size: 2em;
  line-height: 1.2em;
  margin: 0;
}

p {
  color: var(--text-color, currentColor);
}
p.title {
  color: var(--header-color, currentColor);
  font-family: "FuturaPTDemi", serif;
  margin-bottom: 0;
}
p.section-subheader {
  color: var(--application-link-color);
  font-family: "FuturaPTDemi", serif;
  font-size: 1.3em;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: var(--application-link-text-color);
  transition: 0.2s color;
  -webkit-transition: 0.2s color;
}
a:hover {
  color: var(--application-hover-text-color);
}

a.stylized,
.button,
button {
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
  color: var(--application-link-color);
  font-family: "FuturaPTDemi", serif;
}
a.stylized *,
.button *,
button * {
  pointer-events: none;
}
a.stylized.fancy,
.button.fancy,
button.fancy {
  font-family: "FuturaPTDemi", serif;
  padding: 10px 20px;
  border-radius: 25px;
  color: white;
  background: var(--application-link-color);
}
a.stylized.fancy.red,
.button.fancy.red,
button.fancy.red {
  background: #e50046;
}
a.stylized.underlined,
.button.underlined,
button.underlined {
  color: #32edff;
  border-bottom: 2px solid;
}
a.stylized.u,
.button.u,
button.u {
  text-decoration: underline;
}
a.stylized:not(.fancy).red,
.button:not(.fancy).red,
button:not(.fancy).red {
  color: #e50046;
}

i {
  width: 2em;
  height: 2em;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--i-background);
}
i.white {
  --i-background: white;
  color: #00bce8;
}
i.blue {
  --i-background: #00bce8;
  color: white;
}
i.ring {
  position: relative;
}
i.ring::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  border: 2px solid var(--i-background);
}

#identificator {
  position: fixed;
  bottom: 10px;
  right: 10px;
  pointer-events: none;
  z-index: 9999999;
}
#identificator::after {
  content: "shared";
  color: white !important;
  background: black !important;
}

form label {
  display: flex;
  flex-direction: column;
  font-family: "FuturaPT", serif;
  font-size: 1.3em;
  width: 100%;
}
form label span:first-of-type:after {
  content: ":";
}
form label span.required-message {
  color: red;
  display: none;
  font-size: 0.8em;
}
form label input,
form label textarea,
form label select {
  border: none;
  background: white;
  font-family: "FuturaPTBook", serif;
  font-size: 1em;
  border-bottom: 2px solid #ccc;
  outline: none;
  padding: 5px 10px;
  color: #666;
  min-height: 50px;
}
form label input:focus,
form label textarea:focus,
form label select:focus {
  color: #000;
  border-color: var(--application-link-color);
}
form label input[invalid],
form label textarea[invalid],
form label select[invalid] {
  border-color: red;
}
form label textarea {
  max-width: 100%;
  min-width: 100%;
  height: 150px;
  resize: none;
}

[data-dialog] * {
  pointer-events: none;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.blue-gradient {
  background: #1293c7;
  background: linear-gradient(78deg, #1293c7, #00d4ff);
}

.contrast-bright {
  --header-color: white;
  --text-color: white;
  color: var(--text-color);
}
.contrast-bright hr {
  background: #616161;
  border: 2px solid #616161;
}

.contrast-dark {
  --header-color: black;
  --text-color: #999999;
  color: var(--text-color);
}
.contrast-dark hr {
  background: rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(0, 0, 0, 0.2);
}

.flex-list {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
.flex-list > * {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 10px;
  flex: 1;
}
.flex-list > *.justify-start {
  justify-self: flex-start;
}
.flex-list > *.justify-end {
  justify-self: flex-end;
}
.flex-list > * .title {
  font-size: 1.3em;
}
.flex-list > * i {
  margin: auto;
}
.flex-list > * p:not(.title):not(.section-subheader) {
  font-family: "FuturaPTBook", serif;
}
.flex-list > * p:not(.title) {
  margin: 0;
}
.flex-list.center > * {
  align-items: center;
  text-align: center;
}
.flex-list.row {
  flex-direction: row;
}
.flex-list.column {
  flex-direction: column;
}
.flex-list.wrap {
  flex-wrap: wrap;
}
.flex-list.justify-start > * {
  justify-content: flex-start;
}
.flex-list.justify-end > * {
  justify-content: flex-end;
}
.flex-list.align-end > * {
  align-items: flex-end;
}
.flex-list.align-start > * {
  align-items: flex-start;
}
.flex-list.align-center > * {
  align-items: center;
}
.flex-list:not(.column) > *:not(:last-of-type) {
  margin: var(--list-item-margin, 0 10px 0 0);
}

.service-label {
  display: flex;
  align-items: center;
}

.service-label .tooltip {
  display: flex;
  margin-left: 5px;
}

.tooltip {
  display: inline-block;
  cursor: help;
  position: relative;
  z-index: 2;
}
.tooltip > span {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 10px;
  background: #333;
  color: #ccc;
  transform: translate(-50%, calc(-100% - 8px));
  display: none;
}
.tooltip > span::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #333;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%) rotate(45deg);
}
.tooltip > span.tooltip-content {
  text-align: center;
  color: #ccc;
  min-width: 200px;
}
.tooltip:hover > span {
  display: block;
}

@keyframes toast {
  0% {
    transform: translateY(100px);
    opacity: 0.5;
  }
  20% {
    transform: translateY(0);
    opacity: 1;
  }
  80% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-100px);
    opacity: 0;
  }
}
.toast {
  opacity: 0.5;
  transform: translateY(100px);
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: white;
  box-shadow: 0 1px 2px #ccc;
  color: var(--text-color);
  font-family: "FuturaPTDemi", serif;
  z-index: 99999;
  padding: 10px;
  font-size: 1.2em;
  animation: toast 3s ease-in-out forwards;
}

.grid-table {
  display: grid;
  grid-gap: 2px 5px;
  overflow: hidden;
}

.table-wrapper {
  position: relative;
}

.grid-label-value {
  grid-template-columns: auto 1fr;
}
.grid-label-value .label {
  color: var(--text-color);
  font-family: "FuturaPTBook", serif;
}
.grid-label-value .value {
  color: var(--application-link-color);
  font-family: "FuturaPT", serif;
}

.image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dialog {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  display: none;
  z-index: 999;
}
.dialog > div {
  background: white;
  color: var(--text-color);
  max-width: 80vw;
  max-height: 80vh;
  min-height: 65vh;
  position: relative;
}
.dialog .content {
  overflow: auto;
  flex: 1;
  display: block;
}
.dialog .close {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.dialog .close svg {
  font-size: 2em;
}
.dialog aside {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.dialog .tooltip {
  margin: 0 5px;
}
.dialog .tooltip svg {
  color: #ccc;
}
.dialog p {
  text-align: justify;
}

@keyframes fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fade {
  animation: fade 0.4s alternate ease-in-out;
}

@keyframes count {
  0% {
    transform: translateY(0%);
    opacity: 1;
  }
  50% {
    transform: translateY(20%);
    opacity: 0.5;
  }
  51% {
    transform: translateY(-30%);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.count {
  animation: count 0.5s forwards;
  display: inline-block;
}

/* === === === === === === === === ===
				Sprites
 === === === === === === === === === */
.ground {
  width: 1157px;
  height: 596px;
  background: url("../images/city_atlas.png") 0 -305px;
}

.park {
  width: 202px;
  height: 125px;
  background: url("../images/city_atlas.png") -1095px -147px;
}

.tree-rect {
  width: 70px;
  height: 52px;
  background: url("../images/city_atlas.png") -966px -30px;
}

.tree-round {
  width: 51px;
  height: 44px;
  background: url("../images/city_atlas.png") -1036px -36px;
}

.tree-big {
  width: 54px;
  height: 46px;
  background: url("../images/city_atlas.png") -1087px -36px;
}

.car-black {
  width: 50px;
  height: 34px;
  background: url("../images/city_atlas.png") -1350px -137px;
}

.car-red {
  width: 44px;
  height: 33px;
  background: url("../images/city_atlas.png") -1143px -31px;
}

.car-white {
  width: 39px;
  height: 30px;
  background: url("../images/city_atlas.png") -1141px 0;
}

.street-lights {
  width: 29px;
  height: 63px;
  background: url("../images/city_atlas.png") -937px -19px;
}

.traffic-lights {
  width: 23px;
  height: 59px;
  background: url("../images/city_atlas.png") -914px -23px;
}

.hotel {
  width: 187px;
  height: 273px;
  background: url("../images/city_atlas.png") 0 0;
}

.arena {
  width: 388px;
  height: 282px;
  background: url("../images/city_atlas.png") -186px -23px;
}
.arena button {
  transform: translate(-70px, 100px);
}

.shopping-mall {
  width: 219px;
  height: 165px;
  background: url("../images/city_atlas.png") -574px -90px;
}

.garage {
  width: 302px;
  height: 206px;
  background: url("../images/city_atlas.png") -793px -82px;
}
.garage button {
  transform: translate(222px, 40px);
}

.gas-station {
  width: 169px;
  height: 137px;
  background: url("../images/city_atlas.png") -1205px 0;
}

.flats {
  width: 205px;
  height: 300px;
  background: url("../images/city_atlas.png") -1196px -272px;
}

.office {
  width: 219px;
  height: 286px;
  background: url("../images/city_atlas.png") -1181px -574px;
}

.house-1 {
  width: 104px;
  height: 81px;
  background: url("../images/city_atlas.png") -810px 0;
}

.house-2 {
  width: 115px;
  height: 89px;
  background: url("../images/city_atlas.png") -695px 0;
}

.couple-1 {
  width: 39px;
  height: 43px;
  background: url("../images/city_atlas.png") -574px -255px;
}

.couple-2 {
  width: 34px;
  height: 50px;
  background: url("../images/city_atlas.png") -1299px -137px;
}

.couple-3 {
  width: 24px;
  height: 50px;
  background: url("../images/city_atlas.png") -1297px -187px;
}

.couple-4 {
  width: 34px;
  height: 54px;
  background: url("../images/city_atlas.png") -1321px -187px;
}

.couple-5 {
  width: 26px;
  height: 51px;
  background: url("../images/city_atlas.png") -1353px -171px;
}

.helicopter {
  width: 84px;
  height: 64px;
  background: url("../images/city_atlas.png") -1095px -83px;
}

.cookie {
  width: 110px;
  height: 69px;
  background: url("../images/city_atlas.png") -583px -20px;
}

.flipX {
  transform: scaleX(-1);
}

.flipY {
  transform: scaleY(-1);
}

.flip {
  transform: scale(-1);
}

/* === === === === === === === === ===
			Cookie consent
 === === === === === === === === === */
.cc-window {
  position: fixed;
  bottom: 0;
  left: 0;
  width: calc(100% - var(--home-aside-panel-width));
  z-index: 999;
  padding: 1em;
  background: var(--application-header-dark-text-color);
  display: flex;
  transition: 0.5s all;
}
.cc-window.cc-invisible {
  bottom: -500px;
}
.cc-window .cc-revoke {
  display: none;
}
.cc-window .cc-message {
  color: var(--application-header-light-text-color);
  flex: 2 2;
}
.cc-window .cc-highlight {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  flex: 1 1;
}
.cc-window .cc-btn {
  background: var(--application-hover-background-color);
  border: none;
  border-radius: 25px;
  padding: 0.8em 1.2em;
  color: var(--application-hover-text-color);
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  box-sizing: initial;
  margin-right: 1em;
  outline: none;
  text-align: center;
  white-space: nowrap;
}
.cc-window .cc-btn.cc-deny {
  background: var(--application-small-text-color);
  font-size: 0.8em;
  color: var(--application-header-dark-text-color);
}
.cc-window .cc-compliance {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* === === === === === === === === ===
				Header
 === === === === === === === === === */
header {
  --hover-color: black;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  padding: 10px;
  z-index: 99;
  font-family: "FuturaPTDemi", serif;
  transition: 0.5s background-color;
  font-size: 1.3em;
}
header.backdrop {
  --hover-color: var(--application-link-color);
  background: rgba(0, 0, 0, 0.8);
}
header.shift {
  --home-aside-panel-width: 0;
}
header nav {
  padding-left: 5%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, auto) 1fr auto var(--home-aside-panel-width);
  grid-template-areas: ". . . . . . lang .";
  grid-gap: 40px;
  justify-content: center;
  align-items: center;
  color: white;
}
header nav a {
  text-transform: capitalize;
}
header nav a > img {
  transition: 1s all;
  filter: contrast(0) brightness(2);
}
header nav a[active], header nav a:hover {
  color: var(--hover-color);
}
header nav a[active] > img, header nav a:hover > img {
  filter: contrast(0) brightness(2);
}
header nav .lang-picker {
  grid-area: lang;
  min-width: 75px;
  position: relative;
  height: 100%;
}
header nav .lang-picker .language-options {
  display: grid;
  grid-template-areas: "active";
  position: absolute;
  top: 50%;
  transform: translateY(-1.7em);
  width: 100%;
  padding: 15px 10px 10px;
}
header nav .lang-picker .language-options:hover {
  background: rgba(0, 0, 0, 0.5);
}
header nav .lang-picker .language-options button {
  font-size: 1em;
  padding: 5px 10px;
  display: flex;
}
header nav .lang-picker .language-options button:not(.active) {
  display: none;
}
header nav .lang-picker .language-options button.active {
  grid-area: active;
}
header nav .lang-picker .language-options button img {
  border-radius: 50%;
  height: 32px;
  width: 32px;
}
header nav .lang-picker .language-options:hover button {
  display: flex;
}
header nav .lang-picker .language-options:hover button span {
  display: block;
}
header #toggle-nav {
  position: fixed;
  right: 1em;
  top: 1em;
  width: 1em;
  height: 1em;
  box-sizing: initial;
  z-index: 20;
  justify-content: center;
  font-size: 1em;
  padding: 0.3em;
  display: none;
  -webkit-box-shadow: var(--application-box-shadow-2p);
  box-shadow: var(--application-box-shadow-2p);
  border-radius: 50%;
}

/* === === === === === === === === ===
				Content
 === === === === === === === === === */
section#index {
  display: flex;
  min-height: 100vh;
}
section#index #parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section#index [background=dc-fast-charger] {
  background-image: url(../images/nikola_charger_background.png);
  background-position: 1vw 0;
}
section#index [background=ac-fast-charger] {
  background-image: url(../images/nikola_charger_background_2.jpg);
  background-position: 7vw 0;
}
section#index [background=wallbox] {
  background-image: url(../images/nikola_charger_background_3.jpg);
  background-position: 19vw 0;
}
section#index [background=dc-wallbox] {
  background-image: url(../images/nikola_charger_background_4.jpg);
  background-position: 14vw 0;
}
section#index.content {
  display: flex;
  position: relative;
}
section#index.content .left-side-container {
  position: relative;
  overflow: hidden;
  margin-right: auto;
}
section#index.content .left-side-container > .bolt {
  position: absolute;
  font-size: 30em;
  color: transparent;
  opacity: 0.2;
  pointer-events: none;
}
section#index.content .left-side-container > .bolt:first-of-type {
  top: -0.1em;
  left: -0.5em;
}
section#index.content .left-side-container > .bolt:last-of-type {
  bottom: -0.1em;
  right: -0.5em;
}
section#index.content .left-side-container > .bolt path {
  fill: none;
  stroke: white;
  stroke-width: 1px;
  stroke-linejoin: round;
}
section#index.content .left-side-container .title-container {
  margin-left: 5vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 66px;
  margin-top: 50px;
}
section#index.content .left-side-container .title-container h1 {
  font-size: 4em;
}
section#index.content .left-side-container .title-container p {
  font-size: 1.4em;
}
section#index.content .left-side-container .title-container .title {
  font-size: 1.9em;
}
section#index.content .left-side-container .title-container .performance {
  margin: 20px 0 0 -10px;
  --list-item-margin: 0 40px 0 0;
}
section#index.content .left-side-container .title-container .performance > * {
  flex: unset;
}
section#index.content .left-side-container .title-container .performance i {
  margin: 0 0 auto;
  font-size: 1.5em;
}
section#index.content .left-side-container .title-container .performance .title {
  margin-top: 15px;
}
section#index.content .left-side-container .title-container .performance p:not(.title) {
  margin: 0;
}
section#index.content .left-side-container .title-container button.fancy {
  font-size: 1.2em;
  min-width: 150px;
}
section#index.content .left-side-container .carousel {
  overflow: hidden;
  width: 100%;
  max-width: 450px;
  margin-top: -15px !important;
}
section#index.content .left-side-container .carousel .carousel-wrapper {
  display: flex;
  flex-wrap: nowrap;
  transition: 0.5s all ease-in-out;
  width: 100%;
  flex: 1;
  position: relative;
}
section#index.content .left-side-container .carousel .carousel-wrapper > * {
  min-width: 450px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
section#index .spacer {
  flex: 5 1 5%;
}
section#index aside {
  --background: #f8f8f8;
  grid-area: aside;
  background: var(--background);
  position: relative;
  padding: 10px;
  z-index: 99;
  width: var(--home-aside-panel-width);
}
section#index aside .title {
  font-size: 1em;
}
section#index aside img,
section#index aside .img {
  height: 100px;
  margin: 10px 0;
}
section#index aside .img {
  width: 50%;
}
section#index aside .dc-fast-charger {
  background: url(../images/nikola_charger.png) no-repeat;
  background-size: cover;
}
section#index aside .ac-fast-charger {
  background: url(../images/nikola_stand.png) no-repeat;
  background-size: cover;
  background-position-y: -20px;
}
section#index aside button {
  margin-top: 10px;
  font-size: 1.1em;
  padding: 0;
}
section#index aside button.active {
  position: relative;
}
section#index aside button.active::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--background);
  width: 40px;
  height: 40px;
  z-index: -1;
}
section#nikola {
  padding: 10% 10% 0;
  min-height: 0;
}
section#nikola h1 {
  font-size: 3.2em;
}
section#nikola h3 {
  font-size: 1.9em;
  color: var(--application-header-light-color);
}
section#nikola > .flex-list {
  align-items: flex-start;
}
section#nikola .aside p {
  text-align: justify;
}
section#nikola p {
  margin: 5px 0;
}
section#nikola p:not(.title):not(.section-subheader) {
  color: var(--application-text-light-color);
}
section#nikola .nikola {
  margin: 20px 0 40px;
}
section#nikola button.fancy {
  margin-top: 40px;
}
section#forWhom {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
section#forWhom .flex-list {
  margin: 100px 0;
}
section#forWhom .flex-list > div {
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
section#forWhom .city {
  position: relative;
  margin: 20px auto;
  width: 1157px;
  height: 596px;
  transform: scaleX(0.9);
}
section#forWhom .city .highlight {
  pointer-events: none; /* Remove after completing dialogs */
  cursor: pointer;
  transition: 0.2s;
  -webkit-tap-highlight-color: transparent;
}
section#forWhom .city .highlight:hover {
  z-index: 10;
  filter: drop-shadow(2px 4px 6px black);
  transform: scale(1.1);
}
section#forWhom .city .highlight button {
  z-index: 2;
}
section#forWhom .city > *,
section#forWhom .city .houses > * {
  position: absolute;
  top: var(--y, 0);
  left: var(--x, 0);
}
section#forWhom .city > *:not(.highlight) {
  pointer-events: none;
}
section#forWhom .city .houses {
  width: 287px;
  height: 175px;
}
section#forWhom .city .houses > * {
  pointer-events: none;
}
section#forWhom .city .houses button {
  transform: translate(-20px, 70px);
}
section#steps {
  padding: 5% 10% 8%;
  min-height: 0;
}
section#steps h1 {
  margin: 40px;
  text-align: center;
}
section#steps i {
  margin: 0 0 30px 0;
}
section#steps p {
  font-family: "FuturaPT", serif;
  color: #5f5f53;
}
section#steps .steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-gap: 20px;
}
section#steps .brands {
  margin-top: 40px;
  justify-content: center;
  align-items: center;
}
section#steps .brands > div > p {
  color: var(--text-color);
}
section#steps .brands > a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
section#steps .brands > a img {
  margin-right: 30px;
}
section#steps .title {
  font-family: "FuturaPTDemi", serif;
}
section#products {
  padding: 10%;
  background: #585858;
  min-height: 100vh;
}
section#products h1 {
  text-align: center;
  font-size: 3.2em;
  margin-bottom: 40px;
}
section#products .title {
  font-size: 2.5em;
  font-family: "FuturaPTDemi", serif;
  margin: 20px;
  text-align: center;
}
section#products .image-wrapper {
  margin: auto 0;
}
section#products img {
  z-index: 1;
  cursor: pointer;
}
section#products .shadow {
  position: absolute;
  box-shadow: -10px 0px 30px 8px #000000;
  height: 0;
  bottom: 13%;
  left: 25%;
  right: 24%;
}
section#products .details {
  display: flex;
  flex-direction: column;
}
section#products .switch-wrapper {
  border: 2px solid var(--application-link-color);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  margin: 10px auto 10px 0;
}
section#products .switch-wrapper button {
  padding: 12px 26px;
  margin: 0;
  font-size: 1.3em;
}
section#products .switch-wrapper button.active {
  background: var(--application-link-color);
  color: var(--text-color);
}
section#products .product-grid {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  grid-gap: 3%;
  /*.specs {
  	margin: 20px 0;

  	& > div {
  		display: flex;
  		padding: 5px 10px;

  		&:nth-of-type(2n) {
  			background: rgba(255,255,255,0.1);
  		}

  		&:nth-of-type(2n + 1) {
  			background: rgba(0,0,0,0.1);
  		}

  		.label {
  			margin-right: 10px;
  			flex: 1;
  		}

  		.value {
  			flex: 1;
  			color: #32edff;
  		}
  	}

  	p {
  		margin: 0;
  	}
  }*/
}
section#products .product-grid .details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section#products .more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
section#products .more button {
  padding: 0;
  font-size: 1.3em;
}
section#products .more hr {
  margin: 0 10px;
}
section#services {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 715px;
  background: white;
  z-index: 11;
}
section#services .cars-background {
  position: absolute;
  right: 0;
  bottom: 0;
}
section#services h1 {
  text-align: center;
  margin: 40px;
}
section#services .flex-list {
  position: relative;
  margin: auto;
  z-index: 1;
}
section#services .flex-list.carousel > div:first-of-type, section#services .flex-list.carousel > div:last-of-type {
  flex: 0;
}
section#services .flex-list .options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 10px;
}
section#services .flex-list .options > div {
  --text-color: #666666;
  background: white;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 40px;
  box-shadow: 0 1px 2px #ccc;
}
section#services .flex-list .options > div i {
  margin: 0 auto 0 0;
}
section#services .flex-list .options > div p.title {
  margin-top: 0;
}
section#services .flex-list .options > div p.section-subheader {
  margin-top: 20px;
}
section#services .flex-list .options > div p:not(.title):not(.section-subheader) {
  margin-top: auto;
  padding-top: 20px;
}
section#services .flex-list i {
  margin-left: 0;
}
section#interested {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
  position: relative;
  overflow: hidden;
}
section#interested #evsCounter > span:nth-last-child(3n) {
  margin-left: 0.3em;
}
section#interested .sprites-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
section#interested .sprites-wrapper svg {
  transform: scale(1.1);
}
section#interested .sprites-wrapper .sprites {
  position: absolute;
  top: 0;
  left: -418px;
}
section#interested .sprites-wrapper .sprites > div {
  position: absolute;
  top: var(--y, 0);
  left: var(--x, 0);
}
section#interested > div {
  position: absolute;
  text-align: center;
}
section#interested > div p {
  margin: 0;
  font-size: 1.3em;
}
section#interested > div .title {
  font-size: 5em;
}
section#interested > div .section-subheader {
  font-size: 1.9em;
  color: white;
}
section#interested button {
  margin-top: 20px;
  font-size: 1.1em;
}
section#contact {
  background: #f7f8f8;
  padding-right: 10%;
  min-height: 0;
  position: relative;
  z-index: 11;
}
section#contact .icon {
  flex: 0;
}
section#contact h1 {
  margin: 40px 0;
}
section#contact .contact-details {
  flex: 1;
}
section#contact .contact-details > * {
  flex: 0;
  padding-left: 0;
}
section#contact .contact-details .visit-links {
  margin-top: auto;
}
section#contact .details .title {
  margin: 0;
}
section#contact form {
  width: 100%;
}
section#contact form > * {
  width: 100%;
}

.dialog .content {
  padding: 40px;
}
.dialog .content .dialog-title {
  font-size: 2em;
  font-family: "FuturaPTDemi", serif;
}
.dialog .content .dialog-title a {
  font-size: 0.5em;
}
.dialog .content h1 {
  font-size: 1.5em;
  color: var(--text-color);
}
.dialog .sprites-wrapper,
.dialog .sprites-wrapper > * {
  position: absolute;
  top: var(--y, 0);
  left: var(--x, 0);
}
.dialog .city > * {
  position: absolute;
  top: var(--y, 0);
  left: var(--x, 0);
}
.dialog#interested-dialog aside img {
  max-width: 200px;
}
.dialog#references-dialog .content h2 {
  color: #00bce8;
}
.dialog#references-dialog .content .gallery {
  margin-top: 40px;
}
.dialog#references-dialog aside {
  justify-content: space-around;
  padding: 0;
}
.dialog#references-dialog aside img {
  width: 100%;
}
.dialog#references-dialog aside button {
  width: 100%;
  flex: 1;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dialog#references-dialog aside button.active {
  background: white;
  box-shadow: 0 3px 2px -1px #9f9f9f;
}
.dialog#references-dialog aside .lg-systems {
  height: unset;
}
.dialog#references-dialog .reference-container {
  max-width: 200px;
}
.dialog#about-dialog .content {
  position: relative;
}
.dialog#about-dialog .content .title {
  font-size: 3em;
  margin-top: 0;
}
.dialog#about-dialog .content .section-subheader {
  margin-bottom: 40px;
}
.dialog#about-dialog .content .green-logo {
  height: 80px;
  position: absolute;
  right: 40px;
  top: 40px;
}
.dialog#about-dialog .content p {
  text-align: justify;
}
.dialog#products-dc-fast-charger-dialog h1, .dialog#products-wallbox-dialog h1, .dialog#products-dc-wallbox-dialog h1, .dialog#products-ac-fast-charger-dialog h1 {
  margin-top: 40px;
}
.dialog#products-dc-fast-charger-dialog .spec-table {
  grid-template-columns: repeat(4, 1fr);
}
.dialog#products-dc-fast-charger-dialog .spec-table.stripes > *:nth-child(8n+4) {
  background: rgba(0, 0, 0, 0.1);
}
.dialog#products-dc-fast-charger-dialog .spec-table.stripes > *:nth-child(8n+3) {
  background: rgba(0, 0, 0, 0.1);
}
.dialog#products-dc-fast-charger-dialog .spec-table.stripes > *:nth-child(8n+2) {
  background: rgba(0, 0, 0, 0.1);
}
.dialog#products-dc-fast-charger-dialog .spec-table.stripes > *:nth-child(8n+1) {
  background: rgba(0, 0, 0, 0.1);
}
.dialog#products-wallbox-dialog .spec-table {
  grid-template-columns: repeat(2, 1fr);
}
.dialog#products-wallbox-dialog .spec-table.stripes > *:nth-child(4n+2) {
  background: rgba(0, 0, 0, 0.1);
}
.dialog#products-wallbox-dialog .spec-table.stripes > *:nth-child(4n+1) {
  background: rgba(0, 0, 0, 0.1);
}
.dialog#products-ac-fast-charger-dialog .spec-table {
  grid-template-columns: repeat(3, 1fr);
}
.dialog#products-ac-fast-charger-dialog .spec-table.stripes > *:nth-child(6n+3) {
  background: rgba(0, 0, 0, 0.1);
}
.dialog#products-ac-fast-charger-dialog .spec-table.stripes > *:nth-child(6n+2) {
  background: rgba(0, 0, 0, 0.1);
}
.dialog#products-ac-fast-charger-dialog .spec-table.stripes > *:nth-child(6n+1) {
  background: rgba(0, 0, 0, 0.1);
}
.dialog#products-dc-wallbox-dialog .spec-table {
  grid-template-columns: repeat(2, 1fr);
}
.dialog#products-dc-wallbox-dialog .spec-table.stripes > *:nth-child(4n+2) {
  background: rgba(0, 0, 0, 0.1);
}
.dialog#products-dc-wallbox-dialog .spec-table.stripes > *:nth-child(4n+1) {
  background: rgba(0, 0, 0, 0.1);
}
.dialog .spec-table {
  display: grid;
  font-family: "FuturaPTDemi", serif;
}
.dialog .spec-table label {
  font-family: "FuturaPT", serif;
  padding: 5px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #333;
}
.dialog .spec-table > span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.dialog .spec-table span:not(.tooltip-content) {
  padding: 5px;
  color: var(--application-link-color);
}
.dialog .spec-table .value {
  flex: 1;
  color: #32edff;
  display: flex;
}
.dialog .spec-table .tooltip {
  display: flex;
  align-items: center;
}
.dialog .spec-table i {
  margin: 0;
}
.dialog .spec-table .ok {
  color: #4caf50;
}
.dialog .spec-table .error {
  color: #e74c3c;
}
.dialog .table-head {
  position: sticky;
  top: -40px;
  font-size: 3em;
  background: white;
  z-index: 1;
  box-shadow: 0 3px 2px -1px #ccc;
}
.dialog .table-head > *,
.dialog .table-head label {
  display: flex;
  align-items: flex-end;
}
.dialog .table-head div {
  flex-direction: column-reverse;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 5px;
}
.dialog .table-head div span,
.dialog .table-head div label {
  padding: 0;
}
.dialog .table-head div span {
  font-size: 0.3em;
}

[hidden] {
  display: none;
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
button[disabled] {
  background: #9f9f9f;
  pointer-events: none;
  cursor: not-allowed;
}
button[disabled] svg[hidden] {
  display: inline-block;
  animation: 2s fa-spin infinite linear;
}

/* === === === === === === === === ===
			Media <1300px
 === === === === === === === === === */
@media screen and (max-width: 1300px) {
  #identificator {
    content: "1300px";
  }
  section#forWhom .city {
    display: block;
    justify-content: center;
    align-items: center;
    height: unset;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  section#forWhom .city > * {
    position: initial;
    top: 0;
    left: 0;
    margin: 50px auto;
  }
  section#forWhom .city .prop {
    display: none;
    visibility: hidden;
  }
  section#forWhom .city .houses {
    position: relative;
  }
  section#forWhom .city .arena {
    transform: scale(0.8);
  }
  section#forWhom .city .highlight {
    position: relative;
  }
  section#forWhom .city .highlight button {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%) !important;
  }
  .dialog aside {
    display: none;
  }
  .dialog#references-dialog > .flex-list {
    justify-content: flex-start;
    flex-direction: column-reverse;
    height: unset;
  }
  .dialog#references-dialog .reference-container {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .dialog#references-dialog .content {
    padding-top: 0;
  }
  .dialog#references-dialog aside {
    display: flex;
    flex-direction: row;
    padding-top: 70px;
  }
  .dialog#references-dialog aside button {
    min-width: 150px;
  }
  .dialog#references-dialog aside button img {
    width: unset;
    max-height: 100px;
    max-width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  section#products .product-grid {
    grid-template-columns: 1fr auto 1fr;
  }
  section#products .product-grid hr:nth-of-type(2n) {
    display: none;
  }
}
/* === === === === === === === === ===
			Media <1000px
 === === === === === === === === === */
@media screen and (max-width: 1000px) {
  :root {
    --home-aside-panel-width: 200px;
    --header-height: 0;
  }
  #identificator::after {
    content: "1000px";
  }
  body header.backdrop {
    background: transparent;
  }
  body header nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    grid-template-columns: 1fr;
    grid-template-areas: "." "." "." "." "." "." "." "lang" ".";
    padding: 10%;
    background: rgba(0, 0, 0, 0.9);
    grid-gap: 10px;
    display: none;
  }
  body header nav > * {
    justify-self: center;
    padding: 10px;
  }
  body header nav img {
    transform: scale(1.2);
  }
  body header nav .lang-picker .language-options {
    display: flex;
    position: static;
    width: 100%;
  }
  body header nav .lang-picker .language-options:hover {
    background: transparent;
  }
  body header nav .lang-picker .language-options button:not(.active) {
    filter: grayscale(1);
  }
  body header nav .lang-picker .language-options button:not(:active) {
    display: flex;
  }
  body header nav .lang-picker .language-options button:not(:last-of-type) {
    margin-right: 100px;
  }
  body header[opened] nav {
    display: grid;
  }
  body header #toggle-nav {
    display: flex;
  }
  body section button {
    font-size: 1em;
  }
  body section#index .performance,
body section#index aside {
    display: none;
  }
  body section#index .title-container {
    padding: 0 0 100px 0 !important;
  }
  body section#index .carousel {
    max-width: 350px;
  }
  body section#index .carousel .carousel-wrapper > * {
    min-width: 350px;
  }
  body section#nikola .image-wrapper {
    align-items: center;
  }
  body section#nikola .image-wrapper img {
    height: 300px;
  }
  body section#steps .steps {
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  body section#steps .steps > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  body section#steps .brands {
    flex-direction: column;
  }
  body section#products .product-grid {
    grid-template-columns: 1fr;
    grid-gap: 0 5%;
    align-items: center;
    justify-content: center;
  }
  body section#products .product-grid > hr {
    display: none;
  }
  body section#products .product-grid .title {
    text-align: center;
    margin-top: 110px;
  }
  body section#products .product-grid .image-wrapper {
    min-width: 130px;
  }
  body section#products .product-grid .image-wrapper img {
    width: unset;
    max-height: 300px;
  }
  body section#products .product-grid .more {
    font-size: 1.3em;
  }
  body section#services .options {
    grid-template-columns: repeat(auto-fit, 1fr) !important;
    grid-gap: 40px !important;
  }
  body section#interested > div {
    font-size: 0.6em;
  }
  body section#contact {
    padding-right: 0;
  }
  body section#contact #map {
    flex: 100%;
  }
  body .dialog {
    overflow: auto;
  }
  body .dialog > * {
    width: 100%;
    max-width: unset;
    max-height: unset;
    min-height: 100%;
  }
  body .dialog .close {
    position: fixed;
  }
  body .dialog#references-dialog {
    align-items: flex-start;
  }
  body .dialog#about-dialog .green-logo {
    position: static !important;
  }
  body .dialog#about-dialog .content {
    display: block;
  }
  body .dialog .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
    overflow: visible;
  }
  body .dialog .content .dialog-title {
    margin-right: 40px;
  }
  body .dialog .table-wrapper {
    background: white;
    overflow: auto;
    height: 100%;
    width: 100%;
  }
  body .dialog .table-wrapper .table-head {
    top: 0;
    font-size: 1.4em;
  }
  body .dialog .table-wrapper .table-head > * {
    background: white;
    box-shadow: 0 3px 2px -1px #ccc;
  }
  body .dialog .table-wrapper .spec-table > * {
    min-width: 200px;
  }
  body .dialog .close {
    top: 20px;
    right: 20px;
    z-index: 1;
  }
}
@media screen and (max-width: 400px) {
  html {
    font-size: 0.8em;
  }
}
.gallery .thumbnails {
  display: flex;
  flex-wrap: wrap;
}
.gallery .thumbnails .image-wrapper {
  height: 20vh;
  overflow: hidden;
}
.gallery .thumbnails .image-wrapper:not(:last-of-type) {
  margin-right: 10px;
  margin-bottom: 10px;
}
.gallery .thumbnails .image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery > .thumbnails .image-wrapper {
  width: 20vh;
}
.gallery .gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: black;
}
.gallery .gallery-modal .content {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.gallery .gallery-modal .content button.close {
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 999;
}
.gallery .gallery-modal .content .image-wrapper {
  flex: 1;
  position: relative;
}
.gallery .gallery-modal .content .image-wrapper .navigation {
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.gallery .gallery-modal .content .image-wrapper .navigation button {
  font-size: 1.3em;
  pointer-events: auto;
}
.gallery .gallery-modal .content .image-wrapper img {
  max-width: 100%;
  max-height: 70vh;
}
.gallery .gallery-modal .content .image-wrapper .alt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 5px;
  background: rgba(0, 0, 0, 0.5);
}
.gallery .gallery-modal .content .thumbnails {
  transform: scale(0.8);
  overflow: hidden;
  justify-content: center;
}
.gallery .gallery-modal .content .thumbnails .image-wrapper:not([highlight]):not(:hover) {
  filter: brightness(0.5);
}

.recaptcha-text a {
  text-decoration: underline;
}

.grecaptcha-badge {
  visibility: hidden;
}

/*# sourceMappingURL=style.css.map */
