#chatHeader {
    width: 100%;
    height: 4vh;
    cursor: pointer;
}

#chatHeaderIcon {
    height: 3vh;
    width: 3vh;
    float: left;
}

.msgCount {
    position: absolute;
    height: 4vh;
    width: 4vh;
    border-radius: 100%;
    background: #FF4F5E;
    font-size: 2vh;
    right: 5vh;
    top: 0;
}

#chatHeaderText {
    height: 4vh;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding-left: 5vh;
    padding-top: 1vh;
}

#chatDisplay {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 53vh;
}

#chatMessages {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    overflow: scroll;
}

#chatInput {
    position: relative;
    width: 100%;
    height: 3vh;
    bottom: 0;
    left: 0;
}

#chatTextInput {
    height: 3vh;
    border-radius: 3vh;
    background: #000;
    color: white;
    padding-left: 4vh;
    padding-right: 1vh;
    width: calc(16vw - 4vh);
}

#chatSmiley {
    position: absolute;
    height: 3vh;
    width: 3vh;
    top: 0;
    left: 0;
    opacity: 0.5;
}

#chatSend {
    position: absolute;
    height: 3vh;
    width: 3vh;
    top: 0;
    right: 0;
}

.chatAreaElement {
    padding: 3px;
    font-size: 2vh;
    line-height: 2.1vh;
    color: white;
    width: 100%
}

input.textInput {
    font-size: 100%;
    border: 1px solid #AAAAAA;
    border-radius: 3px;
    background-color: #FCFCFC;
    height: 20px;
    padding: 4px;
}

.playerCont .chatBubble {
    position: absolute;
    width: 100%;
    left: 105%;
    top: 25%;
    color: black;
    padding: 1%;
    background: #fff;
    border-radius: .4em;
    z-index: 7000;
}

.MyselfDiv .chatBubble {
    position: absolute;
    width: 6vw;
    min-height: 3vh;
    top: 25%;
    left: calc((15vh * 4/3) + 1vh);
    color: black;
    padding: 1%;
    background: #fff;
    border-radius: .4em;
    z-index: 7000;
}

.chatBubbleLeft:after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 0;
    border: 0.563em solid transparent;
    border-right-color: #fff;
    border-left: 0;
    margin-top: -0.281em;
    margin-left: -0.562em;
}


