.onemo-toast {
	position: absolute;
	padding: 14px 18px;
	min-width: 250px;
	z-index: 999999;
	border-radius: 5px;
	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
}

.onemo-toast[data-state=default] {
	background-color: #5867dd
}

.onemo-toast[data-state=success] {
	background-color: #1aa73d
}

.onemo-toast[data-state=alert] {
	background-color: #c44c07
}