/* ====== NOTIFICATIONS ====== */


/* ======
NOTIFICATIONS
	- General
====== */


/*================================================================================
$ GENERAL
================================================================================*/

#notifications-manager {
	bottom: 0;
	left: 50%;
	max-width: 600px;
	padding: 0 10px;
	pointer-events: none;
	position: fixed;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100%;
	z-index: 9;
}

#notifications-manager .notification-items {
	list-style: none;
	margin: 0;
	padding: 0;
	zoom: 1;
}
#notifications-manager .notification-items:before,
#notifications-manager .notification-items:after {
	content: "";
	display: table;
}
#notifications-manager .notification-items:after {
	clear: both;
}

#notifications-manager .notification-items .notification-item {
	float: left;
	margin-bottom: 7px;
	padding: 8px;
	width: 100%;
}

#notifications-manager .notification-items .notification-item .icon {
	color: white;
	float: left;
	height: 100%;
	position: relative;
	top: 2px;
	width: 6%;
}

#notifications-manager .notification-items .notification-item .icon > i {
	font-size: 16px;
}

#notifications-manager .notification-items .notification-item .message {
	color: white;
	float: left;
	font-family: news-gothic-std, sans-serif;
	font-size: 15px;
	font-weight: normal;
	margin: 0;
	padding: 0;
	width: 94%;
}

#notifications-manager .notification-items .notification-item.ntype-success {
	background-color: #38bb5a;
}
#notifications-manager .notification-items .notification-item.ntype-notice {
	background-color: #0055bb;
}
#notifications-manager .notification-items .notification-item.ntype-warning {
	background-color: #f96700;
}
#notifications-manager .notification-items .notification-item.ntype-error {
	background-color: #c1272d;
}

@media screen and (max-width: 449px) {
	#notifications-manager .notification-items .notification-item .icon {
		width: 7%;
	}

	#notifications-manager .notification-items .notification-item .message {
		width: 93%;
	}
}

@media screen and (max-width: 369px) {
	#notifications-manager .notification-items .notification-item .icon {
		width: 8%;
	}

	#notifications-manager .notification-items .notification-item .message {
		width: 92%;
	}
}
