.notif {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: end;
}

.notif__list {
	margin: 2rem 2rem;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.notif__item {
	z-index: 10;
	min-width: 50vw;
	padding: 1rem 2rem;
	text-align: center;
	border-radius: 5px;
	color: white;
	position: relative;
}

.notif__close {
	content: "🗙";
	position: absolute;
	top: 50%;
	left: 100%;
	transform: translate(-150%, -50%);
	font-size: 1.5rem;
	border: none;
	background-color: rgba(0, 0, 0, 0);
	color: inherit;
}

.notif__item--error {
	background-color: rgba(200, 0, 0, 0.6);
	border: 1px solid rgba(200, 0, 0, 1);
}

.notif__item--success {
	background-color: rgba(0, 200, 0, 0.6);
	border: 1px solid rgba(0, 200, 0, 1);
}

@media (min-width: 768px) {
	.notif__item {
		min-width: 33vw;
	}	
}
