/**
* @package 		plg_content_emojireactions - Emoji Reactions Content Plugin
* @version		1.0.1
* @created		Oct 2020
* @author		PluginJar.com
* @email		support@pluginjar.com
* @website		https://www.pluginjar.com
* @support		https://www.pluginjar.com/premium-support-board.html
* @copyright	Copyright (C) 2018 - 2019 PluginJar.com. All rights reserved.
* @license		GNU General Public License version 2 and above
*/
div#emojirections_plugin{
	position: relative;
	min-height: 100px;
	margin-top:20px;
}
div#emojirections_plugin ul.reactions-box {
    height: 44px;
    width: 100%;
    position: absolute;
    top: 10%;
    left: 20%;
    margin: 0 auto;
}
li.reaction {
  list-style-type: none;
  cursor: pointer;
  display: inline-block;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 8px;
  opacity: 1;
  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;
}
ul.reactions-box {
  display: block;
}
li.reaction-like {
  left: 0px;
  transition-delay: 0s;
}
li.reaction-love {
  left: 75px;
  transition-delay: .05s;
}
li.reaction-haha {
  left: 150px;
  transition-delay: .1s;
}
li.reaction-wow {
  left: 225px;
  transition-delay: .15s;
}
li.reaction-sad {
  left: 300px;
  transition-delay: .2s;
}
li.reaction-angry {
  left: 375px;
  transition-delay: .25s;
}
li.reaction {
  opacity: 1;
  animation-name: reaction_delay;
  animation-duration: .5s;
}
li.clickedemoji{
  transform: scale(1.3, 1.3);
  top: 2px
}
@keyframes reaction_delay {
  0% {
    width: 48px;
    height: 48px;
    top: 60px;
  }
  48% {
    width: 56px;
    height: 56px;
    top: 5px;
  }	
  100% {
    width: 48px;
    height: 48px;
    top: 8px;
  }
}
li.reaction-like {
  animation-delay: 0s
}
li.reaction-love {
  animation-delay: .05s
}
li.reaction-haha {
  animation-delay: .1s
}
li.reaction-wow {
  animation-delay: .15s
}
li.reaction-sad {
  animation-delay: .2s
}
li.reaction-angry {
  animation-delay: .25s
}
li.reaction:hover {
  transform: scale(1.3, 1.3);
  top: 2px
}
li.reaction::before {
  display: inline-block;
  color: #ffffff;
  text-align: center;
  line-height: 17px;
  font-size: .7em;
  width: 100%;
  height: 17px;
  margin-left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  position: absolute;
  top: -25px;
  opacity: 0;
  transition: opacity .2s ease-in-out 0s;
}
li.reaction:hover::before {
  opacity: 1
}
li.reaction-like::before {
  content: 'Like'
}
li.reaction-love::before {
  content: 'Love'
}
li.reaction-haha::before {
  content: 'Haha'
}
li.reaction-wow::before {
  content: 'Wow'
}
li.reaction-sad::before {
  content: 'Sad'
}
li.reaction-angry::before {
  content: 'Angry'
}
ul.reactions-box > li > span.emafter {
    display: inline-block;
    color: #212020;
    text-align: center;
    line-height: 21px;
    font-size: 1em;
    width: 100%;
    height: 20px;
    margin-left: 0%;
    background-color: rgb(218 218 218 / 60%);
    border-radius: 20px;
    position: absolute;
    top: 55px;
    opacity: 1;
    transition: opacity .2s ease-in-out 0s;
	left:0;
}
/* mobile */
div#emojirections_plugin.emojis_reactions_mobile{
margin-top:10px	
}
div#emojirections_plugin ul.reactions-box.emojis_reactions_mobile {
    left: 10%;
}
li.emojis_reactions_mobile > img{
	width:70%;
}
ul.reactions-box > li > span.emafter.emojis_reactions_mobile {
    top: 45px;
    width: 80%;
	margin-left: -3px;	
}
li.reaction.emojis_reactions_mobile::before {
	margin-left: -6px;	
}
li.reaction-like.emojis_reactions_mobile {
  left: 0px;
  transition-delay: 0s;
}
li.reaction-love.emojis_reactions_mobile {
  left: 40px;
  transition-delay: .05s;
}
li.reaction-haha.emojis_reactions_mobile {
  left: 80px;
  transition-delay: .1s;
}
li.reaction-wow.emojis_reactions_mobile {
  left: 120px;
  transition-delay: .15s;
}
li.reaction-sad.emojis_reactions_mobile {
  left: 160px;
  transition-delay: .2s;
}
li.reaction-angry.emojis_reactions_mobile {
  left: 200px;
  transition-delay: .25s;
}
