#chatNewMsgsBadge {
    position: absolute;
    right: -6px;
    top: -6px;
    border-radius: 50%;
    background-color: red;
    font-size: 13px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    /* add a pulse animation */
    -webkit-animation: pulse 1s ease infinite;
    -moz-animation: pulse 1s ease infinite;
    -ms-animation: pulse 1s ease infinite;
    -o-animation: pulse 1s ease infinite;
    animation: pulse 1s ease infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

.chatnt_toast {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #9b59b6;
    color: #fff;
    padding: 10px;
    text-align: center;
    z-index: 9999;
    box-shadow: 0px -4px 8px rgba(0,0,0,0.4);
    display: none;
    cursor: pointer;
    transition: height 0.3s ease-in-out;
    height: 48px;
}

.chatnt_toast:hover {
    background-color: #8e44ad;
    height: 54px;
    line-height: 54px;
}