.likes-heart{
  color: #98A5B1;
  margin-top: 15px;
  font-size: 8px;
}

.bottom{
  display: flex;
  margin-top: 13px;
  align-items: center;
  justify-content: space-between;
}
.bottom .icons{
  display: inline-flex;
}
.icons li{
  list-style: none;
  color: #0d2866;
  font-size: 20px;
  margin: 0 2px;
  height: 38px;
  width: 38px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}
.bottom .content{
  display: flex;
  align-items: center;
  justify-content: center;
}
.bottom .counter{
  color: #333;
  display: none;
  font-weight: 500;
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid #aab8c2;
}
.bottom button{
  padding: 9px 18px;
  border: none;
  outline: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  background: #0d2866;
  color: #fff;
  cursor: pointer;
  opacity: 0.5;
  pointer-events: none;
  transition: background 0.2s ease;
}
.bottom button.active{
  opacity: 1;
  pointer-events: auto;
}
.bottom button:hover{
  background: #0d8bd9;
}
*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

.like_container {
    text-align: center;
    padding: 10px;
}
span.score {
    padding: 5px;
    margin-left: 15px;
    font-size: 12px;
	font-weight: 700;

}


.alert{
	background-color: brown;
    padding: 5px;
}
.underline{
	text-decoration: underline;
}


/*button*/
.heart {
    background: url(../images/web_heart_animation.png);
    background-position: left;
    background-repeat: no-repeat;
    height: 50px;
    width: 50px;
    cursor: pointer;
    position: absolute; 
    left:-14px;
    background-size:2900%
}
.heart:hover, .heart:focus{
background-position: right;
}

@-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;
}
.feed p{
  font-family: 'Georgia', Times, Times New Roman, serif; 
	font-size: 25px
}

.feed{
	clear: both; 
	position: relative;
}
	

/*.likeCount{
	font-family: 'Georgia', Times, Times New Roman, serif; 
	margin-top: 13px;
	margin-left: 28px;
	font-size: 16px;
	color: #999999
}*/
