/* width */

::-webkit-scrollbar {
    width: 5px;
}


/* Track */

 ::-webkit-scrollbar-track {
    background: none;
}


/* Handle */

 ::-webkit-scrollbar-thumb {
    background: #303030;
    border-radius: 4px;
}


/* Handle on hover */

 ::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.redirect {
    text-align: center;
    color: #FFF;
    font-weight: bold;
}

.white {
    color: #FFF;
}

.center {
    text-align: center;
}

.frame-cp {
    width: 100%;
    min-height: 600px;
}

.wartime {
    text-align: center;
    color: orange;
}

.progress .progress-bar {
    text-shadow: 1px 1px 1px #000;
}


/* CHAT CSS */

.chat-box {
    margin-top: 20px;
}

.chatDiv {
    color: #b6b6b6;
}

.chat-msg {
    height: 400px;
    border-top: 1px solid #353535;
    border-left: 1px solid #353535;
    border-right: 1px solid #353535;
    border-radius: 4px 4px 0 0;
    word-wrap: break-word;
    overflow: auto;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.7);
    /*display: table;*/
}

.chat-msg .p-msg {
    margin: 4px;
    font-family: 'Tahoma';
    font-size: 80%;
    cursor: pointer;
}

.chat-user .p-user {
    margin: 4px;
    font-family: 'Tahoma';
    font-size: 80%;
    cursor: pointer;
}

.chat-msg span.msg {
    font-family: 'Tahoma';
}

.red {
    color: red;
}

.chat-user {
    height: 400px;
    overflow: auto;
}

.chat-textbox {
    border: 1px solid #353535;
}

.chat-textbox * {
    border: none;
}

.chat-textbox input {
    font-family: 'Tahoma';
}

.alert-login {
    color: #FFF;
    font-size: 10px;
    background-color: darkred;
    padding: 3px;
    width: 100%;
    display: block;
    border-radius: 4px;
    text-align: center;
    margin: 5px 0;
}

.alert-msg {
    float: right;
}

.clear {
    clear: both;
}