.alert {

	width: 100%;
	border-radius: 5px;
	padding:10px;
	margin-bottom: 20px;
	box-sizing: border-box;


	&-success {
		color:@success;
		background: softlight(@success, #ffffff);
	}
	&-danger {
		color:@danger;
		background: softlight(@danger, #ffffff);
	}
	&-warning {
		color:@warning;
		background: softlight(@warning, #ffffff);
	}
}