@-webkit-keyframes glowgreen {
	0% { background:rgba(208, 230, 132, 0.870); }
	100% { background:rgb(190, 198, 160); }
}

@-webkit-keyframes glowyellow {
	0% { background:rgba(252, 241, 133, 0.720); }
	100% { background:#eee; }
}
@-webkit-keyframes glowred {
	0% { background:rgba(210, 14, 26, 0.140); }
	100% { background:#eee; }
}

.glowgreen,.glowyellow,.glowred {
-webkit-animation-duration: .7s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	-webkit-animation-timing-function: ease-in-out;	  
}
.glowgreen  {
	background-color:rgba(225,245,149,0.82);
	-webkit-animation-name: glowgreen;
}
.glowyellow  {
	background-color:rgba(252, 241, 133, 0.720) !important;
	-webkit-animation-name: glowyellow;
}
.glowred  {
	background-color:rgba(255,9,24,0.17);
	-webkit-animation-name: glowred;
}
