#navbar-chat-icon .notify-badge {
  display: none;
  position: absolute;
  bottom: 9px;
  right: 6px;
  background-color: #ff0000;
  color: #ffffff;
  border: 1px solid #e78267;
  font-size: 0.6em;
  font-weight: bold;
  line-height: 1em;
  padding: 2px;
  border-radius: 40%;
}

#start-chat-button {
  border-radius: 5px;
  border: none;
  display: none;
  width: 250px;
  height: 40px;
  position: fixed;
  bottom: 0px;
  right: 0px;
  color: #fff;
  outline: none;
  font-size: large;
  z-index: 2;
}

@media (max-width: 467px) {
  #start-chat-button {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 467px) {
  #start-chat-button .start-chat-button-text {
    display: none;
  }
}

#start-chat-button .notify-badge {
  display: none;
  position: absolute;
  right: 5px;
  top: -15px;
  width: 20px;
  height: 20px;
  font-size: 10px;
  line-height: 20px;
  background: red;
  text-align: center;
  border-radius: 50%;
  color: white;
  animation: pulse 1.5s 1;
  box-shadow: 0 0 0 3px #e78267;
}

#chat-window {
  display: none;
  background: #f7f7f7;
  border-radius: 5px;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  float: right;
  width: 360px;
  height: 600px;
  position: fixed;
  right: 0px;
  bottom: 0px;
  overflow: hidden;
  z-index: 3;
}

#chat-window .chat-window-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  color: #fff;
}

#chat-window .chat-window-header a {
  color: #fff;
  margin-right: 5px;
  line-height: 1em;
  font-size: large;
  cursor: pointer;
}

#chat-window .chat-window-header span {
  font-size: large;
  line-height: 1em;
  font-size: large;
}

#chat-panel {
  display: flex;
  justify-content: center;
  align-items: center;
}

#chat-panel .chat-section {
  width: 100%;
  height: 88vh;
  overflow: hidden;
}

#chat-panel .chat-section #sidebar {
  width: 100%;
  height: 88vh;
}

#chat-panel .chat-section #sidebar #my-conversations,
#chat-panel .chat-section #sidebar #invited-conversations {
  display: block;
  height: 100%;
}

#chat-panel .chat-section #conversation {
  top: 10px;
}

#chat-panel .chat-section #conversation #conversation-info {
  justify-content: space-around;
}

#chat-panel .chat-section #conversation #conversation-info .profile-company-logo {
  object-fit: contain;
  border-radius: 0;
}

#chat-panel .chat-section #conversation #conversation-info #slide-sidebar-left {
  opacity: 1;
}

#fullscreen-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0.5;
  z-index: 3;
}

.chat-section {
  height: 700px;
  width: 100%;
  box-shadow: none;
  padding: 0;
  border-bottom: none;
  -webkit-border-radius: 5px;
  position: relative;
  display: inline-block;
}

@media (max-width: 467px) {
  .chat-section {
    width: 360px;
    height: 570px;
  }
}

.chat-section #chat-popups {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.chat-section #chat-popups .popup {
  position: relative;
  border-radius: 10px;
  z-index: 4;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  text-align: center;
  display: none;
}

.chat-section #chat-popups .popup h3 {
  font-size: 16px;
  margin: 0 0 10px 0;
  font-weight: bolder;
  width: 100%;
  height: 30px;
  color: white;
  padding: 6px 10px;
  text-shadow: none;
}

.chat-section #chat-popups .popup h3 .remove-button {
  float: right;
  cursor: pointer;
}

.chat-section #chat-popups .popup .input-group {
  border-radius: 12px;
  background: #fff;
  margin: 5px;
  display: flex;
  color: #333;
  align-items: center;
  width: auto;
}

.chat-section #chat-popups .popup .input-group span {
  margin-left: 10px;
  font-weight: bold;
}

.chat-section #chat-popups .popup .input-group input {
  padding: 5px;
  border-radius: 12px;
  border: 0;
  outline: none;
  flex: 1;
}

.chat-section #chat-popups #create-group-conversation {
  width: 360px;
  height: 650px;
}

.chat-section #chat-popups #create-group-conversation #users-group-text {
  margin-bottom: 1px;
  display: flex;
  flex-flow: row wrap;
  color: #333;
  align-items: center;
  margin-left: 10px;
  max-height: 50px;
  overflow-y: auto;
}

.chat-section #chat-popups #create-group-conversation #users-group-text span {
  background: #d1d1d1c9;
  border-radius: 50px;
  border: 1px solid #aeaeae;
  padding: 2px;
  font-size: 10px;
  margin: 2px;
}

.chat-section #chat-popups #create-group-conversation .users-list {
  overflow-y: auto;
  height: 400px;
  margin-top: 5px;
}

.chat-section #chat-popups #create-group-conversation .users-list ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.chat-section #chat-popups #create-group-conversation .users-list ul li {
  border-bottom: 1px solid #333;
  background-color: #fafaff;
  padding: 8px 8px 8px 16px;
  text-decoration: none;
  font-size: 16px;
  color: #333;
}

.chat-section #chat-popups #create-group-conversation .users-list ul li label {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}

.chat-section #chat-popups #create-group-conversation .users-list ul li label .user-profile {
  display: flex;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  align-items: center;
  position: relative;
  width: 100%;
}

.chat-section #chat-popups #create-group-conversation .users-list ul li label .user-profile>img {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  margin-right: 5px;
}

.chat-section #chat-popups #create-group-conversation .users-list ul li label .user-profile .user-details {
  display: flex;
  flex-flow: column;
  align-items: start;
}

.chat-section #chat-popups #create-group-conversation .users-list ul li label .user-profile .user-details .user-name {
  font-weight: bold;
  font-size: 14px;
  max-width: 230px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-section #chat-popups #create-group-conversation .users-list ul li label .user-profile .user-details .user-title {
  font-weight: lighter;
  font-size: 12px;
  max-width: 230px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-section #chat-popups #create-group-conversation .users-list ul li label .user-profile .user-details .user-company-name {
  color: grey;
  font-weight: bold;
  font-size: 12px;
  max-width: 230px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-section #chat-popups #create-group-conversation .users-list ul li label input[type=checkbox] {
  display: none;
  transform: scale(1.5);
  margin: 0;
}

.chat-section #chat-popups #create-group-conversation .users-list ul li label .user-profile:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid grey;
  border-radius: 5px;
  padding: 10px;
  display: inline-block;
  position: absolute;
  right: 0;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}

.chat-section #chat-popups #create-group-conversation .users-list ul li label input[type=checkbox]:checked+.user-profile:after {
  content: '';
  display: block;
  position: absolute;
  right: 7px;
  border-radius: 4px;
}

.chat-section #chat-popups #create-group-conversation .users-list ul .invite-button {
  color: #333;
  float: right;
}

.chat-section #chat-popups #create-group-conversation #create-new-conversation {
  position: absolute;
  bottom: 5px;
  right: 15px;
  left: 15px;
  width: calc(100% - 30px);
  padding: 8px;
}

.chat-section #chat-popups #invite-participant {
  width: 360px;
  height: 650px;
}

.chat-section #chat-popups #invite-participant .users-list {
  overflow-y: auto;
  height: calc(100% - 100px);
  margin: 10px 0 10px 0;
}

.chat-section #chat-popups #invite-participant .users-list .invite-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.chat-section #chat-popups #invite-participant .users-list .invite-list li {
  border-bottom: 1px solid #333;
  background-color: #fafaff;
  padding: 8px 16px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}

.chat-section #chat-popups #invite-participant .users-list .invite-list li .user-profile {
  display: flex;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  align-items: center;
}

.chat-section #chat-popups #invite-participant .users-list .invite-list li .user-profile>img {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  margin-right: 5px;
}

.chat-section #chat-popups #invite-participant .users-list .invite-list li .user-profile .user-details {
  display: flex;
  flex-flow: column;
  align-items: start;
}

.chat-section #chat-popups #invite-participant .users-list .invite-list li .user-profile .user-details .user-name {
  font-weight: bold;
  font-size: 14px;
}

.chat-section #chat-popups #invite-participant .users-list .invite-list li .user-profile .user-details .user-title {
  font-weight: lighter;
  font-size: 12px;
}

.chat-section #chat-popups #invite-participant .users-list .invite-list li .user-profile .user-details .user-company-name {
  color: grey;
  font-weight: bold;
  font-size: 12px;
}

.chat-section #chat-popups #invite-participant .users-list .invite-list .invite-button {
  color: #333;
  float: right;
}

