#toast {
	/* background-color: #ef5350; */
	/* background-color: #d32f2f; */
	background-color: #c62828;
	/* border: 4px solid #c62828; */
	/* border-color: #ef5350; */
	/* background-color: #dc3545; */
	/* border-color: #dc3545; */
	border-radius: 0.5rem;
	padding: 0.75rem 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;

	position: fixed;
	bottom: -4rem;
	transform: translateY(100%);
	left: 1rem;
	right: 1rem;
	z-index: 999;
	overflow: hidden;
}

#toast.transition-enabled {
	transition: all 0.5s ease-in-out;
}

#toast.visible {
	bottom: 1rem;
	transform: translateY(0);
}

#toast button {
	font-size: 1.5rem;
	text-decoration: none;
}

#toast p {
	font: var(--p2);
}

#toast .slider {
	position: absolute;
	left: 0;
	right: 100%;
	bottom: 0;
	background-color: #ef5350;
	height: 4px;
}

#toast.success {
	background-color: #2e7d32;
}

#toast.success .slider {
	background-color: #4caf50;
}

@media only screen and (min-width: 769px) {
	#toast {
		width: max-content;
		max-width: calc(100% - 2rem);
		left: 50%;
		right: unset;
		transform: translate(-50%, 100%);
	}

	#toast.visible {
		transform: translate(-50%, 0);
	}
}