body {
  display: flex;
            flex-direction: column;
            margin: 0;
            min-height: 100vh;
}
.content {
  flex: 1; /* Pushes the footer down when content is short */
}
html {
  height: -webkit-fill-available;
}

main {
  display: flex;
  flex-wrap: nowrap;
  height: 100vh;
  height: -webkit-fill-available;
  max-height: 100vh;
  overflow-x: auto;
  overflow-y: hidden;
}

.b-example-divider {
  flex-shrink: 0;
  width: 1.5rem;
  height: 100vh;
  background-color: rgba(0, 0, 0, .1);
  border: solid rgba(0, 0, 0, .15);
  border-width: 1px 0;
  box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.bi {
  vertical-align: -.125em;
  pointer-events: none;
  fill: currentColor;
}

.dropdown-toggle { outline: 0; }

.nav-flush .nav-link {
  border-radius: 0;
}

.btn-toggle {
  display: inline-flex;
  align-items: center;
  padding: .25rem .5rem;
  font-weight: 600;
  color: rgba(0, 0, 0, .65);
  background-color: transparent;
  border: 0;
}
.btn-toggle:hover,
.btn-toggle:focus {
  /* color: rgba(0, 0, 0, .85); */
  /* background-color: #d2f4ea; */
}

.btn-toggle::before {
  width: 1.25em;
  line-height: 0;
  /* content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%28234,121,19%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e"); */
  transition: transform .35s ease;
  transform-origin: .5em 50%;
}

.btn-toggle[aria-expanded="true"] {
  color: rgba(0, 0, 0, .85);
}
.btn-toggle[aria-expanded="true"]::before {
  transform: rotate(90deg);
}
.btn-toggle[aria-expanded="true"] i {
  transform: rotate(90deg);
}

.btn-toggle-nav a {
  display: inline-flex;
  padding: .1875rem .5rem;
  margin-top: .125rem;
  margin-left: 1.25rem;
  text-decoration: none;
}
.btn-toggle-nav a:hover,
.btn-toggle-nav a:focus {
  background-color: #d2f4ea;
}

.scrollarea {
  overflow-y: auto;
}

.fw-semibold { font-weight: 600; }
.lh-tight { line-height: 1.25; }



:root {
  --header-height: 10vh;
  --footer-height: 10vh;
  --nav-width: 68px;
  --first-color: rgba(15, 24, 47);
  --first-color-light: #fff;
  --white-color: #fff;
  --total-height: calc(100vh - 18vh);

}

#header{
  background-color: rgba(15, 24, 47);
}
.header_toggle {
  color: var(--white-color);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 15px 0 15px;
}
.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: calc(var(--header-height) + 0);
  left: -30%;
  width: var(--nav-width);
  min-height: 90vh;
  background-color: var(--first-color);
  padding: 0.5rem 1rem 0 0;
  transition: all 0.5s ease-in-out;
  z-index: 1;
  overflow: auto;
}
.l-navbar.show {
  display: block;
}
#app-sidebar-container .nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
#app-sidebar-container a{
  text-decoration: none !important;
}
#app-sidebar-container .nav_logo,
#app-sidebar-container .nav_link {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
  column-gap: 1rem;
  padding: 0.5rem 0 0.5rem 1.5rem;
}
#app-sidebar-container .nav_logo {
  margin-bottom: 2rem;
}
#app-sidebar-container .nav_logo-icon {
  font-size: 1.25rem;
  color: var(--white-color);
}
#app-sidebar-container .nav_logo-name {
  color: var(--white-color);
  font-weight: 700;
}
#app-sidebar-container .nav_link {
  position: relative;
  color: var(--first-color-light);
  margin-bottom: 10px;
  transition: 0.3s;
}
#app-sidebar-container .nav_link:hover {
  color: var(--white-color);
}
#app-sidebar-container .nav_icon {
  font-size: 1.25rem;
}
.nav_submenu-active{
  display: none;
  transition: 0.3s;
}
.navbar-expand-lg{
height: 10vh;
}
.body-pd {
  padding-left: calc(var(--nav-width) + 200px);
}
.l-navbar.show .active::before {
  content: none;
}
.l-navbar .active::before {
  content: "";
  position: absolute;
  left: 0;
  width: 4px;
  height: 32px;
  background-color: var(--white-color);
}
.l-navbar.show .nav_link.active .nav_name {
  position: relative;
}
.l-navbar.show .nav_link:hover .nav_name {
  color: #EA7913;
  text-decoration: fff;
}
.l-navbar.show .nav_link:hover i {
  color: #FAD6A5;
}
.l-navbar .nav_link:hover i {
  color: #FAD6A5;
}
.l-navbar.show .nav_link.active .nav_name::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #EA7913;
  border-radius: 2px;
}
.l-navbar .active {
  color: var(--white-color);
}
.nav_link.active:hover .nav_name {
  color: #EA7913;
}
.l-navbar.show .nav_link.active:hover .nav_name::after {
  background-color: #FAD6A5;
}
.height-100 {
  flex:1;
  padding-left:68px
}
.highlight{
  border: 2px solid red !important
}
#hiddenContent{
  display: none !important;
}
@media screen and (min-width: 768px) {

  .header {
    height: calc(var(--header-height) + 1rem);
    padding: 0 2rem 0 calc(var(--nav-width) + 2rem);
  }
  .header_img {
    width: 40px;
    height: 40px;
  }
  .header_img img {
    width: 45px;
  }
  .l-navbar {
    left: 0;
    padding: 1rem 1rem 0 0;
  }
  #app-sidebar-container .show {
    width: calc(var(--nav-width) + 200px);
  }
  .body-pd {
    padding-left: calc(var(--nav-width) + 200px);
  }
}

