
.notification{
	position:fixed;
	top:15%;
	left:20%;
	width:50%;
    height: 6%;
	background:green;
	padding:1px;
	color:#fff;
	font-size:16px;
	box-shadow:0 0 25px rgba(33,33,33,0.5);
	border-radius:3px;
	transform:translateY(-50%);
	box-sizing:border-box;
	animation:0.3s up ease 1; 
	opacity:0;
    visibility: hidden;
  
}

.notification1{
	position:fixed;
	top:15%;
	left:20%;
	width:50%;
    height: 6%;
	background:rgb(112, 112, 218);
	padding:1px;
	color:#fff;
	font-size:16px;
	box-shadow:0 0 25px rgba(33,33,33,0.5);
	border-radius:3px;
	transform:translateY(-50%);
	box-sizing:border-box;
	animation:0.3s up ease 1; 
	opacity:0;
    visibility: hidden;
  
}

.notification2{
	position:fixed;
	top:15%;
	left:20%;
	width:50%;
    height: 6%;
	background:rgb(224, 117, 11);
	padding:1px;
	color:#fff;
	font-size:16px;
	box-shadow:0 0 25px rgba(33,33,33,0.5);
	border-radius:3px;
	transform:translateY(-50%);
	box-sizing:border-box;
	animation:0.3s up ease 1; 
	opacity:0;
    visibility: hidden;
  
}
.notification.active, .notification1.active, .notification2.active{
	top:15%;
	left:20%;
	opacity:1;
	animation:0.3s up ease 1;
	display:block;
    visibility: visible;

}
.notification a ,.notification1 a ,.notification2 a{
	color: skyblue;
	text-decoration:none;
	display:block;
	float:right;
	width:auto;
	padding:0 10px;
	height:40px;
	margin-left:15px;
	background:rgba(0,0,0,0.1);
	border-radius:5px;
}
.text, .text1 , .text2{
	height:40px;
	line-height:40px;
	padding:0 10px;
	text-align:center;
	float:left;
}
.close, .close1 , .close2{
	height:40px;
	width:40px;
	line-height:40px;
	border-radius:50%;
	text-align:center;
	position:relative;
	cursor:pointer;
	overflow:hidden;
	float:right;
	background:rgba(0,0,0,0.1);
	font-size:12px;
}
.ripple ,.ripple1 ,.ripple2{
	overflow:hidden;
	position:relative;
}
.ripple::after, .ripple1::after , .ripple2::after{
	content:'';
	width:0;
	height:0;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	border-radius:50%;
	background:rgba(255,255,255,0.1);
	display:none;
}
.ripple.rect::after, .ripple.rect::after{
	border-radius:0;
}
.close .text, .close1 .text1 , .close2 .text2{
	padding:0;
	text-align:center;
	width:100%;
	height:100%;
}
.ripple:hover::after{
	content:'';
	display:block;
	width:100%;
	height:100%;
	animation:0.7s rip ease 1;
}
@keyframes rip{
	0%{
		width:5px;
		height:5px;
	}
	75%{
		transform:scale(4);
	}
}
@keyframes up{
	0%{
		display:none;
		top:100%;
		opacity:0;
	}
	75%{
		top:90%;
		opacity:1;
	}
	100%{
		display:block;
	}
}

@keyframes sup{
	0%{
		display:none;
		top:100%;
		transform:translateY(0%);
		opacity:0;
	}
	75%{
		top:100%;
		transform:translateY(-100%);
		opacity:1;
	}
	100%{
		display:block;
	}

}
@media only screen and (max-width:560px){
	.notification,.notification.active, .notification1,.notification1.active .notification2,.notification2.active{
		width:100%;
		top:15%;
		transform:translateY(-100%);
		left:0;
		border-radius:0;
		animation:0.3s up ease 1;
	}
	.notification.active .notification1.active, .notification2.active{
		animation:0.3s up ease 1;
	}
}