html,
body {
	height: 100%;
	background: rgb(255,204,230);
	background: -webkit-linear-gradient(rgba(112,204,230,1) 0%, rgba(255,194,77,1) 50%, rgba(248,185,247,1) 100%);
	background: -o-linear-gradient(rgba(112,204,230,1) 0%, rgba(255,194,77,1) 50%, rgba(248,185,247,1) 100%);
	background: linear-gradient(rgba(112,204,230,1) 0%, rgba(255,194,77,1) 50%, rgba(248,185,247,1) 100%);
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
	 display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
	margin: 0;
}

#app {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	display: -webkit-inline-flex;
   -webkit-justify-content: center;
   -webkit-align-items: center;
}

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

canvas {
  position: absolute;
    top: 22%;
    left: -20%;
    width: 100vh;
    height: 100vw;
transform: rotate(90deg);
}

#app:hover .reactions {
  pointer-events: auto;
  opacity: 1;
}

.reactions {
  opacity: 1;
  pointer-events: none;
  position: absolute;
  display: inline-block;
  background: #fff;
  padding: 6px 5px;
  border-radius: 30px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2);
  
}
.reactions.show {
  opacity: 1;
  pointer-events: auto;
}
.reactions li {
  cursor: pointer;
  font-size: 0;
  float: left;
  width: 40px;
  height: 40px;
  background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/111167/fb_reactions.png") no-repeat;
  margin: 10px 5px;
  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 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 li.like {
  background-position: 0 0;
}
.reactions li.love {
  background-position: -50px 0;
}
.reactions li.haha {
  background-position: -100px 0;
}
.reactions li.wow {
  background-position: -150px 0;
}
.reactions li.sad {
  background-position: -200px 0;
}
.reactions li.angry {
  background-position: -250px 0;
}

.pop-ctr {
  position: absolute;
  right: 0;
  bottom: -80px;
  will-change: transform;
}
.pop-ctr .user-photo {
  display: block;
  width: 30px;
  height: 30px;
  background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/111167/profile/profile-80_7.jpg") no-repeat center center/cover;
  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%;
}