#snackbar {
	background-color: #c7081b;
	position: fixed;
	left: 50%;
	bottom: 30px;
	transform: translate(-50%, -50%);
	margin: 0 auto;
	visibility: hidden;
	min-width: 15%;
	color: #fff;
	text-align: center;
	border-radius: 2px;
	padding: 16px;
	z-index: 9999;
	font-size: 17px;
}

#snackbar.show { 
	visibility: visible;
	-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
	animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
