.chat {
  position: fixed;
  bottom: 0;
  right: 0;
  direction: rtl;
  width: 300px;
  border-radius: 5px;
  border: solid thin rgba(0, 0, 0, 0.81);
  z-index: 1000;
}
.chat.chat-lg {
  width: 300px;
}
.chat .chat-option {
  position: absolute;
  right: 100%;
  height: 100%;
  border: solid thin #333;
  top: -1px;
  width: 200px;
}
.chat .chat-option.chat-option-close {
  display: none;
}
.chat .chat-option .chat-option-body {
  overflow-y: auto;
  height: 100%;
}
.chat .chat-option .chat-option-body .chat-contacts .chat-contact {
  cursor: pointer;
  position: relative;
  border-bottom: solid thin rgba(255, 255, 255, 0.1);
  padding: 5px;
}
.chat .chat-option .chat-option-body .chat-contacts .chat-contact img {
  width: 40px;
  height: 40px;
  border: rgba(255, 255, 255, 0.1) solid thin;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
}
.chat .chat-option .chat-option-body .chat-contacts .chat-contact .chat-contact-selection {
  width: 40px;
  height: 40px;
  position: absolute;
  border-radius: 50%;
  border: rgba(255, 255, 255, 0.1) solid thin;
  background: rgba(0, 0, 0, 0.82);
  text-align: center;
  line-height: 45px;
  font-size: 25px;
  display: none;
}
.chat .chat-option .chat-option-body .chat-contacts .chat-contact .chat-contact-selection i {
  color: #bbb;
}
.chat .chat-option .chat-option-body .chat-contacts .chat-contact .chat-contact-selection.selected i {
  color: #0cef64;
}
.chat .chat-option .chat-option-body .chat-contacts .chat-contact .chat-contact-selection.chat-contact-selection-show {
  display: inline-block;
}
.chat .chat-option .chat-option-body .chat-contacts .chat-contact .chat-contact-info {
  padding: 0 50px 0 0;
}
.chat .chat-option .chat-option-body .chat-contacts .chat-contact .chat-contact-info .chat-contact-status .chat-status-online {
  color: #0cef64;
}
.chat .chat-option .chat-option-body .chat-contacts .chat-contact .chat-contact-info .chat-contact-status .chat-status-offline {
  color: #ee1010;
}
.chat .chat-option .chat-option-body .chat-contacts .chat-contact .chat-contact-info .chat-contact-status i {
  font-size: 6px;
}
.chat .chat-option .chat-option-body .chat-contacts .chat-contact .chat-contact-info .chat-contact-new-messages-count {
  background: #0fa1f0;
  padding: 0 5px;
  border-radius: 50%;
  width: 25px;
  height: 23px;
  text-align: center;
  position: absolute;
  bottom: 5px;
  left: 5px;
  font-size: 10px;
  line-height: 25px;
}
.chat .chat-option .chat-option-body .chat-contacts .chat-contact:hover,
.chat .chat-option .chat-option-body .chat-contacts .chat-contact.active {
  background: rgba(0, 0, 0, 0.26);
}
.chat .chat-option .chat-option-body .chat-new-chats .chat-new-chat {
  position: relative;
  padding: 5px 8px 10px 5px;
  border-bottom: solid thin rgba(255, 255, 255, 0.1);
}
.chat .chat-option .chat-option-body .chat-new-chats .chat-new-chat i {
  position: absolute;
  font-size: 30px;
}
.chat .chat-option .chat-option-body .chat-new-chats .chat-new-chat h4 {
  display: block;
  padding: 5px 47px 0 0;
}
.chat .chat-option .chat-option-body .chat-new-chats:hover,
.chat .chat-option .chat-option-body .chat-new-chats.active {
  background: rgba(0, 0, 0, 0.26);
}
.chat .chat-header {
  background: rgba(0, 0, 0, 0.26);
  padding: 5px 10px;
}
.chat .chat-header .chat-user-status {
  display: inline-block;
  margin-left: 10px;
}
.chat .chat-header .chat-user-status .chat-status-online {
  color: #0cef64;
}
.chat .chat-header .chat-user-status .chat-status-offline {
  color: #ee1010;
}
.chat .chat-header .chat-user-status i {
  font-size: 6px;
}
.chat .chat-header .chat-user-status-text {
  display: inline-block;
  margin-left: 10px;
}
.chat .chat-header .chat-toggle {
  float: left;
}
.chat .chat-header .chat-toggle:hover {
  color: rgba(0, 0, 0, 0.7);
}
.chat .chat-header .chat-option-toggle {
  position: absolute;
  right: 100%;
  width: 10px;
  padding: 0;
  border: solid thin #000;
  height: 79px;
  border-radius: 5px 0 0 5px;
  top: 26px;
  display: inline-block;
}
.chat .chat-header .chat-option-toggle i {
  margin-right: -1px;
}
.chat .chat-body {
  padding-bottom: 3px;
  min-height: 200px;
  max-height: 256px;
  overflow-y: auto;
  /*background-image: url('../Images/Pattern/2.jpg');*/
}
.chat .chat-body .chat-message {
  padding: 0 5px;
  margin: 3px 0;
}
.chat .chat-body .chat-message .chat-message-text {
  border: solid thin rgba(0, 0, 0, 0.26);
  padding: 3px 9px;
  max-width: 200px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  display: inline-block;
}
.chat .chat-body .chat-message .chat-message-option {
  display: inline-block;
  vertical-align: bottom;
}
.chat .chat-body .chat-message .chat-message-option span {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  /*background: rgba(0, 0, 0, 0.15);*/
  cursor: pointer;
  text-align: center;
  font-size: 12px;
}
.chat .chat-body .chat-message .chat-message-option span:hover {
  border: solid thin rgba(0, 0, 0, 0.5);
}
.chat .chat-body .chat-message:after {
  display: block;
  content: '';
  clear: both;
}
.chat .chat-body .chat-message:before {
  display: block;
  content: '';
  clear: both;
}
.chat .chat-body .chat-message.chat-message-me {
  text-align: right;
  direction: rtl;
}
.chat .chat-body .chat-message.chat-message-me .chat-message-text {
  /*float: right;*/
  border-radius: 5px 5px 0 5px;
  background: rgba(255, 255, 255, 0.1);
  direction: rtl;
  text-align: right;
}
.chat .chat-body .chat-message.chat-message-me .chat-message-option span:hover {
  background: rgba(255, 255, 255, 0.1);
}
.chat .chat-body .chat-message.chat-message-other {
  text-align: left;
  direction: ltr;
}
.chat .chat-body .chat-message.chat-message-other .chat-message-text {
  /*float: left;*/
  border-radius: 5px 5px 5px 0 !important;
  background: rgba(0, 0, 0, 0.1);
  direction: rtl;
  text-align: left;
}
.chat .chat-body .chat-message.chat-message-other .chat-message-option span:hover {
  background: rgba(0, 0, 0, 0.1);
}
.chat .chat-body .chat-notify {
  text-align: center;
  display: block;
}
.chat .chat-body .chat-notify .chat-notify-message {
  display: inline;
  background: rgba(0, 0, 0, 0.26);
  border-radius: 10px;
}
.chat .chat-footer {
  background: rgba(0, 0, 0, 0.26);
}
.chat .chat-footer:hover,
.chat .chat-footer:focus {
  background: rgba(0, 0, 0, 0.36);
}
.chat .chat-footer .chat-send {
  padding: 5px 10px;
  vertical-align: top;
  display: inline-block;
}
.chat .chat-footer .chat-send:hover {
  color: rgba(0, 0, 0, 0.7);
}
.chat .chat-footer .chat-input {
  display: inline-block;
  border: none;
  background: transparent;
  width: 259px;
  max-width: 259px;
  color: #fff;
  height: 17px;
}
.chat.chat-close .chat-option {
  display: none;
}
.chat.chat-close .chat-body {
  display: none;
}
.chat.chat-close .chat-footer {
  display: none;
}
.chat.chat-default {
  background: #e0e0e0;
  color: #333;
}
.chat.chat-default .chat-option {
  background: #e0e0e0;
  color: #333;
}
.chat.chat-default .chat-header .chat-option-toggle {
  background: #e0e0e0;
  color: #333;
}
.chat.chat-default .chat-header .chat-option-toggle:hover,
.chat.chat-default .chat-header .chat-option-toggle:focus {
  background: #bababa;
}
.chat.chat-dark {
  background: #333;
  color: #fff;
}
.chat.chat-dark .chat-option {
  background: #333;
  color: #fff;
}
.chat.chat-dark .chat-header .chat-option-toggle {
  background: #333;
  color: #fff;
}
.chat.chat-dark .chat-header .chat-option-toggle:hover,
.chat.chat-dark .chat-header .chat-option-toggle:focus {
  background: #0d0d0d;
}
.chat.chat-red {
  background: #f11010;
  color: #fff;
}
.chat.chat-red .chat-option {
  background: #f11010;
  color: #fff;
}
.chat.chat-red .chat-header .chat-option-toggle {
  background: #f11010;
  color: #fff;
}
.chat.chat-red .chat-header .chat-option-toggle:hover,
.chat.chat-red .chat-header .chat-option-toggle:focus {
  background: #ab0a0a;
}
.chat.chat-orange {
  background: #f3600a;
  color: #fff;
}
.chat.chat-orange .chat-option {
  background: #f3600a;
  color: #fff;
}
.chat.chat-orange .chat-header .chat-option-toggle {
  background: #f3600a;
  color: #fff;
}
.chat.chat-orange .chat-header .chat-option-toggle:hover,
.chat.chat-orange .chat-header .chat-option-toggle:focus {
  background: #aa4307;
}
.chat.chat-gold {
  background: #ffd300;
  color: #fff;
}
.chat.chat-gold .chat-option {
  background: #ffd300;
  color: #fff;
}
.chat.chat-gold .chat-header .chat-option-toggle {
  background: #ffd300;
  color: #fff;
}
.chat.chat-gold .chat-header .chat-option-toggle:hover,
.chat.chat-gold .chat-header .chat-option-toggle:focus {
  background: #b39400;
}
.chat.chat-green {
  background: #06eb27;
  color: #fff;
}
.chat.chat-green .chat-option {
  background: #06eb27;
  color: #fff;
}
.chat.chat-green .chat-header .chat-option-toggle {
  background: #06eb27;
  color: #fff;
}
.chat.chat-green .chat-header .chat-option-toggle:hover,
.chat.chat-green .chat-header .chat-option-toggle:focus {
  background: #04a01b;
}
.chat.chat-sea {
  background: #00e970;
  color: #fff;
}
.chat.chat-sea .chat-option {
  background: #00e970;
  color: #fff;
}
.chat.chat-sea .chat-header .chat-option-toggle {
  background: #00e970;
  color: #fff;
}
.chat.chat-sea .chat-header .chat-option-toggle:hover,
.chat.chat-sea .chat-header .chat-option-toggle:focus {
  background: #009d4b;
}
.chat.chat-cyan {
  background: #00ffd8;
  color: #fff;
}
.chat.chat-cyan .chat-option {
  background: #00ffd8;
  color: #fff;
}
.chat.chat-cyan .chat-header .chat-option-toggle {
  background: #00ffd8;
  color: #fff;
}
.chat.chat-cyan .chat-header .chat-option-toggle:hover,
.chat.chat-cyan .chat-header .chat-option-toggle:focus {
  background: #00b397;
}
.chat.chat-lightblue {
  background: #00b9ff;
  color: #fff;
}
.chat.chat-lightblue .chat-option {
  background: #00b9ff;
  color: #fff;
}
.chat.chat-lightblue .chat-header .chat-option-toggle {
  background: #00b9ff;
  color: #fff;
}
.chat.chat-lightblue .chat-header .chat-option-toggle:hover,
.chat.chat-lightblue .chat-header .chat-option-toggle:focus {
  background: #0082b3;
}
.chat.chat-blue {
  background: #0f51f1;
  color: #fff;
}
.chat.chat-blue .chat-option {
  background: #0f51f1;
  color: #fff;
}
.chat.chat-blue .chat-header .chat-option-toggle {
  background: #0f51f1;
  color: #fff;
}
.chat.chat-blue .chat-header .chat-option-toggle:hover,
.chat.chat-blue .chat-header .chat-option-toggle:focus {
  background: #0a39aa;
}
.chat.chat-purple {
  background: #8f00ff;
  color: #fff;
}
.chat.chat-purple .chat-option {
  background: #8f00ff;
  color: #fff;
}
.chat.chat-purple .chat-header .chat-option-toggle {
  background: #8f00ff;
  color: #fff;
}
.chat.chat-purple .chat-header .chat-option-toggle:hover,
.chat.chat-purple .chat-header .chat-option-toggle:focus {
  background: #6400b3;
}
.chat.chat-pink {
  background: #ff0046;
  color: #fff;
}
.chat.chat-pink .chat-option {
  background: #ff0046;
  color: #fff;
}
.chat.chat-pink .chat-header .chat-option-toggle {
  background: #ff0046;
  color: #fff;
}
.chat.chat-pink .chat-header .chat-option-toggle:hover,
.chat.chat-pink .chat-header .chat-option-toggle:focus {
  background: #b30031;
}
.chat.chat-yllowgreen {
  background: #a7ee0c;
  color: #fff;
}
.chat.chat-yllowgreen .chat-option {
  background: #a7ee0c;
  color: #fff;
}
.chat.chat-yllowgreen .chat-header .chat-option-toggle {
  background: #a7ee0c;
  color: #fff;
}
.chat.chat-yllowgreen .chat-header .chat-option-toggle:hover,
.chat.chat-yllowgreen .chat-header .chat-option-toggle:focus {
  background: #74a508;
}
