.notification-container {
	position: fixed;
	top: 10rem;
	left: 50%;
	transform: translateX(-50%);

	padding: 1rem;
	border-radius: 8px;

	display: none;
	align-items: center;
	gap: 1rem;

	background: #c7ffde;
	color: #0f9926;
	box-shadow: 0 1px 12px rgb(0, 0, 0, 15%);
}

.show {
	display: flex;
}

.check-icon,
.notification-text {
	font-size: 20px;
}