/*
  2. Remove default margin
*/
* {
  margin: 0; }

/*
  3. Allow percentage-based heights in the application
*/
html, body {
  height: 100%; }

/*
  Typographic tweaks!
  4. Add accessible line-height
  5. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased; }

/*
  6. Improve media defaults
*/
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%; }

/*
  7. Remove built-in form typography styles
*/
input, button, textarea, select {
  font: inherit; }

/*
  8. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word; }

body {
  margin: 0;
  background: black;
  font-family: "tablet-gothic", sans-serif;
  color: #FFFFFF; }

.preloader {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: black; }

.preloader__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 5px solid #FFFFFF;
  box-shadow: #ff8200 0 0 6px 1px;
  width: 18.75em;
  height: 18.75em;
  transform: translate(-50%, -50%);
  animation-name: preloader-circle;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center; }
  .preloader__circle span {
    font-size: 1.875em;
    font-weight: 500;
    text-align: center;
    display: block; }

@keyframes preloader-circle {
  0% {
    transform: translate(-50%, -50%) scale(1.1); }
  50% {
    transform: translate(-50%, -50%) scale(0.9); }
  100% {
    transform: translate(-50%, -50%) scale(1.1); } }
.icon {
  width: 5em;
  height: 5em;
  pointer-events: auto;
  position: relative;
  border-radius: 50%; }
  .icon b {
    background: rgba(0, 0, 0, 0.5) none center center no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    box-shadow: #ff8200 0 0 6px 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    z-index: 2; }
  .icon i {
    background: transparent none center center no-repeat;
    width: 3.625em;
    height: 3.625em;
    transition: filter 0.3s;
    z-index: 2; }
  .icon u {
    display: block;
    pointer-events: none;
    background: linear-gradient(360deg, #00D1FF 0%, rgba(0, 209, 255, 0) 100%);
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    transition: opacity 0.3s;
    opacity: 0; }

.icon--active b {
  background: #FF8200; }
.icon--active i {
  filter: brightness(0) invert(1); }

@media print, screen and (min-width: 1024px) {
  .icon:hover b {
    background: #FF8200; }
  .icon:hover i {
    filter: brightness(0) invert(1); } }
.icon--charger:before {
  height: 11.25em; }

.icon--infotainment:before {
  height: 8.75em; }

.icon--key:before {
  height: 10em; }

.icon--active {
  z-index: 10 !important; }
  .icon--active u {
    opacity: 1; }

.container {
  transition: filter 0.5s;
  filter: blur(20px); }

.body--started .container {
  filter: blur(0); }

.begin {
  cursor: pointer;
  position: fixed;
  z-index: 100;
  padding-bottom: 1.875em;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background-color 0.5s; }

.body--started .begin {
  background: transparent; }

.begin__wrap {
  padding: 2.5em; }

.begin__title {
  font-size: 2.75em;
  line-height: 1.1;
  letter-spacing: 0.00625em;
  font-weight: 500;
  margin-bottom: 0.18182em;
  transition: opacity 0.5s; }

.body--started .begin__title {
  opacity: 0; }

.begin__text {
  font-size: 1em;
  line-height: 1.1;
  transition: opacity 0.5s; }

.body--started .begin__text {
  opacity: 0; }

.begin__icon {
  font-size: 3.9em;
  margin: 1em auto;
  transition: transform 0.5s; }
  .begin__icon b {
    border-width: 5px; }

.body--started .begin__icon {
  transform: scale(0.25); }

.begin__cta {
  font-size: 1.125em;
  line-height: 1.2;
  font-weight: 700;
  background: black;
  padding: 0.61111em 2.77778em 0.72222em;
  display: inline-block;
  border: 1px solid #EEEEEE;
  box-shadow: 0px 0px 14.8px 0px #00B4DC;
  border-radius: 1.5em;
  transition: background-color 0.3s, opacity 0.5s; }
  .begin__cta:hover {
    background-color: #FF8200; }

.body--started .begin__cta {
  opacity: 0; }

body:not(.body--started2) .car__icon {
  transform: translate(50vw, 50vh) translate(-50%, -50%) !important;
  opacity: 0; }

body:not(.body--started3) .car__icon {
  transition: transform 0.2s; }
  body:not(.body--started3) .car__icon i {
    background-image: url(../images/icon-warning.svg) !important; }

.intro {
  position: absolute;
  width: 21.25em;
  box-sizing: border-box;
  top: 3.75em;
  left: 50%;
  margin-left: -10.625em;
  background: rgba(0, 0, 0, 0.5);
  padding: 1.25em 1.875em;
  border-radius: 0.5em;
  text-align: center;
  transition: opacity 0.5s; }

.body--modal-open .intro {
  opacity: 0; }

.intro__title {
  font-size: 1.5625em;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0.32em;
  letter-spacing: 0.00625em; }

.intro__text {
  font-size: 0.75em;
  line-height: 1.1; }

.modal {
  position: absolute;
  width: 56.25em;
  box-sizing: border-box;
  top: 3.125em;
  left: 50%;
  margin-left: -28.125em;
  border-radius: 0.5em;
  display: flex;
  align-items: center;
  gap: 1.875em;
  background: linear-gradient(115.4deg, #064A7F 23.42%, rgba(6, 74, 127, 0.21) 100.34%);
  box-shadow: 0px 0px 17px 0px #75E6FF;
  padding: 1.875em 2.5em; }
  @media screen and (max-width: 1023px) {
    .modal {
      width: 25em;
      margin-left: -12.5em;
      top: 1.25em; } }
  .modal:first-child {
    display: flex; }

.modal__icon {
  flex-shrink: 0;
  font-size: 1.125em; }
  @media screen and (max-width: 1023px) {
    .modal__icon {
      display: none; } }

.modal__right {
  flex: 1; }

.modal__title {
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.00625em;
  margin-bottom: 0.41667em; }

.modal__text {
  font-size: 1em;
  line-height: 1.375em; }

.modal__close {
  background: transparent url(../images/close.svg) center center no-repeat;
  background-size: 0.875em 0.875em;
  width: 3.125em;
  height: 3.125em;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  border-radius: 0.5em;
  transition: background-color 0.3s; }
  .modal__close:hover {
    background-color: rgba(255, 255, 255, 0.1); }

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