@charset "UTF-8";
@import url("../assets/font/NotoSans/NotoSans-Regular.ttf");
@import url("../assets/font/NotoSans/NotoSans-Medium.ttf");
body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: auto;
  margin: 28px 28px 28px 28px;
  color: white;
  background-color: #161718;
  font-family: "Noto Sans", sans-serif;
  -webkit-tap-highlight-color: transparent;
}

h1 {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 25px;
  font-weight: 500;
}

@media (min-width: 320px) and (orientation: landscape) {
  body {
    flex-direction: row;
    margin: 0px 18px;
    gap: 20px;
    height: 100vh;
    align-items: center;
    justify-content: center;
  }
  ::-webkit-scrollbar {
    width: 3px;
  }
  /* Track */
  ::-webkit-scrollbar-track {
    background-color: #2d2f33;
  }
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background-color: #8a8b8b;
  }
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background-color: #696969;
  }
}
.lds-ripple {
  position: relative;
  width: 67px;
  height: 67px;
  transform: scale(0.5);
  opacity: 0.5;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid #fff;
  opacity: 1;
  border-radius: 50%;
  -webkit-animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
          animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}

@-webkit-keyframes lds-ripple {
  0% {
    top: 32px;
    left: 32px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  4.9% {
    top: 32px;
    left: 32px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  5% {
    top: 32px;
    left: 32px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 62px;
    height: 62px;
    opacity: 0;
  }
}

@keyframes lds-ripple {
  0% {
    top: 32px;
    left: 32px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  4.9% {
    top: 32px;
    left: 32px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  5% {
    top: 32px;
    left: 32px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 62px;
    height: 62px;
    opacity: 0;
  }
}
progress {
  display: flex;
  position: relative;
  -webkit-appearance: none;
  height: 18px;
  width: 45px;
  background-color: #2d2f33;
  border-radius: 2px;
}
progress::-webkit-progress-bar {
  background-color: #2d2f33;
}
progress::-webkit-progress-inner-element {
  border: 2px solid #2d2f33;
  border-radius: 2px;
}
progress::-webkit-progress-value {
  background-color: #8a8b8b;
  border-radius: 1px;
}
progress:before {
  opacity: 0.5;
  position: absolute;
  top: -0.05rem;
  left: 50px;
  content: attr(value) "%";
  font-weight: 500;
}

.sr-only {
  position: absolute;
  left: -1000px;
}

section.car-header {
  display: flex;
  flex-direction: column;
  width: 100%;
}
section.car-header header {
  display: flex;
  justify-content: space-between;
}
section.car-header header article.details ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
section.car-header header article.details ol li:first-child {
  display: flex;
  justify-items: center;
  margin: 12px 0;
}
section.car-header header article.details ol li:last-child > p {
  opacity: 0.4;
  font-size: 16px;
  margin: 0;
  padding: 0;
  font-weight: 500;
}
section.car-header header article.profil {
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
section.car-header header article.profil img {
  height: 36px;
}
section.car-header header article.profil svg {
  position: absolute;
  top: 24px;
  right: 0;
}
section.car-header header article.profil svg circle {
  transform-origin: center;
}
section.car-header > img {
  width: 90%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 30px 0 40px 0;
  align-self: center;
}

@media (min-width: 320px) and (orientation: landscape) {
  section.car-header {
    height: 90vh;
  }
  section.car-header > img {
    width: 80%;
    margin: 45px 0;
  }
}
.highlighted {
  filter: drop-shadow(0 0px 10px white);
}

section.actions article.controls menu {
  display: flex;
  justify-content: space-around;
  padding: 0;
  list-style: none;
  margin: 0;
}
section.actions article.controls menu button {
  all: unset;
  display: flex;
  padding: 20px;
  cursor: pointer;
}
section.actions article.controls menu button img {
  height: 27px;
  width: 27px;
}

@media (min-width: 320px) and (orientation: landscape) {
  section.actions article.controls {
    height: 90vh;
  }
  section.actions article.controls menu {
    height: 100%;
    flex-direction: column;
    align-content: space-around;
    background-color: #2d2f33;
    border-radius: 10px;
  }
}
aside#chargeSection {
  display: none;
  flex-direction: column;
  background-color: #222223;
  border-radius: 6px;
  gap: 15px;
  padding: 20px;
  margin-top: 10px;
  direction: ltr;
}
aside#chargeSection label {
  font-size: 14px;
}
aside#chargeSection input {
  -webkit-appearance: none;
  background-color: #2c2e32;
  height: 5px;
  margin: 0;
  padding: 0;
  border-radius: 5px;
  background-image: linear-gradient(#05d780, #05d780);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  touch-action: none;
}
aside#chargeSection input::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: #e8e8e8;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
aside#chargeSection input::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}
aside#chargeSection small {
  opacity: 0.5;
}
aside#chargeSection #chargePower {
  all: unset;
  display: flex;
  background-color: #333333;
  border-radius: 4px;
  align-items: center;
  text-align: center;
  justify-content: space-between;
}
aside#chargeSection #chargePower img {
  height: 16px;
  padding: 12px 15% 12px 20px;
  cursor: pointer;
}
aside#chargeSection #chargePower img:last-child {
  transform: scaleX(-1);
}

@media (min-width: 320px) and (orientation: landscape) {
  aside#chargeSection {
    margin: 0 0 20px 0px;
  }
}
section.actions-settings nav {
  margin-top: 20px;
  height: 100%;
  overflow-x: hidden;
}
section.actions-settings nav ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: medium;
  list-style: none;
  margin: 0;
  padding: 0;
  direction: ltr;
}
section.actions-settings nav ul li {
  height: 55px;
  display: flex;
}
section.actions-settings nav ul li a {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: white;
}
section.actions-settings nav ul li a p {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-left: 15px;
  font-size: 21px;
  font-weight: 500;
  gap: 4px;
}
section.actions-settings nav ul li a p small {
  display: flex;
  align-items: center;
  height: 16px;
}
section.actions-settings nav ul li a p small span {
  font-size: 15px;
  margin: 0 3px 0 0;
  padding: 0;
  font-weight: 500;
}
section.actions-settings nav ul li a p small span::after {
  content: " ∙";
  opacity: 0.5;
}
section.actions-settings nav ul li a p small img {
  opacity: 1;
  height: 15px;
  width: 15px;
  margin: 0 8px 2px 0;
  padding: 0;
}
section.actions-settings nav ul li a p small data {
  font-size: 15px;
  opacity: 0.5;
  font-weight: 500;
}
section.actions-settings nav ul li a > img:first-child {
  height: 27px;
  width: 27px;
}
section.actions-settings nav ul li a > img:last-child {
  height: 15px;
  width: 8px;
}

@media (min-width: 320px) and (orientation: landscape) {
  section.actions-settings {
    width: 100%;
    height: 89%;
    margin-top: 0px;
    direction: rtl;
  }
  section.actions-settings nav {
    margin-top: 0px;
  }
  section.actions-settings nav ul {
    height: 100%;
    padding-left: 15px;
    gap: 5vh;
  }
  section.actions-settings nav ul li a img:last-child {
    padding-right: 10px;
  }
  section.actions-settings nav.nav-minimized {
    height: 45%;
  }
}/*# sourceMappingURL=styles.css.map */