html, body {
	overflow-x: hidden;
}
body {
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	font-size: 12px;
	box-sizing: border-box;
	position: relative;
 }
	.main-title-bar {
		box-sizing: border-box;	
		padding: 0;
		margin: 0;
		width: 100%;
		height: 102px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		border-bottom: 2px solid rgba(224,224,224,1);
		background-color: rgba(127,127,127,1);
	 }
		.main-title-bar-content1 {
			display: flex;
			justify-content: flex-start;
			align-items: center;
			height: 80%;
		 }
			.main-title-bar-logo {
				box-sizing: border-box;	
				height: 100%;
				padding: 10px 10px;
				margin: 10px 0;
			 }
				.main-title-bar-logo>img {
					background-color: rgba(240,240,240,.8);
					box-shadow: 1px 1px 2px rgba(63,63,63,.8);
					height: 50px;
					margin: 0 10px;
					padding: 15px; 
					border-radius: 8px;
				 }
			.main-title-bar-system {
				box-sizing: border-box;	
				border-left: 3px solid rgba(63,63,63,.3);
			 	padding: 10px 10px;
			 	margin: 10px 0;
			 	height: 100%;
			 }
				.main-title-bar-system>img {
					box-sizing: border-box;	
					background-color: rgba(210,210,240,.8);
				 	border: 0px solid rgba(0,76,152,.8);
				 	box-shadow: 1px 1px 2px rgba(63,63,63,.8);
				 	height: 35px;
				 	border-radius: 6px;
				 	padding: 3px;
				 }
				.main-title-bar-system>h4 {
					color: rgba(0,76,152,.8);
				 	text-shadow: 1px 1px 2px rgba(63,63,63,.8);
				 	padding: 3px;
				 	font-size: 22px;
				 }
			.main-title-bar-title {
			 	box-sizing: border-box;	
			 	margin: 10px 0;
			 	padding: 10px 10px;
			 	height: 100%;
			 	display: flex;
			 	justify-content: flex-end;
			 	align-items: center;
			 	font-size: 30px;
			 	text-align: right;
			 	border-left: 3px solid rgba(63,63,63,.3);
			 	color: rgba(50,50,220,.8);
			 	text-shadow: 1px 1px 2px rgba(63,63,63,1);
			 }
				.main-title-bar-title>i {
					font-size: 20px;
					color: rgba(255,255,255,.9);				
					text-shadow: 1px 1px 2px rgba(63,63,63,1);		
					padding: 5px 10px 5px 5px;
				}
			.main-title-bar-subtitle {
			 	box-sizing: border-box;	
			 	margin: 10px 0;
			 	padding: 10px 10px;
			 	height: 100%;
			 	display: flex;
			 	flex-direction: column;
			 	justify-content: center;
			 	align-items: flex-start;
			 	color: rgba(224,224,224,.8);
			 	font-size: 10px;
			 	border-left: 3px solid rgba(63,63,63,.3);
			 	font-weight: lighter; 	
			 }
				.main-title-bar-subtitle> :first-child {
				 	font-size: 16px;
				 	font-weight: bolder;
				 	color: rgba(255,255,255,1);
				 	text-shadow: 1px 1px 2px rgba(63,63,63,1);
				 }
		.main-title-bar-content2 {
			display: flex;
			justify-content: flex-start;
			align-items: center;
			height: 80%;
		 }
			.main-title-bar-notifs {
				margin: 10px 0;
				padding: 10px 10px;
				height: 100%;
				display: flex;
				justify-content: center;
				align-items: center;
				border-left: 3px solid rgba(63,63,63,.3);
			 }
				.main-title-bar-notifs>span>i {
					padding: 10px 10px;
					font-size: 22px;
					color: rgba(255,255,255,.9);
					text-shadow: 1px 1px 2px rgba(63,63,63,.8);
					cursor: pointer;
				 }
				.badge-notif {
					position: relative;
				 }
				.badge-notif[data-badge]:after {
					content: attr(data-badge);
					position: absolute;
					top: 2px;
					right: 2px;
					font-size: 12px;
					background: rgba(31,31,31,.6);
					color: white;
					width: 18px;
					height: 18px;
					text-align: center;
					line-height: 18px;
					border-radius: 4px;
				 }
			.main-title-bar-emp {
				margin: 10px 0;
				padding: 0px 10px;
				height: 100%;
				display: flex;
				flex-direction: column;
				justify-content: flex-start;
				align-items: flex-start;
				border-left: 3px solid rgba(63,63,63,.3);
			 }
			.main-title-bar-login {
				margin: 10px 0;
				padding: 0 10px;
				height: 100%;
				display: flex;
				flex-direction: column;
				justify-content: flex-start;
				align-items: center;
				border-left: 3px solid rgba(63,63,63,.3);
			 }

			.main-title-bar-login>span {
				margin: 0;
				padding: 0;
				overflow: hidden;
				display: flex;
				flex-direction: row;
				justify-content: space-between;
				align-items: flex-start;
			 }
				.main-title-bar-login>span>img {
					box-sizing: border-box;
					height: 50px; 
					border-radius: 50%; 
					border: 2px solid rgba(255,255,255,.8); 
					box-shadow: 1px 1px 2px rgba(63,63,63,.8);
				 }
				.main-title-bar-login>span>span {
					padding: 0 10px;
					width: 90px;
					display: flex;
					flex-direction: column;
					justify-content: space-around;
					align-items: flex-start;
				 }	
					.main-title-bar-login>span>span>h6 {
						padding: 0;
						margin: 0;
						font-size: 12px;
						color: rgba(255,255,255,1);
					 }	
					.main-title-bar-login>span>span>h7 {
						padding: 0;
						margin: 0;
						font-size: 10px;
						color: rgba(255,255,255,.6);
					 }	
			.main-title-bar-login>button {
				display: block;
				cursor: pointer;
				margin-top: 5px;
				padding: 6px;
				background-color: rgba(180,180,180,.8);
				box-shadow: 1px 1px 2px rgba(63,63,63,.9);
				border: none;
				position: relative;
			 }
				.main-title-bar-login>button>i {
					font-size: 9px;
					position: relative;
					top: 2px;
					color: rgba(0,0,150,.9);
					box-shadow: 1px 1px 2px rgba(220,220,220,.6);
				 }
	.main-content {
		position: relative;
		box-sizing: border-box;
		background-color: rgba(191,191,191,1);
		width: 100%;
		/*height: calc( 100vh - 102px );*/
		overflow: auto;
	 }

	.login {
		height: calc(100vh - 102px);
	 }
	
	.logout {
		height: 100vh;
	 }
