/* [project]/src/styles/workspace-shell.css [app-client] (css) */
.panel-workspace-shell {
  --phone-dock-width: 380px;
  background: #f8fafc;
  grid-template-columns: 1fr 0;
  width: 100vw;
  height: 100vh;
  transition: grid-template-columns .18s;
  display: grid;
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.panel-workspace-shell.is-phone-open {
  grid-template-columns: minmax(0, 1fr) var(--phone-dock-width);
}

.panel-workspace-shell__workspace {
  background: #fcfcfd;
  min-width: 0;
  min-height: 0;
}

.panel-workspace-shell__frame {
  background: #fcfcfd;
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.panel-workspace-shell__phone {
  background: #fff;
  border-left: 1px solid #dbe3f0;
  min-width: 0;
  height: 100vh;
  overflow: hidden;
}

@media (max-width: 900px) {
  .panel-workspace-shell, .panel-workspace-shell.is-phone-open {
    grid-template-columns: 1fr;
  }

  .panel-workspace-shell__phone {
    z-index: 960;
    width: min(var(--phone-dock-width), 100vw);
    transition: transform .18s;
    position: fixed;
    bottom: 0;
    right: 0;
    transform: translateX(100%);
    box-shadow: -18px 0 48px #0f172a38;
  }

  .panel-workspace-shell.is-phone-open .panel-workspace-shell__phone {
    transform: translateX(0);
  }
}

/* [project]/src/styles/customer-call.css [app-client] (css) */
.customer-call-modal {
  gap: 14px;
  display: grid;
}

.customer-call-modal__info, .customer-call-modal__error, .customer-call-modal__customer {
  border-radius: 7px;
  padding: 10px 12px;
}

.customer-call-modal__info {
  color: #1e3a8a;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  display: grid;
}

.customer-call-modal__info i {
  color: #2563eb;
  margin-top: 2px;
}

.customer-call-modal__customer {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  gap: 2px;
  display: grid;
}

.customer-call-modal__customer span {
  color: #64748b;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
}

.customer-call-modal__customer strong {
  color: #0f1f3d;
  font-size: 13px;
}

.customer-call-modal__error {
  color: #be123c;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  display: flex;
}

.customer-call-phone {
  width: min(380px, 100vw - 24px);
}

.customer-call-phone__status {
  grid-template-columns: 10px 1fr auto;
}

.customer-call-phone__notice {
  color: #1e3a8a;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  margin: 0 16px 12px;
  padding: 10px 11px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  display: grid;
}

.customer-call-phone__notice svg {
  color: #2563eb;
  margin-top: 2px;
}

.customer-call-phone__customer {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  gap: 4px;
  margin: 0 16px 12px;
  padding: 11px 12px;
  display: grid;
}

.customer-call-phone__customer span {
  color: #64748b;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
}

.customer-call-phone__customer strong {
  color: #0f1f3d;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  overflow: hidden;
}

.customer-call-phone__field {
  padding-bottom: 10px;
}

.customer-call-phone__field span {
  color: #64748b;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
}

.customer-call-service {
  z-index: 10050;
  pointer-events: auto;
  background: #0f172a61;
  justify-content: center;
  align-items: center;
  padding: 18px;
  display: flex;
  position: fixed;
  inset: 0;
}

.customer-call-service__panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  width: min(560px, 100%);
  overflow: hidden;
  box-shadow: 0 26px 72px #0f172a47;
}

.customer-call-service__header {
  border-bottom: 1px solid #edf1f7;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  display: flex;
}

.customer-call-service__header span {
  color: #64748b;
  margin-bottom: 3px;
  font-size: 11px;
  font-weight: 700;
  display: block;
}

.customer-call-service__header strong {
  color: #0f1f3d;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  display: block;
}

.customer-call-service__header button {
  color: #64748b;
  cursor: pointer;
  background: #fff;
  border: 1px solid #d8e1ee;
  border-radius: 7px;
  width: 36px;
  height: 36px;
}

.customer-call-service__hero {
  border-bottom: 1px solid #edf1f7;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 13px;
  padding: 18px;
  display: grid;
}

.customer-call-service__icon {
  color: #2563eb;
  background: #eef4ff;
  border-radius: 8px;
  place-items: center;
  width: 46px;
  height: 46px;
  font-size: 18px;
  display: grid;
}

.customer-call-service__hero strong {
  color: #0f1f3d;
  font-size: 15px;
  font-weight: 800;
  display: block;
}

.customer-call-service__hero p {
  color: #475569;
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
}

.customer-call-service__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px 18px 18px;
  display: grid;
}

