.alertmask {
	position: fixed;
	width: 100%;
	height: 100%;
	transition: all .4s; 
	background: rgba(0, 0, 0, .4);
	left: 0;
	top: 0;
	z-index: -1;
	opacity: 0;
}

.alertmask .alertbox {
	background: #fff;
	width: 400px;
	padding: 40px;
	border-radius: 5px;
	border: 1px solid rgba(255, 255, 255, .4);
	position: absolute;
	left: 50%;
	top: 30%;
	transform: translate(-50%,-50%);
}

.alertmask .alertbox .icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
}

.alertmask .alertbox .tiptext {
	font-size: 18px;
	color: #333;
	line-height: 26px;
	text-align: center;
	margin-bottom: 30px;
}

.alertmask .alertbox .conbtn {
	width: 120px;
	height: 44px;
	line-height: 44px;
	text-align: center;
	font-size: 16px;
	color: #fff;
	border-radius: 5px;
	margin: 0 auto;
	background: #00a4e8;
	cursor: pointer;
}
.actAlert{
	opacity: 1;
		z-index: 999999;
}
.error .alertbox .icon{
	background: url(../images/error.png) no-repeat ;
		background-size: 100%;
}

.success .alertbox .icon{
	background: url(../images/succes.png) no-repeat;
	background-size: 100%;
}


@media  screen and (max-width:768px) {
	.alertmask .alertbox {

		width: 90%;
		padding: 20px;
		
	}
	.alertmask .alertbox .icon {
		width: 44px;
		height: 44px;
	}
	.alertmask .alertbox .tiptext {
		font-size: 16px;
		margin-bottom: 20px;
	}

}