@import url(https://fonts.googleapis.com/css2?family=Mulish:wght@400;600;700&display=swap);
html {
  box-sizing: border-box;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  min-width: 320px;
  font-family: "NeueEinstellung", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: black;
  background-color: #15191e;
  overflow-x: hidden;
  font-family: "Mulish", sans-serif;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  display: flex;
}

.main {
  background: #f7f8fc;
  width: 100%;
  display: flex;
  padding: 20px;
}

.table__heading {
  display: flex;
  align-items: center;
  gap: 30px;
}
.table__heading h1 {
  color: #252733;
  font-size: 19px;
}
.table__search {
  margin-left: auto;
  font-size: 14px;
  width: 246px;
  height: 40px;
  -webkit-appearance: none;
  outline: none;
  background: #ffffff;
  border: 1px solid #dfe0eb;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 0.5em;
  background: url(/images/search.svg?079a13cd192b6eaba1feea672ae7203f);
  background-repeat: no-repeat;
  background-size: 15px 15px;
  background-position: 220px;
}
.table table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
}
.table table thead th {
  border-bottom: 1px solid #dfe0eb;
  padding-bottom: 10px;
  text-align: left;
  padding-left: 40px;
}
.table table tbody tr {
  cursor: pointer;
}
.table table tbody tr:hover {
  background: #f7f8fc;
}
.table table tbody td {
  padding: 20px 0 20px 40px;
  border-bottom: 1px solid #dfe0eb;
  height: 65px;
}
.table table tfoot td {
  padding: 20px;
  height: 165px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #9fa2b4;
  vertical-align: top;
}
.table table tfoot td:first-child {
  text-align: left;
  position: relative;
}
.table table tfoot td:last-child {
  text-align: right;
}
.table table tfoot td:last-child span {
  margin-right: 5px;
}
.table table tfoot td:last-child button {
  vertical-align: bottom;
}
.table table tfoot td button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}
.table__boolean img {
  margin: 0 auto;
}
.table__avatar {
  display: flex;
  align-items: center;
  gap: 10px;
}
.table__avatar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: solid 2px #e5e5e5;
}
.table__avatar div {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #f7f8fc;
  border: solid 2px #e5e5e5;
}
.table__email {
  text-decoration: underline;
}
.table__rating {
  display: flex;
  align-items: center;
}
.table__sortable {
  cursor: pointer;
  position: relative;
}
.table__sortable-active::after {
  content: "";
  background: url(/images/dropdown.svg?112d7525b75f1bc894c87c208396d36c);
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0.5em;
}
.table__sortable-desc::after {
  transform: rotate(180deg);
}
.table__export {
  color: #27ae60;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 3px;
}

.password {
  height: 100vh;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1240px) {
  .password {
    justify-content: center;
  }
}
.password__image {
  height: 100%;
  margin-left: 10px;
}
@media (max-width: 1240px) {
  .password__image {
    display: none;
  }
}
.password__logo {
  margin: 8px auto;
}
.password__logo-text {
  font-size: 18px;
  color: #71727a;
  text-align: center;
}
.password__title {
  text-align: center;
  margin: 0;
  font-size: 32px;
  line-height: 48px;
  font-weight: 700;
  color: #363740;
  margin-top: 30px;
}
.password__subtitle {
  text-align: center;
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: #71727a;
  margin-bottom: 10px;
}
.password__form {
  margin-top: calc((100vh - 582px) / 2);
  background-color: white;
  padding: 20px;
  width: 380px;
  height: 582px;
  margin-right: 80px;
  border: 1px solid #dfe0eb;
  box-sizing: border-box;
  border-radius: 8px;
}
@media (max-width: 1240px) {
  .password__form {
    margin-right: 0;
  }
}
.password__button {
  margin-top: 16px;
}
.password__error {
  color: #f6655a;
  font-size: 14px;
  padding-bottom: 1rem;
}

.home {
  max-width: 500px;
  margin: 0 auto;
}
.home p,
.home h1 {
  color: white;
  text-align: center;
}

