как отредактировать поле ввода области смайликов?

#css #emojione

Вопрос:

Я хочу оформить поле ввода области смайликов, но я не могу его оформить.

Это мой HTML-код

                         <input type="text" autocomplete="off" name="comment-on-post" data-emojiable="true" id="'.$post_id.'-comment-input"
                            class="comment-input-area" placeholder="Comment">
                        </div>
 

Это мой CSS-код

 .comment-input-area {
margin-left: 25px;
height: 50px;
border: none;
outline: none;
background: none;
font-size: 15px;
color: rgb(5, 10, 48);
letter-spacing: 1px;
font-weight: 700;
 

}

это мой jquery

 $(".comment-input-area").emojioneArea({
    pickerPosition: "top",
    filtersPosition: "bottom",
});