#alerts {
	width: 400px;
	bottom: 10px;
	left: 30px;
	position: fixed;
	z-index: 9999;
	list-style: none; 
}
.alert {
	width: 100%;
	margin-bottom: 8px;
	display: block;
	position: relative;
	border-left: 4px solid;
	right: -50px;
	opacity: 0;
	line-height: 1;
	padding: 0;
	transition: right 400ms, opacity 400ms, line-height 300ms 100ms, padding 300ms 100ms;
	display: table; 
}
.alert:hover {
	cursor: pointer;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.3); 
}
.open {
	right: 0;
	opacity: 1;
	line-height: 2;
	padding: 5px 8px 7px 15px;
	transition: line-height 200ms, padding 200ms, right 350ms 200ms, opacity 350ms 200ms; 
}
.alert-title {
	font-weight: bold; 
}
.alert-message {
	line-height: 18px; 
}
.alert-block {
	width: 80%;
	width: -webkit-calc(100% - 15px);
	width: calc(100% - 15px);
	text-align: left; 
}
.alert-block em,
.alert-block small {
	font-size: .75em;
	opacity: .75; 
}
.alert i {
	font-size: 2em;
	width: 1.3em;
	max-height: 48px;
	top: 50%;
	margin-top: -12px;
	display: table-cell;
	vertical-align: middle; 
}
.alert-success {
	color: #888;
	border-color: #539753;
	background-color: #ffffff;
	box-shadow: 0px 0px 10px #888888; 
}
.alert-success i {
	color: #539753;
}
.alert-error {
	color: #888;
	border-color: #7f0709;
	background-color: #ffffff;
	box-shadow: 0px 0px 10px #888888;
}
.alert-error i {
	color: #bf074b; 
}
.alert-info {
	color: #888;
	border-color: #12b7f1;
	background-color: #ffffff;
	box-shadow: 0px 0px 10px #888888; 
}
.alert-info i {
	color: #3397db;
}
.alert-warning {
	color: #888;
	border-color: #dd6137;
	background-color: #ffffff;
	box-shadow: 0px 0px 10px #888888;
}
.alert-warning i {
	color: #f7931d; 
}
.alert-confirm {
	color: #888;
	border-color: #076d91;
	background-color: #ffffff;
	box-shadow: 0px 0px 10px #888888; 
}
.alert-confirm i {
	color: #3397db; 
}
.alert-confirm button {
	color: white;
	height: 40px;
	padding: 0 30px;
	margin: 3px 8px;
	background: #0079bd;
	transition: 0.4s; 
}
.alert-confirm button:hover {
	background: rgba(0, 121, 189, 0.8); 
}