.login {
  max-width: 1600px;
  margin: 0 auto;
}
.login__image {
  height: 100%;
  margin-left: 10px;
}
@media (max-width: 1240px) {
  .login__image {
    display: none;
  }
}
.login__logo {
  margin: 8px auto;
}
.login__logo-text {
  font-size: 18px;
  color: #71727a;
  text-align: center;
}
.login__title {
  text-align: center;
  margin: 0;
  font-size: 32px;
  line-height: 48px;
  font-weight: 700;
  color: #363740;
  margin-top: 30px;
}
.login__subtitle {
  text-align: center;
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: #71727a;
  margin-bottom: 10px;
}
.login__form {
  margin-top: calc((100vh - 582px) / 2);
  background-color: white;
  padding: 20px;
  width: 380px;
  height: 582px;
  margin-right: 80px;
  border: 1px solid #dfe0eb;
  box-sizing: border-box;
  border-radius: 8px;
}
@media (max-width: 1240px) {
  .login__form {
    margin-right: 0;
  }
}
.login__button {
  margin-top: 16px;
}
.login__error {
  color: #f6655a;
  font-size: 14px;
  padding-bottom: 1rem;
}
.login__form {
  margin: 30px auto;
}

.delete__button {
  background-color: #363740;
  border: none;
  color: white;
  padding: 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 10px;
}

