/* ../../../../../tmp/tmp-2022485-wrny815guJu1/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: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  background: var(--card-bg);
  border-radius: 16px;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  overflow: hidden;
}
.chat-container {
  padding: 0;
  margin: 0;
  height: 100%;
}
.chat-element .btn-primary {
  background-color: var(--chat-btn-color, var(--primary-color)) !important;
  border-color: var(--chat-btn-color, var(--primary-color)) !important;
  color: var(--white) !important;
}
.chat-element .btn-primary:hover,
.chat-element .btn-primary:focus,
.chat-element .btn-primary:active {
  background-color: var(--chat-btn-color, var(--primary-color)) !important;
  border-color: var(--chat-btn-color, var(--primary-color)) !important;
  filter: brightness(0.9);
}
.chat-bubble {
  cursor: pointer;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 100px;
  font-weight: 600;
  display: flex;
  align-items: center;
  width: initial;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}
.chat-bubble svg {
  fill: var(--white);
}
.chat-bubble:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}
.chat-bubble .chat-message-icon {
  margin-right: var(--margin-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-bubble-icon-only {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.chat-bubble-icon-only .chat-bubble-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.chat-bubble-icon-only .chat-bubble-icon-wrap svg {
  width: 1.5rem;
  height: 1.5rem;
}
.chat-cross-button {
  display: none;
}
.chat-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  cursor: pointer;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.15s ease;
}
.chat-close-btn:hover {
  background: var(--control-bg);
  color: var(--text-color);
}
.chat-bubble-closed {
  width: 60px;
  height: 60px;
  position: relative;
  text-align: center;
  border-radius: 50%;
}
.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;
}
.chat-list .chat-list-header .chat-list-icons .user-settings {
  cursor: pointer;
  margin-right: 0px;
  margin-top: 1px;
}
.chat-list .chat-list-header .chat-list-icons .add-room {
  cursor: pointer;
  margin-right: 11px;
  margin-top: 1px;
}
.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;
}
.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-left: 5px solid var(--bg-light-gray);
  border-right: 5px solid var(--bg-light-gray);
  margin: 0 -5px;
}
.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;
}
.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-left: 5px;
  background: var(--blue-500);
  border-radius: 50%;
}
.chat-header {
  display: flex;
  align-items: center;
  padding: 16px 12px;
  border-bottom: 1px solid var(--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;
  transition: background 0.15s ease;
}
.chat-header .chat-back-button:hover {
  background: var(--control-bg);
}
.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(--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-left: 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 0px 13px;
}
.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: 10px 14px;
  font-size: 0.875rem;
  border-radius: 16px 16px 16px 4px;
  max-width: 78%;
  line-height: 1.4;
}
.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: 10px 14px;
  font-size: 0.875rem;
  border-radius: 16px 16px 4px 16px;
  max-width: 78%;
  line-height: 1.4;
}
.chat-space .chat-space-container .message-bubble.ai-draft {
  border: 1px dashed var(--orange-500);
  background: var(--orange-50);
  color: var(--text-color);
}
.chat-space .chat-space-container .ai-draft-badge {
  font-size: 0.75rem;
  font-weight: bold;
  color: var(--orange-700);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.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: 8px 12px 12px 12px;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border-color);
}
.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(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}
.chat-space .chat-space-actions .message-send-button svg {
  fill: var(--white);
}
.chat-space .chat-space-actions .message-send-button:hover {
  transform: scale(1.05);
}
.chat-form {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.chat-form .chat-form-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 8px;
}
.chat-form .chat-form-header .chat-back-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--control-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.15s ease;
  flex-shrink: 0;
  padding: 0;
}
.chat-form .chat-form-header .chat-back-btn:hover {
  background: var(--gray-200);
  color: var(--text-color);
}
.chat-form .chat-form-header .chat-form-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-form .chat-form-header .chat-form-logo {
  height: 40px;
  width: auto;
  max-width: 140px;
  -o-object-fit: contain;
  object-fit: contain;
}
.chat-form .chat-form-header .chat-form-header-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.chat-form .chat-form-header .chat-form-header-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-color);
}
.chat-form .chat-form-container {
  padding: 20px;
  flex: 1 1 0;
  overflow-y: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.chat-form .chat-form-container form {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.chat-form .chat-form-container .chat-form-intro {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.chat-form .chat-form-container .chat-modern-input {
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.875rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: var(--control-bg);
}
.chat-form .chat-form-container .chat-modern-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb, 227, 30, 36), 0.1);
  background: var(--card-bg);
}
.chat-form .chat-form-container .chat-modern-input::-moz-placeholder {
  color: var(--text-light);
}
.chat-form .chat-form-container .chat-modern-input::placeholder {
  color: var(--text-light);
}
.chat-form .chat-form-container textarea.chat-modern-input {
  resize: none;
  min-height: 80px;
  flex: 1;
}
.chat-form .chat-form-container .form-group {
  margin-bottom: 14px;
}
.chat-form .chat-form-container .form-group-grow {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.chat-form .chat-form-container button {
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px;
  transition: all 0.2s ease;
}
.chat-form .chat-form-container button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.chat-welcome {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.chat-welcome .chat-247-ribbon {
  position: absolute;
  top: 26px;
  left: -48px;
  background: var(--primary-color, #E31E24);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  padding: 6px 62px;
  transform: rotate(-45deg);
  transform-origin: center;
  z-index: 10;
  text-align: center;
  letter-spacing: 1.2px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(227, 30, 36, 0.35);
  text-transform: uppercase;
  line-height: 1.2;
}
.chat-welcome .chat-247-ribbon .chat-ribbon-line {
  display: block;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 3.8px;
  opacity: 0.95;
  margin-top: 1px;
}
.chat-welcome .chat-247-ribbon .chat-247-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  animation: pulse247 2s infinite;
  vertical-align: middle;
  margin-right: 3px;
}
@keyframes pulse247 {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }
}
.chat-welcome .chat-welcome-hero {
  padding: 30px 24px 10px;
  text-align: center;
  flex-shrink: 0;
}
.chat-welcome .chat-welcome-hero .chat-welcome-logo {
  margin-bottom: 6px;
}
.chat-welcome .chat-welcome-hero .chat-welcome-logo img.chat-hero-logo {
  height: auto;
  width: auto;
  max-width: 170px;
  max-height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
}
.chat-welcome .chat-welcome-hero .chat-welcome-logo .chat-brand-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.chat-welcome .chat-welcome-hero .chat-welcome-logo .chat-brand-icon svg {
  fill: var(--white);
  width: 28px;
  height: 28px;
}
.chat-welcome .chat-welcome-hero .chat-welcome-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 6px;
  line-height: 1.3;
}
.chat-welcome .chat-welcome-hero .chat-welcome-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 290px;
  margin: 0 auto;
}
.chat-welcome .chat-welcome-actions {
  padding: 14px 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-color);
}
.chat-welcome .chat-welcome-actions button {
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px;
  margin: 4px 0;
  transition: all 0.2s ease;
}
.chat-welcome .chat-welcome-actions button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.chat-welcome .chat-welcome-actions button.cta-effect-glow {
  animation: ctaGlow 2s ease-in-out infinite;
}
.chat-welcome .chat-welcome-actions button.cta-effect-levitate {
  animation: ctaLevitate 3s ease-in-out infinite;
}
.chat-welcome .chat-welcome-actions button.cta-effect-pulse {
  animation: ctaPulse 2s ease-in-out infinite;
}
.chat-welcome .chat-welcome-actions button.cta-effect-bounce {
  animation: ctaBounce 2s ease-in-out infinite;
}
@keyframes ctaGlow {
  0%, 100% {
    box-shadow: 0 0 8px rgba(var(--primary-rgb, 227, 30, 36), 0.3);
  }
  50% {
    box-shadow: 0 0 22px rgba(var(--primary-rgb, 227, 30, 36), 0.6), 0 0 40px rgba(var(--primary-rgb, 227, 30, 36), 0.2);
  }
}
@keyframes ctaLevitate {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  50% {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  }
}
@keyframes ctaPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}
@keyframes ctaBounce {
  0%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(0);
  }
  70% {
    transform: translateY(-3px);
  }
}
.chat-welcome .chat-welcome-footer {
  margin-top: auto;
  padding: 12px 24px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-color);
  border-radius: 0 0 16px 16px;
  flex-shrink: 0;
}
.chat-welcome .chat-welcome-footer::before,
.chat-welcome .chat-welcome-footer::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-color);
}
.chat-welcome .chat-channels-divider {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 2px 0;
}
.chat-welcome .chat-channels-divider::before,
.chat-welcome .chat-channels-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-color);
}
.chat-welcome .chat-channels-divider span {
  font-size: 10px;
  color: var(--text-light);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.chat-welcome .chat-channel-buttons {
  display: flex;
  gap: 8px;
  width: 100%;
  justify-content: center;
}
.chat-welcome .chat-channel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  padding: 9px 8px;
  border-radius: 10px;
  border: 1.5px solid var(--border-color);
  background: var(--card-bg);
  text-decoration: none;
  color: var(--text-color);
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.chat-welcome .chat-channel-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.chat-welcome .chat-channel-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: var(--text-color);
}
.chat-welcome .chat-channel-btn.channel-call {
  border-color: var(--primary-color);
}
.chat-welcome .chat-channel-btn.channel-call svg {
  color: var(--primary-color);
}
.chat-welcome .chat-channel-btn.channel-call:hover {
  background: var(--primary-color);
  color: #fff;
}
.chat-welcome .chat-channel-btn.channel-call:hover svg {
  color: #fff;
}
.chat-welcome .chat-channel-btn.channel-call:hover svg path {
  fill: #fff;
}
.chat-welcome .chat-channel-btn.channel-telegram {
  border-color: #0088cc;
}
.chat-welcome .chat-channel-btn.channel-telegram svg {
  color: #0088cc;
}
.chat-welcome .chat-channel-btn.channel-telegram:hover {
  background: #0088cc;
  color: #fff;
}
.chat-welcome .chat-channel-btn.channel-telegram:hover svg {
  color: #fff;
}
.chat-welcome .chat-channel-btn.channel-telegram:hover svg path {
  fill: #fff;
}
.chat-welcome .chat-channel-btn.channel-whatsapp {
  border-color: #25D366;
}
.chat-welcome .chat-channel-btn.channel-whatsapp svg {
  color: #25D366;
}
.chat-welcome .chat-channel-btn.channel-whatsapp:hover {
  background: #25D366;
  color: #fff;
}
.chat-welcome .chat-channel-btn.channel-whatsapp:hover svg {
  color: #fff;
}
.chat-welcome .chat-channel-btn.channel-whatsapp:hover svg path {
  fill: #fff;
}
.chat-welcome .chat-contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 14px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.2s ease;
}
.chat-welcome .chat-contact-card:hover {
  background: var(--control-bg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: var(--text-color);
}
.chat-welcome .chat-contact-card .chat-contact-card-avatar {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--control-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chat-welcome .chat-contact-card .chat-contact-card-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 2px;
}
.chat-welcome .chat-contact-card .chat-contact-card-avatar span {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-muted);
}
.chat-welcome .chat-contact-card .chat-contact-card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.chat-welcome .chat-contact-card .chat-contact-card-info .chat-contact-card-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-color);
}
.chat-welcome .chat-contact-card .chat-contact-card-info .chat-contact-card-detail {
  font-size: 11px;
  color: var(--text-muted);
}
.chat-welcome .chat-contact-card .chat-contact-card-arrow {
  flex-shrink: 0;
  color: var(--text-muted);
}
.chat-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}
.chat-status-badge .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-400);
  flex-shrink: 0;
}
.chat-status-badge.online .status-dot {
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(var(--green-rgb, 40, 167, 69), 0.2);
}
.chat-status-badge.offline .status-dot {
  background: var(--orange);
}
.chat-status-badge.sm {
  font-size: 0.75rem;
  gap: 5px;
}
.chat-status-badge.sm .status-dot {
  width: 6px;
  height: 6px;
}
.chat-welcome-footer-link {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
}
.chat-welcome-footer-link:hover {
  color: var(--text-color);
  text-decoration: underline;
}
.chat-form-footer {
  padding: 8px 20px 12px;
  text-align: center;
  border-top: 1px solid var(--border-color);
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .chat-app {
    max-width: 100%;
    bottom: 1rem;
  }
  .chat-list .chat-list-header .chat-list-icons {
    margin-right: var(--margin-xl);
  }
}
.chat-navbar-icon {
  cursor: pointer;
}
.chat-navbar-icon .badge {
  background: var(--red-avatar-color);
  color: var(--bg-color);
  position: relative;
  top: -10px;
  left: -10px;
  border-radius: 50%;
  font-size: 9px;
  border: 1px solid var(--red-avatar-color);
}
/*# sourceMappingURL=chat.bundle.5G4LQW4S.css.map */
