.heart-container{
	height:80px;
	overflow:hidden;
	text-align:center;
	overflow:hidden;
	position: relative;
	margin: auto;
}
.heart-img {
	background: url(web_heart_animation.png);
	background-position: left;
	background-repeat: no-repeat;
	height: 100px;
	width: 100px;
	cursor: pointer;
	margin-left:auto;
	margin-right:auto;
	background-size:2900%;
	margin-top: -20px;
}
.heart-count{
	position: absolute;
	bottom: 10px;
	margin: auto;
	width: 100%;
	text-align: center;
}
.heart-count span{
	display: block;
	margin: auto;
	font-size: 16px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
}

@-webkit-keyframes heartBlast {
	0% {
		background-position: left;
	}
	100% {
		background-position: right;
	}
}

@keyframes heartBlast {
	0% {
		background-position: left;
	}
	100% {
		background-position: right;
	}
}

.heartAnimation {
	display: inline-block;
	-webkit-animation-name: heartBlast;
	animation-name: heartBlast;
	-webkit-animation-duration: .8s;
	animation-duration: .8s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-timing-function: steps(28);
	animation-timing-function: steps(28);
	background-position: right;
}