.customer-call-service__grid div {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  align-content: start;
  gap: 7px;
  min-height: 118px;
  padding: 12px;
  display: grid;
}

.customer-call-service__grid svg {
  color: #2563eb;
  font-size: 14px;
}

.customer-call-service__grid strong {
  color: #0f1f3d;
  font-size: 12px;
  font-weight: 800;
}

.customer-call-service__grid span {
  color: #64748b;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
}

.customer-call-service__footer {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-radius: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin: 0 18px 18px;
  padding: 12px 13px;
  display: grid;
}

.customer-call-service__links {
  justify-content: flex-end;
  gap: 8px;
  margin: -4px 18px 14px;
  display: flex;
}

.customer-call-service__links button {
  color: #2563eb;
  cursor: pointer;
  background: #fff;
  border: 1px solid #d8e1ee;
  border-radius: 7px;
  height: 32px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 800;
}

.customer-call-service__submodal {
  z-index: 10060;
  background: #0f172a7a;
  justify-content: center;
  align-items: center;
  padding: 18px;
  display: flex;
  position: fixed;
  inset: 0;
}

.customer-call-service__subpanel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  width: min(680px, 100%);
  max-height: min(720px, 100vh - 36px);
  overflow: hidden;
  box-shadow: 0 28px 78px #0f172a52;
}

.customer-call-service__subheader {
  border-bottom: 1px solid #edf1f7;
  justify-content: space-between;
  align-items: center;
  padding: 13px 15px;
  display: flex;
}

.customer-call-service__subheader strong {
  color: #0f1f3d;
  font-size: 14px;
  font-weight: 800;
}

.customer-call-service__subheader button {
  color: #64748b;
  cursor: pointer;
  background: #fff;
  border: 1px solid #d8e1ee;
  border-radius: 7px;
  width: 32px;
  height: 32px;
}

.customer-call-service__subpanel iframe {
  aspect-ratio: 16 / 9;
  border: 0;
  width: 100%;
  display: block;
}

.customer-call-service__faq {
  max-height: calc(100vh - 150px);
  padding: 12px 15px 16px;
  overflow: auto;
}

.customer-call-service__faq details {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 8px;
}

.customer-call-service__faq summary {
  cursor: pointer;
  color: #0f1f3d;
  padding: 11px 12px;
  font-size: 12px;
  font-weight: 800;
}

.customer-call-service__faq p {
  color: #475569;
  margin: 0;
  padding: 0 12px 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.customer-call-service__footer span {
  color: #be123c;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.customer-call-service__footer button {
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  background: #2563eb;
  border: 1px solid #2563eb;
  border-radius: 7px;
  height: 34px;
  padding: 0 13px;
  font-size: 12px;
  font-weight: 800;
}

.customer-call-service__footer button:disabled {
  opacity: .65;
  cursor: wait;
}

.customer-call-service__feedback {
  color: #047857;
  text-align: right;
  margin: -8px 18px 18px;
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 640px) {
  .customer-call-service {
    align-items: flex-end;
    padding: 12px;
  }

  .customer-call-service__grid, .customer-call-service__footer {
    grid-template-columns: 1fr;
  }

  .customer-call-service__footer button {
    width: 100%;
  }
}

/* [project]/src/components/ai/Maskot.module.css [app-client] (css) */
.Maskot-module__y49bxa__root {
  z-index: 9000;
  pointer-events: auto;
  visibility: visible;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  display: flex;
  position: fixed;
  bottom: 28px;
  right: 28px;
}

body.mobile-modal-open .Maskot-module__y49bxa__root {
  display: flex !important;
}

.Maskot-module__y49bxa__avatar {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  touch-action: none;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  font-size: 26px;
  transition: transform .18s, box-shadow .18s;
  display: flex;
  position: relative;
  box-shadow: 0 4px 18px #4f46e573;
}

.Maskot-module__y49bxa__avatar:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px #4f46e58c;
}

.Maskot-module__y49bxa__avatarLoading {
  animation: 1.4s ease-in-out infinite Maskot-module__y49bxa__avatarPulse;
}

@keyframes Maskot-module__y49bxa__avatarPulse {
  0%, 100% {
    box-shadow: 0 4px 18px #4f46e573;
  }

  50% {
    box-shadow: 0 4px 32px #7c3aedbf;
  }
}

.Maskot-module__y49bxa__notifDot {
  background: #ef4444;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  animation: 1.2s infinite Maskot-module__y49bxa__notifBounce;
  position: absolute;
  top: 1px;
  right: 1px;
}

