.conversation--container {
  box-shadow: 0px 0px 0 rgba(0, 0, 0, 0);
  position: fixed !important;
  top: 56px !important;
  width: 0%;
  height: calc(100vh - 56px) !important;
  overflow-x: hidden;
  right: 0;
  color: #4d4d4d;
  transition: 0.25s;
  font-family: "Montserrat", Lucida Grande, Lucida Sans Unicode, Helvetica, sans-serif !important;
  z-index: 2;
}
.conversation--container #conversation--sidebar {
  width: 100%;
  right: -100%;
  transition: 0.05s;
  background: #fff;
  z-index: 2;
  text-align: left;
  flex: 1;
  overflow: hidden;
}
.conversation--container #conversation--sidebar .conversation--search {
  padding: 10px;
}
.conversation--container #conversation--sidebar .conversation--search .search--container {
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  position: relative;
  margin: 0;
  text-align: left;
}
.conversation--container #conversation--sidebar .conversation--search .search--container .search--input {
  border-radius: 20px !important;
  padding: 5px 10px;
  border: 0;
  max-width: 85%;
}
.conversation--container #conversation--sidebar .conversation--search .search--container .search--icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  opacity: 0.85;
  transition: 0.25s;
}
.conversation--container #conversation--sidebar .conversation--search .search--container .search--icon:hover {
  cursor: pointer;
  opacity: 1;
}
.conversation--container #conversation--sidebar .conversation--header {
  position: relative;
  display: flex;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  justify-content: space-between;
  padding: 10px;
}
.conversation--container #conversation--sidebar .conversation--header .cheader--arrow {
  position: absolute;
  left: -15px;
  height: 30px;
  width: 30px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.conversation--container #conversation--sidebar .conversation--header .cheader--one {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.conversation--container #conversation--sidebar .conversation--header .cheader--one p {
  margin: 0;
}
.conversation--container #conversation--sidebar .conversation--header .cheader--one img,
.conversation--container #conversation--sidebar .conversation--header .cheader--one p {
  margin: 0 5px;
  font-size: 18px;
}
.conversation--container #conversation--sidebar .conversation--header .cheader--two {
  display: flex;
  justify-content: center;
  align-items: center;
}
.conversation--container #conversation--sidebar .conversation--header .cheader--two > a {
  margin: 0 5px;
}
.conversation--container #conversation--sidebar .conversation--header .cheader--two > a i {
  font-size: 16px;
  color: #4d4d4d;
}
.conversation--container #conversation--sidebar .conversation--body {
  padding: 10px;
  background: #fff;
  overflow: hidden;
  flex: 1;
}
.conversation--container #conversation--sidebar .conversation--body .cbody--heading {
  font-size: 16px;
  text-align: left;
  padding: 0 10px;
}
.conversation--container #conversation--sidebar .conversation--body .conversation--messages--container .conversation--messages {
  display: flex;
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  color: #4d4d4d;
  font-family: "Montserrat", Lucida Grande, Lucida Sans Unicode, Helvetica, sans-serif !important;
}
.conversation--container #conversation--sidebar .conversation--body .conversation--messages--container .conversation--messages .message--img {
  width: 55px;
  height: 55px;
  overflow: hidden;
  border-radius: 50%;
}
.conversation--container #conversation--sidebar .conversation--body .conversation--messages--container .conversation--messages .message--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.conversation--container #conversation--sidebar .conversation--body .conversation--messages--container .conversation--messages .message--body {
  display: flex;
  flex-direction: column;
  flex: 2;
  max-width: calc(100% - 60px);
  margin-left: 5px;
}
.conversation--container #conversation--sidebar .conversation--body .conversation--messages--container .conversation--messages .message--body .message--top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.conversation--container #conversation--sidebar .conversation--body .conversation--messages--container .conversation--messages .message--body .message--top .mb--name {
  flex: 2;
  font-weight: 600;
  max-width: 70%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
}
.conversation--container #conversation--sidebar .conversation--body .conversation--messages--container .conversation--messages .message--body .message--top .mb--name .mb--name--text {
  max-width: 80%;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 5px;
}
.conversation--container .volumeEllipsis.pointer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.conversation--container .volumeEllipsis.pointer span {
  position: relative;
  width: 30px;
  height: 30px;
}
.conversation--container .volumeEllipsis.pointer span .fa-star {
  position: absolute !important;
  top: -4px !important;
  right: -8px !important;
}

.conversation--body {
  opacity: 0;
}

#conversation--sidebar {
  opacity: 0;
}
#conversation--sidebar .new--msg .wa--blue {
  cursor: pointer;
  transition: 0.25s;
}
#conversation--sidebar .new--msg .wa--blue:hover {
  color: #0062cc !important;
}

#top, .msgFooter--sticky {
  opacity: 0;
}

.conversation--container.sidebar--active {
  width: 33%;
  transition: 0.25s;
  border: 1px solid rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}