.chat-section #chat-popups #invite-user-message,
.chat-section #chat-popups #create-group-conversation-message,
.chat-section #chat-popups #invite-participant-message,
.chat-section #chat-popups #whereby-meeting-message {
  width: 360px;
  height: 400px;
}

.chat-section #chat-popups #invite-user-message .popup-textarea,
.chat-section #chat-popups #create-group-conversation-message .popup-textarea,
.chat-section #chat-popups #invite-participant-message .popup-textarea,
.chat-section #chat-popups #whereby-meeting-message .popup-textarea {
  width: calc(100% - 20px);
  height: 290px;
  font-size: inherit;
  font-weight: 300;
  padding: 1em;
  border-radius: 5px;
  margin: 0px;
  resize: none;
}

.chat-section #chat-popups #invite-user-message .popup-buttons,
.chat-section #chat-popups #create-group-conversation-message .popup-buttons,
.chat-section #chat-popups #invite-participant-message .popup-buttons,
.chat-section #chat-popups #whereby-meeting-message .popup-buttons {
  margin-top: 15px;
}

.chat-section #chat-popups #invite-user-message .popup-buttons button,
.chat-section #chat-popups #create-group-conversation-message .popup-buttons button,
.chat-section #chat-popups #invite-participant-message .popup-buttons button,
.chat-section #chat-popups #whereby-meeting-message .popup-buttons button {
  padding: 5px;
  width: 100px;
}

.chat-section #chat-popups #invite-user-message .error,
.chat-section #chat-popups #create-group-conversation-message .error,
.chat-section #chat-popups #invite-participant-message .error,
.chat-section #chat-popups #whereby-meeting-message .error {
  font-size: 12px;
}

.chat-section #chat-popups #invite-participant-confirm {
  width: 360px;
  height: 150px;
}

.chat-section #chat-popups #invite-participant-confirm .popup-buttons {
  margin-top: 15px;
}

.chat-section #chat-popups #invite-participant-confirm .popup-buttons button {
  padding: 5px;
  width: 100px;
}

.chat-section #chat-popups #whereby-meeting {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 80%;
  z-index: 999;
  background-size: cover;
}

.chat-section #chat-popups #whereby-meeting h3 {
  margin: 0;
  background: black;
}

.chat-section #chat-popups #whereby-meeting h3 span {
  float: right;
}

.chat-section #chat-popups #whereby-meeting h3 #toggle-fullscreen {
  margin-right: 10px;
  cursor: pointer;
}

.chat-section #chat-popups #whereby-meeting whereby-embed {
  height: calc(100% - 30px);
  width: 100%;
  z-index: 3;
}

.chat-section #chat-popups #whereby-meeting .leave-whereby-meeting-button {
  height: 70px;
  width: 48px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin-left: 10px;
  cursor: pointer;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-around;
  color: #fff;
}

.chat-section #chat-popups #whereby-meeting .leave-whereby-meeting-button .leave-whereby-meeting-icon {
  transform: rotateY(180deg);
  font-size: x-large;
  align-self: center;
  border-radius: 13px;
  background: #f26b4d;
  padding: 10px;
}

.chat-section #chat-popups #whereby-meeting .leave-whereby-meeting-button .leave-whereby-meeting-text {
  font-size: 12px;
  align-self: center;
}

.chat-section #chat-popups #whereby-meeting .whereby-event-logo {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 15px;
  z-index: -1;
}

.chat-section #chat-popups #whereby-meeting .whereby-event-logo .whereby-event-rssjan21 {
  filter: invert(1);
}

.chat-section #chat-popups #message-upload-attachment {
  width: 360px;
  height: 400px;
}

.chat-section #chat-popups #message-upload-attachment .file-upload {
  width: 100%;
  height: 290px;
  padding: 0 10px;
}

.chat-section #chat-popups #message-upload-attachment .file-upload .image-upload-wrap {
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chat-section #chat-popups #message-upload-attachment .file-upload .image-upload-wrap:hover {
  border: 4px dashed #ffffff;
}

.chat-section #chat-popups #message-upload-attachment .file-upload .image-upload-wrap #file-upload-input {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  outline: none;
  opacity: 0;
  cursor: pointer;
}

.chat-section #chat-popups #message-upload-attachment .file-upload .image-upload-wrap .drag-text {
  text-align: center;
}

.chat-section #chat-popups #message-upload-attachment .file-upload .image-upload-wrap .drag-text h5 {
  font-weight: 100;
  text-transform: uppercase;
  padding: 134px 0;
  margin: 0;
}

.chat-section #chat-popups #message-upload-attachment .file-upload .image-dropping {
  border: 4px dashed #ffffff;
}

.chat-section #chat-popups #message-upload-attachment .file-upload .file-upload-content {
  display: none;
  text-align: center;
}

.chat-section #chat-popups #message-upload-attachment .file-upload .file-upload-content .file-upload-image {
  display: none;
  max-height: 250px;
  max-width: 100%;
  margin: auto;
}

.chat-section #chat-popups #message-upload-attachment .file-upload .file-upload-content .image-title-wrap {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  color: #222;
  align-items: center;
  text-transform: uppercase;
  margin-top: 10px;
  max-width: 300px;
}

.chat-section #chat-popups #message-upload-attachment .file-upload .file-upload-content .image-title-wrap .image-title {
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-section #chat-popups #message-upload-attachment .file-upload .file-upload-content .image-title-wrap .remove-attachment-button {
  border: none;
  padding: 0 10px;
  outline: none;
  font-size: 14px;
  background: transparent;
}

.chat-section #chat-popups #message-upload-attachment .file-upload .file-upload-content .image-title-wrap .remove-attachment-button:hover {
  transition: all .2s ease;
  cursor: pointer;
}

.chat-section #chat-popups #message-upload-attachment .popup-buttons {
  margin-top: 15px;
}

.chat-section #chat-popups #message-upload-attachment .popup-buttons button {
  padding: 5px;
  width: 100px;
}

.chat-section #chat-popups #message-upload-attachment .error {
  font-size: 12px;
}

.chat-section #chat-popups #broadcast-message {
  width: 360px;
  height: 650px;
}

.chat-section #chat-popups #broadcast-message #broadcast-message-body {
  width: calc(100% - 20px);
  height: 350px;
  font-size: inherit;
  font-weight: 300;
  padding: 1em;
  border-radius: 5px;
  margin: 0px;
  resize: none;
}

.chat-section #chat-popups #broadcast-message .file-upload {
  width: 100%;
  padding: 30px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chat-section #chat-popups #broadcast-message .file-upload .image-upload-wrap {
  height: 50%;
  position: relative;
}

.chat-section #chat-popups #broadcast-message .file-upload .image-upload-wrap:hover {
  border: 4px dashed #ffffff;
}

.chat-section #chat-popups #broadcast-message .file-upload .image-upload-wrap #broadcast-file-upload-input {
  position: absolute;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  outline: none;
  opacity: 0;
  cursor: pointer;
}

.chat-section #chat-popups #broadcast-message .file-upload .image-upload-wrap .drag-text {
  text-align: center;
}

.chat-section #chat-popups #broadcast-message .file-upload .image-upload-wrap .drag-text h5 {
  font-weight: 100;
  text-transform: uppercase;
  padding: 40px;
  font-size: 12px;
  margin: 0;
}

.chat-section #chat-popups #broadcast-message .file-upload .image-dropping {
  border: 4px dashed #ffffff;
}

.chat-section #chat-popups #broadcast-message .file-upload .file-upload-content {
  display: none;
  text-align: center;
}

.chat-section #chat-popups #broadcast-message .file-upload .file-upload-content .file-upload-image {
  display: none;
  max-height: 130px;
  max-width: 50%;
  margin: auto;
}

.chat-section #chat-popups #broadcast-message .file-upload .file-upload-content .image-title-wrap {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  color: #222;
  align-items: center;
  text-transform: uppercase;
  margin-top: 10px;
  max-width: 300px;
}

.chat-section #chat-popups #broadcast-message .file-upload .file-upload-content .image-title-wrap .image-title {
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-section #chat-popups #broadcast-message .file-upload .file-upload-content .image-title-wrap .remove-attachment-button {
  border: none;
  padding: 0 10px;
  outline: none;
  font-size: 14px;
  background: transparent;
}

.chat-section #chat-popups #broadcast-message .file-upload .file-upload-content .image-title-wrap .remove-attachment-button:hover {
  transition: all .2s ease;
  cursor: pointer;
}

.chat-section #chat-popups #broadcast-message .popup-buttons button {
  padding: 5px;
  width: 100px;
}

