﻿.pulse {
	animation: pulse 2s infinite; 
	border:1px solid;
	border-radius:50px;
}

	.pulse:hover {
		animation: none;
	}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(194,163,83,0);
	}

	70% {
		box-shadow: 0 0 0 10px rgba(194 ,163 ,83,0.9); 
	}

	100% {
		box-shadow: 0 0 0 0 rgba(194,163,83,0);
	}
}

.status-animated {
	-webkit-animation: 1s status-pulse infinite ease;
	animation: 1s status-pulse infinite ease;
}