.conversation--container.sidebar--active #conversation--sidebar {
  right: 0;
  flex: 1;
  opacity: 1;
}
.conversation--container.sidebar--active .conversation--body {
  opacity: 1;
}
.conversation--container.sidebar--active #top, .conversation--container.sidebar--active .msgFooter--sticky {
  transition: 0.05s;
  opacity: 1;
}

@media (max-width: 676px) {
  div.conversation--container.sidebar--active {
    width: 100%;
    min-width: initial;
  }
}
.message--body {
  background: #fff;
}

.clientMsg-bot {
  display: flex;
  justify-content: flex-end;
  max-width: 100%;
  margin-left: 20px;
  margin-right: 20px;
}
.clientMsg-bot .bot-chatbox {
  background-color: #29354F;
  color: white;
  border-radius: 5px;
  margin-right: 15px;
}
.clientMsg-bot .bot-icon {
  font-size: 16px;
  color: white;
  background-color: #29354F;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  box-shadow: 0px 0px 2px black;
  display: flex;
  justify-content: center;
  align-items: center;
}

.clientMsg-contact {
  display: flex;
  justify-content: flex-start;
  margin-left: 20px;
  margin-right: 20px;
  overflow: hidden;
}

.contact-chatBoxTime {
  font-size: 10px;
  color: #707070;
  text-align: left;
  margin-left: 75px;
  margin-top: 2px;
}

.cs--contact-icon, .agent-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.clientMsg-date {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.clientMsg-date span {
  text-align: center;
  margin: 20px auto;
  position: relative;
  padding: 0 10px;
}
.clientMsg-date span::after {
  content: "";
  display: block;
  width: 85px;
  height: 1px;
  background: rgba(77, 77, 77, 0.5607843137);
  left: 100%;
  top: 50%;
  position: absolute;
}
.clientMsg-date span::before {
  content: "";
  display: block;
  width: 85px;
  height: 1px;
  background: rgba(77, 77, 77, 0.5607843137);
  right: 100%;
  top: 50%;
  position: absolute;
}

.clientMsg-date span {
  background: #fff;
  padding: 0 10px;
}

.clientMsg-botMuteText span {
  background: #fff;
  padding: 0 10px;
  display: inline;
}

.clientMsg-botMuteText {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
}

.contact-chatbox {
  background-color: #D5D5D5;
  color: #707070;
  border-radius: 5px;
  margin-left: 15px;
  max-width: 100%;
  min-width: 1%;
}

.botAgent-chatBoxTime {
  font-size: 10px;
  color: #707070;
  text-align: right;
  margin-right: 75px;
  margin-top: 2px;
}

.agent-chatbox {
  background-color: #2E8FCE;
  color: #fff;
  border-radius: 5px;
  margin-right: 15px;
}

.clientMsg-textBox {
  margin: 10px;
  word-break: break-word;
}
.clientMsg-textBox a {
  color: #001cff;
}
.clientMsg-textBox .clientMsg-img {
  display: block;
  margin-top: 10px;
  max-height: 200px;
  max-width: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.no-event {
  pointer-events: none;
}

.clientMsg-agent {
  display: flex;
  justify-content: flex-end;
  max-width: 100%;
  margin-left: 20px;
  margin-right: 20px;
  overflow: hidden;
}

.botmutetext--contain {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.botmutetext--contain .clientMsg-botMuteText span {
  margin: 20px auto;
  position: relative;
  padding: 0 10px;
}
.botmutetext--contain .clientMsg-botMuteText span::after {
  content: "";
  display: block;
  width: 25px;
  height: 1px;
  background: rgba(77, 77, 77, 0.5607843137);
  left: 100%;
  top: 50%;
  position: absolute;
}
.botmutetext--contain .clientMsg-botMuteText span::before {
  content: "";
  display: block;
  width: 25px;
  height: 1px;
  background: rgba(77, 77, 77, 0.5607843137);
  right: 100%;
  top: 50%;
  position: absolute;
}

.botUnMuted {
  font-size: 13px;
  color: #57B347;
}

.botMuted {
  font-size: 13px;
  color: #DC3645;
}

.botMute {
  font-size: 15px;
  color: white;
  background-color: #DC3645;
  display: inline-block;
  border-radius: 50%;
  box-shadow: 0px 0px 2px #888;
  padding: 0.4em 0.4em;
  height: 2em;
  width: 2em;
}

.botUnmute {
  font-size: 15px;
  color: white;
  background-color: #57B347;
  display: inline-block;
  border-radius: 50%;
  box-shadow: 0px 0px 2px #888;
  padding: 0.4em 0.4em;
  height: 2em;
  width: 2em;
}

.clientMsg-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: white;
  border-top: 1px solid #707070;
}
.clientMsg-footer .msgTextBox {
  height: 80px;
  width: 100%;
  border: none;
  color: #707070;
  word-wrap: break-word;
  display: inline-block;
  resize: none;
}
.clientMsg-footer .msgTextBox-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 0px;
  margin-top: 0px;
}
.clientMsg-footer .msg-gutter {
  border-top: solid 1px #707070;
  font-size: 10px;
  line-height: 12px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 0px;
  padding-bottom: 10px;
}

.clientMsg-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #fff;
  z-index: 99999;
  box-shadow: 0 0 8px -2px rgba(0, 0, 0, 0.35);
}
.clientMsg-header .clientInfo {
  display: flex;
}
.clientMsg-header .clientAvatarMsg {
  border-radius: 50%;
  -ms-interpolation-mode: nearest-neighbor;
  image-rendering: -moz-crisp-edges;
  image-rendering: pixelated;
  width: 40px;
  min-width: 40px;
  height: 40px;
}
.clientMsg-header .clientNameNumber {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
}
.clientMsg-header .clientNameNumber .clientTextName {
  color: #4D4D4D;
  font-size: 14px;
  font-weight: 600;
}
.clientMsg-header .clientNameNumber .clientTextName:hover {
  color: #007bff;
}
.clientMsg-header .clientNameNumber .clientNumber {
  color: #707070;
  font-size: 12px;
}

