@import url(https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap);
body {
  font-family: "DM Sans", sans-serif;
}

option {
  color: black;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  width: 100%;
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  body {
    font-size: 15px;
  }
}

.responsive-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .responsive-table table {
    min-width: 600px;
  }
}

.responsive-grid {
  display: grid;
  grid-gap: 1rem;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (max-width: 480px) {
  .responsive-grid {
    grid-template-columns: 1fr;
  }
}

.mobile-hidden {
  display: block;
}

@media (max-width: 768px) {
  .mobile-hidden {
    display: none;
  }
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }
}


.acCharger_main {
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .acCharger_main {
    margin-bottom: 1rem;
  }
}

.acCharger_table_buttons {
  margin-right: 0.77rem;
  gap: 0.75rem;
  height: -webkit-max-content;
  height: max-content;
}

@media (max-width: 768px) {
  .acCharger_table_buttons {
    margin-right: 0;
    gap: 0.5rem;
    width: 100%;
  }
}

.acCharger_button {
  width: auto;
  border-radius: 0.25rem;
  color: #fff;
  font-family: "Roboto";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0.625rem 1.075rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

@media (max-width: 768px) {
  .acCharger_button {
    width: 100%;
    font-size: 0.875rem;
    padding: 0.5rem 0.875rem;
    justify-content: center;
  }
}

@media (min-width: 480px) and (max-width: 768px) {
  .acCharger_button {
    width: calc(50% - 0.25rem);
  }
}

.acCharger_button > img {
  width: clamp(15px, 20px, 25px);
  margin-right: 0.44rem;
  object-fit: contain;
  object-position: center;
}

.firmware {
  background: #f57d36;
}



.qr {
  background: #ff4961;
}
.firmware {
  background: #f57d36;
}
.restart {
  background: #28d094;
}
.edit {
  background: #1e9ff2;
}
.configuration {
  background: #ff5c00;
}
.diagnostics {
  background: #000;
}

.acCharger_table_main {
  border-collapse: collapse;
  border: 1px solid rgba(0, 0, 0, 0.2);
  width: 100%;
  min-width: 500px;
}

@media (max-width: 768px) {
  .acCharger_table_main {
    min-width: 450px;
    font-size: 0.875rem;
  }
}

.acCharger_table_main td {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 1rem 0.625rem;
  color: #000;
  font-family: "Roboto";
  font-size: 1rem;
  font-style: normal;
  line-height: normal;
  word-break: break-word;
}

@media (max-width: 768px) {
  .acCharger_table_main td {
    padding: 0.625rem 0.5rem;
    font-size: 0.875rem;
  }
}

.acCharger_table_label {
  width: 19.25rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .acCharger_table_label {
    width: 140px;
    min-width: 120px;
  }
}

.acCharger_table_data {
  width: 29.6875rem;
  color: #000;
  font-family: "Roboto";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 768px) {
  .acCharger_table_data {
    width: auto;
    min-width: 200px;
  }
}

.pulse {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f57d36;
  box-shadow: 0 0 0 0 rgba(245, 125, 54, 0.5);
  animation: pulse-kefe91lg 1.2000000000000002s infinite linear;
  position: relative;
}

.pulse:before,
.pulse:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(245, 125, 54, 0.5);
  animation: inherit;
  animation-delay: -0.4s;
}

.pulse:after {
  animation-delay: -0.8s;
}

@keyframes pulse-kefe91lg {
  100% {
    box-shadow: 0 0 0 20px #0000;
  }
}


/*# sourceMappingURL=main.f8cc3c25.css.map*/