.sc-reaction{
  max-width:100%;
  /*
  margin:150px auto;
  padding:0 60px;
  */
  position: relative;
  padding:0px 0px 0px 0px;
  margin: 10px 0px 0px 0px;
}

.like-btn {
  font-weight: bold;
  color: #7f7f7f;
  text-shadow:1px 1px 10px #fff, 1px 1px 10px #ccc;
  position: relative;
  cursor: pointer;
  padding: 0 5px 0 0;
  background-color:#fff;margin: 1px; padding: 1px 3px;
  /* z-index: 90; */
}

.like-btn:hover {
  text-decoration: underline;
}

.like-btn-default {
  background: white;
}

.like-btn-like, .like-btn-love, .like-btn-happy, .like-btn-pray, .like-btn-sad, .like-btn-hug, .like-btn-angry {
  display: inline-block;
  margin: 0 6px -3px 0;
  width: 16px;
  height: 16px;
}


@media (min-width: 768px) {
  .reactions-box {
    height: 44px;
    width: 308px;
    padding: 5px;
    position: absolute;
    top: 0px;
    left: 5px !important;
    box-shadow: 1px 1px 2px #cccccc, -1px 0px 2px #eeeeee;
    border: 1px;
    border-radius: 25px !important;
    display: none;
    background: white !important;
  }

  .reaction {
    list-style-type: none;
    cursor: pointer;
    display: inline-block;
    width: 36px;
    height: 36px;
    position: absolute;
    top: 4px;
    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;
  }
}

@media (max-width: 767px) {
  .reactions-box {
    height: auto;
    width: 200px;
    padding: 10px;
    position: absolute;
    top: 0px;
    left: 5px !important;
    box-shadow: 1px 1px 2px #cccccc, -1px 0px 2px #eeeeee;
    border: 1px;
    border-radius: 25px !important;
    display: none;
    background: white !important;
  }

  .reaction {
    list-style-type: none;
    cursor: pointer;
    display: inline-block;
    width: 36px;
    height: 36px;
    position: static;
    margin: 1.5px;
    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;
  }
}


.like-btn:hover .reactions-box {
  display: block;
  z-index: 1000;
}

.reaction-like {
  left: 10px;
  transition-delay: 0s;
  background-image: url('../images/reaction_like-sc.png');
}

.reaction-love {
  left: 52px;
  transition-delay: .05s;
  background-image: url('../images/reaction_love.png');
}

.reaction-happy {
  left: 94px;
  transition-delay: .1s;
  background-image: url('../images/reaction_happy.png');
}

.reaction-hug {
  left: 136px;
  transition-delay: .15s;
  background-image: url('../images/reaction_hug-sc.png');
}

.reaction-pray {
  left: 178px;
  transition-delay: .2s;
  background-image: url('../images/reaction_pray.png');
}

.reaction-sad {
  left: 220px;
  transition-delay: .25s;
  background-image: url('../images/reaction_sad.png');
}

.reaction-angry {
  left: 262px;
  transition-delay: .25s;
  background-image: url('../images/reaction_angry.png');
}


.like-btn:hover .reaction {
  opacity: 1;
  animation-name: reaction_delay;
  animation-duration: .5s;
}

@keyframes reaction_delay {
  0% {
    width: 36px;
    height: 36px;
    top: 60px;
  }
  48% {
    width: 56px;
    height: 56px;
    top: 5px;
  }	
  100% {
    width: 36px;
    height: 36px;
    top: 8px;
  }
}


.like-btn:hover .reaction-like {
  animation-delay: 0s
}

.like-btn:hover .reaction-love {
  animation-delay: .05s
}

.like-btn:hover .reaction-happy {
  animation-delay: .1s
}

.like-btn:hover .reaction-hug {
  animation-delay: .25s
}

.like-btn:hover .reaction-pray {
  animation-delay: .15s
}

.like-btn:hover .reaction-sad {
  animation-delay: .2s
}

.like-btn:hover .reaction-angry {
  animation-delay: .25s
}

.reaction:hover {
  transform: scale(1.3, 1.3);
  top: 2px
}



.reaction::before {
  display: inline-block;
  color: #ffffff;
  text-align: center;
  line-height: 17px;
  font-size: .6em;
  width: 100%;
  height: auto;
  margin-left: 10%;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  position: absolute;
  top: -18px;
  opacity: 0;
  transition: opacity .2s ease-in-out 0s;
}

.reaction:hover::before {
  opacity: 1
}

.reaction-like-en::before {
  content: 'Like'
}

.reaction-like-es::before {
  content: 'Gusta'
}

.reaction-love-en::before {
  content: 'Love'
}

.reaction-love-es::before {
  content: 'Amor'
}

.reaction-happy-en::before {
  content: 'Happy'
}

.reaction-happy-es::before {
  content: 'Contento'
}

.reaction-hug-en::before {
  content: 'Hug'
}

.reaction-hug-es::before {
  content: 'Abrazo'
}

.reaction-pray-en::before {
  content: 'Pray'
}

.reaction-pray-es::before {
  content: 'Orar'
}

.reaction-sad-en::before {
  content: 'Sad'
}

.reaction-sad-es::before {
  content: 'Triste'
}

.reaction-angry-en::before {
  content: 'Angry'
}

.reaction-angry-es::before {
  content: 'Enojado'
}


.like-stat {
  margin-top: 10px;
}


.like-btn-like {
  background-image: url('../images/reaction_like-sc.png');
  background-repeat: no-repeat;
  background-size: 16px 16px;
}

.like-btn-love {
  background-image: url('../images/reaction_love.png');
  background-repeat: no-repeat;
  background-size: 16px 16px;
}

.like-btn-happy {
  background-image: url('../images/reaction_happy.png');
  background-repeat: no-repeat;
  background-size: 16px 16px;
}

.like-btn-pray {
  background-image: url('../images/reaction_pray.png');
  background-repeat: no-repeat;
  background-size: 16px 16px;
}

.like-btn-hug {
  background-image: url('../images/reaction_hug-sc.png');
  background-repeat: no-repeat;
  background-size: 16px 16px;
}

.like-btn-sad {
  background-image: url('../images/reaction_sad.png');
  background-repeat: no-repeat;
  background-size: 16px 16px;
}

.like-btn-angry {
  background-image: url('../images/reaction_angry.png');
  background-repeat: no-repeat;
  background-size: 16px 16px;
}

.like-btn-text-like {
  color:rgb(88, 144, 255);
}

.like-btn-text-love{
  color:rgb(242, 82, 104)
}

.like-btn-text-happy {
  color:rgb(240, 186, 21);
}

.like-btn-text-hug{
  color:rgb(247, 113, 75);
}

.like-btn-text-pray {
  color:orange;
}

.like-btn-text-sad {
  color: #8E44AD; /* purple */
}

.like-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;    
  background-color: white;
}
