:root {
	--media-laptop-l: "only screen and (max-width : 1440px)";
	--media-laptop: "only screen and (max-width : 1024px)";
	--media-tablet: "only screen and (max-width : 768px)";
	--media-mobile-l: "only screen and (max-width : 425px)";
	--media-mobile-m: "only screen and (max-width : 375px)";
	--media-mobile-s: "only screen and (max-width : 320px)";	
}

.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(61,38,123,1);/*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;
		 }
		@media only screen and (max-width: 768px) { /*tablet*/
			.main-title-bar-logo {
				display: none;
			 }	
		 }
			.main-title-bar-logo>img {
				background-color: rgba(240,240,240,.8);
				box-shadow: 1px 1px 2px rgba(63,63,63,.8);
				height: 70px;
				margin: 0 10px;
				padding: 5px; 
				border-radius: 8px;
			 }
		.main-title-bar-system {
			box-sizing: border-box;	
			border-left: 1px solid rgba(185, 185, 236, 0.9);
			color: white;
			font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
			font-size: 22px;
		 	padding: 10px 10px;
		 	margin: 10px 0;
			height: 100%;
			position: relative;
			width: 150px;
			display: flex;
			flex-direction: column;
			justify-content: flex-start;
			align-items: flex-start;
		 }
		 	.main-title-bar-system>.b1 {
				display: flex;
				flex-direction: row;
				justify-content: flex-start;
				align-items: flex-start;	
			 }
				.main-title-bar-system>.b1>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>.b1>.title {
   					color: white;/* rgba(0,76,152,.8);*/
				 	padding: 3px;
				 	font-size: 22px;
			 	 }
					.main-title-bar-system>.b1>.title>.pref {
						color: rgba(101, 88, 161, 0.8);
						text-shadow: 1px 1px 1px rgba(255, 255, 255, 1);
						font-weight: bolder;
				 		font-size: 18px;
					 }			 
					.main-title-bar-system>.b1>.title>.cuerpo {
						text-shadow: 1px 1px 1px rgba(191, 182, 229, 0.8);
			  		 }			 
		    .main-title-bar-system > .b2 {
				display: flex;
				flex-direction: row;
				justify-content: flex-start;
				align-items: flex-start;	
			 }
			@media only screen and (max-width: 768px) { /*tablet*/
				.main-title-bar-system > .b2 {
					display: none;
				 }	
			 }
			 	.main-title-bar-system > .b2 > .descripcion {
					font-size: 16px;
					position: absolute;
					top: 48px;
					left: 10px;
					color: rgb(215, 216, 248);
					text-shadow: 1px 1px 1px rgba(191, 182, 229, 0.8);
			 	 }
		.main-title-bar-title {
		 	box-sizing: border-box;	
			border-left: 1px solid rgba(185, 185, 236, 0.9);
			margin: 10px 0;
			padding: 0 10px;
			height: 100%;
		 	font-size: 30px;
		 	text-align: right;
		 }
		 	.main-title-bar-title>.container {
				color: rgba(222, 222, 238,1);
				padding: 10px 10px;
				height: 100%;
				background-color: rgba(133, 110, 197, 0.5);	
				text-shadow: 2px 2px 2px rgb(32, 32, 32);
				display: flex;
				justify-content: flex-end;
				align-items: center;
				border-radius: 6px;
  			 }
				.main-title-bar-title>.container>i {
					font-size: 20px;
					color: rgb(193, 144, 240);
					text-shadow: 2px 2px 2px rgba(1, 1, 2, 0.8);
					padding: 5px 10px 5px 5px;
				 }
				.main-title-bar-title>.container>.title {
					text-align: left;
					line-height: 90%;
				 }
		.main-title-bar-subtitle {
			box-sizing: border-box;	
			border-left: 1px solid rgba(185, 185, 236, 0.9);
			margin: 10px 0;
		 	padding: 0px 15px;
			height: 100%;
		 	display: flex;
		 	flex-direction: column;
			justify-content: center;
			align-items: flex-start;
			color: rgba(224,224,224,.8);
			font-size: 10px;
   			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%;
	 }
	@media only screen and (max-width: 768px) { /*tablet*/
		.main-title-bar-content2 {
			display: none;
		 }	
	 }
.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 );
	 }

	.login-fm {
		height: 100vh;
		overflow: hidden;
	}
	
	.logout {
		height: 100vh;
	 }
.main-foot-bar {
	width: 100%;
	height: 40px;
	background-color: rgb(56, 27, 102);
}
/*----------------------------------------------------------------------------*/
.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;
	 }
	@media only screen and (max-width : 768px) { /*media-tablet*/
		.menu-lateral {
			width: 300px;
		 }
	 }
		.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;
	 } 
	@media only screen and (max-width : 768px) { /*media-tablet*/
		.menu-lateral-selector {
			left: 300px;
		 }
	 }
	.menu-lateral-selector-colapsado {
	 	left: 0px!important;
		transition: all 0.5s;
		z-index: 10000;
	 }
	.menu-lateral-selector-desplegado {
	 	left: 400px!important;
		transition: all 0.5s;
		z-index: 10000;
	 }
	@media only screen and (max-width : 768px) { /*media-tablet*/
		.menu-lateral-selector-desplegado {
			left: 300px!important;
		 }
	 }
	.menu-lateral-container-colapsado {
	 	left: -400px!important;
	 	transition: all 0.5s;
	 }
	@media only screen and (max-width : 768px) { /*media-tablet*/
		/*.menu-lateral-container-colapsado {
			left: -300px!important;
		 }*/
	 }
	.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 only screen and (max-width : 768px) { /*media-tablet*/

 }
/*----------------------------------------------------------------------------*/
@media all and (min-width: 769px) and (max-width: 990px) {
	.main-title-bar-system>h4 {
	 	font-size: 12px;
	 }
	.main-title-bar-title>.container>.title {
	 	font-size: 16px;
	 }
	.main-title-bar-subtitle {
	 	font-size: 9px;
	 }
		.main-title-bar-subtitle> :first-child {
		 	font-size: 12px;
		 }
 }
/*----------------------------------------------------------------------------*/
@media all and (min-width: 991px) and (max-width: 1024px) { 
	.main-title-bar-system>h4 {
		font-size: 14px;
	 }
	 .main-title-bar-title>.container>.title {
		font-size: 18px;
	 }
	.main-title-bar-subtitle {
		font-size: 11px;
	 }
	   .main-title-bar-subtitle> :first-child {
			font-size: 14px;
		 }
 }
/*----------------------------------------------------------------------------*/
@media all and (min-width: 1025px) and (max-width: 1280px) {
	.main-title-bar-system>h4 {
		font-size: 16px;
	 }
	 .main-title-bar-title>.container>.title {
		font-size: 20px;
	 }
	.main-title-bar-subtitle {
		font-size: 12px;
	 }
	    .main-title-bar-subtitle> :first-child {
			font-size: 16px;
		 }
 }
/*----------------------------------------------------------------------------*/
@media all and (min-width: 1281px) and (max-width: 1366px) { 
	.main-title-bar-system>h4 {
		font-size: 18px;
	 }
	 .main-title-bar-title>.container>.title {
		font-size: 24px;
	 }
	.main-title-bar-subtitle {
		font-size: 14px;
	 }
	    .main-title-bar-subtitle> :first-child {
			font-size: 18px;
		 }
 }
/*----------------------------------------------------------------------------*/
@media all and (min-width: 1367px) and (max-width: 1515px) {
	
 }
/*----------------------------------------------------------------------------*/
@media all and (min-width: 1516px) and (max-width: 1920px) {

 }
/*----------------------------------------------------------------------------*/