<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@keyframes reaction {
  0% {
    width: 38px;
    height: 38px;
    top: 60px;
  }
  35% {
    width: 48px;
    height: 48px;
    top: 5px;
  }
  100% {
    width: 38px;
    height: 38px;
    top: 8px;
  }
}

.em-reactions {
  font-family: Arial, sans-serif;
  margin: 10px 0;
  border:solid #eee;
  border-width: 1px 0;
  padding: 5px 0;
}

.em-reactions:before,
.em-reactions:after {
  content: " ";
  display: table;
}

.em-reactions:after {
  clear: both;
}

.em-reactions {
  zoom: 1;
}

.em-reactions-button {
  position: relative;
  cursor: pointer;
  float: left;
}

.em-reactions-main-button {
  font-weight: bold;
  font-size: 14px;
  display: block;
  line-height: 30px;
}

.em-reactions-main-button:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin: 4px 4px 6px 0;
  float: left;
  background: url(../img/like.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.em-reactions-main-button.em_reaction_like {
  color: rgb(88, 144, 255);
}

.em-reactions-main-button.em_reaction_love {
  color: rgb(242, 82, 104);
}

.em-reactions-main-button.em_reaction_haha {
  color: rgb(240, 186, 21);
}

.em-reactions-main-button.em_reaction_wow {
  color: rgb(240, 186, 21);
}

.em-reactions-main-button.em_reaction_sad {
  color: rgb(240, 186, 21);
}

.em-reactions-main-button.em_reaction_angry {
  color: rgb(247, 113, 75);
}

.em-reactions-main-button.em_reaction_love:before {
  background-image: url(../img/love.png);
}

.em-reactions-main-button.em_reaction_haha:before {
  background-image: url(../img/haha.png);
}

.em-reactions-main-button.em_reaction_wow:before {
  background-image: url(../img/wow.png);
}

.em-reactions-main-button.em_reaction_sad:before {
  background-image: url(../img/sad.png);
}

.em-reactions-main-button.em_reaction_angry:before {
  background-image: url(../img/angry.png);
}

.em-reactions-box {
  position: absolute;
  top: -60px;
  left: 0;
  background: #fff;
  padding: 10px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 40px;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,.1);
  box-sizing: border-box;
  width: 314px;
  height: 60px;
  display: none;
  z-index: -1;
}

.em-reactions-button.reaction-show .em-reactions-box {
  display: block;
  z-index: 1;
}

.em-reactions-box .em-reaction {
  display: block;
  position: absolute;
  width: 38px;
  height: 38px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  left: 12px;
  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;
}

.em-reactions-button.reaction-show .em-reaction {
  opacity: 1;
  animation-name: reaction;
  animation-duration: .5s;
}

.em-reactions-box .em-reaction-like {
  left: 12px;
  transition-delay: 0s;
  background-image: url(../img/like.png);
}

.em-reactions-box .em-reaction-love {
  left: 62px;
  transition-delay: .05s;
  background-image: url(../img/love.png);
}

.em-reactions-box .em-reaction-haha {
  left: 112px;
  transition-delay: .1s;
  background-image: url(../img/haha.png);
}

.em-reactions-box .em-reaction-wow {
  left: 162px;
  transition-delay: .15s;
  background-image: url(../img/wow.png);
}

.em-reactions-box .em-reaction-sad {
  left: 212px;
  transition-delay: .2s;
  background-image: url(../img/sad.png);
}

.em-reactions-box .em-reaction-angry {
  left: 262px;
  transition-delay: .25s;
  background-image: url(../img/angry.png);
}

.em-reactions-button.reaction-show .em-reaction {
  animation-delay: 0s;
}

.em-reactions-button.reaction-show .em-reaction-love {
  animation-delay: .05s;
}

.em-reactions-button.reaction-show .em-reaction-haha {
  animation-delay: .1s;
}

.em-reactions-button.reaction-show .em-reaction-wow {
  animation-delay: .15s;
}

.em-reactions-button.reaction-show .em-reaction-sad {
  animation-delay: .2s;
}

.em-reactions-button.reaction-show .em-reaction-angry {
  animation-delay: .25s;
}

.em-reaction:hover {
  transform: scale(1.5, 1.5);
  top: 2px;
}

.em-reaction strong {
  position: absolute;
  top: -19px;
  background: rgba(0,0,0,.5);
  color: #fff;
  font-size: 8px;
  text-align: center;
  left: 0;
  border-radius: 38px;
  padding: 1px 0;
  width: 38px;
  opacity: 0;
  transition: opacity .2s ease-in-out 0s;
  box-sizing: border-box;
}

.em-reaction:hover strong {
  opacity: 1;
}

.em-reactions-count {
  line-height: 30px;
  font-size: 12px;
  float: right;
}

.em-reaction-count {
  display: inline-block;
  margin-left: 5px;
}

.em-reaction-count strong {
  font-weight: normal;
}

.em-reaction-count:before {
  content: "";
  float: left;
  width: 20px;
  height: 20px;
  margin: 4px 4px 6px 0;
  background: url(../img/like.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
}

.em-reaction-count-love:before {
  background-image: url(../img/love.png);
}

.em-reaction-count-haha:before {
  background-image: url(../img/haha.png);
}

.em-reaction-count-wow:before {
  background-image: url(../img/wow.png);
}

.em-reaction-count-sad:before {
  background-image: url(../img/sad.png);
}

.em-reaction-count-angry:before {
  background-image: url(../img/angry.png);
}


.em-reactions-2{
    text-align: center;
}

.em-reactions-2 .em-reactions-box-2{
    display: inline-block;
    margin: 0 5px;
}

.em-reactions-2 .em-reactions-percent{
       background: #8cda9d;
}

.em-reactions-2 .em-reactions-icon{
    padding: 10px;
    background: #f1f1f1;
    cursor: pointer;
}
.em-reactions-2 .em-reactions-icon img{
    transition: opacity .5s ease-in-out 1s, transform .07s ease-in-out 0s, top .07s ease-in-out 0s;
}

.em-reactions-2 .em-reactions-icon:hover{
    background: #ddd;
}

.em-reactions-2 .em-reactions-icon:hover img{
    transform: scale(1.2, 1.2);
}

/*style 2*/
.em-reactions-3{
    text-align: center;
}

.em-reactions-3 .em-reactions-box-3{
    display: inline-block;
    padding-left: 5px;
}
.em-reactions-3 .em-reactions-box-3:first-child{
    padding-left: 0;
}

.em-reactions-3 .em-reactions-percent{
    background: #b1d3fc;
}

.em-reactions-3 .em-reactions-icon{
    padding: 5px 15px;
    background: #f1f1f1;
    cursor: pointer;
    margin-top: 5px;
    line-height: 1;
}

.em-reactions-3 .em-reactions-icon img{
    transition: opacity .5s ease-in-out 1s,
    transform .07s ease-in-out 0s, top .07s ease-in-out 0s;
}

.em-reactions-3 .em-reactions-icon:hover{
    background: #ddd;
}

.em-reactions-3 .em-reactions-icon:hover img{
    transform: scale(1.2, 1.2);
}
</pre></body></html>