/* GENERAL */

img {
    max-width: 100%;
}

#notice {
    font-size: 14px;
}

#chat {
    overflow: hidden;
    height: 500px;
    border: 1px solid #ccc;
    border-radius: 20px;
    margin-bottom: 20px;
    padding: 15px;
    overflow-y: auto;
}

#lignemessage {
    opacity: 0;
}

#chat .msg {
    margin-bottom: 10px;
}

#chat .msg .text {
    display: inline-block;
    width: 75%;
    background: #ebebeb;
    border-radius: 3px;
    color: #646464;
    font-size: 14px;
    padding: 5px 10px 5px 12px;
    word-break: break-word;
}

#chat .msg .bypseudo {
    display: inline-block;
    width: 25%;
    /*vertical-align: top;*/
    padding-left: 10px;
    font-size: 14px;
}