.chat-section #chat-popups #broadcast-message .error {
  font-size: 12px;
}

.chat-section #chat-popups #business-card-preview {
  width: 360px;
  height: 300px;
}

.chat-section #chat-popups #business-card-preview .popup-buttons button {
  padding: 5px;
  width: 100px;
}

.chat-section #chat-popups #loading-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: #f5f6f6;
  z-index: 3;
}

.chat-section #chat-popups #loading-overlay .loading-icon {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: none;
}

.chat-section .business-card-content {
  margin: 30px auto;
  align-items: center;
  justify-content: space-around;
  background: #edffff80 !important;
  color: black !important;
  border: 2px solid #beab8b !important;
  border-radius: 0px !important;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  padding: 10px !important;
  width: 300px !important;
  height: 150px !important;
}

.chat-section .business-card-content .bCard-details {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
}

.chat-section .business-card-content .bCard-fname,
.chat-section .business-card-content .bCard-lname {
  font-size: 16px;
  font-weight: 500;
}

.chat-section .business-card-content .bCard-title {
  font-size: 12px;
}

.chat-section .business-card-content .bCard-cname {
  font-size: 12px;
}

.chat-section .business-card-content .bCard-email {
  font-size: 14px;
}

.chat-section #sidebar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
}

.chat-section #sidebar #profile {
  height: 60px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: center;
  background-color: #333;
  border-bottom: 2px solid #666;
}

.chat-section #sidebar #profile #slide-sidebar-right {
  display: none;
}

.chat-section #sidebar #profile .current-user-profile {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}

.chat-section #sidebar #profile .current-user-profile>img {
  width: 40px;
  height: 40px;
  border-radius: 20px;
}

.chat-section #sidebar #profile .current-user-profile .profile-company-logo {
  object-fit: contain;
  border-radius: 0;
}

.chat-section #sidebar #profile .current-user-profile>label {
  padding-left: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: small;
  margin-bottom: 0;
}

.chat-section #sidebar #profile>#presence {
  height: 0.90em;
  width: 0.90em;
  border-radius: 50px;
}

.chat-section #sidebar #profile>#presence.connected {
  background: green;
}

.chat-section #sidebar #profile>#presence.disconnected {
  background: gray;
}

.chat-section #sidebar #profile>#presence.connecting {
  background: yellow;
}

.chat-section #sidebar #profile>#presence.denied {
  background: red;
}

.chat-section #sidebar h3 {
  margin-left: 20px;
}

.chat-section #sidebar ul {
  list-style-type: none;
  padding: 0 5px;
  margin-bottom: 0;
}

.chat-section #sidebar li {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  margin: 0px 10px 5px 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px solid grey;
}

.chat-section #sidebar li span {
  color: #555;
}

.chat-section #sidebar li span.joined {
  color: white;
}

.chat-section #sidebar li span.invited {
  color: white;
}

.chat-section #sidebar li .open-panel-button {
  cursor: pointer;
}

.chat-section #sidebar li .conversation-context-menu {
  width: 150px;
  border-radius: 5px;
  z-index: 2;
  position: absolute;
  background: #fff;
  overflow: hidden;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.34);
}

.chat-section #sidebar li .conversation-context-menu .conversation-context-item {
  padding: 5px 10px;
  cursor: pointer;
}

.chat-section #sidebar li .conversation-context-menu .conversation-context-item:hover {
  background: #e8e8e8;
}

.chat-section #sidebar li .user-profile {
  display: flex;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  align-items: center;
  justify-content: space-between;
}

.chat-section #sidebar li .user-profile .group-partners-icon {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  margin-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chat-section #sidebar li .user-profile .group-partners-icon span {
  color: #fff;
}

.chat-section #sidebar li .user-profile>img {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  margin-right: 5px;
}

.chat-section #sidebar li .user-profile .profile-company-logo {
  object-fit: contain;
  border-radius: 0;
}

.chat-section #sidebar li .user-profile span {
  color: black;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-section #sidebar li .user-profile .user-details {
  display: flex;
  flex-flow: column;
  max-width: 180px;
}

.chat-section #sidebar li .user-profile .user-details .user-name {
  font-size: 14px;
}

.chat-section #sidebar li .user-profile .user-details .user-title {
  font-weight: lighter;
  font-size: 12px;
}

.chat-section #sidebar li .user-profile .user-details .user-company-name {
  color: grey;
  font-weight: bold;
  font-size: 12px;
}

.chat-section #sidebar li.new-messages span {
  font-weight: bold;
}

.chat-section #sidebar li.new-messages span.messages-count {
  font-size: 9pt;
}

.chat-section #sidebar .conversation-tabs {
  display: none;
  align-items: center;
  padding: 0;
  margin: 0;
  justify-content: space-between;
}

.chat-section #sidebar .conversation-tabs li {
  justify-content: center;
  flex: 1 1 0px;
  border: none;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  padding: 5px 0 5px 0;
  border-radius: 0;
  background: none;
}

.chat-section #sidebar .conversation-tabs li.active {
  border-radius: 15px 15px 0 0;
}

.chat-section #sidebar .conversation-tabs li.active a {
  font-weight: bold;
  text-decoration: underline;
}

.chat-section #sidebar .conversation-tabs li.active .unread-conversation-count {
  font-weight: bold;
  text-decoration: underline;
}

.chat-section #sidebar .conversation-tabs li a {
  color: black;
}

.chat-section #sidebar .conversation-tabs li .unread-conversation-count {
  color: black;
}

.chat-section #sidebar #conversation-invite {
  margin-bottom: 10px;
}

.chat-section #sidebar #conversation-invite .invite-identity {
  display: flex;
  flex-flow: row nowrap;
}

.chat-section #sidebar #conversation-invite .invite-identity .input-group {
  margin: 0 5px 0 5px;
  display: flex;
  color: #333;
  align-items: center;
  flex: 1;
  position: relative;
}

.chat-section #sidebar #conversation-invite .invite-identity .input-group span {
  margin-left: 10px;
  font-weight: bold;
}

.chat-section #sidebar #conversation-invite .invite-identity .input-group input {
  padding: 5px;
  border-radius: 12px;
  outline: none;
  flex: 1;
}

.chat-section #sidebar #conversation-invite .invite-identity #users-list-button {
  width: 30px;
  margin: 2px;
  border-radius: 10px;
  height: 30px;
}

.chat-section #sidebar #conversation-invite .users-list ul {
  display: none;
  position: absolute;
  width: calc(100% - 40px);
  border-radius: 15px;
  background: #ffffff;
  max-height: 712px;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 2;
}

.chat-section #sidebar #conversation-invite .users-list ul li {
  cursor: auto;
  margin: 0px 5px 5px 5px;
}

.chat-section #sidebar #my-conversations,
.chat-section #sidebar #invited-conversations {
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  padding: 10px 5px;
  height: 655px;
}

.chat-section #sidebar #my-conversations ul,
.chat-section #sidebar #invited-conversations ul {
  max-height: 635px;
  padding: 0;
  overflow-y: auto;
}

.chat-section #sidebar #my-conversations .no-conversation-widget,
.chat-section #sidebar #invited-conversations .no-conversation-widget {
  display: none;
}

.chat-section #sidebar #invited-conversations {
  display: none;
}

@media (max-width: 467px) {
  .chat-section #sidebar {
    width: 100%;
  }
}

.chat-section #overlay {
  display: none;
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #F5F6F6;
  z-index: 3;
}

.chat-section #open-conversation-message-broadcast button {
  cursor: pointer;
  width: 2.5em;
  border-radius: 50px;
  height: 2.5em;
}

.chat-section #no-conversation {
  display: none;
  padding: 20px;
  position: absolute;
  top: 44px;
  left: 300px;
  bottom: 0;
  right: 0;
  background: #ffffff;
}

.chat-section #no-conversation p {
  font-size: 22px;
}

@media (max-width: 467px) {
  .chat-section #no-conversation {
    display: none;
  }
}

.chat-section #conversation {
  position: absolute;
  top: 44px;
  left: 300px;
  bottom: 0;
  right: 0;
  background: #ffffff;
  display: none;
}

.chat-section #conversation #conversation-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  border-left: none;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

.chat-section #conversation #conversation-info #slide-sidebar-left {
  opacity: 0;
  font-size: 2em;
  cursor: pointer;
  -webkit-text-stroke: 1px white;
}

.chat-section #conversation #conversation-info img {
  margin: 0 5px 0 5px;
  width: 40px;
  height: 40px;
  border-radius: 5px;
}

