body {
    padding-top: 0;
    font-size: 12px;
    color: black;
    background: #f9f9f9;
    font-family: 'Open Sans',sans-serif;
    /* margin-top: 20px; */
}

.bg-white {
    background-color: #fff;
}

.friend-list {
    list-style: none;
    margin-left: -40px;
}

    .friend-list li {
        /* border-bottom: 1px solid #eee; */
    }

        .friend-list li a img {
            float: left;
            width: 20px;
            height: 20px;
            margin-right: 10px;
        }

        .friend-list li a {
            text-decoration: none;
            outline: 0;
            position: relative;
            display: block;
            padding: 10px;
            padding-left: 5px;
            margin-bottom: 5px;
            transition: all .2s ease;
            -webkit-transition: all .2s ease;
            -moz-transition: all .2s ease;
            -ms-transition: all .2s ease;
            -o-transition: all .2s ease;
        }

        .friend-list li.active a {
            background-color: #f1f5fc;
        }

        .friend-list li a .friend-name,
        .friend-list li a .friend-name:hover {
            color: black;
            display: inline-flex
        }

        .friend-list li a .last-message {
            width: 65%;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
        }

        .friend-list li a .time {
            position: absolute;
            top: 10px;
            right: 8px;
        }

small, .small {
    font-size: 85%;
}

.friend-list li a .chat-alert {
    /* position: absolute; */
    right: 8px;
    top: 27px;
    font-size: 10px;
    padding: 3px 5px;
    margin-left: 5px;
    background-color: #d9534f;
    color: white;
}

.back-button {
    display: inline-block;
    width: 100vw;
    padding: 10px;
}

    .back-button:hover {
        background-color: #8d959b;
    }

.media {
    max-width: 450px;
}

.chat-message {
    padding: 60px 20px 115px;
}

.chat {
    list-style: none;
    margin: 0;
}

.chat-message {
    background: #f9f9f9;
}

.chat li img {
    width: 45px;
    height: 45px;
    border-radius: 50em;
    -moz-border-radius: 50em;
    -webkit-border-radius: 50em;
}

img {
    max-width: 100%;
}

.chat-body {
    padding-bottom: 20px;
}

.chat li.left .chat-body {
    margin-left: 70px;
    background-color: #fff;
}

.chat li .chat-body {
    position: relative;
    font-size: 11px;
    padding: 10px;
    border: 1px solid #f1f5fc;
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
    -moz-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
}

    .chat li .chat-body .header {
        padding-bottom: 5px;
        border-bottom: 1px solid #f1f5fc;
    }

    .chat li .chat-body p {
        margin: 0;
    }

.chat li.left .chat-body:before {
    position: absolute;
    top: 10px;
    left: -8px;
    display: inline-block;
    background: #fff;
    width: 16px;
    height: 16px;
    border-top: 1px solid #f1f5fc;
    border-left: 1px solid #f1f5fc;
    content: '';
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

.chat li.right .chat-body:before {
    position: absolute;
    top: 10px;
    right: -8px;
    display: inline-block;
    background: #fff;
    width: 16px;
    height: 16px;
    border-top: 1px solid #f1f5fc;
    border-right: 1px solid #f1f5fc;
    content: '';
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.chat li {
    margin: 15px 0;
}

    .chat li.right .chat-body {
        margin-right: 70px;
        background-color: #fff;
    }

.chat-box {
    /*
  position: fixed;
  bottom: 0;
  left: 444px;
  right: 0;
*/
    padding: 15px;
    border-top: 1px solid #eee;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
}

.primary-font {
    color: #3c8dbc;
}

a:hover, a:active, a:focus {
    text-decoration: none;
    outline: 0;
}

.hr {
    margin: 1rem 0;
    color: red;
    border: 0;
    border-top: 1px solid currentcolor;
    opacity: .75;
}

table, th, td {
    border: 1px solid black;
}

/* =============================================================================
Image Zoom JS v0.0.1 | MIT License | https://github.com/alecrios/image-zoom-js
============================================================================= */

[data-zoom-backdrop] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 900;
    background-color: rgba(255, 255, 255, 1);
    opacity: 0;
    transition: opacity 400ms ease;
    pointer-events: none;
}

[data-zoom-backdrop='active'] {
    opacity: 1;
    pointer-events: auto;
}

[data-zoom-image] {
    position: relative;
    z-index: 800;
    transform: none;
    transition: transform 400ms ease;
    cursor: zoom-in;
}

[data-zoom-image='active'] {
    z-index: 1000;
    cursor: zoom-out;
}
