.notification {
	min-height: 80px;
	-moz-border-radius: 8px 8px;
	/* -webkit-border-radius: 8px; */
	-moz-box-shadow: 0px 0px 15px #777;
	/* -webkit-box-shadow: 0px 0px 15px #777; */
	color: white;
	font-style: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
/* identical to box height, or 133% */
	align-items: center;
	text-align: center;
	z-index: 10000 !important;
	max-height: 50%;
	height: auto;
	overflow: auto;
	clear: both;
}
.notification h6{
	color:white !important;
}
.notification-close {
	font-size: 22px !important;
	padding: 4px;
	margin: 10px;
	vertical-align: top;
	float: right;
}

.notification-message {
	display: inline-block;
	vertical-align: middle;
	box-sizing: border-box;
	max-width: calc(100% - 120px);
	padding: 10px 6px;
	text-align: left;
	line-height: 15px;
	margin-left: 70px;
}

.notification-message > p{
	margin-bottom: initial;
}

.notification.alert {
	background-color: #388E3C;
	border: unset;
	border-radius: initial;
	padding: initial;
	margin-bottom: initial;
}
.notification.warning{
	background-color: darkorange;
}
.notification.error {
	background-color: #ef5350;
	color: white;
	font-size: 16px;
}
.notification.alert > i.:first-child{

}
.notification.warning > i.:first-child{
	
}
.notification.error > i.:first-child{
	
}
.notification.alert .notification-message {
	/* background-color: #459686; */
}
.notification.warning .notification-message {
}
.notification.error .notification-message {
	/* background-color: #d62e2e; */
	/* color: white; */
}
.notification .notification-close:hover {
	cursor: pointer;
	background-color: #ffffff69;
}
.notification.alert .notification-close:hover {
	/* color: #388e3c; */
}
.notification.warning .notification-close:hover {
	/* color:darkorange */
}
.notification.error .notification-close:hover {
	/* color:#E74C3C */
}
.notification > i:first-child{
	display: inline-block;
	font-size: 30px;
	padding: 10px;
	vertical-align: middle;
	width: 66px;
	box-sizing: border-box;
	text-align: center;
	position: absolute;
	top: 10px;
}