@keyframes show {
	from {
		opacity: 0;
		right: 200px;
	}
	to {
		opacity: 1;
		right: 0px;
	}
}

@keyframes hide {
	from {
		opacity: 1;
		right: 0px;
	}
	to {
		opacity: 0;
		right: -200px;
	}
}

/*.system-message-container {
	position: fixed;
	z-index: 950;
	right: 50px;
	top: 50px;
}


.system-message {
	position: absolute;
	white-space: nowrap;
}*/

.system-message.show {
	opacity: 1;
	right: 0px;
	animation: show 0.75s ease-out;
}
.system-message.hide {
	animation: hide 0.75s ease-in;
}
