#chatbar {
    width: 100%;
    height: 50px;
    border-top: 1px solid black;
    background-color: #333;
    position: fixed;
    bottom: 0;
    left: 0;
}
#chatbox {
    border:1px solid rgba(107, 107, 107, 0.8);
    background-color: rgba(26, 26, 26, 0.85);
    width: 800px;
    height: 520px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -400px;
    margin-top: -250px;
    z-index: 500;
}
#chatbox_inner {
    width: 780px;
    margin-top: 5px;
    margin-left: 10px;
    position: relative;
}
#chatbox_right{
    position: absolute;
    width: 50%;
    text-align: right;
    height: 20px;
    line-height: 20px;
}
#chatbox_right img {
    vertical-align: middle;
}
#chatbox iframe {
    border: none;
    width: 780px;
    height: 480px;
    margin: 0;
    margin-top: 25px;
    padding: 0;
}
#chatbar iframe {
    border: none;
    overflow: hidden;
}
#chatbutton {
    position: fixed;
    bottom: 5px;
    left: 5px;
}
.close_chat {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #676e7a;
    cursor: pointer;
    font-size: 16px;
    vertical-align: middle;
    text-decoration: none;
}