﻿@-webkit-keyframes opas {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes opas {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opas {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.sns_live {
  -webkit-animation: 2s opas infinite;
  -moz-animation: 2s opas infinite;
  animation: 2s opas infinite;
  display: inline-block;
  /*background: red;*/
  border-radius: 3px;
  color: #fff;
  padding: 8px;
  margin-top: 20px;
  margin-left: 20px;
  font-size: 12px;
  font-weight: 200;
  font-family: arial;
  text-transform: uppercase;
  letter-spacing: 2px;
    opacity: 0;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
}

#sns_app:hover .reactions-item {
  pointer-events: auto;
  opacity: 1;
}

.reactions-item {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -143px;
  display: none;
  background: #fff;
  padding: 6px 5px;
  border-radius: 30px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
  transition: .3s all ease;
}
.reactions-item.show {
  opacity: 1;
  pointer-events: auto;
}
.reactions-item li {
  cursor: pointer;
  font-size: 0;
  float: left;
  width: 40px;
  height: 40px;
  margin: 0 3px;
  border-radius: 50%;
  transition: 0.3s all cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transform-origin: center bottom;
  -moz-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  -o-transform-origin: center bottom;
  transform-origin: center bottom;
}
.reactions-item li:hover {
  -webkit-transform: scale(1.25);
  -moz-transform: scale(1.25);
  -ms-transform: scale(1.25);
  -o-transform: scale(1.25);
  transform: scale(1.25);
}
.reactions-item li.like-reactions {
  background-position: 0 0;
}
.reactions-item li.love-reactions {
  background-position: -60px 0;
}
.reactions-item li.haha-reactions {
  background-position: -120px 0;
}
.reactions-item li.wow-reactions {
  background-position: -180px 0;
}
.reactions-item li.sad-reactions {
  background-position: -240px 0;
}
.reactions-item li.angry-reactions {
  background-position: -300px 0;
}


.pop-ctr .user-photo {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
  margin-top: -15px;
  margin-left: -15px;
  border-radius: 50%;
}