﻿.toast-container {
	position: fixed;
	height: fit-content;
	max-height: 80vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25em;
	bottom: 0.25em !important;
	z-index: 121;
}

.toasts {
	width: 400px;
	padding: 1em;
	border-radius: 5px;
	background: #111111BF;
	text-align: center;
	transition: all .75s linear;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
	font-size: medium;
	color: white;
	justify-content:flex-end;
}

.toasts.fade {
	opacity: 0;
	transform: translateY(50px);
}

.toasts.error {
	border: 3px solid red;
	background: #220000BF;
}

.toasts.success {
	border: 3px solid rgba(77,175,51);
	background: #0C1C08BF;
}

.toasts.warning {
	border: 3px solid rgb(175, 103, 51);
	background: rgba(28, 22, 8, 0.75);
}

@media screen and (max-width: 399px) {
.toast-container {
		width: 95%;
	}

.toasts {
		width: 100%;
	}
}