﻿#videos {
    padding:150px;
    position: relative;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

#subscriber {
    position: absolute;
    align-content:center;
    width: 360px;
    height: 240px;
    bottom: 10px;
    left: 15%;
    z-index: 100;
    border: 3px solid white;
    border-radius: 3px;
}

#publisher {
    position: absolute;
    align-content:center;
    width: 360px;
    height: 240px;
    bottom: 10px;
    left: 15%;
    z-index: 100;
    border: 3px solid white;
    border-radius: 3px;
}
#textchat {
    position: relative;
    width: 20%;
    float: right;
    right: 0;
    height: 100%;
    background-color: #333;
}
#chatArea {
    position: relative;
    width: 20%;
    float: right;
    right: 0;
    height: 100%;
    background-color: #333;
}
#history {
     width: 100%;
     height: calc(100% - 40px);
     overflow: auto;
}
input#msgTxt {
            height: 40px;
            position: absolute;
            bottom: 0;
            width: 100%;
}
#chatArea .mine {
    color: #00FF00;
    text-align: right;
    margin-right: 10px;
}
#chatArea .theirs {
    color: #00FFFF;
    margin-left: 10px;
}

