/* ../../../../../tmp/tmp-116814-yQRjuLU6cOw2/chat/chat/public/scss/chat.bundle.css */
.chat-app {
  position: fixed;
  bottom: 24px;
  left: 0px;
  right: auto;
  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-app.chat-rtl {
  left: auto;
  right: 0;
  align-items: flex-start;
}
.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(--primary-color);
  color: var(--white);
  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-left: var(--margin-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
#chat-bubble.has-unread {
  position: relative;
}
#chat-bubble.has-unread::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red-avatar-color);
  box-shadow: 0 0 0 2px var(--bg-color);
}
.chat-floating-button {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(-135deg, var(--primary-color), var(--blue-500));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
  margin-top: 0.5rem;
  padding: 0;
  position: relative;
  align-self: flex-end;
  overflow: visible;
  gap: 0;
  opacity: 0;
  transform: translateY(16px) scale(0.92);
  -webkit-animation: chat-button-pop 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards, chat-button-breathe 4s ease-in-out 1s infinite;
  animation: chat-button-pop 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards, chat-button-breathe 4s ease-in-out 1s infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  isolation: isolate;
}
.chat-floating-button::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 65%);
  opacity: 0;
  -webkit-animation: chat-button-glow 2.6s ease-out 0.6s infinite;
  animation: chat-button-glow 2.6s ease-out 0.6s infinite;
  z-index: -1;
}
.chat-floating-button .chat-floating-button__pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.18);
  opacity: 0;
  -webkit-animation: chat-button-pulse 2.8s ease-out 1.2s infinite;
  animation: chat-button-pulse 2.8s ease-out 1.2s infinite;
  z-index: 0;
}
.chat-floating-button .chat-floating-button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  position: relative;
  z-index: 1;
  -webkit-animation: chat-icon-drift 3.2s ease-in-out 1.4s infinite;
  animation: chat-icon-drift 3.2s ease-in-out 1.4s infinite;
}
.chat-floating-button svg {
  fill: none;
  stroke: currentColor;
}
.chat-floating-button .badge {
  background: var(--red-avatar-color);
  color: var(--bg-color);
  position: absolute;
  top: -4px;
  left: -4px;
  border-radius: 50%;
  font-size: 9px;
  border: 1px solid var(--red-avatar-color);
  min-width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: transform 0.2s ease, opacity 0.2s ease;
  pointer-events: none;
}
.chat-floating-button.has-unread .badge {
  opacity: 1;
  transform: scale(1);
}
.chat-floating-button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.25);
}
.chat-floating-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(55, 125, 255, 0.25);
}
.chat-preview-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 0.75rem;
  gap: 0.35rem;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.chat-preview-stack.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.chat-preview-card {
  min-width: 220px;
  max-width: 320px;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: var(--card-bg);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
  border: 1px solid var(--dark-border-color);
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.chat-preview-card.is-entering {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.chat-preview-card.is-leaving {
  opacity: 0;
  transform: translateY(-6px) scale(0.96);
}
.chat-preview-card__room {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  color: var(--text-color);
}
.chat-preview-card__message {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.chat-app.chat-rtl .chat-preview-stack {
  align-items: flex-start;
}
.chat-app.chat-rtl .chat-floating-button {
  align-self: flex-end;
  margin-right: auto;
  margin-left: 0;
}
.chat-app.chat-rtl .chat-floating-button .badge {
  left: auto;
  right: -4px;
}
@-webkit-keyframes chat-button-pop {
  0% {
    opacity: 0;
    transform: translateY(26px) scale(0.85);
  }
  70% {
    opacity: 1;
    transform: translateY(-6px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes chat-button-pop {
  0% {
    opacity: 0;
    transform: translateY(26px) scale(0.85);
  }
  70% {
    opacity: 1;
    transform: translateY(-6px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@-webkit-keyframes chat-button-pulse {
  0% {
    opacity: 0.35;
    transform: scale(0.7);
  }
  60% {
    opacity: 0;
    transform: scale(1.4);
  }
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}
@keyframes chat-button-pulse {
  0% {
    opacity: 0.35;
    transform: scale(0.7);
  }
  60% {
    opacity: 0;
    transform: scale(1.4);
  }
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}
@-webkit-keyframes chat-button-glow {
  0% {
    opacity: 0.2;
    transform: scale(0.9);
  }
  80% {
    opacity: 0;
    transform: scale(1.35);
  }
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}
@keyframes chat-button-glow {
  0% {
    opacity: 0.2;
    transform: scale(0.9);
  }
  80% {
    opacity: 0;
    transform: scale(1.35);
  }
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}
@-webkit-keyframes chat-button-breathe {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.02);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
@keyframes chat-button-breathe {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.02);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
@-webkit-keyframes chat-icon-drift {
  0% {
    transform: translateY(0);
  }
  60% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes chat-icon-drift {
  0% {
    transform: translateY(0);
  }
  60% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}
.chat-cross-button {
  display: none;
  color: var(--gray-700);
  cursor: pointer;
  position: absolute;
  top: 12px;
  left: 8px;
}
.chat-bubble-closed {
  width: 60px;
  height: 60px;
  position: relative;
  text-align: center;
}
.chat-bubble-closed .cross-icon {
  width: 100%;
}
.chat-list .chat-list-header {
  padding: 12px 12px 0 12px;
  justify-content: space-between;
  display: flex;
}
.chat-list .chat-list-header .chat-list-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-list .chat-list-header .chat-list-icons .refresh-rooms {
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  color: var(--text-muted);
  background: transparent;
}
.chat-list .chat-list-header .chat-list-icons .refresh-rooms:hover {
  background: var(--bg-light-gray);
  color: var(--primary-color);
  transform: scale(1.1);
}
.chat-list .chat-list-header .chat-list-icons .refresh-rooms:active {
  transform: scale(0.95);
}
.chat-list .chat-list-header .chat-list-icons .refresh-rooms.rotating {
  -webkit-animation: spin 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: spin 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  color: var(--primary-color);
  background: var(--control-bg);
  pointer-events: none;
}
.chat-list .chat-list-header .chat-list-icons .add-room {
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  color: var(--text-muted);
  background: transparent;
}
.chat-list .chat-list-header .chat-list-icons .add-room:hover {
  background: var(--bg-light-gray);
  color: var(--primary-color);
  transform: scale(1.1);
}
.chat-list .chat-list-header .chat-list-icons .add-room:active {
  transform: scale(0.95);
}
.chat-list .chat-list-header .chat-list-icons .user-settings {
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  color: var(--text-muted);
}
.chat-list .chat-list-header .chat-list-icons .user-settings:hover {
  background: var(--bg-light-gray);
  color: var(--primary-color);
}
@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.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-left: 10px;
  height: 100%;
  margin-right: 12px;
  z-index: 3;
}
.chat-list .chat-search .chat-search-box {
  width: 100%;
  border-radius: 6px;
  padding-right: 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;
}
.chat-list .chat-rooms-container .chat-room {
  display: flex;
  font-size: 0.875rem;
  cursor: pointer;
  position: relative;
  padding: 10px 0;
  border-radius: 8px;
}
.chat-list .chat-rooms-container .chat-room:hover {
  background: var(--bg-light-gray);
  border-right: 5px solid var(--bg-light-gray);
  border-left: 5px solid var(--bg-light-gray);
  margin: 0 -5px;
}
.chat-list .chat-rooms-container .chat-room .chat-profile-info {
  margin-right: var(--margin-md);
  margin-left: auto;
}
.chat-list .chat-rooms-container .chat-room .chat-profile-info .chat-name {
  font-weight: bold;
  display: flex;
  align-items: center;
}
.chat-list .chat-rooms-container .chat-room .chat-date {
  color: var(--text-muted);
}
.chat-list .chat-rooms-container .chat-room .chat-latest {
  width: 4px;
  height: 4px;
  margin-right: 5px;
  background: var(--blue-500);
  border-radius: 50%;
}
.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-left: 10px;
  cursor: pointer;
}
.chat-header .chat-profile-info {
  margin-right: var(--margin-md);
  font-size: 0.875rem;
  margin-left: auto;
}
.chat-header .chat-profile-info .chat-profile-name {
  color: var(--text-color);
  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-right: 3px;
  background: var(--green);
}
.chat-space {
  height: 100%;
}
.chat-space .chat-space-container {
  padding: 12px;
  overflow-wrap: break-word;
  height: 475.5px;
  overflow-y: scroll;
}
.chat-space .chat-space-container .chat-image {
  border-radius: 13px 13px 13px 0px;
}
.chat-space .chat-space-container .message-name {
  font-size: 0.75rem;
  font-weight: bold;
}
.chat-space .chat-space-container .sender-message {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 5px;
}
.chat-space .chat-space-container .sender-message .message-bubble {
  background: var(--primary-color);
  color: var(--white);
  padding: 8px;
  font-size: 0.875rem;
  border-radius: 13px 13px 0px 13px;
  max-width: 78%;
}
.chat-space .chat-space-container .recipient-message {
  margin-bottom: 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.chat-space .chat-space-container .recipient-message .message-bubble {
  background: var(--control-bg);
  color: var(--text-color);
  padding: 8px;
  font-size: 0.875rem;
  border-radius: 13px 13px 13px 0px;
  max-width: 78%;
}
.chat-space .chat-space-container .message-time {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.chat-space .chat-space-container .date-line {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--gray-400);
  line-height: 0.1em;
  margin: 10px 0 20px;
}
.chat-space .chat-space-container .date-line span {
  background: var(--card-bg);
  padding: 0 8px;
  font-size: 0.875rem;
}
.chat-space .chat-space-actions {
  padding: 3px 12px 12px 12px;
  display: flex;
  align-items: center;
}
.chat-space .chat-space-actions .open-attach-items {
  cursor: pointer;
}
.chat-space .chat-space-actions .type-message {
  margin: 0 10px;
  border-radius: 100px;
  font-size: 0.875rem;
}
.chat-space .chat-space-actions .message-send-button {
  cursor: pointer;
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  background: var(--blue-500);
  display: flex;
  align-items: center;
  justify-content: center;
}
.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-left: var(--margin-xl);
  }
}
/*# sourceMappingURL=chat.bundle.CKMX3GMH.css.map */
