.toast {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 9999;
	min-width: fit-content;
	max-width: 280px;
	padding: 12px 16px;
	border-radius: 8px;
	color: #fff;
	font-size: 14px;
	box-shadow: 0 6px 18px rgba(0,0,0,0.15);
	transition: 0.3s;
	cursor: pointer;
	opacity: 1;
}

.toast--success {
	background-color: var(--success);
}

.toast--error {
	background-color: var(--red);
}