﻿/*#region New Status Messages */
#statusMessagesHolderDiv {
	width: 70%;
	max-width: 900px;
	margin: 0 auto;
	font-size: 1em;
	text-align: center;
	position: fixed;
	top: 50px;
	left: 0;
	right: 0;
	z-index: 100000;
	opacity: .9;
	display: none;
	pointer-events: none;
}

	#statusMessagesHolderDiv .green {
		background: rgba(73, 135, 59, .85);
		color: #FFF;
	}

	#statusMessagesHolderDiv .yellow {
		background: rgba(255, 255, 76, .85);
		color: #333;
	}

	#statusMessagesHolderDiv .red {
		background: rgba(102, 0, 0, .85);
		color: #FFF;
	}

	#statusMessagesHolderDiv > div {
		display: block;
		-moz-border-radius: 10px;
		-webkit-border-radius: 10px;
		padding: 1em;
		padding-right: 50px;
		margin: .25em auto;
		line-height: 30px;
		position: relative;
	}

.closeStatusMessage {
	width: 20px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	pointer-events: none;
	cursor: pointer;
}

	.closeStatusMessage:before {
		display: block;
		vertical-align: middle;
		color: #FFF;
		font-weight: bold;
		width: 30px;
		height: 30px;
		cursor: pointer;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		pointer-events: auto;
		font-family: FontAwesome;
		content: "\f057";
		font-size: 24px;
		background: transparent;
		border: none;
		line-height: 27px;
		text-align: center;
		transform: translateY(2px);
		padding: 0;
	}

#statusMessagesHolderDiv .yellow .closeStatusMessage:before {
	color: #333;
}

	/*#endregion /Status Messages */


/*#endregion New Status Messages */