::-webkit-scrollbar{
    width: 6px;
}
::-webkit-scrollbar-track{
    background: rgba(0, 0, 0, 0);
}
::-webkit-scrollbar-thumb{
    border-radius: 3px;
    background-color: #DBDFE9;
    width: 5px;
	height: 5px;
}
@font-face {
    font-family: OpenSans-300;
    src: url("../fonts/OpenSans-300.woff");
}
@font-face {
    font-family: OpenSans-400;
    src: url("../fonts/OpenSans-400.woff");
}
body {
    height: 100vh;
    font-family: Inter, Helvetica, "sans-serif";
    /*font-family: 'OpenSans-400', sans-serif;*/
    font-size: 13px;
    background-color: #f0f6fb;
}
.accordion-button:not(.collapsed) {
    color: #403d38;
    background-color: #f9f9f9;
    box-shadow: none;
}
aside {
    height: calc(100vh - 150px);
    overflow: hidden;
}
aside:hover {
    overflow-y: auto;
}
.nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav-list > .menu {
    border-color: #e0e0de;
    border-style: dashed;
    border-width: 1px 0 0;
}
.nav-list > .menu:last-child {
    border-bottom-width: 1px;
}
.nav-list > .menu > a {
    color: #403d38;
    background-color: #ffffff;
    position: relative;    
    line-height: 14px;
    padding: 20px 27px 20px 8px;
    text-shadow: none !important;    
    text-decoration: none;
    width: 100%;
    cursor: pointer;
}
.nav-list> .menu .submenu {
    font-size: 18px;
    list-style: none;
    line-height: 1.5;
    position: relative;
    padding: 0;
    margin: 0;
    background-color: #ffffff;
}
.nav-list > .menu .menu-icon{
    display: inline-block;
    min-width: 36px;
    margin-right: 3px;
    text-align: center;
    color: #968e7e;
}
.nav-list > .menu .submenu li a{    
    background-color: #ffffff;
    color: #716d66;
    position: relative;
    padding: 10px 0 5px 50px;
    margin: 0;
    font-size: 14px;
    text-decoration: none;
    width: 100%;
}
.nav-list > .menu .submenu> li.active> a {
    color: #2679b5;    
}
.nav-list > .menu .submenu> li.active > a >.menu-icon {
    display: inline-block;
}
.nav-list > .menu .submenu> li a>.menu-icon {
    display: none;
    font-size: 12px;
    width: 18px;
    height: auto;
    line-height: 9px;
    text-align: center;
    position: absolute;
    left: 13px;
    top: 17px;
    z-index: 1;
    background-color: inherit;
}
.nav-list > li.active > a, .nav-list > li > a:hover {
    background-color: #ffffff;
    color: #141a1b;
	font-weight: bold;
}
/*--------LAYOUT--------*/
.main-container{
    height: 100%;
    display: flex;
    flex-direction: row;
    padding: 0;	
}
@media (max-width: 768px) {
    .main-container {
        display: block;
    }
    .page-body{
        height: 85% !important;
    }
}
#sidebarcanvas{
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 350px;
    background-color: #ffffff !important;
    border: solid 1px #f9f9f9;
    height: 100%;
}
#sidebarcanvas:before{
    content: "";
    display: block;
    width: inherit;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: -1;
    background-color: #ffffff;
}
.page-container{
    background-color: #f1f1f4;
    background-color: #f0f6fb;
    height: 100%;
    width: 100%;
}
.sidebar-menu{
    display: flex;
    padding: 20px;
    background-color: #f9f9f9;
    height: 5%;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px dashed #E2E2E2;
}
.sidebar-menu a{
    color: #212529;
}
.page-header{
    background: white;
    height: 60px;
    padding: 10px;
    display: flex;
    align-items: center;
}
.page-body{
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;    
    height: calc(100% - 60px);
    overflow-y: auto;
}
.sidebar-header{
    display: flex;
    background-color: white;
    align-items: center;
    justify-content: space-between;
    padding-right: 25px;
    padding-left: 20px;
    height: 60px;
}
.sidebar-header h6{    
    font-weight: bold;
    margin: 0;
    margin-right: 59px;
    margin-top: 3px;
}
.sidebar-body{    
    height: calc(100% - 60px - 9%);
}
.sidebar-footer{
    height: 9%;
    border-top: 1px solid #F1F1F4;
    display: flex;
    align-items: center;
}
.title-header h5{
    color: #2679b5;
    font-weight: 400;
    padding-left: 20px;
    margin: 0;
}
.title-header h5 small {
    margin: 0 6px;
    font-size: 14px;
    font-weight: 400;
    color: #8089a0;
}

.animated-text {
    font-weight: 600 !important;
    position: relative;
}
.animated-text>span {
    position: relative;
    z-index: 3;
    background-image: linear-gradient(-225deg, #609af8 30%, #35c4dc 60%, #b975f9 80%);
    animation: color-animation 2s linear infinite;
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}
@keyframes color-animation {
    40%,to {
        background-position: -200% center
    }
}