.chatListContainer {
  width: 80%;
  margin: 0 auto;
  color: #333333;
  z-index: 0;
  overflow-y: scroll;
  padding-top: var(--navbar-height);
  padding-bottom: 20px;
}

.chatListEntry {
  -webkit-animation: chats-animation-right .6s 0s forwards;
  animation: chats-animation-right .6s 0s forwards;
  opacity: 0;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #c6c6c6;
  font-size: 14px;
  /* margin: 0 auto; */
  width: 100%;
}

.chatListEntry img {
  width: 65px;
  height: 65px;
  margin-right: 10px;
  border-radius: 50%;
}


.chatListEntry h3,
.chatListEntry strong,
.chatListEntry p {
  margin: 0;
  padding: 0;
}

.chatListEntry h3 {
  color: #181818;
  font-weight: 500;
  font-size: 15px;
}

.chatListEntry strong {
  color: #5458ed;
  font-weight: 500;
  font-size: 14px;
}

.chatListEntry p {
  color: #b1b1b1;
  margin-bottom: 25px;
}

.chatListEntry p:nth-child(2) {
  padding-top: 25px;
}

.chatListEntry > div {
  color: #b1b1b1;
}

.chatListEntry:nth-child(2) {
  -webkit-animation: chats-animation-right 0.6s .2s forwards;
          animation: chats-animation-right 0.6s .2s forwards;
}

.chatListEntry:nth-child(2) {
  -webkit-animation: chats-animation-right 0.6s .4s forwards;
          animation: chats-animation-right 0.6s .4s forwards;
}

.chatListEntry:nth-child(3) {
  -webkit-animation: chats-animation-right 0.6s .6s forwards;
          animation: chats-animation-right 0.6s .6s forwards;
}

.chatListEntry:nth-child(4) {
  -webkit-animation: chats-animation-right 0.6s .8s forwards;
          animation: chats-animation-right 0.6s .8s forwards;
}

.chatListEntry:nth-child(5) {
  -webkit-animation: chats-animation-right 0.6s 1s forwards;
          animation: chats-animation-right 0.6s 1s forwards;
}

.chatListEntry:nth-child(6) {
  -webkit-animation: chats-animation-right 0.6s 1.2s forwards;
          animation: chats-animation-right 0.6s 1.2s forwards;
}

.chatListEntry:nth-child(7) {
  -webkit-animation: chats-animation-right 0.6s 1.4s forwards;
          animation: chats-animation-right 0.6s 1.4s forwards;
}

.chatListEntry:nth-child(8) {
  -webkit-animation: chats-animation-right 0.6s 1.4s forwards;
          animation: chats-animation-right 0.6s 1.4s forwards;
}

.chatListEntry:nth-child(9) {
  -webkit-animation: chats-animation-right 0.6s 1.6s forwards;
          animation: chats-animation-right 0.6s 1.6s forwards;
}

.chatListButton {
  color : var(--main-color) !important;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  align-items: center;
  padding-top: 5px;
}


@-webkit-keyframes chats-animation-right {
  0% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes chats-animation-right {
  0% {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes animation-up-chat-list {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes animation-up-chat-list {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}