@keyframes Maskot-module__y49bxa__notifBounce {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }
}

.Maskot-module__y49bxa__proactiveBubble {
  cursor: pointer;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px 14px 0;
  max-width: 260px;
  padding: 12px 36px 12px 14px;
  animation: .28s cubic-bezier(.34, 1.56, .64, 1) Maskot-module__y49bxa__popIn;
  position: relative;
  box-shadow: 0 4px 20px #0000001c;
}

.Maskot-module__y49bxa__proactiveBubble:hover {
  background: #fafafa;
}

.Maskot-module__y49bxa__proactiveBubble p {
  color: #374151;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.Maskot-module__y49bxa__closeBubble {
  color: #9ca3af;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-size: 18px;
  line-height: 1;
  transition: color .15s;
  position: absolute;
  top: 6px;
  right: 10px;
}

.Maskot-module__y49bxa__closeBubble:hover {
  color: #6b7280;
}

@keyframes Maskot-module__y49bxa__popIn {
  from {
    opacity: 0;
    transform: translateY(12px)scale(.94);
  }

  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

.Maskot-module__y49bxa__window {
  background: #fff;
  border-radius: 18px;
  flex-direction: column;
  width: 340px;
  height: 480px;
  animation: .22s cubic-bezier(.34, 1.56, .64, 1) Maskot-module__y49bxa__popIn;
  display: flex;
  overflow: hidden;
  box-shadow: 0 10px 48px #00000029;
}

.Maskot-module__y49bxa__header {
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
  touch-action: none;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  display: flex;
}

.Maskot-module__y49bxa__header:active {
  cursor: grabbing;
}

.Maskot-module__y49bxa__headerLeft {
  align-items: center;
  gap: 10px;
  display: flex;
}

.Maskot-module__y49bxa__headerIcon {
  font-size: 22px;
}

.Maskot-module__y49bxa__headerTitle {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.Maskot-module__y49bxa__headerSub {
  color: #ffffffb8;
  margin-top: 1px;
  font-size: 11px;
}

.Maskot-module__y49bxa__closeBtn {
  color: #fff;
  cursor: pointer;
  background: #ffffff2e;
  border: none;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  padding: 0;
  font-size: 17px;
  line-height: 1;
  transition: background .15s;
  display: flex;
}

.Maskot-module__y49bxa__closeBtn:hover {
  background: #ffffff4d;
}

.Maskot-module__y49bxa__messages {
  scroll-behavior: smooth;
  flex-direction: column;
  flex: 1;
  gap: 8px;
  padding: 14px 12px;
  display: flex;
  overflow-y: auto;
}

.Maskot-module__y49bxa__messages::-webkit-scrollbar {
  width: 4px;
}

.Maskot-module__y49bxa__messages::-webkit-scrollbar-track {
  background: none;
}

.Maskot-module__y49bxa__messages::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 2px;
}

.Maskot-module__y49bxa__emptyState {
  text-align: center;
  color: #6b7280;
  margin: auto;
  padding: 24px 16px;
  font-size: 13px;
  line-height: 1.6;
}

.Maskot-module__y49bxa__emptyState .Maskot-module__y49bxa__emptyIcon {
  margin-bottom: 10px;
  font-size: 32px;
}

.Maskot-module__y49bxa__emptyState p {
  margin: 0 0 4px;
}

.Maskot-module__y49bxa__msg {
  word-break: break-word;
  white-space: pre-wrap;
  border-radius: 14px;
  max-width: 88%;
  padding: 9px 13px;
  font-size: 13px;
  line-height: 1.55;
}

.Maskot-module__y49bxa__msg.Maskot-module__y49bxa__user {
  color: #fff;
  background: #4f46e5;
  border-radius: 14px 14px 3px;
  align-self: flex-end;
}

.Maskot-module__y49bxa__msg.Maskot-module__y49bxa__assistant {
  color: #1f2937;
  background: #f3f4f6;
  border-radius: 14px 14px 14px 3px;
  align-self: flex-start;
}

.Maskot-module__y49bxa__msg.Maskot-module__y49bxa__streaming {
  background: #f3f4f6;
}

.Maskot-module__y49bxa__actionLink {
  color: #3730a3;
  cursor: pointer;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  border-radius: 8px;
  align-items: center;
  gap: 7px;
  width: fit-content;
  max-width: 100%;
  margin-top: 8px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
  display: inline-flex;
}

.Maskot-module__y49bxa__actionLink:hover {
  background: #e0e7ff;
  border-color: #a5b4fc;
}

.Maskot-module__y49bxa__cursor {
  vertical-align: middle;
  background: #4f46e5;
  border-radius: 1px;
  width: 2px;
  height: 13px;
  margin-left: 2px;
  animation: .9s step-end infinite Maskot-module__y49bxa__blink;
  display: inline-block;
}

@keyframes Maskot-module__y49bxa__blink {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.Maskot-module__y49bxa__quickBtns {
  flex-wrap: wrap;
  flex-shrink: 0;
  gap: 6px;
  padding: 0 12px 10px;
  display: flex;
}

.Maskot-module__y49bxa__quickBtns button {
  color: #4f46e5;
  cursor: pointer;
  white-space: nowrap;
  background: #eff0ff;
  border: 1px solid #c7d2fe;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  transition: background .15s;
}

.Maskot-module__y49bxa__quickBtns button:hover {
  background: #e0e7ff;
}

.Maskot-module__y49bxa__inputRow {
  border-top: 1px solid #f0f0f0;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  display: flex;
}

.Maskot-module__y49bxa__input {
  background: #fafafa;
  border: 1.5px solid #e5e7eb;
  border-radius: 22px;
  outline: none;
  flex: 1;
  padding: 8px 14px;
  font-family: inherit;
  font-size: 13px;
  transition: border-color .18s;
}

.Maskot-module__y49bxa__input:focus {
  background: #fff;
  border-color: #4f46e5;
}

.Maskot-module__y49bxa__input:disabled {
  opacity: .6;
}

.Maskot-module__y49bxa__sendBtn {
  color: #fff;
  cursor: pointer;
  background: #4f46e5;
  border: none;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  min-width: 36px;
  height: 36px;
  font-size: 17px;
  transition: background .15s, transform .12s;
  display: flex;
}

.Maskot-module__y49bxa__sendBtn:hover:not(:disabled) {
  background: #4338ca;
  transform: scale(1.05);
}

.Maskot-module__y49bxa__sendBtn:disabled {
  cursor: not-allowed;
  background: #c7d2fe;
}

.Maskot-module__y49bxa__loadingDot {
  background: #fff;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  animation: .9s ease-in-out infinite Maskot-module__y49bxa__dotPulse;
}

@keyframes Maskot-module__y49bxa__dotPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(.75);
  }
}

