.blbNotifyContainer {
	position: fixed;
	z-index: 100;
	width: 100%;
	top: 30px;
	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;
}

.blbNotifyContainer > .notifyCloser {
	display: flex;
	align-items: center;
	font-size: 1.1em;
	font-weight: bold;
	margin: 10px 13px;
	cursor: pointer;
	background-color: gainsboro;
	color: black;
	justify-content: center;
	border-radius: 15px;
	padding: 0px 5px;
}

.blbNotifyImage {
	width: 18px;
	height: 18px;
	margin: 2px 5px;
}

.blbNotifyTitle {
	font-weight: bold;
	font-size: .9em;	
	margin-right: 10px;
}

.blbNotifyBody {
	font-size: .9em;	
	font-style: italic;
}

.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;}
}
*/