.emoji-picker-container {
    position: relative;
    display: flex;
    flex-direction: column;
}

.emoji-picker-icon {
    position: absolute;
    right: 10px;
    bottom: 14px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 1;
    line-height: 1;
    transition: color .3s ease-in-out;
}

.emoji-picker-icon:hover {
    color: #c3912e !important;
}

.add-reaction-dropover-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: #FFF;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .32);
    opacity: 0;
    visibility: hidden;
    user-select: none;
    z-index: 2;
    transition: all .25s ease-in-out;
    filter: alpha(Opacity = 0);
}

.add-reaction-dropover-menu::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 7px;
    border-width: 0 10px 10px;
    border-style: solid;
    border-color: transparent transparent #FFF;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.4));
}

.add-reaction-dropover-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.emoji-list-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 20px 14px;
    height: 275px;
    width: 315px;
    overflow-y: auto;
    background: #FFF;
    border-radius: 5px;
}

.emoji-list-container .reaction {
    font-size: 1.5rem;
    padding: 0;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 575px) {
    .emoji-list-container {
        width: 240px;
        height: 235px;
    }
}