#chat-chat {
    width: 300px;
    height: 450px;
    background: #eee;
    display: inline-block;
    border-radius: 5px;
    bottom: 10px;
    position: fixed;
    right: 10px;
    border: none;
    box-shadow: 1px 10px 8px #bbb;
    z-index: 2
}

#chat-chat #chat-chat-head,
#chat-auth-btn, #chat-init-btn {
    background: #006699;
    border: none;
}

#chat-chat #chat-chat-head {
    height: 50px;
}

#chat-chat #chat-chat-head #chat-chat-head-caption {
    color: #fff;
    position: absolute;
    top: 15px;
    left: 15px
}

#chat-chat #chat-chat-head #chat-close-btn {
    position: absolute;
    top: 3px;
    right: 7px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    opacity: .3;
    -webkit-transition: opacity .1s;
    transition: opacity .1s
}

#chat-chat #chat-chat-head #chat-close-btn:before, #chat-chat #chat-chat-head #chat-close-btn:after {
    content: "";
    position: absolute;
    top: 21px;
    left: 10px;
    width: 26px;
    height: 2px;
    background: #ffffff
}

#chat-chat #chat-chat-head #chat-close-btn:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

#chat-chat #chat-chat-head #chat-close-btn:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

#chat-chat #chat-chat-head #chat-close-btn:hover {
    opacity: 1
}

#chat-chat #chat-chat-flow {
    width: 100%;
    height: 320px;
    overflow: auto;
    padding-bottom: 10px
}

#chat-chat #chat-chat-flow .chat-msg {
    padding: 8px;
    margin: 5px;
    width: 200px;
    border-radius: 5px
}

#chat-chat #chat-chat-flow .chat-msg.chat-incoming {
    float: left;
    background: #F0F8FF
}

#chat-chat #chat-chat-flow .chat-msg.chat-outgoing {
    float: right;
    background: #ccc
}

#chat-chat #chat-chat-send-panel {
    width: 100%;
    height: 80px;
    background: #fff;
    position: absolute;
    bottom: 0;
    border: none;
}

#chat-chat #chat-chat-auth-panel {
    width: 100%;
    background: #eee;
    position: absolute;
    border-top: 1px solid #ccc
}

#chat-chat #chat-chat-send-panel #chat-chat-msg {
    height: 60px;
    width: 280px;
    margin-left: 10px;
    margin-top: 10px;
    border-radius: 8px;
    padding-right: 50px;
    padding-top: 10px;
    padding-left: 10px;
    resize: none;
    border: 1px solid #ccc;
}

#chat-chat #chat-chat-send-panel #chat-auth-btn {
    float: none;
    height: 80px;
    padding: 0
}

#chat-chat #chat-chat-send-panel #chat-send-btn {
    position: absolute;
    right: 20px;
    top: 22px;
    height: 38px;
    width: 38px;
    padding: 0;
    background-color: #006699;
    color: #fff;
}

#chat-init-btn {
    display: inline-block;
    bottom: 10px;
    position: fixed;
    right: 10px;
    z-index:1000;
}

@media (max-width: 400px) {
    #chat-init-btn span {
        display: none
    }
}
