html {
    font-size: 14px;
  }
  
  @media (min-width: 768px) {
    html {
      font-size: 16px;
    }
  }
  
  html {
    position: relative;
    min-height: 100%;
  }
  
  body {
    margin-bottom: 60px;
  }
  @import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");
  
  :root {
      --header-height: 3rem;
      --nav-width: 68px;
      --first-color: #4723D9;
      --first-color-light: #AFA5D9;
      --white-color: #F7F6FB;
      --body-font: 'Nunito', sans-serif;
      --normal-font-size: 1rem;
      --z-fixed: 100
  }
  
  *, ::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: .5s
  }
  
  a {
      text-decoration: none
  }
  
  .header {
      width: 100%;
      height: var(--header-height);
      position: fixed;
      top: 0;
      left: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 1rem;
      background-color: #000000;
      z-index: var(--z-fixed);
      transition: .5s
  }
  
  .header_toggle {
      color: var(--first-color);
      font-size: 1.5rem;
      cursor: pointer
  }
  
  .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: -30%;
      width: 200px;
      height: 100vh;
      background-color: #616164;
      padding: .5rem 1rem 0 0;
      transition: .5s;
      z-index: var(--z-fixed)
  }
  
  .nav {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden
  }
  
  .nav_logo, .nav_link {
      display: grid;
      grid-template-columns: max-content max-content;
      align-items: center;
      column-gap: 1rem;
      padding: .5rem 0 .5rem 1.5rem
  }
  
  .nav_logo {
      margin-bottom: 2rem
  }
  
  .nav_logo-icon {
      font-size: 1.25rem;
      color: var(--white-color)
  }
  
  .nav_logo-name {
      color: var(--white-color);
      font-weight: 700
  }
  
  .nav_link {
      position: relative;
      color: var(--first-color-light);
      margin-bottom: 1.5rem;
      transition: .3s
  }
  
      .nav_link:hover {
          color: var(--white-color)
      }
  
  .nav_icon {
      font-size: 1.25rem
  }
  
  .show {
      left: 0
  }
  
  .body-pd {
      padding-left: calc(var(--nav-width) + 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 {
          height: calc(var(--header-height) + 1rem);
          padding: 0 2rem 0 calc(var(--nav-width) + -2rem)
      }
      .l-navbar {
          left: 0;
          padding: 1rem 1rem 0 0
      }
  
      .show {
          width: calc(var(--nav-width) + 156px)
      }
  
      .body-pd {
          padding-left: calc(var(--nav-width) + 188px)
      }
  }
  body {
      background-color: #fbfbfb;
  }
  
  @media (min-width: 991.98px) {
      main {
          padding-left: 80px;
      }
  }
  
  /* Sidebar */
  .sidebar {
      position: fixed;
      top: 64px;
      bottom: 0;
      left: 0;
   /*   padding: 58px 0 0; *//* Height of navbar */
      box-shadow: 0 2px 5px 0 rgb(0 0 0 / 5%), 0 2px 10px 0 rgb(0 0 0 / 5%);
      width: 240px;
      z-index: 600;
  }
  
  @media (max-width: 991.98px) {
      .sidebar {
          width: 100%;
      }
  }
  
  .sidebar .active {
      border-radius: 5px;
      box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
  }
  
  .sidebar-sticky {
      position: relative;
      top: 0;
      height: calc(100vh - 48px);
      padding-top: 0.5rem;
      overflow-x: hidden;
      overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
  }
  
  .list-group-item list-group-item-action py-2 ripple {
      border: none;
      outline: none;
      padding: 10px 16px;
      background-color: #f1f1f1;
      cursor: pointer;
      font-size: 18px;
  }
  .active, .list-group-item list-group-item-action py-2 ripple:hover {
      background-color: #666;
      color: white;
  }
  
  .divider:after,
  .divider:before {
      content: "";
      flex: 1;
      height: 1px;
      background: #eee;
  }
  
  .h-custom {
      height: calc(100% - 73px);
  }
  
  @media (max-width: 450px) {
      .h-custom {
          height: 100%;
      }
  }

body.login-body {
    overflow: hidden;
    background-color: #e5e6ed;
}

div.login-form {
    background-color: #fff;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
    max-height: 80vh;
    overflow-y: auto;
}
