.messageContainer, .messageContainerConfirm {
	position: fixed; /* stay on top of the browser by scrolling */
	z-index: 1000000; /* stay on top */
	top: 52px;
    width:100%;
    text-align:center;
    opacity: 0;
	transition: opacity 0.6s;
}


.successMsg {
	display: inline-block;
    margin:0 auto;
	padding: 20px;
	border: 1 px solid;
	background: green;
	color: white;
	border-radius: 6px;
}

.errorMsg {
	display: inline-block;
    margin:0 auto;
	padding: 20px;
	border: 1 px solid;
	background: red;
	color: white;
	border-radius: 6px;
}