@keyframes fadeNotification {
	0% {
		opacity: 0;
	}
	15% {
		opacity: 1;
	}
	85% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

#notificationContainer {
	position: fixed;
	top: 0;
	right: 0;
	display: block;
	z-index: 2000;
}

.notificationContent {
	margin: 20px;
	padding: 15px;
	border: 1px solid #00000050;
	min-width: 30vw;
	opacity: 0;
}

.notificationText {
	margin-bottom: 0;
}

.fadeNotification {
	display: block !important;
	opacity: 0;
	animation-name: fadeNotification;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 3s;
}