.chat-wrapper, .chat-sidebar, .chat-main {
  height: 100%;
}

.chat-sidebar {
  border-right: 1px solid #eceeef;
  padding-bottom: 70px;
  position: relative;
  height: 100%;
}
.chat-sidebar .create-chat-room {
  position: absolute;
  bottom: 0;
  height: 70px;
  background: #fff;
  width: 100%;
  border-top: 1px solid #eceeef;
  text-align: center;
  line-height: 70px;
  color: #adb5bd;
}
.chat-sidebar .create-chat-room:hover {
  color: #398739;
}

.chat-tab-links-wrapper {
  position: relative;
  overflow-y: auto;
  height: 100%;
}

.chat-tab-link .last-message-content {
  height: 90px;
  font-size: 13px;
  line-height: 18px;
}
.chat-tab-link .badge {
  align-self: start;
  padding: 6px 8px;
  margin-top: 23px;
}

.chat-tabs {
  height: 100%;
}

.chat-container {
  position: relative;
  padding-top: 110px;
  padding-bottom: 70px;
  height: 100%;
}
.chat-container .chat-header {
  position: absolute;
  width: 100%;
  border-bottom: 1px solid #eceeef;
  padding: 10px;
  top: 0;
  left: 0;
  right: 0;
  background-color: #eceeef;
  z-index: 1;
}
.chat-container .chat-header .chat-room-menu .dropdown-toggle {
  font-size: 25px;
}
.chat-container .chat-header .chat-user-badge {
  display: inline-flex;
  background: #fff;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 3px 5px;
  align-items: center;
}
.chat-container .chat-header .chat-user-badge .user-name {
  font-size: 12px;
}
.chat-container .chat-header .chat-user-badge .online-icon {
  font-size: 13px;
  color: #d9534f;
}
.chat-container .chat-header .chat-user-badge.online .online-icon {
  color: #398739;
}
.chat-container .chat-header .chat-user-badge .writing-icon {
  font-size: 13px;
  color: #ced4da;
}
.chat-container .chat-header .chat-user-badge.writing .writing-icon {
  color: #2d8bc5;
  -webkit-animation-name: fa-beat-fade;
  animation-name: fa-beat-fade;
  -webkit-animation-delay: var(--fa-animation-delay, 0);
  animation-delay: var(--fa-animation-delay, 0);
  -webkit-animation-direction: var(--fa-animation-direction, normal);
  animation-direction: var(--fa-animation-direction, normal);
  -webkit-animation-duration: var(--fa-animation-duration, 1s);
  animation-duration: var(--fa-animation-duration, 1s);
  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}
