/* Chat */
.chat {
    position: fixed;
    bottom: 0;
    width: 150px;
    right: 15px;
    z-index: 1000;
    background: rgba(0,0,0,0.85);
    height: 27px;
    overflow: hidden;
}

.chat.toggled {
    width: auto;
    height: 42%;
}

.chat-body {
    background: rgba(255, 255, 255, 0.7);
    height: 270px;
    overflow: auto;
    padding: 10px;
    width: 300px;
}

.chat .chat-body .media-body {
    min-width: 100px;
    background: #fff;
    color: #000;
    min-height: 50px;
    padding: 5px;
    font-size: 13px;
}

.chat .media-body > small {
    display: block;
    margin-bottom: -2px;
    font-size: 9px;
    margin-top: 10px;
    color: #000;
}

.chat .chat-body .media > [class*="pull-"] {
    margin: 0;
}

.chat .btn {
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.chat .status {
    font-size: 14px;
    margin-top: 3px;
    color: rgb(3, 204, 3);
}

.chat .chat-footer {
    width: 100%;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: relative;
    margin: 0;
}

.chat .chat-footer textarea {
    background: #E0F8EC;
    border: 0;
    color: #333;
    box-shadow: none;
    font-size: 12px;
}
