

#notice-container {
	position: fixed;
	right: 0;
	bottom: 0;
	width: 350px;
	z-index: 999;
}

#notice-container > div {
	position: relative;
	padding: 15px 20px 15px 55px;
	border: 5px;
	color: #FFFFFF;
	border-radius: 5px;
	margin: 0 10px 10px 0;
	background-color: #3c3f41;
	font-weight: 300;
	font-size: 16px;
}

#notice-container > div * {
	color: #FFFFFF;
}

#notice-container > div:before {
	content: '';
	font-size: 18px;
	display: block;
	height: 20px;
	width: 20px;
	position: absolute;
	top: 16px;
	left: 20px;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url('/project/cafuture/ui/notify/pub/img/white/info-circle.svg');
	opacity: 0.7;
}

/* Erfolgsmeldung
------------------*/

	#notice-container .success {
		background-color: #4c934c;
	}
	#notice-container .success:before {
		content: "";
		background-image: url('/project/cafuture/ui/notify/pub/img/white/circle-check.svg');
	}

/* Info
--------*/

	#notice-container .info {
		background-color: #2f65ca;
	}
	#notice-container .info:before {
		background-image: url('/project/cafuture/ui/notify/pub/img/white/info-circle.svg');
	}

/* Fehler
----------*/

	#notice-container .error {
		background-color: #ba3027;
	}
	#notice-container .error:before {
		background-image: url('/project/cafuture/ui/notify/pub/img/white/alert-triangle.svg');
	}

/* Warnung
-----------*/

	#notice-container .warning {
		background-color: #ff9800;
	}
	#notice-container .warning:before {
		background-image: url('/project/cafuture/ui/notify/pub/img/white/alert-triangle.svg');
	}