#side-nav {
    width: 280px;
    background: #292b38;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    overflow-x: hidden;
    overflow-y: auto;
    box-shadow: 3px 0px 5px 0px rgb(0 0 0 / 5%);
    transition: all 0.1s ease-in-out;
}
#side-nav.active {
    transform: translate(0,0);
}

.sidebar-logo {
    padding: 20px 22px;
    font-weight: 700;
    font-size: 26px;
    background: #202125;
}
.sidebar-logo img {
    width: 100%;
    transition: all 0.1s ease-in-out;
}
.sidebar-logo:hover img {
    transform: scale(1.02);
}
.sidebar-logo:active img {
    transform: scale(1.04);
}
.clock-area {
    /*background: #263238f9;*/
    background: #26323811;
    padding: 15px 0;
}
.clock {
    position: relative;
    line-height: 30px;
    padding-left: 24px;
}
.clock .time {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0,-50%);
}
.announcement-area {
    background: #36394c;
    color: #ffffffcc;
    padding: 15px 20px;
    background-image: url(../icons/alert-triangle-03.svg);
    background-repeat: no-repeat;
    background-position: 105% top;
    background-size: 30% auto;
}
.announcement-area .title {
    font-weight: 700;
}
.announcement-area .meta {
    opacity: .3;
    font-size: 11px;
}
.sidebar-link {
    position: relative;
}
.sidebar-link.active,
.sidebar-link.current,
.sidebar-link:hover {
    background: rgb(0 0 0 / .05);
}
.sidebar-link > a {
    display: block;
    padding: 10px 30px 12px 48px;
    color: #ffffffcc;
    font-size: 11px;
    font-weight: 500;
}
.sidebar-link.active,
.sidebar-link:hover {
    background: rgb(0 0 0 / .05);
}
.sidebar-link a:active,
.sidebar-link a:focus,
.sidebar-link a:hover {
    color: #fff;
}
.sidebar-link .icon {
    position: absolute;
    left: 22px;
    top: 50%;
    width: 14px;
    opacity: .5;
    transform: translate(0, -50%);
}
.sidebar-link .cue {
    position: absolute;
    right: 16px;
    top: 11px;
    width: 14px;
    opacity: 0.3;
    transition: all 0.1s ease-in-out;
}
.sidebar-link.active .cue {
    transform: rotate(180deg);
}
.nav-wedge {
    height: 1px;
    background: rgb(255 255 255 / .1);
    margin: 12px 0 8px 0;
}
/* width */
::-webkit-scrollbar {
  width: 0px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #ddd;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.drawer-container {
    position: relative;
}
.drawer {
    transform: translate(576px,0px);
    transition: all 0.1s ease-in-out;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 10px;
    overflow-y: hidden;
    padding-bottom: 100px;
}
.drawer.active {
    transform: translate(0px,0px);
    height: unset;
    overflow-y: auto;
}
.drawer-link {
    position: relative;
}
.drawer-link > a {
    display: block;
    padding: 14px 30px 14px 48px;
    color: #ffffffcc;
    font-weight: 500;
    font-size: 11px;
}
.drawer-link > a .icon {
    position: absolute;
    left: 22px;
    width: 14px;
    opacity: .5;
    top: 50%;
    transform: translate(0, -50%);
}
.previous-drawer .back-icon {
    position: absolute;
    left: 22px;
    top: 50%;
    width: 14px;
    opacity: .3;
    transform: translate(0, -50%);
}
.drawer-link.current, .drawer-link:hover {
    background: rgb(0 0 0 / .05);
}




