.emojiModal{
position: absolute;
    bottom: 54px;
    left: 0px;
    transition: all 0.2s ease 0s;
    background: rgb(35, 29, 71);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 24px 90px;
    border-radius: 16px;
    width: 100%;
    min-width: 260px;
    display: none;
}

.emoji_header {
    position: relative;
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: calc(100% - 33px);
    -webkit-box-align: center;
    align-items: center;
    background: rgba(21, 16, 41, 0.25);
    border-radius: 12px 12px 0px 0px;
}

.emoji_header::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0px;
    left: 0px;
    background: rgb(47, 36, 92);
}

.emoji_header_text {
    font-family: Rocketfont;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    padding: 14px;
}
  
.emojimodal_content {
width: 100%;
font-size: 16px;
display: inline-block;
color: #222427;
border-radius: 5px;
}

.emoji_close {
color: #73738e;
float: right;
font-size: 28px;
font-weight: bold;
}

    .emoji_close:hover,
    .emoji_close:focus {
      color: #fff;
      text-decoration: none;
      cursor: pointer;
    }


.emoji_search{
margin: 0px;    
position: relative;
padding: 13px 12px;
}


.emoji_search::before{
 content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0px;
    left: 0px;
    background: rgb(47, 36, 92);
}

.emoji_search input {
    background: rgb(27, 22, 55);
    color: white;
    border: none;
    outline: none;
    width: 100%;
    height: 36px;
    display: grid;
    -webkit-box-align: center;
    align-items: center;
    border-radius: 10px;
    padding: 0px 12px;
    font-family: Manrope;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.23px;
}
   


    #emojiPickerContainer {
      display: flex;
      flex-wrap: wrap;
      max-height: 300px; 
      overflow-y: auto; 
      min-height: 300px;
          padding: 10px;
    box-sizing: border-box;
    }

    .emoji-item {
    font-size: 20px;
    margin: 5px;
    cursor: pointer;
    }

    emoji-picker {
      --emoji-size: 32px;
      --emoji-button-size: 40px;
      --category-font-size: 20px;
    }