/* [project]/src/styles/sidebar.css [app-client] (css) */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

/* [project]/src/styles/admin-app-banner.css [app-client] (css) */
.admin-app-banner {
  color: #1e3a8a;
  background: linear-gradient(135deg, #eff6ff 0%, #eef2ff 100%);
  border: 1px solid #c7d2fe;
  border-radius: 12px;
  align-items: center;
  gap: 14px;
  margin: 12px 16px 0;
  padding: 12px 16px;
  display: flex;
}

.admin-app-banner__icon {
  color: #fff;
  background: #2f7bff;
  border-radius: 10px;
  flex-shrink: 0;
  place-items: center;
  width: 42px;
  height: 42px;
  font-size: 20px;
  display: grid;
}

.admin-app-banner__body {
  flex: 1;
  min-width: 0;
}

.admin-app-banner__title {
  color: #1e3a8a;
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: 700;
}

.admin-app-banner__sub {
  color: #334155;
  font-size: 12.5px;
  line-height: 1.4;
}

.admin-app-banner__meta {
  color: #64748b;
  margin-left: 4px;
  font-size: 11.5px;
}

.admin-app-banner__actions {
  flex-shrink: 0;
  gap: 8px;
  display: flex;
}

.admin-app-banner__btn {
  cursor: pointer;
  white-space: nowrap;
  border: none;
  border-radius: 8px;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .15s, transform .1s;
  display: inline-flex;
}

.admin-app-banner__btn--primary {
  color: #fff;
  background: #2f7bff;
}

.admin-app-banner__btn--primary:hover {
  opacity: .9;
}

.admin-app-banner__btn--ghost {
  color: #475569;
  background: none;
  border: 1px solid #cbd5e1;
}

.admin-app-banner__btn--ghost:hover {
  background: #fff;
}

@media (max-width: 640px) {
  .admin-app-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 10px 12px 0;
  }

  .admin-app-banner__actions {
    width: 100%;
  }

  .admin-app-banner__btn {
    flex: 1;
    justify-content: center;
  }
}

/* [project]/src/styles/demo-onboarding-tour.css [app-client] (css) */
.demo-onboarding-tour {
  z-index: 2147482000;
  pointer-events: none;
  position: fixed;
  inset: 0;
}

