
/*Estilos del chat*/

/* width */
::-webkit-scrollbar {width: 7px;}
/* Track */
::-webkit-scrollbar-track {background: #f1f1f1;}
/* Handle */
::-webkit-scrollbar-thumb {background: #a7a7a7;}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {background: #929292;}

ul {margin: 0;padding: 0;}
li {list-style: none;}

.chat-info{ cursor: pointer; }

.chat-asigna{ cursor: pointer; }

.user-wrapper, .message-wrapper {overflow-y: auto;}
.user-wrapper {height: 600px;}
.user {padding: 5px 0;position: relative;}
.user:hover {background: #eeeeee;}
.user:last-child {margin-bottom: 0;}
.media-left {margin: 0 10px;}
.media-left img {width: 64px; height: 70px; border-radius: 50%;}
.media-body p {margin: 6px 0;}
.message-wrapper {padding: 10px;height: 536px;}
.messages .message {margin-bottom: 15px;}
.messages .message:last-child {margin-bottom: 0;}
.received, .sent {width: 45%;padding: 3px 10px;border-radius: 10px;}
.received {background: #ffffff;}
.sent {background: #cde9ce;float: right;text-align: right;}
.message p {margin: 5px 0;}
.date {color: #777777; font-size: 12px;}
.active {background: #eeeeee;}