
    /* selected chat = green background */
    .selected-chat {
        background: #b8e5b8 !important;
    }
    /* in chat and has sent messages = yellow background */
    .in-chat {
        border:2px solid #b8e5b8 !important;
    }
    /* left website and has sent messages = red background */
    .left-chat {
        border:2px solid red !important;
        background: red;
    }
    /* on website and has not sent messages = blue border */
    .browsing-chat {
        border:2px solid blue !important;
    }
    .unread-messages {
    	background: #b8e5b8 !important;
    	border:2px solid #b8e5b8 !important;
        animation: blink-animation 1s steps(10, start) infinite;
        -webkit-animation: blink-animation 1s steps(10, start) infinite;
    }
    .dummy-row {
        display: none;
    }
    .chat-row {
        cursor: pointer;
        width: 100%;
    }
    .chat-row p {
        display: inline-block;
        font-size: 16px;
        font-weight: bold;
        padding: 0;
        margin: 5px 0;
    }
    .chat-row p.user {
        width: 20%;
    }
    .chat-row p.location, .chat-row p.device {
        width: 10%;
    }
    .chat-row p.last-visited {
        width: 40%;
    }
    .chat-row-outer button {
        color: red;
        font-weight: bold;
        font-size: 20px;
    }
    @keyframes blink-animation {
        to {
            background: #b8e5b8;
        }
    }
    @-webkit-keyframes blink-animation {
        to {
            background: #b8e5b8;
        }
    }
    #ChatRoom{
        margin-top: 45px;
    }
    .contain {
        display: flex;
    }

    .content {
        width: 70%;
    }

    #current_time {
        text-align: center;
        color: #999;
        font-weight: bold;
        font-size: 12px;
    }

    #current_time:before,
    #current_time:after {
        content: ' ------------- '
    }

    #chat-overlay {
        background: rgba(255, 255, 255, 0.1);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        border-radius: 50%;
    }

    .lc-1mpchac {
        display: inline-block;
        flex-shrink: 0;
        width: 1em;
        height: 1em;
        font-size: 2rem;
        user-select: none;
        fill: currentcolor;
    }

    .chat-box {
        background: #fff;
        width: 30%;
        max-width: 85vw;
        border-left: 1px solid grey;
        position: absolute;
        top: 35px;
        right: 0;
    }

    .chat-box-toggle {
        float: right;
        margin-right: 15px;
        cursor: pointer;
    }

    .welcome-text {
        margin: 5px 15px;
        font-size: 16px;
    }

    .support-name {
        margin: 10px 0 0 15px;
        font-size: 16px;
        font-weight: bold;
    }

    .online {
        color: green;
        font-weight: bolder;
        animation: blinker 2s linear infinite;
    }

    @keyframes blinker {
        25% {
            opacity: 0.3;
        }

        50% {
            opacity: 1;
        }
    }

    .chat-box-body {
        position: relative;
        overflow: hidden;
    }

    .chat-box-body:after {
        content: "";
        opacity: 0.1;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        height: 100%;
        position: absolute;
        z-index: -1;
    }

    #chat-input {
        background: transparent;
        width: 90%;
        position: relative;
        height: 47px;
        padding-left: 10px;
        border: none;
        resize: none;
        outline: none;
        color: #888;
        border-top: none;
        border-bottom-right-radius: 5px;
        border-bottom-left-radius: 5px;
        overflow: hidden;
    }

    .chat-input > form {
        display: flex;
    }

    form > div {
        margin: 5%;
        width: 90%;
        background: #f4f7f9;
        display: grid;
        border: 1px solid #ccc;
        border-radius: 10px;
    }

    .content > div {
        display: flex;
        border: 1px solid;
        margin-bottom: 1px;
    }

    .content > div > p {
        margin: 0;
        width: 25%;
        font-size: 20px;
        font-weight: bold;
        padding: 5px 10px;
    }

    #chat-input::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */
        color: #ccc;
    }

    #chat-input::-moz-placeholder {
        /* Firefox 19+ */
        color: #ccc;
    }

    #chat-input:-ms-input-placeholder {
        /* IE 10+ */
        color: #ccc;
    }

    #chat-input:-moz-placeholder {
        /* Firefox 18- */
        color: #ccc;
    }

    .chat-submit {
        margin-left: auto;
        margin-right: 10px;
        margin-bottom: 10px;
        cursor: pointer;
        box-shadow: none;
        border: none;
        border-radius: 5px;
        color: #F5F5F5;
        background: #0a95ff;
        width: 80px;
        height: 40px;
        font-size: 15px;
    }

    .chat-logs {
        padding: 15px 0;
        height: 70vh;
        overflow-y: scroll;
    }

    .chat-logs::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        background-color: #F5F5F5;
    }

    .chat-logs::-webkit-scrollbar {
        width: 5px;
        background-color: #F5F5F5;
    }

    .chat-logs::-webkit-scrollbar-thumb {
        background-color: #0a95ff;
    }


    @media only screen and (max-width: 500px) {
        .chat-logs {
            height: 40vh;
        }
    }

    .cm-msg-text {
        background: white;
        padding: 10px 15px 10px 15px;
        color: #666;
        max-width: 75%;
        font-size: 13px;
        float: left;
        margin-left: 10px;
        position: relative;
        margin-bottom: 20px;
        border-radius: 20px;
        line-break: anywhere;
    }

    .cm-msg-info {
        margin: 7px 10px;
        font-size: 12px;
    }

    .cm-msg-info.self {
        text-align: right;
    }

    .chat-msg {
        clear: both;
    }

    .chat-msg.self > .cm-msg-text {
        float: right;
        margin-right: 10px;
        background: #0a95ff;
        color: rgb(255, 255, 255);
    }

    .chat-msg.user > .cm-msg-text {
        float: left;
        margin-right: 10px;
        background: #ddd;
        color: #333;
    }

    .cm-msg-button > ul > li {
        list-style: none;
        float: left;
        width: 50%;
    }

    .cm-msg-button {
        clear: both;
        margin-bottom: 70px;
    }
