.messagePanel{
	position: fixed;
	height: 70px;
	width: 100%;
	z-index: 99;
}
.messagePanel label{
	line-height: 70px;
	color: white;
	font-size: 17px;
}
.messagePanel[status=success]{
	background: rgba(165,214,167, 0.98);
	background: #65c369;
}

.messagePanel[status=error]{
	background: rgb(255,0,0, 0.84);
	background: #ff0000;
}
@media only screen and (max-width: 600px){
	.messagePanel label{
		font-size: 14px;
		line-height: 20px;
		padding: 15px 0;
	}
}