/* ../../../../../tmp/tmp-474718-Cqa8fhlK9J6I/chat/chat/public/scss/chat.bundle.css */
.chat-app {
  position: fixed;
  bottom: 24px;
  right: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
  max-width: 385px;
  z-index: 1030;
  padding: 0 1rem;
}
.chat-app ::-webkit-scrollbar {
  width: 2px;
}
.chat-app ::-webkit-scrollbar-track {
  background: var(--card-bg);
}
.chat-app ::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb-color);
  border-radius: 10px;
  max-height: 30px;
}
.chat-app ::-webkit-scrollbar-thumb:hover {
  background: var(--gray-500);
}
.chat-element {
  height: 582px;
  width: 100%;
  position: relative;
  box-shadow: 0px 2px 6px rgba(17, 43, 66, 0.08), 0px 1px 4px rgba(17, 43, 66, 0.1);
  background: var(--card-bg);
  border-radius: 6px;
  margin-bottom: 1rem;
  border: 1px solid var(--dark-border-color);
}
.chat-container {
  padding: 0;
  margin: 0;
}
.chat-bubble {
  cursor: pointer;
  background: var(--control-bg);
  color: var(--text-color);
  border-radius: 100px;
  font-weight: bold;
  display: flex;
  align-items: center;
  width: initial;
}
.chat-bubble svg {
  fill: var(--white);
}
.chat-bubble:hover {
  box-shadow: var(--shadow-lg);
}
.chat-bubble .chat-message-icon {
  margin-right: var(--margin-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-cross-button {
  display: none;
  color: var(--gray-700);
  cursor: pointer;
  position: absolute;
  top: 12px;
  right: 8px;
}
.chat-bubble-closed {
  width: 60px;
  height: 60px;
  position: relative;
  text-align: center;
}
.chat-bubble-closed .cross-icon {
  width: 100%;
}
.chat-title-stack h3 {
  color: var(--white) !important;
}
.icon {
  background-color: transparent !important;
}
.chat-list {
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.95), rgba(15, 76, 129, 0.8));
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 25px 45px rgba(2, 6, 23, 0.5);
  padding-bottom: var(--margin-md);
  position: relative;
  overflow: hidden;
}
.chat-list .chat-list-header {
  padding: 12px 12px 0 12px;
  justify-content: space-between;
  display: flex;
  align-items: flex-start;
  gap: var(--margin-md);
}
.chat-list .chat-list-header .chat-title-stack {
  color: var(--white) !important;
  display: flex;
  flex-direction: column;
  gap: var(--margin-xs);
}
.chat-list .chat-list-header .chat-title-stack h3 {
  font-size: 1.875rem;
  margin: 0;
  font-weight: 600;
}
.chat-list .chat-list-header .chat-title-stack .chat-title-subtext {
  margin: 0;
  font-size: 0.875rem;
  color: var(--white);
}
.chat-list .chat-list-header .chat-list-icons {
  display: flex;
}
.chat-list .chat-list-header .chat-list-icons .user-settings {
  cursor: pointer;
  margin-right: 0px;
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}
.chat-list .chat-list-header .chat-list-icons .user-settings:hover {
  color: var(--white);
}
.chat-list .chat-list-header .chat-list-icons .add-room {
  cursor: pointer;
  margin-right: 11px;
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}
.chat-list .chat-list-header .chat-list-icons .add-room:hover {
  color: var(--white);
}
.chat-list .chat-header-meta {
  margin: 0 12px;
  margin-top: var(--margin-sm);
  display: flex;
  gap: var(--margin-sm);
  justify-content: flex-start;
}
.chat-list .chat-header-pill {
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--bg-light-gray);
  color: var(--text-color);
  opacity: 0.85;
}
.chat-list .chat-header-pill.secondary {
  background: var(--bg-color);
  color: var(--text-muted);
  opacity: 0.65;
}
.chat-list .chat-search {
  border-radius: 6px;
  font-size: 0.875rem;
  margin: 0 12px;
}
.chat-list .chat-search .search-icon {
  display: flex;
  align-items: center;
  position: absolute;
  padding-right: 10px;
  height: 100%;
  margin-left: 12px;
  z-index: 3;
}
.chat-list .chat-search .chat-search-box {
  width: 100%;
  border-radius: 6px;
  padding-left: 36px;
}
.chat-list .chat-search .chat-search-box:focus {
  box-shadow: none;
}
.chat-list .chat-rooms-container {
  height: 490.5px;
  overflow-y: scroll;
  padding: 12px;
  position: relative;
}
.chat-list .chat-rooms-container .chat-room {
  color: var(--white);
  display: flex;
  font-size: 0.875rem;
  cursor: pointer;
  position: relative;
  padding: var(--margin-md) 0;
  border-radius: 8px;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), border 0.2s ease;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.02);
}
.chat-list .chat-rooms-container .chat-room .chat-profile-info {
  transition: color 0.2s ease;
}
.chat-list .chat-rooms-container .chat-room:hover {
  background: var(--bg-light-gray);
  border-left: 5px solid var(--bg-light-gray);
  border-right: 5px solid var(--bg-light-gray);
  margin: 0 -5px;
  transform: translateX(4px);
}
.chat-list .chat-rooms-container .chat-room:hover::after {
  content: "";
  position: absolute;
  inset: 65px 14px 14px;
  border-radius: 16px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.chat-list .chat-rooms-container .chat-room.is-unread {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}
.chat-list .chat-rooms-container .chat-room.active {
  background: linear-gradient(120deg, var(--cyan-100), var(--blue-100));
  border-color: rgba(255, 255, 255, 0.2);
}
.chat-list .chat-rooms-container .chat-room.active .chat-name,
.chat-list .chat-rooms-container .chat-room.active .last-message {
  color: var(--white);
}
.chat-list .chat-rooms-container .chat-room .chat-profile-info {
  margin-left: var(--margin-md);
  margin-right: auto;
}
.chat-list .chat-rooms-container .chat-room .chat-profile-info .chat-name {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: var(--margin-sm);
}
.chat-list .chat-rooms-container .chat-room .chat-profile-info .last-message {
  color: var(--white);
}
.chat-list .chat-rooms-container .chat-room .chat-date {
  color: var(--cyan-400);
}
.chat-list .chat-rooms-container .chat-room .chat-latest {
  width: 4px;
  height: 4px;
  margin-left: 5px;
  background: var(--blue-500);
  border-radius: 50%;
}
.chat-list .chat-rooms-container .chat-room .chat-latest .chat-date {
  color: rgba(255, 255, 255, 0.85);
}
.chat-room-card {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--white) !important;
}
.chat-room-card .chat-profile-name {
  font-weight: 600;
}
.chat-header {
  display: flex;
  align-items: center;
  padding: 12px;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.06), 0px 2px 0.5px -1px rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid var(--dark-border-color);
}
.chat-header .chat-back-button {
  height: 28px;
  width: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--bg-color);
  margin-right: 10px;
  cursor: pointer;
}
.chat-header .chat-profile-info {
  margin-left: var(--margin-md);
  font-size: 0.875rem;
  margin-right: auto;
}
.chat-header .chat-profile-info .chat-profile-name {
  color: var(--white);
  font-weight: 600;
}
.chat-header .chat-profile-info .chat-profile-status {
  font-size: 0.75rem;
  visibility: hidden;
}
.chat-header .online-circle {
  display: inline-block;
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 50%;
  margin-left: 3px;
  background: var(--green);
}
.chat-space {
  height: 100%;
  position: relative;
  padding: 0 1rem;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(21, 101, 192, 0.35));
  border-radius: 20px;
  overflow: hidden;
}
.chat-space::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 60%);
  pointer-events: none;
}
.chat-space .chat-space-container {
  position: relative;
  z-index: 1;
  padding: 12px;
  overflow-wrap: break-word;
  height: 475.5px;
  overflow-y: scroll;
  border-radius: 20px;
  margin-bottom: 1rem;
  background: rgba(15, 23, 42, 0.7);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 30px 50px rgba(2, 6, 23, 0.3);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.chat-space .chat-space-container .chat-image {
  border-radius: 18px 18px 0px 18px;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}
.chat-space .chat-space-container .message-name {
  font-size: 0.75rem;
  font-weight: bold;
  color: var(--gray-100);
}
.chat-space .chat-space-container .sender-message,
.chat-space .chat-space-container .recipient-message {
  margin-bottom: 10px;
  position: relative;
}
.chat-space .chat-space-container .sender-message .message-bubble,
.chat-space .chat-space-container .recipient-message .message-bubble {
  padding: 12px 18px;
  font-size: 0.875rem;
  max-width: 78%;
  border-radius: 18px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}
.chat-space .chat-space-container .sender-message {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.chat-space .chat-space-container .sender-message .message-bubble {
  background: linear-gradient(135deg, var(--blue-500), var(--cyan-400));
  color: var(--white);
  border-bottom-left-radius: 4px;
}
.chat-space .chat-space-container .sender-message::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -6px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--blue-500);
}
.chat-space .chat-space-container .recipient-message {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.chat-space .chat-space-container .recipient-message .message-bubble {
  background: white;
  color: var(--black);
  border-bottom-right-radius: 4px;
}
.chat-space .chat-space-container .recipient-message::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -6px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(255, 255, 255, 0.08);
}
.chat-space .chat-space-container .message-time {
  font-size: 0.75rem;
  color: var(--cyan-400);
  margin-top: 4px;
}
.chat-space .chat-space-container .date-line {
  width: 100%;
  text-align: center;
  border-bottom: 1px dashed var(--gray-400);
  line-height: 0.1em;
  margin: 10px 0 20px;
}
.chat-space .chat-space-container .date-line span {
  background: rgba(15, 23, 42, 0.65);
  padding: 0 8px;
  font-size: 0.875rem;
  color: var(--gray-200);
}
.chat-space .chat-space-actions {
  position: sticky;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 12px 12px 12px;
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(8, 42, 99, 0.92), rgba(20, 115, 255, 0.45));
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 35px rgba(2, 6, 23, 0.35);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  z-index: 10;
}
.chat-space .chat-space-actions .open-attach-items {
  cursor: pointer;
  color: var(--cyan-100);
  transition: color 0.2s ease;
}
.chat-space .chat-space-actions .open-attach-items:hover {
  color: var(--white);
}
.chat-space .chat-space-actions .emoji-picker-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 2px;
  z-index: 12;
}
.chat-space .chat-space-actions .emoji-picker-wrap .emoji-button {
  cursor: pointer;
  font-size: 1.125rem;
  background: transparent;
  border: none;
  padding: 4px;
  border-radius: 50%;
  transition: background 0.2s ease;
}
.chat-space .chat-space-actions .emoji-picker-wrap .emoji-button:hover {
  background: rgba(255, 255, 255, 0.08);
}
.chat-space .chat-space-actions .emoji-picker-wrap .emoji-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  position: absolute;
  bottom: 48px;
  left: 0;
  padding: 10px;
  width: 220px;
  background: rgba(15, 23, 42, 0.95);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform: translateY(6px);
  z-index: 20;
}
.chat-space .chat-space-actions .emoji-picker-wrap .emoji-grid.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.chat-space .chat-space-actions .emoji-picker-wrap .emoji-grid button {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  font-size: 1.125rem;
  padding: 4px;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.chat-space .chat-space-actions .emoji-picker-wrap .emoji-grid button:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.15);
}
.chat-space .chat-space-actions .type-message {
  flex: 1;
  min-width: 0;
  margin: 0 6px;
  border-radius: 100px;
  font-size: 0.875rem;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--black);
  padding: 10px 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: box-shadow 0.2s ease;
}
.chat-space .chat-space-actions .type-message:focus {
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}
.chat-space .chat-space-actions .type-message::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.chat-space .chat-space-actions .type-message::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.chat-space .chat-space-actions .message-send-button {
  cursor: pointer;
  height: 2.4rem;
  width: 2.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--cyan-400));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.25);
}
.chat-space .chat-space-actions .message-send-button svg {
  fill: var(--white);
}
.chat-form .chat-form-container {
  padding: 12px;
}
.chat-form .chat-form-container .chat-query-heading {
  font-size: 0.875rem;
  color: var(--gray-800);
}
.chat-form .chat-form-container button {
  font-size: 1rem;
}
.chat-form .chat-form-container .form-label {
  font-size: 0.75rem;
  font-weight: bold;
}
.chat-form .chat-form-container #chat-message-area {
  resize: none;
}
.chat-welcome .chat-welcome-header {
  padding: var(--padding-lg);
}
.chat-welcome .chat-welcome-header .hero-icon {
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  background: var(--blue-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--margin-md);
}
.chat-welcome .chat-welcome-header .hero-icon svg {
  fill: var(--white);
}
.chat-welcome .chat-welcome-header h3 {
  font-size: 2.25rem;
  font-weight: normal;
  margin-bottom: var(--margin-md);
}
.chat-welcome .chat-welcome-header p {
  font-size: 1.125rem;
}
.chat-welcome .chat-welcome-footer {
  position: absolute;
  padding: 190px var(--padding-md) 0px var(--padding-md);
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--cyan-100);
}
.chat-welcome .chat-welcome-footer .status-content {
  width: 100%;
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: bold;
}
.chat-welcome .chat-welcome-footer .hero-content {
  width: 100%;
  font-size: 0.75rem;
}
.chat-welcome .chat-welcome-footer button {
  margin-bottom: var(--margin-md);
  font-size: 1rem;
}
.chat-welcome .chat-welcome-footer .welcome-footer {
  position: initial;
  margin-bottom: var(--margin-sm);
}
.chat-footer {
  width: 100%;
  display: flex;
  position: absolute;
  bottom: 8px;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--gray-600);
}
.chat-footer:hover {
  text-decoration: none;
}
@media (max-width: 576px) {
  .chat-app {
    max-width: 100%;
    bottom: 1rem;
  }
  .chat-bubble-closed {
    display: none;
  }
  .chat-cross-button {
    display: block;
  }
  .chat-list .chat-list-header .chat-list-icons {
    margin-right: var(--margin-xl);
  }
}
.chat-navbar-icon {
  cursor: pointer;
  position: relative;
  background-color: transparent !important;
}
.chat-navbar-icon:hover,
.chat-navbar-icon:focus,
.chat-navbar-icon:active {
  background-color: transparent !important;
}
.chat-navbar-icon > span {
  top: 0 !important;
  padding: 0 3px !important;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}
.chat-navbar-icon .badge {
  background: var(--red-avatar-color);
  color: var(--bg-color);
  position: absolute;
  top: 4px;
  right: 0;
  border-radius: 50%;
  font-size: 9px;
  border: 1px solid var(--red-avatar-color);
  min-width: 14px;
  height: 14px;
  line-height: 14px;
  text-align: center;
  padding: 0 2px;
}
/*# sourceMappingURL=chat.bundle.FX4DNO7N.css.map */
