﻿@keyframes errorfield{
	from {color: #666;}
	to {color: #dd0000;}
}

.alert-error{
	font-weight: 600;
	color:#666;
	animation: errorfield 300ms 5 alternate;
	-webkit-animation: errorfield 300ms 5 alternate;
}

@keyframes successfield{
	from {color: #666;}
	to {color: #519548;}
}

.alert-success{
	font-weight: 600;
	color:#666;
	animation: successfield 300ms 5 alternate;
	-webkit-animation: successfield 300ms 5 alternate;
}