.chatListItem{
    
    padding: 2px 5px 2px 5px;
}
.chatListItem:nth-child(even){
    background-color: rgba(0,0,0,0.2);
}
.chatListItemPic{
    width: 40px;
    height: 40px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    vertical-align: middle;
}
.chatListItemName{
    display: inline-block;
    vertical-align: middle;
    padding: 0 5px 0 5px;
}
#Dumplings{
    height: 80px;
    position: fixed;
    text-align: right;
    top: 50px;
    right: calc(20% - 15px);
    max-width: 60%;
    z-index: 11;
}
@dumplingBarIn{
    from {
        left: calc(60% - 65px) !important;
    }
    to{
        right: 20% !important;
    }
}
.openedDumplingBar{
    right: 20% !important;
    animation: dumplingBarIn 0.5s linear;
}
.Dumpling{
    position: absolute;
    z-index: 2;
    border-radius: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    width: 70px;
    height: 70px;
    margin: 5px;
    background-color: white;
    display: inline-block;
}
.transitionTopRight{
    transition: top 0.3s linear, right 0.3s linear;
}
.firstDumpling{
    position: relative;
    z-index: 3;
    top: 0;
    right: 0;
}
.openedDumpling{
    position: relative;
    top: 0;
    left: 0;
}
.noneVisible{
    display: none;
    width: 0;
    height: 0;
}
#ChatContainer{
    position: fixed;
    top: 50px;
    right: 20%;
    width: 60%;
    z-index: 10;
    height: calc(100vh - 100px);
    background-color: rgba(0,0,0,0.2);
    transition: width 0.2s linear, height 0.2s linear;
}
#Messanger{
    background-color: white;
    border-radius: 5px;
    height: calc(100vh - 190px);
    margin: 5px;
    overflow: hidden;
    position: relative;
    top: 80px;
}
#MessangerHeader{
    height: 20px;
    background-color: #ddd;
    position: relative;
    box-shadow: 0 0 2px rgba(0,0,0,0.5);
}
#MessangerName{
    padding-left: 10px;
}
#MessangerMinimize{
    position: absolute;
    right: 25px;
    top: 0;
    width: 20px;
    height: 20px;
    background: url('resources/minimize.png') no-repeat center center;
    background-size: contain;
    background-repeat: no-repeat;
}
#MessangerClose{
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: url('resources/remove.png') no-repeat center center;
    background-size: contain;
    background-repeat: no-repeat;
}
#MessangerBody{
    height: 65%;
    overflow-y: auto;
}
#MessangerBody::-webkit-scrollbar{
    width: 5px;
}
#MessangerBody::-webkit-scrollbar-track{
    background-color: white;
    width: 5px;
}
#MessangerBody::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}
#MessangerBody .MsgContainer{
    
}
#MessangerBody .Incoming{
    text-align: left;
}
#MessangerBody .Incoming .Msg{
    border-radius: 0 5px 5px 5px;
    background-color: rgba(0,255,0,0.1);
}
#MessangerBody .Outgoing{
    text-align: right;
}
#MessangerBody .Outgoing .Msg{
    border-radius: 5px 5px 0 5px;
    background-color: rgba(0,0,255,0.1);
}
#MessangerBody .Msg{
    max-width: 50%;
    display: inline-block;
    text-align: left;
    margin: 5px;
    padding: 5px;
}
#MessangerForm{
    height: calc(35% - 20px);
    box-shadow: 0 0 2px rgba(0,0,0,0.5);
}
#MessangerForm textarea{
    border: none;
    resize: none;
    height: calc(100% - 50px);
    display: block;
    width: calc(100% - 10px);
    padding: 5px;
}
#MessangerControls{
    height: 40px;
    position: relative;
}
#MessangerSubmit{
    height: 40px;
    font-size: 20px;
    color: #16A3E8;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 5px 0 5px;
}