@import url(https://fonts.googleapis.com/css2?family=Dancing+Script&family=Great+Vibes&family=Pacifico&family=Allura&family=Alex+Brush&family=Yellowtail&family=Sacramento&family=Satisfy&family=Tangerine&family=Pinyon+Script&family=Mr+De+Haviland&family=Petit+Formal+Script&family=Rouge+Script&family=Italianno&family=Carattere&family=Fasthand&display=swap);
/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #29d;

  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;
}

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #29d, 0 0 5px #29d;
  opacity: 1.0;
  transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;

  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;
  animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}
@keyframes nprogress-spinner {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.need-help-dropdown-overlay .ant-dropdown-menu {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.need-help-panel {
  --nh-ease: cubic-bezier(0.23, 1, 0.32, 1);
  width: min(22rem, calc(100vw - 1.5rem));
  border: 1px solid var(--app-border, #e4e9f0);
  border-radius: var(--app-radius-md, 0.75rem);
  background: var(--app-surface, #fff);
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.06),
    0 12px 28px -8px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.need-help-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--app-border-row, #eef1f5);
  background: var(--app-surface-muted, #f8f9fb);
}

.need-help-panel__title {
  margin: 0;
  color: var(--app-text-primary, #1d1d1f);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.need-help-panel__subtitle {
  margin: 0.2rem 0 0;
  color: var(--app-text-secondary, #6e6e73);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.need-help-panel__hours {
  display: inline-flex;
  align-items: center;
  min-height: 1.625rem;
  padding: 0 0.5rem;
  border: 1px solid var(--app-border, #e4e9f0);
  border-radius: 999px;
  background: var(--app-surface, #fff);
  color: var(--app-text-secondary, #6e6e73);
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}

.need-help-panel__channels {
  display: flex;
  flex-direction: column;
}

.need-help-channel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  min-height: 3rem;
  padding: 0.625rem 1rem;
  border-top: 1px solid var(--app-border-row, #eef1f5);
  color: inherit;
  text-decoration: none;
  background: transparent;
  border-left: none;
  border-right: none;
  border-bottom: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition:
    transform 140ms var(--nh-ease),
    background-color 140ms var(--nh-ease);
}

.need-help-channel:first-child {
  border-top: none;
}

.need-help-channel:focus {
  outline: none;
}

.need-help-channel:focus-visible {
  z-index: 1;
  box-shadow: inset 0 0 0 2px var(--app-accent-soft, rgba(48, 98, 225, 0.2));
}

.need-help-channel:active {
  transform: scale(0.995);
}

.need-help-channel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--app-border, #e4e9f0);
  border-radius: var(--app-radius-sm, 0.5rem);
  background: var(--app-surface-muted, #f8f9fb);
  color: var(--app-accent, #3062e1);
}

.need-help-channel__icon--whatsapp {
  color: #16a34a;
}

.need-help-channel__meta {
  min-width: 0;
}

.need-help-channel__label {
  margin: 0;
  color: var(--app-text-primary, #1d1d1f);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
}

.need-help-channel__value {
  margin: 0.1rem 0 0;
  color: var(--app-text-muted, #86868b);
  font-size: 0.75rem;
  line-height: 1.4;
}

.need-help-channel__action {
  color: var(--app-text-muted, #86868b);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.need-help-panel__status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 3rem;
  padding: 0.625rem 1rem;
  border-top: 1px solid var(--app-border-row, #eef1f5);
  border-left: none;
  border-right: none;
  border-bottom: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background-color 140ms var(--nh-ease);
}

.need-help-panel__status--static {
  cursor: default;
}

.need-help-panel__status-icon--connected {
  color: #16a34a;
}

.need-help-panel__status-icon--disconnected {
  color: #dc2626;
}

.need-help-panel__status-value--connected {
  color: #16a34a;
}

.need-help-panel__status-value--disconnected {
  color: #dc2626;
}

.need-help-panel__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.75rem 1rem 0.5rem;
  border-top: 1px solid var(--app-border-row, #eef1f5);
  background: var(--app-surface-muted, #f8f9fb);
}

.need-help-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  min-height: 2.25rem;
  padding: 0 0.75rem;
  border: 1px solid var(--app-border, #e4e9f0);
  border-radius: var(--app-radius-sm, 0.5rem);
  background: var(--app-surface, #fff);
  color: var(--app-text-primary, #1d1d1f);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform 140ms var(--nh-ease),
    border-color 140ms var(--nh-ease),
    background-color 140ms var(--nh-ease),
    color 140ms var(--nh-ease);
}

.need-help-action:active {
  transform: scale(0.98);
}

.need-help-action--primary {
  grid-column: 1 / -1;
  border-color: var(--app-accent, #3062e1);
  background: var(--app-accent, #3062e1);
  color: #fff;
}

.need-help-action--disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.need-help-action--disabled:active {
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .need-help-channel:hover,
  .need-help-panel__status:not(.need-help-panel__status--static):hover {
    background: var(--app-surface-muted, #f8f9fb);
  }

  .need-help-action:not(.need-help-action--primary):not(.need-help-action--disabled):hover {
    border-color: rgba(48, 98, 225, 0.28);
    color: var(--app-accent, #3062e1);
  }

  .need-help-action--primary:hover {
    border-color: #2045d1;
    background: #2045d1;
  }
}

@media screen and (max-width: 767px) {
  .app-header__help-label {
    display: none;
  }

  .need-help-channel__action {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .need-help-channel,
  .need-help-action,
  .need-help-panel__status {
    transition: none;
  }

  .need-help-channel:active,
  .need-help-action:active {
    transform: none;
  }
}

/* Trial modal — BillClap BRAND.md v1.0 */

.trial-modal .ant-modal-content {
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.trial-modal .ant-modal-body {
  padding: 0;
}

.trial-modal__shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 380px;
}

.trial-modal__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  background: #e8f1ff;
  border-right: 1px solid rgba(0, 61, 165, 0.08);
}

.trial-modal__visual::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cc0000;
}

.trial-modal__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: rgba(204, 0, 0, 0.1);
  color: #cc0000;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.trial-modal__lottie {
  width: min(240px, 100%);
  height: min(240px, 100%);
}

.trial-modal__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 2rem 2rem 1.75rem;
  text-align: left;
}

.trial-modal__title.ant-typography {
  margin: 0 0 0.5rem !important;
  color: #001f6b !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.02em;
}

.trial-modal__subtitle {
  display: block;
  margin-bottom: 1.25rem;
  color: #6b7280;
  font-size: 0.9375rem;
  line-height: 1.55;
  max-width: 36ch;
}

.trial-modal__benefits-heading {
  margin: 0 0 0.75rem;
  color: #003da5;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.trial-modal__benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem 1rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.trial-modal__benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #111827;
  font-size: 0.875rem;
  line-height: 1.45;
}

.trial-modal__benefit-icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: #1b64f2;
}

.trial-modal__cta.ant-btn {
  align-self: flex-start;
  min-height: 44px;
  padding: 0 1.5rem;
  border: none;
  border-radius: 6px;
  background: #1b64f2;
  font-weight: 600;
  box-shadow: none;
}

.trial-modal__cta.ant-btn:hover:not(:disabled) {
  background: #003da5 !important;
}

.trial-modal__cta.ant-btn:active:not(:disabled) {
  transform: translateY(1px);
}

.trial-modal__trust {
  margin: 0.875rem 0 0;
  color: #6b7280;
  font-size: 0.75rem;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .trial-modal__shell {
    grid-template-columns: 1fr;
  }

  .trial-modal__visual {
    min-height: 200px;
    border-right: none;
    border-bottom: 1px solid rgba(0, 61, 165, 0.08);
  }

  .trial-modal__content {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .trial-modal__benefits {
    grid-template-columns: 1fr;
  }
}

/* ── Business list drawer (BRAND.md) ─────────────────────────── */

.business-list-drawer {
  --bl-brand-blue: #003da5;
  --bl-action-blue: #1b64f2;
  --bl-light-blue: #e8f1ff;
  --bl-divider: #e5e7eb;
  --bl-surface-muted: #f3f4f6;
  --bl-text: #111827;
  --bl-text-muted: #6b7280;
  --bl-motion: cubic-bezier(0.23, 1, 0.32, 1);
}

.business-list-drawer .ant-drawer-header {
  padding: 1rem 1.125rem;
  border-bottom: 1px solid var(--bl-divider);
}

.business-list-drawer .ant-drawer-title {
  color: var(--bl-text);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.business-list-drawer .ant-drawer-body {
  padding: 1rem 1.125rem 1.25rem;
  background: var(--bl-surface-muted);
}

.business-list-drawer__add-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--bl-action-blue);
  border-color: var(--bl-action-blue);
  transition: transform 140ms var(--bl-motion);
}

.business-list-drawer__add-btn:active {
  transform: scale(0.97);
}

@media (hover: hover) and (pointer: fine) {
  .business-list-drawer__add-btn:not(:disabled):hover {
    background: var(--bl-brand-blue);
    border-color: var(--bl-brand-blue);
  }
}

.business-list-drawer__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.business-list-drawer__section {
  border: 1px solid var(--bl-divider);
  border-radius: 0.75rem;
  background: #fff;
  overflow: hidden;
}

.business-list-drawer__section-head {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--bl-divider);
  background: #fff;
}

.business-list-drawer__section-title {
  margin: 0;
  color: var(--bl-text);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
}

.business-list-drawer__section-hint {
  margin: 0.25rem 0 0;
  color: var(--bl-text-muted);
  font-size: 0.75rem;
  line-height: 1.4;
}

.business-list-drawer__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.business-list-drawer__item {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border: 0;
  border-bottom: 1px solid var(--bl-divider);
  background: #fff;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: background-color 160ms var(--bl-motion);
}

.business-list-drawer__list li:last-child .business-list-drawer__item {
  border-bottom: none;
}

@media (hover: hover) and (pointer: fine) {
  .business-list-drawer__item:hover {
    background: var(--bl-light-blue);
  }
}

.business-list-drawer__item:active {
  background: color-mix(in srgb, var(--bl-light-blue) 72%, var(--bl-action-blue));
}

.business-list-drawer__logo.ant-avatar {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--bl-divider);
  border-radius: 0.5rem;
  background: var(--bl-surface-muted);
}

.business-list-drawer__meta {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

.business-list-drawer__name {
  color: var(--bl-text);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
}

.business-list-drawer__address {
  overflow: hidden;
  color: var(--bl-text-muted);
  font-size: 0.8125rem;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.business-list-drawer__badge {
  flex-shrink: 0;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  background: rgba(27, 100, 242, 0.1);
  color: var(--bl-action-blue);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.business-list-drawer__empty {
  padding: 2rem 1rem;
  color: var(--bl-text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
}

.business-list-drawer__modal {
  --bl-brand-blue: #003da5;
  --bl-action-blue: #1b64f2;
  --bl-light-blue: #e8f1ff;
  --bl-divider: #e5e7eb;
  --bl-surface-muted: #f3f4f6;
  --bl-text: #111827;
  --bl-text-muted: #6b7280;
}

.business-list-drawer__modal .ant-modal-header {
  margin-bottom: 0.75rem;
}

.business-list-drawer__modal .ant-form-item-label > label {
  color: var(--bl-text);
  font-weight: 500;
}

.business-list-drawer__modal .ant-input {
  border-color: var(--bl-divider);
  border-radius: 0.5rem;
}

.business-list-drawer__modal .ant-input:focus {
  border-color: rgba(27, 100, 242, 0.35);
  box-shadow: 0 0 0 2px rgba(27, 100, 242, 0.1);
}

.business-list-drawer__modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1rem;
}

.business-list-drawer__modal-submit.ant-btn-primary {
  background: var(--bl-action-blue) !important;
  border-color: var(--bl-action-blue) !important;
  color: #fff !important;
}

.business-list-drawer__modal-submit.ant-btn-primary:disabled {
  background: rgba(27, 100, 242, 0.45) !important;
  border-color: rgba(27, 100, 242, 0.45) !important;
  color: #fff !important;
}

@media (hover: hover) and (pointer: fine) {
  .business-list-drawer__modal-submit.ant-btn-primary:not(:disabled):hover {
    background: var(--bl-brand-blue) !important;
    border-color: var(--bl-brand-blue) !important;
    color: #fff !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .business-list-drawer__add-btn,
  .business-list-drawer__item {
    transition: none;
  }

  .business-list-drawer__add-btn:active {
    transform: none;
  }
}

.trigger {
  padding: 0 24px;
  font-size: 18px;
  line-height: 64px;
  cursor: pointer;
  transition: color 0.3s;
}

.trigger:hover {
  color: #1890ff;
}


.logo {
  height: 40px;
  margin: 16px;
}



.main-menu:not(.ant-menu-inline-collapsed) .ant-menu-item {
  display: flex;
  justify-content: start;
  align-items: center;
}

.main-menu:not(.ant-menu-inline-collapsed) .ant-menu-submenu-title {
  display: flex;
  justify-content: start;
  align-items: center;
}

.new-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 0.5rem;
  padding: 0.125rem 0.4375rem;
  border-radius: 999px;
  background: rgba(48, 98, 225, 0.1);
  color: #3062e1;
  font-size: 0.5625rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.new-badge-dot {
  position: absolute;
  background-color: red;
  font-size: 3px;
  padding: 3px 3px;
  border-radius: 3px;
  margin-left: 7px;
  margin-top: 11px;
}
.quick-action-item {
  padding: 12px !important;
  border-radius: 6px;
  margin-bottom: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.quick-action-item:hover {
  background-color: #f5f5f5;
}

.quick-action-item .ant-list-item-content {
  display: flex;
  align-items: center;
  width: 100%;
}

.quick-action-item .item-icon {
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #f0f0f0;
  border-radius: 6px;
}

.quick-action-item .item-content {
  flex: 1;
}

.quick-action-item .item-shortcut {
  font-size: 12px;
  color: #888;
  display: block;
  margin-top: 4px;
}

/* Remove old quick-action-menu styles since we're using Drawer now */
.quick-action-menu {
  display: none;
}

.user-account-dropdown-overlay .ant-dropdown-menu {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.user-account-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.25rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 999px;
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

.user-account-trigger:active {
  transform: scale(0.97);
}

.user-account-trigger__avatar {
  border: 1px solid #e4e9f0;
  background: #f5f5f7 !important;
  color: #3062e1 !important;
}

.user-account-dropdown {
  width: 16.5rem;
  padding: 0.75rem;
  border: 1px solid #e4e9f0;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 12px 32px rgba(29, 29, 31, 0.1);
}

.user-account-dropdown__header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding-bottom: 0.75rem;
}

.user-account-dropdown__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: #f5f5f7;
  color: #3062e1;
}

.user-account-dropdown__meta {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

.user-account-dropdown__name {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  color: #1d1d1f;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-account-dropdown__phone {
  font-size: 0.75rem;
  line-height: 1.35;
  color: #6e6e73;
  font-variant-numeric: tabular-nums;
}

.user-account-dropdown__section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 0;
  border-top: 1px solid #e4e9f0;
  border-bottom: 1px solid #e4e9f0;
}

.user-account-dropdown__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.user-account-dropdown__row-label {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #6e6e73;
}

.user-account-dropdown__row-value {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1d1d1f;
  text-align: right;
}

.user-account-dropdown__upgrade {
  width: 100%;
  margin-top: 0.125rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(48, 98, 225, 0.22);
  border-radius: 0.5rem;
  background: rgba(48, 98, 225, 0.06);
  color: #3062e1;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition:
    transform 160ms cubic-bezier(0.23, 1, 0.32, 1),
    background-color 160ms cubic-bezier(0.23, 1, 0.32, 1),
    border-color 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

.user-account-dropdown__upgrade:active {
  transform: scale(0.98);
}

.user-account-dropdown__footer {
  padding-top: 0.75rem;
}

.user-account-dropdown__logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(225, 25, 0, 0.22);
  border-radius: 0.5rem;
  background: rgba(225, 25, 0, 0.06);
  color: #c41700;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 160ms cubic-bezier(0.23, 1, 0.32, 1),
    background-color 160ms cubic-bezier(0.23, 1, 0.32, 1),
    border-color 160ms cubic-bezier(0.23, 1, 0.32, 1),
    color 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

.user-account-dropdown__logout:active {
  transform: scale(0.98);
  background: rgba(225, 25, 0, 0.1);
}

@media (hover: hover) and (pointer: fine) {
  .user-account-dropdown__upgrade:hover {
    background: rgba(48, 98, 225, 0.1);
    border-color: rgba(48, 98, 225, 0.32);
  }

  .user-account-dropdown__logout:hover {
    background: rgba(225, 25, 0, 0.1);
    border-color: rgba(225, 25, 0, 0.32);
    color: #a81400;
  }
}

@media (prefers-reduced-motion: reduce) {
  .user-account-trigger,
  .user-account-dropdown__upgrade,
  .user-account-dropdown__logout {
    transition: none;
  }

  .user-account-trigger:active,
  .user-account-dropdown__upgrade:active,
  .user-account-dropdown__logout:active {
    transform: none;
  }
}

/* ── Sidebar shell ───────────────────────────────────────────── */

.site-sidebar.ant-layout-sider {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100vh;
  overflow: hidden;
  background: #fafafb !important;
  border-right: 1px solid #e4e9f0;
  transition: width 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.site-sidebar .ant-layout-sider-children {
  height: 100%;
}

.sidebar-shell {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: #fafafb;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-shrink: 0;
  min-height: 3.5rem;
  padding: 0.75rem 0.875rem 0.625rem;
  border-bottom: 1px solid #e4e9f0;
}

.sidebar-brand__logo {
  display: flex;
  align-items: center;
  min-width: 0;
  transition: opacity 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

.sidebar-brand__logo img {
  display: block;
  width: auto;
  max-width: 10.5rem;
  height: 2.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.sidebar-brand__logo--collapsed {
  justify-content: center;
  width: 100%;
}

.sidebar-brand__logo--collapsed img {
  max-width: 2.5rem;
  height: 2.5rem;
}

.sidebar-collapse-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 1px solid #e4e9f0;
  border-radius: 0.5rem;
  background: #fff;
  color: #6e6e73;
  cursor: pointer;
  transition:
    transform 160ms cubic-bezier(0.23, 1, 0.32, 1),
    background-color 160ms cubic-bezier(0.23, 1, 0.32, 1),
    border-color 160ms cubic-bezier(0.23, 1, 0.32, 1),
    color 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

.sidebar-collapse-btn:active {
  transform: scale(0.97);
}

.sidebar-collapse-btn__icon {
  transform: rotate(180deg);
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.sidebar-collapse-btn__icon--collapsed {
  transform: rotate(0deg);
}

.site-sidebar--collapsed .sidebar-brand {
  flex-direction: column;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.75rem 0.5rem;
}

.site-sidebar--collapsed .sidebar-collapse-btn {
  width: 2.25rem;
  height: 2.25rem;
}

.sidebar-nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.625rem;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  padding: 0.75rem 0.5rem 0.5rem;
}

.sidebar-nav__search.ant-input-affix-wrapper {
  flex-shrink: 0;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  min-height: 2.5rem;
  margin: 0;
  padding-inline: 0.75rem;
  border-color: var(--app-border);
  border-radius: var(--app-radius-sm);
  background: var(--app-surface);
  transition:
    border-color 160ms var(--app-motion),
    box-shadow 160ms var(--app-motion);
}

.sidebar-nav__search.ant-input-affix-wrapper .ant-input {
  font-size: 0.9375rem;
  font-weight: 500;
  min-width: 0;
}

.sidebar-nav__search.ant-input-affix-wrapper .ant-input::-moz-placeholder {
  color: var(--app-text-muted);
  font-weight: 400;
}

.sidebar-nav__search.ant-input-affix-wrapper .ant-input::placeholder {
  color: var(--app-text-muted);
  font-weight: 400;
}

.sidebar-nav__search.ant-input-affix-wrapper .ant-input-prefix {
  margin-inline-end: 0.5rem;
  color: var(--app-text-muted);
}

.sidebar-nav__search.ant-input-affix-wrapper:focus-within {
  border-color: var(--app-accent-hover-border);
  box-shadow: 0 0 0 2px var(--app-accent-soft);
}

@media (hover: hover) and (pointer: fine) {
  .sidebar-nav__search.ant-input-affix-wrapper:hover {
    border-color: var(--app-accent-hover-border);
  }
}

.sidebar-nav__menu-scroll {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.sidebar-nav__menu-scroll::-webkit-scrollbar {
  width: 4px;
}

.sidebar-nav__menu-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #e4e9f0;
}

.sidebar-nav__empty {
  margin: 0.5rem 1rem 0;
  color: #6e6e73;
  font-size: 0.8125rem;
  line-height: 1.4;
  text-align: center;
}

.sidebar-nav--drawer {
  height: 100%;
}

.sidebar-footer {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid #e4e9f0;
  background: #fafafb;
}

.sidebar-footer__trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.sidebar-footer__razorpay {
  flex-shrink: 0;
}

.sidebar-footer__secure {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #1d1d1f;
  font-size: 0.6875rem;
  font-weight: 600;
  white-space: nowrap;
}

.sidebar-footer__brand {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sidebar-footer__brand img {
  display: block;
  width: auto;
  max-width: 11.5rem;
  height: 2.75rem;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.9;
}

/* ── Main menu polish ──────────────────────────────────────── */

.main-menu .ant-menu-item-divider {
  margin: 0.375rem 1rem;
  border-color: #e4e9f0;
  line-height: 0;
  height: 1px;
  overflow: hidden;
}

.main-menu.ant-menu-inline-collapsed .ant-menu-item-divider {
  margin: 0.375rem 0.75rem;
  width: calc(100% - 1.5rem);
}

.main-menu.ant-menu {
  flex: 1;
  min-height: 0;
  border-inline-end: none !important;
  background: transparent !important;
}

.main-menu .ant-menu-item,
.main-menu .ant-menu-submenu-title {
  position: relative;
  display: flex;
  align-items: center;
  width: calc(100% - 1rem) !important;
  margin: 0.125rem 0.5rem !important;
  padding-inline: 0.75rem !important;
  border-radius: 0.5rem !important;
  color: #1d1d1f !important;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.5rem !important;
  height: 2.5rem !important;
  transition:
    transform 160ms cubic-bezier(0.23, 1, 0.32, 1),
    background-color 160ms cubic-bezier(0.23, 1, 0.32, 1),
    color 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

.main-menu .ant-menu-submenu-title {
  line-height: 2.5rem !important;
  height: 2.5rem !important;
}

.main-menu .ant-menu-title-content {
  font-size: inherit;
}

.main-menu .ant-menu-item .ant-menu-item-icon,
.main-menu .ant-menu-submenu-title .ant-menu-item-icon {
  color: #6e6e73;
  transition: color 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

.main-menu .ant-menu-item::before,
.main-menu .ant-menu-submenu-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  border-radius: 0 2px 2px 0;
  background: #3062e1;
  transform: translateY(-50%);
  transition: height 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

.main-menu .ant-menu-item-selected,
.main-menu .ant-menu-submenu-selected > .ant-menu-submenu-title {
  background: rgba(48, 98, 225, 0.08) !important;
  color: #3062e1 !important;
}

.main-menu .ant-menu-item-selected::before,
.main-menu .ant-menu-submenu-selected > .ant-menu-submenu-title::before {
  height: 1.25rem;
}

.main-menu .ant-menu-item-selected .ant-menu-item-icon,
.main-menu .ant-menu-submenu-selected > .ant-menu-submenu-title .ant-menu-item-icon {
  color: #3062e1;
}

.main-menu .ant-menu-sub .ant-menu-item {
  padding-left: 2.5rem !important;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2.375rem !important;
  height: 2.375rem !important;
}

.main-menu.ant-menu-inline-collapsed .ant-menu-item,
.main-menu.ant-menu-inline-collapsed .ant-menu-submenu-title {
  width: calc(100% - 0.75rem) !important;
  margin: 0.125rem 0.375rem !important;
  padding-inline: calc(50% - 0.5625rem) !important;
}

@media (hover: hover) and (pointer: fine) {
  .sidebar-collapse-btn:hover {
    border-color: rgba(48, 98, 225, 0.28);
    background: rgba(48, 98, 225, 0.05);
    color: #3062e1;
  }

  .main-menu .ant-menu-item:not(.ant-menu-item-selected):hover,
  .main-menu .ant-menu-submenu-title:hover {
    background: rgba(29, 29, 31, 0.04) !important;
    color: #1d1d1f !important;
  }
}

.main-menu .ant-menu-item:active,
.main-menu .ant-menu-submenu-title:active {
  transform: scale(0.97);
}

.sidebar-collapse-btn:active {
  transform: scale(0.97);
}

/* ── Mobile drawer ───────────────────────────────────────────── */

.sidebar-drawer .ant-drawer-header {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid #e4e9f0;
  background: #fafafb;
}

.sidebar-drawer .ant-drawer-title {
  line-height: 1;
}

.sidebar-drawer__title {
  display: inline-flex;
  align-items: center;
}

.sidebar-drawer__title img {
  display: block;
  height: 1.75rem;
  width: auto;
}

.sidebar-drawer .ant-drawer-close {
  color: #6e6e73;
}

/* ── App header ──────────────────────────────────────────────── */

.app-header-shell {
  position: sticky;
  top: 0;
  z-index: 10;
  flex-shrink: 0;
  background: #fff;
  isolation: isolate;
}

.app-header-banner-wrap {
  display: block;
  width: 100%;
  background: #fff;
}

.app-header-banner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.375rem;
  width: 100%;
  padding: 0.375rem 1rem;
  border: 0;
  border-bottom: 1px solid #e4e9f0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.25;
}

.app-header-banner--connected {
  background: #f0fdf4;
  color: #15803d;
  cursor: default;
}

.app-header-banner--disconnected {
  background: #fef2f2;
  color: #b91c1c;
  cursor: pointer;
}

.app-header.ant-layout-header {
  display: flex;
  align-items: center;
  height: 3.75rem !important;
  line-height: 1 !important;
  font-size: 1rem;
  padding: 0 !important;
  background: #fff !important;
  border-bottom: 1px solid #e4e9f0;
  box-shadow: none !important;
  color: #1d1d1f;
}

.app-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  height: 100%;
  padding: 0 0.875rem;
}

.app-header__left {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-width: 0;
}

.app-header__menu-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 2.5rem !important;
  height: 2.5rem !important;
  padding: 0 !important;
  border: 1px solid #e4e9f0 !important;
  border-radius: 0.5rem !important;
  background: #fafafb !important;
  color: #6e6e73 !important;
  font-size: 1rem !important;
  box-shadow: none !important;
  transition:
    transform 160ms cubic-bezier(0.23, 1, 0.32, 1),
    background-color 160ms cubic-bezier(0.23, 1, 0.32, 1),
    border-color 160ms cubic-bezier(0.23, 1, 0.32, 1),
    color 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

.app-header__menu-btn:active {
  transform: scale(0.97);
}

.app-header__business {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  max-width: min(22rem, 42vw);
  padding: 0.3125rem 0.5rem 0.3125rem 0.3125rem;
  border: 1px solid #e4e9f0;
  border-radius: 0.625rem;
  background: #fafafb;
  color: #1d1d1f;
  cursor: pointer;
  transition:
    transform 160ms cubic-bezier(0.23, 1, 0.32, 1),
    background-color 160ms cubic-bezier(0.23, 1, 0.32, 1),
    border-color 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

.app-header__business:active {
  transform: scale(0.98);
}

.app-header__business-logo {
  flex-shrink: 0;
  border-radius: 0.375rem !important;
  border: 1px solid #e4e9f0;
  background: #fff !important;
}

.app-header__business-name {
  overflow: hidden;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-header__business-chevron {
  flex-shrink: 0;
  color: #6e6e73;
}

.app-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.app-header__actions-group {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.app-header__divider {
  display: block;
  width: 1px;
  height: 1.5rem;
  background: #e4e9f0;
}

.app-header__tool-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  height: 2.5rem !important;
  min-width: 2.5rem;
  padding: 0 0.75rem !important;
  border: 1px solid #e4e9f0 !important;
  border-radius: 0.5rem !important;
  background: #fff !important;
  color: #1d1d1f !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  box-shadow: none !important;
  transition:
    transform 160ms cubic-bezier(0.23, 1, 0.32, 1),
    background-color 160ms cubic-bezier(0.23, 1, 0.32, 1),
    border-color 160ms cubic-bezier(0.23, 1, 0.32, 1),
    color 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

.app-header__tool-btn > .ant-btn-icon,
.app-header__actions-group .app-header__tool-btn .ant-badge {
  margin: 0 !important;
}

.app-header__actions-group .ant-badge .ant-badge-dot {
  box-shadow: 0 0 0 1px #fff;
}

.app-header__tool-btn:active {
  transform: scale(0.97);
}

.app-header__tool-btn--icon {
  width: 2.5rem !important;
  padding: 0 !important;
}

.app-header__tool-btn--primary {
  border-color: #3062e1 !important;
  background: #3062e1 !important;
  color: #fff !important;
}

.app-header__tool-btn--primary:hover,
.app-header__tool-btn--primary:focus {
  border-color: #2045d1 !important;
  background: #2045d1 !important;
  color: #fff !important;
}

.app-header__lang-code {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.app-header__help-icon {
  color: #3062e1;
}

.app-header__help-label {
  font-size: 1rem;
  font-weight: 500;
}

@media (min-width: 992px) {
  .app-header__menu-btn {
    display: none !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  .app-header__menu-btn:hover {
    border-color: rgba(48, 98, 225, 0.28) !important;
    background: rgba(48, 98, 225, 0.05) !important;
    color: #3062e1 !important;
  }

  .app-header__business:hover {
    border-color: rgba(48, 98, 225, 0.28);
    background: rgba(48, 98, 225, 0.04);
  }

  .app-header__tool-btn:hover {
    border-color: rgba(48, 98, 225, 0.28) !important;
    background: #fafafb !important;
    color: #3062e1 !important;
  }

  .app-header__tool-btn--help:hover .app-header__help-icon {
    color: #2045d1;
  }
}

@media screen and (max-width: 767px) {
  .app-header.ant-layout-header {
    height: 3.25rem !important;
  }

  .app-header__inner {
    padding: 0 0.5rem;
    gap: 0.375rem;
  }

  .app-header__left {
    gap: 0.375rem;
    min-width: 0;
    flex: 1;
  }

  .app-header__menu-btn {
    width: 2.25rem !important;
    height: 2.25rem !important;
  }

  .app-header__business {
    max-width: none;
    flex: 1;
    min-width: 0;
    padding: 0.25rem;
  }

  .app-header__business-logo {
    width: 1.75rem !important;
    height: 1.75rem !important;
  }

  .app-header__business-chevron {
    display: none;
  }

  .app-header__actions {
    gap: 0.25rem;
    flex-shrink: 0;
  }

  .app-header__actions-group {
    gap: 0.25rem;
  }

  .app-header__divider {
    display: none;
  }

  .app-header__help-label {
    display: none;
  }

  .app-header__tool-btn {
    min-width: 2.25rem !important;
    height: 2.25rem !important;
    padding: 0 !important;
  }

  .app-header__tool-btn--help {
    width: 2.25rem !important;
    padding: 0 !important;
  }

  .app-header__tool-btn--primary {
    width: 2.25rem !important;
  }

  .app-header__lang-code {
    font-size: 0.8125rem;
  }

  .user-account-trigger__avatar {
    width: 2rem !important;
    height: 2rem !important;
    line-height: 2rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-sidebar.ant-layout-sider,
  .sidebar-collapse-btn,
  .sidebar-collapse-btn__icon,
  .main-menu .ant-menu-item,
  .main-menu .ant-menu-submenu-title,
  .main-menu .ant-menu-item::before,
  .main-menu .ant-menu-submenu-title::before,
  .app-header__menu-btn,
  .app-header__business,
  .app-header__tool-btn {
    transition: none;
  }

  .sidebar-collapse-btn:active,
  .main-menu .ant-menu-item:active,
  .main-menu .ant-menu-submenu-title:active,
  .app-header__menu-btn:active,
  .app-header__business:active,
  .app-header__tool-btn:active {
    transform: none;
  }
}
.desktop-app-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #1677ff 0%, #0050b3 100%);
  color: #fff;
  padding: 6px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  flex-wrap: wrap;
}

.desktop-app-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 35%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.08) 65%,
    transparent 100%
  );
  transform: skewX(-18deg);
  animation: desktop-banner-shine 3.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.desktop-app-banner__content,
.desktop-app-banner__download,
.desktop-app-banner__support,
.desktop-app-banner__dismiss {
  position: relative;
  z-index: 1;
}

.desktop-app-banner__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  text-align: center;
}

.desktop-app-banner__icon {
  font-size: 16px;
  line-height: 1;
}

.desktop-app-banner__message {
  display: inline-block;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.desktop-app-banner__message--fading {
  opacity: 0;
  transform: translateY(4px);
}

.desktop-app-banner__download {
  background: #fff;
  color: #1677ff;
  border: none;
  border-radius: 4px;
  padding: 3px 14px;
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
}

.desktop-app-banner__download:not(:disabled) {
  cursor: pointer;
  opacity: 1;
}

.desktop-app-banner__download:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.desktop-app-banner__support {
  font-size: 12px;
  opacity: 0.85;
  white-space: nowrap;
}

.desktop-app-banner__support-link {
  color: #ffe58f;
  text-decoration: underline;
}

.desktop-app-banner__dismiss {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
}

@keyframes desktop-banner-shine {
  0% {
    left: -120%;
  }
  45% {
    left: 140%;
  }
  100% {
    left: 140%;
  }
}

.login-page {
  --login-primary: #3062e1;
  --login-primary-hover: #2045d1;
  --login-text: #1d1d1f;
  --login-muted: #6e6e73;
  --login-border: #e4e9f0;
  --login-bg: #f5f5f7;
  --login-ease-out: cubic-bezier(0.23, 1, 0.32, 1);

  display: flex;
  height: 100vh;
  max-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--login-bg);
}

.login-form-panel {
  position: relative;
  display: flex;
  flex: 1;
  min-height: 0;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  background:
    radial-gradient(ellipse 80% 50% at 0% 0%, rgba(48, 98, 225, 0.06), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(48, 98, 225, 0.04), transparent 50%),
    #fff;
}

.login-form-inner {
  width: 100%;
  max-width: 28rem;
}

.login-brand-header {
  margin-bottom: 1rem;
  margin-top: 100px;
}

.login-brand-block {
  margin-bottom: 1.25rem;
  text-align: center;
}

.login-logo-wrap {
  display: inline-block !important;
  margin: 0 !important;
  line-height: 0;
}

.login-logo-wrap img {
  display: block;
  height: auto;
  max-width: 10rem;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}

.login-tagline {
  display: block;
  margin-bottom: 1rem !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: var(--login-muted) !important;
}

.login-title {
  margin: 0 0 0.5rem !important;
  font-size: 1.875rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
  color: var(--login-text) !important;
}

.login-subtitle {
  margin-bottom: 0 !important;
  font-size: 0.875rem !important;
  color: var(--login-muted) !important;
}

.login-step-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 0.75rem;
}

.login-step-dot {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--login-border);
  transition: background-color 220ms var(--login-ease-out), transform 220ms var(--login-ease-out);
}

.login-step-dot.is-active {
  background: var(--login-primary);
  transform: scale(1.15);
}

.login-step-line {
  flex: 1;
  max-width: 3rem;
  height: 2px;
  margin-inline: 0.375rem;
  border-radius: 999px;
  background: var(--login-border);
}

.login-step-pill {
  display: inline-flex;
  margin-bottom: 1.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--login-bg);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--login-muted);
  animation: loginPillIn 180ms var(--login-ease-out) both;
}

.login-step-shell {
  animation: loginStepIn 220ms var(--login-ease-out) both;
}

@keyframes loginStepIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

@keyframes loginPillIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

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

.login-form .ant-form-item-label > label {
  font-weight: 600;
  color: var(--login-text);
}

.login-form .ant-form-item {
  margin-bottom: 0.75rem;
}

.login-phone-input.ant-input-group-wrapper {
  width: 100%;
}

.login-phone-input.ant-input-group-wrapper:focus-within {
  border-radius: 0.625rem;
  box-shadow: 0 0 0 3px rgba(48, 98, 225, 0.12);
}

.login-phone-input .ant-input,
.login-phone-input .ant-input-group-addon {
  height: 2.75rem !important;
  border-color: var(--login-border) !important;
}

.login-phone-input .ant-input-group-addon:first-child {
  border-radius: 0.625rem 0 0 0.625rem !important;
  background: #fff;
  padding-inline: 0.75rem 0.625rem;
  border-right: 0 !important;
}

.login-phone-input .ant-input {
  border-radius: 0 0.625rem 0.625rem 0 !important;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  transition:
    border-color 160ms var(--login-ease-out),
    box-shadow 160ms var(--login-ease-out);
}

.login-phone-input.ant-input-group-wrapper:focus-within .ant-input,
.login-phone-input.ant-input-group-wrapper:focus-within .ant-input-group-addon {
  border-color: var(--login-primary) !important;
}

.login-phone-input .ant-input:focus {
  box-shadow: none;
}

.login-country-prefix {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.login-country-flag {
  display: block;
  width: 1.375rem;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.login-country-code {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--login-text);
  letter-spacing: -0.01em;
}

.login-hint {
  display: block;
  margin-bottom: 1rem !important;
  font-size: 0.75rem !important;
}

.login-submit-item {
  margin-top: 0.5rem;
  margin-bottom: 0 !important;
}

.login-primary-btn.ant-btn-primary {
  height: 2.75rem;
  font-weight: 600;
  border-radius: 0.625rem;
  box-shadow: 0 4px 14px rgba(48, 98, 225, 0.22);
  transition:
    transform 160ms var(--login-ease-out),
    background-color 160ms var(--login-ease-out),
    box-shadow 160ms var(--login-ease-out),
    opacity 160ms var(--login-ease-out);
}

.login-primary-btn.ant-btn-primary:not(:disabled):active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(48, 98, 225, 0.18);
}

.login-otp-input {
  justify-content: center;
}

.login-otp-input .ant-otp-input {
  width: 3rem !important;
  height: 3rem !important;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 0.625rem !important;
  transition:
    border-color 160ms var(--login-ease-out),
    box-shadow 160ms var(--login-ease-out),
    transform 160ms var(--login-ease-out);
}

.login-otp-input .ant-otp-input:focus {
  box-shadow: 0 0 0 3px rgba(48, 98, 225, 0.12);
}

.login-otp-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.login-edit-btn,
.login-resend-btn,
.login-back-btn {
  transition: transform 160ms var(--login-ease-out), opacity 160ms var(--login-ease-out);
}

.login-edit-btn {
  padding-inline: 0.25rem !important;
  height: auto !important;
}

.login-edit-btn:active:not(:disabled),
.login-resend-btn:active:not(:disabled),
.login-back-btn:active:not(:disabled) {
  transform: scale(0.97);
}

.login-resend-btn {
  padding: 0 !important;
  height: auto !important;
  font-size: 0.8125rem !important;
  font-weight: 600;
}

.login-back-btn {
  margin-top: 0.25rem;
  color: var(--login-muted) !important;
}

.login-legal {
  margin: 1.25rem 0 !important;
  text-align: center;
  font-size: 0.75rem !important;
  line-height: 1.6 !important;
  color: var(--login-muted) !important;
}

.login-legal a {
  color: var(--login-primary);
  font-weight: 500;
  transition: color 160ms var(--login-ease-out);
}

.login-divider {
  margin: 0 0 1rem !important;
  border-color: var(--login-border) !important;
}

.login-support-title {
  display: block;
  text-align: center;
  margin-bottom: 0.75rem !important;
}

.login-support-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem;
  width: 100%;
}

.login-support-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  min-width: 0;
  height: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--login-border);
  border-radius: 0.75rem;
  background: #fff;
  text-decoration: none;
  transition:
    border-color 160ms var(--login-ease-out),
    transform 160ms var(--login-ease-out),
    box-shadow 160ms var(--login-ease-out);
}

.login-support-card:active {
  transform: scale(0.98);
}

.login-support-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 0.4375rem;
  background: var(--login-bg);
  color: var(--login-primary);
}

.login-support-card--wa .login-support-card-icon {
  background: rgba(18, 140, 126, 0.1);
  color: #128c7e;
}

.login-support-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

.login-support-card-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--login-muted);
}

.login-support-card-value {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--login-text);
}

.login-copy {
  display: block;
  margin-top: 1.25rem !important;
  text-align: center;
  font-size: 0.6875rem !important;
}

.login-hero {
  position: relative;
  display: none;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(165deg, #243556 0%, #1a2740 48%, #152238 100%);
  color: #fff;
}

.login-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: 26rem;
  flex-direction: column;
  align-items: stretch;
  gap: 1.5rem;
}

.login-hero-copy {
  text-align: left;
}

.login-hero-title {
  margin: 0 0 0.5rem !important;
  max-width: 16ch;
  color: #f4f6fa !important;
  font-size: clamp(1.5rem, 2.1vw, 1.875rem) !important;
  font-weight: 650 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.025em;
}

.login-hero-text {
  margin: 0 !important;
  max-width: 38ch;
  color: rgba(244, 246, 250, 0.72) !important;
  font-size: 0.875rem !important;
  line-height: 1.6 !important;
}

.login-app-preview {
  width: 100%;
}

.login-preview-shell {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(8, 16, 32, 0.28);
}

.login-preview-toolbar {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.login-preview-toolbar span {
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.login-preview-doc {
  padding: 0.875rem;
  background: #f7f8fb;
  color: #1d2433;
}

.login-preview-doc-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.login-preview-label {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
}

.login-preview-id {
  margin: 0.125rem 0 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1d2433;
}

.login-preview-chip {
  padding: 0.125rem 0.4375rem;
  border-radius: 0.25rem;
  background: #e8eef9;
  color: #3062e1;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.login-preview-table {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}

.login-preview-row {
  display: grid;
  grid-template-columns: 1.4fr 0.45fr 0.75fr;
  gap: 0.5rem;
  font-size: 0.6875rem;
  color: #4b5563;
}

.login-preview-row span:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.login-preview-row--head {
  padding-bottom: 0.375rem;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #9ca3af;
}

.login-preview-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.625rem;
  border-top: 1px solid #e5e7eb;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #1d2433;
}

.login-preview-total span:last-child {
  font-size: 0.8125rem;
  font-variant-numeric: tabular-nums;
}

.login-capability-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.login-capability-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.login-capability-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  margin-top: 0.0625rem;
  border-radius: 0.4375rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(244, 246, 250, 0.92);
}

.login-capability-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

.login-capability-title {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(244, 246, 250, 0.95);
}

.login-capability-note {
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(244, 246, 250, 0.58);
}

.login-hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(244, 246, 250, 0.62);
}

@media (hover: hover) and (pointer: fine) {
  .login-legal a:hover {
    color: var(--login-primary-hover);
  }

  .login-support-card:hover {
    border-color: rgba(48, 98, 225, 0.35);
    box-shadow: 0 4px 16px rgba(48, 98, 225, 0.08);
  }

  .login-support-card--wa:hover {
    border-color: rgba(18, 140, 126, 0.35);
    box-shadow: 0 4px 16px rgba(18, 140, 126, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .login-step-shell,
  .login-step-pill {
    animation: none;
  }

  .login-step-dot {
    transition: none;
  }

  .login-primary-btn.ant-btn-primary,
  .login-otp-input .ant-otp-input,
  .login-phone-input .ant-input,
  .login-edit-btn,
  .login-resend-btn,
  .login-back-btn,
  .login-support-card {
    transition: none;
  }

  .login-primary-btn.ant-btn-primary:not(:disabled):active,
  .login-edit-btn:active:not(:disabled),
  .login-resend-btn:active:not(:disabled),
  .login-back-btn:active:not(:disabled),
  .login-support-card:active {
    transform: none;
  }
}

@media (min-width: 1024px) {
  .login-brand-block,
  .login-legal,
  .login-copy,
  .login-support-title,
  .login-support-links {
    text-align: left;
  }

  .login-brand-header {
    text-align: left;
  }

  .login-otp-input {
    justify-content: flex-start;
  }

  .login-otp-meta {
    align-items: flex-start;
  }

  .login-hero {
    display: flex;
  }
}

@media (max-width: 640px) {
  .login-form-panel {
    padding: 1.25rem;
    align-items: flex-start;
    padding-top: 2rem;
  }

  .login-brand-header {
    margin-top: 0;
  }
}

/* Legacy styles used by Digital Dukan and other pages */
.shop-login {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  min-height: 100vh;
  background: rgb(255, 255, 255);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 35%,
    rgba(207, 228, 233, 1) 100%
  );
}

.m-w1440 {
  max-width: 1440px;
  margin: auto;
}

.mpd {
  padding: 100px 50px;
}

.c10 {
  color: #3062e1;
}

.fs60 {
  font-size: 60px !important;
}

.mnone {
  display: block;
}

.shopName {
  font-size: 16px;
  color: #333;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .mpd {
    padding: 50px 20px;
  }

  .fs60 {
    font-size: 35px !important;
  }

  .mnone {
    display: none;
  }
}

.cd-page {
  --cd-accent: #3062e1;
  --cd-accent-soft: rgba(48, 98, 225, 0.08);
  --cd-accent-border: rgba(48, 98, 225, 0.22);
  --cd-accent-hover: rgba(48, 98, 225, 0.04);
  --cd-text: #1d1d1f;
  --cd-muted: #6e6e73;
  --cd-border: #e4e9f0;
  --cd-surface: #ffffff;
  --cd-canvas: #f5f5f7;
  --cd-ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --cd-shadow: 0 1px 2px rgba(29, 29, 31, 0.04), 0 12px 40px rgba(48, 98, 225, 0.06);

  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
  color: var(--cd-text);
}

.cd-page__back {
  padding: 0.75rem 0 0.25rem;
}

.cd-page__back-btn.ant-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  height: auto;
  padding: 0.375rem 0;
  color: var(--cd-muted);
  font-weight: 500;
  transition: color 160ms var(--cd-ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .cd-page__back-btn.ant-btn:hover {
    color: var(--cd-accent);
  }
}

/* Hero */
.cd-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
  padding: 1.5rem 0 3rem;
}

.cd-hero__main {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.cd-hero__eyebrow {
  margin: 0;
  color: var(--cd-accent);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cd-hero__title {
  margin: 0 !important;
  max-width: 14ch;
  font-size: clamp(2rem, 4.5vw, 3rem) !important;
  font-weight: 600 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.03em !important;
  color: var(--cd-text) !important;
}

.cd-hero__title-accent {
  color: var(--cd-accent);
}

.cd-hero__lead {
  margin: 0;
  max-width: 42ch;
  color: var(--cd-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.cd-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cd-hero__highlight {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--cd-border);
  border-radius: 999px;
  background: var(--cd-canvas);
  color: var(--cd-text);
  font-size: 0.8125rem;
  font-weight: 500;
}

.cd-hero__visual {
  display: none;
  justify-content: flex-start;
  align-items: center;
  min-height: 200px;
}

.cd-hero__visual-inner {
  width: min(100%, 300px);
}

.cd-hero__visual-skeleton {
  width: min(100%, 300px);
  height: 200px;
  border-radius: 1rem;
  background: linear-gradient(
    90deg,
    var(--cd-border) 0%,
    #eef1f5 50%,
    var(--cd-border) 100%
  );
  background-size: 200% 100%;
  animation: cd-shimmer 1.4s linear infinite;
}

@keyframes cd-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

@keyframes cd-rise-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form card */
.cd-form-card {
  position: sticky;
  top: 1rem;
  overflow: hidden;
  border: 1px solid var(--cd-border);
  border-radius: 1.125rem;
  background: var(--cd-surface);
  box-shadow: var(--cd-shadow);
  animation: cd-rise-in 280ms var(--cd-ease-out) both;
}

.cd-form-card__header {
  padding: 1.25rem 1.375rem 1.125rem;
  border-bottom: 1px solid var(--cd-border);
  background: linear-gradient(180deg, var(--cd-accent-soft) 0%, var(--cd-surface) 100%);
}

.cd-form-card__title {
  margin: 0 !important;
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em;
  color: var(--cd-text) !important;
}

.cd-form-card__subtitle {
  display: block;
  margin-top: 0.375rem;
  color: var(--cd-muted);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.cd-form-card__body {
  padding: 1.25rem 1.375rem 1.375rem;
}

.cd-dns-help {
  margin-bottom: 1.25rem;
  padding: 0.875rem 1rem;
  border: 1px solid var(--cd-accent-border);
  border-radius: 0.75rem;
  background: var(--cd-accent-soft);
}

.cd-dns-help__step {
  margin: 0 0 0.25rem;
  color: var(--cd-accent);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cd-dns-help__title {
  margin: 0 0 0.375rem;
  color: var(--cd-text);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.cd-dns-help__text {
  margin: 0 0 0.625rem;
  color: var(--cd-muted);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.cd-dns-help__text strong {
  color: var(--cd-text);
  font-weight: 600;
}

.cd-dns-help__ip-row {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.375rem 0.375rem 0.625rem;
  border: 1px solid var(--cd-border);
  border-radius: 0.5rem;
  background: var(--cd-surface);
}

.cd-dns-help__ip {
  flex: 1;
  min-width: 0;
  color: var(--cd-text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

.cd-dns-help__copy.ant-btn {
  flex-shrink: 0;
  height: 2rem;
  padding-inline: 0.625rem;
  border-radius: 0.375rem;
  color: var(--cd-accent);
  font-size: 0.75rem;
  font-weight: 600;
  transition: transform 160ms var(--cd-ease-out), background-color 160ms var(--cd-ease-out);
}

.cd-dns-help__copy.ant-btn:active {
  transform: scale(0.97);
}

@media (hover: hover) and (pointer: fine) {
  .cd-dns-help__copy.ant-btn:hover {
    background: var(--cd-accent-hover);
    color: var(--cd-accent);
  }
}

.cd-dns-help__hint {
  margin: 0.625rem 0 0;
  color: var(--cd-muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.cd-form-card .ant-form-item {
  margin-bottom: 1rem;
}

.cd-form-card .ant-form-item-label > label {
  color: var(--cd-text);
  font-size: 0.8125rem;
  font-weight: 500;
}

.cd-form-card .ant-input-affix-wrapper,
.cd-form-card .ant-input {
  border-color: var(--cd-border);
  border-radius: 0.625rem;
  transition:
    border-color 160ms var(--cd-ease-out),
    box-shadow 160ms var(--cd-ease-out);
}

.cd-form-card .ant-input-affix-wrapper:focus-within,
.cd-form-card .ant-input:focus {
  border-color: var(--cd-accent-border);
  box-shadow: 0 0 0 3px var(--cd-accent-soft);
}

.cd-form-card__preview {
  display: block;
  margin: -0.25rem 0 0.75rem;
  padding: 0.5rem 0.625rem;
  border-radius: 0.5rem;
  background: var(--cd-canvas);
  color: var(--cd-muted);
  font-size: 0.8125rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  word-break: break-all;
}

.cd-form-card__submit.ant-btn-primary {
  min-height: 2.75rem;
  margin-top: 0.25rem;
  border-radius: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: none;
  transition: transform 160ms var(--cd-ease-out), opacity 160ms var(--cd-ease-out);
}

.cd-form-card__submit.ant-btn-primary:active:not(:disabled) {
  transform: scale(0.97);
}

/* Sections */
.cd-section {
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
  border-top: 1px solid var(--cd-border);
}

.cd-section__header {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.cd-section__title {
  margin: 0 0 0.625rem !important;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem) !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em;
  color: var(--cd-text) !important;
}

.cd-section__lead {
  margin: 0;
  color: var(--cd-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Benefits */
.cd-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--cd-border);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--cd-surface);
}

.cd-benefit {
  padding: 1.25rem 1.375rem;
  border-top: 1px solid var(--cd-border);
  transition: background-color 160ms var(--cd-ease-out);
}

.cd-benefit:nth-child(-n + 2) {
  border-top: none;
}

.cd-benefit:nth-child(odd) {
  border-right: 1px solid var(--cd-border);
}

@media (hover: hover) and (pointer: fine) {
  .cd-benefit:hover {
    background: var(--cd-canvas);
  }
}

.cd-benefit__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--cd-text);
}

.cd-benefit__text {
  margin: 0;
  color: var(--cd-muted);
  font-size: 0.875rem;
  line-height: 1.55;
}

/* Showcase */
.cd-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.cd-showcase__item {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  min-width: 0;
}

.cd-showcase__card {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  padding: 1rem;
  border: 1px solid var(--cd-border);
  border-radius: 0.875rem;
  background: var(--cd-surface);
  transition:
    transform 160ms var(--cd-ease-out),
    border-color 160ms var(--cd-ease-out),
    box-shadow 160ms var(--cd-ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .cd-showcase__item:hover .cd-showcase__card {
    border-color: var(--cd-accent-border);
    box-shadow: 0 4px 16px rgba(48, 98, 225, 0.08);
    transform: translateY(-2px);
  }
}

.cd-showcase__card img {
  display: block;
  width: 100%;
  max-height: 72px;
  -o-object-fit: contain;
     object-fit: contain;
}

.cd-showcase__name {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  color: var(--cd-text);
}

/* FAQ */
.cd-faq.ant-collapse {
  border: 1px solid var(--cd-border);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--cd-surface);
}

.cd-faq.ant-collapse > .ant-collapse-item {
  border-bottom: 1px solid var(--cd-border);
}

.cd-faq.ant-collapse > .ant-collapse-item:last-child {
  border-bottom: none;
}

.cd-faq .ant-collapse-header {
  padding: 1rem 1.125rem !important;
  font-weight: 500;
  color: var(--cd-text) !important;
  transition: background-color 160ms var(--cd-ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .cd-faq .ant-collapse-header:hover {
    background: var(--cd-canvas);
  }
}

.cd-faq .ant-collapse-content-box {
  padding: 0 1.125rem 1rem !important;
  color: var(--cd-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Support */
.cd-support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cd-support__main {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 0;
}

.cd-support__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: var(--cd-accent-soft);
  color: var(--cd-accent);
}

.cd-support__title {
  margin: 0 0 0.25rem !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: var(--cd-text) !important;
}

.cd-support__desc {
  display: block;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--cd-muted);
}

.cd-support__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cd-support__btn.ant-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 0.625rem;
  border-color: var(--cd-border);
  background: var(--cd-surface);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--cd-text);
  box-shadow: none;
  transition:
    transform 160ms var(--cd-ease-out),
    border-color 160ms var(--cd-ease-out),
    color 160ms var(--cd-ease-out);
}

.cd-support__btn.ant-btn:active {
  transform: scale(0.97);
}

@media (hover: hover) and (pointer: fine) {
  .cd-support__btn.ant-btn:hover {
    border-color: #c8ced8;
    color: var(--cd-text);
    background: var(--cd-surface);
  }

  .cd-support__btn--whatsapp.ant-btn:hover {
    border-color: rgba(37, 211, 102, 0.45);
    color: #128c7e;
  }
}

.cd-support--form {
  flex-direction: column;
  align-items: stretch;
  gap: 0.875rem;
  margin-top: 1.25rem;
  padding-top: 1.125rem;
  border-top: 1px solid var(--cd-border);
}

.cd-support--form .cd-support__actions--compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  width: 100%;
}

.cd-support--form .cd-support__btn--phone {
  grid-column: 1 / -1;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

/* Bottom CTA */
.cd-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  margin-top: 0.5rem;
  padding: clamp(1.5rem, 4vw, 2rem);
  border: 1px solid var(--cd-accent-border);
  border-radius: 1.125rem;
  background: linear-gradient(135deg, var(--cd-accent-soft) 0%, var(--cd-surface) 100%);
}

.cd-cta__copy {
  min-width: 0;
}

.cd-cta__title {
  margin: 0 0 0.375rem !important;
  font-size: clamp(1.125rem, 2vw, 1.375rem) !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em;
  color: var(--cd-text) !important;
}

.cd-cta__text {
  margin: 0;
  color: var(--cd-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.cd-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.cd-cta__primary.ant-btn-primary {
  min-height: 2.75rem;
  padding-inline: 1.25rem;
  border-radius: 0.625rem;
  font-weight: 600;
  transition: transform 160ms var(--cd-ease-out);
}

.cd-cta__primary.ant-btn-primary:active:not(:disabled) {
  transform: scale(0.97);
}

.cd-cta__store-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.25rem;
  border-radius: 0.5rem;
  transition: opacity 160ms var(--cd-ease-out), transform 160ms var(--cd-ease-out);
}

.cd-cta__store-link:active {
  transform: scale(0.97);
}

@media (hover: hover) and (pointer: fine) {
  .cd-cta__store-link:hover {
    opacity: 0.85;
  }
}

.cd-cta__store-link img {
  display: block;
  height: 2.5rem;
  width: auto;
}

.cd-page__footer {
  display: flex;
  justify-content: center;
  padding: 2rem 0 0.5rem;
}

.cd-page__footer img {
  display: block;
  height: 1.75rem;
  width: auto;
  opacity: 0.55;
}

@media (min-width: 900px) {
  .cd-hero__visual {
    display: flex;
  }
}

@media (max-width: 899px) {
  .cd-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .cd-form-card {
    position: static;
  }

  .cd-benefits {
    grid-template-columns: minmax(0, 1fr);
  }

  .cd-benefit:nth-child(odd) {
    border-right: none;
  }

  .cd-benefit:nth-child(-n + 2) {
    border-top: 1px solid var(--cd-border);
  }

  .cd-benefit:first-child {
    border-top: none;
  }

  .cd-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cd-cta {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .cd-page {
    padding-inline: 1rem;
  }

  .cd-form-card__body {
    padding-inline: 1.125rem;
  }

  .cd-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .cd-support--form .cd-support__actions--compact {
    grid-template-columns: minmax(0, 1fr);
  }

  .cd-support--form .cd-support__btn--phone {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cd-hero__visual-skeleton {
    animation: none;
  }

  .cd-form-card {
    animation: none;
  }

  .cd-form-card__submit.ant-btn-primary,
  .cd-cta__primary.ant-btn-primary,
  .cd-support__btn.ant-btn,
  .cd-dns-help__copy.ant-btn,
  .cd-cta__store-link {
    transition: none;
  }

  .cd-showcase__item:hover .cd-showcase__card {
    transform: none;
  }
}

.analytics__overview-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(4, calc(25% - 18px));
    grid-gap: 24px;
}

.analytics__overview-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.card.analytics__overview-card{
    border-radius: 4px;
    box-shadow: 0 2px 6px #1a181e0a;
}
.title{
    font-size: 16px;
    line-height: 24px;
}

.analytics__overview-card-stat {
    padding-right: 5px;
    font-size: 32px;
    line-height: 36px;
    font-weight: 500;
}

.analytics__overview-chart-card {
    flex: 1 1;
    width: 50%;
}

.card.analytics__overview-chart-card{
    border-radius: 4px;
    box-shadow: 0 2px 6px #1a181e0a;
}

.section-text-12 {
    font-size: 32px;
    line-height: 38px;
    font-weight: 500;
}
.text-semibold {
    font-weight: 600;
}

.upload-banner{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.upload-banner .ant-upload{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container .card-banner-overlay  {
    animation-name: fade-in;
    animation-fill-mode: both;
    animation-duration: .8s;
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .8);
    border-radius: 6px;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
.image-container.image-added:hover .card-banner-overlay{
    display: flex;
}

.ck-editor__editable_inline:not(.ck-comment__input *) {
    height: 300px;
    overflow-y: auto;
}
.blog-banner{
    border: 1px dashed #ccc;
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    border-radius: 5px;
}

.blog-banner .ant-upload{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blog-meta {
    border: 1px dashed #ccc;
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    border-radius: 5px;
}
.blog-meta .ant-upload{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-remove {
    position: absolute;
    top: -8px;
    right: -5px;
    background-color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dukaan-showcase-card{
    border-radius: 20px;
    font-size: 16px;
    color: #333;
    min-height: 280px;
    text-align: justify;
}
.dukaan-showcase-card .ant-card-body{
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center
}

@media screen and (max-width: 480px) {
    .dukaan-showcase-card{
       min-height: 150px;
    }
    .dukaan-showcase-card .ant-card-body{
        min-height: 150px;
    }
}
/* ── Dukaan layout (light shell aligned with MainLayout) ─────── */

.dukaan-sidebar.site-sidebar.ant-layout-sider {
  background: #fafafb !important;
}

.dukaan-sidebar-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-shrink: 0;
  min-height: 3.5rem;
  padding: 0.75rem 0.875rem 0.625rem;
  border-bottom: 1px solid #e4e9f0;
  background: #fafafb;
}

.dukaan-sidebar-brand__main {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  flex: 1;
}

.dukaan-sidebar-brand__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border: 1px solid #e4e9f0;
  border-radius: 0.5rem;
  background: #fff;
  color: #6e6e73;
  transition:
    transform 160ms cubic-bezier(0.23, 1, 0.32, 1),
    background-color 160ms cubic-bezier(0.23, 1, 0.32, 1),
    border-color 160ms cubic-bezier(0.23, 1, 0.32, 1),
    color 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

.dukaan-sidebar-brand__back:active {
  transform: scale(0.97);
}

.dukaan-sidebar-brand__store {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1d1d1f;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
}

.dukaan-sidebar-brand__store-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dukaan-sidebar-brand__share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border: 1px solid #e4e9f0;
  border-radius: 0.5rem;
  background: #fff;
  color: #6e6e73;
  transition:
    transform 160ms cubic-bezier(0.23, 1, 0.32, 1),
    background-color 160ms cubic-bezier(0.23, 1, 0.32, 1),
    border-color 160ms cubic-bezier(0.23, 1, 0.32, 1),
    color 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

.dukaan-sidebar-brand__share:active {
  transform: scale(0.97);
}

.dukaan-sidebar-brand__collapse {
  flex-shrink: 0;
}

.site-sidebar--collapsed .dukaan-sidebar-brand {
  flex-direction: column;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.75rem 0.5rem;
}

.site-sidebar--collapsed .dukaan-sidebar-brand__main {
  justify-content: center;
  width: 100%;
}

.site-sidebar--collapsed .dukaan-sidebar-brand__store {
  display: none;
}

.app-header-shell--dukaan .app-header-banner-wrap {
  display: none;
}

.dukaan-header.app-header.ant-layout-header {
  border-top: 0;
}

.dukaan-header__title {
  margin: 0;
  color: #1d1d1f;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.dukaan-header__store-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.625rem;
  border: 1px solid #e4e9f0;
  border-radius: 0.5rem;
  background: #fff;
  color: #1d1d1f;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
  transition:
    transform 160ms cubic-bezier(0.23, 1, 0.32, 1),
    background-color 160ms cubic-bezier(0.23, 1, 0.32, 1),
    border-color 160ms cubic-bezier(0.23, 1, 0.32, 1),
    color 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

.dukaan-header__store-link:active {
  transform: scale(0.97);
}

.dukaan-sidebar-drawer__title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-width: 0;
}

.dukaan-layout-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 16rem;
}

@media (hover: hover) and (pointer: fine) {
  .dukaan-sidebar-brand__back:hover,
  .dukaan-sidebar-brand__share:hover {
    border-color: rgba(48, 98, 225, 0.28);
    background: rgba(48, 98, 225, 0.05);
    color: #3062e1;
  }

  .dukaan-sidebar-brand__store:hover {
    color: #3062e1;
  }

  .dukaan-header__store-link:hover {
    border-color: rgba(48, 98, 225, 0.28);
    background: #fafafb;
    color: #3062e1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dukaan-sidebar-brand__back,
  .dukaan-sidebar-brand__share,
  .dukaan-header__store-link {
    transition: none;
  }

  .dukaan-sidebar-brand__back:active,
  .dukaan-sidebar-brand__share:active,
  .dukaan-header__store-link:active {
    transform: none;
  }
}

.party-header {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.party-header .title-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.party-header .address-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 10px 0px;
}

.party-header .title-row .avatar-wapper {
  display: flex;
  gap: 10px
}

.party-header .title-row .avatar {
  background-color: rgb(48, 98, 225);
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  color: white;
  border-radius: 4px;
  flex-shrink: 0;
}

.invoice-table .ant-table-content {
  overflow: auto hidden;
}

.invoice-table table {
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  table-layout: auto;
}

.invoice-table.fixed_layout table {
  width: 100%;
  min-width: 100%;
  table-layout: auto;
}

.pdf-viewer {
  height: 90vh;
}

.color-box {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  display: block;

}




@media (max-width : 550px) {
  .party-header .title-row {
    flex-direction: column;
  }

  .pdf-viewer {
    height: auto;
    max-height: 400px;
  }

}


@media (max-width: 580px) {
  .invoice-table.invoice-item-table .card {
    border: 1px solid #f0f0f0;
    box-shadow: none;
  }

  .invoice-table.invoice-item-table tbody .ant-table-cell {
    padding: 10px 0px !important;
  }

  .invoice-table table {
    width: 100%;
    min-width: 100%;
    table-layout: auto;
  }

  .invoice-table thead td {
    padding: 0 !important;
  }

  .invoice-table tbody td {
    padding: 10px 8px !important;
    border: 0px !important;
  }

  .invoice-table .card {
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .03), 0 0 10px 0 rgba(0, 0, 0, .02);
    border-radius: 9px;
    padding: 1rem;
  }
}

.notes .ck-editor__editable_inline:not(.ck-comment__input *) {
  height: 100px;
  overflow-y: auto;
}

.terms .ck-editor__editable_inline:not(.ck-comment__input *) {
  height: 100px;
  overflow-y: auto;
}

.hsn-code:hover {
  text-decoration: underline;
  cursor: pointer;
}

.template-image {
  height: 88%;
  -o-object-fit: cover;
     object-fit: cover;
}

.align-items-center {
  align-items: center;
}

.gap-10 {
  gap: "10px"
}

.invoice-listing-container {
  padding: 0 0.625rem 1rem;
}

@media (max-width: 768px) {
  .invoice-listing-container {
    padding: 0 0 0.75rem;
  }

  .invoice-listing-page {
    gap: 0.625rem;
    width: 100%;
  }

  .invoice-listing-page .invoice-tabs .ant-tabs-nav {
    margin-bottom: 0;
    padding-inline: 0.5rem;
  }

  .invoice-listing-page .invoice-tabs .ant-tabs-nav-wrap {
    overflow: visible;
  }

  .invoice-listing-toolbar {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.625rem;
    border-radius: 0;
    border-inline: none;
  }

  .invoice-listing-toolbar__field,
  .invoice-listing-toolbar__search,
  .invoice-listing-toolbar__field--range,
  .invoice-listing-toolbar__field--sort,
  .invoice-listing-toolbar__field--user,
  .invoice-listing-toolbar__field--firm,
  .invoice-listing-toolbar__field--group {
    flex: 1 1 100%;
    min-width: 0;
    max-width: none;
  }

  .invoice-listing-toolbar__actions {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .invoice-listing-page .invoice-tabs .ant-tabs-tab {
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
  }

  .invoice-listing-page .invoice-tabs .ant-tabs-tab .ant-tabs-tab-btn {
    font-size: 0.875rem;
  }

  .invoice-listing-table .ant-table-tbody>tr>td {
    padding: 0.375rem 0.375rem !important;
    border-bottom: none !important;
  }

  .invoice-listing-page .invoice-listing-card.card {
    width: 100%;
    margin-bottom: 0.625rem;
    padding: 0.75rem;
    border-radius: 0.625rem;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  }

  .invoice-listing-page .invoice-listing-summary {
    border-radius: 0;
    border-inline: none;
  }

  .invoice-listing-summary__inner {
    padding-inline: 0.5rem;
  }

  .invoice-listing-stat {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 0;
  }

  .invoice-listing-summary__pagination {
    width: 100%;
    margin-left: 0;
    display: flex;
    justify-content: flex-end;
    padding-inline: 0.5rem;
  }
}

/* ── Shared invoice search dropdown options ──────────────────── */

.invoice-search-dropdown {
  --isd-brand-blue: #003da5;
  --isd-action-blue: #1b64f2;
  --isd-light-blue: #e8f1ff;
  --isd-motion: cubic-bezier(0.23, 1, 0.32, 1);
}

.invoice-search-dropdown .ant-select-item-option {
  position: relative;
  align-items: flex-start;
  min-height: auto;
  padding: 0.5rem 0.75rem;
  transition: background-color 160ms var(--isd-motion);
}

.invoice-search-dropdown .ant-select-item-option::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  border-radius: 0 2px 2px 0;
  background: var(--isd-action-blue);
  transform: translateY(-50%);
  transition: height 160ms var(--isd-motion);
}

.invoice-search-dropdown .ant-select-item-option-content {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}

@media (hover: hover) and (pointer: fine) {

  .invoice-search-dropdown .ant-select-item-option-active:not(.ant-select-item-option-disabled),
  .invoice-search-dropdown .ant-select-item-option:hover:not(.ant-select-item-option-disabled) {
    background: var(--isd-light-blue) !important;
  }

  .invoice-search-dropdown .ant-select-item-option-active:not(.ant-select-item-option-disabled)::before,
  .invoice-search-dropdown .ant-select-item-option:hover:not(.ant-select-item-option-disabled)::before {
    height: 1.625rem;
  }
}

.invoice-search-dropdown .ant-select-item-option-selected:not(.ant-select-item-option-disabled) {
  background: color-mix(in srgb, var(--isd-light-blue) 72%, var(--isd-action-blue)) !important;
  font-weight: 600;
}

/* ── Invoice listing (BRAND.md scoped) ───────────────────────── */

.invoice-listing-page {
  --il-brand-blue: #003da5;
  --il-action-blue: #1b64f2;
  --il-light-blue: #e8f1ff;
  --il-divider: #e5e7eb;
  --il-surface-muted: #f3f4f6;
  --il-text: #111827;
  --il-text-muted: #6b7280;
  --il-success: #16a34a;
  --il-warning: #d97706;
  --il-error: #dc2626;
  --il-motion: cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

/* Toolbar */
.invoice-listing-toolbar {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.625rem;
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--il-divider);
  border-radius: 0.75rem;
  background: #fff;
}

.invoice-listing-page .invoice-listing-toolbar>.ant-select,
.invoice-listing-page .invoice-listing-toolbar>.ant-picker,
.invoice-listing-page .invoice-listing-toolbar>.ant-input-affix-wrapper {
  width: 100%;
  min-width: 0;
}

.invoice-listing-toolbar__field {
  flex: 1 1 0;
  width: auto;
  min-width: 8.5rem;
  max-width: none;
}

.invoice-listing-toolbar__field--sort {
  flex: 0.85 1 0;
  min-width: 7.75rem;
}

.invoice-listing-toolbar__field--user,
.invoice-listing-toolbar__field--firm,
.invoice-listing-toolbar__field--group {
  flex: 1 1 0;
  min-width: 9rem;
}

.invoice-listing-toolbar__search {
  flex: 1.35 1 0;
  width: auto;
  min-width: 10rem;
  max-width: none;
}

.invoice-listing-toolbar__field--range {
  flex: 1.55 1 0;
  width: auto;
  min-width: 12rem;
  max-width: none;
}

.invoice-listing-toolbar__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: stretch;
}

.invoice-listing-toolbar__columns-btn {
  width: 2.25rem;
  min-width: 2.25rem;
  height: 100%;
  min-height: 2.25rem;
  padding-inline: 0;
}

.invoice-listing-page .invoice-listing-toolbar .ant-select-selection-item,
.invoice-listing-page .invoice-listing-toolbar .ant-select-selection-placeholder {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.invoice-listing-page .invoice-listing-toolbar>.ant-tooltip-open {
  display: flex;
  flex: 1 1 0;
  min-width: 9rem;
}

.invoice-listing-page .invoice-listing-toolbar>.ant-tooltip-open .ant-select {
  width: 100%;
  min-width: 0;
}

@media (max-width: 1100px) {
  .invoice-listing-toolbar {
    flex-wrap: wrap;
  }

  .invoice-listing-toolbar__search,
  .invoice-listing-toolbar__field--range {
    flex: 1 1 calc(50% - 0.3125rem);
  }

  .invoice-listing-toolbar__field--sort,
  .invoice-listing-toolbar__field--user,
  .invoice-listing-toolbar__field--firm,
  .invoice-listing-toolbar__field--group {
    flex: 1 1 calc(33.333% - 0.4375rem);
    min-width: 8.5rem;
  }
}

.invoice-listing-page .invoice-listing-toolbar .ant-select-selector,
.invoice-listing-page .invoice-listing-toolbar .ant-picker,
.invoice-listing-page .invoice-listing-toolbar .ant-input-affix-wrapper {
  min-height: 2.25rem;
  border-color: var(--il-divider) !important;
  border-radius: 0.5rem !important;
  font-size: 0.875rem;
  transition:
    border-color 160ms var(--il-motion),
    box-shadow 160ms var(--il-motion);
}

.invoice-listing-page .invoice-listing-toolbar .ant-select-selection-item,
.invoice-listing-page .invoice-listing-toolbar .ant-select-selection-placeholder,
.invoice-listing-page .invoice-listing-toolbar .ant-picker-input>input {
  font-size: 0.875rem;
}

.invoice-listing-page .invoice-listing-toolbar .ant-input-affix-wrapper .ant-input-prefix {
  color: var(--il-text-muted);
}

.invoice-listing-page .invoice-listing-toolbar .ant-input-affix-wrapper:focus-within {
  border-color: rgba(27, 100, 242, 0.35) !important;
  box-shadow: 0 0 0 2px rgba(27, 100, 242, 0.1);
}

@media (hover: hover) and (pointer: fine) {

  .invoice-listing-page .invoice-listing-toolbar .ant-select:not(.ant-select-disabled):hover .ant-select-selector,
  .invoice-listing-page .invoice-listing-toolbar .ant-picker:hover,
  .invoice-listing-page .invoice-listing-toolbar .ant-input-affix-wrapper:hover {
    border-color: rgba(27, 100, 242, 0.28) !important;
  }
}

/* Tabs */
.invoice-listing-page .invoice-tabs .ant-tabs-nav {
  margin-bottom: 0;
  padding: 0 0.25rem;
}

.invoice-listing-page .invoice-tabs .ant-tabs-tab {
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  transition: color 160ms var(--il-motion);
}

.invoice-listing-page .invoice-tabs .ant-tabs-tab .ant-tabs-tab-btn {
  font-size: 1rem;
  line-height: 1.375;
  transition: transform 140ms var(--il-motion);
}

.invoice-listing-page .invoice-tabs .ant-tabs-tab .ant-tabs-tab-btn:active {
  transform: scale(0.98);
}

.invoice-listing-page .invoice-tabs .ant-tabs-tab-active {
  font-weight: 600;
  color: var(--il-brand-blue);
}

.invoice-listing-page .invoice-tabs .ant-tabs-ink-bar {
  background: var(--il-action-blue);
  height: 2px;
  border-radius: 999px;
}

/* Table shell */
.invoice-listing-table {
  margin-top: 0;
}

.invoice-listing__avatar {
  background-color: var(--il-action-blue) !important;
  flex-shrink: 0;
  font-weight: 600;
}

.invoice-listing-page .text-hover-underline {
  transition: color 160ms var(--il-motion);
}

@media (hover: hover) and (pointer: fine) {
  .invoice-listing-page .invoice-table__row:hover .text-hover-underline {
    color: var(--il-brand-blue);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
}

/* Pressable controls */
.invoice-listing-page .invoice-listing__icon-btn {
  transition:
    transform 140ms var(--il-motion),
    border-color 160ms var(--il-motion),
    background-color 160ms var(--il-motion),
    color 160ms var(--il-motion);
}

.invoice-listing-page .invoice-listing__icon-btn:active {
  transform: scale(0.97);
}

.invoice-listing-page .invoice-listing-row-actions {
  align-items: center;
}

.invoice-listing-page .invoice-listing-row-actions .small-btn {
  pointer-events: auto;
}

.invoice-listing-page .invoice-listing-row-actions .icon-btn.icon-only {
  min-width: 36px;
  min-height: 36px;
  padding: 0;
}

@media (max-width: 575px) {
  .invoice-listing-page .invoice-listing-row-actions .icon-btn.icon-only {
    min-width: 44px;
    min-height: 44px;
  }
}

.invoice-listing-page .invoice-table .ant-btn-primary {
  background: var(--il-action-blue);
  border-color: var(--il-action-blue);
}

@media (hover: hover) and (pointer: fine) {
  .invoice-listing-page .invoice-table .ant-btn-primary:not(:disabled):hover {
    background: var(--il-brand-blue);
    border-color: var(--il-brand-blue);
  }
}

/* Status chips — brand functional colors */
.invoice-listing-page .small-btn.ant-btn-success {
  background-color: var(--il-success);
  border-color: var(--il-success);
}

.invoice-listing-page .small-btn.ant-btn-warning {
  background-color: var(--il-warning);
  border-color: var(--il-warning);
}

.invoice-listing-page .small-btn.ant-btn-danger {
  background-color: var(--il-error);
  border-color: var(--il-error);
}

.invoice-listing-page .small-btn {
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  pointer-events: none;
}

/* Mobile cards */
.invoice-listing-page .invoice-listing-card {
  border-radius: 0.75rem;
  box-shadow: none;
}

.invoice-listing-empty.ant-empty {
  padding: 2.5rem 1rem;
}

.invoice-listing-empty .ant-empty-description {
  color: var(--il-text-muted);
}

/* Summary footer */
.invoice-listing-page .invoice-listing-summary {
  margin: 0;
  border: 1px solid var(--il-divider);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(10px);
}

.invoice-listing-summary__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.invoice-listing-summary__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.5rem;
}

.invoice-listing-stat {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 7.5rem;
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
}

.invoice-listing-stat__label {
  color: var(--il-text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
}

.invoice-listing-stat__value {
  color: var(--il-text);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.invoice-listing-stat--total {
  background: var(--il-surface-muted);
}

.invoice-listing-stat--paid {
  background: rgba(22, 163, 74, 0.08);
}

.invoice-listing-stat--paid .invoice-listing-stat__value {
  color: var(--il-success);
}

.invoice-listing-stat--pending {
  background: rgba(217, 119, 6, 0.08);
}

.invoice-listing-stat--pending .invoice-listing-stat__value {
  color: var(--il-warning);
}

.invoice-listing-summary__pagination {
  margin-left: auto;
}

.invoice-listing-page .invoice-listing-table {
  background: #fff;
  border: 1px solid var(--il-divider);
  border-radius: 0.75rem;
  overflow: hidden;
}

.invoice-listing-page .invoice-table .ant-table-thead>tr>th {
  background: var(--il-surface-muted) !important;
  border-bottom: 1px solid var(--il-divider) !important;
  color: var(--il-text) !important;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.invoice-listing-page .invoice-table .ant-table-tbody>tr>td {
  border-bottom: 1px solid var(--il-divider);
  color: var(--il-text);
  transition: background-color 160ms var(--il-motion);
}

.invoice-listing-page .invoice-table .ant-table-tbody>tr.invoice-table__row {
  cursor: pointer;
}

.invoice-listing-page .invoice-table .ant-table-tbody>tr.invoice-table__row>td {
  position: relative;
}

.invoice-listing-page .invoice-table .ant-table-tbody>tr.invoice-table__row>td:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  border-radius: 0 2px 2px 0;
  background: var(--il-action-blue);
  transform: translateY(-50%);
  transition: height 160ms var(--il-motion);
}

@media (hover: hover) and (pointer: fine) {
  .invoice-listing-page .invoice-table .ant-table-tbody>tr.invoice-table__row:hover>td {
    background: var(--il-light-blue) !important;
  }

  .invoice-listing-page .invoice-table .ant-table-tbody>tr.invoice-table__row:hover>td:first-child::before {
    height: 1.625rem;
  }

  .invoice-listing-page .invoice-table .ant-table-tbody>tr.invoice-table__row:hover .text-hover-underline {
    color: var(--il-brand-blue);
  }
}

.invoice-listing-page .invoice-listing-table .ant-table-tbody>tr.invoice-table__row:active>td {
  background: color-mix(in srgb, var(--il-light-blue) 72%, var(--il-action-blue)) !important;
  transition: background-color 100ms var(--il-motion);
}

.invoice-listing-page .invoice-listing-table .card {
  border: 1px solid var(--il-divider);
  transition:
    background-color 160ms var(--il-motion),
    border-color 160ms var(--il-motion),
    transform 160ms var(--il-motion);
}

@media (hover: hover) and (pointer: fine) {
  .invoice-listing-page .invoice-table tbody tr.invoice-table__row:hover .card {
    background: var(--il-light-blue);
    border-color: rgba(27, 100, 242, 0.28);
  }
}

@media (prefers-reduced-motion: reduce) {

  .invoice-listing-page .invoice-table .ant-table-tbody>tr>td,
  .invoice-listing-page .invoice-table .ant-table-tbody>tr.invoice-table__row>td:first-child::before,
  .invoice-listing-page .invoice-table .card,
  .invoice-listing-page .invoice-tabs .ant-tabs-tab .ant-tabs-tab-btn,
  .invoice-listing-page .invoice-listing__icon-btn {
    transition: none;
  }

  .invoice-listing-page .invoice-tabs .ant-tabs-tab .ant-tabs-tab-btn:active,
  .invoice-listing-page .invoice-listing__icon-btn:active {
    transform: none;
  }
}

.invoice-tabs {
  margin-bottom: 16px;
}

.invoice-tabs .ant-tabs-nav {
  margin-bottom: 0;
}

.invoice-tabs .ant-tabs-tab {
  padding: 12px 24px;
  font-size: 14px;
}

.invoice-listing-page .invoice-tabs .ant-tabs-ink-bar {
  background: var(--il-action-blue);
}

.invoice-table {
  background: #fff;
  border-radius: 8px;
}

.invoice-table .ant-table-thead>tr>th {
  background: #f5f5f5;
  font-weight: 600;
}

/* Responsive styles */
@media (max-width: 768px) {
  .invoice-tabs .ant-tabs-tab {
    padding: 8px 16px;
  }
}

/* Status badge styles */
.small-btn {
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  padding: 0 8px;
  height: 24px;
}

.ant-btn-success {
  background-color: #52c41a;
  color: #fff;
  border-color: #52c41a;
}

.ant-btn-warning {
  background-color: #faad14;
  color: #fff;
  border-color: #faad14;
}

.ant-btn-danger {
  background-color: #ff4d4f;
  color: #fff;
  border-color: #ff4d4f;
}

/* Card styles for mobile view */
.card {
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  margin-bottom: 16px;
}

.card .fs-10 {
  font-size: 10px;
}

.card .fs-12 {
  font-size: 12px;
}

.card .text-grey {
  color: #8c8c8c;
}

.card .text-bold {
  font-weight: 600;
}

.card .nowrap {
  white-space: nowrap;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.icon-only {
  padding: 4px 8px;
}

/* Remove the old sticky footer styles */
.invoice-sticky-footer {
  display: none;
}

/* Add new summary footer styles */
.summary-footer {
  margin: 16px 0;
  background: #fff;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
}

/* Amount card styles */
.amount-card {
  min-width: 200px;
  border-radius: 8px !important;
}

.amount-card.total-card {
  background-color: #F8F9FA !important;
}

.amount-card.paid-card {
  background-color: #F1F9F1 !important;
}

.amount-card.pending-card {
  background-color: #FFF7F7 !important;
}

.amount-card .ant-card-body {
  padding: 12px !important;
}

.amount-card .amount-label {
  font-size: 14px;
  color: #666;
  margin-bottom: 4px;
}

.amount-card .amount-value {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.total-card .amount-value {
  color: #000;
}

.paid-card .amount-value {
  color: #52c41a;
}

.pending-card .amount-value {
  color: #ff4d4f;
}

/* Responsive styles for the footer */
@media (max-width: 768px) {
  .summary-footer {
    margin: 8px 0;
  }

  .amount-card {
    min-width: 150px;
  }

  .amount-card .amount-value {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .summary-footer .d-flex {
    flex-direction: column;
    gap: 8px;
  }

  .summary-footer .d-flex.justify-content-between {
    align-items: flex-start;
  }

  .amount-card {
    width: 100%;
    min-width: auto;
  }
}

/* Update container padding */
.invoice-listing-container {
  padding-bottom: 16px;
}

.invoice-details-container {
  .ant-card-layout {
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }

  .invoice-header {
    padding: 16px 0;
  }

  .avatar-circle {
    width: 40px;
    height: 40px;
    background-color: #f0f2f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    color: #1890ff;
  }

  .party-name {
    font-size: 16px;
    font-weight: 500;
    color: #262626;
    margin-bottom: 4px;
  }

  .invoice-dates {
    font-size: 14px;
    color: #8c8c8c;
  }

  .invoice-amount {
    margin: 0 !important;
    color: #262626;
  }

  .sidebar-card {
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid #f0f0f0;
  }

  .theme-section,
  .template-section {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
  }

  .color-box {
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid #d9d9d9;
  }

  .template-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 12px;
  }

  .template-item {
    cursor: pointer;
    text-align: center;
  }

  .template-name {
    display: block;
    font-size: 12px;
    color: #595959;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .template-image {
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    transition: all 0.3s;

    &.active {
      border: 2px solid #1890ff;
    }

    &:hover {
      border-color: #40a9ff;
    }
  }

  .pdf-viewer {
    min-height: 500px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
  }
}

.text-right {
  text-align: right;
}

.mx-2 {
  margin-left: 8px;
  margin-right: 8px;
}

.mb-4 {
  margin-bottom: 16px;
}

.d-flex {
  display: flex;
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

.gap-2 {
  gap: 8px;
}

.invoice-table-border {
  border-bottom: 2px solid #fc5151;
}

/* ── Invoice layout shell ────────────────────────────────────── */

.invoice-layout-page {
  --il-brand-blue: #003da5;
  --il-action-blue: #1b64f2;
  --il-divider: #e5e7eb;
  --il-text: #111827;
  --il-motion: cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}

.invoice-layout-card.ant-card-layout {
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  border: 1px solid var(--il-divider);
  border-radius: 0.75rem;
  box-shadow: none;
}

.invoice-layout-card.ant-card-layout>.ant-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  padding: 1rem 1.125rem 1.125rem;
}

.invoice-layout-card.ant-card-layout>.ant-card-body>.invoice-details-page {
  flex: 1;
  min-height: 0;
}

.invoice-layout__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--il-divider);
}

.invoice-layout__title.ant-typography {
  margin: 0 !important;
  color: var(--il-text);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.invoice-layout__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-left: auto;
}

.invoice-layout__btn {
  transition: transform 140ms var(--il-motion);
}

.invoice-layout__btn:active {
  transform: scale(0.97);
}

.invoice-layout__btn--primary {
  background: var(--il-action-blue);
  border-color: var(--il-action-blue);
}

@media (hover: hover) and (pointer: fine) {
  .invoice-layout__btn--primary:not(:disabled):hover {
    background: var(--il-brand-blue);
    border-color: var(--il-brand-blue);
  }
}

@media (max-width: 768px) {
  .invoice-layout-card.ant-card-layout {
    border-radius: 0;
    border-inline: none;
  }

  .invoice-layout-card.ant-card-layout>.ant-card-body {
    padding: 0.375rem 0.5rem 0.625rem !important;
  }

  .invoice-layout__header {
    flex-direction: column;
    align-items: stretch;
    padding-inline: 0.125rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.625rem;
  }

  .invoice-layout__actions {
    width: 100%;
    margin-left: 0;
  }

  .invoice-layout__actions .invoice-layout__btn {
    flex: 1 1 auto;
  }

  .invoice-layout-page .invoice-listing-container {
    margin-inline: -0.5rem;
    width: calc(100% + 1rem);
  }
}

/* ── Invoice detail drawer (BRAND.md) ────────────────────────── */

.invoice-detail-drawer {
  --id-brand-blue: #003da5;
  --id-action-blue: #1b64f2;
  --id-light-blue: #e8f1ff;
  --id-divider: #e5e7eb;
  --id-surface-muted: #f3f4f6;
  --id-text: #111827;
  --id-text-muted: #6b7280;
  --id-success: #16a34a;
  --id-warning: #d97706;
  --id-error: #dc2626;
  --id-motion: cubic-bezier(0.23, 1, 0.32, 1);
}

.invoice-detail-drawer .ant-drawer-header {
  padding: 1rem 1.125rem;
  border-bottom: 1px solid var(--id-divider);
}

.invoice-detail-drawer .ant-drawer-body {
  padding: 1rem 1.125rem 1.25rem;
  background: #fff;
}

.invoice-detail-drawer__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
  min-width: 0;
}

.invoice-detail-drawer__title-text {
  color: var(--id-text);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.invoice-detail-drawer__pdf-btn {
  background: var(--id-action-blue);
  border-color: var(--id-action-blue);
  transition: transform 140ms var(--id-motion);
}

.invoice-detail-drawer__pdf-btn:active {
  transform: scale(0.97);
}

@media (hover: hover) and (pointer: fine) {
  .invoice-detail-drawer__pdf-btn:not(:disabled):hover {
    background: var(--id-brand-blue);
    border-color: var(--id-brand-blue);
  }
}

.invoice-detail-drawer__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.invoice-detail-status {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.625rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
}

.invoice-detail-status--paid {
  background: rgba(22, 163, 74, 0.1);
  color: var(--id-success);
}

.invoice-detail-status--partial {
  background: rgba(217, 119, 6, 0.12);
  color: var(--id-warning);
}

.invoice-detail-status--unpaid,
.invoice-detail-status--cancelled {
  background: rgba(220, 38, 38, 0.1);
  color: var(--id-error);
}

.invoice-detail-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.875rem;
  padding: 1rem;
  border: 1px solid var(--id-divider);
  border-radius: 0.75rem;
  background: var(--id-surface-muted);
}

.invoice-detail-hero__main {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-width: 0;
}

.invoice-detail-hero__avatar {
  flex-shrink: 0;
  background: var(--id-action-blue) !important;
  font-weight: 600;
}

.invoice-detail-hero__name {
  margin: 0;
  color: var(--id-text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.invoice-detail-hero__dates {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 0.375rem 0 0;
}

.invoice-detail-hero__dates div {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.invoice-detail-hero__dates dt {
  margin: 0;
  color: var(--id-text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
}

.invoice-detail-hero__dates dd {
  margin: 0;
  color: var(--id-text);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
}

.invoice-detail-hero__amount {
  margin: 0;
  color: var(--id-brand-blue);
  font-size: clamp(1.375rem, 3vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.invoice-detail-party-collapse.ant-collapse {
  border: 1px solid var(--id-divider);
  border-radius: 0.75rem;
  background: #fff;
  overflow: hidden;
}

.invoice-detail-party-collapse .ant-collapse-item {
  border-bottom: none;
}

.invoice-detail-party-collapse .ant-collapse-header {
  padding: 0.75rem 1rem !important;
  color: var(--id-text);
  font-weight: 600;
}

.invoice-detail-party-collapse .ant-collapse-content-box {
  padding: 0 1rem 1rem !important;
}

.invoice-detail-items {
  border: 1px solid var(--id-divider);
  border-radius: 0.75rem;
  overflow: hidden;
}

.invoice-detail-items-table .ant-table-thead>tr>th {
  background: var(--id-surface-muted) !important;
  border-bottom: 1px solid var(--id-divider) !important;
  color: var(--id-text) !important;
  font-size: 0.8125rem;
  font-weight: 600;
}

.invoice-detail-items-table .ant-table-tbody>tr>td {
  border-bottom: 1px solid var(--id-divider);
  vertical-align: top;
}

.invoice-detail-items-table__row {
  transition: background-color 160ms var(--id-motion);
}

@media (hover: hover) and (pointer: fine) {
  .invoice-detail-items-table__row:hover>td {
    background: var(--id-light-blue) !important;
  }
}

.invoice-detail-items__name {
  color: var(--id-text);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}

.invoice-detail-items__meta {
  color: var(--id-text-muted);
  font-size: 0.875rem;
}

.invoice-detail-items__amount {
  color: var(--id-text);
  font-size: 0.875rem;
  font-weight: 700;
}

.invoice-detail-totals {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 0.875rem 1rem;
  border-top: 1px solid var(--id-divider);
  background: #fff;
}

.invoice-detail-totals__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 1rem;
}

.invoice-detail-totals__label {
  color: var(--id-text-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: right;
}

.invoice-detail-totals__value {
  min-width: 5.5rem;
  color: var(--id-text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: right;
}

.invoice-detail-totals__row--emphasis .invoice-detail-totals__label,
.invoice-detail-totals__row--emphasis .invoice-detail-totals__value {
  color: var(--id-text);
  font-size: 1rem;
  font-weight: 700;
}

.invoice-detail-totals__label--success,
.invoice-detail-totals__value--success {
  color: var(--id-success);
  font-weight: 700;
}

.invoice-detail-descriptions.ant-descriptions-bordered .ant-descriptions-item-label {
  width: 8.5rem;
  background: var(--id-surface-muted);
  color: var(--id-text-muted);
  font-size: 0.8125rem;
  font-weight: 600;
}

.invoice-detail-descriptions.ant-descriptions-bordered .ant-descriptions-item-content {
  color: var(--id-text);
  font-size: 0.875rem;
}

.invoice-detail-descriptions--meta {
  border: 1px solid var(--id-divider);
  border-radius: 0.75rem;
  overflow: hidden;
}

.invoice-detail-tag--unpaid {
  margin: 0;
  border-color: rgba(220, 38, 38, 0.2);
  background: rgba(220, 38, 38, 0.08);
  color: var(--id-error);
}

.invoice-detail-payment-btn {
  pointer-events: auto;
}

.invoice-detail-payment-tip {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}

.invoice-detail-payment-tip__label {
  font-weight: 600;
}

.invoice-detail-payment-tip__amount {
  color: var(--id-success);
  font-size: 0.9375rem;
  font-weight: 700;
}

.invoice-detail-rich-text {
  color: var(--id-text);
  font-size: 0.875rem;
  line-height: 1.5;
}

.invoice-detail-rich-text p {
  margin: 0 0 0.5rem;
}

.invoice-detail-rich-text p:last-child {
  margin-bottom: 0;
}

.invoice-detail-attachments {
  padding: 0.875rem 1rem;
  border: 1px solid var(--id-divider);
  border-radius: 0.75rem;
  background: #fff;
}

.invoice-detail-attachments__title {
  margin: 0 0 0.625rem;
  color: var(--id-text-muted);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.invoice-detail-attachments__list {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.invoice-detail-attachments__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--id-action-blue);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 160ms var(--id-motion);
}

@media (hover: hover) and (pointer: fine) {
  .invoice-detail-attachments__link:hover {
    color: var(--id-brand-blue);
  }
}

@media (max-width: 768px) {
  .invoice-detail-hero {
    flex-direction: column;
  }

  .invoice-detail-hero__amount {
    width: 100%;
  }
}

/* ── Invoice details (PDF preview) ───────────────────────────── */

.invoice-details-page {
  --idv-brand-blue: #003da5;
  --idv-action-blue: #1b64f2;
  --idv-light-blue: #e8f1ff;
  --idv-divider: #e5e7eb;
  --idv-surface-muted: #f3f4f6;
  --idv-canvas: #f9fafb;
  --idv-text: #111827;
  --idv-text-muted: #6b7280;
  --idv-motion: cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.invoice-details-card.ant-card-layout {
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  border: 1px solid var(--idv-divider);
  border-radius: 0.75rem;
  box-shadow: none;
  background: #fff;
}

.invoice-details-card.ant-card-layout>.ant-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  padding: 0.75rem 0.75rem 0.75rem 1rem;
}

.invoice-details__controls {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
  max-height: 100%;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
}

.invoice-details__header {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-shrink: 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--idv-divider);
}

.invoice-details__header-text {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
  padding-top: 0.125rem;
}

.invoice-details__back {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(27, 100, 242, 0.32);
  border-radius: 0.5rem;
  background: var(--idv-light-blue);
  color: var(--idv-action-blue);
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 160ms var(--idv-motion),
    border-color 160ms var(--idv-motion),
    color 160ms var(--idv-motion),
    box-shadow 160ms var(--idv-motion),
    transform 140ms var(--idv-motion);
}

.invoice-details__back:focus-visible {
  outline: none;
  border-color: var(--idv-action-blue);
  box-shadow: 0 0 0 3px rgba(27, 100, 242, 0.18);
}

.invoice-details__back:active {
  transform: scale(0.97);
}

@media (hover: hover) and (pointer: fine) {
  .invoice-details__back:hover {
    border-color: var(--idv-action-blue);
    background: var(--idv-action-blue);
    color: #fff;
    box-shadow: 0 2px 8px rgba(27, 100, 242, 0.28);
  }
}

.invoice-details__title {
  margin: 0;
  color: var(--idv-text);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.invoice-details__meta {
  margin: 0;
  color: var(--idv-text-muted);
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.invoice-details__toolbar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-shrink: 0;
  gap: 0.375rem;
  padding: 0.375rem 0.625rem;
  border: 1px solid var(--idv-divider);
  border-radius: 0.5rem;
  background: var(--idv-canvas);
}

.invoice-details__toolbar-label {
  flex-shrink: 0;
  color: var(--idv-text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.invoice-details-page .invoice-details__copy-types {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  min-width: 0;
}

.invoice-details-page .invoice-details__copy-types .ant-checkbox-wrapper {
  color: var(--idv-text);
  font-size: 0.875rem;
  min-height: auto;
  margin-inline-start: 0;
  align-items: center;
  white-space: nowrap;
}

.invoice-details__grid {
  display: grid;
  flex: 1;
  grid-template-columns: 24rem minmax(0, 1fr);
  gap: 0.75rem;
  height: 100%;
  max-height: 100%;
  min-height: 0;
  overflow: hidden;
}

.invoice-details__preview {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  min-width: 0;
  border: 1px solid var(--idv-divider);
  border-radius: 0.75rem;
  background: var(--idv-surface-muted);
  overflow: hidden;
}

.invoice-details-page .invoice-details__pdf-viewer {
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  max-height: 100%;
  overflow: hidden;
}

.invoice-details-page .invoice-details__pdf-viewer>* {
  flex: 1;
  height: 100% !important;
  max-height: 100%;
  min-height: 0;
  width: 100%;
  overflow: hidden;
}

.invoice-details-page .invoice-details__pdf-viewer iframe {
  height: 100% !important;
  min-height: 0;
  width: 100% !important;
}

.invoice-details-page .pdf-layout__loader {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
  min-height: 12rem;
}

.invoice-details-page .invoice-details__pdf-viewer .rpv-core__viewer,
.invoice-details-page .invoice-details__pdf-viewer .rpv-default-layout__container {
  height: 100% !important;
  min-height: 0 !important;
}

.invoice-details__preview-skeleton {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
  min-height: 0;
  padding: 1.25rem;
}

.invoice-details__preview-skeleton .ant-skeleton-input {
  border-radius: 0.5rem;
}

.invoice-details__sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 0;
}

.invoice-details__panel {
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--idv-divider);
  border-radius: 0.625rem;
  background: #fff;
}

.invoice-details__panel-title {
  margin: 0 0 0.5rem;
  color: var(--idv-text-muted);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.invoice-details-page .invoice-details__menu.ant-menu {
  border-inline-end: none !important;
  background: transparent;
}

.invoice-details-page .invoice-details__menu .ant-menu-item,
.invoice-details-page .invoice-details__menu .ant-menu-submenu-title {
  margin: 0.125rem 0;
  border-radius: 0.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  color: var(--idv-text);
  font-size: 0.875rem;
  transition:
    background-color 160ms var(--idv-motion),
    color 160ms var(--idv-motion);
}

@media (hover: hover) and (pointer: fine) {

  .invoice-details-page .invoice-details__menu .ant-menu-item:hover,
  .invoice-details-page .invoice-details__menu .ant-menu-submenu-title:hover {
    background: var(--idv-light-blue);
    color: var(--idv-brand-blue);
  }
}

.invoice-details__colors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.invoice-details-page .invoice-details__color-swatch {
  width: 2rem;
  height: 2rem;
  padding: 0.125rem;
  border: 1px solid var(--idv-divider);
  border-radius: 999px;
  cursor: pointer;
  transition:
    border-color 160ms var(--idv-motion),
    transform 140ms var(--idv-motion);
}

.invoice-details-page .invoice-details__color-swatch:active {
  transform: scale(0.95);
}

.invoice-details-page .invoice-details__color-swatch--active {
  border: 2px solid var(--idv-action-blue);
  padding: 0.125rem;
}

.invoice-details-page .invoice-details__color-swatch .color-box {
  width: 100%;
  height: 100%;
  border-radius: 999px;
}

.invoice-details__panel--templates {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
}

.invoice-details__panel--actions {
  flex-shrink: 0;
}

.invoice-details__wa-promo {
  flex-shrink: 0;
  margin-bottom: 0.25rem;
}

.invoice-details__templates {
  display: flex;
  flex: 0 0 auto;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 0 -0.125rem;
  padding: 0.125rem 0.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

.invoice-details__template {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  width: 8rem;
  cursor: pointer;
}

.invoice-details__template-name {
  width: 100%;
  color: var(--idv-text-muted);
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.invoice-details__template-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 8rem;
  min-height: 10rem;
  padding: 0.5rem;
  border: 1px solid var(--idv-divider);
  border-radius: 0.5rem;
  background: var(--idv-canvas);
  color: var(--idv-text-muted);
  font-size: 0.5625rem;
  line-height: 1.35;
  text-align: center;
  transition:
    border-color 160ms var(--idv-motion),
    box-shadow 160ms var(--idv-motion),
    transform 140ms var(--idv-motion);
}

.invoice-details__template-thumb span:first-child {
  color: var(--idv-text);
  font-size: 0.625rem;
  font-weight: 600;
}

.invoice-details__template-thumb--active,
.invoice-details-page .invoice-details__template .template-image.invoice-details__template-image--active {
  border: 2px solid var(--idv-action-blue);
  box-shadow: 0 0 0 3px rgba(27, 100, 242, 0.12);
}

.invoice-details-page .invoice-details__template .template-image {
  width: 8rem !important;
  height: 10rem !important;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid var(--idv-divider);
  border-radius: 0.5rem;
  transition:
    border-color 160ms var(--idv-motion),
    box-shadow 160ms var(--idv-motion);
}

@media (hover: hover) and (pointer: fine) {

  .invoice-details__template:hover .invoice-details__template-thumb,
  .invoice-details-page .invoice-details__template:hover .template-image {
    border-color: rgba(27, 100, 242, 0.35);
  }
}

.invoice-details__template:active .invoice-details__template-thumb,
.invoice-details-page .invoice-details__template:active .template-image {
  transform: scale(0.98);
}

@media (max-width: 992px) {
  .invoice-details__grid {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    overflow-y: auto;
  }

  .invoice-details__controls {
    order: 2;
    max-height: none;
    overflow: visible;
  }

  .invoice-details__sidebar {
    flex: none;
    flex-direction: row;
    flex-wrap: wrap;
    overflow: visible;
  }

  .invoice-details__preview {
    order: 1;
    min-height: min(72dvh, 42rem);
  }

  .invoice-details__panel {
    flex: 1 1 14rem;
  }

  .invoice-details-page .invoice-details__copy-types {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
  }
}

@media (max-width: 768px) {
  .invoice-details-card.ant-card-layout {
    min-height: calc(100dvh - 5rem);
  }

  .invoice-details__sidebar {
    flex-direction: column;
  }

  .invoice-details__preview {
    min-height: min(60dvh, 32rem);
  }
}

@media (prefers-reduced-motion: reduce) {

  .invoice-details__back,
  .invoice-details-page .invoice-details__color-swatch,
  .invoice-details__template-thumb,
  .invoice-details-page .invoice-details__template .template-image,
  .invoice-details-page .invoice-details__menu .ant-menu-item {
    transition: none;
  }

  .invoice-details__back:active {
    transform: none;
  }
}

/* ── Create Invoice — mobile ─────────────────────────────────── */

.create-invoice-subheader {
  position: sticky;
  top: 48px;
  z-index: 9;
  max-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  background: #f9f0ff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  transition:
    max-height 220ms cubic-bezier(0.23, 1, 0.32, 1),
    opacity 220ms cubic-bezier(0.23, 1, 0.32, 1),
    padding 220ms cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}

.create-invoice-subheader--visible {
  max-height: 6rem;
  padding: 0.375rem 0.625rem;
  opacity: 1;
  pointer-events: auto;
}

.create-invoice-subheader__inner {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.create-invoice-subheader__party-name {
  display: block;
  overflow: hidden;
  color: #111827;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.create-invoice-subheader__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem 1rem;
}

.create-invoice-subheader__meta-item {
  display: flex;
  flex: 1 1 5.5rem;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

.create-invoice-subheader__meta-label {
  color: #6b7280;
  font-size: 0.6875rem;
  line-height: 1.2;
}

.create-invoice-subheader__meta-value {
  color: #111827;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .create-invoice-subheader {
    top: 64px;
  }

  .create-invoice-subheader__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .create-invoice-subheader__party {
    flex: 1 1 auto;
    min-width: 0;
  }

  .create-invoice-subheader--visible {
    max-height: 4rem;
    padding: 0.375rem 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .create-invoice-page .ant-layout-header {
    height: auto !important;
    line-height: normal !important;
  }

  .create-invoice-page .invoice-header-topbar {
    min-height: 48px;
    height: auto;
    padding: 0.375rem 0.5rem;
    gap: 0.375rem;
  }

  .create-invoice-page .invoice-header-topbar .ant-typography-h5 {
    font-size: 0.875rem !important;
    line-height: 1.2 !important;
  }

  .create-invoice-page .invoice-header-subtitle {
    display: none !important;
  }

  .create-invoice-page .invoice-header-topbar .icon-btn.icon-mobile {
    display: none;
  }

  .create-invoice-page .invoice-header-topbar .ant-space {
    gap: 0.25rem !important;
  }

  .create-invoice-page .create-invoice-content {
    margin: 0.5rem 0.625rem 0.75rem !important;
  }

  .create-invoice-page .create-invoice-toolbar {
    gap: 0.75rem;
  }

  .create-invoice-page .create-invoice-toolbar__controls {
    width: 100%;
    gap: 0.625rem !important;
  }

  .create-invoice-page .create-invoice-toolbar__controls .ant-switch {
    max-width: 100%;
  }

  .create-invoice-page .create-invoice-toolbar__actions {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.5rem !important;
  }

  .create-invoice-page .create-invoice-toolbar__actions .ant-select {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 0;
    width: auto !important;
  }

  .create-invoice-page .create-invoice-toolbar__actions .icon-btn {
    flex: 1 1 100%;
    justify-content: center;
  }

  .create-invoice-page .create-invoice-main-card {
    margin-bottom: 0 !important;
  }

  .create-invoice-page .create-invoice-main-card>.ant-card-body {
    padding: 0.5rem !important;
  }

  .create-invoice-page .ant-card-document>.ant-card-body {
    padding: 0.625rem !important;
  }

  .create-invoice-page .create-invoice-table-wrap {
    margin-inline: -0.25rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .create-invoice-page .create-invoice-table-wrap::after {
    display: block;
    padding: 0.25rem 0.5rem 0.375rem;
    color: #86868b;
    font-size: 0.6875rem;
    line-height: 1.3;
    text-align: center;
    content: "Swipe horizontally for more columns";
  }

  .create-invoice-page .create-invoice-product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.625rem !important;
  }

  .create-invoice-page .create-invoice-product-actions__btn,
  .create-invoice-page .create-invoice-product-actions .ant-btn {
    width: 100%;
    margin: 0 !important;
  }

  .create-invoice-page .create-invoice-payment-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0.5rem;
  }

  .create-invoice-page .create-invoice-payment-header__title {
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.35;
  }

  .create-invoice-page .create-invoice-payment-header__hint {
    display: block;
    margin-top: 0.125rem;
    color: #86868b;
    font-size: 0.75rem;
  }

  .create-invoice-page .create-invoice-payment-header__toggle {
    width: 100%;
    justify-content: flex-start !important;
  }

  .create-invoice-page .payments-table .ant-table-content {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .create-invoice-page .payments-table table {
    min-width: 28rem;
  }

  .create-invoice-page .payments-table .ant-select {
    width: 100% !important;
    min-width: 0;
  }

  .create-invoice-page .payments-table td .d-flex.flex-column .ant-select-disabled {
    display: none;
  }

  .create-invoice-page .payments-table .ant-table-footer .ant-space {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0.5rem !important;
  }

  .create-invoice-page .create-invoice-affix-footer {
    border-radius: 0.75rem 0.75rem 0 0;
    box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.08);
  }

  .create-invoice-page .create-invoice-affix-footer>.ant-card-body {
    padding: 0.625rem 0.75rem !important;
  }

  .create-invoice-page .create-invoice-affix-footer__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.625rem;
  }

  .create-invoice-page .create-invoice-affix-footer__total {
    justify-content: center;
    text-align: center;
  }

  .create-invoice-page .create-invoice-affix-footer__total .text-2xl {
    font-size: 1.375rem;
  }

  .create-invoice-page .create-invoice-affix-footer__actions {
    width: 100%;
    justify-content: center;
  }

  .create-invoice-page .ant-layout-footer {
    display: none;
  }

  .create-invoice-page .dscrol {
    padding-bottom: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .create-invoice-subheader {
    transition: none;
  }
}
.no-internet {
  --ni-brand: #3062e1;
  --ni-brand-hover: #2045d1;
  --ni-brand-soft: rgba(48, 98, 225, 0.08);
  --ni-text: #1d1d1f;
  --ni-muted: #6e6e73;
  --ni-border: #e4e9f0;
  --ni-surface: #ffffff;
  --ni-bg: #f5f5f7;
  --ni-ink: #18181b;
  --ni-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ni-ease-out: cubic-bezier(0.23, 1, 0.32, 1);

  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 4.5rem);
  min-height: 100dvh;
  padding: clamp(1.5rem, 5vw, 3rem);
  background:
    radial-gradient(circle at 12% 18%, rgba(48, 98, 225, 0.06) 0%, transparent 42%),
    linear-gradient(180deg, #fafafb 0%, var(--ni-bg) 100%);
  color: var(--ni-text);
}

.no-internet__content {
  width: min(100%, 34rem);
  justify-self: start;
  animation: ni-content-in 520ms var(--ni-ease-out) both;
}

.no-internet__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: ni-visual-in 640ms var(--ni-ease-out) 80ms both;
}

.no-internet__status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.375rem 0.75rem;
  border: 1px solid rgba(48, 98, 225, 0.16);
  border-radius: 999px;
  background: var(--ni-brand-soft);
  color: var(--ni-text);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.no-internet__status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--ni-brand);
  animation: ni-pulse 1.8s var(--ni-ease-out) infinite;
}

.no-internet__title {
  margin: 0 0 0.75rem !important;
  font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
  font-weight: 650 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.03em !important;
  color: var(--ni-ink) !important;
}

.no-internet__description {
  display: block;
  max-width: 42ch;
  margin-bottom: 1.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ni-muted);
}

.no-internet__hint {
  display: block;
  margin-top: 1rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--ni-muted);
}

.no-internet__hint code {
  padding: 0.125rem 0.375rem;
  border-radius: 0.375rem;
  background: rgba(24, 24, 27, 0.05);
  color: var(--ni-ink);
  font-family: "SF Mono", "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.75rem;
}

.no-internet__actions .ant-btn {
  min-height: 2.75rem;
  padding-inline: 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: none;
  transition:
    transform 160ms var(--ni-ease-spring),
    background-color 160ms var(--ni-ease-out);
}

.no-internet__actions .ant-btn:active {
  transform: translateY(1px);
}

.no-internet__card {
  width: min(100%, 18rem);
  padding: 1.5rem;
  border: 1px solid var(--ni-border);
  border-radius: 1.5rem;
  background: var(--ni-surface);
  box-shadow: 0 18px 40px rgba(24, 24, 27, 0.06);
}

.no-internet__icon {
  display: block;
  width: 100%;
  height: auto;
}

.no-internet__bar {
  transform-origin: center bottom;
  animation: ni-bar-float 2.4s var(--ni-ease-out) infinite;
}

.no-internet__bar--1 {
  animation-delay: 0ms;
}

.no-internet__bar--2 {
  animation-delay: 180ms;
}

.no-internet__bar--3 {
  animation-delay: 360ms;
}

.no-internet__slash {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: ni-slash-draw 900ms var(--ni-ease-out) 240ms forwards;
}

.no-internet__orbit {
  transform-origin: 144px 92px;
  animation: ni-orbit 8s linear infinite;
}

@keyframes ni-content-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

@keyframes ni-visual-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

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

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

  50% {
    opacity: 0.55;
    transform: scale(0.88);
  }
}

@keyframes ni-bar-float {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.72);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes ni-slash-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes ni-orbit {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 767px) {
  .no-internet {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .no-internet__visual {
    order: -1;
    width: 100%;
    justify-content: flex-start;
  }

  .no-internet__card {
    width: min(100%, 14rem);
  }
}

/* ── Shared app tokens (listing / detail shells) ─────────────── */

:root {
  --app-border: #e4e9f0;
  --app-border-row: #f0f2f5;
  --app-surface: #ffffff;
  --app-surface-muted: #fafafb;
  --app-text-primary: #1a1d21;
  --app-text-secondary: #6b7280;
  --app-text-muted: #6e6e73;
  --app-accent: var(--primary, #3062e1);
  --app-accent-soft: rgba(48, 98, 225, 0.08);
  --app-accent-hover-border: rgba(48, 98, 225, 0.28);
  --app-accent-hover-bg: rgba(48, 98, 225, 0.04);
  --app-accent-hover-row: #e8f1ff;
  --app-table-hover-bg: #e8f1ff;
  --app-table-hover-accent: #1b64f2;
  --app-table-hover-active: color-mix(in srgb, #e8f1ff 72%, #1b64f2);
  --app-radius-sm: 0.5rem;
  --app-radius-md: 0.625rem;
  --app-radius-lg: 0.75rem;
  --app-motion: cubic-bezier(0.23, 1, 0.32, 1);
}

/* ── Shared listing page layout ──────────────────────────────── */

.app-page-card.ant-card {
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius-lg);
  background: var(--app-surface);
  box-shadow: none;
}

.app-page-card.ant-card-layout.height-90vh {
  min-height: 90vh;
}

.app-page-card>.ant-card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  overflow-y: auto;
  padding: 1rem 1.125rem 1.125rem;
}

.app-page {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.app-page__header {
  flex-shrink: 0;
}

.app-page__heading {
  min-width: 0;
}

.app-page__title.ant-typography {
  margin: 0;
  color: var(--app-text-primary);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.app-page__subtitle {
  display: block;
  margin-top: 0.25rem;
  color: var(--app-text-secondary);
  line-height: 1.4;
}

.app-page__toolbar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.875rem;
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius-md);
  background: var(--app-surface-muted);
}

.app-page__filters {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.625rem;
  flex: 1;
  min-width: 0;
}

.app-page__search.ant-input-affix-wrapper,
.app-page__field.ant-select .ant-select-selector,
.app-page__field.ant-picker {
  border-color: var(--app-border) !important;
  border-radius: var(--app-radius-sm) !important;
  background: var(--app-surface) !important;
}

.app-page__actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.app-page__icon-btn.icon-btn,
.app-page__actions .icon-btn {
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius-sm);
  background: var(--app-surface);
  white-space: nowrap;
  transition:
    transform 160ms var(--app-motion),
    background-color 160ms var(--app-motion),
    border-color 160ms var(--app-motion),
    color 160ms var(--app-motion);
}

.app-page__icon-btn.icon-btn:active,
.app-page__actions .icon-btn:active {
  transform: scale(0.97);
}

.app-page__icon-btn.ant-btn-primary.icon-btn,
.app-page__actions .ant-btn-primary.icon-btn {
  border-color: var(--app-accent);
  background: var(--app-accent);
}

.app-page__table-wrap {
  flex-shrink: 0;
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius-md);
  background: var(--app-surface);
}

.app-page__table-wrap .ant-table {
  background: transparent;
}

.app-page__table-wrap .ant-table-thead>tr>th {
  background: var(--app-surface-muted);
  border-bottom: 1px solid var(--app-border);
  color: var(--app-text-muted);
  font-weight: 600;
}

.app-page__table-wrap .ant-table-tbody>tr>td {
  border-bottom: 1px solid var(--app-border-row);
}

.app-page__footer {
  flex-shrink: 0;
  border: 1px solid var(--app-border);
  border-radius: var(--app-radius-md);
  background: var(--app-surface);
}

.app-page__pill {
  display: inline-flex;
  align-items: center;
  max-width: 10rem;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  background: var(--app-accent-soft);
  color: var(--app-accent);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Global table row hover (invoice-listing pattern) ─────────── */

.ant-table-wrapper .ant-table-tbody>tr.ant-table-row>td {
  position: relative;
  transition: background-color 160ms var(--app-motion);
}

.ant-table-wrapper .ant-table-tbody>tr.ant-table-row>td:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  border-radius: 0 2px 2px 0;
  background: var(--app-table-hover-accent);
  transform: translateY(-50%);
  transition: height 160ms var(--app-motion);
  pointer-events: none;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
  .ant-table-wrapper .ant-table-tbody>tr.ant-table-row:hover>td {
    background: var(--app-table-hover-bg) !important;
  }

  .ant-table-wrapper .ant-table-tbody>tr.ant-table-row:hover>td:first-child::before {
    height: 1.625rem;
  }

  .ant-table-wrapper .ant-table-tbody>tr.ant-table-row:hover .text-hover-underline {
    color: var(--app-table-hover-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
}

.ant-table-wrapper .ant-table-tbody>tr.ant-table-row:active>td {
  background: var(--app-table-hover-active) !important;
  transition: background-color 100ms var(--app-motion);
}

.create-invoice-table .ant-table-tbody>tr.ant-table-row>td:first-child::before,
.payments-table .ant-table-tbody>tr.ant-table-row>td:first-child::before,
.nested-table .ant-table-tbody>tr.ant-table-row>td:first-child::before,
.ant-table-tbody .ant-table-measure-row>td:first-child::before {
  display: none;
}

@media (hover: hover) and (pointer: fine) {

  .create-invoice-table .ant-table-tbody>tr.ant-table-row:hover>td,
  .nested-table .ant-table-tbody>tr.ant-table-row:hover>td {
    background: inherit !important;
  }

  .payments-table .ant-table-tbody>tr.ant-table-row:hover>td {
    background: transparent !important;
  }
}

.create-invoice-table .ant-table-tbody>tr.ant-table-row:active>td,
.nested-table .ant-table-tbody>tr.ant-table-row:active>td,
.payments-table .ant-table-tbody>tr.ant-table-row:active>td {
  background: inherit !important;
}

@media (prefers-reduced-motion: reduce) {

  .ant-table-wrapper .ant-table-tbody>tr.ant-table-row>td,
  .ant-table-wrapper .ant-table-tbody>tr.ant-table-row>td:first-child::before {
    transition: none;
  }
}

@media (hover: hover) and (pointer: fine) {

  .app-page__icon-btn.icon-btn:not(.ant-btn-primary):hover,
  .app-page__actions .icon-btn:not(.ant-btn-primary):hover {
    border-color: var(--app-accent-hover-border);
    background: var(--app-accent-hover-bg);
    color: var(--app-accent);
  }

  .app-page__search.ant-input-affix-wrapper:hover,
  .app-page__field.ant-select:not(.ant-select-disabled):hover .ant-select-selector,
  .app-page__field.ant-picker:hover {
    border-color: var(--app-accent-hover-border) !important;
  }
}

@media screen and (max-width: 767px) {
  .app-page-card>.ant-card-body {
    padding: 0.5rem 0.625rem 0.75rem;
  }

  .app-page__toolbar {
    flex-wrap: wrap;
    padding: 0.625rem;
  }

  .app-page__filters {
    flex-wrap: wrap;
    width: 100%;
  }

  .app-page__toolbar .app-page__search,
  .app-page__toolbar .app-page__field,
  .app-page__filters .app-page__search,
  .app-page__filters .app-page__field,
  .app-page__toolbar .app-page__field.ant-select,
  .app-page__filters .app-page__field.ant-select,
  .app-page__toolbar .app-page__field.ant-picker,
  .app-page__filters .app-page__field.ant-picker {
    flex: 1 1 100%;
    width: 100%;
    max-width: none;
  }

  .app-page__actions {
    flex-wrap: wrap;
    width: 100%;
  }

  .app-page__actions .icon-btn {
    flex: 1;
    min-width: calc(50% - 0.25rem);
  }

  .ant-layout-content {
    margin: 0.25rem 0 0.5rem;
  }

  .layout-footer {
    padding: 0 0.75rem 0.75rem;
  }

  .ant-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Listing pages — use full available width */
  .app-page-card.ant-card {
    border-radius: 0;
    border-inline: none;
  }

  .app-page-card>.ant-card-body {
    padding: 0.375rem 0.5rem 0.625rem !important;
  }

  .app-page__header {
    padding-inline: 0.125rem;
  }

  .app-page__toolbar {
    border-radius: 0.625rem;
  }

  .app-page__table-wrap {
    margin-inline: -0.5rem;
    width: calc(100% + 1rem);
    border-radius: 0;
    border-inline: none;
  }

  .app-page__footer,
  .app-page__footer.summary-footer {
    margin-inline: -0.5rem;
    width: calc(100% + 1rem);
    border-radius: 0;
  }

  .product-tabs-card.ant-card {
    border-radius: 0;
    border-inline: none;
  }

  .product-tabs-card>.ant-card-body {
    padding: 0.375rem 0.5rem 0.625rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {

  .app-page__icon-btn.icon-btn,
  .app-page__actions .icon-btn {
    transition: none;
  }

  .app-page__icon-btn.icon-btn:active,
  .app-page__actions .icon-btn:active {
    transform: none;
  }
}

.layout__grayBackground {
  background: #f9f9f9;
  min-height: 100vh;
}

.layout-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
}

.slide-fadein-up-enter {
  opacity: 0;
  transform: translateY(20px);
}

.slide-fadein-up-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.3s,
    transform 0.4s;
}

.slide-fadein-up-exit {
  opacity: 1;
  transform: translateY(0);
}

.slide-fadein-up-exit-active {
  opacity: 0;
  transform: translateY(-20px);
  transition:
    opacity 0.3s,
    transform 0.4s;
}

.slide-fadein-right-enter {
  opacity: 0;
  transform: translateX(-20px);
}

.slide-fadein-right-enter-active {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 0.3s,
    transform 0.4s;
}

.slide-fadein-right-exit {
  opacity: 1;
  transform: translateX(0);
}

.slide-fadein-right-exit-active {
  opacity: 0;
  transform: translateX(20px);
  transition:
    opacity 0.3s,
    transform 0.4s;
}

.zoom-fadein-enter {
  opacity: 0;
  transform: scale(0.98);
  pointer-events: none;
  z-index: 1;
}

.zoom-fadein-enter-active {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 300ms ease-out,
    transform 300ms ease-out;
}

.zoom-fadein-exit {
  opacity: 1;
  transform: scale(1);
  pointer-events: none;
  z-index: 0;
}

.zoom-fadein-exit-active {
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 300ms ease-in,
    transform 300ms ease-in;
}

.fadein-enter {
  opacity: 0;
}

.fadein-enter-active {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.fadein-exit {
  opacity: 1;
}

.fadein-exit-active {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.label {
  display: block;
  color: var(--dark-label);
}

.label.bold {
  font-weight: 500;
}

.ant-layout-content {
  margin: 1.2rem 1.2rem;
}

@media screen and (max-width: 767px) {
  .ant-layout-content {
    margin: 0.25rem 0 0.5rem;
  }
}

.ant-card-layout>.ant-card-body {
  padding: 0.72rem 0.96rem !important;
}

.ant-drawer .ant-drawer-header {
  border-bottom: 1px solid #e8e8ed;
  border-bottom: 1px solid var(--gray-100);
}

.ant-drawer-body {
  background: #f5f5f7;
  background: var(--gray-25);
}

.ant-form-vertical .ant-form-item-label {
  padding: 0 !important;
}

.ant-form-item .ant-form-item-label>label {
  color: #606770;
  color: var(--gray-500);
  font-weight: bold;
  margin: 0rem 0.24rem 0.3rem;
}

.ant-card-form>.ant-card-body {
  padding: 0.26rem 1.4rem 0.53rem 1.4rem !important;
}

.ant-form-item {
  margin-top: 9px !important;
  margin-bottom: 9px !important;
}

.ant-form-item-explain,
.ant-form-item-extra {
  font-size: 0.78rem !important;
}

.ant-form-item .ant-form-item-explain-error {
  padding-left: 0.3rem;
}

.mobileMenuDrawer .ant-drawer-body {
  padding: 0 !important;
}

.ant-table.ant-table-small .ant-table-thead>tr>th {
  padding: 7.2px 5.4px !important;
}

.ant-table-thead>tr>th {
  color: #606770 !important;
  color: var(--gray-500) !important;
  font-weight: medium !important;
  text-align: left;
  background: #f9f9f9;
  background: var(--gray-50);
  font-size: 0.86rem !important;
  border-bottom: 1px solid #f5f5f7;
  border-bottom: 1px solid var(--gray-75);
  transition: background 0.3s ease;
}

.create-invoice-table .ant-table-thead>tr>th,
.create-invoice-table .ant-table-tbody>tr>td,
.create-invoice-table .ant-table tfoot>tr>th,
.create-invoice-table .ant-table tfoot>tr>td {
  padding: 5px 3px !important;
}

.ant-table-tbody .ant-table-measure-row {
  visibility: collapse !important;
}

.ant-input-affix-wrapper .ant-input-prefix {
  margin-inline-end: 12px;
}

.ant-layout {
  min-height: 100vh !important;
  min-width: 0;
  background: rgba(0, 0, 0, 0);
}

.ant-layout-footer {
  padding: 0 !important;
  background: rgba(0, 0, 0, 0);
}

.ant-layout-header {
  padding: 0 !important;
  line-height: 48px !important;
  height: 48px !important;
  background: rgba(0, 0, 0, 0);
}

.layout__grayBackground {
  background: #f9f9f9;
  background: var(--gray-50);
}

.layout-footer {
  margin: 0 auto;
  padding: 0 2.4rem 0.9rem;
}

.top-header {
  background-color: #ffffff;
  background-color: var(--white);
  box-shadow: 0 1px #e8e8ed;
  box-shadow: 0 1px var(--gray-100);
  color: #000000;
  color: var(--black);
  touch-action: none;
}

.ant-card-document>.ant-card-body {
  padding: 0.72rem 0.96rem !important;
}

.invoice-header-topbar {
  padding: 0 1.8rem;
  min-height: 64px;
  height: 64px;
  background-color: #ffffff;
  background-color: var(--white);
  box-shadow: 0 1px #e8e8ed;
  box-shadow: 0 1px var(--gray-100);
  color: #000000;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  touch-action: none;
}

.ant-descriptions {
  border-radius: 8px;
  background-color: #ffffff;
  background-color: var(--white);
}

.ant-descriptions.ant-descriptions-bordered .ant-descriptions-view {
  border: 1px solid #f5f5f7;
  border: 1px solid var(--gray-75);
}

.custom-description .ant-descriptions-view table tr th.ant-descriptions-item-label {
  width: 30% !important;
}

.ant-descriptions.ant-descriptions-bordered .ant-descriptions-item-label {
  font-weight: 500;
  border-inline-end: none;
  text-align: left;
  color: #606770;
  color: var(--gray-500);
}

.ant-tabs-nav .ant-tabs-tab {
  padding: 6.3px 4.5px;
  font-weight: 500;
  color: #606770;
  color: var(--gray-500);
}

.ant-vertical-tab.ant-tabs-left>.ant-tabs-nav .ant-tabs-tab {
  margin-top: 0;
  margin-bottom: 0;
}

.main-menu {
  height: calc(100vh - 74px);
  overflow-y: auto;
}

.main-menu .ant-menu-item {
  line-height: 35px;
  height: 35px;
}

.main-menu .ant-menu-submenu-title {
  line-height: 35px !important;
  height: 35px !important;
}

.ant-modal-title {
  font-size: 18px !important;
  font-weight: 700 !important;
}

.ant-card-xsmall>.ant-card-body {
  padding: 0.36rem 0.8rem 0.36rem 0.8rem !important;
}

.ant-btn-cash {
  background-color: #e0fcee !important;
  background-color: var(--cash) !important;
  border: 2px solid #e0fcee !important;
  border: 2px solid var(--cash) !important;
  color: #042916 !important;
  color: var(--cash-text) !important;
}

.ant-btn-cash:hover,
.ant-btn-cash:active {
  box-shadow: 0 0 0 1.8px #b9f8d9 !important;
  box-shadow: 0 0 0 1.8px var(--cash-hover) !important;
}

.ant-btn-cash:hover:active,
.ant-btn-cash:focus,
.ant-btn-cash.active {
  box-shadow: 0 0 0 1.8px #cafae2 !important;
  box-shadow: 0 0 0 1.8px var(--cash-active) !important;
}

.ant-btn-tds {
  background-color: #fff8b5 !important;
  background-color: var(--tds) !important;
  border: 2px solid #fff8b5 !important;
  border: 2px solid var(--tds) !important;
  color: #19180b !important;
  color: var(--tds-text) !important;
}

.ant-btn-tds:hover,
.ant-btn-tds:active {
  box-shadow: 0 0 0 1.8px #fff48e !important;
  box-shadow: 0 0 0 1.8px var(--tds-hover) !important;
}

.ant-btn-tds:hover:active,
.ant-btn-tds:focus,
.ant-btn-tds.active {
  box-shadow: 0 0 0 1.8px #fff69f !important;
  box-shadow: 0 0 0 1.8px var(--tds-active) !important;
}

.ant-btn-upi {
  background-color: #e5e6fc !important;
  background-color: var(--upi) !important;
  border: 2px solid #e5e6fc !important;
  border: 2px solid var(--upi) !important;
  color: #05072c !important;
  color: var(--upi-text) !important;
}

.ant-btn-upi:hover,
.ant-btn-upi:active {
  box-shadow: 0 0 0 1.8px #bec1f8 !important;
  box-shadow: 0 0 0 1.8px var(--upi-hover) !important;
}

.ant-btn-upi:hover:active,
.ant-btn-upi:focus,
.ant-btn-upi.active {
  box-shadow: 0 0 0 1.8px #cfd1fa !important;
  box-shadow: 0 0 0 1.8px var(--upi-active) !important;
}

.ant-btn-card {
  background-color: #fbe2fa !important;
  background-color: var(--card) !important;
  border: 2px solid #fbe2fa !important;
  border: 2px solid var(--card) !important;
  color: #290527 !important;
  color: var(--card-text) !important;
}

.ant-btn-card:hover,
.ant-btn-card:active {
  box-shadow: 0 0 0 1.8px #f6bcf3 !important;
  box-shadow: 0 0 0 1.8px var(--card-hover) !important;
}

.ant-btn-card:hover:active,
.ant-btn-card:focus,
.ant-btn-card.active {
  box-shadow: 0 0 0 1.8px #f8cdf6 !important;
  box-shadow: 0 0 0 1.8px var(--card-active) !important;
}

.ant-btn-emi {
  background-color: #f2ffcf !important;
  background-color: var(--emi) !important;
  border: 2px solid #f2ffcf !important;
  border: 2px solid var(--emi) !important;
  color: #323231 !important;
  color: var(--emi-text) !important;
}

.ant-btn-emi:hover,
.ant-btn-emi:active {
  box-shadow: 0 0 0 1.8px #e7ffa5 !important;
  box-shadow: 0 0 0 1.8px var(--emi-hover) !important;
}

.ant-btn-emi:hover:active,
.ant-btn-emi:focus,
.ant-btn-emi.active {
  box-shadow: 0 0 0 1.8px #ecffb8 !important;
  box-shadow: 0 0 0 1.8px var(--emi-active) !important;
}

.ant-btn-paylater {
  background-color: #fee7e9 !important;
  background-color: var(--paylater) !important;
  border: 2px solid #fee7e9 !important;
  border: 2px solid var(--paylater) !important;
  color: #330208 !important;
  color: var(--paylater-text) !important;
}

.ant-btn-paylater:hover,
.ant-btn-paylater:active {
  box-shadow: 0 0 0 1.8px #fcbdc3 !important;
  box-shadow: 0 0 0 1.8px var(--paylater-hover) !important;
}

.ant-btn-paylater:hover:active,
.ant-btn-paylater:focus,
.ant-btn-paylater.active {
  box-shadow: 0 0 0 1.8px #fdd0d4 !important;
  box-shadow: 0 0 0 1.8px var(--paylater-active) !important;
}

.ant-btn-cheque {
  background-color: #e3fafe !important;
  background-color: var(--cheque) !important;
  border: 2px solid #e3fafe !important;
  border: 2px solid var(--cheque) !important;
  color: #012931 !important;
  color: var(--cheque-text) !important;
}

.ant-btn-cheque:hover,
.ant-btn-cheque:active {
  box-shadow: 0 0 0 1.8px #b9f3fd !important;
  box-shadow: 0 0 0 1.8px var(--cheque-hover) !important;
}

.ant-btn-cheque:hover:active,
.ant-btn-cheque:focus,
.ant-btn-cheque.active {
  box-shadow: 0 0 0 1.8px #ccf6fd !important;
  box-shadow: 0 0 0 1.8px var(--cheque-active) !important;
}

.ant-btn-netbanking {
  background-color: #fce6e0 !important;
  background-color: var(--netbanking) !important;
  border: 2px solid #fce6e0 !important;
  border: 2px solid var(--netbanking) !important;
  color: #280c04 !important;
  color: var(--netbanking-text) !important;
}

.ant-btn-netbanking:hover,
.ant-btn-netbanking:active {
  box-shadow: 0 0 0 1.8px #f8c6b9 !important;
  box-shadow: 0 0 0 1.8px var(--netbanking-hover) !important;
}

.ant-btn-netbanking:hover:active,
.ant-btn-netbanking:focus,
.ant-btn-netbanking.active {
  box-shadow: 0 0 0 1.8px #fad4ca !important;
  box-shadow: 0 0 0 1.8px var(--netbanking-active) !important;
}

.small-btn.ant-btn.ant-btn-sm {
  font-size: 0.8rem !important;
  height: 25px !important;
  padding: 0px 7px;
  border-radius: 6px;
}

.payments-table .ant-table-thead>tr>th {
  background-color: #e7f3ed;
  background-color: var(--card-forest);
}

.payments-table .ant-table-tbody>tr:nth-child(odd) {
  background-color: #e7f3ed;
  background-color: var(--card-forest);
}

.payments-table .ant-table-tbody>tr:nth-child(even) {
  background-color: #e7f3ed;
  background-color: var(--card-forest);
}

.payments-table .ant-table-tbody>tr:hover {
  background-color: #e7f3ed;
  background-color: var(--card-forest);
}

.payments-table .ant-table-tbody>tr.ant-table-row-selected {
  background-color: #e7f3ed;
  background-color: var(--card-forest);
}

.payments-table .ant-table-small .ant-table-tbody>.ant-table-row>.ant-table-cell-row-hover {
  background-color: #e7f3ed;
  background-color: var(--card-forest);
}

.payments-table .ant-table-footer {
  background-color: #e7f3ed;
  background-color: var(--card-forest);
}

.ant-btn-success {
  background: #cbf4c9 !important;
  background: var(--success) !important;
  border: none;
  color: #02220d !important;
  color: var(--success-text) !important;
}

.ant-btn-warning {
  background: #fff6cd !important;
  background: var(--warning) !important;
  border: none !important;
  color: #331302 !important;
  color: var(--warning-text) !important;
  font-weight: 500;
}

.ant-btn-danger {
  background: #fff6cd !important;
  background: var(--danger) !important;
  border: none !important;
  color: #331302 !important;
  color: var(--danger-text) !important;
  font-weight: 500;
}

.ant-btn-link.dark:hover,
.ant-btn-link.dark:active,
.ant-btn-link.dark:focus {
  color: #000000 !important;
  color: var(--gray-900) !important;
  text-decoration: none !important;
}

.ag-theme-quartz {
  --ag-header-height: 30px;
  --ag-header-foreground-color: white;
  --ag-header-background-color: black;
  --ag-header-cell-hover-background-color: rgb(80, 40, 140);
  --ag-header-cell-moving-background-color: rgb(80, 40, 140);
}

.ag-theme-quartz .ag-body-horizontal-scroll {
  overflow-x: scroll !important;
  /* Always show horizontal scrollbar */
}

.RichEditor-root {
  background: #fff;
  border: 1px solid #ddd;
  font-family: "Georgia", serif;
  font-size: 14px;
  padding: 15px;
}

.RichEditor-editor {
  border-top: 1px solid #ddd;
  cursor: text;
  font-size: 16px;
  margin-top: 10px;
}

.RichEditor-editor .public-DraftEditorPlaceholder-root,
.RichEditor-editor .public-DraftEditor-content {
  margin: 0 -15px -15px;
  padding: 15px;
}

.RichEditor-editor .public-DraftEditor-content {
  min-height: 100px;
}

.RichEditor-hidePlaceholder .public-DraftEditorPlaceholder-root {
  display: none;
}

.RichEditor-editor .RichEditor-blockquote {
  border-left: 5px solid #eee;
  color: #666;
  font-family: "Hoefler Text", "Georgia", serif;
  font-style: italic;
  margin: 16px 0;
  padding: 10px 20px;
}

.RichEditor-editor .public-DraftStyleDefault-pre {
  background-color: rgba(0, 0, 0, 0.05);
  font-family: "Inconsolata", "Menlo", "Consolas", monospace;
  font-size: 16px;
  padding: 20px;
}

.RichEditor-controls {
  font-family: "Helvetica", sans-serif;
  font-size: 14px;
  margin-bottom: 5px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.RichEditor-styleButton {
  color: #999;
  cursor: pointer;
  margin-right: 16px;
  padding: 2px 0;
  display: inline-block;
}

.RichEditor-activeButton {
  color: #5890ff;
}

/* Ensure parent container has relative positioning */
.transition-wrapper {
  position: relative;
  min-height: 100vh;
  width: 100%;
}

.color-container {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  cursor: pointer;
  transition: all .2s;
}

.color-container:hover {
  border: 2px solid rgb(83, 83, 246);
  padding: 4px;
}

.color-container.active {
  border: 2px solid rgb(83, 83, 246);
  padding: 4px;
}

.dscrol {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
  scroll-behavior: smooth;
  overflow-y: auto;
  height: 100vh;
}

.dscrol::-webkit-scrollbar {
  width: 6px !important;
}

.dscrol::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.dscrol::-webkit-scrollbar-thumb {
  background: #888;
}

.dscrol::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.extra-discount-input .ant-input-number-group-addon {
  background: #3062e1;
  border-inline-end: 1px solid #d9d9d9;
  color: white;
}

.welcome-modal .ant-modal-content {
  /* background-color: linear-gradient(180deg, #e6f7ff 0%, #ffffff 100%); */
  padding: 0px;
}

.nparrow .ant-carousel .slick-prev,
.nparrow .ant-carousel .slick-next {
  color: #333 !important;
  width: 30px;
  height: 30px;
  background-color: #fff !important;
  border-radius: 50%;
}

.nparrow .ant-carousel .slick-prev {
  left: -45px !important;
}

.nparrow .ant-carousel .slick-next {
  right: -45px !important;
}

.nparrow .ant-carousel .slick-dots li.slick-active button {
  background-color: #333 !important;
}

.nparrow .ant-carousel .slick-dots li button {
  background-color: #333 !important;
}

/* stylelint-disable */
html,
body {
  width: 100%;
  height: 100%;
}
input::-ms-clear,
input::-ms-reveal {
  display: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@-ms-viewport {
  width: device-width;
}
body {
  margin: 0;
}
[tabindex='-1']:focus {
  outline: none;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-weight: 500;
}
p {
  margin-top: 0;
  margin-bottom: 1em;
}
abbr[title],
abbr[data-original-title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  border-bottom: 0;
  cursor: help;
}
address {
  margin-bottom: 1em;
  font-style: normal;
  line-height: inherit;
}
input[type='text'],
input[type='password'],
input[type='number'],
textarea {
  -webkit-appearance: none;
}
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1em;
}
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}
dt {
  font-weight: 500;
}
dd {
  margin-bottom: 0.5em;
  margin-left: 0;
}
blockquote {
  margin: 0 0 1em;
}
dfn {
  font-style: italic;
}
b,
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
pre,
code,
kbd,
samp {
  font-size: 1em;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
}
pre {
  margin-top: 0;
  margin-bottom: 1em;
  overflow: auto;
}
figure {
  margin: 0 0 1em;
}
img {
  vertical-align: middle;
  border-style: none;
}
a,
area,
button,
[role='button'],
input:not([type='range']),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}
table {
  border-collapse: collapse;
}
caption {
  padding-top: 0.75em;
  padding-bottom: 0.3em;
  text-align: left;
  caption-side: bottom;
}
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html [type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
input[type='radio'],
input[type='checkbox'] {
  box-sizing: border-box;
  padding: 0;
}
input[type='date'],
input[type='time'],
input[type='datetime-local'],
input[type='month'] {
  -webkit-appearance: listbox;
}
textarea {
  overflow: auto;
  resize: vertical;
}
fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0.5em;
  padding: 0;
  color: inherit;
  font-size: 1.5em;
  line-height: inherit;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}
[type='search'] {
  outline-offset: -2px;
  -webkit-appearance: none;
}
[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none !important;
}
mark {
  padding: 0.2em;
  background-color: #feffe6;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(../assets/d6578b4e85b986795c74.woff2) format('woff2');
}

*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/*
! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com
*/

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.container{
  width: 100%;
}
@media (min-width: 640px){

  .container{
    max-width: 640px;
  }
}
@media (min-width: 768px){

  .container{
    max-width: 768px;
  }
}
@media (min-width: 1024px){

  .container{
    max-width: 1024px;
  }
}
@media (min-width: 1280px){

  .container{
    max-width: 1280px;
  }
}
@media (min-width: 1536px){

  .container{
    max-width: 1536px;
  }
}
.pointer-events-none{
  pointer-events: none;
}
.\!visible{
  visibility: visible !important;
}
.visible{
  visibility: visible;
}
.static{
  position: static;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.sticky{
  position: sticky;
}
.inset-0{
  inset: 0px;
}
.-right-1{
  right: -0.25rem;
}
.-right-2{
  right: -0.5rem;
}
.-top-1{
  top: -0.25rem;
}
.-top-2{
  top: -0.5rem;
}
.bottom-0{
  bottom: 0px;
}
.bottom-\[-15px\]{
  bottom: -15px;
}
.bottom-\[-20px\]{
  bottom: -20px;
}
.left-0{
  left: 0px;
}
.right-0{
  right: 0px;
}
.right-1{
  right: 0.25rem;
}
.right-\[-24px\]{
  right: -24px;
}
.top-0{
  top: 0px;
}
.top-1{
  top: 0.25rem;
}
.top-\[-10px\]{
  top: -10px;
}
.z-10{
  z-index: 10;
}
.z-20{
  z-index: 20;
}
.col-span-10{
  grid-column: span 10 / span 10;
}
.col-span-12{
  grid-column: span 12 / span 12;
}
.col-span-2{
  grid-column: span 2 / span 2;
}
.col-span-4{
  grid-column: span 4 / span 4;
}
.col-span-8{
  grid-column: span 8 / span 8;
}
.\!m-0{
  margin: 0px !important;
}
.m-0{
  margin: 0px;
}
.m-auto{
  margin: auto;
}
.\!my-4{
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.mx-2{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.my-1{
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-10{
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.my-2{
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-3{
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.my-4{
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-5{
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.my-6{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.\!mb-0{
  margin-bottom: 0px !important;
}
.\!mb-1{
  margin-bottom: 0.25rem !important;
}
.\!mb-2{
  margin-bottom: 0.5rem !important;
}
.\!mb-3{
  margin-bottom: 0.75rem !important;
}
.\!mt-2{
  margin-top: 0.5rem !important;
}
.-mb-12{
  margin-bottom: -3rem;
}
.-ml-12{
  margin-left: -3rem;
}
.-mr-16{
  margin-right: -4rem;
}
.-mt-12{
  margin-top: -3rem;
}
.-mt-16{
  margin-top: -4rem;
}
.-mt-8{
  margin-top: -2rem;
}
.mb-0{
  margin-bottom: 0px;
}
.mb-1{
  margin-bottom: 0.25rem;
}
.mb-1\.5{
  margin-bottom: 0.375rem;
}
.mb-10{
  margin-bottom: 2.5rem;
}
.mb-2{
  margin-bottom: 0.5rem;
}
.mb-3{
  margin-bottom: 0.75rem;
}
.mb-4{
  margin-bottom: 1rem;
}
.mb-5{
  margin-bottom: 1.25rem;
}
.mb-6{
  margin-bottom: 1.5rem;
}
.mb-8{
  margin-bottom: 2rem;
}
.mb-\[50px\]{
  margin-bottom: 50px;
}
.ml-1{
  margin-left: 0.25rem;
}
.ml-2{
  margin-left: 0.5rem;
}
.ml-3{
  margin-left: 0.75rem;
}
.ml-5{
  margin-left: 1.25rem;
}
.ml-6{
  margin-left: 1.5rem;
}
.ml-\[-2px\]{
  margin-left: -2px;
}
.mr-1{
  margin-right: 0.25rem;
}
.mr-10{
  margin-right: 2.5rem;
}
.mr-2{
  margin-right: 0.5rem;
}
.mr-3{
  margin-right: 0.75rem;
}
.mr-\[10px\]{
  margin-right: 10px;
}
.mt-0{
  margin-top: 0px;
}
.mt-0\.5{
  margin-top: 0.125rem;
}
.mt-1{
  margin-top: 0.25rem;
}
.mt-10{
  margin-top: 2.5rem;
}
.mt-16{
  margin-top: 4rem;
}
.mt-2{
  margin-top: 0.5rem;
}
.mt-20{
  margin-top: 5rem;
}
.mt-24{
  margin-top: 6rem;
}
.mt-3{
  margin-top: 0.75rem;
}
.mt-4{
  margin-top: 1rem;
}
.mt-5{
  margin-top: 1.25rem;
}
.mt-6{
  margin-top: 1.5rem;
}
.mt-8{
  margin-top: 2rem;
}
.mt-\[16px\]{
  margin-top: 16px;
}
.mt-\[20px\]{
  margin-top: 20px;
}
.mt-auto{
  margin-top: auto;
}
.block{
  display: block;
}
.inline-block{
  display: inline-block;
}
.inline{
  display: inline;
}
.flex{
  display: flex;
}
.inline-flex{
  display: inline-flex;
}
.table{
  display: table;
}
.grid{
  display: grid;
}
.hidden{
  display: none;
}
.h-0{
  height: 0px;
}
.h-10{
  height: 2.5rem;
}
.h-12{
  height: 3rem;
}
.h-16{
  height: 4rem;
}
.h-2{
  height: 0.5rem;
}
.h-20{
  height: 5rem;
}
.h-24{
  height: 6rem;
}
.h-32{
  height: 8rem;
}
.h-4{
  height: 1rem;
}
.h-48{
  height: 12rem;
}
.h-6{
  height: 1.5rem;
}
.h-8{
  height: 2rem;
}
.h-\[20px\]{
  height: 20px;
}
.h-\[22px\]{
  height: 22px;
}
.h-\[40px\]{
  height: 40px;
}
.h-\[50px\]{
  height: 50px;
}
.h-\[60px\]{
  height: 60px;
}
.h-\[70px\]{
  height: 70px;
}
.h-\[80px\]{
  height: 80px;
}
.h-\[calc\(100vh-270px\)\]{
  height: calc(100vh - 270px);
}
.h-\[calc\(100vh-60px\)\]{
  height: calc(100vh - 60px);
}
.h-auto{
  height: auto;
}
.h-full{
  height: 100%;
}
.max-h-16{
  max-height: 4rem;
}
.max-h-\[300px\]{
  max-height: 300px;
}
.max-h-\[60vh\]{
  max-height: 60vh;
}
.max-h-\[calc\(100vh-200px\)\]{
  max-height: calc(100vh - 200px);
}
.max-h-full{
  max-height: 100%;
}
.min-h-0{
  min-height: 0px;
}
.min-h-\[400px\]{
  min-height: 400px;
}
.min-h-\[calc\(100vh-130px\)\]{
  min-height: calc(100vh - 130px);
}
.min-h-\[calc\(100vh-200px\)\]{
  min-height: calc(100vh - 200px);
}
.min-h-screen{
  min-height: 100vh;
}
.\!w-full{
  width: 100% !important;
}
.w-0{
  width: 0px;
}
.w-1\/4{
  width: 25%;
}
.w-1\/6{
  width: 16.666667%;
}
.w-10{
  width: 2.5rem;
}
.w-11{
  width: 2.75rem;
}
.w-12{
  width: 3rem;
}
.w-16{
  width: 4rem;
}
.w-2{
  width: 0.5rem;
}
.w-24{
  width: 6rem;
}
.w-3\/4{
  width: 75%;
}
.w-32{
  width: 8rem;
}
.w-4{
  width: 1rem;
}
.w-40{
  width: 10rem;
}
.w-6{
  width: 1.5rem;
}
.w-8{
  width: 2rem;
}
.w-\[100px\]{
  width: 100px;
}
.w-\[15\%\]{
  width: 15%;
}
.w-\[150px\]{
  width: 150px;
}
.w-\[20px\]{
  width: 20px;
}
.w-\[20x\]{
  width: 20x;
}
.w-\[22px\]{
  width: 22px;
}
.w-\[240px\]{
  width: 240px;
}
.w-\[25\%\]{
  width: 25%;
}
.w-\[282px\]{
  width: 282px;
}
.w-\[300px\]{
  width: 300px;
}
.w-\[320px\]{
  width: 320px;
}
.w-\[40px\]{
  width: 40px;
}
.w-\[45\%\]{
  width: 45%;
}
.w-\[600px\]{
  width: 600px;
}
.w-\[60px\]{
  width: 60px;
}
.w-\[8\%\]{
  width: 8%;
}
.w-\[80px\]{
  width: 80px;
}
.w-\[92\%\]{
  width: 92%;
}
.w-\[96px\]{
  width: 96px;
}
.w-full{
  width: 100%;
}
.w-max{
  width: -moz-max-content;
  width: max-content;
}
.min-w-0{
  min-width: 0px;
}
.min-w-10{
  min-width: 2.5rem;
}
.min-w-\[100px\]{
  min-width: 100px;
}
.min-w-\[300px\]{
  min-width: 300px;
}
.min-w-\[80px\]{
  min-width: 80px;
}
.min-w-full{
  min-width: 100%;
}
.max-w-2xl{
  max-width: 42rem;
}
.max-w-5xl{
  max-width: 64rem;
}
.max-w-6xl{
  max-width: 72rem;
}
.max-w-7xl{
  max-width: 80rem;
}
.max-w-\[200px\]{
  max-width: 200px;
}
.max-w-\[270px\]{
  max-width: 270px;
}
.max-w-\[480px\]{
  max-width: 480px;
}
.max-w-\[700px\]{
  max-width: 700px;
}
.max-w-\[760px\]{
  max-width: 760px;
}
.max-w-full{
  max-width: 100%;
}
.max-w-lg{
  max-width: 32rem;
}
.max-w-md{
  max-width: 28rem;
}
.max-w-screen-2xl{
  max-width: 1536px;
}
.max-w-xs{
  max-width: 20rem;
}
.flex-1{
  flex: 1 1 0%;
}
.flex-\[60\%\]{
  flex: 60%;
}
.flex-shrink-0{
  flex-shrink: 0;
}
.flex-grow{
  flex-grow: 1;
}
.grow{
  flex-grow: 1;
}
.-rotate-45{
  --tw-rotate: -45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.animate-\[bounceRight_1s_ease-in-out_infinite\]{
  animation: bounceRight 1s ease-in-out infinite;
}
@keyframes pulse{

  50%{
    opacity: .5;
  }
}
.animate-\[pulse_2s_ease-in-out_infinite\]{
  animation: pulse 2s ease-in-out infinite;
}
.animate-\[slide-in-blurred-top_0\.6s_cubic-bezier\(0\.230\2c 1\.000\2c 0\.320\2c 1\.000\)_both\]{
  animation: slide-in-blurred-top 0.6s cubic-bezier(0.230,1.000,0.320,1.000) both;
}
.animate-\[tracking-in-expand_0\.7s_cubic-bezier\(0\.215\2c 0\.610\2c 0\.355\2c 1\.000\)_both\]{
  animation: tracking-in-expand 0.7s cubic-bezier(0.215,0.610,0.355,1.000) both;
}
@keyframes bounce{

  0%, 100%{
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50%{
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}
.animate-bounce{
  animation: bounce 1s infinite;
}
@keyframes pulse{

  50%{
    opacity: .5;
  }
}
.animate-pulse{
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.cursor-not-allowed{
  cursor: not-allowed;
}
.cursor-pointer{
  cursor: pointer;
}
.select-none{
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.resize{
  resize: both;
}
.list-inside{
  list-style-position: inside;
}
.list-disc{
  list-style-type: disc;
}
.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-12{
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.flex-row{
  flex-direction: row;
}
.flex-col{
  flex-direction: column;
}
.flex-col-reverse{
  flex-direction: column-reverse;
}
.flex-wrap{
  flex-wrap: wrap;
}
.flex-nowrap{
  flex-wrap: nowrap;
}
.items-start{
  align-items: flex-start;
}
.items-center{
  align-items: center;
}
.justify-start{
  justify-content: flex-start;
}
.justify-end{
  justify-content: flex-end;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.gap-1{
  gap: 0.25rem;
}
.gap-1\.5{
  gap: 0.375rem;
}
.gap-10{
  gap: 2.5rem;
}
.gap-2{
  gap: 0.5rem;
}
.gap-3{
  gap: 0.75rem;
}
.gap-4{
  gap: 1rem;
}
.gap-5{
  gap: 1.25rem;
}
.gap-6{
  gap: 1.5rem;
}
.gap-8{
  gap: 2rem;
}
.space-x-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.overflow-auto{
  overflow: auto;
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-x-auto{
  overflow-x: auto;
}
.overflow-y-auto{
  overflow-y: auto;
}
.overflow-y-scroll{
  overflow-y: scroll;
}
.truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-ellipsis{
  text-overflow: ellipsis;
}
.whitespace-nowrap{
  white-space: nowrap;
}
.whitespace-pre-line{
  white-space: pre-line;
}
.whitespace-pre-wrap{
  white-space: pre-wrap;
}
.break-words{
  overflow-wrap: break-word;
}
.break-all{
  word-break: break-all;
}
.break-keep{
  word-break: keep-all;
}
.rounded{
  border-radius: 0.25rem;
}
.rounded-2xl{
  border-radius: 1rem;
}
.rounded-full{
  border-radius: 9999px;
}
.rounded-lg{
  border-radius: 0.5rem;
}
.rounded-md{
  border-radius: 0.375rem;
}
.rounded-xl{
  border-radius: 0.75rem;
}
.rounded-b-xl{
  border-bottom-right-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
}
.rounded-t-xl{
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}
.rounded-bl-\[100px\]{
  border-bottom-left-radius: 100px;
}
.rounded-tr-\[100px\]{
  border-top-right-radius: 100px;
}
.border{
  border-width: 1px;
}
.border-0{
  border-width: 0px;
}
.border-2{
  border-width: 2px;
}
.border-b{
  border-bottom-width: 1px;
}
.border-l-\[15px\]{
  border-left-width: 15px;
}
.border-r-\[15px\]{
  border-right-width: 15px;
}
.border-t{
  border-top-width: 1px;
}
.border-t-\[15px\]{
  border-top-width: 15px;
}
.border-dashed{
  border-style: dashed;
}
.border-hidden{
  border-style: hidden;
}
.border-none{
  border-style: none;
}
.border-black{
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}
.border-blue-100{
  --tw-border-opacity: 1;
  border-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
}
.border-blue-200{
  --tw-border-opacity: 1;
  border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
}
.border-blue-500{
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}
.border-gray-200{
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.border-gray-500{
  --tw-border-opacity: 1;
  border-color: rgb(107 114 128 / var(--tw-border-opacity, 1));
}
.border-gray-600{
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity, 1));
}
.border-gray-800{
  --tw-border-opacity: 1;
  border-color: rgb(31 41 55 / var(--tw-border-opacity, 1));
}
.border-green-200{
  --tw-border-opacity: 1;
  border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}
.border-red-200{
  --tw-border-opacity: 1;
  border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
}
.border-red-300{
  --tw-border-opacity: 1;
  border-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
}
.border-red-400{
  --tw-border-opacity: 1;
  border-color: rgb(248 113 113 / var(--tw-border-opacity, 1));
}
.border-red-500{
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}
.border-red-600{
  --tw-border-opacity: 1;
  border-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
}
.border-transparent{
  border-color: transparent;
}
.border-white\/10{
  border-color: rgb(255 255 255 / 0.1);
}
.border-yellow-200{
  --tw-border-opacity: 1;
  border-color: rgb(254 240 138 / var(--tw-border-opacity, 1));
}
.border-l-transparent{
  border-left-color: transparent;
}
.border-r-transparent{
  border-right-color: transparent;
}
.border-t-\[\#e14a30\]{
  --tw-border-opacity: 1;
  border-top-color: rgb(225 74 48 / var(--tw-border-opacity, 1));
}
.bg-\[\#1E3FA3\]{
  --tw-bg-opacity: 1;
  background-color: rgb(30 63 163 / var(--tw-bg-opacity, 1));
}
.bg-\[\#3062E1\]{
  --tw-bg-opacity: 1;
  background-color: rgb(48 98 225 / var(--tw-bg-opacity, 1));
}
.bg-\[\#575050\]{
  --tw-bg-opacity: 1;
  background-color: rgb(87 80 80 / var(--tw-bg-opacity, 1));
}
.bg-\[\#e14a30\]{
  --tw-bg-opacity: 1;
  background-color: rgb(225 74 48 / var(--tw-bg-opacity, 1));
}
.bg-\[\#f0f0f0\]{
  --tw-bg-opacity: 1;
  background-color: rgb(240 240 240 / var(--tw-bg-opacity, 1));
}
.bg-\[\#f1f1f1\]{
  --tw-bg-opacity: 1;
  background-color: rgb(241 241 241 / var(--tw-bg-opacity, 1));
}
.bg-\[\#f5f5f5\]{
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
}
.bg-blue-100{
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
.bg-blue-50{
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
.bg-blue-500{
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
}
.bg-blue-600{
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.bg-gray-200{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.bg-gray-300{
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}
.bg-gray-50{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.bg-green-100{
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}
.bg-green-50{
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}
.bg-green-500{
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}
.bg-indigo-50{
  --tw-bg-opacity: 1;
  background-color: rgb(238 242 255 / var(--tw-bg-opacity, 1));
}
.bg-indigo-600{
  --tw-bg-opacity: 1;
  background-color: rgb(79 70 229 / var(--tw-bg-opacity, 1));
}
.bg-indigo-600\/10{
  background-color: rgb(79 70 229 / 0.1);
}
.bg-orange-50{
  --tw-bg-opacity: 1;
  background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
}
.bg-purple-50{
  --tw-bg-opacity: 1;
  background-color: rgb(250 245 255 / var(--tw-bg-opacity, 1));
}
.bg-red-100{
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}
.bg-red-50{
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
.bg-transparent{
  background-color: transparent;
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/10{
  background-color: rgb(255 255 255 / 0.1);
}
.bg-white\/20{
  background-color: rgb(255 255 255 / 0.2);
}
.bg-white\/80{
  background-color: rgb(255 255 255 / 0.8);
}
.bg-yellow-50{
  --tw-bg-opacity: 1;
  background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
}
.bg-gradient-to-b{
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bg-gradient-to-r{
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.from-\[\#3062E1\]{
  --tw-gradient-from: #3062E1 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(48 98 225 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-600{
  --tw-gradient-from: #2563eb var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(37 99 235 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-indigo-600{
  --tw-gradient-from: #4f46e5 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(79 70 229 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-\[\#1E3FA3\]{
  --tw-gradient-to: #1E3FA3 var(--tw-gradient-to-position);
}
.to-blue-800{
  --tw-gradient-to: #1e40af var(--tw-gradient-to-position);
}
.to-violet-600{
  --tw-gradient-to: #7c3aed var(--tw-gradient-to-position);
}
.object-contain{
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}
.object-fill{
  -o-object-fit: fill;
     object-fit: fill;
}
.p-0{
  padding: 0px;
}
.p-0\.5{
  padding: 0.125rem;
}
.p-1{
  padding: 0.25rem;
}
.p-10{
  padding: 2.5rem;
}
.p-2{
  padding: 0.5rem;
}
.p-3{
  padding: 0.75rem;
}
.p-4{
  padding: 1rem;
}
.p-5{
  padding: 1.25rem;
}
.p-6{
  padding: 1.5rem;
}
.p-8{
  padding: 2rem;
}
.px-1{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-1\.5{
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.px-10{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-20{
  padding-left: 5rem;
  padding-right: 5rem;
}
.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-\[20px\]{
  padding-left: 20px;
  padding-right: 20px;
}
.py-0\.5{
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-10{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2\.5{
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-\[100px\]{
  padding-top: 100px;
  padding-bottom: 100px;
}
.pb-1{
  padding-bottom: 0.25rem;
}
.pb-2{
  padding-bottom: 0.5rem;
}
.pb-24{
  padding-bottom: 6rem;
}
.pb-4{
  padding-bottom: 1rem;
}
.pb-6{
  padding-bottom: 1.5rem;
}
.pl-2{
  padding-left: 0.5rem;
}
.pl-4{
  padding-left: 1rem;
}
.pl-5{
  padding-left: 1.25rem;
}
.pr-3{
  padding-right: 0.75rem;
}
.pt-1{
  padding-top: 0.25rem;
}
.pt-2{
  padding-top: 0.5rem;
}
.pt-24{
  padding-top: 6rem;
}
.pt-3{
  padding-top: 0.75rem;
}
.pt-4{
  padding-top: 1rem;
}
.pt-8{
  padding-top: 2rem;
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.text-start{
  text-align: start;
}
.font-inherit{
  font-family: inherit;
}
.font-mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl{
  font-size: 3rem;
  line-height: 1;
}
.text-6xl{
  font-size: 3.75rem;
  line-height: 1;
}
.text-7xl{
  font-size: 4.5rem;
  line-height: 1;
}
.text-\[10px\]{
  font-size: 10px;
}
.text-\[120px\]{
  font-size: 120px;
}
.text-\[16px\]{
  font-size: 16px;
}
.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold{
  font-weight: 700;
}
.font-extrabold{
  font-weight: 800;
}
.font-medium{
  font-weight: 500;
}
.font-normal{
  font-weight: 400;
}
.font-semibold{
  font-weight: 600;
}
.uppercase{
  text-transform: uppercase;
}
.italic{
  font-style: italic;
}
.leading-relaxed{
  line-height: 1.625;
}
.tracking-tight{
  letter-spacing: -0.025em;
}
.\!text-white{
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
}
.text-\[\#051431\]{
  --tw-text-opacity: 1;
  color: rgb(5 20 49 / var(--tw-text-opacity, 1));
}
.text-\[\#3062E1\]{
  --tw-text-opacity: 1;
  color: rgb(48 98 225 / var(--tw-text-opacity, 1));
}
.text-\[\#666\]{
  --tw-text-opacity: 1;
  color: rgb(102 102 102 / var(--tw-text-opacity, 1));
}
.text-\[\#fff\]{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-black{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-blue-500{
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}
.text-blue-600{
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.text-blue-700{
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}
.text-blue-800{
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}
.text-emerald-500{
  --tw-text-opacity: 1;
  color: rgb(16 185 129 / var(--tw-text-opacity, 1));
}
.text-gray-300{
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.text-gray-400{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-600{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-gray-700{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-gray-800{
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.text-gray-900{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.text-green-500{
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / var(--tw-text-opacity, 1));
}
.text-green-600{
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}
.text-green-700{
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity, 1));
}
.text-indigo-600{
  --tw-text-opacity: 1;
  color: rgb(79 70 229 / var(--tw-text-opacity, 1));
}
.text-orange-500{
  --tw-text-opacity: 1;
  color: rgb(249 115 22 / var(--tw-text-opacity, 1));
}
.text-orange-600{
  --tw-text-opacity: 1;
  color: rgb(234 88 12 / var(--tw-text-opacity, 1));
}
.text-purple-500{
  --tw-text-opacity: 1;
  color: rgb(168 85 247 / var(--tw-text-opacity, 1));
}
.text-purple-600{
  --tw-text-opacity: 1;
  color: rgb(147 51 234 / var(--tw-text-opacity, 1));
}
.text-red-50{
  --tw-text-opacity: 1;
  color: rgb(254 242 242 / var(--tw-text-opacity, 1));
}
.text-red-500{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-red-600{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-red-700{
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-white\/90{
  color: rgb(255 255 255 / 0.9);
}
.text-yellow-500{
  --tw-text-opacity: 1;
  color: rgb(234 179 8 / var(--tw-text-opacity, 1));
}
.text-yellow-600{
  --tw-text-opacity: 1;
  color: rgb(202 138 4 / var(--tw-text-opacity, 1));
}
.underline{
  text-decoration-line: underline;
}
.line-through{
  text-decoration-line: line-through;
}
.antialiased{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.opacity-0{
  opacity: 0;
}
.opacity-65{
  opacity: 0.65;
}
.opacity-85{
  opacity: 0.85;
}
.shadow{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm{
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl{
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-green-200{
  --tw-shadow-color: #bbf7d0;
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-indigo-200{
  --tw-shadow-color: #c7d2fe;
  --tw-shadow: var(--tw-shadow-colored);
}
.blur{
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-shadow{
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform{
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-150{
  transition-duration: 150ms;
}
.duration-200{
  transition-duration: 200ms;
}
.duration-300{
  transition-duration: 300ms;
}
.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

:root {
  --dark-label: #040434;
  --font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --kit-thermal-font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --primary: #3062E1;
  --primary-light: #3572ff;
  --primary-hover: #2045d1;
  --primary-active: #234ce8;
  --primary-border: #4f78ff;
  --primary-dark: #1936a3;
  --white-strict: #ffffff;
  --black-strict: #000000;
  --gray-25: #f5f5f7;
  --gray-75: #f5f5f7;
  --gray-50: #f9f9f9;
  --gray-100: #e8e8ed;
  --gray-200: #d9d9d7;
  --gray-300: #bec3c9;
  --gray-400: #8d949e;
  --gray-500: #606770;
  --gray-600: #444950;
  --gray-700: #303338;
  --gray-800: #1c1e21;
  --gray-900: #000000;
  --white: #ffffff;
  --black: #000000;
  --darker: #000000;
  --text: #000000;
  --cash: #e0fcee;
  --tds: #fff8b5;
  --tcs: #ffebf2;
  --upi: #e5e6fc;
  --card: #fbe2fa;
  --netbanking: #fce6e0;
  --paylater: #fee7e9;
  --emi: #f2ffcf;
  --cheque: #e3fafe;
  --cash-active: #cafae2;
  --tds-active: #fff69f;
  --tcs-active: #ffd2e2;
  --upi-active: #cfd1fa;
  --card-active: #f8cdf6;
  --netbanking-active: #fad4ca;
  --paylater-active: #fdd0d4;
  --emi-active: #ecffb8;
  --cheque-active: #ccf6fd;
  --cash-hover: #b9f8d9;
  --tds-hover: #fff48e;
  --tcs-hover: #ffbfd5;
  --upi-hover: #bec1f8;
  --card-hover: #f6bcf3;
  --netbanking-hover: #f8c6b9;
  --paylater-hover: #fcbdc3;
  --emi-hover: #e7ffa5;
  --cheque-hover: #b9f3fd;
  --amount: #f3f9ff;
  --paid: #f3faf6;
  --pending: #fdf0e6;
  --cash-text: #042916;
  --upi-text: #05072c;
  --tds-text: #19180b;
  --tcs-text: #ccbcc2;
  --card-text: #290527;
  --netbanking-text: #280c04;
  --paylater-text: #330208;
  --emi-text: #323231;
  --cheque-text: #012931;
  --amount-text: #001933;
  --paid-text: #021f0e;
  --pending-text: #191812;
  --success: #cbf4c9;
  --success-text: #02220d;
  --success-active: #b9f0b7;
  --warning-active: #fff2b6;
  --danger-active: #ffd7e2;
  --success-hover: #abeda8;
  --warning-hover: #ffefa4;
  --danger-hover: #ffc3d3;
  --warning: #fff6cd;
  --warning-text: #331302;
  --danger: #fff0f4;
  --danger-text: #db0629;
  --lblue: #f5faff;
  --lred: #ffefed;
  --lgreen: #ebf5f1;
  --lyellow: #fffbf3;
  --lpurple: #f6f4fb;
  --lpink: #fff1f5;
  --lblue2: #deeeff;
  --positive-bg: #f5faf8;
  --negative-bg: #fef8f8;
  --purple: #453473;
  --orange2: #ffe1d6;
  --orangedark: #672a16;
  --orangeproduct: #ff3819;
  --gray-9: #e3e8ee;
  --orangeStore: #fc3654;
  --card-magenta: #fce6fa;
  --card-azure: #e6f2ff;
  --card-forest: #e7f3ed;
  --card-orange: #fdf0e6;
  --card-white: #fffafb;
  --card-indigo: #efeaff;
  --card-orange-dark: #fdf0e6;
  --view-button: #f2ebff;
  --record-payment: #fff6cd;
  --send-button: #e3faec;
  --view-button-active: #e2d2ff;
  --record-payment-active: #fff2b6;
  --send-button-active: #cff6de;
  --view-button-hover: #d5bfff;
  --record-payment-hover: #ffefa4;
  --send-button-hover: #bff3d3;
  --blue50: #ddfffe;
  --blue100: #cff5f6;
  --blue200: #75d5e8;
  --blue300: #06b9ef;
  --blue400: #0196ed;
  --blue500: #0570de;
  --blue600: #0055bc;
  --blue700: #03438e;
  --blue800: #013260;
  --blue900: #011c3a;
  --green50: #ecfed7;
  --green100: #cbf4c9;
  --green200: #76df47;
  --green300: #48c404;
  --green400: #3ea50b;
  --green500: #228403;
  --green600: #05690d;
  --green700: #0a5118;
  --green800: #043b15;
  --green900: #02220d;
  --orange50: #fff6cd;
  --orange100: #fff2b7;
  --orange200: #fcbd3a;
  --orange300: #ff8f0e;
  --orange400: #ed6804;
  --orange500: #c84801;
  --orange600: #a82c00;
  --orange700: #842106;
  --orange800: #5f1a05;
  --orange900: #331302;
  --red50: #fff5fa;
  --red100: #ffe7f2;
  --red200: #ffb1cd;
  --red300: #fe87a1;
  --red400: #fc526a;
  --red500: #df1b41;
  --red600: #b3063d
;
}



html,
:host {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 14px;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-family: var(--font-family);
}
*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}




body {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  font-family: var(--font-family);
  color: #000000;
  color: var(--black);
  background-color: #ffffff;
  background-color: var(--white);
  overflow-x: hidden;
  position: relative;
  font-variant: normal;
  font-feature-settings: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

.h6,
h6 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: .36rem
}

.h3,
h3 {
  font-size: 1.75rem;
}

.bg-negative {
  background-color: #fef8f8 !important;
  background-color: var(--negative-bg) !important;
}

.bg-positive {
  background-color: #f5faf8 !important;
  background-color: var(--positive-bg) !important;
}

.text-red {
  color: #e11900 !important
}

.text-green {
  color: #0c8346 !important
}

.bg-gray-75 {
  background-color: #f1f1f1 !important;
  background-color: var(--gray-75) !important;
}

.text-primary {
  color: #2754ff !important;
  color: var(--primary) !important;
}

.text-gray-500 {
  color: #606770 !important;
  color: var(--gray-500) !important;
}

.text-gray-900 {
  color: #000000 !important;
  color: var(--gray-900) !important;
}

.border-gray-100 {
  border-color: #e8e8ed !important;
  border-color: var(--gray-100) !important;
}

.bg-card-amount {
  background-color: #f3f9ff !important;
  background-color: var(--amount) !important;
}

.bg-card-paid {
  background-color: #f3faf6 !important;
  background-color: var(--paid) !important;
}

.bg-card-orange {
  background-color: #fdf0e6 !important;
  background-color: var(--card-orange) !important;
}

.text-hover-underline:hover {
  text-decoration: underline;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.mb-0 {
  margin-bottom: 0px;
}

.ml-1 {
  margin-left: 0.25rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.font-size-10 {
  font-size: 0.6rem;
}

.font-size-14 {
  font-size: 0.93rem;
}

.font-size-12 {
  font-size: 0.8rem;
}
.font-size-24 {
  font-size: 1.6rem;
}

.font-size-18 {
  font-size: 1.2rem;
}

.font-size-22 {
  font-size: 1.5rem;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

.w-100 {
  width: 100% !important;
}

.m-0 {
  margin: 0 !important;
}

.p-10 {
  padding: 10px !important;
}

.p-0 {
  padding: 0 !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mt-2 {
  margin-top: 7px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.p-20 {
  padding: 20px !important;
}

.pl-2 {
  padding-left: 0.5rem;
}

.mt-4 {
  margin-top: 4px !important;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 4px !important;
}

.mr-auto {
  margin-right: auto !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.gap-4 {
  gap: 4px !important;
}

.gap-10 {
  gap: 10px !important;
}

.gap-24 {
  gap: 24px !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-start {
  justify-content: start !important;
}

.justify-content-end {
  justify-content: end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.align-item-center {
  align-items: center !important;
}

.align-item-end {
  align-items: end !important;
}

.align-item-start {
  align-items: start !important;
}

.font-weight-medium {
  font-weight: 500 !important;
}

.font-weight-bold {
  font-weight: 600 !important;
}

.font-weight-bolder {
  font-weight: 700 !important;
}


.text-bold {
  font-weight: 700 !important;
}

.fs-21 {
  font-size: 1.33rem;
}

.fs-10 {
  font-size: 10px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row {
  flex-direction: row !important;
}

.nowrap {
  white-space: nowrap !important;
}

.text-grey {
  color: gray;
}

.text-danger {
  color: #dc2626;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-green {
  color: green;
}

.text-right {
  text-align: right;
}

.w-66 {
  width: 66.666667%;
}

.w-33 {
  width: 33.333333%;
}

.w-50 {
  width: 50%;
}

.w-25 {
  width: 25%;
}

.w-75 {
  width: 75%;
}

.w-20 {
  width: 20%;
}

.w-55 {
  width: 55%;
}

.w-10 {
  width: 10%;
}

.w-5 {
  width: 5%;
}

.w-90 {
  width: 90%;
}

.w-45 {
  width: 45%;
}

.bg-white {
  background-color: #ffffff !important;
  background-color: var(--white) !important;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all .2s;
}



.cursor-pointer {
  cursor: pointer !important;
}

.d-none {
  display: none !important;
}

.icon-btn.icon-only {
  width: 32px;
  padding-inline-end: 15px;
  padding-inline-start: 15px;
}

.icon-btn>.ant-btn-icon {
  margin: 0 !important;
}

.fs-13-5 {
  font-size: 13.5px !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.vertical-align-top {
  vertical-align: top !important;
}

.vertical-align-middle {
  vertical-align: middle !important;
}

.height-full {
  height: 100% !important;
}

.height-90vh {
  min-height: 90vh !important;
}

.height-100vh {
  min-height: 90vh !important;
}

.site-layout {
  min-height: 100vh;
}

.site-sidebar {
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
}

.hideOnMobile {
  display: none;
}

.relative {
  position: relative !important;
}

.bgh {
  padding: 5px;
}

.bgh:hover {
  background-color: #f1f1f1;
  border-radius: 4px;
  cursor: pointer;
}

.coupon-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.coupon-card {
  min-width: 320px;
  min-height: 169px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 16px;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.coupon-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.coupon-code {
  font-weight: bold;
  font-size: 16px;
}

.coupon-details {
  margin-bottom: 16px;
  font-size: 14px;
  color: #555;
}

.coupon-footer {
  margin-top: 50px;
  text-align: center;
}

.share-button {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.share-button:hover {
  background-color: #f0f0f0;
}


@media only screen and (min-width: 768px) {
  .hideOnMobile {
    display: inline-block;
  }
}

.hideOnDesktop {
  display: inline-block;
}

@media only screen and (min-width: 768px) {
  .hideOnDesktop {
    display: none;
  }
}

@media screen and (max-width: 550px) {
  .mw-100 {
    width: 100% !important;
  }
}

@media only screen and (min-width: 768px) {
  .d-md-inline {
    display: inline-block !important;
  }

  .d-md-none {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .icon-btn.icon-mobile {
    width: 32px;
    padding-inline-start: 0;
    padding-inline-end: 0;
    gap: 0px;
  }
}

.ant-picker-dropdown .ant-picker-panel-container .ant-picker-panels {
  display: inline-flex;
  animation: none;
  flex-wrap: nowrap;
  direction: ltr;

  @media (max-width: 768px) {
    display: inline-grid;
  }
}

/* Make clicks pass-through */
#nprogress {
  pointer-events: none
}

#nprogress .bar {
  height: 2.7px;
  background: #3062E1;
  background: var(--primary);
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%
}

#nprogress .peg {
  display: block;
  position: absolute;
  right: 0;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #29d, 0 0 5px #29d;
  opacity: 1;
  transform: rotate(3deg) translate(0, -4px)
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute
}

@keyframes nprogress-spinner {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}

[data-kit-theme=dark] #nprogress .spinner {
  color: #ffffff;
  color: var(--white);
  background: #2754ff;
  background: var(--primary);
  border-color: #2754ff;
  border-color: var(--primary)
}

[data-kit-theme=dark] #nprogress .spinner .spinner-icon {
  border-top-color: #ffffff;
  border-top-color: var(--white);
  border-left-color: #ffffff;
  border-left-color: var(--white)
}

.slide-fadein-up-enter {
  opacity: 0;
  transform: translateY(20px)
}

.slide-fadein-up-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .3s, transform .4s
}

.slide-fadein-up-exit {
  opacity: 1;
  transform: translateY(0)
}

.slide-fadein-up-exit-active {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity .3s, transform .4s
}

.slide-fadein-right-enter {
  opacity: 0;
  transform: translateX(-20px)
}

.slide-fadein-right-enter-active {
  opacity: 1;
  transform: translateX(0);
  transition: opacity .3s, transform .4s
}

.slide-fadein-right-exit {
  opacity: 1;
  transform: translateX(0)
}

.slide-fadein-right-exit-active {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .3s, transform .4s
}

.zoom-fadein-enter {
  opacity: 0;
  transform: scale(0.99)
}

.zoom-fadein-enter-active {
  opacity: 1;
  transform: scale(1);
  transition: opacity .3s, transform .3s
}

.zoom-fadein-exit {
  opacity: 1;
  transform: scale(1)
}

.zoom-fadein-exit-active {
  opacity: 0;
  transform: scale(1.01);
  transition: opacity .3s, transform .3s
}

.fadein-enter {
  opacity: 0
}

.fadein-enter-active {
  opacity: 1;
  transition: opacity .3s ease-in-out
}

.fadein-exit {
  opacity: 1
}

.fadein-exit-active {
  opacity: 0;
  transition: opacity .3s ease-in-out
}

.rounded-10 {
  border-radius: 10px;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fs25 {
  font-size: 25px;
}

.fs13 {
  font-size: 13px;
}

.fs15 {
  font-size: 17px;
  line-height: 24px;
}

.fs17 {
  font-size: 17px;
  line-height: 24px;
}

.fs20 {
  font-size: 20px;
}

.mt-5 {
  margin-top: 5px;
}

.bbtd {
  border-top: 1px dashed #000;
  border-bottom: 1px dashed #000;
  padding: 15px 0;
}

.bbd {
  border-bottom: 1px dashed #000;
  padding: 15px 0;
}

#printable {
  display: none !important;
}

.badge-beta-small {
  background: rgba(0, 0, 0, 0);
  color: var(--primary);
  font-size: 0.6rem;
  letter-spacing: 1px;
  line-height: .72rem;
  text-transform: uppercase;
  vertical-align: middle;
  font-style: italic;
  font-weight: 700;
}
.badge-beta-large {
  background: rgba(0, 0, 0, 0);
  color: var(--primary);
  font-size: 0.8rem;
  letter-spacing: 1px;
  line-height: .72rem;
  text-transform: uppercase;
  vertical-align: middle;
  font-style: italic;
  font-weight: 700;
}
.text-forest {
  color: #0c8346 !important;
}

.bold-row {
  font-weight: bold;
}

/* Invoice Layout Transitions */
.fade-enter {
  opacity: 0;
  transform: translateY(10px);
}

.fade-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 300ms ease-in, transform 300ms ease-in;
}

.fade-exit {
  opacity: 1;
  transform: translateY(0);
}

.fade-exit-active {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 300ms ease-out, transform 300ms ease-out;
}

.dscrol {
  scroll-behavior: smooth;
  overflow-y: auto;
  overflow-x: hidden;
  }
::-webkit-scrollbar {
  width: 6px!important;
}
::-webkit-scrollbar-track {
  background: #ddd;
}
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}


.d-flex-scroll::-webkit-scrollbar {
  height: 6px !important;
}
.d-flex-scroll::-webkit-scrollbar-track {
  background: #f1f1f1 !important;
}
.d-flex-scroll::-webkit-scrollbar-thumb {
  background: #888 !important;
  border-radius: 10px;
}
.d-flex-scroll::-webkit-scrollbar-thumb:hover {
  background: #555 !important;
}
.before\:mr-2::before{
  content: var(--tw-content);
  margin-right: 0.5rem;
}
.before\:text-\[\#3062E1\]::before{
  content: var(--tw-content);
  --tw-text-opacity: 1;
  color: rgb(48 98 225 / var(--tw-text-opacity, 1));
}
.before\:content-\[\'\25BA\'\]::before{
  --tw-content: '►';
  content: var(--tw-content);
}
.last\:mb-0:last-child{
  margin-bottom: 0px;
}
.last\:border-0:last-child{
  border-width: 0px;
}
.hover\:-translate-y-1:hover{
  --tw-translate-y: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:scale-105:hover{
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:rounded-lg:hover{
  border-radius: 0.5rem;
}
.hover\:border-blue-100:hover{
  --tw-border-opacity: 1;
  border-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
}
.hover\:border-blue-400:hover{
  --tw-border-opacity: 1;
  border-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
}
.hover\:border-blue-500:hover{
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}
.hover\:border-gray-300:hover{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.hover\:border-red-400:hover{
  --tw-border-opacity: 1;
  border-color: rgb(248 113 113 / var(--tw-border-opacity, 1));
}
.hover\:bg-\[\#4B7EFF\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(75 126 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-300:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.hover\:bg-green-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(187 247 208 / var(--tw-bg-opacity, 1));
}
.hover\:bg-indigo-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(224 231 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-indigo-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(238 242 255 / var(--tw-bg-opacity, 1));
}
.hover\:bg-indigo-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(67 56 202 / var(--tw-bg-opacity, 1));
}
.hover\:bg-white:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.hover\:\!text-blue-900:hover{
  --tw-text-opacity: 1 !important;
  color: rgb(30 58 138 / var(--tw-text-opacity, 1)) !important;
}
.hover\:text-blue-500:hover{
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-400:hover{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-600:hover{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-700:hover{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-800:hover{
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.hover\:text-gray-900:hover{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.hover\:text-indigo-700:hover{
  --tw-text-opacity: 1;
  color: rgb(67 56 202 / var(--tw-text-opacity, 1));
}
.hover\:text-red-500:hover{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.hover\:underline:hover{
  text-decoration-line: underline;
}
.hover\:shadow-lg:hover{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-md:hover{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-xl:hover{
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-green-300:hover{
  --tw-shadow-color: #86efac;
  --tw-shadow: var(--tw-shadow-colored);
}
.hover\:shadow-indigo-300:hover{
  --tw-shadow-color: #a5b4fc;
  --tw-shadow: var(--tw-shadow-colored);
}
.focus\:border-blue-500:focus{
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}
.focus\:border-red-500:focus{
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}
.focus\:shadow-\[0_0_0_2px_rgba\(239\2c 68\2c 68\2c 0\.2\)\]:focus{
  --tw-shadow: 0 0 0 2px rgba(239,68,68,0.2);
  --tw-shadow-colored: 0 0 0 2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus\:ring-2:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-blue-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}
.focus\:ring-red-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity, 1));
}
.group:hover .group-hover\:bg-indigo-100{
  --tw-bg-opacity: 1;
  background-color: rgb(224 231 255 / var(--tw-bg-opacity, 1));
}
@media (min-width: 640px){

  .sm\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:flex-row{
    flex-direction: row;
  }
}
@media (min-width: 768px){

  .md\:mb-0{
    margin-bottom: 0px;
  }

  .md\:mb-1{
    margin-bottom: 0.25rem;
  }

  .md\:mt-0{
    margin-top: 0px;
  }

  .md\:mt-4{
    margin-top: 1rem;
  }

  .md\:block{
    display: block;
  }

  .md\:hidden{
    display: none;
  }

  .md\:w-1\/2{
    width: 50%;
  }

  .md\:w-1\/4{
    width: 25%;
  }

  .md\:w-3\/4{
    width: 75%;
  }

  .md\:w-\[400px\]{
    width: 400px;
  }

  .md\:w-auto{
    width: auto;
  }

  .md\:min-w-\[400px\]{
    min-width: 400px;
  }

  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:flex-row{
    flex-direction: row;
  }

  .md\:justify-start{
    justify-content: flex-start;
  }

  .md\:justify-end{
    justify-content: flex-end;
  }

  .md\:gap-6{
    gap: 1.5rem;
  }

  .md\:p-8{
    padding: 2rem;
  }

  .md\:px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .md\:text-left{
    text-align: left;
  }

  .md\:text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .md\:text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 1024px){

  .lg\:col-span-5{
    grid-column: span 5 / span 5;
  }

  .lg\:col-span-7{
    grid-column: span 7 / span 7;
  }

  .lg\:inline-block{
    display: inline-block;
  }

  .lg\:w-2\/5{
    width: 40%;
  }

  .lg\:w-\[48\%\]{
    width: 48%;
  }

  .lg\:w-\[52\%\]{
    width: 52%;
  }

  .lg\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:flex-row{
    flex-direction: row;
  }

  .lg\:items-start{
    align-items: flex-start;
  }
}
@media (min-width: 1280px){

  .xl\:inline-block{
    display: inline-block;
  }
}