/*----------------------------------------------------------------------------*/
.menu-lateral-container {
	position: absolute; 
	top: 0; 
	width: 400px; 
	height: 100vh; 
	z-index: 10000;
 }
	.menu-lateral {
		position: absolute; 
		top: 0; 
		width: 400px; 
		height: 100%; 
		background-color: rgba(20,20,20,.9);
		border-top-right-radius: 10px;
		border-bottom-right-radius: 10px;
	 }
		.menu-lateral>ul {
			padding: 30px;
			font-size: 20px;
			color: white;
		 }
	.menu-lateral-selector {
		position: absolute; 
		top: calc( 50% - 75px ); 
		left: 400px;
		width: 25px; 
		height: 150px; 
		cursor: pointer;
	 } 
	.menu-lateral-selector-colapsado {
	 	left: 0px!important;
	 	transition: all 0.5s;
	 }
	.menu-lateral-selector-desplegado {
	 	left: 400px!important;
	 	transition: all 0.5s;
		 z-index: 10000;
	 }
	.menu-lateral-container-colapsado {
	 	left: -400px!important;
	 	transition: all 0.5s;
	 }
	.menu-lateral-container-desplegado {
	 	left: 0px!important;
	 	transition: all 0.5s;
	 }

/*----------------------------------------------------------------------------*/
.notifs-lateral-container {
	position: absolute; 
	top: 102px; 
	width: 300px; 
	height: calc(100vh - 102px); 
	z-index: 10000;
 }
	.notifs-lateral {
		position: absolute; 
		top: 0; 
		width: 300px; 
		height: 100%;
		background-color: rgba(20,20,20,.9);
		border-top-left-radius: 10px;
		border-bottom-left-radius: 10px;
	 }
		.notifs-lateral>ul {
			padding: 30px;
			font-size: 20px;
			color: white;
		 }
	.notifs-lateral-selector {
		position: absolute; 
		top: calc( 50% - 75px ); 
		right: 300px;
		width: 25px; 
		height: 150px; 
		cursor: pointer;
	 } 
	.notifs-lateral-selector-colapsado {
	 	right: 0px!important;
	 	transition: all 0.5s;
	 	-webkit-transition: all 0.5s;
	 	-moz-transition: all 0.5s;
	 	-ms-transition: all 0.5s;
	 	-o-transition: all 0.5s;
	 }
	.notifs-lateral-selector-desplegado {
	 	right: 300px!important;
	 	transition: all 0.5s;
	 	-webkit-transition: all 0.5s;
	 	-moz-transition: all 0.5s;
	 	-ms-transition: all 0.5s;
	 	-o-transition: all 0.5s;
	 }
	.notifs-lateral-container-colapsado {
		right: -300px!important;
	 	transition: all 0.5s;
	 	-webkit-transition: all 0.5s;
	 	-moz-transition: all 0.5s;
	 	-ms-transition: all 0.5s;
	 	-o-transition: all 0.5s;
	 }
	.notifs-lateral-container-desplegado {
		right: 0px!important;
	 	transition: all 0.5s;
	 }
	 
/* RESPONSIVE============================================================== */
/*----------------------------------------------------------------------------*/
@media all and (max-width:1515px) {
	.main-title-bar-system>h4 {
	 	font-size: 16px;
	 }
	.main-title-bar-title {
	 	font-size: 18px;
	 }
}
/*----------------------------------------------------------------------------*/
@media all and (max-width:990px) {
	.main-title-bar-system>h4 {
	 	font-size: 12px;
	 }
	.main-title-bar-title {
	 	font-size: 16px;
	 }
	.main-title-bar-subtitle {
	 	font-size: 9px;
	 }
		.main-title-bar-subtitle> :first-child {
		 	font-size: 12px;
		 }
}
/*----------------------------------------------------------------------------*/
