.LeadsFunnelLeadCard {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  height: var(--leads-funnel-card-height, 112px);
  min-width: 0;
  padding: 7px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.LeadsFunnelLeadCard:hover {
  border-color: #d9e8ff;
  background: #f9fafb;
  color: inherit;
  text-decoration: none;
}
.LeadsFunnelLeadCard:focus-visible {
  outline: 2px solid #1677ff;
  outline-offset: 2px;
}
.LeadsFunnelLeadCard--draggable .LeadsFunnelLeadCard__header {
  padding-right: 18px;
}
.LeadsFunnelLeadCard__drag-handle {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: rgba(0, 0, 0, 0.25);
  cursor: grab;
  opacity: 0;
  transition: opacity 0.15s ease, color 0.15s ease, background-color 0.15s ease;
  touch-action: none;
}
.LeadsFunnelLeadCard__drag-handle .anticon {
  font-size: 12px;
}
.LeadsFunnelLeadCard__drag-handle:hover {
  color: rgba(0, 0, 0, 0.55);
  background: #f0f0f0;
}
.LeadsFunnelLeadCard__drag-handle:active {
  cursor: grabbing;
}
.LeadsFunnelLeadCard__drag-handle:focus-visible {
  opacity: 1;
  outline: 2px solid #1677ff;
  outline-offset: 1px;
}
.LeadsFunnelLeadCard:hover .LeadsFunnelLeadCard__drag-handle {
  opacity: 1;
}
.LeadsFunnelLeadCard--placeholder {
  border-style: dashed;
  border-color: #91caff;
  background: #f5faff;
}
.LeadsFunnelLeadCard--placeholder > * {
  visibility: hidden;
}
.LeadsFunnelLeadCard--overlay {
  border-color: #91caff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  cursor: grabbing;
}
.LeadsFunnelLeadCard--overlay .LeadsFunnelLeadCard__drag-handle {
  opacity: 1;
  color: rgba(0, 0, 0, 0.55);
}
.LeadsFunnelLeadCard__header {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.LeadsFunnelLeadCard__avatar {
  flex: none;
}
.LeadsFunnelLeadCard__identity {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.LeadsFunnelLeadCard__name, .LeadsFunnelLeadCard__phone, .LeadsFunnelLeadCard__time, .LeadsFunnelLeadCard__message-text, .LeadsFunnelLeadCard__meta-item {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.LeadsFunnelLeadCard__name {
  color: rgba(0, 0, 0, 0.88);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
}
.LeadsFunnelLeadCard__phone {
  color: rgba(0, 0, 0, 0.45);
  font-size: 10px;
  line-height: 13px;
}
.LeadsFunnelLeadCard__time {
  max-width: 58px;
  color: rgba(0, 0, 0, 0.38);
  font-size: 10px;
  line-height: 13px;
}
.LeadsFunnelLeadCard__message {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}
.LeadsFunnelLeadCard__integration {
  flex: none;
}
.LeadsFunnelLeadCard__message-text {
  min-width: 0;
  color: rgba(0, 0, 0, 0.55);
  font-size: 11px;
  line-height: 14px;
}
.LeadsFunnelLeadCard__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.LeadsFunnelLeadCard__meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  color: rgba(0, 0, 0, 0.45);
  font-size: 10px;
  line-height: 13px;
}
.LeadsFunnelLeadCard__meta-item .anticon {
  flex: none;
  font-size: 10px;
}
.LeadsFunnelLeadCard__tags {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 4px;
  min-width: 0;
  overflow: hidden;
}
.LeadsFunnelLeadCard__tag {
  max-width: 100%;
  font-size: 10px;
  line-height: 16px;
}
.LeadsFunnelLeadCard__more-tags {
  flex: none;
  min-height: 17px;
  padding: 0 5px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 10px;
  line-height: 15px;
}
.LeadsFunnelLeadCardSkeleton {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  height: var(--leads-funnel-card-height, 112px);
  min-width: 0;
  padding: 7px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  background: #fff;
}
.LeadsFunnelLeadCardSkeleton__header {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.LeadsFunnelLeadCardSkeleton__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}
.LeadsFunnelLeadCardSkeleton__identity {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.LeadsFunnelLeadCardSkeleton__avatar, .LeadsFunnelLeadCardSkeleton__line, .LeadsFunnelLeadCardSkeleton__tag {
  flex: none;
  background: linear-gradient(90deg, #f2f4f7 0%, #e8edf3 50%, #f2f4f7 100%);
  background-size: 200% 100%;
  animation: LeadsFunnelLeadCardSkeleton 1.25s ease-in-out infinite;
}
.LeadsFunnelLeadCardSkeleton__line {
  height: 10px;
  border-radius: 999px;
}
.LeadsFunnelLeadCardSkeleton__line--name {
  width: 70%;
  height: 11px;
}
.LeadsFunnelLeadCardSkeleton__line--phone {
  width: 45%;
  height: 9px;
}
.LeadsFunnelLeadCardSkeleton__line--message {
  width: 86%;
}
.LeadsFunnelLeadCardSkeleton__tags {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}
.LeadsFunnelLeadCardSkeleton__tag {
  width: 54px;
  height: 16px;
  border-radius: 5px;
}
.LeadsFunnelLeadCardSkeleton__tag:last-child {
  width: 38px;
}

@keyframes LeadsFunnelLeadCardSkeleton {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
.LeadsFunnelStageColumn {
  display: flex;
  flex: 1 1 var(--leads-funnel-stage-column-width, 280px);
  flex-direction: column;
  min-width: 0;
  max-width: var(--leads-funnel-stage-column-width, 280px);
  max-height: 100%;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.15s ease;
}
.LeadsFunnelStageColumn--drop-active {
  border-color: #91caff;
}
.LeadsFunnelStageColumn--drop-active .LeadsFunnelStageColumn__list {
  background: #f5faff;
}
.LeadsFunnelStageColumn__header {
  display: grid;
  grid-template-columns: 4px minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 7px 8px;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
}
.LeadsFunnelStageColumn__color {
  width: 4px;
  height: 24px;
  border-radius: 3px;
}
.LeadsFunnelStageColumn__title-block {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.LeadsFunnelStageColumn__title, .LeadsFunnelStageColumn__funnel {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.LeadsFunnelStageColumn__title {
  color: rgba(0, 0, 0, 0.88);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
}
.LeadsFunnelStageColumn__funnel {
  color: rgba(0, 0, 0, 0.45);
  font-size: 10px;
  line-height: 13px;
}
.LeadsFunnelStageColumn__count {
  flex: none;
  min-width: 22px;
  padding: 1px 6px;
  border: 1px solid #d9e8ff;
  border-radius: 10px;
  background: #f5faff;
  color: #1677ff;
  font-size: 10px;
  font-weight: 600;
  line-height: 14px;
  text-align: center;
}
.LeadsFunnelStageColumn__list {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  padding: 6px;
  background: #f9fafb;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-color: #b1c4df #fff;
  scrollbar-width: thin;
}
.LeadsFunnelStageColumn__list::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  border-radius: 15px;
}
.LeadsFunnelStageColumn__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 15px;
}
.LeadsFunnelStageColumn__list::-webkit-scrollbar-corner {
  border-radius: 33px;
}
.LeadsFunnelStageColumn__list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #b1c4df;
}
.LeadsFunnelStageColumn__list .LeadsFunnelLeadCard,
.LeadsFunnelStageColumn__list .LeadsFunnelLeadCardSkeleton {
  flex: none;
  margin-bottom: var(--leads-funnel-card-gap, 6px);
}
.LeadsFunnelStageColumn__spacer {
  flex: none;
  min-height: 0;
  background-image: repeating-linear-gradient(to bottom, #fff 0, #fff var(--leads-funnel-card-height, 112px), #f9fafb var(--leads-funnel-card-height, 112px), #f9fafb calc(var(--leads-funnel-card-height, 112px) + var(--leads-funnel-card-gap, 6px)));
}
.LeadsFunnelStageColumn__empty {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  min-height: 96px;
}
.LeadsFunnelStageColumn__empty .ant-empty {
  margin: 0;
}
.LeadsFunnelStageColumn__empty .ant-empty-description {
  color: rgba(0, 0, 0, 0.45);
  font-size: 11px;
}
.LeadsFunnelStageColumn__show-next {
  flex: none;
  min-height: 26px;
  border-color: #d9e8ff;
  color: #1677ff;
  font-size: 11px;
  line-height: 14px;
}
.LeadsFunnelStageColumnSkeleton {
  display: flex;
  flex: 1 1 var(--leads-funnel-stage-column-width, 280px);
  flex-direction: column;
  min-width: 0;
  max-width: var(--leads-funnel-stage-column-width, 280px);
  max-height: 100%;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}
.LeadsFunnelStageColumnSkeleton__header {
  display: grid;
  grid-template-columns: 4px minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 7px 8px;
  border-bottom: 1px solid #f0f0f0;
}
.LeadsFunnelStageColumnSkeleton__color {
  width: 4px;
  height: 24px;
  border-radius: 3px;
}
.LeadsFunnelStageColumnSkeleton__title-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.LeadsFunnelStageColumnSkeleton__color, .LeadsFunnelStageColumnSkeleton__line, .LeadsFunnelStageColumnSkeleton__count {
  background: linear-gradient(90deg, #f2f4f7 0%, #e8edf3 50%, #f2f4f7 100%);
  background-size: 200% 100%;
  animation: LeadsFunnelLeadCardSkeleton 1.25s ease-in-out infinite;
}
.LeadsFunnelStageColumnSkeleton__line {
  height: 10px;
  border-radius: 999px;
}
.LeadsFunnelStageColumnSkeleton__line--title {
  width: 60%;
  height: 11px;
}
.LeadsFunnelStageColumnSkeleton__line--funnel {
  width: 40%;
  height: 9px;
}
.LeadsFunnelStageColumnSkeleton__count {
  width: 34px;
  height: 16px;
  border-radius: 10px;
}
.LeadsFunnelStageColumnSkeleton__list {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 6px;
  min-height: 0;
  padding: 6px;
  background: #f9fafb;
  overflow: hidden;
}
.LeadsFunnelBoard {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  min-height: 0;
}
.LeadsFunnelBoard__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  background: #fff;
}
.LeadsFunnelBoard__summary-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
}
.LeadsFunnelBoard__label {
  flex: none;
  color: rgba(0, 0, 0, 0.45);
  font-size: 10px;
  line-height: 13px;
}
.LeadsFunnelBoard__title {
  min-width: 0;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.88);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.LeadsFunnelBoard__summary-side {
  display: flex;
  flex: none;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.LeadsFunnelBoard__summary-meta {
  display: flex;
  flex: none;
  align-items: center;
  gap: 8px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 11px;
  line-height: 14px;
  white-space: nowrap;
}
.LeadsFunnelBoard__nav {
  display: flex;
  flex: none;
  align-items: center;
  gap: 6px;
}
.LeadsFunnelBoard__nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
  border-color: #e0e0e0;
  border-radius: 6px;
}
.LeadsFunnelBoard__nav-button:not(:disabled):hover, .LeadsFunnelBoard__nav-button:not(:disabled):focus {
  color: #1677ff;
  border-color: #91caff;
}
.LeadsFunnelBoard__nav-button .anticon {
  font-size: 11px;
}
.LeadsFunnelBoard__nav-range {
  min-width: 56px;
  color: rgba(0, 0, 0, 0.55);
  font-size: 11px;
  font-weight: 600;
  line-height: 14px;
  white-space: nowrap;
  text-align: center;
}
.LeadsFunnelBoard__columns {
  display: flex;
  flex: 1 1 auto;
  gap: 8px;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
.LeadsFunnelBoard__empty {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  background: #fff;
}
.LeadsFunnelSelectorState {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 320px;
  padding: 24px 12px;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  background: #fff;
}
.LeadsFunnelSelectorState__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: min(100%, 420px);
  min-width: 0;
}
.LeadsFunnelSelectorState__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 0;
  text-align: center;
}
.LeadsFunnelSelectorState__title {
  margin: 0;
  color: rgba(0, 0, 0, 0.88);
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}
.LeadsFunnelSelectorState__description {
  max-width: 340px;
  margin: 0;
  color: rgba(0, 0, 0, 0.55);
  font-size: 12px;
  line-height: 16px;
}
.LeadsFunnelSelectorState__select {
  width: 100%;
}
.LeadsFunnelsPage {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 100%;
  padding: 8px;
  background: #f5f5f5;
  overflow: hidden;
  box-sizing: border-box;
}
.LeadsFunnelsPage__scroll {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  overflow: auto;
}
.LeadsFunnelsHeader {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  padding: 8px 10px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}
.LeadsFunnelsHeader__title-block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}
.LeadsFunnelsHeader__title {
  margin: 0;
  color: rgba(0, 0, 0, 0.88);
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}
@media screen and (max-width: 550px) {
  .LeadsFunnelsHeader {
    padding: 8px;
  }
}

/*# sourceMappingURL=main~85.ffd7b458.css.map*/