.dashboard_wrapper {
  display: flex;
  min-height: 100vh;
  padding-left: var(--left-nav-width);
  padding-left: 0;
}

.dashboard_left_column{
  
/*  position: fixed;*/
/*  left:0;*/
/*  height: 100vh;*/
/*margin-left:-200px;*/
  position: relative;
  border-right: 1px solid #eee;
}
.dashboard_left_column .menu_container{
  background: #FFF;
  color:#fff;
  width: var(--left-nav-width);
  position: sticky;
  left:0;
  top:0;
  height: 100vh;
  overflow-y:auto;
}

.light_sidebar .dashboard_left_column .menu_container{
  color:#444;
}
.dashboard_right_column{
/*  height: 1600px;*/
  position: relative;
  background: #F3F5F9;
}

.dashboard_top_bar{
  height: 60px;
  display: flex;
  background: #fff;
  position: sticky;
  top:0;
  left:0;
  right:0;
/*  box-shadow: 8px 4px 36px -4px #dadaff;*/
  align-items:normal !important;
  border-bottom: 1px solid #eee;
}

.dashboard_top_bar .dropdown-toggle{
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.dashboard_top_bar .navbar-nav .dropdown-menu{
  position: absolute;
}



.light_sidebar .dashboard_left_column .menu_container{
  background: #FFF;
}

.light_sidebar .dashboard_right_column{
  background: #F5F6FB;
}


.trigger{
  position: absolute;
  z-index: 1000;
  background: #fff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  left: 13px;
  top: 13px;
  color: var(--primary-color);
  border-radius: 30px;
  border: 2px solid var(--primary-color);
  box-sizing: content-box;
  cursor: pointer;
}
.trigger:hover{
  background: var(--primary-color);
}
.trigger:hover i{
  color:#fff;
}
/* Closed  */
.dashboard_wrapper.closed{
  padding-left: 0px;
}

.dashboard_wrapper.closed .dashboard_left_column{
  margin-left: -250px;
}

.user_image_holder{
  background: #ddd;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

.sidebar_menu_ul{
  padding:0;
  list-style: none;
  padding-left: 12px;
  padding-right: 12px;
}

.sidebar_menu_ul li a{
  display: block;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  color: #fff;
  text-decoration: none;
  margin-bottom: 6px;
  padding: 10px;
  border-radius: 6px;
  font-weight: 400;
  border-left: 4px solid  transparent;
}

.light_sidebar .sidebar_menu_ul li a{
  color:#444;
}

.sidebar_menu_ul li a:hover{
  background: rgba(0,0,0,0.05);
}
.sidebar_menu_ul li a i{
  margin-right: 10px;
}

.light_sidebar .sidebar_menu_ul li.active a{
  background: var(--primary-color);
  color: #fff;
  box-shadow: none;
  border-left: 4px solid var(--primary-color);
}

.light_sidebar .sidebar_menu_ul li.treeview.active a{
  background: #d9e6fb;
  color: #000;
  box-shadow: none;
  border-left: 4px solid var(--primary-color);
}

/*.light_sidebar .sidebar_menu_ul li.active a{
  color: var(--primary-color);
  background: #fff;
  box-shadow: none;
  
}*/

.sidebar_menu_wrapper{

}

/* treeview */

.treeview.active{
  background: #f7f9ff;
  border-radius: 6px;
}
.treeview-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    display: none;
  /*padding-left: 15px !important;*/
}
.treeview-menu li {
  border-radius: 6px;
  padding-left: 0px;
/*  border-bottom: 1px solid #ddd;*/
  border-radius: 0;
}
.treeview-menu li a{
  background: transparent !important;
  color: #444 !important;
  border-left:0 !important;
  border-radius: 6px;
  margin-bottom: 0;
}
.treeview-menu li a:hover{
/*  background: #f6f6f6 !important;*/
color: var(--primary-color) !important;
}
.treeview:not(.active) .treeview_icon.bi-chevron-down{
  display: none;
}

.treeview.active .treeview_icon.bi-chevron-right {
  display: none;
}


.treeview.active .treeview-menu{
  display: block;
/*  background: #f6f6f6;*/
  border-radius: 6px;
  

}

.leftbar-nav  ul.treeview-menu li{
  
}

.leftbar-nav  ul.treeview-menu li a{
  padding-left: 46px;

}

.leftbar-nav ul.treeview-menu li a .menu_icon{
  left: 24px;
}


ul.treeview-menu li.active a{
  background: var(--primary-color) !important;
  color: #fff !important;
}

/* treeview */

@media (max-width:1024px){
  .dashboard_wrapper{
    padding-left: 0px;
  }
  .dashboard_left_column{
    position: fixed;
    z-index: 1000;
  }

  .dashboard_wrapper .dashboard_left_column{
    margin-left: -250px;
  }
  .dashboard_wrapper.open{
    padding-left: 0px;
  }

  .dashboard_wrapper.open .dashboard_left_column{
    margin-left: 0px;
  }
  .dashboard_left_column{
    padding-top: 60px;
  }
}