.chat-section #conversation #conversation-info .profile-company-logo {
  object-fit: contain;
  border-radius: 0;
}

.chat-section #conversation #conversation-info .user-info {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}

.chat-section #conversation #conversation-info div {
  min-width: 0;
  margin-left: 5px;
  text-align: center;
}

.chat-section #conversation #conversation-info div #conversation-title {
  font-size: 14px;
  line-height: 18px;
  margin: 0;
  padding: 0;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-section #conversation #conversation-info div #conversation-title>#presence {
  display: inline-block;
  height: 0.60em;
  width: 0.60em;
  border-radius: 50px;
  margin-left: 5px;
}

.chat-section #conversation #conversation-info div #conversation-title>#presence.participant-online {
  background: green;
}

.chat-section #conversation #conversation-info div #conversation-title>#presence.participant-offline {
  background: gray;
}

.chat-section #conversation #conversation-info div #conversation-participant-info {
  font-size: smaller;
  font-weight: lighter;
  line-height: 20px;
  color: #333;
  margin: 0;
  padding: 0;
  display: inline-block;
  cursor: pointer;
}

.chat-section #conversation #conversation-info div #conversation-participant-info:hover {
  text-decoration: underline;
}

.chat-section #conversation #conversation-info #create-meeting {
  width: 40px;
  height: 40px;
  font-size: medium;
  margin: 0 5px 0 5px;
}

.chat-section #conversation #conversation-info #group-conversation-info {
  display: none;
  border: none;
  outline: none;
  width: 30px;
  height: 30px;
  font-size: x-large;
  margin: 0 5px 0 5px;
  color: #464848;
  background: transparent;
}

.chat-section #conversation #conversation-body {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  bottom: 0;
}

