div#plugin-view-messages-wrapper {
	position: fixed;
	bottom: 20px;
	left: 10%;
	width: 80%;
	z-index: 10000;
}
	div#plugin-view-messages-errors {
		display: none;
		width: 100%;
		margin: 0;
		text-align: center;
	}
	div#plugin-view-messages-success {
		display: none;
		width: 100%;
		margin: 0;
		text-align: center;
	}



.alert-wrapper {
	margin: 0 auto;
	width: 100%;
	font-size: 12px;
	line-height: 1.1;
	font-weight: normal;
	padding: 20px;
	border: 1px solid transparent;
	border-radius: 4px;		
	text-align: center;
	display: flex; display: -webkit-flex; 
	flex-flow: row nowrap; -webkit-flex-flow: row nowrap;
	justify-content: center; -webkit-justify-content: center;
}
	ul.form .alert-wrapper {
		padding: 15px;
		width: 80%;
	}
	.alert-wrapper .text {
		margin: auto;
		display: flex; display: -webkit-flex; 
		flex-flow: row nowrap; -webkit-flex-flow: row nowrap;
		font-size: 15px;
		font-weight: bold;
		text-align: center;
	}

	.alert-wrapper.delete {		
	    background-color: #f2dede;
	    border-color: #a94442;
	}
	.alert-wrapper.delete .text {
	    color: #a94442;
	}

	.alert-wrapper.warning {		
	    background-color: #d9edf7;
	    border-color: #31708f;
	}
	.alert-wrapper.warning .text {
	    color: #31708f;
	}

	.alert-wrapper.success {		
	    background-color: #dff0d8;
	    border-color: #3c763d;
	}
	.alert-wrapper.success .text {
	    color: #3c763d;
	}

