/* ====================== Left Sidebar & Overlay ====================== */
.overlay {
position: fixed;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: transparent;
display: none;
z-index: 10;
}

.overlay-open .sidebar {
margin-left: 0;
z-index: 99999999;
}

.sidebar {
-moz-transition: all 0.5s;
-o-transition: all 0.5s;
-webkit-transition: all 0.5s;
transition: all 0.5s;
font-family: "Roboto", sans-serif;
background: #fff;
width: 220px;
overflow: hidden;
display: inline-block;
height: calc(100vh - 45px);
position: fixed;
top: 45px;
left: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
box-shadow: none;
z-index: 11 !important;
}

.sidebar .menu {
position: relative;
overflow-y: auto;
height: 100vh;
}

.sidebar .menu .list {
list-style: none;
padding-left: 0;
}

.sidebar .menu .list li a.active-link, .sidebar .menu .list li a.active-link i {
    color: #4FC1E9 !important;
    background: #F5F7FA !important;
    font-weight:500;
}
.sidebar .menu .list li a:hover, .sidebar .menu .list li a:hover i {
    color: #4FC1E9 !important;
    background: #F5F7FA !important;
    transition: 1s all;
}

.sidebar .menu .list li.active > :first-child span {
font-weight: bold;
}

.sidebar .menu .list li.active > :first-child i, .theme-red .sidebar .menu .list li.active > :first-child span {
    color: #4FC1E9;
}

.sidebar .menu .list .header {
background: #eee;
font-size: 12px;
font-weight: 600;
padding: 8px 16px;
}

.sidebar .menu .list .menu-toggle:after, .sidebar .menu .list .menu-toggle:before {
position: absolute;
top: calc(50% - 14px);
right: 17px;
font-size: 19px;
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
-webkit-transform: scale(0);
transform: scale(0);
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}

.sidebar .menu .list .menu-toggle:before {
content: '\f0d7';
font-family: 'FontAwesome';
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
-webkit-transform: scale(1);
transform: scale(1);
color: #434A54
}

.sidebar .menu .list .menu-toggle:after {
content: '\f0d8';
font-family: 'FontAwesome';
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
-webkit-transform: scale(0);
transform: scale(0);
color: #434A54
}

.sidebar .menu .list .menu-toggle.toggled:before {
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
-webkit-transform: scale(0);
transform: scale(0);
}

.sidebar .menu .list .menu-toggle.toggled:after {
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
-webkit-transform: scale(1);
transform: scale(1);
}

.sidebar .menu .list a {
color: #747474;
position: relative;
display: inline-flex;
vertical-align: middle;
width: 100%;
padding: 10px 13px;
}

.sidebar .menu .list a:hover, .sidebar .menu .list a:active, .sidebar .menu .list a:focus {
text-decoration: none !important;
}

.sidebar .menu .list a small {
position: absolute;
top: calc(50% - 7.5px);
right: 15px;
}

.sidebar .menu .list a i {
font-size: 18px;
margin-right: 10px;
color: #434A54
}

.sidebar .menu .list a span {
color: #434A54;
font-weight: normal;
font-size: 14px;
overflow: hidden;
}

.sidebar .menu .list .ml-menu {
list-style: none;
display: none;
padding-left: 0;
background: transparent;
}

.sidebar .menu .list .ml-menu span {
font-weight: normal;
font-size: 14px;
margin: 3px 0 1px 6px;
}

.sidebar .menu .list .ml-menu li a {
padding-left: 40px;
padding-top: 3px;
padding-bottom: 3px;
}

.sidebar .menu .list .ml-menu li.active a.toggled:not(.menu-toggle) {
font-weight: 600;
margin-left: 5px;
}

.sidebar .menu .list .ml-menu li.active a.toggled:not(.menu-toggle):before {
content: '\E315';
font-family: 'Material Icons';
position: relative;
font-size: 21px;
height: 20px;
top: -5px;
right: 0px;
}

.sidebar .menu .list .ml-menu li .ml-menu li a {
padding-left: 80px;
}

.sidebar .menu .list .ml-menu li .ml-menu .ml-menu li a {
padding-left: 95px;
}

.sidebar .legal {
position: absolute;
bottom: 0;
width: 100%;
background-color: #fff;
border-top: 1px solid #4FC1E9;
padding: 8px;
overflow: hidden;
}

.sidebar .legal .copyright {
font-size: 12px;
white-space: nowrap;
-ms-text-overflow: ellipsis;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
overflow: hidden;
}

.sidebar .legal .copyright a {
font-weight: bold;
text-decoration: none;
color: #4FC1E9;
}

.sidebar .legal .version {
white-space: nowrap;
-ms-text-overflow: ellipsis;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
overflow: hidden;
margin-top: 5px;
font-size: 13px;
}
