#snackbar {
	min-width: 250px;
	background-color: #0F9D58;
	color: #fff;
	text-align: center;
	padding: 10px 30px;
	position: fixed;
	/* margin-left: -125px;
	left: 50%; */
	bottom: 30px;
	font-size: 18px;
	font-family: Roboto;
	border-radius: 4px;
	visibility: hidden;
	z-index: 9999;
}

#snackbar.show {
	visibility: visible;
	-webkit-animation: fadein 1s, fadeout 0.5s 2.5s;
	animation: fadein 1s, fadeout 0.5s 2.5s;
}

#snackbar_error {
	min-width: 250px;
	background-color: #DB4437;
	color: #fff;
	text-align: center;
	padding: 10px 30px;
	position: fixed;
	/* margin-left: -125px;
	left: 50%; */
	bottom: 30px;
	font-size: 18px;
	font-family: Roboto;
	border-radius: 4px;
	visibility: hidden;
	z-index: 9999;
}

.snackbar_error {
	min-width: 250px;
	background-color: #DB4437;
	color: #fff;
	text-align: center;
	padding: 10px 30px;
	position: fixed;
	/* margin-left: -125px;
	left: 50%; */
	bottom: 30px;
	font-size: 18px;
	font-family: Roboto;
	border-radius: 4px;
	visibility: hidden;
	z-index: 9999;
}


#snackbar_error.show {
	visibility: visible;
	-webkit-animation: fadein 1s, fadeout 0.5s 2.5s;
	animation: fadein 1s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
	from {
		bottom: 0;
		opacity: 0;
	}

	to {
		bottom: 30px;
		opacity: 1;
	}
}

@keyframes fadeout {
	from {
		bottom: 30px;
		opacity: 1;
	}

	to {
		bottom: 0;
		opacity: 0;
	}
}

@-webkit-keyframes fadein {
	from {
		bottom: 0;
		opacity: 0;
	}

	to {
		bottom: 30px;
		opacity: 1;
	}
}

@-webkit-keyframes fadeout {
	from {
		bottom: 30px;
		opacity: 1;
	}

	to {
		bottom: 0;
		opacity: 0;
	}
}