.delete__container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar {
  background-color: #363740;
  min-height: 100vh;
  width: 255px;
  transition: 0.5s ease-in-out width;
  position: relative;
}
.sidebar__name {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: white;
  padding: 10px;
}
.sidebar__logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 200px;
  display: flex;
  align-items: center;
}
.sidebar__logo span {
  color: #71727a;
  margin-left: 10px;
  opacity: 1;
  transition: 0.5s ease-in-out opacity;
}
.sidebar__logo img {
  width: 45px;
  height: 45px;
  cursor: pointer;
}
.sidebar-collapsed {
  width: 80px;
}
.sidebar-collapsed span {
  opacity: 0;
}
.sidebar-collapsed .sidebar__item-link span {
  opacity: 0;
}
.sidebar-collapsed .sidebar__user-name span {
  opacity: 0;
}
.sidebar-collapsed .sidebar__item:hover .sidebar__item-tooltip {
  display: block;
}
.sidebar__item {
  height: 56px;
  padding: 20px;
}
.sidebar__item-link {
  color: #a4a6b3;
  padding-left: 10px;
  opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
}
.sidebar__item-link img {
  width: 20px;
  height: 20px;
}
.sidebar__item-link span {
  transition: 0.5s ease-in-out opacity;
}
.sidebar__item-active {
  background-color: rgba(159, 162, 180, 0.08);
  position: relative;
}
.sidebar__item-active::before {
  content: "";
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  background-color: #dde2ff;
}
.sidebar__item:hover {
  background-color: rgba(159, 162, 180, 0.08);
}
.sidebar__item-tooltip {
  display: none;
  position: absolute;
  background: white;
  color: black;
  font-size: 14px;
  padding: 4px;
  left: 70px;
  border-radius: 4px;
}
.sidebar__item-tooltip::before {
  content: "";
  border-style: solid;
  border-width: 8px 8px 8px 0;
  border-color: transparent white transparent transparent;
  position: absolute;
  top: 8px;
  left: -6px;
}
.sidebar__content {
  margin-top: 100px;
}
.sidebar__user {
  padding: 10px 25px;
  position: fixed;
  bottom: 10px;
}
.sidebar__user-name {
  display: flex;
  align-items: center;
}
.sidebar__user-name span {
  color: #dde2ff;
  opacity: 1;
  transition: 0.5s ease-in-out opacity;
}
.sidebar__user-name img {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  border: solid 2px #71727a;
  margin-right: 10px;
}
.sidebar__user button {
  font-size: 11px;
  font-weight: 200;
  color: #dde2ff;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

.dashboard {
  width: 100%;
}
.dashboard__cards {
  display: flex;
  gap: 10px;
}
.dashboard__card {
  flex: 1;
  background: white;
  border: 1px solid #dfe0eb;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 20px;
}
.dashboard__card-heading {
  text-align: center;
  color: #9fa2b4;
  font-size: 19px;
  line-height: 24px;
}
.dashboard__card-value {
  text-align: center;
  text-align: center;
  color: #252733;
  font-weight: bold;
  font-size: 40px;
  line-height: 50px;
  padding: 8px;
}

.users {
  width: 100%;
  background-color: white;
  border: 1px solid #dfe0eb;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 20px;
}

.feedback {
  width: 100%;
  background-color: white;
  border: 1px solid #dfe0eb;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 20px;
}

.select__container {
  position: relative;
  margin-left: 0.5em;
  cursor: pointer;
}
.select__container::after {
  content: "";
  background: url(/images/dropdown.svg?112d7525b75f1bc894c87c208396d36c);
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0.1em;
  left: 100%;
}
.select__content {
  position: absolute;
  top: 20px;
  left: 0;
}
.select__content ul {
  margin: 0;
  padding: 0;
  background: white;
  border: solid 1px #9fa2b4;
  border-radius: 4px;
}
.select__content li {
  list-style: none;
  padding: 0.3em;
}
.select__content li:not(:last-child) {
  border-bottom: solid 1px #9fa2b4;
}
.select__content li:hover {
  background: #f7f8fc;
}

.settings {
  width: 100%;
  background-color: white;
  border: 1px solid #dfe0eb;
  box-sizing: border-box;
  border-radius: 8px;
}
.settings__heading {
  padding: 20px;
  border-bottom: 1px solid #dfe0eb;
}
.settings__heading h1 {
  color: #252733;
  font-size: 19px;
}
.settings section {
  padding: 20px;
  display: flex;
  gap: 5%;
}
.settings section:not(:last-child) {
  border-bottom: 1px solid #dfe0eb;
}
.settings__left {
  width: 45%;
}
.settings__left h2 {
  color: #252733;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.4px;
}
.settings__left p {
  color: #252733;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.2px;
  opacity: 0.67;
}
.settings__right {
  width: 50%;
}
.settings__right h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.4px;
}
.settings__switch {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.settings__message input {
  font-size: 14px;
}
.settings__button {
  margin-top: 10px;
  padding: 6px 12px;
  background: #1976d2;
  color: white;
  border: 1px solid #dfe0eb;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}
.settings__message {
  margin-left: 10px;
}

.user {
  width: 100%;
  background-color: white;
  border: 1px solid #dfe0eb;
  box-sizing: border-box;
  border-radius: 8px;
}
.user__content {
  display: flex;
  gap: 20px;
  padding: 20px;
}
.user__user {
  width: 40%;
}
.user__card {
  background: white;
  border: 1px solid #dfe0eb;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 20px;
  height: 300px;
}
.user__batteries {
  width: calc(60% - 20px);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.user__battery {
  width: calc(50% - 10px);
  border: 1px solid #dfe0eb;
  box-sizing: border-box;
  border-radius: 8px;
  text-align: center;
}
.user__battery-content {
  height: 160px;
}
.user__battery h2 {
  color: #111827;
  font-weight: bold;
  font-size: 24px;
}
.user__battery-info {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
.user__battery-info:first-of-type {
  margin-bottom: 10px;
}
.user__battery-link {
  padding: 20px;
  border-top: 1px solid #dfe0eb;
}
.user__battery-details {
  margin-top: 20px;
}
.user__battery-details a {
  color: #3751ff;
}
.user__battery-delete {
  color: #f12b2c;
}
.user__card {
  text-align: center;
}
.user__card h1 {
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
}
.user__card-profile {
  border-radius: 50%;
  width: 64px;
  height: 64px;
  border: 1px solid #dfe0eb;
  margin: 32px auto;
}
.user__card-zip {
  margin-top: 10px;
}
.user__card-email {
  margin-top: 10px;
  text-decoration: underline;
}

.topbar {
  padding: 20px;
  border-bottom: 1px solid #dfe0eb;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.topbar__back {
  display: flex;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}
.topbar span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  font-size: 19px;
  color: #252733;
}

.battery {
  width: 100%;
  background-color: white;
  border: 1px solid #dfe0eb;
  box-sizing: border-box;
  border-radius: 8px;
}
.battery__content {
  padding: 20px;
}
.battery__summary {
  width: 100%;
  background-color: white;
  border: 1px solid #dfe0eb;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 20px;
}
.battery__summary h2 {
  color: #252733;
  font-size: 19px;
  line-height: 24px;
}
.battery__summary-content {
  display: flex;
  gap: 20px;
  color: #71727a;
  line-height: 20px;
  font-size: 14px;
}
.battery__summary-column {
  width: 45%;
}
.battery__summary-column:first-of-type {
  border-right: 1px solid #dfe0eb;
}

.filter {
  position: relative;
}
.filter__title {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #3751ff;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
}
.filter__content {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  background-color: white;
  border: 1px solid #dfe0eb;
  box-sizing: border-box;
  border-radius: 8px;
  z-index: 10;
  width: 278px;
  padding: 10px;
}
.filter__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
.filter__footer button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}
.filter__footer-clear {
  color: #f6655a;
}
.filter__footer-apply {
  color: #3751ff;
}
.filter__item {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #71727a;
  padding: 10px;
  border-bottom: 1px solid #dfe0eb;
}
.filter__item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter__switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter__text input {
  border: 1px solid #dfe0eb;
  box-sizing: border-box;
  border-radius: 4px;
  width: 100%;
  padding: 1em;
}
.filter__range-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.filter__range-container input {
  border: 1px solid #dfe0eb;
  box-sizing: border-box;
  border-radius: 4px;
  width: 100%;
  padding: 1em;
}
