    @import url(https://fonts.googleapis.com/css?family=Lato:400,700);
    @import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
    #mobileDialog {
        position: fixed; /* Sit on top of the page content */
        display: none; /* Hidden by default */
        width: 100%; /* Full width (cover the whole page) */
        height: 100%; /* Full height (cover the whole page) */
        top: 0; 
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0,0,0,0.5); /* Black background with opacity */
        z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
        cursor: pointer; /* Add a pointer on hover */
    }

    .chatWindow a.returntext:hover {
        background: rgba(0,0,0,.4);
    }
    .chatWindow a.returntext:active {
        color:white;
    }
    .chatWindow a.returntext:visited {
        color:white;
    }
    .chatwindow a.returntext:link {
        color:white;
    }
    .chatWindow a.returntext {
        display: inline-block;
        padding: 1px 12px;
        text-decoration:none;
        background: rgba(0,0,0,.15);
        border-radius: 15px;
        cursor: pointer;
        margin: 1px 2px;
        color: white;
        transition: background .3s ease;
        text-decoration:none;
    }

    .chatContainer {
        color: white;
        font-size: 14px;
	font-family: "Verdana", sans-serif;
        margin: 0 auto;
        width: 275px;
        position: fixed;
        right: 10px;
        bottom: 0px;
        z-index: 10000;
    }

    .chatWindow a:link {
	    color: #00abe7;
    }

    .chatWindow a:hover {
	    color: #00abe7;
    }

    .chatWindow a:active {
	    color: #00abe7;
    }

    .chatWindow a:visited {
	    color: #00abe7;
    }

    .people-list {
	float: right;
        background: #444753;
    }

    .people-list .search {
        padding: 20px;
        padding-right: 0px;
        display: inline-block;
    }

    .people-list input {
        border-radius: 3px;
        border: none;
        padding: 14px;
        color: white;
        background: #6A6C75;
        width: 185px;
        font-size: 14px;
    }

    .people-list .fa-search {
        position: relative;
        left: -25px;
    }

    .people-list ul {
        padding: 20px;
        height: 457px;
    }

    .people-list ul li {
        padding-bottom: 20px;
    }

    .people-list .about {
        float: left;
        margin-top: 8px;
    }

    .people-list .about {
        padding-left: 8px;
    }

    .people-list .status {
        color: #92959E;
    }

    .chatWindow {
        width: 490px;
        position: fixed;
        right: 10px;
        background: #F2F5F8;
	margin-right:10px;
        color: #434651;
        -webkit-box-shadow: -4px -1px 15px 0px rgba(0, 0, 0, 0.40);
        -moz-box-shadow: -4px -1px 15px 0px rgba(0, 0, 0, 0.40);
        box-shadow: -4px -1px 15px 0px rgba(0, 0, 0, 0.40);
    }

    .chatWindow .chat-header {
        padding: 10px 20px;
        border-bottom: 2px solid white;
    }

    .chatWindow .chat-header .chat-about {
        float: left;
        padding-left: 10px;
        margin-top: 6px;
    }

    .chatWindow .chat-header .chat-with {
        font-weight: bold;
        font-size: 14px;
    }

    .chatWindow .chat-header .chat-num-messages {
        color: #92959E;
    }

    .chatWindow .chat-header .fa-times-circle {
        float: right;
        color: #34495e;
        font-size: 20px;
        margin-top: 12px;
        cursor: pointer;
    }

    .chatWindow .chat-history {
        padding: 10px 20px;
        border-bottom: 2px solid white;
        overflow-y: scroll;
        height: 312px;
    }

    .chatWindow .chat-history .message-data {
        margin-bottom: 15px;
    }

    .chatWindow .chat-history .message-data-time {
        color: #a8aab1;
        padding-left: 6px;
    }

    .chatWindow .chat-history .message {
        color: white;
        padding: 18px 20px;
        line-height: 26px;
        font-size: 14px;
        border-radius: 7px;
        margin-bottom: 30px;
        width: 90%;
        position: relative;
    }

    .chatWindow .chat-history .message:after {
        bottom: 100%;
        left: 7%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-bottom-color: #444753;
        border-width: 10px;
        margin-left: -10px;
    }

    .chatWindow .chat-history .my-message {
        background: #444753;
    }

    .chatWindow .chat-history .other-message {
        background: #1179BF;
    }

    .chatWindow .chat-history .other-message:after {
        border-bottom-color: #1179BF;
        left: 93%;
    }

    .chatWindow .chat-message {
        padding: 10px 30px;
		font-size: 10px;
    }

    .chatWindow .chat-message textarea {
        width: 90%;
        border: none;
        padding: 10px 20px;
        font-size: 14px;
	font-family: "Verdana", sans-serif;
        margin-bottom: 10px;
        border-radius: 5px;
        resize: none;
		min-height: 50px;
    }

    .chatWindow .chat-message .fa-file-image-o {
        font-size: 14px;
        color: gray;
        cursor: pointer;
    }

    .chatWindow .chat-message button {
        float: right;
        color: #00abe7;
        font-size: 14px;
        text-transform: uppercase;
        border: none;
        cursor: pointer;
        font-weight: bold;
        background: #F2F5F8;
        min-width: 100px;
    }

    .chatWindow .chat-message button:hover {
        color: #75b1e8;
    }

    .chatContainer.online,
    .chatContainer .offline,
    .chatContainer .me {
        margin-right: 3px;
        font-size: 10px;
    }

    .chatContainer .online {
        color: #444753;
    }

    .chatContainer .me {
        color: #1179BF;
    }

    .chatContainer .align-left {
        text-align: left;
    }

    .chatContainer .align-right {
        text-align: right;
    }

    .chatContainer .float-right {
        float: right;
    }

    .clearfix:after {
        visibility: hidden;
        display: block;
        font-size: 0;
        content: " ";
        clear: both;
        height: 0;
    }

    #chatBttn {
    position: fixed;
    bottom: 60px;
    right: 50px;
    width: 52px;
    height: 52px;
    cursor: pointer;
    overflow: hidden;
    background-color: #00abe7;
	z-index: 1000;
	border-radius: 50%;
    }
	#chatBttn::before {
    content: "\e3ff";
    color: #ffffff;
    font-size: 28px;
    left: 12px;
    top: 12px;
    position: absolute;
	}
	.zfc-chat-footer#chatBttn {
      bottom: 10px;
	}

@media (max-width:720px)
{
	#chatBttn {
    width: 42px;
    height: 42px;
    font-size: 24px;
    }
	#chatBttn::before {
    left: 6px;
    top: 6px;
	}
}
	/*#chatBttn img {
	display:none;
	}*/

    #chatBttn .fa-comments {
    font-size: 20px;
    position: absolute;
    left: 50%;
    color:white;
    margin-left: -15px;
    top: 50%;
    margin-top: -17px;
    }

    #onlineUsersTab .about {
        cursor: pointer;
    }

    #peopleBar-collapse {
        display: inline-block;
        cursor: pointer;
    }
    #message-to-send {
        border:solid 1px #bdc3c7;
    }
    .fa-user-circle-o.userIcon {
        font-size:45px;
        float: left;
        padding-top: 3px;
    }
  .chatEmoji{
    display:block;
    height:48px;
    float:left;
    width:48px;
    text-align:center;
    border-radius:50%;
    margin:3px 5px 0 0; 
    overflow:hidden;
    box-sizing:border-box;
    padding-top:4px;
  }