.chat-container .chat-frame {
  height: 100%;
  overflow-y: auto;
}
.chat-container .chat-body {
  padding: 15px;
}
.chat-container .chat-emoji {
  position: absolute;
  bottom: 78px;
  right: 7px;
  display: none;
  z-index: 5;
}
.chat-container.emoji-open .chat-emoji {
  display: block;
}
.chat-container .chat-toolbar {
  position: absolute;
  width: 100%;
  background: #fff;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid #eceeef;
}
.chat-container .chat-toolbar .chat-toolbar-body {
  padding: 10px;
}
.chat-container .chat-toolbar button {
  font-size: 25px;
  padding: 4px;
}
.chat-container .chat-toolbar button:hover {
  color: #2d8bc5;
}
.chat-container .chat-toolbar .chat-quote {
  height: 100px;
  border-bottom: 1px solid #eceeef;
  position: relative;
  padding: 5px 0 5px 10px;
  display: none;
}
.chat-container .chat-toolbar .chat-quote .chat-quote-container {
  display: flex;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  border-left: 4px solid #eceeef;
  height: 90px;
}
.chat-container .chat-toolbar .chat-quote .chat-quote-container .chat-quote-body {
  padding: 5px;
  flex-grow: 1;
  overflow: hidden;
}
.chat-container .chat-toolbar .chat-quote .chat-quote-container .chat-quote-body .chat-quote-user {
  font-weight: bold;
  font-size: 0.7rem;
  margin: 0;
}
.chat-container .chat-toolbar .chat-quote .chat-quote-container .chat-quote-body .chat-quote-content {
  font-size: 12px;
  color: #636c72;
}
.chat-container .chat-toolbar .chat-quote .chat-quote-container .file-preview {
  flex-basis: 90px;
}
.chat-container .chat-toolbar .chat-quote .chat-quote-container .file-preview img {
  width: 100%;
}
.chat-container .chat-toolbar .chat-quote .chat-quote-container .chat-quote-cancel {
  width: 50px;
  text-align: center;
  height: 100%;
  background: #fff;
  line-height: 106px;
}
.chat-container .chat-toolbar .chat-quote .chat-quote-container .chat-quote-cancel:hover {
  color: #d9534f;
}
.chat-container .chat-toolbar .chat-file {
  height: 100px;
  border-bottom: 1px solid #eceeef;
  position: relative;
  display: none;
}
.chat-container .chat-toolbar .chat-file .upload {
  padding: 15px;
}
.chat-container .chat-toolbar .chat-file .upload .card {
  border-width: 3px;
  border-style: dashed;
  background: transparent;
}
.chat-container .chat-toolbar .chat-file .upload .card .upload-label {
  padding: 21px;
}
.chat-container .chat-toolbar .chat-file .upload .card input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  transform: translate(-300px, 0) scale(4);
  font-size: 23px;
  direction: ltr;
  cursor: pointer;
  height: 100%;
}
.chat-container .chat-toolbar .chat-file .progress {
  position: absolute;
  bottom: 0;
  width: 100%;
  border-radius: 0;
  height: 2px;
  box-shadow: none;
  opacity: 0;
}
.chat-container .chat-toolbar .chat-file .preview {
  height: 100%;
}
.chat-container .chat-toolbar .chat-file .preview .preview-thumb {
  flex: 0 0 100px;
  background: #eceeef;
  height: 100%;
  text-align: center;
  line-height: 100px;
  font-size: 12px;
}
.chat-container .chat-toolbar .chat-file .preview .preview-thumb img {
  max-width: 100%;
  max-height: 100%;
}
.chat-container .chat-toolbar .chat-file .preview .preview-name {
  flex-grow: 1;
  padding: 10px;
  font-size: 12px;
}
.chat-container .chat-toolbar .chat-file .preview .preview-cancel {
  flex: 0 0 100px;
  height: 100%;
}
.chat-container .chat-toolbar .chat-file .preview .preview-cancel:hover {
  color: #d9534f;
}
.chat-container.quote-open {
  padding-bottom: 170px;
}
.chat-container.quote-open .chat-quote {
  display: block;
}
.chat-container.file-open {
  padding-bottom: 170px;
}
.chat-container.file-open .chat-file {
  display: block;
}
.chat-container.quote-open.file-open {
  padding-bottom: 270px;
}
.chat-container.chat-disabled .chat-toolbar {
  display: none;
}
.chat-container.chat-disabled .chat-active-btn {
  display: none;
}
.chat-container .day-label {
  text-align: center;
}
.chat-container .day-label .day-label-body {
  text-transform: lowercase;
  color: #636c72;
  font-size: 11px;
  min-width: 100px;
  font-weight: bold;
  display: inline-block;
  margin: 15px;
  border-radius: 8px;
  padding: 3px 6px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  --bs-bg-opacity: .3;
  background-color: rgba(var(--bs-yellow-rgb), var(--bs-bg-opacity)) !important;
}
.chat-container .chat-event {
  text-align: center;
}
.chat-container .chat-event .chat-event-body {
  color: #fff;
  font-size: 11px;
  min-width: 100px;
  font-weight: bold;
  display: inline-block;
  border-radius: 8px;
  padding: 3px 6px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  --bs-bg-opacity: .6;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}
