.trash{
    display: none;
    cursor: pointer;

    text-align: center;

    padding: 5px;
}

.trash i{
    font-size: 25px;
}

.trash:hover i{
    color: red;
}

.actionHandlers {
    height: 50px;

    padding: 5px;

    display: flex;

    background-color: #f0f2f5;
}

.actionHandlers>.actionButtons {
    display: flex;
}

.actionHandlers>input {
    width: 100%;
    border-radius: 5px;
    border: 0.1px solid #333;
}

.actionHandlers>.actionButtons>button {
    border-radius: 50%;

    background-color: transparent;
    border-color: transparent;
}

.actionHandlers>.actionButtons>button>img {
    width: 25px;
}

.actionRecords {
    height: 100%;
    margin-top: auto;
    padding: 5px;

    display: flex;
    justify-content: right;
}

.actionRecords .chats {
    padding: 16px;
    display: block;
    overflow-y: auto;

    max-height: 650px;
}

.actionRecords .chat-bubble {
    margin-top: auto;

    margin: 6px 0px;
    padding: 4px 8px;
    display: block;
    position: relative;
    max-width: 80%;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
    clear: both;

    min-width: 200px;

    word-wrap: break-word;
}

.actionRecords .chat-bubble img {
    width: 100%;

    max-height: 250px;

    border-radius: 5px;
}

.actionRecords .chat-bubble:hover .content {
    opacity: 70%;
}

.actionRecords .chat-bubble:hover .trash {
    display: block;
}

.actionRecords .msg-in {
    background: #fff;
    text-align: left;
    float: left;
}

.actionRecords .msg-out {
    background: #dcf8c6;
    text-align: left;
    float: right;
}

.actionRecords .msg-in::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    left: -6px;
    top: 0;
    border: 10px solid transparent;
    border-top-color: #fff;
}

.actionRecords .msg-in::after {
    content: attr(data-time);
    font-size: 12px;
    color: #8a8a8a;
    position: relative;
    margin: 4px;
    float: right;
    bottom: -6px;
    right: -8px;
}

.actionRecords .msg-out::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    right: -6px;
    top: 0;
    border: 10px solid transparent;
    border-top-color: #dcf8c6;
}

.actionRecords .msg-out::after {
    content: attr(data-time);
    font-size: 12px;
    color: #8a8a8a;
    position: relative;
    margin: 4px;
    margin-right: 25px;
    float: right;
    bottom: -6px;
    right: -8px;
}

.actionRecords span {
    float: right;
    position: absolute;
    bottom: 0px;
    right: -4px;
    transform: rotate(30deg);
}

.actionRecords span::before {
    width: 4px;
    height: 12px;
    content: '';
    display: block;
    position: relative;
    float: right;
    margin: 4px;
    right: 14px;
    bottom: -2px;
    border: 1px solid transparent;
}

.actionRecords span::after {
    width: 2px;
    height: 6px;
    content: '';
    display: block;
    position: relative;
    float: right;
    margin: 4px;
    right: -1px;
    bottom: 0px;
    border: 2px solid transparent;
}

.actionRecords .read::before {
    border-color: transparent #0088ff #0088ff transparent;
}

.actionRecords .read::after {
    border-color: transparent #0088ff #0088ff transparent;
}

.actionRecords .delivered::before {
    border-color: transparent grey grey transparent;
}

.actionRecords .delivered::after {
    border-color: transparent grey grey transparent;
}

.actionRecords .sent::before {
    border-color: transparent grey grey transparent;
}

.actionHandlers>.actionButtons {
    display: flex;
}

.actionHandlers>input {
    width: 100%;
    border-radius: 5px;
    border: 0.1px solid #333;
}

.actionHandlers>.actionButtons>button {
    border-radius: 50%;

    background-color: transparent;
    border-color: transparent;
}

.actionHandlers>.actionButtons>button>img {
    width: 25px;
}

.actionRecords .contact{
    display: flex;
    flex-direction: row;
    gap: 15px;

    min-width: 150px!important;
}

.actionRecords .contact img{
    width: 75px;
    border-radius: 50%;
}