.reaction-btn {
	font-weight: bold;
	color: #99abb4;
	position: relative;
	cursor: pointer;
	/* padding: 20px 20px 0 0; */
}

.reaction-btn:hover {
	/* text-decoration: underline; */
	color: blue;
}

.emojies-box {
	height: 62px;
	width: 360px;
	padding: 10px;
	position: absolute;
	top: -60px;
	left: -14px;
	box-shadow: 1px 1px 2px #cccccc, -1px 0px 2px #eeeeee;
	border-radius: 44px 44px;
	display: none;
	background-color: #666;
}

.emoji {
	list-style-type: none;
	cursor: pointer;
	display: inline-block;
	width: 48px;
	height: 48px;
	position: absolute;
	top: 8px;
	opacity: 0;
	transform: scale(1, 1);
	transition: opacity .5s ease-in-out 1s, transform .07s ease-in-out 0s, top .07s ease-in-out 0s;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center
}

.reaction-btn:hover .emojies-box {
	display: block;
}

.emo-like {
	left: 10px;
	transition-delay: 0s;
	background-image: url('../images/reacciones/reactions_like.png');
}

.emo-love {
	left: 68px;
	transition-delay: .05s;
	background-image: url('../images/reacciones/reactions_love.png');
}

.emo-haha {
	left: 126px;
	transition-delay: .1s;
	background-image: url('../images/reacciones/reactions_haha.png');
}

.emo-wow {
	left: 184px;
	transition-delay: .15s;
	background-image: url('../images/reacciones/reactions_wow.png');
}

.emo-sad {
	left: 242px;
	transition-delay: .2s;
	background-image: url('../images/reacciones/reactions_sad.png');
}

.emo-angry {
	left: 300px;
	transition-delay: .25s;
	background-image: url('../images/reacciones/reactions_angry.png');
}

.reaction-btn:hover .emoji {
	opacity: 1;
	animation-name: reaction_delay;
	animation-duration: .5s;
}

@keyframes reaction_delay {
	0% {
    	width: 48px;
    	height: 48px;
    	top: 60px;
  	}
	
  	48% {
    	width: 56px;
    	height: 56px;
    	top: 5px;
  	}	
	
  	100% {
    	width: 48px;
    	height: 48px;
    	top: 8px;
  	}
}

.reaction-btn:hover .emo-like {
 	animation-delay: 0s
}

.reaction-btn:hover .emo-love {  
	animation-delay: .05s
}

.reaction-btn:hover .emo-haha {
  	animation-delay: .1s
}

.reaction-btn:hover .emo-wow {
  	animation-delay: .15s
}

.reaction-btn:hover .emo-sad {
  	animation-delay: .2s
}

.reaction-btn:hover .emo-angry {
  	animation-delay: .25s
}

.emoji:hover {
 	transform: scale(1.3, 1.3);
  	top: 2px
}

.emoji::before {
	display: inline-block;
	color: #ffffff;
	text-align: center;
	line-height: 17px;
	font-size: .7em;
	width: 80%;
	height: 17px;
	margin-left: 10%;
	background-color: rgba(0, 0, 0, 0.6);
	border-radius: 20px;
	position: absolute;
	top: -25px;
	opacity: 0;
	transition: opacity .2s ease-in-out 0s;
	}

.emoji:hover::before {
  opacity: 1
}

.emo-like::before {
	content: 'Me gusta';
	width: 60px;
	left: -10px;
}

.emo-love::before {
	content: 'Me encanta';
	width: 70px;
	left: -15px;
}

.emo-haha::before {
  	content: 'Me divierte';
	width: 70px;
	left: -15px;
}

.emo-wow::before {
  	content: 'Me sorprende';
	width: 85px;
	left: -20px;
}

.emo-sad::before {
  	content: 'Me entristece';
	width: 85px;
	left: -20px;
}

.emo-angry::before {
	content: 'Me enoja';
	width: 60px;
	left: -10px;
}

.like-stat {
	margin-top: 10px;
}


.like-btn-like{
	background-image: url('../images/reacciones/reaction-small.png');
	background-repeat: no-repeat;
	background-size: auto;
	background-position: -17px -151px;
}

.like-btn-love{
	background-image: url('../images/reacciones/reaction-small.png');
	background-repeat: no-repeat;
	background-size: auto;
	background-position: 0 -168px;
}

.like-btn-haha{
	background-image: url('../images/reacciones/reaction-small.png');
	background-repeat: no-repeat;
	background-size: auto;
	background-position: 0 -151px;
}

.like-btn-wow{
	background-image: url('../images/reacciones/reaction-small.png');
	background-repeat: no-repeat;
	background-size: auto;
	background-position: -17px -185px;
}

.like-btn-sad{
	background-image: url('../images/reacciones/reaction-small.png');
	background-repeat: no-repeat;
	background-size: auto;
	background-position: -17px -168px;
}

.like-btn-angry{
	background-image: url('../images/reacciones/reaction-small.png');
	background-repeat: no-repeat;
	background-size: auto;
	background-position: -17px -117px;
}

.reaction-btn-text-like {
  color:rgb(88, 144, 255);
}
.reaction-btn-text-wow,.reaction-btn-text-haha,.reaction-btn-text-sad {
  color:rgb(240, 186, 21)
}
.reaction-btn-text-love{
  color:rgb(242, 82, 104)
}
.reaction-btn-text-angry{
  color:rgb(247, 113, 75);
}

.like-emo > span{
    display: inline-block;
    margin: 0 -3px -3px 0px;
    width: 16px;
    height: 16px;
    border: 1px solid #EEE;
    border-radius: 50%;

}

.like-details{
  margin-left:10px;
  color:#9197a3;
  font-size:12px;
}