.chat-container .chat-event-bbb {
  text-align: center;
}
.chat-container .chat-event-bbb .chat-event-body {
  margin: 2px 0;
  color: #fff;
  font-size: 11px;
  min-width: 100px;
  font-weight: bold;
  display: inline-block;
  border-radius: 23px;
  padding: 4px 6px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}
.chat-container .chat-event-bbb .chat-event-body a {
  display: flex;
  align-items: center;
}
.chat-container .chat-event-bbb .chat-event-body a .user-thumbnail {
  font-size: 18px;
  border: none;
}
.chat-container .chat-event-bbb .chat-event-body a .chat-event-bbb-content {
  padding: 0 5px;
  color: #636c72;
}
.chat-container .chat-event-bbb .chat-event-body:hover .chat-event-bbb-content {
  color: #2d8bc5;
}
.chat-container .chat-message {
  display: flex;
}
.chat-container .chat-message .chat-message-container {
  display: flex;
  align-items: end;
}
.chat-container .chat-message .user-thumbnail {
  display: none;
  width: 40px;
  flex: none;
}
.chat-container .chat-message .chat-message-body {
  margin-top: 3px;
  margin-bottom: 0;
  position: relative;
  display: inline-block;
  border-radius: 8px;
  padding: 2px;
  font-size: 0.9rem;
}
.chat-container .chat-message .chat-message-body .chat-message-user {
  font-weight: bold;
  font-size: 0.7rem;
  margin: 4px 11px 0 11px;
  display: none;
}
.chat-container .chat-message .chat-message-body .chat-message-menu {
  position: absolute;
  right: 7px;
  top: 3px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.2s;
}
.chat-container .chat-message .chat-message-body .chat-message-menu .dropdown-menu {
  font-size: 13px;
}
.chat-container .chat-message .chat-message-body:hover .chat-message-menu {
  opacity: 1;
}
.chat-container .chat-message .chat-message-quote-message {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  border-left: 4px solid #eceeef;
  display: flex;
  max-width: 300px;
}
.chat-container .chat-message .chat-message-quote-message .quote-message-body {
  padding: 5px;
  flex-grow: 1;
}
.chat-container .chat-message .chat-message-quote-message .quote-message-body .quote-message-user {
  font-weight: bold;
  font-size: 0.7rem;
  margin: 0;
}
.chat-container .chat-message .chat-message-quote-message .quote-message-body .quote-message-content {
  font-size: 12px;
  color: #636c72;
}
.chat-container .chat-message .chat-message-quote-message .file-preview {
  flex-basis: 90px;
}
.chat-container .chat-message .chat-message-quote-message .file-preview img {
  width: 100%;
}
.chat-container .chat-message .chat-message-file {
  display: flex;
  align-items: center;
  max-width: 300px;
}
.chat-container .chat-message .chat-message-file img {
  width: 100%;
}
.chat-container .chat-message .chat-message-file .file-preview {
  flex-basis: 90px;
}
.chat-container .chat-message .chat-message-file .file-name {
  font-size: 12px;
}
.chat-container .chat-message .chat-message-content {
  max-width: 400px;
  padding: 4px 11px 2px 11px;
}
.chat-container .chat-message .chat-message-content .emoji {
  font-size: 19px;
  line-height: 18px;
}
.chat-container .chat-message .chat-message-content .emoji.emoji-1 {
  font-size: 48px;
  display: block;
  line-height: 40px;
  margin-top: 9px;
  text-align: center;
}
.chat-container .chat-message .chat-message-content .emoji.emoji-2 {
  font-size: 40px;
  display: block;
  line-height: 32px;
  margin-top: 9px;
  text-align: center;
}
.chat-container .chat-message .chat-message-content .emoji.emoji-3 {
  font-size: 26px;
  display: block;
  line-height: 17px;
  margin-top: 8px;
  text-align: center;
}
.chat-container .chat-message .chat-message-footer {
  font-size: 11px;
  float: right;
  margin-left: 20px;
  margin-top: 7px;
}
.chat-container .chat-message .chat-message-footer i {
  position: absolute;
  bottom: 3px;
  right: 5px;
  font-size: 14px;
  font-weight: bold;
  display: none;
}
.chat-container .chat-message .chat-message-footer i + i {
  position: absolute;
  right: 11px;
}
.chat-container .chat-message.first {
  margin-top: 15px;
}
.chat-container .chat-message.last {
  margin-bottom: 15px;
}
.chat-container .chat-message.last .chat-message-body:before {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
  height: 20px;
  width: 20px;
}
.chat-container .chat-message.last .chat-message-body:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 10px;
  height: 20px;
}
.chat-container .chat-message.lft .chat-message-body {
  background-color: #fff;
}
.chat-container .chat-message.lft .chat-message-body .chat-message-menu .dropdown-toggle {
  background: #fff;
  box-shadow: 0 2px 0 2px #fff;
  padding-top: 4px;
}
.chat-container .chat-message.lft.last .chat-message-body:before {
  left: -7px;
  background: #fff;
  border-bottom-right-radius: 15px;
}
.chat-container .chat-message.lft.last .chat-message-body:after {
  left: -10px;
  background: #eceeef;
  border-bottom-right-radius: 10px;
}
.chat-container .chat-message.rgt {
  justify-content: end;
}
.chat-container .chat-message.rgt .chat-message-body {
  background-color: #d4f5fa;
}
.chat-container .chat-message.rgt .chat-message-body .chat-message-menu .dropdown-toggle {
  background: #d4f5fa;
  box-shadow: 0 2px 0 2px #d4f5fa;
  padding-top: 4px;
}
.chat-container .chat-message.rgt .chat-message-time {
  margin-right: 14px;
}
.chat-container .chat-message.rgt.last .chat-message-body:before {
  right: -8px;
  background-color: #d4f5fa;
  background-attachment: fixed;
  border-bottom-left-radius: 15px;
}
.chat-container .chat-message.rgt.last .chat-message-body::after {
  right: -10px;
  background: #eceeef;
  border-bottom-left-radius: 10px;
}
.chat-container .chat-message.rgt.send-error .chat-message-footer .x-mark {
  display: block;
}
.chat-container .chat-message.rgt.state-0 .chat-message-footer .check-single {
  display: block;
}
.chat-container .chat-message.rgt.state-1 .chat-message-footer .check-single, .chat-container .chat-message.rgt.state-1 .chat-message-footer .check-double {
  display: block;
}
.chat-container .chat-message.rgt.state-2 .chat-message-footer .check-single, .chat-container .chat-message.rgt.state-2 .chat-message-footer .check-double {
  display: block;
  color: #17a2b8;
}
.chat-container.multiple-users .chat-message.first:not(.rgt) .chat-message-user {
  display: block;
}
.chat-container.multiple-users .chat-message:not(.rgt) .user-thumbnail {
  display: inherit;
  visibility: hidden;
  margin-right: 10px;
}
.chat-container.multiple-users .chat-message:not(.rgt).last .user-thumbnail {
  visibility: visible;
}

.chat-messages-btn .badge {
  background-color: #d9534f;
  color: #fff;
  position: absolute;
  z-index: 1020;
  font-size: 10px;
  padding: 4px;
  top: 8px;
  right: 3px;
  min-width: 18px;
  border-radius: 9px;
}

.flash-meeting-icon {
  font-size: 0.675em;
  vertical-align: top;
}
.flash-meeting-icon i + i {
  margin-left: -4px;
}

#attendees-container {
  min-height: 250px;
}
#attendees-container .no-attendee {
  padding-top: 110px;
}

.boxed-logo {
  max-height: 45px;
}

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