.cnemoji-hidden {
    display: none !important;
}

#cnemoji-maindiv {
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 2;
    right: 0;
    bottom: 20px;
    user-select: none;
}

#cnemoji-maindiv.resizable:after {
    content: " ";
       position: absolute;
       left: 0;
       width: 5px;
       height: 100%;
       cursor: ew-resize;
   }

#cnemoji-searchdiv {
    display: flex;
}

#cnemoji-searchdiv svg {
    fill: rgb(114, 118, 125);
    width: 24px;
    height: 24px;
    margin: 0 12px;
    align-self: center;
}

/* #cnemoji-searchdiv input {
    flex-grow: 1;
    line-height: 32px;
    height: 30px;
    padding: 0 8px;
    margin: 1px;
    background-color: rgb(32, 34, 37);
    border: none;
    color: rgb(220, 221, 222);
    border-radius: 4px;
} */

#cnemoji-searchdiv input:focus {
    outline: none;
}

#cnemoji-div2 {
    display: flex;
    height: 90%;
}

#cnemoji-div3 {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin: 5px auto;
}

#cnemoji-leftlist {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	float: left;
	border-radius: 5px;
	padding: 5px;
    margin: 5px 5px 5px 0px;
	background: #ebedef;
}

#cnemoji-leftlist>svg {
    width: 24px;
    height: 24px;
    fill: rgb(79 86 96);
    /* align-self: center; */
    padding: 4px;
    border-radius: 4px;
    margin-bottom: 2px;
    transition: all .1s ease-in-out;
    cursor: pointer;
}

#cnemoji-leftlist>svg:hover {
    background-color: #2b2e33;
    fill: lightgray
}

#cnemoji-leftlist>svg.selected {
    background-color: #3b4045;
    fill: white;
}

#cnemoji-show {
    overflow-y: scroll;
    scrollbar-color: #222427 transparent;
    scrollbar-width: thin;
    position: relative;
    flex-grow: 1;
}

#cnemoji-show svg {
    width: 16px;
    height: 16px;
    fill: rgb(185, 187, 190);
}

.cnemoji-categ {
    margin-bottom: 12px;
}

#cnemojis {
	height: 100%;
    display: block;
}

.cnemoji-categname {
    position: -webkit-sticky;
    position: sticky;
    top: -1px;
    padding: 1px 4px;
    align-items: center;
    display: flex;
    height: 32px;
    background-color: #f8fafc;
}

.cnemoji-categname span {
    font-size: 12px;
    color: rgb(185, 187, 190);
    margin: 0 8px;
    text-transform: uppercase;
    transition: color .3s ease-in-out;
}

.cnemoji-categ:hover > .cnemoji-categname > span{
    color: #999;
}

.cnemoji-categ:hover > .cnemoji-categname > svg{
    fill: #999 !important;
}

.cnemoji-categ .cnemoji-emoji {
    height: 32px;
    width: 32px;
    border-radius: 4px;
    cursor: pointer;
    padding: 4px;
}

.cnemoji-categ .cnemoji-emoji.selected, .cnemoji-categ .cnemoji-emoji.lazy {
    background-color: rgb(79, 84, 92);
}

#cnemoji-info {
	display: flex;
	align-items: center;
	padding: 5px 10px;
    border-radius: 5px;
    background: #ebedef;
    margin: 5px 5px 0px;
}

#cnemoji-info-icon {
    height: 18px;
	width: 18px;
}

#cnemoji-info-name {
    margin-left: 8px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: 600;
    line-height: 20px;
    color: #5f6874;
}