.error, .success, .note, .warning {
	padding: 1rem 1rem;
    margin-bottom: 1rem;
    border-radius: 0.25rem;
}
.error {
	background-color: #dc3545;
	color: #fff;
}
.error-image {
	background-image: url(images/error.gif);
}
.success {
	color: #0f5132;
    background-color: #d1e7dd;
}
.success-image {
	background-image: url(images/success.gif);
}
.note {
	background-color: #DDEAFA;
	border-color: #A3D8FD;
	color: #026DA5;
}
.note-image {
	background-image: url(images/note.gif);
}
.warning {
	background-color: #FBF0B3;
	border-color: #FBBB95;
	color: #FD6002;
}
.warning-image {
	background-image: url(images/warning.gif);
}
