body {
  position: relative;
}

.live-chat .clear-filters {
  text-align: right;
  margin-top: 40px;
}
.live-chat .clear-filters .clear-filters-link {
  font-size: 1rem;
  color: red;
  border: 1px solid red;
  padding: 3px;
  border-radius: 3px;
  display: inline-block;
}
.live-chat .clear-filters .clear-filters-link:hover {
  text-decoration: none;
  border-color: #FF7400;
  color: #FF7400;
}
.live-chat .lc-wrapper > table {
  margin-top: 60px;
}
.live-chat .lc-wrapper > table th, .live-chat .lc-wrapper > table td {
  text-align: center;
}
.live-chat .lc-wrapper > table td {
  border-bottom: 1px solid #eee;
  font-size: 1rem;
}

/*
* Modal Window
*/
.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999999;
}
.modal-wrapper .modal-window {
  background: #fbfbfb;
  border-radius: 10px;
  padding: 45px 20px 20px;
  min-width: 690px;
  max-width: 767px;
  min-height: 780px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease-in-out;
}
.modal-wrapper .modal-window > img {
  position: absolute;
  z-index: 0;
  top: 146px;
  right: -20px;
  transform: scale(1.255);
  filter: blur(0.6px);
}
.modal-wrapper .modal-window .modal-inner {
  position: relative;
  z-index: 1;
}
.modal-wrapper .modal-window .control-bar {
  background: #262626;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: right;
  padding-right: 9px;
  z-index: 2;
}
.modal-wrapper .modal-window .control-bar i {
  color: #fff;
  font-size: 1rem;
}
.modal-wrapper .modal-window .control-bar i:hover {
  cursor: pointer;
}
.modal-wrapper .modal-window .chat-details {
  background: #fff1e5;
  padding: 5px 0;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
.modal-wrapper .modal-window .chat-details .panel p {
  font-size: 0.825rem !important;
}
.modal-wrapper .modal-window .chat-details .panel p > span {
  border-bottom: 1px solid #FF7400;
}
.modal-wrapper .modal-window .chat-details .left-panel {
  padding-left: 15px;
}
.modal-wrapper .modal-window .chat-details .right-panel {
  width: 50%;
  padding-right: 15px;
  text-align: end;
  border-left: 2px solid #fbfbfb;
  display: flex;
  align-items: end;
  justify-content: end;
}
.modal-wrapper .modal-window .chat-body {
  background: #eee;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 5px;
  max-height: 470px;
  overflow-y: scroll;
}
.modal-wrapper .modal-window .chat-body .message {
  font-size: 1rem !important;
}
.modal-wrapper .modal-window .chat-body .message:not(:last-of-type) {
  margin-bottom: 20px !important;
}
.modal-wrapper .modal-window .chat-body .message span {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 3px;
  max-width: 65%;
}
.modal-wrapper .modal-window .chat-body .message.customer {
  text-align: right;
}
.modal-wrapper .modal-window .chat-body .message .agent {
  background: #FF7400;
  color: #fff;
}
.modal-wrapper .modal-window .chat-body .message .customer {
  text-align: right;
  background: #fbfbfb;
}
.modal-wrapper .modal-window.expand {
  min-width: 75%;
  max-height: 767px;
  max-width: 75%;
}
.modal-wrapper .modal-window.expand .chat-body {
  max-height: 350px;
}

/*
* #Modal Window
*/
.live-chat .filters {
  display: flex;
  justify-content: end;
  align-items: end;
}
.live-chat .filters input, .live-chat .filters select {
  min-height: 39px;
  font-size: 0.9rem;
  border: 1px solid #eee;
}
.live-chat .filters form {
  display: flex;
  align-items: end;
}
.live-chat .filters form > div {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
}
.live-chat .filters form > div label {
  font-size: 0.85rem;
}
.live-chat .chats_table td .get-single-chat:hover {
  cursor: pointer;
  text-decoration: underline;
}
.live-chat .chats_table tr.message-row:hover {
  background: #eee;
}

.user-details-wrapper {
  max-width: 350px;
  margin: 0 auto;
  border: 1px solid #FF7400;
  border-radius: 5px;
  padding: 20px;
  margin-top: 120px;
}
.user-details-wrapper input {
  width: 100%;
}
.user-details-wrapper .field-container label {
  margin-bottom: 3px;
}
.user-details-wrapper .field-container input {
  margin-bottom: 30px;
}

/*# sourceMappingURL=live-chat.css.map */