#top-nav {
    position: absolute;
    top: 0;
    left: 280px;
    width: calc(100% - 280px);
    height: 50px;
    background: #292b38;
}
.nav-container {
    height: 50px;
}
.nav-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translate(0,-50%);
    width: 28px;
    height: 28px;
    cursor: pointer;
    display: none;
}
h2.page-nav-title {
    font-size: 16px;
    font-weight: 600;
    color: rgb(255 255 255 / .9);
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: none;
}
.page-nav-meta {
    position: absolute;
    left: 15px;
    top: 46%;
    transform: translate(0,-50%);
    color: white;
}
.page-nav-meta a {
    opacity: .5;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    padding: 4px 10px 5px 10px;
    font-size: 10px;
    background: rgb(255 255 255 / .0);
    border-radius: 5px;
    letter-spacing: 1px;
    display: inline-block;
}
.page-nav-meta a:hover,
.page-nav-meta a:active {
    text-decoration: none !important;
    outline: none !important;
    opacity: .8;
    background: rgb(255 255 255 / .05);
}
.page-nav-meta a.active {
    opacity: .8;
    background: rgb(255 255 255 / .2);
}
.page-nav-meta a .spinner-contain {
    width: 13px;
    height: 13px;
}
.user-indicator {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translate(0,-50%);
    cursor: pointer;
}
.user-indicator img {
    height: 24px;
    width: 24px;
    border-radius: 100px;
    border: 2px solid rgb(255 255 255 / .3);
    position: relative;
    top: -1px;
}
.user-indicator .name {
    font-size: 12px;
    margin-left: 3px;
    color: white;
}
.user-indicator .icon {
    height: 12px;
    width: 12px;
    position: relative;
    top: -1px;
    opacity: .5;
    margin-left: 3px;
    color: white;
}
.user-indicator:hover .icon {
    opacity: .9;
}


#nav-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / .6);
    display: none;
    top: 0;
}
.float-nav-wrapper {
    display: none;
}
.float-nav-wrapper.active {
    display: block;
}
.float-nav-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / .6);
    display: none;
    top: 0;
}
.float-nav-overlay.active {
    display: block;
}
.floating-nav {
    position: fixed;
    right: 20px;
    top: 20px;
}
.floating-nav .icon {
    width: 22px;
    opacity: .8;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.floating-nav.active .icon {
    opacity: 1;
}
.floating-nav .head {
    cursor: pointer;
    background: #37474f;
    color: white;
    text-align: center;
    border-radius: 25px;
    box-shadow: 1px 2px 2px rgb(0 0 0 / 20%);
    font-weight: 600;
    transition: all 0.1s ease-in-out;
    width: 40px;
    height: 40px;
}
.floating-nav .head:hover {
    transform: scale(1.02);
}
.floating-nav .content {
    width: 100%;
}
.floating-nav a.item {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    pointer-events: none;
    transform: translate(50px, 0px) scale(.5);
    transition: all 0.1s ease-in-out;
    width: 100%;
    padding: 10px 25px;
    border-radius: 25px;
    background: white;
    cursor: pointer;
    width: 250px;
    color: #333;
    font-size: 13px;
}
.floating-nav a.item:hover,
.floating-nav a.item:active,
.floating-nav a.item:focus,
.floating-nav a.item:visited {
    text-decoration: none !important;
    outline: none !important;
    color: #333;
}
.floating-nav a.item:hover {
    background: #eceff1;
}
.floating-nav a.item .item-icon {
    width: 16px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(0,-50%);
    opacity: .3;
}
.floating-nav.active .item {
    opacity: 1;
    pointer-events: unset;
}
.floating-nav.active .item1 {transform: translate(0px,53px) scale(1);}
.floating-nav.active .item2 {transform: translate(0px,101px) scale(1);}
.floating-nav.active .item3 {transform: translate(0px,149px) scale(1);}
.floating-nav.active .item4 {transform: translate(0px,197px) scale(1);}
.floating-nav.active .item5 {transform: translate(0px,245px) scale(1);}
.floating-nav.active .item6 {transform: translate(0px,293px) scale(1);}
.floating-nav.active .item7 {transform: translate(0px,341px) scale(1);}
.floating-nav.active .item8 {transform: translate(0px,389px) scale(1);}
.floating-nav.active .item9 {transform: translate(0px,437px) scale(1);}
