@CHARSET "UTF-8";



.wui-toast-mask {
	position: fixed;
	z-index: 101;
	width: 100%;
	height: 100vh;
	left: 0;
	top: 0;
	background-color: rgba(255,255,255,0.8);
}
.wui-toast {
	position: fixed;
	z-index: 101;	
	background-color: rgba(0,0,0,0.8);
	color: #fff;
	font-size: 14px;
	padding: 15px 20px;
	text-align: center;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 5px;
}
.wui-toast .icon-spin4 {
	font-size: 28px;
	animation: spin 2s infinite linear;
	display: block;	
}
@keyframes spin {
	from {
	   transform: rotate(0deg);
    }
    to {
	   transform: rotate(360deg);    	
    }
}