.alerta{
	position: relative;
	width: 100%;
	margin-bottom: 15px;
	padding: 10px 15px;
	border-width: 1px;
	border-style: solid;
	border-radius: 4px;
	background-color: #F9EDB8;
	border-color: #EDC967;
	&.sucesso{
		background-color: #BEFAB9;
		border-color: #71ED66;
	}
	&.erro{
		background-color: #F9B8B8;
		border-color: #ED6767;
	}
	.progresso{
		position: absolute;
		width: 0%;
		height: 4px;
		left: 0;
		bottom: 0;
		background: rgba(0, 0, 0, 0.1);
	}
	ul{
		list-style-type: disc;
		list-style-position: inside;
	}
}