/* Alerts */
.alert-red .alert-close, .alert-pink .alert-close,
.alert-purple .alert-close, .alert-indigo .alert-close,
.alert-blue .alert-close, .alert-cyan .alert-close,
.alert-teal .alert-close, .alert-green .alert-close,
.alert-orange .alert-close, .alert-brown .alert-close,
.alert-bgray .alert-close {
	color: #fff;
}
/* Red */
.alert-red {
	background-color: #E57373 !important;
	color: #fff !important;
}
/* Pink */
.alert-pink {
	background-color: #F06292 !important;
	color: #fff !important;
}
/* Purple */
.alert-purple {
	background-color: #BA68C8 !important;
	color: #fff !important;
}
/* Indigo */
.alert-indigo {
	background-color: #7986CB !important;
	color: #fff !important;
}
/* Blue */
.alert-blue {
	background-color: #64B5F6 !important;
	color: #fff !important;
}
/* Cyan */
.alert-cyan {
	background-color: #4DD0E1 !important;
	color: #fff !important;
}
/* Teal */
.alert-teal {
	background-color: #4DB6AC !important;
	color: #fff !important;
}
/* Green */
.alert-green {
	background-color: #81C784 !important;
	color: #fff !important;
}
/* Orange */
.alert-orange {
	background-color: #FFB74D !important;
	color: #fff !important;
}
/* Brown */
.alert-brown {
	background-color: #A1887F !important;
	color: #fff !important;
}
.alert-info {
	background-color: #50acc7 !important;
	color: #fff !important;
}
/* Blue gray */
.alert-bgray {
	background-color: #90A4AE !important;
	color: #fff !important;
}

.alert {
    background-color: #eee;
    color: #000;
	border-radius: 4px;
	padding: 16px;
    margin-bottom: 15px;
	opacity: 1;
	transition: opacity 0.4s;
}
.alert-close {
    margin-left: 15px;
    color: #bbb;
	float: right;
	font-size: 22px;
	font-weight: bold;
	line-height: 20px;
    cursor: pointer;
}
.alert-close:hover {
    color: #000;
} 

#alert-notif {
	z-index: 5000 !important;
}