@charset "utf-8";
/* CSS Document */

.div_emoji {
      font-size: 24px;
      cursor: pointer;
      margin-top: 8px;
      display: inline-block;
      user-select: none;
    }

.div_emoji img {width:30px;margin:5px;opacity:0.3; transition: opacity 0.3s ease; }
.div_emoji img:hover,.div_emoji.active img {opacity:1 }
.div_emoji img[data-desc] {
  transition: transform 0.2s ease;
}

.div_emoji img[data-desc]:hover {
  transform: scale(1.2); /* Increase size */
}