*,
::before,
::after {
  box-sizing: border-box;
}
/* body {
  position: relative;
  margin: var(--header-height) 0 0 0;
  padding: 0 1rem;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  transition: 0.5s;
} */
a {
  text-decoration: none;
}
.header-side {
  /* width: 140px; */
  width: 100%;
  height: 3rem;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  /* background-color: var(--white-color); */
  /* z-index: var(--z-fixed); */
  background-color: #919191;
  z-index: 4;
  transition: 0.5s;
}
.header_toggle {
  color: #000000;
  font-size: 2.5rem;
  cursor: pointer;
  /* z-index: 4; */
}
.header_img {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}
.header_img img {
  width: 40px;
}
.l-navbar {
  /* position: fixed; */
  /* top: 0; */
  /* left: 0; */
  /* left: -30%; */
  width: 14vw;
  /* width: 68px; */
  height: 100vh;
  background-color: #008fbb;
  /* background-color: #4723d9; */
  /* padding: 0.5rem 1rem 0 0; */
  transition: 0.5s;
  z-index: 4;
  /* z-index: var(--z-fixed); */
  /* --header-height: 3rem; */
  /* --nav-width: 68px; */
}
.nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.nav_name {
  color: #ffffff;
  display: block;
  text-decoration: none;
  font-size: 1.5vh;
}

.nav_user {
  color: #ffffff;
  display: block;
  text-decoration: none;
  font-size: 1vh;
  /* overflow-wrap: break-word; */
  white-space: pre-wrap;
}

.nav_logo,
.nav_link {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
  column-gap: 0.5rem;
  padding: 0.5rem 0 0.5rem 1.5rem;
}
.nav_logo {
  margin-bottom: 2rem;
}
.nav_logo-icon {
  font-size: 1.25rem;
  color: var(--white-color);
}
.nav_logo-name {
  font-size: 2vh;
  color: var(--white-color);
  font-weight: 700;
}
.nav_link {
  position: relative;
  color: var(--first-color-light);
  /* margin-bottom: 1.5rem; */
  transition: 0.3s;
  font-size: 1.25vh;
}
.nav_sub_link {
  position: relative;
  font-size: 1vh;
  padding-left: 3rem;
}

.nav_link:hover {
  color: var(--white-color);
}
.nav_icon {
  font-size: 1.25rem;
}
.show-sidebar {
  left: 0;
}
.body-pd {
  /* padding-left: calc(var(--nav-width) + 1rem); */
  padding-left: calc(68px + 1rem);
}
.active {
  color: var(--white-color);
}
.active::before {
  content: "";
  position: absolute;
  left: 0;
  width: 2px;
  height: 32px;
  background-color: var(--white-color);
}
.height-100 {
  height: 100vh;
}
/* @media screen and (min-width: 768px) {
  body {
    margin: calc(var(--header-height) + 1rem) 0 0 0;
  }
  .header-side {
    height: calc(var(--header-height) + 1rem);
    padding: 0 2rem 0 calc(68px + 1rem);
  }
  .header_img {
    width: 40px;
    height: 40px;
  }
  .header_img img {
    width: 45px;
  }
  .l-navbar {
    left: 0;
    padding: 1rem 1rem 0 0;
  }
  .show-sidebar {
    width: calc(68px + 156px);
  }
  .body-pd {
    padding-left: calc(68px + 188px);
  }
} */
