.jmoji-popup {
    position: absolute;
    display: flex;
    flex-direction: column;
    border: 1px solid black;
    box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.2);
    border-radius: 7px;
    background-color: #3a373c;
    color: #dddddf;
}
.jmoji-popup-inner {
    max-height: 400px;
    overflow: scroll;
}
.jmoji-close-btn {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    align-self: flex-end;
    transform: translate(50%, -50%);
    background: #333333;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    z-index: 1;
    padding: 4px;
}
.jmoji-close-btn svg {
    fill: white;
    width: 1.25rem;
    height: 1.25rem;
}
.jmoji-search-box {
    margin: 10px;
}
.jmoji-rows {
    user-select: none;
}
.jmoji-row {
    display: flex;
    list-style: none;
    padding-left: 0;
}
.jmoji-item {
    padding: 0 2px 2px 0;
    min-width: 32px;
    height: 32px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
}
.jmoji-item:hover {
    background-color: #2c0e75;
}
.jmoji-cat {
    cursor: pointer;
}
.jmoji-cat:hover {
    background-color: #2c0e75;
}
.jmoji-cat.opened {
    background-color: #3c1e85;
}
