@CHARSET "UTF-8";
#toast.ns-show {
	pointer-events: auto;
}
.ns-box {
	background: #e7e7e7;
	top: auto;
	bottom: 30px;
	
	right: 30px;
	border-radius: 5px;
	
	position: fixed;
	padding: 22px;
	line-height: 1.4;
	z-index: 1000;
	pointer-events: none;
	color: #666;
	font-size: 95%;
	
	border-left:13px #2eab23 solid;
	max-width:200px;
}
.ns-box-error {
	color: #FF1A01;
	border-left:13px #FF1A08 solid;
}

.ns-close {
	width: 20px;
	height: 20px;
	position: absolute;
	right: 4px;
	top: 4px;
	overflow: hidden;
	text-indent: 100%;
	cursor: pointer;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.ns-close:hover, 
.ns-close:focus {
	outline: none;
}

.ns-close::before,
.ns-close::after {
	content: '';
	position: absolute;
	width: 3px;
	height: 60%;
	top: 50%;
	left: 50%;
	background: #888888;
}

.ns-close:hover::before,
.ns-close:hover::after {
	background: #fff;
}

.ns-close::before {
	-webkit-transform: translate(-50%,-50%) rotate(45deg);
	transform: translate(-50%,-50%) rotate(45deg);
}

.ns-close::after {
	-webkit-transform: translate(-50%,-50%) rotate(-45deg);
	transform: translate(-50%,-50%) rotate(-45deg);
}