.inputSearchIcon {
  color: #D5D5D5;
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
}

button.inputSearchClose {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  height: 30px;
  width: 30px;
  min-width: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
  margin: 0px;
}

#messageListSearchBar, #messageSearchBar {
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  height: 40px;
  line-height: 40px;
  display: flex;
  align-items: center;
  width: 100%;
  margin-right: 30px;
}

.msgFooter--sticky {
  width: 100%;
  background: #fff;
  box-shadow: 0 0 8px -2px rgba(0, 0, 0, 0.35);
  padding: 20px;
  display: flex;
  align-items: center;
  z-index: 2;
}
.msgFooter--sticky > form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#conversation--sidebar {
  display: flex;
  flex-direction: column;
}

.clientMsg-header {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.conversation--container.sidebar--active {
  display: flex;
  flex-direction: column;
  min-width: 350px;
}

.conversation--container #conversation--sidebar {
  height: 100%;
}

#conversation--sidebar .message--body {
  overflow: hidden;
  overflow-y: auto;
}

.conversation--container {
  overflow: hidden;
}

.msgFooter--sticky .msgTextBoxContainer {
  width: 100%;
  outline: 1px solid #d5d5d5;
  border-radius: 10px;
}
.msgFooter--sticky .msgTextBoxContainer .msgTextBox-imgWA {
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #d5d5d5;
}
.msgFooter--sticky .msgTextBoxContainer #msgTextBox {
  width: 100%;
  margin-bottom: 10px;
  border: 0;
  padding: 10px;
  border-radius: 10px !important;
  resize: none;
  box-sizing: border-box;
  min-height: 40px;
}
.msgFooter--sticky .msgTextBox-section {
  display: flex;
  align-items: flex-end;
  position: relative;
}
.msgFooter--sticky .msgTextBox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.msgFooter--sticky .msgTextBox-footer #dzopen {
  font-size: 28px;
}
.msgFooter--sticky .msg-gutter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 10px;
}
.msgFooter--sticky .msg-gutter > div {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.msgFooter--sticky .msg-gutter > div span {
  font-size: 11px;
  font-weight: 600;
}
.msgFooter--sticky .text--action {
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0px;
  font-size: 16px;
}
.msgFooter--sticky .test--btn {
  position: absolute;
  bottom: -33px;
  left: 50px;
}
.msgFooter--sticky .test--btn:disabled {
  opacity: 0;
}

.conversation--container #conversation--sidebar .conversation--search .search--container .search--input {
  width: 100%;
}

.box_shadow {
  box-shadow: -1000px 0 0 1000px rgba(0, 0, 0, 0.15);
}

button.messageSearchButton {
  font-size: 13px;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  min-width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
  margin: 0px;
}

.messageTestCancel {
  border-radius: 50%;
  height: 42px;
  width: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  transition: 0.25s;
}

.closeImageWA {
  position: absolute;
  color: #888;
  font-size: 16px;
  top: -10px;
  left: 57px;
  transition: 0.25s;
}
.closeImageWA:hover {
  color: #dc3545;
}

.sendAgentMsg {
  display: flex;
  flex-direction: column;
}

.imgWAHideShow {
  align-self: start;
  width: 100%;
  align-items: start;
  display: flex;
  flex-direction: row;
}
.imgWAHideShow img {
  border-radius: 5px;
  border: 1px solid #d5d5d5;
}

.botInact {
  font-size: 15px;
  color: white;
  background-color: #D5D5D5;
  border-radius: 50%;
  box-shadow: 0px 0px 2px #888;
  height: 2em;
  width: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.message--conv--container {
  display: flex;
  flex-direction: column;
  height: 95%;
  max-height: 95%;
  overflow-y: auto;
  scrollbar-width: thin;
  padding-right: 10px;
}
div.canvasjs-chart-tooltip {
  z-index: 1 !important;
}

#TextMediaModals .dz--photo--table .dz--upload .dz--upload--section #conversationDropzone:hover + .dz--buttons .wise--btn.btn--blue {
  transition: 0.25s;
  background-color: #0062cc !important;
}/*# sourceMappingURL=conversationSidebar.css.map */