
/* Global View Tabs */
.tabs-navigate{
    white-space: nowrap;
    overflow: auto;
}
.view-tabs{
    /* position: fixed; */
    background-color: #dde1e8;
    /* margin-top: 1.5rem; */
    padding: .35rem 0rem .10rem 0rem;
    /* width: calc(100% - 259px);
    z-index: 100;
    top: 65px; */
    /* max-width:1400px;  */
}
/* .collapse.show .view-tabs{
    display: block;
} */
.navbar-vertical-aside-mini-mode .view-tabs-list{
    /* width: calc(100% - 83px); */
    width: 100%;
}
.navbar-vertical-aside-closed-mode .view-tabs-list{
    width: 100%;
}
.view-tabs .column-divider-lg{
    position: relative;
    /* padding: 0rem .5rem; */
}
.view-tabs .column-divider-lg::before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-left: 0.0625rem solid #b2b2bb;
  content: "";
}

.view-tabs-list{
   position: relative;
   margin-left: 0rem;
   padding: 0rem 0rem;
   z-index: 98;
   top: 0;
   /* left: 259px; */
   width: 100%;
   transition: all .3s;
}

.tab-item{
    background-color: #f8f8f8;
    border-radius: 3px;
    margin-bottom: .25rem;
    padding: .35rem 1rem;
    /* width: max-content; */
    margin-left: 0.6rem;
    direction: ltr;
}
.tab-item:hover{
    background-color: #0c1b2f;
    color: #d4d4d7;
    border-radius: 3px;
    margin-bottom: .25rem;
    padding: .35rem 1rem;
}

.tab-item-active{
    background-color: #0c1b2f;
    border-radius: 5px;
    margin-bottom: .25rem;
    padding: .35rem 1rem;
    margin-left: 0.6rem;
    direction: ltr;
}
.item .a{
    color: #677788;
}
.view-tabs-list {
    opacity: 0;
    transition: all 1s linear;
    height: 0;
  }
  .view-tabs-list.show {
    opacity: 1;
    height: 100%;
}
/* transform: translate(0, -10px); */