.chat-section #conversation #conversation-body #conversation-chat {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 45px;
  right: 0;
  overflow: hidden;
  background: #ffffff;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages {
  background: #ffffff;
  overflow: auto;
  padding: 0.75em;
  height: calc(100% - 86px);
  overflow-y: auto;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages ul {
  list-style-type: none;
  margin: 0;
  padding: 0 10px 0px 10px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages li {
  position: relative;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages li>img {
  width: 25px;
  height: 25px;
  border-radius: 15px;
  margin-right: 5px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages li .remove-button {
  visibility: hidden;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages li:hover .remove-button {
  visibility: visible;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages p.participants-read {
  position: absolute;
  bottom: 2px;
  right: 10px;
  margin: 0;
  padding: 0;
  width: 100%;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages p.participants-read img {
  height: 16px;
  width: 16px;
  border-radius: 8px;
  border: solid 1px #333;
  float: right;
  margin-left: 4px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages p.last-read {
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
  margin: 0;
  font-size: 12px;
  color: red;
  font-weight: bold;
  display: none;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages li.last-read {
  border-bottom: 1px solid red;
  width: 95%;
  left: 50%;
  transform: translateX(-50%);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages li.last-read p.last-read {
  display: block;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages p.author {
  display: inline-block;
  font-weight: bold;
  margin: 0;
  padding: 0;
  margin-right: 30px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .timestamp {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-weight: bold;
  font-size: x-small;
  line-height: 20px;
  position: relative;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages p.body {
  padding: 0;
  margin: 0;
  white-space: pre-wrap;
  /* css-3 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages p.body .message-media-image {
  max-width: 100%;
  padding: 5px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages p.body div.message-media-document {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  border-bottom-right-radius: 30px;
  display: inline-block;
  min-height: 80px;
  position: relative;
  text-align: left;
  vertical-align: middle;
  width: 215px;
  margin-top: 10px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages p.body div.message-media-document p {
  font-size: 14px;
  color: #111;
  margin-bottom: 40px;
  padding: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages p.body div.message-media-document .attachment-elements {
  display: flex;
  justify-content: space-between;
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages p.body div.message-media-document .attachment-elements span {
  background: #f2594b;
  border-radius: 4px;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  line-height: normal;
  padding: 5px;
  text-transform: uppercase;
  z-index: 1;
  margin: 5px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages p.body div.message-media-document .attachment-elements .document-file-size {
  font-size: 12px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages p.body div.message-media-document .attachment-elements .anchor-document {
  background: #f2594b;
  border-radius: 4px;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  line-height: normal;
  padding: 5px;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 1;
  margin: 5px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages p.body div.message-media-document .attachment-elements .anchor-document:hover {
  background: #d74f43;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages p.body div.message-media-document:before {
  content: '';
  display: block;
  bottom: 0px;
  right: 25px;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-bottom: 25px solid rgba(255, 255, 255, 0.3);
  clear: both;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages p.body div.message-media-document:after {
  content: '';
  bottom: 0px;
  right: 0px;
  position: absolute;
  width: 0px;
  height: 0px;
  display: inline-block;
  border-top: 25px solid #f2594b;
  border-right: 25px solid transparent;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages p.body button {
  word-break: break-all;
  cursor: pointer;
  font-size: 15px;
  display: inline-block;
  width: 70px;
  height: 30px;
  text-align: center;
  margin: 0;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages p.body button span {
  vertical-align: middle;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages textarea.edit-body {
  width: calc(100% - 90px);
  margin: 5px 0 0 35px;
  padding: 0;
  display: none;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages button {
  /*display: none;*/
  margin: 0 5px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages span.edited {
  font-style: italic;
  color: #444;
  margin-left: 8px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg {
  clear: right;
  width: 400px;
  max-width: fit-content;
  padding: 15px 15px 5px 15px;
  border-radius: 10px;
  margin-bottom: 25px;
  overflow-wrap: break-word;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg::before {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-right: 16px solid transparent;
  border-bottom: 8px solid transparent;
  left: 19px;
  bottom: -16px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg:after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 19px;
  border-width: 0px 0 16px 8px;
  border-style: solid;
  border-color: transparent #ffffff;
  display: block;
  width: 0;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg-right {
  float: right;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg.msg-right:before {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 16px solid transparent;
  border-bottom: 8px solid transparent;
  left: auto;
  right: 19px;
  bottom: -16px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg.msg-right:after {
  content: "";
  position: absolute;
  bottom: -16px;
  right: 19px;
  left: auto;
  border-width: 0 8px 16px 0;
  border-style: solid;
  border-color: transparent #ffffff;
  display: block;
  width: 0;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg-center {
  margin: 0 auto;
  clear: right;
  width: 400px;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 25px;
  overflow-wrap: break-word;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg-center .meeting-message-title {
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  margin: 0;
  padding-left: 14px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg-center .meeting-message-meetingtitle {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  margin: 0;
  padding-left: 14px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg-center .meeting-message-body {
  text-align: center;
  margin: 0;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg-center .meeting-message-info-text {
  font-size: 12px;
  text-align: center;
  margin: 10px 0 0;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg-center .meeting-message-info-text a {
  text-decoration: underline;
  color: black;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg-center .meeting-message-info-text a:hover {
  color: black;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg-center .meeting-message-datetime {
  font-size: x-small;
  margin-right: 10px;
  margin-left: 10px;
  line-height: 20px;
  text-align: center;
  font-weight: bold;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg-center .meeting-message-buttons {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-evenly;
  align-items: center;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg-center .meeting-message-buttons button {
  word-break: break-all;
  font-size: 15px;
  width: 120px;
  height: 35px;
  text-align: center;
  margin: 0;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg-center .meeting-message-buttons button span {
  vertical-align: middle;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .broadcast-msg {
  margin: 0 auto;
  width: 400px;
  padding: 15px;
  border-radius: 10px;
  color: black;
  margin-bottom: 25px;
  overflow-wrap: break-word;
  text-align: left;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .broadcast-msg .user-profile {
  display: flex;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  align-items: center;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .broadcast-msg .user-profile>img {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  margin-right: 5px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .broadcast-msg .user-profile .user-details {
  display: flex;
  flex-flow: column;
  align-items: start;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .broadcast-msg .user-profile .user-details .user-name {
  font-weight: bold;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 325px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .broadcast-msg .user-profile .user-details .user-title {
  font-weight: lighter;
  font-size: 12px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .broadcast-msg .user-profile .user-details .user-company-name {
  color: #3a3a3a;
  font-weight: bold;
  font-size: 12px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .broadcast-msg .body {
  margin: 10px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .broadcast-msg .body .text {
  font-weight: 100;
  padding: 0;
  margin: 0;
  white-space: pre-wrap;
  /* css-3 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .broadcast-msg .body .attachment {
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .broadcast-msg .body .attachment img {
  max-height: 300px;
  max-width: 100%;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .broadcast-msg .body .attachment .message-media-document {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  border-bottom-right-radius: 30px;
  display: inline-block;
  min-height: 80px;
  position: relative;
  text-align: left;
  vertical-align: middle;
  width: 350px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .broadcast-msg .body .attachment .message-media-document p {
  font-size: 14px;
  color: #111;
  margin-bottom: 40px;
  padding: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .broadcast-msg .body .attachment .message-media-document .attachment-elements {
  display: flex;
  justify-content: space-between;
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .broadcast-msg .body .attachment .message-media-document .attachment-elements span {
  background: #f2594b;
  border-radius: 4px;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  line-height: normal;
  padding: 5px;
  text-transform: uppercase;
  z-index: 1;
  margin: 5px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .broadcast-msg .body .attachment .message-media-document .attachment-elements .anchor-document {
  background: #f2594b;
  border-radius: 4px;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  line-height: normal;
  padding: 5px;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 1;
  margin: 5px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .broadcast-msg .body .attachment .message-media-document .attachment-elements .anchor-document:hover {
  background: #d74f43;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .broadcast-msg .body .attachment .message-media-document:before {
  content: '';
  display: block;
  bottom: 0px;
  right: 25px;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-bottom: 25px solid rgba(255, 255, 255, 0.3);
  clear: both;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .broadcast-msg .body .attachment .message-media-document:after {
  content: '';
  bottom: 0px;
  right: 0px;
  position: absolute;
  width: 0px;
  height: 0px;
  display: inline-block;
  border-top: 25px solid #f2594b;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .broadcast-msg .body .timestamp {
  color: #555;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .system-msg {
  clear: both;
  text-align: center;
  word-wrap: break-word;
  max-width: 100%;
  padding: 5px;
  border-radius: 2px;
  background: #ffffff;
  color: #333;
  margin-bottom: 10px;
  font-size: smaller;
  font-weight: bolder;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .datetime-msg {
  clear: both;
  text-align: center;
  word-wrap: break-word;
  max-width: 100%;
  padding: 15px 20px 0 20px;
  border-radius: 2px;
  background: #ffffff;
  color: #333;
  margin-bottom: 15px;
  font-size: smaller;
  font-weight: bolder;
  border-bottom: 1px solid;
  line-height: 0.1em;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .datetime-msg span {
  padding: 0 5px;
  background: #ffffff;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .meeting-request-msg {
  text-align: center;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .meeting-request-msg p.author {
  margin-right: 0;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .meeting-request-msg .meeting-request-datetime {
  font-size: x-small;
  margin-right: 10px;
  margin-left: 10px;
  line-height: 20px;
  text-align: center;
  font-weight: bold;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .meeting-invite-request-msg {
  text-align: center;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .meeting-invite-request-msg p.author {
  margin-right: 0;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .meeting-invite-request-msg .meeting-invite-request-datetime {
  font-size: x-small;
  margin-right: 10px;
  margin-left: 10px;
  line-height: 20px;
  text-align: center;
  font-weight: bold;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .meeting-invite-request-msg p.info-body {
  font-size: smaller;
  font-weight: bold;
  margin-top: 10px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .system-msg {
  clear: both;
  text-align: center;
  word-wrap: break-word;
  max-width: 100%;
  padding: 5px;
  border-radius: 2px;
  background: #ffffff;
  color: #333;
  margin-bottom: 10px;
  font-size: smaller;
  font-weight: bolder;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-message-send {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding-bottom: 10px;
  background: #ffffff;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-message-send #typing-indicator {
  padding: 0px 15px;
  font-style: italic;
  font-size: 11px;
  color: #444;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-message-send #typing-indicator span {
  display: block;
  min-height: 18px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-message-send .message-input-group {
  display: flex;
  align-items: center;
  border-radius: 15px;
  padding: 5px;
  margin: 0 10px 0 10px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-message-send .message-input-group textarea {
  font-size: 16px;
  font-weight: 300;
  width: calc(100% - 55px);
  min-height: 30px;
  height: 30px;
  max-height: 150px;
  resize: none;
  outline: none;
  border: none;
  margin-left: 5px;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-message-send .message-input-group textarea::-webkit-scrollbar {
  display: none;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-message-send .message-input-group .message-context-menu {
  width: 150px;
  border-radius: 5px;
  z-index: 2;
  position: absolute;
  background: #fff;
  overflow: hidden;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.34);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-message-send .message-input-group .message-context-menu .message-context-item {
  padding: 5px 10px;
  cursor: pointer;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-message-send .message-input-group .message-context-menu .message-context-item:hover {
  background: #e8e8e8;
  color: #4eaad2;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-message-send .message-input-group #open-message-share-context-menu {
  display: inline-block;
  margin: 0 5px;
  background: transparent;
  outline: none;
  border: none;
  color: #4eaad2;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-message-send .message-input-group #open-message-share-context-menu .fas {
  font-size: 1.5em;
  -webkit-transform: rotateZ(45deg) scaleX(-1);
  transform: rotateZ(45deg) scaleX(-1);
  -webkit-text-stroke: 1px white;
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-message-send .message-input-group #send-message {
  margin: 0;
  height: 45px;
  width: 45px;
  display: inline-block;
  border-radius: 50px;
}

.chat-section #conversation #conversation-body #conversation-join-meeting-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 16px;
  background: #F5F5F8;
  text-align: center;
}

.chat-section #conversation #conversation-body #conversation-join-meeting-panel button {
  width: 100%;
  border: none;
  border-bottom-right-radius: 20px;
  height: 45px;
}

.chat-section #conversation #conversation-body #conversation-join-meeting-panel button span:last-child {
  margin-left: 10px;
}

@media (max-width: 467px) {
  .chat-section #conversation {
    left: 0;
  }
}

.chat-section #conversation.view-only #conversation-info button {
  display: none;
}

.chat-section #conversation.view-only #conversation-body #conversation-chat {
  bottom: 0;
  right: 0;
}

.chat-section #conversation.view-only #conversation-body #conversation-chat #conversation-messages {
  height: 100%;
}

.chat-section #conversation.view-only #conversation-body #conversation-chat #conversation-message-send {
  display: none;
}

.chat-section #conversation.view-only #conversation-body #conversation-chat #conversation-message-send #typing-indicator {
  display: none;
}

.chat-section #conversation.view-only #conversation-body #conversation-join-meeting-panel {
  display: none;
}

.chat-section #conversation.view-only #conversation-body #join-conversation {
  padding: 5px 10px;
}

.chat-section #conversation.view-only #conversation-body #decline-conversation {
  padding: 5px 10px;
}

.chat-section #conversation.view-only-public #conversation-info button {
  display: none;
}

.chat-section #conversation.view-only-public #conversation-body #conversation-chat {
  bottom: 0;
  right: 0;
}

.chat-section #conversation.view-only-public #conversation-body #conversation-chat #conversation-messages {
  height: 100%;
}

.chat-section #conversation.view-only-public #conversation-body #conversation-chat #conversation-message-send {
  display: none;
}

.chat-section #conversation.view-only-public #conversation-body #conversation-chat #conversation-message-send #typing-indicator {
  display: none;
}

.chat-section #conversation.view-only-public #conversation-body #conversation-join-meeting-panel {
  display: none;
}

.chat-section #conversation.view-only-public #conversation-body #join-conversation {
  padding: 5px 10px;
}

.chat-section #conversation.view-only-public #conversation-body #decline-conversation {
  padding: 5px 10px;
}

.chat-section #sidebar-right {
  display: none;
  position: absolute;
  top: 44px;
  right: 0;
  bottom: 0;
  width: 0px;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
}

.chat-section #sidebar-right .sidebar-header {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: center;
  color: black;
  border-top-right-radius: 20px;
}

.chat-section #sidebar-right .sidebar-header #close-sidebar-right {
  display: none;
  flex-basis: 25%;
  font-size: 2em;
  cursor: pointer;
}

.chat-section #sidebar-right .sidebar-header h4 {
  flex-basis: auto;
  color: black;
  font-weight: bold;
  font-size: 14px;
}

.chat-section #sidebar-right #group-participants {
  display: flex;
  justify-content: center;
  flex-flow: column;
}

.chat-section #sidebar-right #group-participants #invite-participant-button {
  align-self: center;
  padding: 5px;
  cursor: pointer;
  border-radius: 5px;
}

.chat-section #sidebar-right #group-participants ul {
  list-style-type: none;
  max-height: 585px;
  padding: 0;
  overflow-y: auto;
}

.chat-section #sidebar-right #group-participants li {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  margin: 2px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px solid grey;
}

.chat-section #sidebar-right #group-participants li span {
  color: black;
}

.chat-section #sidebar-right #group-participants li .remove-button {
  display: none;
  cursor: pointer;
}

.chat-section #sidebar-right #group-participants li:hover .remove-button {
  display: block;
}

.chat-section #sidebar-right #group-participants li .user-profile {
  display: flex;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  align-items: center;
  justify-content: space-between;
}

.chat-section #sidebar-right #group-participants li .user-profile>img {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  margin-right: 5px;
}

.chat-section #sidebar-right #group-participants li .user-profile span {
  color: black;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-section #sidebar-right #group-participants li .user-profile .user-details {
  display: flex;
  flex-flow: column;
  width: 140px;
}

.chat-section #sidebar-right #group-participants li .user-profile .user-details .user-name {
  font-size: 14px;
}

.chat-section #sidebar-right #group-participants li .user-profile .user-details .user-title {
  font-weight: lighter;
  font-size: 12px;
}

.chat-section #sidebar-right #group-participants li .user-profile .user-details .user-company-name {
  color: grey;
  font-weight: bold;
  font-size: 12px;
}

.chat-section #sidebar-right #group-participants li .user-profile>#presence {
  display: inline-block;
  height: 0.60em;
  width: 0.60em;
  border-radius: 50px;
  margin-left: 5px;
}

.chat-section #sidebar-right #group-participants li .user-profile>#presence.participant-online {
  background: green;
}

.chat-section #sidebar-right #group-participants li .user-profile>#presence.participant-offline {
  background: gray;
}

.chat-section #sidebar-right.view-only {
  display: none;
}

.chat-section #conversation-messages::-webkit-scrollbar {
  width: 10px;
}

.chat-section #conversation-messages::-webkit-scrollbar-track {
  margin-top: 8px;
  margin-bottom: 8px;
  background: #fff;
  -webkit-border-radius: 16px;
  border-radius: 16px;
}

.chat-section #conversation-messages::-webkit-scrollbar-thumb {
  -webkit-border-radius: 16px;
  border-radius: 16px;
  background: #888;
}

.chat-section #conversation-messages::-webkit-scrollbar-thumb:hover {
  background: #666;
}

.chat-section ul::-webkit-scrollbar {
  width: 10px;
}

.chat-section ul::-webkit-scrollbar-track {
  -webkit-border-radius: 16px;
  border-radius: 16px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.chat-section ul::-webkit-scrollbar-thumb {
  -webkit-border-radius: 16px;
  border-radius: 16px;
  background: #888;
}

.chat-section ul::-webkit-scrollbar-thumb:hover {
  background: #666;
}

.chat-section ::-webkit-input-placeholder {
  text-align: center;
}

.chat-section :-moz-placeholder {
  /* Firefox 18- */
  text-align: center;
}

.chat-section ::-moz-placeholder {
  /* Firefox 19+ */
  text-align: center;
}

.chat-section :-ms-input-placeholder {
  text-align: center;
}

#chat-public-profile {
  display: inline-block;
  vertical-align: top;
  max-width: 70rem;
  width: calc(100% - 110rem);
  margin-left: 20px;
  min-width: 41.6rem;
}

@media (max-width: 400px) {
  #chat-public-profile {
    width: auto;
  }
}

.loading-icon {
  width: 24px;
  height: 24px;
  margin: 0 auto;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg xmlns:svg='http://www.w3.org/2000/svg' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.0' width='64px' height='64px' viewBox='0 0 128 128' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M59.6 0h8v40h-8V0z' fill='%23000000' fill-opacity='1'/%3E%3Cpath d='M59.6 0h8v40h-8V0z' fill='%23cccccc' fill-opacity='0.2' transform='rotate(30 64 64)'/%3E%3Cpath d='M59.6 0h8v40h-8V0z' fill='%23cccccc' fill-opacity='0.2' transform='rotate(60 64 64)'/%3E%3Cpath d='M59.6 0h8v40h-8V0z' fill='%23cccccc' fill-opacity='0.2' transform='rotate(90 64 64)'/%3E%3Cpath d='M59.6 0h8v40h-8V0z' fill='%23cccccc' fill-opacity='0.2' transform='rotate(120 64 64)'/%3E%3Cpath d='M59.6 0h8v40h-8V0z' fill='%23b2b2b2' fill-opacity='0.3' transform='rotate(150 64 64)'/%3E%3Cpath d='M59.6 0h8v40h-8V0z' fill='%23999999' fill-opacity='0.4' transform='rotate(180 64 64)'/%3E%3Cpath d='M59.6 0h8v40h-8V0z' fill='%237f7f7f' fill-opacity='0.5' transform='rotate(210 64 64)'/%3E%3Cpath d='M59.6 0h8v40h-8V0z' fill='%23666666' fill-opacity='0.6' transform='rotate(240 64 64)'/%3E%3Cpath d='M59.6 0h8v40h-8V0z' fill='%234c4c4c' fill-opacity='0.7' transform='rotate(270 64 64)'/%3E%3Cpath d='M59.6 0h8v40h-8V0z' fill='%23333333' fill-opacity='0.8' transform='rotate(300 64 64)'/%3E%3Cpath d='M59.6 0h8v40h-8V0z' fill='%23191919' fill-opacity='0.9' transform='rotate(330 64 64)'/%3E%3CanimateTransform attributeName='transform' type='rotate' values='0 64 64;30 64 64;60 64 64;90 64 64;120 64 64;150 64 64;180 64 64;210 64 64;240 64 64;270 64 64;300 64 64;330 64 64' calcMode='discrete' dur='1800ms' repeatCount='indefinite'%3E%3C/animateTransform%3E%3C/g%3E%3C/svg%3E");
}

.error {
  font-size: 14px;
  color: red;
}

.error {
  font-size: 14px;
  color: red;
}

.popup h3 .remove-button {
  float: right;
  cursor: pointer;
}

#update-conversation {
  top: calc(50% - 100px);
  left: calc(50% - 160px);
  width: 300px;
  height: 220px;
}

div.remove-button {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  cursor: pointer;
  display: inline-block;
  float: right;
  margin: 3px 3px 0px 0px;
}

.grey-button {
  border-radius: 5px;
  border: 1px solid black;
  color: white;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75);
  background-color: #464848;
}

.grey-button:hover {
  background-color: #00A4E4;
}

.blue-button {
  font-weight: bold;
  border-radius: 5px;
  border: none;
  outline: none;
  color: #ffffff;
}

.white-button {
  border-radius: 5px;
  border: none;
  outline: none;
  font-weight: bold;
  color: #ffffff;
  background-color: #D9CFBC;
}

.white-button:hover {
  background-color: #B3B3B3;
}

.message-body {
  word-wrap: break-word;
}

.icon-flipped {
  transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
}

.icon-group-user {
  width: 2.5em;
  border-radius: 50px;
  height: 2.5em;
}

.icon-stackked-three {
  position: relative;
  width: 2.5em;
  border-radius: 10px;
  height: 2.5em;
}

.icon-stackked-three span {
  position: absolute;
  top: 0.8em;
}

.icon-stackked-three span:first-child {
  line-height: 0.25em;
  left: 0.65em;
}

.icon-stackked-three span:nth-child(2) {
  left: 0.15em;
}

.icon-stackked-three span:last-child {
  right: 0.20em;
}

/************************* Theme  Overrides *************************/
#start-chat-button {
  background: var(--theme-chat-start-button-background);
}

#chat-window .chat-window-header {
  background: var(--theme-chat-window-header-background);
  border-bottom-color: var(--theme-chat-window-header-border-color);
}

.chat-section #chat-popups .popup {
  background: var(--theme-chat-popup-background);
}

.chat-section #chat-popups .popup h3 {
  background: var(--theme-chat-popup-h3-background);
}

.chat-section #chat-popups .popup .input-group {
  border: 1px solid var(--theme-chat-popup-input-group-border-color);
}

.chat-section #chat-popups #invite-participant .users-list .invite-list li:hover:not(.header),
.chat-section #chat-popups #create-group-conversation .users-list ul li:hover:not(.header) {
  background: var(--theme-chat-popup-create-group-li-hover-background);
}

.chat-section #chat-popups #create-group-conversation .users-list ul li label input[type=checkbox]:checked+.user-profile:after {
  border: 9px solid var(--theme-chat-popup-create-group-checkbox-border-color);
}

.chat-section #chat-popups #message-upload-attachment .file-upload .image-upload-wrap,
.chat-section #chat-popups #broadcast-message .file-upload .image-upload-wrap {
  border: 4px dashed var(--theme-chat-popup-file-image-upload-border-color);
}

.chat-section #chat-popups #message-upload-attachment .file-upload .image-upload-wrap:hover,
.chat-section #chat-popups #broadcast-message .file-upload .image-upload-wrap:hover {
  background-color: var(--theme-chat-popup-file-image-upload-hover-background);
}

.chat-section #chat-popups #message-upload-attachment .file-upload .image-dropping,
.chat-section #chat-popups #broadcast-message .file-upload .image-dropping {
  background-color: var(--theme-chat-popup-file-image-dropping-background);
}

.chat-section #chat-popups #whereby-meeting {
  background-image: var(--theme-chat-popups-whereby-meeting-background-image);
}

.chat-section #chat-popups #whereby-meeting .whereby-event-logo img {
  width: var(--theme-chat-popup-whereby-event-logo-width);
}

.chat-section .business-card-content {
  border: 2px solid var(--theme-chat-section-business-card-content-border-color) !important;
}

.chat-section #sidebar #conversation-invite .invite-identity .input-group input {
  border: 1px solid var(--theme-chat-sidebar-invite-input-group-border-color);
}

.chat-section #sidebar #conversation-invite .invite-identity .icon-group-user {
  background-color: var(--theme-chat-sidebar-invite-icon-group-user-background);
}

.chat-section #sidebar #conversation-invite .invite-identity .icon-group-user:hover {
  background-color: var(--theme-chat-sidebar-invite-icon-group-user-hover-background);
}

.chat-section #sidebar #conversation-invite .users-list ul li:hover {
  background: var(--theme-chat-sidebar-invite-user-list-li-hover-background);
}

.chat-section #sidebar #my-conversations,
.chat-section #sidebar #invited-conversations {
  background: var(--theme-chat-sidebar-conversations-background);
}

.chat-section #sidebar li:hover {
  background: var(--theme-chat-sidebar-li-hover-background);
}

.chat-section #sidebar li .user-profile .group-partners-icon {
  background: var(--theme-chat-sidebar-li-group-partners-icon-background);
}

.chat-section #sidebar li.active {
  background: var(--theme-chat-sidebar-li-active-background);
}

.chat-section #sidebar .conversation-tabs li.active {
  background: var(--theme-chat-sidebar-tabs-li-active-background);
}

.chat-section #sidebar .conversation-tabs li.active a {
  color: var(--theme-chat-sidebar-tabs-li-active-a-color);
}

.chat-section #sidebar .conversation-tabs li.active .unread-conversation-count {
  color: var(--theme-chat-sidebar-tabs-li-active-unread-conversation-count-color);
}

.chat-section #conversation #conversation-info #slide-sidebar-left {
  color: var(--theme-chat-conversation-info-slide-sidebar-left-color);
}

.chat-section #conversation #conversation-info .view-profile-link {
  color: var(--theme-chat-conversation-info-view-profile-link-color);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .timestamp {
  color: var(--theme-chat-conversation-messages-timestamp-color);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg {
  background: var(--theme-chat-conversation-msg-background);
  color: var(--theme-chat-conversation-msg-color)
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg .body a {
  color: var(--theme-chat-conversation-msg-a-color);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg .body .timestamp {
  color: var(--theme-chat-conversation-msg-timestamp-color);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg::before {
  border-left: 16px solid var(--theme-chat-conversation-msg-before-border-left-color);
  border-top: 8px solid var(--theme-chat-conversation-msg-before-border-top-color);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg-right {
  background: var(--theme-chat-conversation-msg-right-background);
  color: var(--theme-chat-conversation-msg-right-color);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg-right .body a {
  color: var(--theme-chat-conversation-msg-right-a-color);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg-right .body .timestamp {
  color: var(--theme-chat-conversation-msg-right-timestamp-color);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg.msg-right:before {
  border-right: 16px solid var(--theme-chat-conversation-msg-right-before-border-right-color);
  border-top: 8px solid var(--theme-chat-conversation-msg-right-before-border-top-color);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg .body .message-media-document:after {
  border-right: 25px solid var(--theme-chat-conversation-msg-media-document-after-border-right-color);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg.msg-right .body .message-media-document:after {
  border-right: 25px solid var(--theme-chat-conversation-msg-right-media-document-after-border-right-color);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg-center {
  background: var(--theme-chat-conversation-msg-center-background);
  color: var(--theme-chat-conversation-msg-center-color);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg-center .meeting-message-meetingtitle {
  color: var(--theme-chat-conversation-msg-center-meeting-meetingtitle-color);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg-center .meeting-message-datetime {
  color: var(--theme-chat-conversation-msg-center-meeting-datetime-color);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg-center .meeting-message-buttons .blue-button {
  background-color: var(--theme-chat-conversation-msg-center-meeting-blue-button-background);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg-center .meeting-message-buttons .blue-button:hover {
  background-color: var(--theme-chat-conversation-msg-center-meeting-blue-button-hover-background);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg-center .meeting-message-buttons .white-button {
  background-color: var(--theme-chat-conversation-msg-center-meeting-white-button-background);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg-center .meeting-message-buttons .white-button:hover {
  background-color: var(--theme-chat-conversation-msg-center-meeting-white-button-hover-background);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg-center-right {
  background: var(--theme-chat-conversation-msg-center-right-background);
  color: var(--theme-chat-conversation-msg-center-right-color);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg-center-right .meeting-message-buttons .blue-button {
  background-color: var(--theme-chat-conversation-msg-center-right-meeting-blue-button-background);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg-center-right .meeting-message-buttons .blue-button:hover {
  background-color: var(--theme-chat-conversation-msg-center-right-meeting-blue-button-hover-background);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .meeting-request-msg .meeting-request-datetime {
  color: var(--theme-chat-conversation-meeting-request-msg-meeting-request-datetime-color);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg-right.meeting-request-msg .meeting-request-datetime {
  color: var(--theme-chat-conversation-msg-right-meeting-request-msg-meeting-request-datetime-color);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .meeting-invite-request-msg .meeting-invite-request-datetime {
  color: var(--theme-chat-conversation-meeting-invite-request-msg-meeting-invite-request-datetime-color);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg-center.broadcast-msg .body .attachment .message-media-document:after {
  border-right: 25px solid var(--theme-chat-conversation-msg-center-broadcast-msg-attachment-media-document-after-border-right-color);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-messages .msg-center.msg-center-right.broadcast-msg .body .attachment .message-media-document:after {
  border-right: 25px solid var(--theme-chat-conversation-msg-center-right-broadcast-msg-attachment-media-document-after-border-right-color);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-message-send .message-input-group {
  border: 2px solid var(--theme-chat-conversation-send-message-input-group-border-color);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-message-send .message-input-group .message-context-menu .message-context-item:hover {
  color: var(--theme-chat-conversation-send-message-input-group-message-context-menu-item-hover-color);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-message-send .message-input-group #open-message-share-context-menu {
  color: var(--theme-chat-conversation-send-message-input-group-open-message-share-context-menu-color);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-message-send .message-input-group #send-message {
  background-color: var(--theme-chat-conversation-send-message-input-group-send-message-background);
}

.chat-section #conversation #conversation-body #conversation-chat #conversation-message-send .message-input-group #send-message:hover {
  background-color: var(--theme-chat-conversation-send-message-input-group-send-message-hover-background);
}

.chat-section #conversation #conversation-body #conversation-chat .broadcast-msg .body a {
  color: var(--theme-chat-conversation-chat-broadcast-msg-a-color);
}

.chat-section #conversation #conversation-body #conversation-chat .broadcast-msg .body a:hover {
  color: var(--theme-chat-conversation-chat-broadcast-msg-a-hover-color);
}

.chat-section #sidebar-right {
  background: var(--theme-chat-sidebar-right-background);
}

.chat-section #sidebar-right .sidebar-header #close-sidebar-right {
  color: var(--theme-chat-sidebar-right-sidebar-header-close-sidebar-right-color);
  -webkit-text-stroke: 2px var(--theme-chat-sidebar-right-sidebar-header-close-sidebar-right-webkit-text-stroke);
}

.chat-section #sidebar-right #group-participants li:hover {
  background: var(--theme-chat-sidebar-right-group-participants-li-hover-background);
}

.chat-section ul::-webkit-scrollbar-track {
  background: var(--theme-chat-ul-webkit-scrollbar-track-background);
}

.blue-button {
  background-color: var(--theme-chat-blue-button-background);
}

.blue-button:hover {
  background-color: var(--theme-chat-blue-button-hover-background);
}

.icon-group-user {
  background-color: var(--theme-chat-icon-group-user-background);
}

/****************Theme Override Ends********************/

/*******Utilizing ResizeSensor for chat-window*******/
/*
$break-x-large: 1200px;
$break-large: 992px;
$break-medium: 768px;
$break-small: 467px; 
*/
#chat-window[max-width~="400px"] .chat-section {
  width: 360px;
  height: 570px;
}

#chat-window[max-height~="660px"] {
  height: 100%;
  top: 60px;
}

#chat-window[max-height~="660px"] .chat-section {
  height: calc(100% - 86px);
}

#chat-window[max-height~="660px"] .chat-section #sidebar #my-conversations,
#chat-window[max-height~="660px"] .chat-section #sidebar #sidebar #invited-conversations {
  height: calc(100% - 86px);
}

#chat-window[max-height~="660px"] .chat-section #sidebar #my-conversations ul,
#chat-window[max-height~="660px"] .chat-section #sidebar #sidebar #invited-conversations ul {
  max-height: calc(100% - 0px);
}

#chat-window[max-height~="660px"] .chat-section #sidebar #conversation-invite .users-list ul {
  max-height: calc(100% - 50px);
}

#chat-window[max-height~="660px"] .chat-section #chat-popups #create-group-conversation,
#chat-window[max-height~="660px"] .chat-section #chat-popups #invite-participant,
#chat-window[max-height~="660px"] .chat-section #chat-popups #message-upload-attachment {
  width: 100%;
  height: 100%;
}

#chat-window[max-height~="660px"] .chat-section #chat-popups #message-upload-attachment .file-upload {
  height: calc(100% - 115px);
}

#chat-window[max-height~="660px"] .chat-section #chat-popups #message-upload-attachment .file-upload .image-upload-wrap .drag-text h5 {
  padding: 0;
}

#chat-window[max-height~="660px"] .chat-section #chat-popups #create-group-conversation .users-list {
  overflow-y: auto;
  height: calc(100% - 245px);
  margin-top: 5px;
}

#chat-window[max-height~="660px"] .chat-section #chat-popups #invite-user-message .popup-textarea,
#chat-window[max-height~="660px"] .chat-section #chat-popups #create-group-conversation-message .popup-textarea,
#chat-window[max-height~="660px"] .chat-section #chat-popups #invite-participant-message .popup-textarea,
#chat-window[max-height~="660px"] .chat-section #chat-popups #whereby-meeting-message .popup-textarea {
  height: calc(100%/2);
}

.chat-section[max-width~="400px"] #sidebar {
  width: 100%;
  z-index: 2;
}

.chat-section[max-width~="400px"] #sidebar li .remove-button {
  display: block;
  cursor: pointer;
}

.chat-section[max-width~="400px"] #sidebar #profile #slide-sidebar-right {
  display: block;
}

.chat-section[max-width~="400px"] #sidebar #profile .current-user-profile>label {
  font-size: large;
}

.chat-section[max-width~="400px"] #sidebar #conversation-invite {
  margin: 5px 5px 10px 5px;
}

.chat-section[max-width~="400px"] #sidebar #conversation-invite .users-list ul {
  max-height: 520px;
  width: calc(100% - 50px);
}

.chat-section[max-width~="400px"] #sidebar #my-conversations,
.chat-section[max-width~="400px"] #sidebar #invited-conversations {
  padding: 10px 0px;
  height: 520px;
  border-radius: 0;
}

.chat-section[max-width~="400px"] #sidebar #my-conversations ul,
.chat-section[max-width~="400px"] #sidebar #invited-conversations ul {
  max-height: 500px;
}

.chat-section[max-width~="400px"] #sidebar #my-conversations .no-conversation-widget,
.chat-section[max-width~="400px"] #sidebar #invited-conversations .no-conversation-widget {
  display: block;
  padding: 0 20px;
}

.chat-section[max-width~="400px"] #sidebar #my-conversations .no-conversation-widget img,
.chat-section[max-width~="400px"] #sidebar #invited-conversations .no-conversation-widget img {
  width: 100%;
}

.chat-section[max-width~="400px"] #no-conversation {
  display: none;
  top: 0;
}

.chat-section[max-width~="400px"] #no-conversation h3 {
  font-size: 18px;
}

.chat-section[max-width~="400px"] #no-conversation p {
  font-size: small;
}

.chat-section[max-width~="400px"] #conversation {
  left: 0;
  z-index: 1;
  top: 0;
}

.chat-section[max-width~="400px"] #conversation #conversation-info {
  justify-content: space-around;
}

.chat-section[max-width~="400px"] #conversation #conversation-info #slide-sidebar-left {
  opacity: 1;
}

.chat-section[max-width~="400px"] #conversation #conversation-info div #conversation-participant-info {
  cursor: auto;
}

.chat-section[max-width~="400px"] #conversation #conversation-info div #conversation-participant-info:hover {
  text-decoration: none;
}

.chat-section[max-width~="400px"] #conversation #conversation-info #group-conversation-info {
  display: block;
}

.chat-section[max-width~="400px"] #conversation #conversation-body #conversation-chat #conversation-messages {
  padding: 0;
}

