/* Emojis Picker */
.emojis-picker {
    position: absolute;
    right: 0;
}
.emojis-picker span {
    font-size: 26px;
    cursor: pointer;
}


/* Emojis Container */
.emojis-table {
    display: inline-table;
    position: absolute;
    visibility: hidden;
    width: 300px;
    background-color: #fff;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 5px 0;
    z-index: 1052;
    bottom: auto;
    top: 100%;
    /* left: 50%; */
    margin-left: -251px;
    opacity: 0;
    transition: opacity 0.3s;
    -webkit-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.31);
    border: 1px solid #d4cece;
}

/*
.emojis-picker .emojis-table.bottom::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: 0px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
}
.emojis-picker .emojis-table.top::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: 0px;
    border-width: 10px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}
*/
.emojis-table.active {
    visibility: visible;
    opacity: 1;
}


/* Emojis Categories */
.emojis-table .emojis-cats {
    height: 26px;
    overflow: none;
    color: #3c3834;
}
.emojis-table .emojis-cats table {
    width: 100%;
    height: 100%;
    margin-top: 3px;
}
.emojis-table .emojis-cats table td {
    text-align: center;
    cursor: pointer;
    line-height: 20px;
    font-size: 16px;
    padding: 0;
    margin: 0;
}


/* Emojis List */
.emojis-table .emojis-list {
    height: 190px;
    overflow: auto;
    font-size: 25px;
    color: #3c3834;
    overflow-x: hidden;
}
.emojis-table .emojis-list table {
    width: 100%;
}
.emojis-table .emojis-list table td {
    text-align: center;
    cursor: pointer;
    width: 31px;
    height: 31px;
    overflow: hidden;
}

/* Mailbox */
#addMessage .emojis-picker {
    line-height: 0px !important;
    margin-right: 90px !important;
} 