.toast-container {
	display: flex;
	position: fixed;
	top: 25px;
	right: 30px;
	flex-direction: column;
	gap: 10px;
	z-index: 1000;
}

.toast {
	position: relative;
	width: 320px;
	border: 2px solid black;
	border-radius: 12px;
	background: #fff;
	padding: 20px 35px 20px 25px;
	box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.1);
	display: flex;
	overflow-x: hidden;
	align-items: center;
	transform: translateX(calc(100% + 30px));
	transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
}
.toast.active {
	transform: translateX(0%);
}

.toast .toast-content {
	display: flex;
	align-items: center;
}

.toast-content .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 35px;
	min-width: 35px;
	font-size: 35px;
	color: #fff;
}
.toast-content .message {
	display: flex;
	flex-direction: column;
	margin-left: 15px;
}

.message .text {
	font-size: 16px;
	font-weight: 400;
	color: #666666;
	font-family: "Outfit", serif;
	font-optical-sizing: auto;
	font-style: normal;
}
.message .text.text-1 {
	font-weight: 600;
	color: #333;
}

.toast .close {
	position: absolute;
	top: 10px;
	right: 15px;
	padding: 5px;
	cursor: pointer;
	opacity: 0.7;
}
.toast .close:hover {
	opacity: 1;
}

.toast .progress {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 5px;
	width: 100%;
}
.toast .progress:before {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background-color: #4070f4;
}

/* If you edit the timeout variable in the JS, be sure to edit this too */
.progress.active:before {
	animation: progress 2s linear forwards;
}

@keyframes progress {
	100% {
		right: 100%;
	}
}

/* Toast Type Colors */
.toast.success	.icon { color: #198754; }
.toast.error	.icon { color: #ff1a1a; }
.toast.warning	.icon { color: #ff662e; }
.toast.info		.icon { color: #ffc107; }

.toast.success	.progress:before { background: #198754; }
.toast.error	.progress:before { background: #ff1a1a; }
.toast.warning	.progress:before { background: #ff662e; }
.toast.info		.progress:before { background: #ffc107; }
