.image-pulsar {
	display: inline-block;
	cursor: pointer;
}
@-webkit-keyframes image-pulsar-pulse {
	0% { -webkit-transform: scale(1); opacity: 1; }
	100% { -webkit-transform: scale(2); opacity: 0; }
}       
@keyframes image-pulsar-pulse {
	0% { transform: scale(1); opacity: 1;}
	100% { transform: scale(2); opacity: 0;}
}
@-webkit-keyframes image-pulsar-pulse-2 {
	0% { -webkit-transform: scale(1); opacity: 1;}
	10% { -webkit-transform: scale(1.3); opacity: .7;}
	75% { -webkit-transform: scale(1.4); opacity: .25;}
	100% { -webkit-transform: scale(1.5); opacity: 0;}
}
@keyframes image-pulsar-pulse-2 {
	0% { transform: scale(1); opacity: 1;}
	10% { transform: scale(1.3); opacity: .7;}
	75% { transform: scale(1.4); opacity: .25;}
	100% { transform: scale(1.5); opacity: 0;}
}
.image-pulsar:before {
	content: '';
	position: absolute;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-timing-function: linear;
}
