.left-sidebar {
	 position: absolute;
	 width: $sidebar-width-full;
	 height: 100%;
	 top: 0;
	 padding-top: $topbar-height;
	 z-index: 10;
	 background: black;
	 box-shadow: $shadow;
	 transition: 0.2s ease-in;
}
 .left-sidebar .sidebar-footer {
	 position: fixed;
	 bottom: 0;
	 width: $sidebar-width-full;
	 display: flex;
	 align-items: center;
	 border-top: 1px solid $border-color;
	 z-index: 99;
	 transition: 0.2s ease-in;
}
 .left-sidebar .sidebar-footer a {
	 padding: $sidebar-footer-inner-padding;
	 width: 33.333337%;
	 color: $white;
	 text-align: center;
	/* font-size: $sidebar-footer-text-size;
	 */
}
 .scroll-sidebar {
	 position: relative;
	 height: calc(100% - 50px);
}
 .sidebar-nav > ul > .sidebar-item > .sidebar-link.active {
	 box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	 background-color: $dark;
	 color: $white;
	 opacity: 1;
	 font-weight: 400;
}
 .sidebar-nav ul {
	 padding: 15px;
}
 .sidebar-nav ul .sidebar-item {
	 width: 30%;
	 margin-bottom: 10px;
}
 .sidebar-nav ul .sidebar-item .sidebar-link {
	 padding: $sidebar-link-padding;
	 display: flex;
	 border-radius: 4px;
	 white-space: nowrap;
	 align-items: center;
	 position: relative;
	 line-height: 1.5;
	 font-size: $sidebar-link-font-size;
	 opacity: 0.6;
	 color: $sidebar-text;
}
 .sidebar-nav ul .sidebar-item .sidebar-link i {
	 font-style: normal;
	 line-height: $sidebar-icon-line-height;
	 font-size: $sidebar-icon-size;
	 color: $sidebar-icons;
	 text-align: center;
	 width: $sidebar-icon-width;
	 display: inline-block;
}
 .sidebar-nav ul .sidebar-item .sidebar-link .hide-menu {
   color: white;
	 overflow: hidden;
	 text-overflow: ellipsis;
	 white-space: nowrap;
}
 .sidebar-nav ul .sidebar-item .sidebar-link.active, .sidebar-nav ul .sidebar-item .sidebar-link:hover {
	 opacity: 1;
}
 .sidebar-nav ul .sidebar-item .sidebar-link.active {
	 font-weight: 500;
}
 .sidebar-nav ul .sidebar-item.selected > .sidebar-link {
	 box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	 background-color: $dark;
	 color: white;
	 opacity: 1;
	/*background: rgba(0, 0, 0, 0.04);
	*/
}
 .sidebar-nav ul .sidebar-item .first-level {
	 padding: 10px;
}
 .sidebar-nav ul .sidebar-item .first-level .sidebar-item {
	 margin-bottom: 0;
}
 .sidebar-nav ul .sidebar-item .first-level .sidebar-item.active .sidebar-link {
	 opacity: 1;
}
 .sidebar-nav ul .sidebar-item .first-level .sidebar-item .sidebar-link {
	 padding: $sidebar-first-level-link-padding;
}
 .sidebar-nav ul .sidebar-item .first-level .sidebar-item .sidebar-link i {
	 display: none;
	 font-size: $sidebar-first-level-icon-size;
}
 .sidebar-nav ul .nav-small-cap {
	 font-size: $nav-small-cap-font-size;
	 line-height: 30px;
	 color: $sidebar-text;
	 opacity: 1;
	 text-transform: uppercase;
	 font-weight: 500;
	 padding: $nav-cap-padding;
	 display: flex;
	 align-items: center;
	 white-space: nowrap;
}
 .sidebar-nav ul .nav-small-cap i {
	 line-height: 30px;
	 margin: 0 5px;
	 display: none;
}
 .sidebar-nav ul .nav-devider {
	 background: rgba(255, 255, 255, .1);
	 height: 1px;
	 margin: 14px 0;
	 display: block;
}
 .sidebar-nav > #sidebarnav > .sidebar-item > .sidebar-link:hover {
	/*background: rgba(0, 0, 0, 0.04);
	*/
}
 .sidebar-nav ul {
	 margin: 0;
}
 .sidebar-nav ul li {
	 list-style: none;
}
 .collapse.in {
	 display: block;
}
 .sidebar-nav .has-arrow {
	 position: relative;
}
 .sidebar-nav .has-arrow::after {
	 position: absolute;
	 content: '';
	 width: 0.55em;
	 height: 0.55em;
	 margin-left: 10px;
	 top: 20px;
	 right: 15px;
	 border-width: 1px 0 0 1px;
	 border-style: solid;
	 border-color: $sidebar-text;
   @extend %sidebar_arrow_transform;
}

.sidebar-nav li.active > .has-arrow::after,
.sidebar-nav li > .has-arrow.active::after,
.sidebar-nav .has-arrow[aria-expanded="true"]::after {
    @extend %sidebar_arrow_active_transform;
}

/*.sidebar-nav .active > .has-arrow::after,*/
/*.sidebar-nav li.selected > .has-arrow::after,*/
 .user-profile .profile-text > a {
	 padding: 6px 30px;
	 background: rgba(0, 0, 0, 0.5);
}
 .user-profile .profile-text > a:after {
	 position: absolute;
	 right: 20px;
	 top: 15px;
}
 .user-profile .profile-img {
	 width: 100%;
	 margin-left: 30px;
	 padding: 35px 0;
}
 .user-profile .profile-img::before {
	 -webkit-animation: 2.5s blow 0s linear infinite;
	 animation: 2.5s blow 0s linear infinite;
	 position: absolute;
	 content: '';
	 width: 100%;
	 height: 100%;
	 top: 35px;
	 border-radius: 50%;
	 z-index: 0;
}
 @-webkit-keyframes blow {
	 0% {
		 box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.1);
		 opacity: 1;
		 -webkit-transform: scale3d(1, 1, 0.5);
		 transform: scale3d(1, 1, 0.5);
	}
	 50% {
		 box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
		 opacity: 1;
		 -webkit-transform: scale3d(1, 1, 0.5);
		 transform: scale3d(1, 1, 0.5);
	}
	 100% {
		 box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.1);
		 opacity: 0;
		 -webkit-transform: scale3d(1, 1, 0.5);
		 transform: scale3d(1, 1, 0.5);
	}
}
 @keyframes blow {
	 0% {
		 box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.1);
		 opacity: 1;
		 -webkit-transform: scale3d(1, 1, 0.5);
		 transform: scale3d(1, 1, 0.5);
	}
	 50% {
		 box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
		 opacity: 1;
		 -webkit-transform: scale3d(1, 1, 0.5);
		 transform: scale3d(1, 1, 0.5);
	}
	 100% {
		 box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.1);
		 opacity: 0;
		 -webkit-transform: scale3d(1, 1, 0.5);
		 transform: scale3d(1, 1, 0.5);
	}
}
 .user-profile .dropdown-menu {
	 left: 0px;
	 right: 0px;
	 top: unset !important;
	 width: 180px;
	 margin: 0 auto;
}
