﻿/*#region COLORS*/
/*#endregion*/
/*#region METHODS*/
/*#endregion*/
.nav-chat-btn {
  background: #eba558;
  border: none;
  color: whitesmoke;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  float: right;
  bottom: 30px;
  z-index: 3;
  font-family: 'Montserrat', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: bold;
}
.nav-chat-btn:hover,
.nav-chat-btn:focus,
.nav-chat-btn.focus {
  color: whitesmoke;
  background-color: #e89941;
  border-color: #e89941;
  text-decoration: none;
}
#live-side-chat {
  font-size: 12px;
  position: inherit;
  width: 300px;
  bottom: 0px;
  z-index: -1;
  right: 2em;
  visibility: hidden;
}
#live-side-chat .header {
  background: #eba558;
  color: #fff;
  padding: 6px 14px;
  min-height: 42px;
}
#live-side-chat .header span {
  font-size: 20px;
}
#live-side-chat h4 {
  font-size: 15px;
}
#live-side-chat h5 {
  font-size: 13px;
}
#live-side-chat form {
  padding: 10px 24px 24px 24px;
}
.chat-body {
  position: absolute;
  width: 300px;
  bottom: 0px;
  right: 0px;
  transition-duration: 0.3s;
  background: #e9e9e9;
  color: #9a9a9a;
  margin: 0px;
  z-index: 1000;
}
.chat-body.chatbox-open {
  right: 0px;
  bottom: 0px;
}
.chat-body.chatbox-closed {
  right: 0px;
}
.chat-box {
  background: #fff;
  display: none;
  border: black solid thin;
}
.chat-header-name {
  line-height: 1.5em;
  margin: 0;
}
.chat-history {
  height: 252px;
  padding: 8px 24px;
  overflow-y: scroll;
  border-bottom: 1px solid #9a9a9a;
}
.chat-history::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}
.chat-history::-webkit-scrollbar {
  width: 5px;
  background-color: #F5F5F5;
}
.chat-history::-webkit-scrollbar-thumb {
  background-color: #7D7D7D;
}
.chat-history .clearfix:before,
.chat-history .clearfix:after {
  content: " ";
  display: table;
}
.chat-history .clearfix:after {
  clear: both;
}
.new-message-icon {
  background: #e62727;
  border: 1px solid #fff;
  border-radius: 50%;
  display: none;
  font-size: 12px;
  font-weight: bold;
  height: 28px;
  left: 0;
  line-height: 28px;
  margin: -10px 0 0 -10px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 28px;
}
.chat-message {
  margin: 16px 0;
}
.chat-message img {
  border-radius: 50%;
  float: left;
}
.chat-message-content {
  margin-left: 26px;
}
.chat-time {
  float: right;
  font-size: 10px;
}
.chat-name {
  line-height: 1.5em;
  margin: 0;
}
.chat-discussion {
  margin: 0;
  color: #3D3F3F;
}
.chat-divider {
  background: #e9e9e9;
  border: 0;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 1px;
  margin: 0;
  min-height: 1px;
}
.chat-fieldset:hover {
  cursor: text;
}
.chat-text-area {
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 8px;
  outline: none;
  width: 250px;
  color: inherit;
  font-family: inherit;
  font-size: 100%;
  line-height: normal;
  margin: 0;
}
.chat-icon {
  border: 0;
  display: block;
  height: auto;
  max-width: 100%;
}
.sender-icon {
  font-size: 150%;
  float: left;
  color: #00A772;
}
.bot-icon {
  font-size: 150%;
  float: left;
  color: #3D2F13;
}
.receiver-icon {
  font-size: 150%;
  float: left;
  color: blue;
}