.demo-onboarding-tour:before {
  content: "";
  background: #11182747;
  position: absolute;
  inset: 0;
}

.demo-onboarding-tour:not(.demo-onboarding-tour--welcome):before {
  display: none;
}

.demo-onboarding-tour--welcome {
  pointer-events: auto;
  place-items: center;
  display: grid;
}

.demo-onboarding-tour__welcome-card {
  color: #111827;
  pointer-events: auto;
  background: #fff;
  border: 1px solid #4f5dff2e;
  border-radius: 8px;
  width: min(420px, 100vw - 32px);
  padding: 24px;
  position: relative;
  box-shadow: 0 22px 64px #11182733;
}

.demo-onboarding-tour__welcome-card h2 {
  letter-spacing: 0;
  margin: 14px 0 10px;
  font-size: 22px;
  font-weight: 850;
  line-height: 1.2;
}

.demo-onboarding-tour__welcome-card p {
  color: #5b6475;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.demo-onboarding-tour__spotlight {
  background: none;
  border: 2px solid #4f5dff;
  border-radius: 8px;
  position: fixed;
  box-shadow: 0 0 0 9999px #11182747, 0 12px 36px #4f5dff3d;
}

.demo-onboarding-tour__card {
  color: #111827;
  pointer-events: auto;
  background: #fff;
  border: 1px solid #4f5dff2e;
  border-radius: 8px;
  width: min(344px, 100vw - 32px);
  min-height: 190px;
  padding: 18px;
  position: fixed;
  box-shadow: 0 18px 48px #1118272e;
}

.demo-onboarding-tour__card:before {
  content: "";
  background: #fff;
  width: 14px;
  height: 14px;
  position: absolute;
  transform: rotate(45deg);
}

.demo-onboarding-tour__card--bottom:before {
  border-top: 1px solid #4f5dff2e;
  border-left: 1px solid #4f5dff2e;
  top: -7px;
  left: 26px;
}

.demo-onboarding-tour__card--top:before {
  border-bottom: 1px solid #4f5dff2e;
  border-right: 1px solid #4f5dff2e;
  bottom: -7px;
  left: 26px;
}

.demo-onboarding-tour__card--right:before, .demo-onboarding-tour__card--center:before {
  border-bottom: 1px solid #4f5dff2e;
  border-left: 1px solid #4f5dff2e;
  top: 28px;
  left: -7px;
}

.demo-onboarding-tour__card--left:before {
  border-top: 1px solid #4f5dff2e;
  border-right: 1px solid #4f5dff2e;
  top: 28px;
  right: -7px;
}

.demo-onboarding-tour__step {
  color: #4f5dff;
  background: #4f5dff1a;
  border-radius: 999px;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
}

.demo-onboarding-tour__card h2 {
  letter-spacing: 0;
  margin: 12px 0 8px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.demo-onboarding-tour__card p {
  color: #5b6475;
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.demo-onboarding-tour__actions {
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
  display: flex;
}

.demo-onboarding-tour__actions button {
  color: #fff;
  cursor: pointer;
  background: #4f5dff;
  border: 0;
  border-radius: 7px;
  height: 34px;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 800;
}

.demo-onboarding-tour__actions button:hover {
  background: #3f4df0;
}

.demo-onboarding-tour__actions button:disabled {
  color: #7b8498;
  cursor: not-allowed;
  background: #d8dced;
}

.demo-onboarding-tour__actions .demo-onboarding-tour__secondary {
  color: #515b73;
  background: #fff;
  border: 1px solid #d8dced;
}

.demo-onboarding-tour__actions .demo-onboarding-tour__secondary:hover {
  background: #f7f8fd;
}

@media (max-width: 720px) {
  .demo-onboarding-tour__card {
    right: 16px;
    left: 16px !important;
  }

  .demo-onboarding-tour__actions {
    flex-direction: column;
  }
}

.panel-sidebar__tour-start {
  color: #4f5dff;
  cursor: pointer;
  background: #4f5dff14;
  border: 1px solid #4f5dff33;
  border-radius: 7px;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 38px;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 800;
  transition: background .15s, border-color .15s, transform .15s;
  display: flex;
}

.panel-sidebar__tour-start:hover {
  background: #4f5dff24;
  border-color: #4f5dff57;
  transform: translateY(-1px);
}

.panel-sidebar__tour-start-icon {
  justify-content: center;
  width: 18px;
  font-size: 14px;
  display: inline-flex;
}

.panel-sidebar__tour-start-text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/*# sourceMappingURL=src_4de6daa4._.css.map*/