.blbNotifyContainer {
	position: fixed;
	z-index: 100;
	width: 100%;
	bottom: 0;
	background-color: crimson;
	color: white;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	flex-wrap: nowrap;
	animation-name: blbNotifyShow;
	animation-duration: 1.5s;
}

.blbNotifyContainer > .notifyContent {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 5px;
}

.blbNotifyContainer > .notifyCloser {
	display: flex;
	align-items: center;
	font-size: 1.1em;
	font-weight: bold;
	margin: 10px 13px;
	cursor: pointer;
	background-color: #fff;
	border: 1px solid #fff;
	color: #ee3a31;
	justify-content: center;
	border-radius: 15px;
	padding: 0px 5px;
	transition: .5s ease-in-out;
}

.blbNotifyContainer > .notifyCloser:hover {
	transition: .5s ease-in-out;
	background-color: #ee3a31;
	border: 1px solid #fff;
	color: #fff;
}

.blbNotifyContainer > .notifyCloser:active {
	background-color: #a11f18;
	border: 1px solid #fff;
	color: #fff;
}

.blbNotifyImage {
	width: 18px;
	height: 18px;
	margin: 2px 5px;
}

.blbNotifyTitle {
	font-weight: bold;
	font-size: .9em;	
	margin-right: 10px;
}

.blbNotifyBody {
	font-size: .9em;
}

.blbNotifyHide {
	animation-name: blbNotifyHide;
	animation-duration: 1.5s;
	visibility: hidden;
}

/* The animation code */
@keyframes blbNotifyShow {
	from {opacity: 0;}
	to {opacity: 1;}
}

@keyframes blbNotifyHide {
	from {opacity: 1; visibility: visible;}
	to {opacity: 0; visibility: visible;}
}

/*
@keyframes blbNotifyShow {
	from {top: 0;}
	to {top: 30;}
}

@keyframes blbNotifyHide {
	from {top: 30; visibility: visible;}
	to {top: 0; visibility: visible;}
}
*/