.esn-post-emoji h4 {
    font-size: 25px;
    color: var(--pcolor);
}

.esn-post-emoji {
    padding: 10px;
    /*background: #cccccc24;*/
    text-align: center;
    margin-bottom: 10px;
}

.esn-post-emoji-section {
    display: grid;
    align-items: center;
    justify-content: space-evenly;
    gap: 10px;
    margin-top: 20px;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}

.emoji.emoji-trigger {
    padding: 10px;
}

.emoji img {
    width: 55px;
}

.esn-emoji-wrap {
    text-align: center;
    font-weight: bold;
}

span.percent {
    display: inline-block;
    font-weight: 700;
    font-size: 15px;
    position: relative;
    left: 0;
    top: -5px;
    /* background: var(--pcolor); */
    color: var(--scolor);
    padding: 0 10px;
    line-height: 20px;
    border-radius: 0;
    transition: all .3s ease;
    right: 0;
    margin: 0 auto 5px auto;
}

/* Zoom In Effect on  Reaction Icon Hover*/
.emoji-trigger img {
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.emoji-trigger:hover img {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}

.emoji-trigger:hover{
    cursor: pointer;
}