@charset "UTF-8";

.siiimpleToast {
	position: absolute;
	padding: 14px 18px;
/* 	min-width: 250px; */
	z-index: 999999;
	border-radius: 19px;
	color: #fff;
	font-weight: 300;
	white-space: nowrap;
	user-select: none;
	opacity: 0;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
	box-sizing: border-box;
	transform: scale(.5);
	transition: all .4s ease-out;
	text-align: center;
}

.siiimpleToast[data-state=default] {
	background-color: #323232;
}

.siiimpleToast[data-state=success] {
	background-color: #8bc34a;
}

.siiimpleToast[data-state=alert] {
	background-color: #d93737;
}