.chat-section[max-width~="400px"] #conversation #conversation-body #conversation-chat #conversation-messages .msg {
  width: 250px;
}

.chat-section[max-width~="400px"] #conversation #conversation-body #conversation-chat #conversation-messages .msg-center {
  width: 250px;
}

.chat-section[max-width~="400px"] #conversation #conversation-body #conversation-chat #conversation-messages .msg-center .meeting-message-buttons button {
  width: 90px;
}

.chat-section[max-width~="400px"] #conversation #conversation-body #conversation-chat #conversation-messages .broadcast-msg .body .attachment .message-media-document {
  width: 200px;
}

.chat-section[max-width~="400px"] #conversation #conversation-body #conversation-chat #conversation-messages .broadcast-msg .user-profile .user-details .user-name {
  max-width: 200px;
}

.chat-section[max-width~="400px"] #conversation #conversation-body #conversation-join-meeting-panel button {
  border-radius: 5px;
}

.chat-section[max-width~="400px"] #chat-popups #invite-user-message,
.chat-section[max-width~="400px"] #chat-popups #create-group-conversation-message,
.chat-section[max-width~="400px"] #chat-popups #invite-participant-message,
.chat-section[max-width~="400px"] #chat-popups #whereby-meeting-message {
  width: 100%;
  height: 100%;
}

