/*side bar*/



.accelerated {
  -webkit-transform: translate3d(0, 0, 0);
   -moz-transform: translate3d(0, 0, 0);
   -ms-transform: translate3d(0, 0, 0);
   transform: translate3d(0, 0, 0);

  -moz-transition: all 1s;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s ;
  
  -webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-perspective: 1000;
	-moz-perspective: 1000;
	-ms-perspective: 1000;
	perspective: 1000;
}


nav ol, nav ul {
	list-style: none;
	margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
    color: inherit;
}

.nav-left {
	display: flex;
	flex-direction: column;
	position: fixed;
	background: #ffffff;
	z-index: 10;
	width: 250px;
	height: 100%;
	overflow: auto;
	box-shadow: 1px 0px 12px #bbbbbb;
}

.nav-left .nav-menu {
	overflow: auto;
}

.nav-left nav {
	flex: 1;
}

.nav-left .side-menu-top {
	border-bottom: 1px solid #eeeeee;
	height: 56px;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.nav-left .side-menu-bottom {
	height: 40px;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.nav-left .vertical-divider {
	width: 1px;
	height: 50%;
	border-left: 1px solid #eeeeee;
}

.side-menu-bottom .button {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.side-menu-bottom .button:hover {
	background: #d1dbe0;
	cursor: pointer;
}

.nav-left .menu-left {
	float: left;
	display: flex;
	align-items: center;
	height: 100%;
	flex: 1;
	padding-left: 20px;
	font-size: 16px;
	font-weight: 700;
}

.nav-body {
	 position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	/*height: 100%;
	width: 100%; */
}

.side-bar{
	left:-320px;
}

.side-bar.sidebar-hide{
	/* left:-320px; */
	
	/* -webkit-transition: all 1s ease-in-out;
  	-moz-transition: all 1s ease-in-out;
  	-o-transition: all 1s ease-in-out;
  	transition: all 1s ease-in-out; */
  	
  	-webkit-transform: translate3d(0px,0,0);
			transform: translate3d(0px,0,0);
	transition: transform 300ms ease-in;
	will-change: transform;
}

.side-bar.sidebar-show{
	/* left:0px;
	
	-webkit-transition: all 1s ease-in-out;
  	-moz-transition: all 1s ease-in-out;
  	-o-transition: all 1s ease-in-out;
  	transition: all 1s ease-in-out; */
  	
  	-webkit-transform: translate3d(320px,0,0);
			transform: translate3d(320px,0,0);
	transition: transform 300ms ease-out;
	will-change: transform;
	
}

.sidebar-show .nav-overlay {
	visibility: visible;
	background-color: rgba(0, 0, 0, 0.4);
	-webkit-transition: background-color 0.3s ease-out;
	-moz-transition: background-color 0.3s ease-out;
	transition: background-color 0.3s ease-out;
}

.nav-overlay{
	position:fixed;
	z-index:3;
	height:100%;
	width:100%;
	visibility:hidden;
	background-color: rgba(0, 0, 0, 0.0); 
	-webkit-transition: visibility 0.3s, background-color 0.3s ease-in;
    -moz-transition: visibility 0.3s, background-color 0.3s ease-in;
    transition: visibility 0.3s, background-color 0.3s ease-in;
	
	    
}

.side-bar .side-menu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 100%;
	cursor: pointer;
	border-radius: 40px;
	z-index: 10;
}

.nav-left .top .side-menu-toggle:hover {
	background: #efe8ea;
}

.nav-left .site-title {
	font-size: 24px;
	color: #4b4c4c;
}


nav .menu-item {
	color: #747574;
}

nav .menu-item[aria-expanded="true"] {
	/* border-top: 1px solid #eeeeee; */
	color: #202120;
	border-bottom: 0;
}

nav a.menu-item.selected span {
	color: #0177bd;
}

.nav-left .divider {
	border-bottom: 1px solid #eeeeee;
}

nav .single-menu-item .menu-item {
	height: 48px;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	padding-right: 8px;
	font-size: 14px;
}

nav .menu-text {
	flex: 1;
	text-align: start;
	text-transform: none;
}

nav li.expend-menu-item a[aria-expanded="true"] .expend-icon .collapse {
	display: none;
}

nav li.expend-menu-item a[aria-expanded="false"] .expend-icon .expend {
	display: none;
}

nav li.expend-menu-item {
	display: flex;
	position: relative;
	flex-flow: column nowrap;
	align-items: stretch;
}

nav li.single-menu-item {
	display: flex;
	flex-flow: column nowrap;
	align-items: stretch;
}

.expend-menu-item .expend-text {
	height: 48px;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	padding-right: 8px;
	font-size: 14px;
}

.expend-menu-item .expendable-item {
	overflow: hidden;
	/* border-bottom: 1px solid #eeeeee; */
}

nav .menu-item:hover {
	background: #f4f5f4;
	-webkit-transition: background-color 0.2s ease-in-out;
	-moz-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
}

nav .item-icon {
	position: relative;
	width: 24px;
	height: 24px;
	display: flex;
	margin-left: 30px;
	margin-right: 16px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

nav .item-icon i {
	font-size: 18px;
	padding-top: 2px;
}

.expend-text .expend-icon {
	width: 24px;
	height: 24px;
	margin-left: 4px;
	background-repeat: no-repeat;
	background-position: center;
	font-size: 14px;
	padding-top: 5px;
}


.nav-body .body-container{
	position:relative;
	overflow:hidden;
	padding:20px;
	display:flex;
}

.nav-body .body-content{
	/* flex:1; */
	/* overflow:auto; */
	/* display:flex;
	flex-direction: column;
	align-items: center;
	justify-content: center; */
	padding:0px;
	width:100%;
	/* height:100%; */
	max-width: 800px; 
	
}



.nav-body .body-footer{
	/* height:50px; */
	width:100%;
	padding-bottom:10px;
	text-align: center;
	color:#aaaaaa;
	font-size:11px;
}


.nav-body-no-padding{
	padding-left:0px;
}