/*NOTIFICATION MESSAGES*/
.notification{
	position:fixed;
	background:#000;
	height:50px;
	top:0;
	left:0;
	right:0;
	color:#fff;
	text-align:center;
	z-index:99999;
	padding:10px;
	font-size:18px;
	display:none;
	border-bottom:2px solid #3B91E1;
}
.notification i{
	font-size:18px;
}

/*LOADER || Implementation - Put this on common page, place image too. - <div class="loader"><img src="process.gif"></div> and jquery implementation is $('.loader').show() and $('.loader').hide()*/
.loader{
	position:fixed;
	height:100%;
	width:100%;
	background:rgba(0,0,0,0.8);
	z-index:99999;
	display:none;
	left:0;
	top:0;
}
.loader img{
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	margin:auto;
	width:40px;
}