.chat-section[max-width~="400px"] #chat-popups #broadcast-message #broadcast-message-body {
  height: 270px;
}

.chat-section[max-width~="400px"] #chat-popups #create-group-conversation,
.chat-section[max-width~="400px"] #chat-popups #invite-participant,
.chat-section[max-width~="400px"] #chat-popups #message-upload-attachment,
.chat-section[max-width~="400px"] #chat-popups #broadcast-message {
  width: 100%;
  height: 100%;
}

.chat-section[max-width~="400px"] #chat-popups #create-group-conversation .users-list {
  overflow-y: auto;
  height: 330px;
  margin-top: 5px;
}

.chat-section[max-width~="400px"] #chat-popups #whereby-meeting {
  position: absolute;
  top: auto;
  left: auto;
  transform: none;
  width: 100%;
  height: 100%;
}

.chat-section[max-width~="400px"] #chat-popups #whereby-meeting .leave-whereby-meeting-button {
  display: none;
}

.chat-section[max-width~="400px"] #chat-popups #whereby-meeting .whereby-event-logo {
  top: 30px;
  margin: auto;
  left: 0;
  right: 0;
}

.chat-section[max-width~="400px"] #chat-popups #whereby-meeting .whereby-event-logo img {
  width: 90px;
}

.chat-section[max-width~="400px"] #sidebar-right {
  width: 0%;
  z-index: 2;
  top: 0;
}

.chat-section[max-width~="400px"] #sidebar-right .sidebar-header #close-sidebar-right {
  display: block;
}

.chat-section[max-width~="400px"] #sidebar-right .sidebar-header h4 {
  font-size: large;
  flex-basis: 60%;
}

.chat-section[max-width~="400px"] #sidebar-right li .remove-button {
  display: block;
}

.chat-section[max-width~="400px"] #sidebar-right #group-participants li .user-profile .user-details {
  width: 235px;
}