.chat_items_container {
    height: 100vh;
}

.chat_main_container {
    position: relative;
    width: 100%;
    flex: 1 100%;
}

#chat_new_message_container {
    position: sticky;
    bottom: 20px;
    right: 0px;
    padding: 10px;
    border-radius: 30px;
    background-color: #fff;
    box-shadow: 0px 15px 25px -15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}

.new_message_text_container {
    flex: 1 50%;
}

.new_message_text {
    flex: 1 50%;
    padding-left: 5px;
    padding-top: 12px;
    padding-right: 5px;
    padding-bottom: 12px;
    padding: 10px 20px;
    background-color: #F9F9F9;
    border-radius: 25px;
    border: 1px solid #F9F9F9;
    font-size: 16px;
    font-weight: 400;
    text-align: right;
    line-height: 25px;
}

.new_message_button{
    background-color: #ffffff;
    border-radius: 25px;
    border: 0px solid rgb(239, 239, 239);
    padding: 0px;
    color: #236897;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    flex-direction: row;
    align-content: center;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    gap: 7px;
    user-select: none;
    width: 70px;
    height: 30px;
}

.new_message_button svg {
    width: 25px;
    height: 25px;
    fill: #236897;
    transition: 0.2s;
}

.new_message_button:hover svg {
    fill: #1e577e;
}