.reaction-container{
  max-width:100%;
  position: relative;
  display: flex;
}

.reaction-btn {
  font-weight: bold;
  color: #7f7f7f;
  position: relative;
  cursor: pointer;
  top: -10px;
  left: 40px;
  border-radius: 15px;
  padding: 2px 8px;
  background: #fff;
}

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

.reaction-btn img {
  width: 25px;
}

.like-btn-default {
  font-size: 14px;
  font-family: Avenir;
  font-weight: 100;
}

.emoji-button {
  background: #fff;
  border-radius: 15px;
  padding: 4px 10px;
  color: #808080;
  position: absolute;
  top: -20px;
  left: 100px;
}

.emojies-box-container {
  display: none;
}

.emojies-box {
  width: 180px;
  padding-left: 10px;
  position: absolute;
  top: -6px;
  left: 0px;
  box-shadow: 1px 1px 2px #cccccc, -1px 0px 2px #eeeeee;
  border-radius: 44px 44px;
  display: flex;
  background-color: #fff;
}

ul {
  margin-bottom: 0px;
}

.emojies-box li:hover, .emojies-box span {
  color: #808080!important;
}

.emoji {
  list-style-type: none;
  cursor: pointer;
  min-width: 38px;
  height: 38px;
  top: 8px;
  opacity: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}

.emo-woozy {
  transition-delay: 0s;
}

.emo-love {
  transition-delay: .05s;
}

.emo-tongue {
  transition-delay: .1s;
}

.emo-alien {
  transition-delay: .15s;
}

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

.vote {
  text-decoration: none;
}

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

.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;
}