#notifications-block {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	z-index: 200;
}
.notification {
	overflow: hidden;
	color: #000;
	font-size: 0.9rem;
	opacity: 0.9;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, 1);
	box-shadow: 0 0.25rem 0.75rem var(--color-sh-default);
	position: relative;
	padding: 0.75rem 2rem 0.75rem 0.75rem;
	overflow-wrap: break-word;
	word-break: normal;
	transition: opacity 2s ease-in-out;
}
.notification:not(:last-child) {
	margin-bottom: 0.2rem;
}
.notification:hover {
	border: 1px solid #ccc;
	opacity: 1;
}
@media screen and (min-width:20em) {
	#notifications-block {
		top: 2rem;
		right: 1em;
		width: 15em;
	}
	.notification {
		border-radius: 0.25rem;
	}
	.notification:not(:last-child) {
		margin-bottom: 0.5rem;
	}
}
.notif-close {
	position: absolute;
	top: 0;
	right: 0.3rem;
	padding: 0;
	color: #000;
	border: 0;
	float: right;
	cursor: pointer;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1;
	text-shadow: 0 1px 0 #fff;
	opacity: 0.6;
	background-color: transparent;
	margin: 0;
	border-radius: 0;
}
.notif-error {
	background-color: var(--color-nt-error);
}
.notif-warn {
	background-color: var(--color-nt-warning);
}
.notif-info {
	background-color: var(--color-nt-inform);
}
.invisible {
	opacity: 0 !important;
}
