#chatList {
    display:flex;
    position:relative;
    flex-direction:column;
    margin:50px auto 0 auto;
    max-width:800px;
    min-width:100px;
    border:0;
}

#chat {
    background-color:#2E2E2E;
    /*border-bottom:1px solid #707070;*/
    width:100%;
    height:70px;
    cursor:pointer;
}

#chatIcon {
    position:relative;
    width:60px;
    height:60px;
    border-radius:50px;
    display:inline-block;
    float:left;
}

#chatIconDiv {
    width:60px;
    height:60px;
    margin:5px 10px 5px 10px;
    display:inline-block;
    float:left;
}

#chatNameLastMsgDiv {
    display:inline-block;
    float:left;
    margin-top:10px;
    width:calc(100% - 80px);
}

#chatName {
    position:relative;
    color:#FFFFFF;
    display:inline-block;
    font-size:16px;
    white-space: nowrap;
    overflow: hidden;
    width:100%;
    text-overflow:ellipsis;
}

#chatLastMsg {
    color:#FFFFFF;
    display:inline-block;
    font-size:16px;
    margin-top:5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow:ellipsis;
    width:100%;
    max-width:720px;
}

#chatLastMsgTime {
    color:#FFFFFF;
    float:right;
    font-size:12px;
    margin:0px 5px 0 0;
}

#noChats {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    color:#FFFFFF;
    font-family:Roboto Condensed;
    font-weight:bold;
    font-size:30px;
}

#noChats>a {
    font-size:30px;
}

#emoji {
    display:inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -.1em;
    margin:0 1px 0 1px;
    user-drag: none;
    -webkit-user-drag: none;
}

#emoji[src$="/resources/emoji/rolling_on_the_floor_laughing.png"] {
    width:1.3em;
    height:1.3em;
    margin:-3px -3px -3px -3px;
}



#chatIconDiv::after {
    width:60px;
    height:60px;
    background-image:url("/resources/icons/argeement.png");
    background-size:60px 60px;
    background-repeat:no-repeat;
    content:"";
    position:absolute;
    display:block;
    transition: 0.12s ease-in-out;
}

#chatIconDiv[data-selected="false"]::after {
    transform:scale(0);
}

#chatIconDiv[data-selected="true"]::after {
    transform:scale(1);
}

#selectChatsBtn {
    position:absolute;
    bottom:30px;
    right:30px;
    width:80px;
    height:80px;
    border-radius:80px;
    cursor:pointer;
}

#addNewChatDiv {
    display:flex;
    background-color: #2E2E2E;
    width: 100%;
    height: 70px;
    cursor: pointer;
    flex-direction:row;
    align-items: center;
    justify-content: center;
    order:-1;
}

#addNewChatImg {
    position: relative;
    width: 60px;
    height: 60px;
    display: inline-block;
    float: left;
    margin: 5px 10px 5px 10px;
}

#addNewChatSpan {
    display: inline-block;
    margin:5px 10px 5px 0;
    font-size: 24px;
    text-decoration: none;
    color: #FFFFFF;
    float: left;
    text-align:left center;
    line-height:60px;
}

/*training*/
#training {
    background-color: #2E2E2E;
    display:block;
    text-align:center;
    padding:10px 0 20px 0;
}

#trainingSpan {
    display:block;
    font-size: 30px;
    color: #FFFFFF;
    font-family: Roboto Condensed;
    margin: 0;
}

#trainingBtns {
    display:block;
    margin:10px 0 0 0;
}

#trainingStart,#trainingCancel {
    background-color: #3E3E3E;
    height: 50px;
    cursor: pointer;
    margin: 0;
    padding-left: 15px;
    padding-right: 15px;
    font-family: Roboto Condensed;
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    border-radius: 15px;
    border: 0;
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #558fd3;
    border-radius: 100px;
    border: 2px solid transparent;
    background-clip: content-box;
}
::-webkit-scrollbar-thumb {
    background: #4A90E2;
    border-radius: 100px;
    border: 2px solid transparent;
    background-clip: content-box;
}
::-webkit-scrollbar-track {
    background: #1A1A1A;
}