/* *{
	margin: 0;
	padding: 0;
	font-family: 'Poppins', san-serif;
	box-sizing: border-box;
}
body{
	background: #f7edff;
}
.buttons{
	margin: 50px;
}
.buttons button{
	background: #333;
	color: #fff;
	border: 0;
	outline: 0;
	width: 120px;
	height: 40px;
	margin: 5px;
	cursor: pointer;
} */
#toastBox{
	position: fixed;
	top: 30px;
	right: 30px;
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	overflow: hidden;
	padding: 20px;
	z-index: 20000xx;
}
.toastx{
	width:330px;
	height: 80px;
	background: #fff;
	font-weight: 500;
	margin: 15px 0;
	border-radius: 140pxs;
	border-top-right-radius: 80px 80px;
	border-bottom-right-radius: 80px 80px;
	border-left: 6px solid #f32695;
	box-shadow: 0 0 20px rgba(0 0 0 0.3);
	display: flex;
	align-items: center;
	position: relative;
	transition: opacity 0.3s, transform 0.3s;
	transform: translateX(100%);
	animation: movleft 0.5s linear forwards;
}
@keyframes movleft{
	100%{
		transform: translateX(0);
	}
}
.toastx i{
	margin: 0 20px;
	font-size: 35px;
	color: green;
}
.toastx.error i{
	color: red;
}
.toastx.invalid i{
	color: orange;
}
.toastx::after{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 5px;
	background: green;
	animation: anim 5s linear forwards;
}
@keyframes anim{
	100%{
		width: 0;
	}
}
.toastx.error::after{
	background: red;
}
.toastx.invalid::after{
	background: orange;
}