/*
 * briskData client portal
 * A self-contained application design system for HostBill.
 *
 * All first-party components use the bdp- namespace. Compatibility rules for
 * functional HostBill and Bootstrap markup are scoped to .bdp-root.
 */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/InterVariable.woff2") format("woff2");
}

:root {
  color-scheme: dark;
  --bdp-canvas: #02070c;
  --bdp-canvas-deep: #000;
  --bdp-canvas-raised: #06111a;
  --bdp-surface: rgba(8, 15, 24, 0.88);
  --bdp-surface-soft: rgba(8, 15, 24, 0.72);
  --bdp-surface-strong: rgba(5, 11, 19, 0.96);
  --bdp-surface-hover: rgba(19, 35, 51, 0.84);
  --bdp-control: rgba(9, 17, 27, 0.9);
  --bdp-control-hover: rgba(13, 25, 39, 0.96);
  --bdp-text: #f3f7ff;
  --bdp-text-strong: #f8fbff;
  --bdp-text-soft: #c7d2e4;
  --bdp-muted: #8d9aae;
  --bdp-subtle: #77859a;
  --bdp-faint: #687891;
  --bdp-line: rgba(145, 171, 211, 0.18);
  --bdp-line-soft: rgba(145, 171, 211, 0.12);
  --bdp-line-strong: rgba(145, 171, 211, 0.3);
  --bdp-accent: #74b9e6;
  --bdp-accent-strong: #63a4d4;
  --bdp-link: #8ec5ee;
  --bdp-link-hover: #bcdff5;
  --bdp-violet: #8b5cff;
  --bdp-cyan: #13d6ff;
  --bdp-success: #23dcad;
  --bdp-warning: #f4ba24;
  --bdp-danger: #ff9b9b;
  --bdp-info: #8ec5ee;
  --bdp-sidebar-width: 264px;
  --bdp-topbar-height: 72px;
  --bdp-content-max: 1440px;
  --bdp-gutter: clamp(20px, 3vw, 48px);
  --bdp-radius-sm: 7px;
  --bdp-radius-control: 9px;
  --bdp-radius-card: 14px;
  --bdp-radius-lg: 20px;
  --bdp-shadow-float: 0 24px 64px rgba(0, 0, 0, 0.42);
  --bdp-shadow-menu: 0 18px 44px rgba(0, 0, 0, 0.38);
  --bdp-focus: 0 0 0 3px rgba(99, 164, 212, 0.28);
  --bdp-duration-fast: 150ms;
  --bdp-duration: 220ms;
  --bdp-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--bdp-canvas-deep);
  scroll-behavior: smooth;
}

body.bdp-body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background: var(--bdp-canvas-deep);
  color: var(--bdp-text);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.bdp-root {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--bdp-text);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  isolation: isolate;
}

.bdp-root::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 75% 4%, rgba(20, 111, 166, 0.16), transparent 28%),
    radial-gradient(circle at 18% 64%, rgba(40, 63, 98, 0.14), transparent 30%),
    linear-gradient(180deg, #02070c 0%, #06111a 26%, #03090f 58%, #02060a 100%);
}

.bdp-root::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.38;
  background-image:
    radial-gradient(circle, rgba(196, 214, 240, 0.68) 0 1px, transparent 1.35px),
    radial-gradient(circle, rgba(91, 178, 222, 0.5) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(139, 92, 255, 0.4) 0 1px, transparent 1.35px);
  background-position: 12px 30px, 104px 94px, 42px 146px;
  background-size: 118px 124px, 190px 220px, 276px 264px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.64) 58%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.64) 58%, transparent 100%);
}

.bdp-root img,
.bdp-root svg {
  max-width: 100%;
}

.bdp-root img {
  height: auto;
}

.bdp-root button,
.bdp-root input,
.bdp-root optgroup,
.bdp-root select,
.bdp-root textarea {
  margin: 0;
  color: inherit;
  font: inherit;
}

.bdp-root button,
.bdp-root [type="button"],
.bdp-root [type="reset"],
.bdp-root [type="submit"] {
  cursor: pointer;
}

.bdp-root a {
  color: var(--bdp-link);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.bdp-root a:hover {
  color: var(--bdp-link-hover);
}

.bdp-root h1,
.bdp-root h2,
.bdp-root h3,
.bdp-root h4,
.bdp-root h5,
.bdp-root h6,
.bdp-root p {
  overflow-wrap: break-word;
}

.bdp-root h1,
.bdp-root h2,
.bdp-root h3,
.bdp-root h4,
.bdp-root h5,
.bdp-root h6 {
  color: var(--bdp-text-strong);
}

.bdp-root :focus {
  outline: none;
}

.bdp-root :focus-visible {
  outline: 2px solid var(--bdp-accent-strong);
  outline-offset: 3px;
}

.bdp-root ::selection {
  background: rgba(99, 164, 212, 0.36);
  color: #fff;
}

.bdp-root [hidden] {
  display: none !important;
}

.bdp-skip-link {
  position: fixed;
  top: -64px;
  left: 16px;
  z-index: 2000;
  padding: 10px 16px;
  border: 1px solid var(--bdp-line-strong);
  border-radius: var(--bdp-radius-sm);
  background: var(--bdp-surface-strong);
  color: var(--bdp-text-strong);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: top var(--bdp-duration-fast) ease;
}

.bdp-skip-link:focus {
  top: 12px;
}

.bdp-icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bdp-sr-only,
.bdp-visually-hidden,
.bdp-root .sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Application shell ------------------------------------------------------- */

.bdp-shell {
  display: grid;
  grid-template-columns: var(--bdp-sidebar-width) minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  min-height: calc(100vh - var(--bdp-topbar-height));
  min-height: calc(100dvh - var(--bdp-topbar-height));
}

.bdp-topbar {
  position: sticky;
  top: 0;
  z-index: 900;
  grid-column: 1 / -1;
  grid-row: 1;
  min-width: 0;
  height: var(--bdp-topbar-height);
  border-bottom: 1px solid var(--bdp-line-soft);
  background: rgba(2, 7, 12, 0.86);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  backdrop-filter: blur(18px) saturate(1.15);
}

.bdp-topbar-inner,
.bdp-topbar__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 clamp(16px, 2.2vw, 32px);
}

.bdp-brand {
  width: calc(var(--bdp-sidebar-width) - clamp(16px, 2.2vw, 32px));
  min-width: 190px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--bdp-text-strong) !important;
  text-decoration: none;
}

.bdp-brand-mark,
.bdp-brand__mark {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: #fff;
}

.bdp-brand-word,
.bdp-brand__word {
  font-size: 18px;
  font-weight: 720;
  line-height: 1;
  letter-spacing: 0.02em;
}

.bdp-brand-context,
.bdp-brand__context {
  margin-left: 3px;
  padding-left: 13px;
  border-left: 1px solid var(--bdp-line-strong);
  color: var(--bdp-subtle);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.bdp-topbar-spacer {
  flex: 1 1 auto;
  min-width: 12px;
}

.bdp-topbar-actions,
.bdp-topbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bdp-topbar-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: var(--bdp-radius-control);
  color: var(--bdp-muted) !important;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition: color var(--bdp-duration-fast) ease, background var(--bdp-duration-fast) ease;
}

.bdp-topbar-link:hover,
.bdp-topbar-link:focus-visible {
  background: rgba(145, 171, 211, 0.08);
  color: var(--bdp-text-strong) !important;
}

.bdp-icon-button {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-control);
  background: rgba(2, 8, 14, 0.5);
  color: var(--bdp-text-soft);
  transition:
    border-color var(--bdp-duration-fast) ease,
    background var(--bdp-duration-fast) ease,
    color var(--bdp-duration-fast) ease,
    transform var(--bdp-duration-fast) ease;
}

.bdp-icon-button:hover {
  border-color: var(--bdp-line-strong);
  background: var(--bdp-control-hover);
  color: var(--bdp-text-strong);
}

.bdp-icon-button:active {
  transform: translateY(1px);
}

.bdp-drawer-toggle {
  display: none;
}

.bdp-account {
  position: relative;
}

.bdp-account-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 8px 4px 5px;
  border: 1px solid transparent;
  border-radius: 11px;
  background: transparent;
  color: var(--bdp-text-soft);
  text-align: left;
  transition: border-color var(--bdp-duration-fast) ease, background var(--bdp-duration-fast) ease;
}

.bdp-account-toggle:hover,
.bdp-account.is-open .bdp-account-toggle {
  border-color: var(--bdp-line);
  background: rgba(145, 171, 211, 0.07);
}

.bdp-avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(116, 185, 230, 0.36);
  border-radius: 10px;
  background: rgba(38, 80, 116, 0.32);
  color: var(--bdp-text-strong);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.bdp-account-copy {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.bdp-account-copy strong,
.bdp-account-copy span {
  max-width: 170px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bdp-account-copy strong {
  color: var(--bdp-text-strong);
  font-size: 12px;
  font-weight: 680;
}

.bdp-account-copy span {
  color: var(--bdp-subtle);
  font-size: 10px;
}

.bdp-account-caret {
  width: 16px;
  height: 16px;
  color: var(--bdp-subtle);
  transition: transform var(--bdp-duration-fast) ease;
}

.bdp-account.is-open .bdp-account-caret {
  transform: rotate(180deg);
}

.bdp-account .bdp-account-menu,
.bdp-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 1050;
  width: min(280px, calc(100vw - 32px));
  padding: 8px;
  border: 1px solid var(--bdp-line);
  border-radius: 12px;
  background: rgba(4, 10, 17, 0.98);
  box-shadow: var(--bdp-shadow-menu);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity var(--bdp-duration-fast) ease,
    transform var(--bdp-duration-fast) ease,
    visibility var(--bdp-duration-fast) ease;
}

.bdp-account.is-open .bdp-account-menu,
.bdp-dropdown.is-open .bdp-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.bdp-menu-heading {
  padding: 10px 11px 8px;
  color: var(--bdp-subtle);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bdp-menu-divider {
  height: 1px;
  margin: 6px 4px;
  background: var(--bdp-line-soft);
}

.bdp-menu-item {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--bdp-text-soft) !important;
  font-size: 13px;
  font-weight: 560;
  text-decoration: none;
  transition: background var(--bdp-duration-fast) ease, color var(--bdp-duration-fast) ease;
}

.bdp-menu-item:hover,
.bdp-menu-item:focus-visible {
  background: rgba(145, 171, 211, 0.1);
  color: var(--bdp-text-strong) !important;
}

.bdp-menu-item.is-danger {
  color: var(--bdp-danger) !important;
}

.bdp-sidebar {
  position: sticky;
  top: var(--bdp-topbar-height);
  z-index: 700;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  width: var(--bdp-sidebar-width);
  height: calc(100vh - var(--bdp-topbar-height));
  height: calc(100dvh - var(--bdp-topbar-height));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-right: 1px solid var(--bdp-line-soft);
  background: rgba(2, 7, 12, 0.7);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.bdp-sidebar-scroll,
.bdp-sidebar__inner {
  min-height: 0;
  flex: 1 1 auto;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 22px 14px;
  scrollbar-width: thin;
  scrollbar-color: rgba(145, 171, 211, 0.22) transparent;
}

.bdp-sidebar-scroll::-webkit-scrollbar {
  width: 8px;
}

.bdp-sidebar-scroll::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(145, 171, 211, 0.22);
  background-clip: padding-box;
}

.bdp-sidebar-close {
  display: none;
}

.bdp-nav-section + .bdp-nav-section {
  margin-top: 24px;
}

.bdp-nav-label {
  display: block;
  margin: 0 10px 8px;
  color: var(--bdp-subtle);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.bdp-nav-list,
.bdp-nav-sub {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bdp-nav-list {
  display: grid;
  gap: 4px;
}

.bdp-nav-link {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 11px;
  border: 1px solid transparent;
  border-radius: var(--bdp-radius-control);
  color: var(--bdp-muted) !important;
  font-size: 13px;
  font-weight: 620;
  line-height: 1.3;
  text-decoration: none;
  transition:
    background var(--bdp-duration-fast) ease,
    border-color var(--bdp-duration-fast) ease,
    color var(--bdp-duration-fast) ease;
}

.bdp-nav-link::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: -14px;
  width: 2px;
  border-radius: 0 999px 999px 0;
  background: var(--bdp-accent-strong);
  box-shadow: 0 0 12px rgba(99, 164, 212, 0.5);
  opacity: 0;
}

.bdp-nav-link:hover,
.bdp-nav-link:focus-visible {
  background: rgba(145, 171, 211, 0.07);
  color: var(--bdp-text-soft) !important;
}

.bdp-nav-link.is-active,
.bdp-nav-link[aria-current="page"] {
  border-color: rgba(116, 185, 230, 0.18);
  background: rgba(38, 80, 116, 0.22);
  color: var(--bdp-text-strong) !important;
}

.bdp-nav-link.is-active::before,
.bdp-nav-link[aria-current="page"]::before {
  opacity: 1;
}

.bdp-nav-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--bdp-subtle);
}

.bdp-nav-link:hover .bdp-nav-icon,
.bdp-nav-link.is-active .bdp-nav-icon,
.bdp-nav-link[aria-current="page"] .bdp-nav-icon {
  color: var(--bdp-accent);
}

.bdp-nav-text {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bdp-nav-count {
  min-width: 22px;
  min-height: 20px;
  display: inline-grid;
  place-items: center;
  padding: 2px 6px;
  border: 1px solid var(--bdp-line);
  border-radius: 999px;
  background: rgba(2, 7, 12, 0.42);
  color: var(--bdp-subtle);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  font-weight: 740;
}

.bdp-nav-sub {
  display: grid;
  gap: 2px;
  margin: 4px 0 8px 31px;
  padding-left: 11px;
  border-left: 1px solid var(--bdp-line-soft);
}

.bdp-nav-sub .bdp-nav-link {
  min-height: 36px;
  padding: 7px 9px;
  font-size: 12px;
  font-weight: 560;
}

.bdp-nav-sub .bdp-nav-link::before {
  content: none;
}

.bdp-sidebar-footer {
  flex: 0 0 auto;
  padding: 14px;
  border-top: 1px solid var(--bdp-line-soft);
}

.bdp-support-card {
  padding: 14px;
  border: 1px solid var(--bdp-line);
  border-radius: 11px;
  background:
    radial-gradient(circle at 88% 8%, rgba(99, 164, 212, 0.15), transparent 45%),
    rgba(8, 15, 24, 0.74);
}

.bdp-support-card strong {
  display: block;
  color: var(--bdp-text-soft);
  font-size: 12px;
  font-weight: 680;
}

.bdp-support-card p {
  margin: 5px 0 10px;
  color: var(--bdp-subtle);
  font-size: 11px;
  line-height: 1.55;
}

.bdp-support-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--bdp-link);
  font-size: 11px;
  font-weight: 720;
  text-decoration: none;
}

.bdp-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 680;
  display: none;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity var(--bdp-duration) ease;
}

.bdp-main {
  min-width: 0;
  grid-column: 2;
  grid-row: 1;
  padding: clamp(26px, 3.6vw, 56px) var(--bdp-gutter) clamp(52px, 6vw, 88px);
}

.bdp-content {
  width: min(100%, var(--bdp-content-max));
  margin-inline: auto;
}

.bdp-content--narrow {
  max-width: 920px;
}

.bdp-footer {
  min-width: 0;
  margin-left: var(--bdp-sidebar-width);
  border-top: 1px solid var(--bdp-line-soft);
  background: rgba(2, 7, 12, 0.46);
}

.bdp-footer-inner,
.bdp-footer__inner {
  width: min(calc(100% - (2 * var(--bdp-gutter))), var(--bdp-content-max));
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-inline: auto;
  color: var(--bdp-subtle);
  font-size: 12px;
}

.bdp-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.bdp-footer a {
  color: var(--bdp-muted);
  text-decoration: none;
}

.bdp-footer a:hover {
  color: var(--bdp-text-soft);
}

/* Public and authentication surfaces ------------------------------------ */

.bdp-public {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.bdp-public-header {
  position: relative;
  z-index: 20;
  width: min(calc(100% - 40px), 1280px);
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-inline: auto;
}

.bdp-public-header .bdp-brand {
  width: auto;
  min-width: 0;
}

.bdp-public-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.bdp-public-main {
  width: min(calc(100% - 40px), 1280px);
  flex: 1 0 auto;
  margin-inline: auto;
  padding: clamp(40px, 7vw, 96px) 0 clamp(64px, 9vw, 124px);
}

.bdp-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: clamp(36px, 7vw, 112px);
  align-items: center;
  min-height: min(650px, calc(100vh - 190px));
  min-height: min(650px, calc(100dvh - 190px));
}

.bdp-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.bdp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bdp-accent);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.bdp-kicker::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.bdp-hero h1 {
  max-width: 13ch;
  margin: 20px 0 0;
  color: var(--bdp-text-strong);
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 420;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.bdp-accent {
  color: var(--bdp-accent);
  text-shadow: 0 0 16px rgba(96, 168, 220, 0.34);
}

.bdp-hero-lede {
  max-width: 58ch;
  margin: 24px 0 0;
  color: #a8b3c4;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 480;
  line-height: 1.8;
}

.bdp-hero-actions,
.bdp-page-actions,
.bdp-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.bdp-hero-actions {
  margin-top: 34px;
}

.bdp-hero-panel {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 3.2vw, 42px);
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-lg);
  background:
    radial-gradient(circle at 85% 8%, rgba(74, 174, 211, 0.17), transparent 34%),
    linear-gradient(145deg, rgba(7, 16, 25, 0.94), rgba(3, 8, 14, 0.82));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), var(--bdp-shadow-float);
  overflow: hidden;
}

.bdp-hero-panel::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -85px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(116, 185, 230, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 28px rgba(19, 214, 255, 0.025),
    0 0 0 58px rgba(139, 92, 255, 0.018);
}

.bdp-hero-panel-title {
  position: relative;
  margin: 0 0 22px;
  color: var(--bdp-subtle);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bdp-discipline-list {
  position: relative;
  display: grid;
}

.bdp-discipline {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 15px;
  padding: 20px 0;
  border-top: 1px solid var(--bdp-line-soft);
}

.bdp-discipline:first-child {
  border-top: 0;
  padding-top: 0;
}

.bdp-discipline:last-child {
  padding-bottom: 0;
}

.bdp-discipline-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--bdp-line);
  border-radius: 9px;
  background: rgba(2, 7, 12, 0.48);
  color: var(--bdp-accent);
}

.bdp-discipline-index {
  display: block;
  margin-bottom: 4px;
  color: var(--bdp-violet);
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0.12em;
}

.bdp-discipline strong {
  display: block;
  color: var(--bdp-text-strong);
  font-size: 15px;
  font-weight: 650;
}

.bdp-discipline p {
  margin: 5px 0 0;
  color: var(--bdp-muted);
  font-size: 13px;
  line-height: 1.65;
}

.bdp-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(26px, 4vw, 56px);
}

.bdp-action-card {
  min-width: 0;
  min-height: 166px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-card);
  background: var(--bdp-surface-soft);
  color: var(--bdp-text-soft) !important;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition:
    border-color var(--bdp-duration) ease,
    background var(--bdp-duration) ease,
    transform var(--bdp-duration) var(--bdp-ease);
}

.bdp-action-card:hover {
  border-color: rgba(116, 185, 230, 0.38);
  background: var(--bdp-surface-hover);
  color: var(--bdp-text-strong) !important;
  transform: translateY(-3px);
}

.bdp-action-card .bdp-icon,
.bdp-action-card > i {
  width: 28px;
  height: 28px;
  margin-bottom: 22px;
  color: var(--bdp-accent);
  font-size: 28px;
}

.bdp-action-card strong {
  color: var(--bdp-text-strong);
  font-size: 15px;
  font-weight: 660;
}

.bdp-action-card span {
  margin-top: 7px;
  color: var(--bdp-muted);
  font-size: 13px;
  line-height: 1.6;
}

.bdp-auth {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.bdp-auth-shell {
  width: min(100%, 1040px);
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(420px, 1.15fr);
  overflow: hidden;
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-lg);
  background: rgba(3, 9, 15, 0.9);
  box-shadow: var(--bdp-shadow-float);
}

.bdp-auth-aside {
  position: relative;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 4vw, 52px);
  border-right: 1px solid var(--bdp-line-soft);
  background:
    radial-gradient(circle at 72% 18%, rgba(19, 214, 255, 0.16), transparent 30%),
    radial-gradient(circle at 20% 82%, rgba(139, 92, 255, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(7, 21, 34, 0.94), rgba(2, 7, 12, 0.96));
}

.bdp-auth-aside::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image: radial-gradient(circle, rgba(196, 214, 240, 0.72) 0 1px, transparent 1.35px);
  background-position: 14px 24px;
  background-size: 122px 128px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 88%);
  mask-image: linear-gradient(180deg, #000, transparent 88%);
}

.bdp-auth-aside > * {
  position: relative;
  z-index: 1;
}

.bdp-auth-message h1 {
  max-width: 10ch;
  margin: 22px 0 0;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 420;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.bdp-auth-message p {
  max-width: 38ch;
  margin: 18px 0 0;
  color: var(--bdp-muted);
  font-size: 14px;
  line-height: 1.75;
}

.bdp-auth-note {
  color: var(--bdp-subtle);
  font-size: 11px;
  line-height: 1.65;
}

.bdp-auth-panel {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 68px);
  background: rgba(5, 11, 19, 0.82);
}

.bdp-auth-panel > form {
  width: 100%;
}

.bdp-auth-header {
  margin-bottom: 30px;
}

.bdp-auth-header h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 440;
  letter-spacing: -0.03em;
  line-height: 1.16;
}

.bdp-auth-header p {
  margin: 10px 0 0;
  color: var(--bdp-muted);
  font-size: 14px;
  line-height: 1.7;
}

.bdp-auth-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 18px;
  margin-top: 22px;
  font-size: 12px;
  font-weight: 620;
}

/* Page headers and content framing --------------------------------------- */

.bdp-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0 0 14px;
  padding: 0;
  color: var(--bdp-subtle);
  font-size: 11px;
  font-weight: 640;
  list-style: none;
}

.bdp-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.bdp-breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: #46536a;
}

.bdp-breadcrumbs a {
  color: var(--bdp-muted);
  text-decoration: none;
}

.bdp-page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(26px, 3.5vw, 48px);
}

.bdp-page-heading {
  min-width: 0;
}

.bdp-page-heading h1 {
  margin: 0;
  color: var(--bdp-text-strong);
  font-size: clamp(30px, 3.3vw, 46px);
  font-weight: 420;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.bdp-page-heading p {
  max-width: 66ch;
  margin: 12px 0 0;
  color: var(--bdp-muted);
  font-size: 14px;
  line-height: 1.7;
}

.bdp-page-actions {
  flex: 0 0 auto;
  justify-content: flex-end;
}

.bdp-section {
  margin-top: clamp(28px, 4vw, 52px);
}

.bdp-section:first-child {
  margin-top: 0;
}

.bdp-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.bdp-section-heading h2,
.bdp-section-heading h3 {
  margin: 0;
  font-weight: 520;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.bdp-section-heading h2 {
  font-size: clamp(21px, 2vw, 28px);
}

.bdp-section-heading h3 {
  font-size: 18px;
}

.bdp-section-heading p {
  max-width: 64ch;
  margin: 7px 0 0;
  color: var(--bdp-muted);
  font-size: 13px;
  line-height: 1.65;
}

.bdp-divider {
  height: 1px;
  margin: clamp(28px, 4vw, 52px) 0;
  border: 0;
  background: var(--bdp-line-soft);
}

.bdp-stack {
  display: grid;
  gap: 16px;
}

.bdp-cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.bdp-cluster--between { justify-content: space-between; }
.bdp-cluster--center { justify-content: center; }
.bdp-cluster--end { justify-content: flex-end; }
.bdp-cluster--start { justify-content: flex-start; }

.bdp-align-start { text-align: left; }
.bdp-align-center { text-align: center; }
.bdp-align-end { text-align: right; }

.bdp-relative { position: relative; }
.bdp-absolute { position: absolute; top: 10px; right: 10px; }
.bdp-full { width: 100%; }
.bdp-half { width: 50%; }
.bdp-quarter { width: 25%; }
.bdp-hidden { display: none !important; }
.bdp-clickable { cursor: pointer; }
.bdp-break { overflow-wrap: anywhere; word-break: break-word; }
.bdp-muted { color: var(--bdp-muted) !important; }
.bdp-strong { color: var(--bdp-text-strong); font-weight: 680; }
.bdp-small { font-size: 0.72rem; }
.bdp-uppercase { letter-spacing: 0.08em; text-transform: uppercase; }

.bdp-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.bdp-span-3 { grid-column: span 3; }
.bdp-span-4 { grid-column: span 4; }
.bdp-span-5 { grid-column: span 5; }
.bdp-span-6 { grid-column: span 6; }
.bdp-span-7 { grid-column: span 7; }
.bdp-span-8 { grid-column: span 8; }
.bdp-span-9 { grid-column: span 9; }
.bdp-span-12 { grid-column: 1 / -1; }

.bdp-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.bdp-card-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bdp-card-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Buttons --------------------------------------------------------------- */

.bdp-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 17px;
  border: 1px solid var(--bdp-line-strong);
  border-radius: var(--bdp-radius-control);
  background: rgba(2, 8, 14, 0.5);
  color: var(--bdp-text-strong) !important;
  font-size: 13px;
  font-weight: 690;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition:
    border-color var(--bdp-duration-fast) ease,
    background var(--bdp-duration-fast) ease,
    box-shadow var(--bdp-duration-fast) ease,
    color var(--bdp-duration-fast) ease,
    transform var(--bdp-duration-fast) ease;
}

.bdp-button:hover {
  border-color: rgba(188, 223, 245, 0.46);
  background: var(--bdp-control-hover);
  color: #fff !important;
}

.bdp-button:active {
  transform: translateY(1px);
}

.bdp-button .bdp-icon,
.bdp-button > i {
  color: var(--bdp-violet);
}

.bdp-button--primary {
  border-color: rgba(120, 178, 226, 0.56);
  background: rgba(34, 74, 108, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.bdp-button--primary:hover {
  border-color: rgba(142, 197, 238, 0.76);
  background: rgba(45, 95, 136, 0.72);
}

.bdp-button--success {
  border-color: rgba(35, 220, 173, 0.46);
  background: rgba(35, 220, 173, 0.12);
  color: #b2f5e2 !important;
}

.bdp-button--warning {
  border-color: rgba(244, 186, 36, 0.42);
  background: rgba(244, 186, 36, 0.1);
  color: #f6d777 !important;
}

.bdp-button--warning:hover {
  border-color: rgba(244, 186, 36, 0.66);
  background: rgba(244, 186, 36, 0.16);
}

.bdp-button--danger {
  border-color: rgba(255, 155, 155, 0.42);
  background: rgba(255, 96, 96, 0.1);
  color: #ffc0c0 !important;
}

.bdp-button--ghost {
  border-color: transparent;
  background: transparent;
  color: var(--bdp-muted) !important;
}

.bdp-button--ghost:hover {
  border-color: transparent;
  background: rgba(145, 171, 211, 0.08);
  color: var(--bdp-text-strong) !important;
}

.bdp-button--sm {
  min-height: 36px;
  padding: 7px 12px;
  border-radius: var(--bdp-radius-sm);
  font-size: 12px;
}

.bdp-button--lg {
  min-height: 50px;
  padding: 13px 21px;
  font-size: 14px;
}

.bdp-button--block {
  width: 100%;
}

.bdp-button:disabled,
.bdp-button[aria-disabled="true"] {
  opacity: 0.48;
  cursor: not-allowed;
  pointer-events: none;
}

.bdp-text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: var(--bdp-link) !important;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.bdp-text-link:hover {
  color: var(--bdp-link-hover) !important;
}

/* Cards and statistics -------------------------------------------------- */

.bdp-card {
  min-width: 0;
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-card);
  background: var(--bdp-surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.bdp-card--soft {
  background: var(--bdp-surface-soft);
}

.bdp-card--interactive {
  transition:
    border-color var(--bdp-duration) ease,
    background var(--bdp-duration) ease,
    transform var(--bdp-duration) var(--bdp-ease);
}

.bdp-card--interactive:hover {
  border-color: rgba(116, 185, 230, 0.34);
  background: var(--bdp-surface-hover);
  transform: translateY(-2px);
}

.bdp-card-header,
.bdp-card-body,
.bdp-card-footer {
  padding: 20px 22px;
}

.bdp-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--bdp-line-soft);
}

.bdp-card-header h2,
.bdp-card-header h3,
.bdp-card-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 640;
  letter-spacing: -0.01em;
}

.bdp-card-header p {
  margin: 5px 0 0;
  color: var(--bdp-muted);
  font-size: 12px;
}

.bdp-card-body > :first-child {
  margin-top: 0;
}

.bdp-card-body > :last-child {
  margin-bottom: 0;
}

.bdp-card-footer {
  border-top: 1px solid var(--bdp-line-soft);
  background: rgba(2, 7, 12, 0.18);
  border-radius: 0 0 calc(var(--bdp-radius-card) - 1px) calc(var(--bdp-radius-card) - 1px);
}

.bdp-card-title {
  margin: 0 0 9px;
  color: var(--bdp-text-strong);
  font-size: 16px;
  font-weight: 640;
}

.bdp-card-copy {
  margin: 0;
  color: var(--bdp-muted);
  font-size: 13px;
  line-height: 1.7;
}

.bdp-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-card);
  background: var(--bdp-surface-soft);
  overflow: hidden;
}

.bdp-stat {
  min-width: 0;
  display: block;
  padding: 22px;
  border-left: 1px solid var(--bdp-line-soft);
  color: inherit !important;
  text-decoration: none;
  transition: background var(--bdp-duration-fast) ease, border-color var(--bdp-duration-fast) ease;
}

.bdp-stat:first-child {
  border-left: 0;
}

.bdp-stat:hover {
  background: rgba(19, 35, 51, 0.48);
}

.bdp-stat:focus-visible {
  position: relative;
  z-index: 1;
  outline: 2px solid var(--bdp-accent);
  outline-offset: -2px;
}

.bdp-stat > span,
.bdp-stat-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--bdp-subtle);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bdp-stat-label {
  margin: 0;
}

.bdp-stat-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid var(--bdp-line);
  border-radius: 7px;
  color: var(--bdp-accent);
}

.bdp-stat > strong,
.bdp-stat-value {
  display: block;
  margin-top: 14px;
  color: var(--bdp-text-strong);
  font-size: clamp(25px, 2.6vw, 38px);
  font-weight: 430;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.bdp-stat > small,
.bdp-stat-meta {
  display: block;
  margin-top: 8px;
  color: var(--bdp-muted);
  font-size: 11px;
  line-height: 1.5;
}

.bdp-stat--attention {
  background: linear-gradient(135deg, rgba(244, 186, 36, 0.08), transparent 70%);
}

.bdp-stat--attention > span,
.bdp-stat--attention .bdp-stat-label,
.bdp-stat--attention > strong,
.bdp-stat--attention .bdp-stat-value {
  color: var(--bdp-warning);
}

.bdp-detail-list {
  margin: 0;
}

.bdp-detail-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--bdp-line-soft);
}

.bdp-detail-row:last-child {
  border-bottom: 0;
}

.bdp-detail-row dt {
  color: var(--bdp-subtle);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.04em;
}

.bdp-detail-row dd {
  min-width: 0;
  margin: 0;
  color: var(--bdp-text-soft);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.bdp-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bdp-list-item {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--bdp-line-soft);
}

.bdp-list-item:last-child {
  border-bottom: 0;
}

.bdp-list-primary {
  min-width: 0;
}

.bdp-list-primary strong {
  display: block;
  color: var(--bdp-text-soft);
  font-size: 13px;
  font-weight: 620;
}

.bdp-list-primary span {
  display: block;
  margin-top: 4px;
  color: var(--bdp-subtle);
  font-size: 11px;
}

.bdp-list-value {
  flex: 0 0 auto;
  color: var(--bdp-text-soft);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

/* Forms ----------------------------------------------------------------- */

.bdp-form {
  width: 100%;
}

.bdp-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.bdp-form-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bdp-field {
  min-width: 0;
  margin-bottom: 18px;
}

.bdp-field--full {
  grid-column: 1 / -1;
}

.bdp-label,
.bdp-root .form-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
  color: var(--bdp-text-soft);
  font-size: 12px;
  font-weight: 640;
  line-height: 1.4;
}

.bdp-label-optional {
  color: var(--bdp-subtle);
  font-size: 10px;
  font-weight: 540;
}

.bdp-input,
.bdp-select,
.bdp-textarea,
.bdp-root .form-control,
.bdp-root .custom-select {
  width: 100%;
  min-height: 44px;
  display: block;
  padding: 10px 13px;
  border: 1px solid rgba(145, 171, 211, 0.24);
  border-radius: var(--bdp-radius-control);
  background-color: var(--bdp-control);
  color: var(--bdp-text);
  font-size: 14px;
  line-height: 1.5;
  box-shadow: none;
  transition:
    border-color var(--bdp-duration-fast) ease,
    background var(--bdp-duration-fast) ease,
    box-shadow var(--bdp-duration-fast) ease;
}

.bdp-select,
.bdp-root select.form-control,
.bdp-root .custom-select {
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%238d9aae' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m7 10 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  -webkit-appearance: none;
  appearance: none;
}

.bdp-textarea,
.bdp-root textarea.form-control {
  min-height: 128px;
  resize: vertical;
}

.bdp-input:hover,
.bdp-select:hover,
.bdp-textarea:hover,
.bdp-root .form-control:hover,
.bdp-root .custom-select:hover {
  border-color: rgba(145, 171, 211, 0.36);
  background-color: var(--bdp-control-hover);
}

.bdp-input:focus,
.bdp-select:focus,
.bdp-textarea:focus,
.bdp-root .form-control:focus,
.bdp-root .custom-select:focus {
  outline: 0;
  border-color: rgba(99, 164, 212, 0.82);
  background-color: rgba(9, 17, 27, 0.98);
  box-shadow: var(--bdp-focus);
}

.bdp-input::placeholder,
.bdp-textarea::placeholder,
.bdp-root .form-control::placeholder {
  color: #687891;
  opacity: 1;
}

.bdp-input:disabled,
.bdp-select:disabled,
.bdp-textarea:disabled,
.bdp-root .form-control:disabled,
.bdp-root .form-control[readonly],
.bdp-root .custom-select:disabled {
  border-color: var(--bdp-line-soft);
  background: rgba(5, 11, 19, 0.56);
  color: var(--bdp-subtle);
  cursor: not-allowed;
  opacity: 0.7;
}

.bdp-root input:-webkit-autofill,
.bdp-root input:-webkit-autofill:hover,
.bdp-root input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--bdp-text);
  caret-color: var(--bdp-text);
  box-shadow: 0 0 0 1000px #09111b inset;
  transition: background-color 9999s ease-out;
}

.bdp-help,
.bdp-root .form-text {
  display: block;
  margin-top: 7px;
  color: var(--bdp-subtle);
  font-size: 11px;
  line-height: 1.55;
}

.bdp-error,
.bdp-root .invalid-feedback {
  display: block;
  margin-top: 7px;
  color: var(--bdp-danger);
  font-size: 11px;
  font-weight: 590;
  line-height: 1.5;
}

.bdp-input[aria-invalid="true"],
.bdp-select[aria-invalid="true"],
.bdp-textarea[aria-invalid="true"],
.bdp-root .form-control.is-invalid,
.bdp-root .was-validated .form-control:invalid {
  border-color: rgba(255, 155, 155, 0.72);
  background-image: none;
}

.bdp-input[aria-invalid="true"]:focus,
.bdp-select[aria-invalid="true"]:focus,
.bdp-textarea[aria-invalid="true"]:focus,
.bdp-root .form-control.is-invalid:focus,
.bdp-root .was-validated .form-control:invalid:focus {
  box-shadow: 0 0 0 3px rgba(255, 155, 155, 0.17);
}

.bdp-root .form-control.is-valid,
.bdp-root .was-validated .form-control:valid {
  border-color: rgba(35, 220, 173, 0.56);
  background-image: none;
}

.bdp-root .valid-feedback {
  display: block;
  margin-top: 7px;
  color: var(--bdp-success);
  font-size: 11px;
}

.bdp-check,
.bdp-radio,
.bdp-root .form-check,
.bdp-root .custom-control {
  position: relative;
  min-height: 22px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--bdp-muted);
  font-size: 13px;
  line-height: 1.55;
}

.bdp-check input,
.bdp-radio input,
.bdp-root .form-check-input,
.bdp-root .custom-control-input {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin: 2px 0 0;
  accent-color: var(--bdp-violet);
}

.bdp-root .custom-control-input {
  position: static;
  opacity: 1;
  z-index: auto;
}

.bdp-root .custom-control-label::before,
.bdp-root .custom-control-label::after {
  content: none;
}

.bdp-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bdp-muted);
  font-size: 13px;
  cursor: pointer;
}

.bdp-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.bdp-switch-track,
.bdp-switch__track {
  position: relative;
  width: 40px;
  height: 22px;
  flex: 0 0 40px;
  border: 1px solid var(--bdp-line-strong);
  border-radius: 999px;
  background: rgba(5, 11, 19, 0.84);
  transition: border-color var(--bdp-duration-fast) ease, background var(--bdp-duration-fast) ease;
}

.bdp-switch-track::after,
.bdp-switch__track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bdp-muted);
  transition: background var(--bdp-duration-fast) ease, transform var(--bdp-duration-fast) var(--bdp-ease);
}

.bdp-switch input:checked + .bdp-switch-track,
.bdp-switch input:checked + .bdp-switch__track {
  border-color: rgba(99, 164, 212, 0.72);
  background: rgba(38, 80, 116, 0.55);
}

.bdp-switch input:checked + .bdp-switch-track::after,
.bdp-switch input:checked + .bdp-switch__track::after {
  background: var(--bdp-text-strong);
  transform: translateX(18px);
}

.bdp-switch input:focus-visible + .bdp-switch-track,
.bdp-switch input:focus-visible + .bdp-switch__track {
  outline: 2px solid var(--bdp-accent-strong);
  outline-offset: 3px;
}

.bdp-input-group,
.bdp-root .input-group {
  width: 100%;
  display: flex;
  align-items: stretch;
}

.bdp-input-group > :not(:first-child),
.bdp-root .input-group > :not(:first-child) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.bdp-input-group > :not(:last-child),
.bdp-root .input-group > :not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.bdp-input-addon,
.bdp-root .input-group-text,
.bdp-root .input-group-prepend,
.bdp-root .input-group-append {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border: 1px solid rgba(145, 171, 211, 0.24);
  background: rgba(13, 25, 39, 0.92);
  color: var(--bdp-muted);
  font-size: 12px;
  white-space: nowrap;
}

.bdp-root .input-group-prepend,
.bdp-root .input-group-append {
  padding: 0;
  border: 0;
  background: transparent;
}

.bdp-root input[type="file"] {
  max-width: 100%;
  color: var(--bdp-muted);
  font-size: 12px;
}

.bdp-root input[type="file"]::file-selector-button {
  min-height: 36px;
  margin-right: 12px;
  padding: 7px 12px;
  border: 1px solid var(--bdp-line-strong);
  border-radius: var(--bdp-radius-sm);
  background: var(--bdp-control-hover);
  color: var(--bdp-text-soft);
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}

.bdp-form-actions {
  margin-top: 22px;
}

.bdp-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.bdp-fieldset + .bdp-fieldset {
  margin-top: 26px;
}

.bdp-legend {
  width: 100%;
  margin-bottom: 16px;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--bdp-line-soft);
  color: var(--bdp-text-strong);
  font-size: 15px;
  font-weight: 640;
}

/* Tables ---------------------------------------------------------------- */

.bdp-table-scroll,
.bdp-root .table-responsive {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-card);
  background: var(--bdp-surface);
  -webkit-overflow-scrolling: touch;
}

.bdp-table-scroll:focus-visible,
.bdp-root .table-responsive:focus-visible {
  outline: 2px solid var(--bdp-accent-strong);
  outline-offset: 2px;
}

.bdp-table,
.bdp-root .table {
  width: 100%;
  min-width: 660px;
  margin: 0;
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
  background: transparent;
  color: var(--bdp-muted);
  font-size: 13px;
}

.bdp-table caption,
.bdp-root .table caption {
  padding: 14px 16px;
  color: var(--bdp-subtle);
  font-size: 11px;
  text-align: left;
  caption-side: bottom;
}

.bdp-table th,
.bdp-root .table th {
  padding: 12px 15px;
  border: 0;
  border-bottom: 1px solid var(--bdp-line);
  background: rgba(2, 7, 12, 0.3);
  color: var(--bdp-accent);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: left;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
}

.bdp-table td,
.bdp-root .table td {
  padding: 14px 15px;
  border: 0;
  border-bottom: 1px solid var(--bdp-line-soft);
  color: var(--bdp-muted);
  line-height: 1.55;
  vertical-align: middle;
}

.bdp-table tbody tr:last-child td,
.bdp-root .table tbody tr:last-child td {
  border-bottom: 0;
}

.bdp-table tbody tr,
.bdp-root .table tbody tr {
  transition: background var(--bdp-duration-fast) ease;
}

.bdp-table--hover tbody tr:hover,
.bdp-root .table-hover tbody tr:hover,
.bdp-root .table tbody tr:hover {
  background: rgba(145, 171, 211, 0.045);
}

.bdp-root .table-striped tbody tr:nth-of-type(odd) {
  background: rgba(145, 171, 211, 0.025);
}

.bdp-root .table-bordered th,
.bdp-root .table-bordered td {
  border-right: 1px solid var(--bdp-line-soft);
}

.bdp-root .table-bordered th:last-child,
.bdp-root .table-bordered td:last-child {
  border-right: 0;
}

.bdp-table a,
.bdp-root .table a {
  color: var(--bdp-link);
  font-weight: 600;
  text-decoration: none;
}

.bdp-table strong,
.bdp-root .table strong,
.bdp-root .table .text-dark {
  color: var(--bdp-text-soft) !important;
  font-weight: 620;
}

.bdp-table-number {
  color: var(--bdp-text-soft) !important;
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}

.bdp-table-actions {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
}

.bdp-table-empty {
  padding: 38px 20px !important;
  color: var(--bdp-subtle) !important;
  text-align: center;
}

.bdp-sort-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

/* Alerts, badges, notices, progress ------------------------------------- */

.bdp-alert {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid var(--bdp-line);
  border-radius: 10px;
  background: rgba(142, 197, 238, 0.08);
  color: #c7def0;
  font-size: 13px;
  line-height: 1.6;
}

.bdp-alert > .bdp-icon {
  margin-top: 2px;
  flex: 0 0 auto;
}

.bdp-alert-content {
  min-width: 0;
  flex: 1 1 auto;
}

.bdp-alert strong {
  color: var(--bdp-text-strong);
  font-weight: 680;
}

.bdp-alert p {
  margin: 3px 0 0;
}

.bdp-alert--success {
  border-color: rgba(35, 220, 173, 0.38);
  background: rgba(35, 220, 173, 0.09);
  color: #a7ead8;
}

.bdp-alert--warning {
  border-color: rgba(244, 186, 36, 0.4);
  background: rgba(244, 186, 36, 0.09);
  color: #f5d582;
}

.bdp-alert--danger {
  border-color: rgba(255, 155, 155, 0.4);
  background: rgba(255, 96, 96, 0.09);
  color: #ffbcbc;
}

.bdp-alert-close {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  margin: -5px -7px -5px 0;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: currentColor;
  opacity: 0.72;
}

.bdp-alert-close:hover {
  background: rgba(255, 255, 255, 0.07);
  opacity: 1;
}

.bdp-badge {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 3px 8px;
  border: 1px solid rgba(142, 197, 238, 0.28);
  border-radius: 6px;
  background: rgba(142, 197, 238, 0.06);
  color: var(--bdp-info);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.bdp-badge--dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.bdp-badge--success {
  border-color: rgba(35, 220, 173, 0.34);
  background: rgba(35, 220, 173, 0.06);
  color: var(--bdp-success);
}

.bdp-badge--warning {
  border-color: rgba(244, 186, 36, 0.36);
  background: rgba(244, 186, 36, 0.07);
  color: #f6cb5d;
}

.bdp-badge--danger {
  border-color: rgba(255, 155, 155, 0.36);
  background: rgba(255, 155, 155, 0.06);
  color: var(--bdp-danger);
}

.bdp-badge--neutral {
  border-color: var(--bdp-line);
  background: rgba(145, 171, 211, 0.05);
  color: var(--bdp-muted);
}

.bdp-badge--info {
  border-color: rgba(116, 185, 230, 0.34);
  background: rgba(116, 185, 230, 0.08);
  color: var(--bdp-info);
}

.bdp-text-success {
  color: var(--bdp-success) !important;
}

.bdp-progress {
  width: 100%;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(145, 171, 211, 0.12);
}

.bdp-progress-bar {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--bdp-accent-strong), var(--bdp-cyan));
  box-shadow: 0 0 14px rgba(19, 214, 255, 0.22);
  transition: width 420ms var(--bdp-ease);
}

.bdp-progress--active .bdp-progress-bar,
.bdp-progress.is-active .bdp-progress-bar {
  background: linear-gradient(90deg, var(--bdp-violet), var(--bdp-accent), var(--bdp-cyan));
  background-size: 200% 100%;
  animation: bdp-progress-flow 1.4s linear infinite;
}

.bdp-progress--success .bdp-progress-bar {
  background: var(--bdp-success);
}

@keyframes bdp-progress-flow {
  to { background-position: -200% 0; }
}

/* Tabs and pagination --------------------------------------------------- */

.bdp-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  margin: 0 0 20px;
  padding: 4px;
  border: 1px solid var(--bdp-line);
  border-radius: 11px;
  background: rgba(2, 7, 12, 0.38);
  scrollbar-width: none;
}

.bdp-tabs::-webkit-scrollbar {
  display: none;
}

.bdp-tab {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 13px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--bdp-muted) !important;
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.bdp-tab:hover {
  background: rgba(145, 171, 211, 0.06);
  color: var(--bdp-text-soft) !important;
}

.bdp-tab.is-active,
.bdp-tab[aria-selected="true"] {
  border-color: rgba(116, 185, 230, 0.24);
  background: rgba(38, 80, 116, 0.32);
  color: var(--bdp-text-strong) !important;
}

.bdp-tab-panel:focus {
  outline: none;
}

.bdp-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.bdp-page-link {
  min-width: 36px;
  min-height: 36px;
  display: inline-grid;
  place-items: center;
  padding: 6px 10px;
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-sm);
  background: rgba(2, 7, 12, 0.38);
  color: var(--bdp-muted) !important;
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}

.bdp-page-link:hover {
  border-color: var(--bdp-line-strong);
  background: var(--bdp-control-hover);
  color: var(--bdp-text-strong) !important;
}

.bdp-page-item.is-active .bdp-page-link,
.bdp-page-link[aria-current="page"] {
  border-color: rgba(99, 164, 212, 0.7);
  background: rgba(38, 80, 116, 0.5);
  color: #fff !important;
}

.bdp-page-item.is-disabled .bdp-page-link,
.bdp-page-link[aria-disabled="true"] {
  opacity: 0.42;
  pointer-events: none;
}

/* Dropdowns, modal surfaces, tooltips ----------------------------------- */

.bdp-dropdown {
  position: relative;
  display: inline-block;
}

.bdp-dropdown-menu {
  min-width: 210px;
}

.bdp-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 24px;
  background: rgba(0, 0, 0, 0.74);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.bdp-modal.is-open,
.bdp-modal[aria-hidden="false"] {
  display: grid;
  place-items: center;
}

.bdp-modal-dialog {
  width: min(100%, 620px);
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--bdp-line-strong);
  border-radius: var(--bdp-radius-card);
  background: var(--bdp-surface-strong);
  box-shadow: var(--bdp-shadow-float);
  animation: bdp-modal-enter var(--bdp-duration) var(--bdp-ease) both;
}

.bdp-modal-header,
.bdp-modal-body,
.bdp-modal-footer {
  padding: 20px 22px;
}

.bdp-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--bdp-line-soft);
}

.bdp-modal-title {
  margin: 0;
  font-size: 19px;
  font-weight: 580;
  letter-spacing: -0.02em;
}

.bdp-modal-body {
  min-height: 0;
  overflow-y: auto;
  color: var(--bdp-muted);
  font-size: 14px;
  line-height: 1.7;
}

.bdp-modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid var(--bdp-line-soft);
}

@keyframes bdp-modal-enter {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }

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

.bdp-tooltip {
  position: relative;
}

.bdp-tooltip::before,
.bdp-tooltip::after,
[data-bdp-tooltip]::before,
[data-bdp-tooltip]::after {
  position: absolute;
  left: 50%;
  z-index: 1300;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity var(--bdp-duration-fast) ease, transform var(--bdp-duration-fast) ease, visibility var(--bdp-duration-fast) ease;
}

.bdp-tooltip::before,
[data-bdp-tooltip]::before {
  content: "";
  bottom: calc(100% + 4px);
  border: 5px solid transparent;
  border-top-color: #172432;
}

.bdp-tooltip::after,
[data-bdp-tooltip]::after {
  content: attr(data-bdp-tooltip);
  bottom: calc(100% + 14px);
  max-width: 240px;
  padding: 7px 9px;
  border: 1px solid var(--bdp-line);
  border-radius: 6px;
  background: #172432;
  color: var(--bdp-text);
  font-size: 11px;
  font-weight: 560;
  line-height: 1.35;
  text-align: center;
  white-space: normal;
  box-shadow: var(--bdp-shadow-menu);
}

.bdp-tooltip:hover::before,
.bdp-tooltip:hover::after,
.bdp-tooltip:focus-visible::before,
.bdp-tooltip:focus-visible::after,
[data-bdp-tooltip]:hover::before,
[data-bdp-tooltip]:hover::after,
[data-bdp-tooltip]:focus-visible::before,
[data-bdp-tooltip]:focus-visible::after {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

/* Empty and loading states ---------------------------------------------- */

.bdp-empty {
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 38px 22px;
  border: 1px dashed rgba(145, 171, 211, 0.24);
  border-radius: var(--bdp-radius-card);
  background: rgba(5, 11, 19, 0.42);
  text-align: center;
}

.bdp-empty-inner {
  max-width: 460px;
}

.bdp-empty-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 1px solid var(--bdp-line);
  border-radius: 14px;
  background: rgba(9, 17, 27, 0.72);
  color: var(--bdp-accent);
}

.bdp-empty h2,
.bdp-empty h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 620;
}

.bdp-empty p {
  margin: 9px 0 0;
  color: var(--bdp-muted);
  font-size: 13px;
  line-height: 1.65;
}

.bdp-empty .bdp-button {
  margin-top: 20px;
}

.bdp-loading {
  position: relative !important;
  min-height: 72px;
}

.bdp-loading > :not(.bdp-loader) {
  pointer-events: none;
}

.bdp-loader {
  position: absolute;
  inset: 0;
  z-index: 45;
  display: grid;
  place-items: center;
  border-radius: inherit;
  background: rgba(2, 7, 12, 0.76);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.bdp-loader__mark {
  width: 27px;
  height: 27px;
  display: block;
  border: 2px solid rgba(145, 171, 211, 0.2);
  border-top-color: var(--bdp-accent);
  border-right-color: rgba(19, 214, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(19, 214, 255, 0.12);
  animation: bdp-spin 760ms linear infinite;
}

.bdp-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(145, 171, 211, 0.18);
  border-top-color: var(--bdp-accent);
  border-radius: 50%;
  animation: bdp-spin 760ms linear infinite;
}

@keyframes bdp-spin {
  to { transform: rotate(360deg); }
}

.bdp-skeleton {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(145, 171, 211, 0.1);
  color: transparent !important;
}

.bdp-skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
  transform: translateX(-100%);
  animation: bdp-shimmer 1.5s ease-in-out infinite;
}

@keyframes bdp-shimmer {
  to { transform: translateX(100%); }
}

.bdp-loading-overlay {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  border-radius: inherit;
  background: rgba(2, 7, 12, 0.74);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

/* HostBill and Bootstrap compatibility ----------------------------------
 * These rules style functional markup that HostBill modules can emit. They
 * are intentionally scoped to .bdp-root and do not reproduce a stock theme.
 */

.bdp-root .container,
.bdp-root .container-fluid {
  width: 100%;
  margin-inline: auto;
  padding-inline: 12px;
}

.bdp-root .container {
  max-width: var(--bdp-content-max);
}

.bdp-root .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -9px;
  margin-left: -9px;
}

.bdp-root .no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.bdp-root .row > [class*="col-"] {
  position: relative;
  width: 100%;
  min-width: 0;
  padding-right: 9px;
  padding-left: 9px;
}

.bdp-root .no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.bdp-root .col { flex: 1 0 0%; max-width: 100%; }
.bdp-root .col-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
.bdp-root .col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.bdp-root .col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.bdp-root .col-3 { flex: 0 0 25%; max-width: 25%; }
.bdp-root .col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.bdp-root .col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.bdp-root .col-6 { flex: 0 0 50%; max-width: 50%; }
.bdp-root .col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.bdp-root .col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.bdp-root .col-9 { flex: 0 0 75%; max-width: 75%; }
.bdp-root .col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.bdp-root .col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.bdp-root .col-12 { flex: 0 0 100%; max-width: 100%; }

.bdp-root .card,
.bdp-root .panel,
.bdp-root .well,
.bdp-root .box,
.bdp-root .wbox,
.bdp-root .widget,
.bdp-root .info-box {
  min-width: 0;
  margin-bottom: 18px;
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-card);
  background: var(--bdp-surface);
  color: var(--bdp-muted);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.bdp-root .card-header,
.bdp-root .panel-heading,
.bdp-root .box-header,
.bdp-root .widget-header,
.bdp-root .info-box > :first-child:not(.info-box-items) {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--bdp-line-soft);
  background: transparent;
  color: var(--bdp-text-strong);
}

.bdp-root .card-header h1,
.bdp-root .card-header h2,
.bdp-root .card-header h3,
.bdp-root .card-header h4,
.bdp-root .panel-heading h1,
.bdp-root .panel-heading h2,
.bdp-root .panel-heading h3,
.bdp-root .panel-heading h4,
.bdp-root .info-box h1,
.bdp-root .info-box h2,
.bdp-root .info-box h3,
.bdp-root .info-box h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 640;
  letter-spacing: -0.01em;
}

.bdp-root .card-body,
.bdp-root .panel-body,
.bdp-root .box-body,
.bdp-root .widget-body,
.bdp-root .well,
.bdp-root .info-box-items {
  padding: 20px;
}

.bdp-root .well {
  margin-bottom: 18px;
}

.bdp-root .card-footer,
.bdp-root .panel-footer,
.bdp-root .box-footer,
.bdp-root .widget-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--bdp-line-soft);
  background: rgba(2, 7, 12, 0.18);
  color: var(--bdp-muted);
}

.bdp-root .card-title,
.bdp-root .panel-title {
  margin: 0 0 9px;
  color: var(--bdp-text-strong);
  font-size: 16px;
  font-weight: 640;
}

.bdp-root .card-subtitle {
  margin: -3px 0 10px;
  color: var(--bdp-subtle);
  font-size: 12px;
}

.bdp-root .card-text {
  color: var(--bdp-muted);
  font-size: 13px;
  line-height: 1.7;
}

.bdp-root .btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid var(--bdp-line-strong);
  border-radius: var(--bdp-radius-control);
  background: rgba(2, 8, 14, 0.5);
  color: var(--bdp-text-strong) !important;
  font-size: 13px;
  font-weight: 680;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: none;
  transition:
    border-color var(--bdp-duration-fast) ease,
    background var(--bdp-duration-fast) ease,
    color var(--bdp-duration-fast) ease,
    transform var(--bdp-duration-fast) ease;
}

.bdp-root .btn:hover,
.bdp-root .btn:focus {
  border-color: rgba(188, 223, 245, 0.46);
  background: var(--bdp-control-hover);
  color: #fff !important;
  text-decoration: none;
}

.bdp-root .btn:focus-visible {
  box-shadow: var(--bdp-focus);
}

.bdp-root .btn:active,
.bdp-root .btn.active {
  transform: translateY(1px);
}

.bdp-root .btn-primary,
.bdp-root .btn-info {
  border-color: rgba(120, 178, 226, 0.56);
  background: rgba(34, 74, 108, 0.58);
  color: #fff !important;
}

.bdp-root .btn-primary:hover,
.bdp-root .btn-info:hover,
.bdp-root .btn-primary:focus,
.bdp-root .btn-info:focus {
  border-color: rgba(142, 197, 238, 0.76);
  background: rgba(45, 95, 136, 0.72);
}

.bdp-root .btn-secondary,
.bdp-root .btn-outline-secondary,
.bdp-root .btn-default {
  border-color: var(--bdp-line-strong);
  background: rgba(2, 8, 14, 0.5);
  color: var(--bdp-text-soft) !important;
}

.bdp-root .btn-success,
.bdp-root .btn-outline-success {
  border-color: rgba(35, 220, 173, 0.46);
  background: rgba(35, 220, 173, 0.11);
  color: #b2f5e2 !important;
}

.bdp-root .btn-warning,
.bdp-root .btn-outline-warning {
  border-color: rgba(244, 186, 36, 0.46);
  background: rgba(244, 186, 36, 0.1);
  color: #f8da8b !important;
}

.bdp-root .btn-danger,
.bdp-root .btn-outline-danger {
  border-color: rgba(255, 155, 155, 0.42);
  background: rgba(255, 96, 96, 0.1);
  color: #ffc0c0 !important;
}

.bdp-root .btn-link {
  min-height: 0;
  padding: 5px;
  border-color: transparent;
  background: transparent;
  color: var(--bdp-link) !important;
}

.bdp-root .btn-link:hover {
  border-color: transparent;
  background: transparent;
  color: var(--bdp-link-hover) !important;
}

.bdp-root .btn-sm,
.bdp-root .btn-group-sm > .btn {
  min-height: 34px;
  padding: 6px 11px;
  border-radius: var(--bdp-radius-sm);
  font-size: 11px;
}

.bdp-root .btn-lg,
.bdp-root .btn-group-lg > .btn {
  min-height: 50px;
  padding: 12px 20px;
  font-size: 14px;
}

.bdp-root .btn-block {
  width: 100%;
}

.bdp-root .btn:disabled,
.bdp-root .btn.disabled,
.bdp-root fieldset:disabled .btn {
  opacity: 0.46;
  cursor: not-allowed;
  pointer-events: none;
}

.bdp-root .btn-group,
.bdp-root .btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

.bdp-root .btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.bdp-root .btn-group > .btn:not(:first-child) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.bdp-root .btn-group > .btn:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.bdp-root .form-group,
.bdp-root .form-groups,
.bdp-root .form-label-group {
  position: relative;
  min-width: 0;
  margin-bottom: 18px;
}

.bdp-root .form-group > label,
.bdp-root .form-groups > label,
.bdp-root .form-label-group > label:not(.form-label-placeholder) {
  display: block;
  margin-bottom: 7px;
  color: var(--bdp-text-soft);
  font-size: 12px;
  font-weight: 640;
}

.bdp-root .form-label-placeholder {
  position: absolute;
  top: 13px;
  left: 13px;
  max-width: calc(100% - 26px);
  color: var(--bdp-subtle);
  font-size: 13px;
  line-height: 1.4;
  pointer-events: none;
  transform-origin: left top;
  transition: color var(--bdp-duration-fast) ease, transform var(--bdp-duration-fast) ease;
}

.bdp-root .form-label-group .form-control {
  min-height: 54px;
  padding-top: 20px;
  padding-bottom: 6px;
}

.bdp-root .form-label-group .form-control:focus ~ .form-label-placeholder,
.bdp-root .form-label-group .form-control:not(:placeholder-shown) ~ .form-label-placeholder,
.bdp-root .form-label-group .form-control:-webkit-autofill ~ .form-label-placeholder {
  color: var(--bdp-accent);
  transform: translateY(-8px) scale(0.78);
}

.bdp-root .form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 10px;
}

.bdp-root .alert {
  position: relative;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(142, 197, 238, 0.34);
  border-radius: 10px;
  background: rgba(142, 197, 238, 0.08);
  color: #c7def0;
  font-size: 13px;
  line-height: 1.6;
}

.bdp-root .alert-heading {
  color: var(--bdp-text-strong);
  font-weight: 680;
}

.bdp-root .alert-success {
  border-color: rgba(35, 220, 173, 0.38);
  background: rgba(35, 220, 173, 0.09);
  color: #a7ead8;
}

.bdp-root .alert-warning {
  border-color: rgba(244, 186, 36, 0.4);
  background: rgba(244, 186, 36, 0.09);
  color: #f5d582;
}

.bdp-root .alert-danger {
  border-color: rgba(255, 155, 155, 0.4);
  background: rgba(255, 96, 96, 0.09);
  color: #ffbcbc;
}

.bdp-root .alert-dismissible {
  padding-right: 48px;
}

.bdp-root .alert-dismissible .close {
  position: absolute;
  top: 7px;
  right: 8px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: inherit;
  font-size: 18px;
  opacity: 0.72;
}

.bdp-root .alert-dismissible .close:hover {
  background: rgba(255, 255, 255, 0.07);
  opacity: 1;
}

.bdp-root .badge,
.bdp-root .label {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 3px 8px;
  border: 1px solid rgba(142, 197, 238, 0.28);
  border-radius: 6px;
  background: rgba(142, 197, 238, 0.06);
  color: var(--bdp-info);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
}

.bdp-root .badge-pill {
  border-radius: 999px;
}

.bdp-root .badge-primary,
.bdp-root .badge-info,
.bdp-root .label-primary,
.bdp-root .label-info,
.bdp-root .badge-Open,
.bdp-root .badge-open,
.bdp-root .badge-New,
.bdp-root .badge-new {
  border-color: rgba(142, 197, 238, 0.32);
  background: rgba(142, 197, 238, 0.07);
  color: var(--bdp-info);
}

.bdp-root .badge-success,
.bdp-root .label-success,
.bdp-root .badge-Active,
.bdp-root .badge-active,
.bdp-root .badge-Paid,
.bdp-root .badge-paid,
.bdp-root .badge-Completed,
.bdp-root .badge-completed,
.bdp-root .badge-Accepted,
.bdp-root .badge-accepted,
.bdp-root .badge-Resolved,
.bdp-root .badge-resolved {
  border-color: rgba(35, 220, 173, 0.34);
  background: rgba(35, 220, 173, 0.06);
  color: var(--bdp-success);
}

.bdp-root .badge-warning,
.bdp-root .label-warning,
.bdp-root .badge-Pending,
.bdp-root .badge-pending,
.bdp-root .badge-Unpaid,
.bdp-root .badge-unpaid,
.bdp-root .badge-Awaiting,
.bdp-root .badge-awaiting,
.bdp-root .badge-InProgress,
.bdp-root .badge-inprogress {
  border-color: rgba(244, 186, 36, 0.36);
  background: rgba(244, 186, 36, 0.07);
  color: #f6cb5d;
}

.bdp-root .badge-danger,
.bdp-root .label-danger,
.bdp-root .badge-Cancelled,
.bdp-root .badge-cancelled,
.bdp-root .badge-Canceled,
.bdp-root .badge-canceled,
.bdp-root .badge-Failed,
.bdp-root .badge-failed,
.bdp-root .badge-Fraud,
.bdp-root .badge-fraud,
.bdp-root .badge-Overdue,
.bdp-root .badge-overdue,
.bdp-root .badge-Suspended,
.bdp-root .badge-suspended {
  border-color: rgba(255, 155, 155, 0.36);
  background: rgba(255, 155, 155, 0.06);
  color: var(--bdp-danger);
}

.bdp-root .badge-secondary,
.bdp-root .badge-light,
.bdp-root .badge-dark,
.bdp-root .label-default,
.bdp-root .badge-Closed,
.bdp-root .badge-closed,
.bdp-root .badge-Terminated,
.bdp-root .badge-terminated,
.bdp-root .badge-Refunded,
.bdp-root .badge-refunded {
  border-color: var(--bdp-line);
  background: rgba(145, 171, 211, 0.05);
  color: var(--bdp-muted);
}

.bdp-root .nav {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.bdp-root .nav-link {
  display: block;
  padding: 9px 12px;
  color: var(--bdp-muted);
  font-size: 12px;
  font-weight: 640;
  text-decoration: none;
}

.bdp-root .nav-link:hover,
.bdp-root .nav-link:focus {
  color: var(--bdp-text-soft);
}

.bdp-root .nav-link.disabled {
  color: var(--bdp-faint);
  pointer-events: none;
  opacity: 0.6;
}

.bdp-root .nav-tabs-wrapper {
  max-width: 100%;
  overflow-x: auto;
  margin-bottom: 18px;
  scrollbar-width: none;
}

.bdp-root .nav-tabs-wrapper::-webkit-scrollbar {
  display: none;
}

.bdp-root .nav-tabs,
.bdp-root .nav-pills {
  width: max-content;
  min-width: 100%;
  flex-wrap: nowrap;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--bdp-line);
  border-radius: 11px;
  background: rgba(2, 7, 12, 0.38);
}

.bdp-root .nav-tabs .nav-link,
.bdp-root .nav-pills .nav-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--bdp-muted);
  white-space: nowrap;
}

.bdp-root .nav-tabs .nav-link.active,
.bdp-root .nav-tabs .nav-item.active .nav-link,
.bdp-root .nav-pills .nav-link.active,
.bdp-root .nav-pills .show > .nav-link {
  border-color: rgba(116, 185, 230, 0.24);
  background: rgba(38, 80, 116, 0.32);
  color: var(--bdp-text-strong);
}

.bdp-root .tab-content > .tab-pane {
  display: none;
}

.bdp-root .tab-content > .active,
.bdp-root .tab-content > .show {
  display: block;
}

.bdp-root .pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.bdp-root .page-link {
  position: relative;
  min-width: 36px;
  min-height: 36px;
  display: inline-grid;
  place-items: center;
  margin: 0;
  padding: 6px 10px;
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-sm);
  background: rgba(2, 7, 12, 0.38);
  color: var(--bdp-muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
}

.bdp-root .page-link:hover {
  z-index: 2;
  border-color: var(--bdp-line-strong);
  background: var(--bdp-control-hover);
  color: var(--bdp-text-strong);
}

.bdp-root .page-item.active .page-link {
  border-color: rgba(99, 164, 212, 0.7);
  background: rgba(38, 80, 116, 0.5);
  color: #fff;
}

.bdp-root .page-item.disabled .page-link {
  opacity: 0.42;
  pointer-events: none;
}

.bdp-root .dropdown {
  position: relative;
}

.bdp-root .dropdown-toggle::after {
  content: "";
  display: inline-block;
  margin-left: 7px;
  vertical-align: 0.15em;
  border-top: 0.32em solid currentColor;
  border-right: 0.28em solid transparent;
  border-left: 0.28em solid transparent;
}

.bdp-root .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1050;
  min-width: 210px;
  display: none;
  margin: 8px 0 0;
  padding: 8px;
  border: 1px solid var(--bdp-line);
  border-radius: 12px;
  background: rgba(4, 10, 17, 0.98);
  color: var(--bdp-text);
  box-shadow: var(--bdp-shadow-menu);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.bdp-root .dropdown-menu-right {
  right: 0;
  left: auto;
}

.bdp-root .dropdown-menu.show,
.bdp-root .dropdown.show > .dropdown-menu {
  display: block;
}

.bdp-root .dropdown-header {
  display: block;
  padding: 8px 11px;
  color: var(--bdp-subtle);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bdp-root .dropdown-item {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--bdp-text-soft);
  font-size: 13px;
  font-weight: 560;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.bdp-root .dropdown-item:hover,
.bdp-root .dropdown-item:focus,
.bdp-root .dropdown-item.active,
.bdp-root .dropdown-item:active {
  background: rgba(145, 171, 211, 0.1);
  color: var(--bdp-text-strong);
}

.bdp-root .dropdown-divider {
  height: 1px;
  margin: 6px 4px;
  border: 0;
  background: var(--bdp-line-soft);
}

.bdp-root .collapse:not(.show) {
  display: none;
}

.bdp-root .collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 250ms ease;
}

.bdp-root .modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 24px;
  outline: 0;
  background: rgba(0, 0, 0, 0.74);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.bdp-root .modal.show {
  display: block;
}

.bdp-root .modal-dialog {
  position: relative;
  width: auto;
  max-width: 620px;
  margin: 28px auto;
  pointer-events: none;
}

.bdp-root .modal-dialog-centered {
  min-height: calc(100% - 56px);
  display: flex;
  align-items: center;
}

.bdp-root .modal-content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--bdp-line-strong);
  border-radius: var(--bdp-radius-card);
  background: var(--bdp-surface-strong);
  color: var(--bdp-text);
  box-shadow: var(--bdp-shadow-float);
  pointer-events: auto;
}

.bdp-root .modal-header,
.bdp-root .modal-body,
.bdp-root .modal-footer {
  padding: 20px 22px;
}

.bdp-root .modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--bdp-line-soft);
}

.bdp-root .modal-title {
  margin: 0;
  color: var(--bdp-text-strong);
  font-size: 19px;
  font-weight: 580;
  letter-spacing: -0.02em;
}

.bdp-root .modal-header .close {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin: -7px -9px -7px 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--bdp-muted);
  font-size: 22px;
  opacity: 1;
}

.bdp-root .modal-header .close:hover {
  background: rgba(145, 171, 211, 0.08);
  color: var(--bdp-text-strong);
}

.bdp-root .modal-body {
  color: var(--bdp-muted);
  font-size: 14px;
  line-height: 1.7;
}

.bdp-root .modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid var(--bdp-line-soft);
}

.bdp-root .modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1190;
  background: #000;
}

.bdp-root .modal-backdrop.show {
  opacity: 0.74;
}

.bdp-root .tooltip {
  position: absolute;
  z-index: 1300;
  display: block;
  margin: 0;
  font-size: 11px;
  opacity: 0;
}

.bdp-root .tooltip.show {
  opacity: 1;
}

.bdp-root .tooltip-inner {
  max-width: 240px;
  padding: 7px 9px;
  border: 1px solid var(--bdp-line);
  border-radius: 6px;
  background: #172432;
  color: var(--bdp-text);
  line-height: 1.35;
  text-align: center;
}

.bdp-root .popover {
  position: absolute;
  z-index: 1290;
  max-width: 320px;
  border: 1px solid var(--bdp-line);
  border-radius: 10px;
  background: var(--bdp-surface-strong);
  color: var(--bdp-muted);
  box-shadow: var(--bdp-shadow-menu);
}

.bdp-root .popover-header {
  margin: 0;
  padding: 11px 13px;
  border-bottom: 1px solid var(--bdp-line-soft);
  border-radius: 9px 9px 0 0;
  background: rgba(145, 171, 211, 0.04);
  color: var(--bdp-text-strong);
  font-size: 13px;
  font-weight: 650;
}

.bdp-root .popover-body {
  padding: 12px 13px;
  color: var(--bdp-muted);
  font-size: 12px;
  line-height: 1.55;
}

.bdp-root .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0 0 14px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--bdp-subtle);
  font-size: 11px;
  font-weight: 640;
  list-style: none;
}

.bdp-root .breadcrumb-item + .breadcrumb-item {
  padding-left: 0;
}

.bdp-root .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding-right: 7px;
  color: #46536a;
}

.bdp-root .list-group {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-card);
  background: var(--bdp-surface);
  list-style: none;
  overflow: hidden;
}

.bdp-root .list-group-item {
  position: relative;
  display: block;
  padding: 14px 16px;
  border: 0;
  border-bottom: 1px solid var(--bdp-line-soft);
  background: transparent;
  color: var(--bdp-muted);
}

.bdp-root .list-group-item:last-child {
  border-bottom: 0;
}

.bdp-root a.list-group-item:hover,
.bdp-root button.list-group-item:hover,
.bdp-root .list-group-item.active {
  background: rgba(38, 80, 116, 0.22);
  color: var(--bdp-text-strong);
}

.bdp-root .progress {
  width: 100%;
  height: 8px;
  display: flex;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(145, 171, 211, 0.12);
}

.bdp-root .progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--bdp-accent-strong), var(--bdp-cyan));
  color: #fff;
  font-size: 0;
  text-align: center;
  white-space: nowrap;
  transition: width 420ms var(--bdp-ease);
}

.bdp-root .media {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.bdp-root .media-body {
  min-width: 0;
  flex: 1 1 auto;
}

/* HostBill-specific functional surfaces. */

.bdp-root .section-main,
.bdp-root .section-dashboard,
.bdp-root .section-clientarea,
.bdp-root .section-services,
.bdp-root .section-support {
  min-width: 0;
}

.bdp-root .section-main > h1,
.bdp-root .section-dashboard > h1,
.bdp-root .section-clientarea > h1,
.bdp-root .section-services > h1,
.bdp-root .section-support > h1,
.bdp-root .section-dashboard > div:first-child h1 {
  margin: 0 0 28px;
  color: var(--bdp-text-strong);
  font-size: clamp(30px, 3.3vw, 46px);
  font-weight: 420;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.bdp-root .info-box {
  padding: 20px;
}

.bdp-root .info-box > :first-child:not(.info-box-items) {
  min-height: 0;
  margin: -20px -20px 0;
}

.bdp-root .info-box-items {
  margin: 0 -20px -20px;
  padding: 0;
}

.bdp-root .info-box .table-responsive,
.bdp-root .info-box .bdp-table-scroll {
  border: 0;
  border-radius: 0 0 var(--bdp-radius-card) var(--bdp-radius-card);
  background: transparent;
}

.bdp-root .table-borders,
.bdp-root .table-radius {
  border-color: var(--bdp-line);
  border-radius: var(--bdp-radius-card);
}

.bdp-root .section-signin,
.bdp-root .section-passreminder {
  min-height: calc(100vh - var(--bdp-topbar-height));
  min-height: calc(100dvh - var(--bdp-topbar-height));
  display: grid;
  place-items: center;
  padding: 28px;
}

.bdp-root .form-credentials {
  width: min(100%, 480px);
  display: block !important;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-lg);
  background: var(--bdp-surface);
  box-shadow: var(--bdp-shadow-float);
}

.bdp-root .form-credentials > h1 {
  margin: 24px 0 10px !important;
  color: var(--bdp-text-strong);
  font-size: 28px !important;
  font-weight: 440 !important;
  letter-spacing: -0.03em;
  text-align: center;
}

.bdp-root .form-credentials > small {
  display: block;
  margin-bottom: 24px;
  color: var(--bdp-muted);
  font-size: 12px;
  line-height: 1.65;
  text-align: center;
}

.bdp-root .form-credentials form {
  width: 100%;
}

.bdp-root .capcha {
  flex: 0 0 auto;
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-control);
  background: #fff;
}

.bdp-root .pnotify,
.bdp-root .ui-pnotify-container {
  border: 1px solid var(--bdp-line-strong) !important;
  border-radius: 10px !important;
  background: var(--bdp-surface-strong) !important;
  color: var(--bdp-text-soft) !important;
  box-shadow: var(--bdp-shadow-menu) !important;
}

.bdp-root .selectize-control,
.bdp-root .chosen-container {
  width: 100% !important;
  color: var(--bdp-text);
}

.bdp-root .selectize-input,
.bdp-root .chosen-container-single .chosen-single,
.bdp-root .chosen-choices {
  min-height: 44px !important;
  padding: 10px 13px !important;
  border: 1px solid rgba(145, 171, 211, 0.24) !important;
  border-radius: var(--bdp-radius-control) !important;
  background: var(--bdp-control) !important;
  color: var(--bdp-text) !important;
  box-shadow: none !important;
}

.bdp-root .selectize-input.focus,
.bdp-root .chosen-container-active .chosen-single,
.bdp-root .chosen-container-active .chosen-choices {
  border-color: rgba(99, 164, 212, 0.82) !important;
  box-shadow: var(--bdp-focus) !important;
}

.bdp-root .selectize-dropdown,
.bdp-root .chosen-drop {
  z-index: 1100;
  margin-top: 6px;
  border: 1px solid var(--bdp-line) !important;
  border-radius: 10px !important;
  background: var(--bdp-surface-strong) !important;
  color: var(--bdp-text-soft) !important;
  box-shadow: var(--bdp-shadow-menu) !important;
}

.bdp-root .selectize-dropdown-content .option,
.bdp-root .chosen-results li {
  padding: 9px 11px !important;
  border-radius: 7px;
  color: var(--bdp-text-soft) !important;
}

.bdp-root .selectize-dropdown-content .option.active,
.bdp-root .chosen-results li.highlighted {
  background: rgba(38, 80, 116, 0.4) !important;
  color: #fff !important;
}

/* Bootstrap utility subset used by HostBill templates. */

.bdp-root .d-none { display: none !important; }
.bdp-root .d-inline { display: inline !important; }
.bdp-root .d-inline-block { display: inline-block !important; }
.bdp-root .d-block { display: block !important; }
.bdp-root .d-flex { display: flex !important; }
.bdp-root .d-inline-flex { display: inline-flex !important; }
.bdp-root .flex-row { flex-direction: row !important; }
.bdp-root .flex-column { flex-direction: column !important; }
.bdp-root .flex-wrap { flex-wrap: wrap !important; }
.bdp-root .flex-nowrap { flex-wrap: nowrap !important; }
.bdp-root .flex-grow-1 { flex-grow: 1 !important; }
.bdp-root .flex-shrink-0 { flex-shrink: 0 !important; }
.bdp-root .justify-content-start { justify-content: flex-start !important; }
.bdp-root .justify-content-center { justify-content: center !important; }
.bdp-root .justify-content-end { justify-content: flex-end !important; }
.bdp-root .justify-content-between { justify-content: space-between !important; }
.bdp-root .justify-content-around { justify-content: space-around !important; }
.bdp-root .align-items-start { align-items: flex-start !important; }
.bdp-root .align-items-center { align-items: center !important; }
.bdp-root .align-items-end { align-items: flex-end !important; }
.bdp-root .align-self-start { align-self: flex-start !important; }
.bdp-root .align-self-center { align-self: center !important; }
.bdp-root .align-self-end { align-self: flex-end !important; }
.bdp-root .position-relative { position: relative !important; }
.bdp-root .position-absolute { position: absolute !important; }
.bdp-root .w-25 { width: 25% !important; }
.bdp-root .w-50 { width: 50% !important; }
.bdp-root .w-75 { width: 75% !important; }
.bdp-root .w-100 { width: 100% !important; }
.bdp-root .h-100 { height: 100% !important; }
.bdp-root .text-left { text-align: left !important; }
.bdp-root .text-center { text-align: center !important; }
.bdp-root .text-right { text-align: right !important; }
.bdp-root .text-lowercase { text-transform: lowercase !important; }
.bdp-root .text-uppercase { text-transform: uppercase !important; }
.bdp-root .text-capitalize { text-transform: capitalize !important; }
.bdp-root .font-weight-light { font-weight: 300 !important; }
.bdp-root .font-weight-normal { font-weight: 440 !important; }
.bdp-root .font-weight-bold { font-weight: 680 !important; }
.bdp-root .text-primary { color: var(--bdp-link) !important; }
.bdp-root .text-secondary,
.bdp-root .text-muted { color: var(--bdp-muted) !important; }
.bdp-root .text-dark,
.bdp-root .text-body { color: var(--bdp-text-soft) !important; }
.bdp-root .text-light,
.bdp-root .text-white { color: var(--bdp-text-strong) !important; }
.bdp-root .text-success { color: var(--bdp-success) !important; }
.bdp-root .text-warning { color: var(--bdp-warning) !important; }
.bdp-root .text-danger { color: var(--bdp-danger) !important; }
.bdp-root .small,
.bdp-root small { font-size: 80%; }
.bdp-root .text-small { font-size: 12px !important; }
.bdp-root .overflow-auto { overflow: auto !important; }
.bdp-root .overflow-hidden { overflow: hidden !important; }

.bdp-root .m-0 { margin: 0 !important; }
.bdp-root .m-1 { margin: 4px !important; }
.bdp-root .m-2 { margin: 8px !important; }
.bdp-root .m-3 { margin: 16px !important; }
.bdp-root .m-4 { margin: 24px !important; }
.bdp-root .m-5 { margin: 40px !important; }
.bdp-root .mt-0 { margin-top: 0 !important; }
.bdp-root .mt-1 { margin-top: 4px !important; }
.bdp-root .mt-2 { margin-top: 8px !important; }
.bdp-root .mt-3 { margin-top: 16px !important; }
.bdp-root .mt-4 { margin-top: 24px !important; }
.bdp-root .mt-5 { margin-top: 40px !important; }
.bdp-root .mr-0 { margin-right: 0 !important; }
.bdp-root .mr-1 { margin-right: 4px !important; }
.bdp-root .mr-2 { margin-right: 8px !important; }
.bdp-root .mr-3 { margin-right: 16px !important; }
.bdp-root .mr-4 { margin-right: 24px !important; }
.bdp-root .mr-5 { margin-right: 40px !important; }
.bdp-root .mb-0 { margin-bottom: 0 !important; }
.bdp-root .mb-1 { margin-bottom: 4px !important; }
.bdp-root .mb-2 { margin-bottom: 8px !important; }
.bdp-root .mb-3 { margin-bottom: 16px !important; }
.bdp-root .mb-4 { margin-bottom: 24px !important; }
.bdp-root .mb-5 { margin-bottom: 40px !important; }
.bdp-root .ml-0 { margin-left: 0 !important; }
.bdp-root .ml-1 { margin-left: 4px !important; }
.bdp-root .ml-2 { margin-left: 8px !important; }
.bdp-root .ml-3 { margin-left: 16px !important; }
.bdp-root .ml-4 { margin-left: 24px !important; }
.bdp-root .ml-5 { margin-left: 40px !important; }
.bdp-root .mx-auto { margin-right: auto !important; margin-left: auto !important; }
.bdp-root .p-0 { padding: 0 !important; }
.bdp-root .p-1 { padding: 4px !important; }
.bdp-root .p-2 { padding: 8px !important; }
.bdp-root .p-3 { padding: 16px !important; }
.bdp-root .p-4 { padding: 24px !important; }
.bdp-root .p-5 { padding: 40px !important; }
.bdp-root .pt-0 { padding-top: 0 !important; }
.bdp-root .pt-1 { padding-top: 4px !important; }
.bdp-root .pt-2 { padding-top: 8px !important; }
.bdp-root .pt-3 { padding-top: 16px !important; }
.bdp-root .pt-4 { padding-top: 24px !important; }
.bdp-root .pt-5 { padding-top: 40px !important; }
.bdp-root .pr-0 { padding-right: 0 !important; }
.bdp-root .pr-1 { padding-right: 4px !important; }
.bdp-root .pr-2 { padding-right: 8px !important; }
.bdp-root .pr-3 { padding-right: 16px !important; }
.bdp-root .pr-4 { padding-right: 24px !important; }
.bdp-root .pr-5 { padding-right: 40px !important; }
.bdp-root .pb-0 { padding-bottom: 0 !important; }
.bdp-root .pb-1 { padding-bottom: 4px !important; }
.bdp-root .pb-2 { padding-bottom: 8px !important; }
.bdp-root .pb-3 { padding-bottom: 16px !important; }
.bdp-root .pb-4 { padding-bottom: 24px !important; }
.bdp-root .pb-5 { padding-bottom: 40px !important; }
.bdp-root .pl-0 { padding-left: 0 !important; }
.bdp-root .pl-1 { padding-left: 4px !important; }
.bdp-root .pl-2 { padding-left: 8px !important; }
.bdp-root .pl-3 { padding-left: 16px !important; }
.bdp-root .pl-4 { padding-left: 24px !important; }
.bdp-root .pl-5 { padding-left: 40px !important; }

/* Portal template contract --------------------------------------------- */

.bdp-canvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 75% 4%, rgba(20, 111, 166, 0.16), transparent 28%),
    radial-gradient(circle at 18% 64%, rgba(40, 63, 98, 0.14), transparent 30%),
    linear-gradient(180deg, #02070c 0%, #06111a 26%, #03090f 58%, #02060a 100%);
}

.bdp-topbar__menu {
  display: none;
}

.bdp-icon-button > svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bdp-topbar__actions {
  margin-left: auto;
}

.bdp-icon-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border-radius: var(--bdp-radius-control);
  color: var(--bdp-muted) !important;
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
  transition: background var(--bdp-duration-fast) ease, color var(--bdp-duration-fast) ease;
}

.bdp-icon-link:hover,
.bdp-icon-link:focus-visible {
  background: rgba(145, 171, 211, 0.08);
  color: var(--bdp-text-strong) !important;
}

.bdp-count {
  min-width: 20px;
  min-height: 20px;
  display: inline-grid;
  place-items: center;
  padding: 2px 5px;
  border: 1px solid rgba(116, 185, 230, 0.36);
  border-radius: 999px;
  background: rgba(38, 80, 116, 0.36);
  color: var(--bdp-text-strong);
  font-size: 9px;
  font-variant-numeric: tabular-nums;
}

.bdp-account-menu {
  position: relative;
}

.bdp-account-menu__toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 4px 8px 4px 5px;
  border: 1px solid transparent;
  border-radius: 11px;
  background: transparent;
  color: var(--bdp-text-soft);
  font-size: 12px;
  font-weight: 650;
  transition: border-color var(--bdp-duration-fast) ease, background var(--bdp-duration-fast) ease;
}

.bdp-account-menu__toggle:hover,
.bdp-account-menu.is-open .bdp-account-menu__toggle {
  border-color: var(--bdp-line);
  background: rgba(145, 171, 211, 0.07);
}

.bdp-account-menu__toggle > svg {
  width: 15px;
  height: 15px;
  color: var(--bdp-subtle);
  transition: transform var(--bdp-duration-fast) ease;
}

.bdp-account-menu.is-open .bdp-account-menu__toggle > svg {
  transform: rotate(180deg);
}

.bdp-account-menu__label {
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bdp-account-menu__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 1050;
  width: min(280px, calc(100vw - 32px));
  padding: 8px;
  border: 1px solid var(--bdp-line);
  border-radius: 12px;
  background: rgba(4, 10, 17, 0.98);
  box-shadow: var(--bdp-shadow-menu);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity var(--bdp-duration-fast) ease,
    transform var(--bdp-duration-fast) ease,
    visibility var(--bdp-duration-fast) ease;
}

.bdp-account-menu.is-open .bdp-account-menu__panel,
.bdp-account-menu__panel:not([hidden]) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.bdp-account-menu__identity {
  display: grid;
  gap: 3px;
  padding: 10px 11px 12px;
  border-bottom: 1px solid var(--bdp-line-soft);
  margin-bottom: 6px;
}

.bdp-account-menu__identity strong,
.bdp-account-menu__identity span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bdp-account-menu__identity strong {
  color: var(--bdp-text-strong);
  font-size: 13px;
  font-weight: 670;
}

.bdp-account-menu__identity span {
  color: var(--bdp-subtle);
  font-size: 10px;
}

.bdp-account-menu__panel > a {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 8px;
  color: var(--bdp-text-soft);
  font-size: 12px;
  font-weight: 580;
  text-decoration: none;
}

.bdp-account-menu__panel > a:hover,
.bdp-account-menu__panel > a:focus-visible {
  background: rgba(145, 171, 211, 0.1);
  color: var(--bdp-text-strong);
}

.bdp-account-menu__panel > .bdp-account-menu__logout {
  margin-top: 5px;
  border-top: 1px solid var(--bdp-line-soft);
  border-radius: 0 0 8px 8px;
  color: var(--bdp-danger);
}

.bdp-sidebar__inner {
  display: flex;
  flex-direction: column;
}

.bdp-sidebar__intro {
  flex: 0 0 auto;
  display: grid;
  gap: 5px;
  margin: 0 5px 22px;
  padding: 0 5px 18px;
  border-bottom: 1px solid var(--bdp-line-soft);
}

.bdp-sidebar__intro strong {
  max-width: 100%;
  overflow: hidden;
  color: var(--bdp-text-soft);
  font-size: 13px;
  font-weight: 640;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bdp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bdp-accent);
  font-size: 10px;
  font-weight: 770;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.bdp-eyebrow > i {
  width: 16px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 9px currentColor;
}

.bdp-nav {
  display: grid;
  gap: 4px;
}

.bdp-nav__label {
  display: block;
  margin: 18px 10px 5px;
  color: var(--bdp-subtle);
  font-size: 9px;
  font-weight: 790;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.bdp-nav__label:first-child {
  margin-top: 0;
}

.bdp-nav__item {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 11px;
  border: 1px solid transparent;
  border-radius: var(--bdp-radius-control);
  color: var(--bdp-muted) !important;
  font-size: 13px;
  font-weight: 620;
  line-height: 1.3;
  text-decoration: none;
  transition: background var(--bdp-duration-fast) ease, border-color var(--bdp-duration-fast) ease, color var(--bdp-duration-fast) ease;
}

.bdp-nav__item::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: -14px;
  width: 2px;
  border-radius: 0 999px 999px 0;
  background: var(--bdp-accent-strong);
  box-shadow: 0 0 12px rgba(99, 164, 212, 0.5);
  opacity: 0;
}

.bdp-nav__item > svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  color: var(--bdp-subtle);
}

.bdp-nav__item > span {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bdp-nav__item:hover,
.bdp-nav__item:focus-visible {
  background: rgba(145, 171, 211, 0.07);
  color: var(--bdp-text-soft) !important;
}

.bdp-nav__item.is-active,
.bdp-nav__item[aria-current="page"] {
  border-color: rgba(116, 185, 230, 0.18);
  background: rgba(38, 80, 116, 0.22);
  color: var(--bdp-text-strong) !important;
}

.bdp-nav__item.is-active::before,
.bdp-nav__item[aria-current="page"]::before {
  opacity: 1;
}

.bdp-nav__item.is-active > svg,
.bdp-nav__item:hover > svg {
  color: var(--bdp-accent);
}

.bdp-nav__signal {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--bdp-warning);
  box-shadow: 0 0 10px rgba(244, 186, 36, 0.7);
}

.bdp-sidebar__footer {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: auto -14px -22px;
  padding: 15px 19px;
  border-top: 1px solid var(--bdp-line-soft);
  color: var(--bdp-muted);
}

.bdp-sidebar__footer div {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.bdp-sidebar__footer strong {
  color: var(--bdp-text-soft);
  font-size: 10px;
  font-weight: 670;
}

.bdp-sidebar__footer span:not(.bdp-status-dot) {
  color: var(--bdp-subtle);
  font-size: 9px;
}

.bdp-status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--bdp-success);
  box-shadow: 0 0 10px rgba(35, 220, 173, 0.72);
}

.bdp-footer__inner {
  min-height: 72px;
}

.bdp-footer__inner > div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
}

.bdp-footer__inner strong {
  color: var(--bdp-text-soft);
  font-size: 12px;
}

.bdp-footer__inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

/* Landing page. */

.bdp-landing {
  position: relative;
  min-height: min(650px, calc(100vh - 170px));
  min-height: min(650px, calc(100dvh - 170px));
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.7fr);
  gap: clamp(34px, 7vw, 104px);
  align-items: center;
  overflow: hidden;
  padding: clamp(34px, 6vw, 82px);
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-lg);
  background:
    radial-gradient(circle at 75% 20%, rgba(20, 181, 255, 0.14), transparent 32%),
    radial-gradient(circle at 26% 90%, rgba(126, 92, 255, 0.09), transparent 30%),
    linear-gradient(145deg, rgba(5, 15, 23, 0.94), rgba(2, 7, 12, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.bdp-landing__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.38;
  background-image:
    radial-gradient(circle, rgba(194, 223, 255, 0.76) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(23, 216, 255, 0.52) 0 1px, transparent 1.35px),
    radial-gradient(circle, rgba(131, 103, 255, 0.45) 0 1px, transparent 1.35px);
  background-position: 18px 32px, 102px 84px, 34px 146px;
  background-size: 128px 132px, 212px 234px, 286px 278px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 94%);
  mask-image: linear-gradient(180deg, #000, transparent 94%);
}

.bdp-landing__copy,
.bdp-landing__signal {
  position: relative;
  z-index: 1;
}

.bdp-landing__copy h1,
.bdp-landing-title {
  max-width: 13ch;
  margin: 20px 0 0;
  color: var(--bdp-text-strong);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 420;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.bdp-landing__copy h1 span,
.bdp-landing-title span {
  color: var(--bdp-accent);
  text-shadow: 0 0 16px rgba(96, 168, 220, 0.34);
}

.bdp-landing__copy > p {
  max-width: 56ch;
  margin: 23px 0 0;
  color: #a8b3c4;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.8;
}

.bdp-landing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.bdp-landing__actions .bdp-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
}

.bdp-landing__signal {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-card);
  background: rgba(5, 11, 19, 0.76);
  box-shadow: var(--bdp-shadow-float);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.bdp-signal-orbit {
  position: relative;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border: 1px solid rgba(116, 185, 230, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 20px rgba(19, 214, 255, 0.025), 0 0 0 40px rgba(139, 92, 255, 0.018);
}

.bdp-signal-orbit::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(139, 92, 255, 0.3);
  border-radius: 50%;
}

.bdp-signal-orbit__ring {
  position: absolute;
  inset: 2px;
  border-top: 1px solid var(--bdp-cyan);
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
  border-radius: 50%;
  animation: bdp-spin 12s linear infinite;
}

.bdp-signal-orbit > svg {
  width: 55px;
  height: 55px;
  color: #fff;
}

.bdp-signal-list {
  margin: 0;
}

.bdp-signal-list > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--bdp-line-soft);
}

.bdp-signal-list dt {
  color: var(--bdp-subtle);
  font-size: 10px;
  font-weight: 740;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bdp-signal-list dd {
  margin: 0;
  color: var(--bdp-text-soft);
  font-size: 11px;
  font-weight: 610;
  text-align: right;
}

.bdp-signal-list dd .bdp-status-dot {
  margin-right: 5px;
}

.bdp-task-section,
.bdp-updates {
  margin-top: clamp(38px, 5vw, 72px);
}

.bdp-task-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.bdp-task-card {
  --bdp-task-tone: var(--bdp-accent);
  position: relative;
  min-width: 0;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-card);
  background: var(--bdp-surface-soft);
  color: var(--bdp-muted) !important;
  text-decoration: none;
  overflow: hidden;
  transition: border-color var(--bdp-duration) ease, background var(--bdp-duration) ease, transform var(--bdp-duration) var(--bdp-ease);
}

.bdp-task-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 24px;
  width: 44px;
  height: 2px;
  border-radius: 999px;
  background: var(--bdp-task-tone);
  box-shadow: 0 0 12px var(--bdp-task-tone);
}

.bdp-task-card--cyan { --bdp-task-tone: var(--bdp-cyan); }
.bdp-task-card--violet { --bdp-task-tone: var(--bdp-violet); }
.bdp-task-card--green { --bdp-task-tone: var(--bdp-success); }

.bdp-task-card:hover {
  border-color: color-mix(in srgb, var(--bdp-task-tone) 42%, transparent);
  background: var(--bdp-surface-hover);
  transform: translateY(-3px);
}

.bdp-task-card__number {
  color: var(--bdp-task-tone);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.13em;
}

.bdp-task-card > svg {
  width: 36px;
  height: 36px;
  margin: 24px 0 20px;
  fill: none;
  stroke: var(--bdp-task-tone);
  stroke-width: 1.7;
}

.bdp-task-card > strong {
  color: var(--bdp-text-strong);
  font-size: 16px;
  font-weight: 650;
}

.bdp-task-card > p {
  margin: 8px 0 20px;
  color: var(--bdp-muted);
  font-size: 13px;
  line-height: 1.65;
}

.bdp-task-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--bdp-link);
  font-size: 11px;
  font-weight: 710;
}

.bdp-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.bdp-section-heading h2,
.bdp-section-heading h3 {
  margin: 7px 0 0;
  font-size: clamp(23px, 2.4vw, 32px);
  font-weight: 440;
  letter-spacing: -0.03em;
}

.bdp-section-heading > p {
  max-width: 42ch;
  margin: 0;
  color: var(--bdp-muted);
  font-size: 13px;
  line-height: 1.65;
  text-align: right;
}

.bdp-section-heading--compact h2,
.bdp-section-heading--compact h3 {
  font-size: 21px;
}

.bdp-update-list {
  display: grid;
  margin-top: 20px;
  border-top: 1px solid var(--bdp-line-soft);
}

.bdp-update {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 34px;
  gap: 22px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--bdp-line-soft);
}

.bdp-update time {
  color: var(--bdp-subtle);
  font-size: 10px;
  font-weight: 690;
  letter-spacing: 0.04em;
}

.bdp-update h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 630;
}

.bdp-update h3 a {
  color: var(--bdp-text-soft);
  text-decoration: none;
}

.bdp-update p {
  margin: 7px 0 0;
  color: var(--bdp-muted);
  font-size: 12px;
  line-height: 1.65;
}

.bdp-update__arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--bdp-line);
  border-radius: 50%;
  color: var(--bdp-link);
  text-decoration: none;
}

/* Auth and signup contract. */

.bdp-auth-layout {
  width: min(100%, 1040px);
  min-height: min(660px, calc(100vh - 170px));
  min-height: min(660px, calc(100dvh - 170px));
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(420px, 1.14fr);
  margin: clamp(16px, 3vw, 42px) auto;
  overflow: hidden;
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-lg);
  background: rgba(3, 9, 15, 0.9);
  box-shadow: var(--bdp-shadow-float);
}

.bdp-auth-story {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 52px);
  border-right: 1px solid var(--bdp-line-soft);
  background:
    radial-gradient(circle at 72% 18%, rgba(19, 214, 255, 0.16), transparent 30%),
    radial-gradient(circle at 20% 82%, rgba(139, 92, 255, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(7, 21, 34, 0.94), rgba(2, 7, 12, 0.96));
}

.bdp-auth-story h1 {
  max-width: 11ch;
  margin: 22px 0 0;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 420;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.bdp-auth-story h1 span {
  color: var(--bdp-accent);
}

.bdp-auth-story > p {
  max-width: 38ch;
  margin: 18px 0 0;
  color: var(--bdp-muted);
  font-size: 14px;
  line-height: 1.75;
}

.bdp-auth-story__detail {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
  padding-top: 38px;
}

.bdp-auth-story__detail > svg {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  padding: 8px;
  border: 1px solid var(--bdp-line);
  border-radius: 9px;
  fill: none;
  stroke: var(--bdp-accent);
}

.bdp-auth-story__detail div {
  display: grid;
  gap: 2px;
}

.bdp-auth-story__detail strong {
  color: var(--bdp-text-soft);
  font-size: 11px;
}

.bdp-auth-story__detail span {
  color: var(--bdp-subtle);
  font-size: 10px;
}

.bdp-auth-panel__brand {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--bdp-text-strong);
  text-decoration: none;
}

.bdp-auth-panel__heading {
  margin-bottom: 26px;
}

.bdp-auth-panel__heading h2 {
  margin: 8px 0 0;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 440;
  letter-spacing: -0.03em;
}

.bdp-auth-panel__heading p {
  margin: 10px 0 0;
  color: var(--bdp-muted);
  font-size: 13px;
  line-height: 1.65;
}

.bdp-login-form,
.bdp-login-form form {
  width: 100%;
}

.bdp-login-form__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 18px;
  margin-top: 18px;
}

.bdp-captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.bdp-captcha-refresh {
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-control);
  background: #fff;
  overflow: hidden;
}

.bdp-captcha {
  display: block;
}

.bdp-form-actions--end,
.bdp-form__actions {
  justify-content: flex-end;
}

.bdp-page-header__meta {
  display: grid;
  gap: 5px;
  justify-items: end;
  color: var(--bdp-subtle);
  font-size: 11px;
}

.bdp-signup-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.56fr) minmax(0, 1.44fr);
  gap: 20px;
  align-items: start;
}

.bdp-signup-layout__aside {
  display: grid;
  gap: 1px;
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-card);
  background: var(--bdp-surface-soft);
  overflow: hidden;
}

.bdp-signup-layout__aside > div {
  padding: 20px;
  border-top: 1px solid var(--bdp-line-soft);
}

.bdp-signup-layout__aside > div:first-child {
  border-top: 0;
}

.bdp-signup-layout__aside span {
  color: var(--bdp-accent);
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0.13em;
}

.bdp-signup-layout__aside strong {
  display: block;
  margin-top: 7px;
  color: var(--bdp-text-soft);
  font-size: 13px;
}

.bdp-signup-layout__aside p {
  margin: 5px 0 0;
  color: var(--bdp-muted);
  font-size: 11px;
  line-height: 1.55;
}

.bdp-signup-layout__form {
  padding: clamp(22px, 3vw, 38px);
}

/* Task pages, announcements, messages, and prose. */

.bdp-task-page {
  width: 100%;
}

.bdp-task-page--narrow {
  max-width: 880px;
  margin-inline: auto;
}

.bdp-task-title {
  margin: 0;
  font-size: clamp(30px, 3.3vw, 46px);
  font-weight: 420;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.bdp-panel {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-card);
  background: var(--bdp-surface);
  color: var(--bdp-muted);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.bdp-panel__header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 18px;
  margin: -22px -22px 20px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--bdp-line-soft);
  color: var(--bdp-subtle);
  font-size: 11px;
}

.bdp-panel__header strong {
  color: var(--bdp-text-soft);
  font-size: 12px;
}

.bdp-form__field {
  min-width: 0;
  margin-bottom: 18px;
}

.bdp-form__field > label,
.bdp-field > label,
.bdp-form .bdp-field > label {
  display: block;
  margin-bottom: 7px;
  color: var(--bdp-text-soft);
  font-size: 12px;
  font-weight: 640;
}

.bdp-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="reset"]),
.bdp-form select,
.bdp-form textarea {
  width: 100%;
  min-height: 44px;
  display: block;
  padding: 10px 13px;
  border: 1px solid rgba(145, 171, 211, 0.24);
  border-radius: var(--bdp-radius-control);
  background-color: var(--bdp-control);
  color: var(--bdp-text);
  font-size: 14px;
  line-height: 1.5;
  box-shadow: none;
  transition: border-color var(--bdp-duration-fast) ease, background var(--bdp-duration-fast) ease, box-shadow var(--bdp-duration-fast) ease;
}

.bdp-form textarea {
  min-height: 128px;
  resize: vertical;
}

.bdp-form input:focus,
.bdp-form select:focus,
.bdp-form textarea:focus {
  outline: 0;
  border-color: rgba(99, 164, 212, 0.82);
  background-color: rgba(9, 17, 27, 0.98);
  box-shadow: var(--bdp-focus);
}

.bdp-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.bdp-message-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  color: var(--bdp-subtle);
  font-size: 10px;
  font-weight: 650;
}

.bdp-message-body {
  margin-top: 14px;
  color: var(--bdp-muted);
  font-size: 13px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.bdp-comment-avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(116, 185, 230, 0.34);
  border-radius: 10px;
  background: rgba(38, 80, 116, 0.28);
  color: var(--bdp-text-strong);
  font-size: 11px;
  font-weight: 760;
}

.bdp-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.bdp-tag {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  border: 1px solid color-mix(in srgb, var(--bdp-tag-color, var(--bdp-accent)) 48%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bdp-tag-color, var(--bdp-accent)) 11%, transparent);
  color: color-mix(in srgb, var(--bdp-tag-color, var(--bdp-accent)) 72%, white);
  font-size: 9px;
  font-weight: 740;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.bdp-prose {
  color: var(--bdp-muted);
  font-size: 14px;
  line-height: 1.8;
}

.bdp-prose > :first-child { margin-top: 0; }
.bdp-prose > :last-child { margin-bottom: 0; }

.bdp-prose h2,
.bdp-prose h3,
.bdp-prose h4 {
  margin: 1.6em 0 0.6em;
  color: var(--bdp-text-strong);
  font-weight: 570;
  letter-spacing: -0.02em;
}

.bdp-prose h2 { font-size: 23px; }
.bdp-prose h3 { font-size: 18px; }
.bdp-prose h4 { font-size: 15px; }

.bdp-prose a { color: var(--bdp-link); }

.bdp-prose blockquote {
  margin: 22px 0;
  padding: 4px 0 4px 18px;
  border-left: 2px solid var(--bdp-accent-strong);
  color: var(--bdp-text-soft);
}

.bdp-prose pre,
.bdp-prose code {
  border: 1px solid var(--bdp-line-soft);
  border-radius: 6px;
  background: rgba(2, 7, 12, 0.52);
  color: #cfe7f7;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.bdp-prose code { padding: 2px 5px; }
.bdp-prose pre { overflow-x: auto; padding: 14px; }

.bdp-feed {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.bdp-feed-card {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-card);
  background: var(--bdp-surface-soft);
}

.bdp-feed-card__meta {
  display: grid;
  gap: 9px;
  color: var(--bdp-subtle);
  font-size: 10px;
}

.bdp-feed-card__body h2 {
  margin: 0;
  font-size: 17px;
  font-weight: 620;
}

.bdp-feed-card__body h2 a {
  color: var(--bdp-text-soft);
  text-decoration: none;
}

.bdp-feed-card__body p {
  margin: 7px 0 0;
  color: var(--bdp-muted);
  font-size: 12px;
  line-height: 1.65;
}

.bdp-feed-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--bdp-link);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.bdp-empty-state {
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: 30px;
  border: 1px dashed rgba(145, 171, 211, 0.24);
  border-radius: var(--bdp-radius-card);
  background: rgba(5, 11, 19, 0.42);
  color: var(--bdp-muted);
  text-align: center;
}

/* Prevent unstyled icon-font tokens from becoming visible words. The new
 * template uses SVG sprites; these placeholders remain only in module output.
 */

.bdp-root .material-icons,
.bdp-root .fa,
.bdp-root .fas,
.bdp-root .far,
.bdp-root .fab,
.bdp-root .glyphicon,
.bdp-root i[class^="icon-"],
.bdp-root i[class*=" icon-"],
.bdp-root i[class^="iconoir-"],
.bdp-root i[class*=" iconoir-"] {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 1.1rem;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  color: currentColor;
  font-family: inherit !important;
  font-size: 0 !important;
  font-style: normal;
  line-height: 0 !important;
  text-indent: -9999px;
  vertical-align: middle;
}

.bdp-root .material-icons::before,
.bdp-root .fa::before,
.bdp-root .fas::before,
.bdp-root .far::before,
.bdp-root .fab::before,
.bdp-root .glyphicon::before,
.bdp-root i[class^="icon-"]::before,
.bdp-root i[class*=" icon-"]::before,
.bdp-root i[class^="iconoir-"]::before,
.bdp-root i[class*=" iconoir-"]::before {
  content: "" !important;
  width: 0.5rem;
  height: 0.5rem;
  display: block;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  text-indent: 0;
  transform: rotate(45deg);
}

.bdp-root .sort-icon.material-icons::before,
.bdp-root .sortorder .material-icons::before {
  width: 0.42rem;
  height: 0.42rem;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(135deg) translate(-1px, -1px);
}

.bdp-root .loader-icon.material-icons::before {
  width: 0.75rem;
  height: 0.75rem;
  border: 1.5px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: bdp-spin 760ms linear infinite;
  transform: none;
}

.bdp-root .size-xs,
.bdp-root .size-ss { width: 0.8rem; height: 0.8rem; flex-basis: 0.8rem; }
.bdp-root .size-sm { width: 1rem; height: 1rem; flex-basis: 1rem; }
.bdp-root .size-md { width: 1.25rem; height: 1.25rem; flex-basis: 1.25rem; }
.bdp-root .size-lg { width: 1.5rem; height: 1.5rem; flex-basis: 1.5rem; }

/* Additional retained module contracts. */

.bdp-root .bordered-section,
.bdp-root .summary-section,
.bdp-root .filters-box,
.bdp-root .content-view-details,
.bdp-root .service-details {
  min-width: 0;
  margin-bottom: 18px;
  padding: 20px;
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-card);
  background: var(--bdp-surface-soft);
}

.bdp-root .service-details-line {
  display: grid;
  grid-template-columns: minmax(140px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bdp-line-soft);
  color: var(--bdp-muted);
  font-size: 12px;
}

.bdp-root .service-details-line:last-child { border-bottom: 0; }

.bdp-root .section-account-header,
.bdp-root .section-account {
  min-width: 0;
}

.bdp-root .message-box {
  margin-bottom: 14px;
  padding: 16px;
  border: 1px solid var(--bdp-line);
  border-radius: 11px;
  background: var(--bdp-surface-soft);
  color: var(--bdp-muted);
}

.bdp-root .message-box-file,
.bdp-root .ticket_attachment {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 9px;
  padding: 6px 9px;
  border: 1px solid var(--bdp-line);
  border-radius: 7px;
  color: var(--bdp-link);
  font-size: 11px;
}

.bdp-root .accordion > .card,
.bdp-root .accordion > .panel {
  margin-bottom: 8px;
}

.bdp-root .cursor-pointer { cursor: pointer !important; }
.bdp-root .break-word { overflow-wrap: anywhere !important; word-break: break-word !important; }
.bdp-root .overflow-elipsis { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bdp-root .hidden { display: none !important; }
.bdp-root .inline-block { display: inline-block !important; }
.bdp-root .pull-right { float: right !important; }
.bdp-root .clearfix::after { content: ""; display: table; clear: both; }
.bdp-root .list-unstyled { margin: 0; padding: 0; list-style: none; }
.bdp-root .rounded-0 { border-radius: 0 !important; }
.bdp-root .border { border: 1px solid var(--bdp-line) !important; }
.bdp-root .border-bottom { border-bottom: 1px solid var(--bdp-line) !important; }
.bdp-root .border-primary { border-color: rgba(99, 164, 212, 0.64) !important; }
.bdp-root .mw-100 { max-width: 100% !important; }
.bdp-root .mh-100 { max-height: 100% !important; }
.bdp-root .fs11 { font-size: 11px !important; }

.bdp-button--secondary {
  border-color: var(--bdp-line-strong);
  background: rgba(2, 8, 14, 0.5);
  color: var(--bdp-text-soft) !important;
}

.bdp-button--compact {
  min-height: 36px;
  padding: 7px 12px;
  border-radius: var(--bdp-radius-sm);
  font-size: 11px;
}

.bdp-page-heading {
  margin-bottom: clamp(24px, 3vw, 38px);
}

.bdp-page-heading--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.bdp-page-header > div:first-child > h1,
.bdp-page-heading > h1,
.bdp-page-heading > div > h1 {
  margin: 7px 0 0;
  color: var(--bdp-text-strong);
  font-size: clamp(30px, 3.3vw, 46px);
  font-weight: 420;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.bdp-page-header > div:first-child > p,
.bdp-page-heading > p,
.bdp-page-heading > div > p {
  max-width: 66ch;
  margin: 11px 0 0;
  color: var(--bdp-muted);
  font-size: 13px;
  line-height: 1.7;
}

.bdp-root .mx-0 { margin-right: 0 !important; margin-left: 0 !important; }
.bdp-root .mx-1 { margin-right: 4px !important; margin-left: 4px !important; }
.bdp-root .mx-2 { margin-right: 8px !important; margin-left: 8px !important; }
.bdp-root .mx-3 { margin-right: 16px !important; margin-left: 16px !important; }
.bdp-root .mx-4 { margin-right: 24px !important; margin-left: 24px !important; }
.bdp-root .mx-5 { margin-right: 40px !important; margin-left: 40px !important; }
.bdp-root .my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.bdp-root .my-1 { margin-top: 4px !important; margin-bottom: 4px !important; }
.bdp-root .my-2 { margin-top: 8px !important; margin-bottom: 8px !important; }
.bdp-root .my-3 { margin-top: 16px !important; margin-bottom: 16px !important; }
.bdp-root .my-4 { margin-top: 24px !important; margin-bottom: 24px !important; }
.bdp-root .my-5 { margin-top: 40px !important; margin-bottom: 40px !important; }
.bdp-root .px-0 { padding-right: 0 !important; padding-left: 0 !important; }
.bdp-root .px-1 { padding-right: 4px !important; padding-left: 4px !important; }
.bdp-root .px-2 { padding-right: 8px !important; padding-left: 8px !important; }
.bdp-root .px-3 { padding-right: 16px !important; padding-left: 16px !important; }
.bdp-root .px-4 { padding-right: 24px !important; padding-left: 24px !important; }
.bdp-root .px-5 { padding-right: 40px !important; padding-left: 40px !important; }
.bdp-root .py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.bdp-root .py-1 { padding-top: 4px !important; padding-bottom: 4px !important; }
.bdp-root .py-2 { padding-top: 8px !important; padding-bottom: 8px !important; }
.bdp-root .py-3 { padding-top: 16px !important; padding-bottom: 16px !important; }
.bdp-root .py-4 { padding-top: 24px !important; padding-bottom: 24px !important; }
.bdp-root .py-5 { padding-top: 40px !important; padding-bottom: 40px !important; }

/* Responsive grid and layout ------------------------------------------- */

@media (min-width: 576px) {
  .bdp-root .col-sm { flex: 1 0 0%; max-width: 100%; }
  .bdp-root .col-sm-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
  .bdp-root .col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .bdp-root .col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .bdp-root .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
  .bdp-root .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .bdp-root .col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .bdp-root .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
  .bdp-root .col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .bdp-root .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .bdp-root .col-sm-9 { flex: 0 0 75%; max-width: 75%; }
  .bdp-root .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .bdp-root .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .bdp-root .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
  .bdp-root .d-sm-none { display: none !important; }
  .bdp-root .d-sm-block { display: block !important; }
  .bdp-root .d-sm-flex { display: flex !important; }
}

@media (min-width: 768px) {
  .bdp-root .col-md { flex: 1 0 0%; max-width: 100%; }
  .bdp-root .col-md-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
  .bdp-root .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .bdp-root .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .bdp-root .col-md-3 { flex: 0 0 25%; max-width: 25%; }
  .bdp-root .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .bdp-root .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .bdp-root .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .bdp-root .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .bdp-root .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .bdp-root .col-md-9 { flex: 0 0 75%; max-width: 75%; }
  .bdp-root .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .bdp-root .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .bdp-root .col-md-12 { flex: 0 0 100%; max-width: 100%; }
  .bdp-root .offset-md-1 { margin-left: 8.333333%; }
  .bdp-root .offset-md-2 { margin-left: 16.666667%; }
  .bdp-root .offset-md-3 { margin-left: 25%; }
  .bdp-root .offset-md-4 { margin-left: 33.333333%; }
  .bdp-root .offset-md-5 { margin-left: 41.666667%; }
  .bdp-root .offset-md-6 { margin-left: 50%; }
  .bdp-root .d-md-none { display: none !important; }
  .bdp-root .d-md-block { display: block !important; }
  .bdp-root .d-md-flex { display: flex !important; }
  .bdp-root .flex-md-row { flex-direction: row !important; }
  .bdp-root .flex-md-column { flex-direction: column !important; }
  .bdp-root .align-items-md-start { align-items: flex-start !important; }
  .bdp-root .align-items-md-center { align-items: center !important; }
  .bdp-root .align-items-md-end { align-items: flex-end !important; }
  .bdp-root .text-md-left { text-align: left !important; }
  .bdp-root .text-md-center { text-align: center !important; }
  .bdp-root .text-md-right { text-align: right !important; }
  .bdp-root .w-md-25 { width: 25% !important; }
  .bdp-root .w-md-50 { width: 50% !important; }
  .bdp-root .btn-md-w-auto { width: auto !important; }
  .bdp-root .mt-md-0 { margin-top: 0 !important; }
  .bdp-root .mb-md-0 { margin-bottom: 0 !important; }
  .bdp-root .mr-md-5 { margin-right: 40px !important; }
  .bdp-root .my-md-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
}

@media (min-width: 992px) {
  .bdp-root .col-lg { flex: 1 0 0%; max-width: 100%; }
  .bdp-root .col-lg-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
  .bdp-root .col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .bdp-root .col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .bdp-root .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .bdp-root .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .bdp-root .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .bdp-root .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .bdp-root .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .bdp-root .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .bdp-root .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
  .bdp-root .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .bdp-root .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .bdp-root .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
  .bdp-root .d-lg-none { display: none !important; }
  .bdp-root .d-lg-block { display: block !important; }
  .bdp-root .d-lg-flex { display: flex !important; }
  .bdp-root .text-lg-left { text-align: left !important; }
  .bdp-root .text-lg-center { text-align: center !important; }
  .bdp-root .text-lg-right { text-align: right !important; }
}

@media (min-width: 1200px) {
  .bdp-root .col-xl { flex: 1 0 0%; max-width: 100%; }
  .bdp-root .col-xl-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
  .bdp-root .col-xl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .bdp-root .col-xl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .bdp-root .col-xl-3 { flex: 0 0 25%; max-width: 25%; }
  .bdp-root .col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .bdp-root .col-xl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .bdp-root .col-xl-6 { flex: 0 0 50%; max-width: 50%; }
  .bdp-root .col-xl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .bdp-root .col-xl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .bdp-root .col-xl-9 { flex: 0 0 75%; max-width: 75%; }
  .bdp-root .col-xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .bdp-root .col-xl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .bdp-root .col-xl-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (max-width: 1180px) {
  .bdp-card-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bdp-span-3,
  .bdp-span-4 {
    grid-column: span 6;
  }

  .bdp-span-5,
  .bdp-span-7,
  .bdp-span-8,
  .bdp-span-9 {
    grid-column: span 12;
  }
}

@media (max-width: 960px) {
  :root {
    --bdp-topbar-height: 66px;
  }

  .bdp-shell {
    display: block;
    min-height: calc(100vh - var(--bdp-topbar-height));
    min-height: calc(100dvh - var(--bdp-topbar-height));
  }

  .bdp-topbar {
    position: sticky;
  }

  .bdp-topbar__menu,
  .bdp-drawer-toggle {
    display: inline-grid;
  }

  .bdp-topbar__inner,
  .bdp-topbar-inner {
    padding-inline: 16px;
  }

  .bdp-brand {
    width: auto;
    min-width: 0;
  }

  .bdp-brand__context,
  .bdp-brand-context {
    display: none;
  }

  .bdp-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 720;
    width: min(var(--bdp-sidebar-width), calc(100vw - 48px));
    height: 100vh;
    height: 100dvh;
    border-right: 1px solid var(--bdp-line-strong);
    background: rgba(2, 7, 12, 0.98);
    box-shadow: var(--bdp-shadow-float);
    visibility: hidden;
    transform: translateX(-105%);
    transition: transform var(--bdp-duration) var(--bdp-ease), visibility var(--bdp-duration) ease;
  }

  .bdp-sidebar__inner,
  .bdp-sidebar-scroll {
    padding-top: 72px;
  }

  .bdp-sidebar-close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-grid;
  }

  .bdp-drawer-backdrop {
    display: block;
  }

  body.bdp-drawer-open,
  .bdp-root.bdp-drawer-open {
    overflow: hidden;
  }

  body.bdp-drawer-open .bdp-sidebar,
  .bdp-root.bdp-drawer-open .bdp-sidebar {
    visibility: visible;
    transform: translateX(0);
  }

  body.bdp-drawer-open .bdp-drawer-backdrop,
  .bdp-root.bdp-drawer-open .bdp-drawer-backdrop {
    opacity: 1;
  }

  .bdp-main {
    padding: 30px var(--bdp-gutter) 62px;
  }

  .bdp-footer {
    margin-left: 0;
  }

  .bdp-hero,
  .bdp-landing {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .bdp-hero-panel,
  .bdp-landing__signal {
    max-width: 620px;
  }

  .bdp-auth-shell,
  .bdp-auth-layout {
    grid-template-columns: minmax(280px, 0.75fr) minmax(400px, 1.25fr);
  }

  .bdp-card-grid--3,
  .bdp-task-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .bdp-stat:nth-child(3) {
    border-left: 0;
  }

  .bdp-stat:nth-child(n + 3) {
    border-top: 1px solid var(--bdp-line-soft);
  }

  .bdp-signup-layout {
    grid-template-columns: 1fr;
  }

  .bdp-signup-layout__aside {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bdp-signup-layout__aside > div {
    border-top: 0;
    border-left: 1px solid var(--bdp-line-soft);
  }

  .bdp-signup-layout__aside > div:first-child {
    border-left: 0;
  }
}

@media (max-width: 720px) {
  .bdp-topbar__support,
  .bdp-topbar-link {
    display: none;
  }

  .bdp-main {
    padding-top: 24px;
  }

  .bdp-page-header,
  .bdp-page-heading--split,
  .bdp-section-header,
  .bdp-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .bdp-page-actions,
  .bdp-page-header__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .bdp-page-header__meta {
    justify-items: start;
  }

  .bdp-section-heading > p {
    text-align: left;
  }

  .bdp-grid {
    grid-template-columns: 1fr;
  }

  .bdp-span-3,
  .bdp-span-4,
  .bdp-span-5,
  .bdp-span-6,
  .bdp-span-7,
  .bdp-span-8,
  .bdp-span-9,
  .bdp-span-12 {
    grid-column: 1;
  }

  .bdp-card-grid,
  .bdp-card-grid--3,
  .bdp-card-grid--4,
  .bdp-task-grid,
  .bdp-action-grid {
    grid-template-columns: 1fr;
  }

  .bdp-task-card {
    min-height: 220px;
  }

  .bdp-form-grid,
  .bdp-form-grid--3 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .bdp-auth {
    padding: 18px;
  }

  .bdp-auth-shell,
  .bdp-auth-layout {
    grid-template-columns: 1fr;
  }

  .bdp-auth-aside,
  .bdp-auth-story {
    min-height: 280px;
    padding: 30px;
    border-right: 0;
    border-bottom: 1px solid var(--bdp-line-soft);
  }

  .bdp-auth-message h1,
  .bdp-auth-story h1 {
    max-width: 15ch;
    font-size: 36px;
  }

  .bdp-auth-note,
  .bdp-auth-story__detail {
    display: none;
  }

  .bdp-auth-panel {
    padding: 30px;
  }

  .bdp-landing {
    padding: 30px;
  }

  .bdp-landing__copy h1,
  .bdp-landing-title {
    font-size: clamp(38px, 10vw, 54px);
  }

  .bdp-detail-row,
  .bdp-root .service-details-line {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .bdp-update,
  .bdp-feed-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .bdp-update__arrow {
    display: none;
  }

  .bdp-feed-card__link {
    margin-top: 4px;
  }

  .bdp-signup-layout__aside {
    grid-template-columns: 1fr;
  }

  .bdp-signup-layout__aside > div {
    border-top: 1px solid var(--bdp-line-soft);
    border-left: 0;
  }

  .bdp-signup-layout__aside > div:first-child {
    border-top: 0;
  }

  .bdp-footer-inner,
  .bdp-footer__inner {
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    padding-block: 22px;
  }

  .bdp-root .form-inline {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  :root {
    --bdp-gutter: 18px;
  }

  .bdp-brand__word,
  .bdp-brand-word {
    font-size: 15px;
  }

  .bdp-account-menu__label,
  .bdp-account-copy,
  .bdp-topbar__actions > .bdp-icon-link:first-child {
    display: none;
  }

  .bdp-account-menu__toggle {
    padding-right: 4px;
  }

  .bdp-stat-grid {
    grid-template-columns: 1fr;
  }

  .bdp-stat,
  .bdp-stat:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--bdp-line-soft);
  }

  .bdp-stat:first-child {
    border-top: 0;
  }

  .bdp-page-header h1,
  .bdp-page-heading h1 {
    font-size: 32px;
  }

  .bdp-card-header,
  .bdp-card-body,
  .bdp-card-footer,
  .bdp-panel {
    padding: 18px;
  }

  .bdp-panel__header {
    margin: -18px -18px 18px;
    padding: 14px 18px;
  }

  .bdp-auth {
    padding: 0;
  }

  .bdp-auth-shell,
  .bdp-auth-layout {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .bdp-auth-aside,
  .bdp-auth-story {
    min-height: 220px;
    padding: 24px 20px;
  }

  .bdp-auth-message h1,
  .bdp-auth-story h1 {
    font-size: 31px;
  }

  .bdp-auth-panel {
    padding: 28px 20px;
  }

  .bdp-landing {
    margin-inline: -6px;
    padding: 26px 20px;
    border-radius: 16px;
  }

  .bdp-landing__signal {
    padding: 22px 18px;
  }

  .bdp-signal-orbit {
    width: 118px;
    height: 118px;
  }

  .bdp-form-actions,
  .bdp-form__actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .bdp-form-actions .bdp-button,
  .bdp-form__actions .bdp-button {
    width: 100%;
  }

  .bdp-modal,
  .bdp-root .modal {
    padding: 10px;
  }

  .bdp-modal-dialog,
  .bdp-root .modal-dialog {
    max-height: calc(100vh - 20px);
    max-height: calc(100dvh - 20px);
    margin: 10px auto;
  }

  .bdp-captcha-row {
    align-items: stretch;
    flex-direction: column;
  }
}

/* RTL ------------------------------------------------------------------- */

[dir="rtl"] .bdp-topbar__actions,
[dir="rtl"] .bdp-topbar-actions {
  margin-right: auto;
  margin-left: 0;
}

[dir="rtl"] .bdp-brand__context,
[dir="rtl"] .bdp-brand-context {
  margin-right: 3px;
  margin-left: 0;
  padding-right: 13px;
  padding-left: 0;
  border-right: 1px solid var(--bdp-line-strong);
  border-left: 0;
}

[dir="rtl"] .bdp-account-menu__panel,
[dir="rtl"] .bdp-account-menu,
[dir="rtl"] .bdp-dropdown-menu {
  right: auto;
  left: 0;
}

[dir="rtl"] .bdp-sidebar {
  border-right: 0;
  border-left: 1px solid var(--bdp-line-soft);
}

[dir="rtl"] .bdp-nav__item::before,
[dir="rtl"] .bdp-nav-link::before {
  right: -14px;
  left: auto;
  border-radius: 999px 0 0 999px;
}

[dir="rtl"] .bdp-footer {
  margin-right: var(--bdp-sidebar-width);
  margin-left: 0;
}

[dir="rtl"] .bdp-select,
[dir="rtl"] .bdp-root select.form-control,
[dir="rtl"] .bdp-root .custom-select {
  padding-right: 13px;
  padding-left: 40px;
  background-position: left 12px center;
}

@media (max-width: 960px) {
  [dir="rtl"] .bdp-sidebar {
    right: 0;
    left: auto;
    transform: translateX(105%);
  }

  [dir="rtl"] body.bdp-drawer-open .bdp-sidebar,
  [dir="rtl"] .bdp-root.bdp-drawer-open .bdp-sidebar {
    transform: translateX(0);
  }

  [dir="rtl"] .bdp-footer {
    margin-right: 0;
  }
}

/* Accessibility preferences -------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .bdp-signal-orbit__ring,
  .bdp-spinner,
  .bdp-root .loader-icon.material-icons::before {
    animation: none !important;
  }
}

@media (forced-colors: active) {
  .bdp-root *,
  .bdp-root *::before,
  .bdp-root *::after {
    box-shadow: none !important;
  }

  .bdp-button,
  .bdp-root .btn,
  .bdp-card,
  .bdp-panel,
  .bdp-root .card,
  .bdp-root .form-control {
    border-color: ButtonText;
  }
}

/* Print transactional content without portal chrome. */

@media print {
  :root {
    color-scheme: light;
  }

  body.bdp-body,
  .bdp-root {
    background: #fff !important;
    color: #111 !important;
  }

  .bdp-root::before,
  .bdp-root::after,
  .bdp-canvas,
  .bdp-topbar,
  .bdp-sidebar,
  .bdp-drawer-backdrop,
  .bdp-footer,
  .bdp-page-actions,
  .bdp-form-actions,
  .bdp-root .btn,
  .bdp-button {
    display: none !important;
  }

  .bdp-shell,
  .bdp-main {
    display: block !important;
    min-height: 0 !important;
    padding: 0 !important;
  }

  .bdp-content {
    width: 100% !important;
    max-width: none !important;
  }

  .bdp-card,
  .bdp-panel,
  .bdp-root .card,
  .bdp-root .table-responsive,
  .bdp-table-scroll {
    break-inside: avoid;
    border-color: #bbb !important;
    background: #fff !important;
    color: #111 !important;
    box-shadow: none !important;
  }

  .bdp-root .table,
  .bdp-table,
  .bdp-root .table th,
  .bdp-root .table td,
  .bdp-table th,
  .bdp-table td {
    min-width: 0 !important;
    border-color: #ccc !important;
    background: #fff !important;
    color: #111 !important;
  }

  .bdp-root a {
    color: #111 !important;
    text-decoration: none !important;
  }
}

/* Standalone account, maintenance, and product-catalog surfaces. */

.bdp-standalone {
  width: min(calc(100% - 36px), 900px);
  min-height: calc(100vh - var(--bdp-topbar-height));
  min-height: calc(100dvh - var(--bdp-topbar-height));
  display: grid;
  place-items: center;
  margin-inline: auto;
  padding: clamp(30px, 6vw, 72px) 0;
}

.bdp-standalone__panel,
.bdp-switcher {
  width: min(100%, 680px);
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-lg);
  background:
    radial-gradient(circle at 88% 6%, rgba(99, 164, 212, 0.13), transparent 32%),
    var(--bdp-surface);
  box-shadow: var(--bdp-shadow-float);
}

.bdp-standalone__mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--bdp-line);
  border-radius: 16px;
  background: rgba(2, 7, 12, 0.52);
  color: #fff;
}

.bdp-standalone__mark svg {
  width: 34px;
  height: 34px;
}

.bdp-switcher__heading {
  margin-bottom: 28px;
  text-align: center;
}

.bdp-switcher__heading .bdp-brand,
.bdp-switcher__heading > a:first-child {
  width: max-content;
  min-width: 0;
  margin: 0 auto 24px;
}

.bdp-switcher__heading h1 {
  margin: 8px 0 0;
  font-size: clamp(27px, 4vw, 38px);
  font-weight: 430;
  letter-spacing: -0.035em;
  line-height: 1.14;
}

.bdp-switcher__heading p {
  margin: 10px 0 0;
  color: var(--bdp-muted);
  font-size: 13px;
  line-height: 1.65;
}

.bdp-switcher__invite {
  padding: 22px;
}

.bdp-switcher__invite p {
  margin: 0;
  color: var(--bdp-muted);
  font-size: 13px;
  line-height: 1.7;
}

.bdp-switcher__search {
  margin-bottom: 14px;
}

.bdp-switcher__search label {
  display: block;
  margin-bottom: 7px;
  color: var(--bdp-text-soft);
  font-size: 11px;
  font-weight: 650;
}

.bdp-switcher__list {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.bdp-switcher__account {
  min-width: 0;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--bdp-line);
  border-radius: 11px;
  background: rgba(5, 11, 19, 0.58);
  color: var(--bdp-muted) !important;
  text-decoration: none;
  transition: border-color var(--bdp-duration-fast) ease, background var(--bdp-duration-fast) ease, transform var(--bdp-duration-fast) ease;
}

.bdp-switcher__account:hover,
.bdp-switcher__account:focus-visible {
  border-color: rgba(116, 185, 230, 0.4);
  background: var(--bdp-surface-hover);
  transform: translateY(-1px);
}

.bdp-switcher__account > span:nth-child(2) {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.bdp-switcher__account strong {
  overflow: hidden;
  color: var(--bdp-text-soft);
  font-size: 13px;
  font-weight: 640;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bdp-switcher__account small {
  color: var(--bdp-subtle);
  font-size: 10px;
}

.bdp-switcher__account > b {
  color: var(--bdp-link);
  font-size: 14px;
}

.bdp-switcher .bdp-empty {
  min-height: 120px;
}

.bdp-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bdp-product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-card);
  background: var(--bdp-surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: border-color var(--bdp-duration) ease, background var(--bdp-duration) ease, transform var(--bdp-duration) var(--bdp-ease);
}

.bdp-product-card:hover {
  border-color: rgba(116, 185, 230, 0.36);
  background: var(--bdp-surface-hover);
  transform: translateY(-2px);
}

.bdp-product-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 22px 22px 0;
  border: 1px solid rgba(19, 214, 255, 0.3);
  border-radius: 12px;
  background: rgba(2, 7, 12, 0.54);
  color: var(--bdp-cyan);
}

.bdp-product-card__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.bdp-product-card__body {
  flex: 1 1 auto;
  padding: 20px 22px 24px;
}

.bdp-product-card__title {
  display: inline-block;
  color: var(--bdp-text-strong) !important;
  font-size: 17px;
  font-weight: 640;
  letter-spacing: -0.015em;
  text-decoration: none;
}

.bdp-product-card__body p {
  margin: 9px 0 0;
  color: var(--bdp-muted);
  font-size: 12px;
  line-height: 1.7;
}

.bdp-product-card__footer {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 22px;
  border-top: 1px solid var(--bdp-line-soft);
  background: rgba(2, 7, 12, 0.18);
}

.bdp-product-card__price {
  color: var(--bdp-subtle);
  font-size: 10px;
}

.bdp-product-card__price strong {
  display: block;
  margin-top: 2px;
  color: var(--bdp-text-soft);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  font-weight: 620;
}

@media (max-width: 1080px) {
  .bdp-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .bdp-product-grid {
    grid-template-columns: 1fr;
  }

  .bdp-standalone {
    width: min(calc(100% - 24px), 900px);
    padding: 24px 0;
  }

  .bdp-standalone__panel,
  .bdp-switcher {
    padding: 22px 18px;
  }

  .bdp-product-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Runtime and module surfaces --------------------------------------------
 * HostBill emits these structures after first paint. They deliberately use
 * the portal tokens instead of depending on a stock theme stylesheet.
 */

.bdp-dashboard > .bdp-section-heading {
  margin: 38px 0 18px;
}

.bdp-upgrade-panel {
  padding: 22px;
}

.bdp-upgrade-panel > form {
  width: 100%;
}

.bdp-upgrade-panel hr {
  height: 1px;
  margin: 22px 0;
  border: 0;
  background: var(--bdp-line-soft);
}

.bdp-upgrade-panel select {
  min-height: 42px;
  margin-top: 7px;
  padding: 8px 36px 8px 12px;
  border: 1px solid rgba(145, 171, 211, 0.24);
  border-radius: var(--bdp-radius-control);
  background-color: var(--bdp-control);
  color: var(--bdp-text);
}

.bdp-form-note {
  padding: 14px 16px;
  border: 1px solid rgba(116, 185, 230, 0.2);
  border-radius: var(--bdp-radius-control);
  background: rgba(38, 80, 116, 0.12);
  color: var(--bdp-muted);
  font-size: 12px;
  line-height: 1.65;
}

.bdp-inline-action {
  width: 25px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  margin-left: 7px;
  border: 1px solid var(--bdp-line);
  border-radius: 50%;
  background: rgba(145, 171, 211, 0.05);
  color: var(--bdp-link) !important;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  vertical-align: middle;
}

.bdp-inline-action:hover {
  border-color: rgba(116, 185, 230, 0.42);
  background: rgba(38, 80, 116, 0.26);
}

.bdp-cart-totals tr:first-child td {
  border-top-color: var(--bdp-line-strong) !important;
}

.bdp-cart-totals td {
  background: rgba(2, 7, 12, 0.18);
  color: var(--bdp-text-soft);
  font-variant-numeric: tabular-nums;
}

.bdp-cart-totals tr:last-child td {
  color: var(--bdp-text-strong);
  font-weight: 650;
}

.bdp-login-captcha {
  width: 120px;
  height: 60px;
  display: block;
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-control);
  background: #fff;
  object-fit: contain;
}

.bdp-brand--standalone {
  width: max-content;
  min-width: 0;
}

.bdp-text-danger {
  color: var(--bdp-danger) !important;
}

.bdp-alert--info {
  border-color: rgba(116, 185, 230, 0.3);
  background: rgba(38, 80, 116, 0.14);
  color: #bbdcf4;
}

/* International telephone input. No flag bitmap is required: country rows
 * expose their ISO code as a compact, readable marker.
 */

.bdp-root .iti {
  position: relative;
  width: 100%;
  display: inline-block;
  color: var(--bdp-text);
}

.bdp-root .iti input[type="tel"] {
  width: 100%;
}

.bdp-root .iti--separate-dial-code input[type="tel"] {
  padding-left: 104px !important;
}

.bdp-root .iti__hide {
  display: none !important;
}

.bdp-root .iti__v-hide {
  visibility: hidden;
}

.bdp-root .iti__flag-container {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 4;
  padding: 1px;
}

.bdp-root .iti__selected-flag {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px 0 12px;
  border-right: 1px solid var(--bdp-line-soft);
  border-radius: calc(var(--bdp-radius-control) - 1px) 0 0 calc(var(--bdp-radius-control) - 1px);
  color: var(--bdp-text-soft);
  cursor: pointer;
  outline: 0;
}

.bdp-root .iti__selected-flag:hover,
.bdp-root .iti__selected-flag:focus-visible {
  background: rgba(145, 171, 211, 0.08);
}

.bdp-root .iti__selected-flag:focus-visible {
  box-shadow: inset 0 0 0 2px var(--bdp-accent);
}

.bdp-root .iti__selected-dial-code {
  color: var(--bdp-text-soft);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  font-weight: 650;
}

.bdp-root .iti__arrow {
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--bdp-duration-fast) ease;
}

.bdp-root .iti__arrow--up {
  transform: rotate(225deg) translate(-1px, -1px);
}

.bdp-root .iti__flag,
.bdp-root .iti__flag-box {
  width: 0 !important;
  min-width: 0 !important;
  height: 0 !important;
  display: none !important;
  margin: 0 !important;
  background: none !important;
}

.bdp-root .iti__country-list {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  z-index: 1150;
  width: min(360px, calc(100vw - 36px));
  max-height: 280px;
  margin: 0;
  padding: 7px;
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid var(--bdp-line-strong) !important;
  border-radius: 11px;
  background: rgba(4, 10, 17, 0.99) !important;
  color: var(--bdp-text-soft);
  box-shadow: var(--bdp-shadow-menu);
  list-style: none;
  white-space: normal;
}

.bdp-root .iti__country {
  min-height: 38px;
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  padding: 7px 9px;
  border-radius: 7px;
  cursor: pointer;
}

.bdp-root .iti__country::before {
  content: attr(data-country-code);
  color: var(--bdp-accent);
  font-size: 9px;
  font-weight: 790;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bdp-root .iti__country:hover,
.bdp-root .iti__country.iti__highlight,
.bdp-root .iti__country.iti__active {
  background: rgba(38, 80, 116, 0.36) !important;
  color: var(--bdp-text-strong);
}

.bdp-root .iti__country-name {
  min-width: 0;
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bdp-root .iti__dial-code {
  color: var(--bdp-subtle);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.bdp-root .iti__divider {
  height: 1px;
  margin: 6px 4px;
  padding: 0;
  background: var(--bdp-line-soft);
}

/* Ticket rating controls. The plugin writes icon-font token names at runtime;
 * portal.js maps those tokens to semantic data states for these vector-free
 * star treatments.
 */

.bdp-root .rating-input {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--bdp-warning);
}

.bdp-root .rating-input .material-icons.rating-box--star {
  width: 26px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  overflow: visible;
  color: inherit;
  cursor: pointer;
  font-family: inherit !important;
  font-size: 0 !important;
  line-height: 1 !important;
  text-indent: 0;
}

.bdp-root .rating-input .material-icons.rating-box--star::before {
  content: "★" !important;
  width: auto;
  height: auto;
  display: block;
  border: 0;
  color: currentColor;
  font-size: 22px;
  line-height: 1;
  text-indent: 0;
  transform: none;
  transition: color var(--bdp-duration-fast) ease, opacity var(--bdp-duration-fast) ease, transform var(--bdp-duration-fast) ease;
}

.bdp-root .rating-input .rating-box--star[data-bdp-rating-state="empty"]::before {
  content: "☆" !important;
  color: var(--bdp-subtle);
  opacity: 0.72;
}

.bdp-root .rating-input .rating-box--star[data-bdp-rating-state="half"]::before {
  opacity: 0.64;
}

.bdp-root .rating-input:not(.read-only) .rating-box--star:hover::before,
.bdp-root .rating-input:not(.read-only) .rating-box--star:focus-visible::before {
  color: #ffd86e;
  transform: translateY(-1px) scale(1.08);
}

.bdp-root .rating-input .rating-box--star:focus-visible {
  border-radius: 5px;
  outline: 2px solid var(--bdp-accent);
  outline-offset: 1px;
}

.bdp-root .rating-input.read-only .rating-box--star {
  cursor: default;
}

.bdp-root .rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.bdp-root .rating > .rating-icon[data-value] {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--bdp-line);
  border-radius: 50%;
  background: rgba(9, 17, 27, 0.72);
  color: var(--bdp-muted);
  cursor: pointer;
  transition: border-color var(--bdp-duration-fast) ease, background var(--bdp-duration-fast) ease, transform var(--bdp-duration-fast) ease;
}

.bdp-root .rating > .rating-icon[data-value]::after {
  color: currentColor;
  font-size: 20px;
  font-weight: 650;
  line-height: 1;
}

.bdp-root .rating > .rating-icon[data-value="3"]::after { content: "+"; }
.bdp-root .rating > .rating-icon[data-value="2"]::after { content: "·"; font-size: 28px; }
.bdp-root .rating > .rating-icon[data-value="1"]::after { content: "−"; }

.bdp-root .rating > .rating-icon[data-value="3"] { color: var(--bdp-success); }
.bdp-root .rating > .rating-icon[data-value="2"] { color: var(--bdp-warning); }
.bdp-root .rating > .rating-icon[data-value="1"] { color: var(--bdp-danger); }

.bdp-root .rating > .rating-icon[data-value]:hover,
.bdp-root .rating > .rating-icon[data-value]:focus-visible {
  border-color: currentColor;
  background: rgba(145, 171, 211, 0.1);
  outline: 0;
  transform: translateY(-2px);
}

.bdp-root .rating > .rating-icon[data-value] > .material-icons {
  display: none !important;
}

/* Selectize, Select2, and Chosen CSS can be emitted after the portal sheet.
 * The body-qualified selectors keep those late module styles token-aligned.
 */

.bdp-body.bdp-root .selectize-control,
.bdp-body.bdp-root .select2-container,
.bdp-body.bdp-root .chosen-container {
  width: 100% !important;
  color: var(--bdp-text) !important;
  font-family: inherit !important;
}

.bdp-body.bdp-root .selectize-input,
.bdp-body.bdp-root .select2-container--default .select2-selection--single,
.bdp-body.bdp-root .select2-container--default .select2-selection--multiple,
.bdp-body.bdp-root .chosen-container-single .chosen-single,
.bdp-body.bdp-root .chosen-choices {
  min-height: 44px !important;
  border: 1px solid rgba(145, 171, 211, 0.24) !important;
  border-radius: var(--bdp-radius-control) !important;
  background: var(--bdp-control) !important;
  color: var(--bdp-text) !important;
  box-shadow: none !important;
}

.bdp-body.bdp-root .selectize-input {
  padding: 9px 12px !important;
}

.bdp-body.bdp-root .selectize-input > input,
.bdp-body.bdp-root .select2-search__field,
.bdp-body.bdp-root .chosen-search input {
  color: var(--bdp-text) !important;
  font-family: inherit !important;
}

.bdp-body.bdp-root .selectize-input > input::placeholder,
.bdp-body.bdp-root .select2-search__field::placeholder {
  color: var(--bdp-subtle) !important;
  opacity: 1;
}

.bdp-body.bdp-root .selectize-input.focus,
.bdp-body.bdp-root .selectize-control.single .selectize-input.input-active,
.bdp-body.bdp-root .select2-container--default.select2-container--focus .select2-selection--multiple,
.bdp-body.bdp-root .select2-container--default.select2-container--open .select2-selection--single,
.bdp-body.bdp-root .chosen-container-active .chosen-single,
.bdp-body.bdp-root .chosen-container-active .chosen-choices {
  border-color: rgba(99, 164, 212, 0.82) !important;
  box-shadow: var(--bdp-focus) !important;
}

.bdp-body.bdp-root .selectize-input .item,
.bdp-body.bdp-root .select2-container--default .select2-selection--multiple .select2-selection__choice,
.bdp-body.bdp-root .chosen-container-multi .chosen-choices li.search-choice {
  margin: 2px 5px 2px 0 !important;
  padding: 4px 8px !important;
  border: 1px solid rgba(116, 185, 230, 0.28) !important;
  border-radius: 6px !important;
  background: rgba(38, 80, 116, 0.3) !important;
  color: var(--bdp-text-soft) !important;
  box-shadow: none !important;
}

.bdp-body.bdp-root .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 7px 38px 7px 12px !important;
  color: var(--bdp-text) !important;
  line-height: 28px !important;
}

.bdp-body.bdp-root .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: var(--bdp-subtle) !important;
}

.bdp-body.bdp-root .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 42px !important;
  right: 8px !important;
}

.bdp-body.bdp-root .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-top-color: var(--bdp-muted) !important;
}

.bdp-body.bdp-root .selectize-dropdown,
.bdp-body.bdp-root .select2-dropdown,
.bdp-body.bdp-root .chosen-drop {
  z-index: 1160 !important;
  margin-top: 6px !important;
  border: 1px solid var(--bdp-line-strong) !important;
  border-radius: 10px !important;
  background: rgba(4, 10, 17, 0.99) !important;
  color: var(--bdp-text-soft) !important;
  box-shadow: var(--bdp-shadow-menu) !important;
  overflow: hidden;
}

.bdp-body.bdp-root .selectize-dropdown-content .option,
.bdp-body.bdp-root .select2-results__option,
.bdp-body.bdp-root .chosen-results li {
  margin: 2px 5px !important;
  padding: 9px 11px !important;
  border-radius: 7px !important;
  background: transparent !important;
  color: var(--bdp-text-soft) !important;
}

.bdp-body.bdp-root .selectize-dropdown-content .option.active,
.bdp-body.bdp-root .select2-container--default .select2-results__option--highlighted[aria-selected],
.bdp-body.bdp-root .select2-container--default .select2-results__option--selected,
.bdp-body.bdp-root .chosen-results li.highlighted {
  background: rgba(38, 80, 116, 0.46) !important;
  color: #fff !important;
}

.bdp-body.bdp-root .select2-search--dropdown {
  padding: 8px !important;
}

.bdp-body.bdp-root .select2-search--dropdown .select2-search__field,
.bdp-body.bdp-root .chosen-search input {
  min-height: 38px !important;
  padding: 7px 10px !important;
  border: 1px solid var(--bdp-line) !important;
  border-radius: 7px !important;
  background: var(--bdp-control) !important;
  outline: 0 !important;
}

/* Bootstrap datepicker. */

.bdp-body.bdp-root .datepicker {
  z-index: 1180 !important;
  width: 278px;
  padding: 9px !important;
  border: 1px solid var(--bdp-line-strong) !important;
  border-radius: 11px !important;
  background: rgba(4, 10, 17, 0.99) !important;
  color: var(--bdp-text-soft) !important;
  font-family: inherit !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
  box-shadow: var(--bdp-shadow-menu) !important;
}

.bdp-body.bdp-root .datepicker::before,
.bdp-body.bdp-root .datepicker::after {
  display: none !important;
}

.bdp-body.bdp-root .datepicker table {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: separate;
  border-spacing: 2px;
  background: transparent;
}

.bdp-body.bdp-root .datepicker table th,
.bdp-body.bdp-root .datepicker table td {
  width: 34px;
  height: 32px;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 7px !important;
  background: transparent !important;
  color: var(--bdp-text-soft) !important;
  font-size: 11px;
  text-align: center;
  vertical-align: middle;
}

.bdp-body.bdp-root .datepicker table thead th {
  color: var(--bdp-subtle) !important;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bdp-body.bdp-root .datepicker .datepicker-switch {
  color: var(--bdp-text-strong) !important;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.bdp-body.bdp-root .datepicker .prev,
.bdp-body.bdp-root .datepicker .next,
.bdp-body.bdp-root .datepicker .datepicker-switch {
  cursor: pointer;
}

.bdp-body.bdp-root .datepicker .prev:hover,
.bdp-body.bdp-root .datepicker .next:hover,
.bdp-body.bdp-root .datepicker .datepicker-switch:hover,
.bdp-body.bdp-root .datepicker table tr td.day:hover,
.bdp-body.bdp-root .datepicker table tr td span:hover {
  background: rgba(145, 171, 211, 0.1) !important;
  color: var(--bdp-text-strong) !important;
}

.bdp-body.bdp-root .datepicker table tr td.old,
.bdp-body.bdp-root .datepicker table tr td.new,
.bdp-body.bdp-root .datepicker table tr td.disabled,
.bdp-body.bdp-root .datepicker table tr td span.disabled {
  color: #566276 !important;
}

.bdp-body.bdp-root .datepicker table tr td.today {
  box-shadow: inset 0 0 0 1px rgba(244, 186, 36, 0.46);
  color: var(--bdp-warning) !important;
}

.bdp-body.bdp-root .datepicker table tr td.active,
.bdp-body.bdp-root .datepicker table tr td.active:hover,
.bdp-body.bdp-root .datepicker table tr td span.active,
.bdp-body.bdp-root .datepicker table tr td span.active:hover {
  background: rgba(38, 80, 116, 0.76) !important;
  color: #fff !important;
  text-shadow: none !important;
}

.bdp-body.bdp-root .datepicker table tr td span {
  width: 23%;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin: 1%;
  border-radius: 7px;
}

/* jQuery UI slider and pips. */

.bdp-body.bdp-root .slider-group {
  min-width: 190px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.bdp-body.bdp-root .ui-slider,
.bdp-body.bdp-root .slides.ui-slider {
  position: relative !important;
  height: 7px !important;
  border: 1px solid var(--bdp-line) !important;
  border-radius: 999px !important;
  background: rgba(145, 171, 211, 0.13) !important;
  color: var(--bdp-text-soft) !important;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.32) !important;
}

.bdp-body.bdp-root .ui-slider .ui-slider-range {
  position: absolute;
  height: 100%;
  border: 0 !important;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--bdp-accent-strong), var(--bdp-cyan)) !important;
  box-shadow: 0 0 12px rgba(19, 214, 255, 0.18);
}

.bdp-body.bdp-root .ui-slider .ui-slider-handle {
  position: absolute;
  top: 50% !important;
  z-index: 3;
  width: 20px !important;
  height: 20px !important;
  margin: 0 0 0 -10px !important;
  border: 2px solid var(--bdp-accent) !important;
  border-radius: 50% !important;
  background: #08121d !important;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.42), 0 0 0 3px rgba(99, 164, 212, 0.12) !important;
  cursor: grab;
  outline: 0;
  transform: translateY(-50%);
}

.bdp-body.bdp-root .ui-slider .ui-slider-handle:active {
  cursor: grabbing;
}

.bdp-body.bdp-root .ui-slider .ui-slider-handle:focus-visible {
  box-shadow: var(--bdp-focus), 0 3px 12px rgba(0, 0, 0, 0.42) !important;
}

.bdp-body.bdp-root .ui-slider-pip {
  top: 14px !important;
  color: var(--bdp-subtle) !important;
  font-size: 9px !important;
}

.bdp-body.bdp-root .ui-slider-pip .ui-slider-line {
  width: 1px !important;
  height: 5px !important;
  background: var(--bdp-line-strong) !important;
}

.bdp-body.bdp-root .ui-slider-pip .ui-slider-label,
.bdp-body.bdp-root .ui-slider-tip {
  color: var(--bdp-subtle) !important;
  font-family: inherit !important;
}

.bdp-body.bdp-root .ui-slider-pip-selected-initial,
.bdp-body.bdp-root .ui-slider-pip-selected-initial .ui-slider-label,
.bdp-body.bdp-root .ui-slider-pip-selected,
.bdp-body.bdp-root .ui-slider-pip-selected .ui-slider-label {
  color: var(--bdp-accent) !important;
}

/* Async attachment upload. */

.bdp-root #dropzonecontainer,
.bdp-root .dropzonecontainer {
  position: relative;
  padding: 16px;
  border: 1px dashed rgba(145, 171, 211, 0.28);
  border-radius: var(--bdp-radius-card);
  background: rgba(2, 7, 12, 0.28);
  transition: border-color var(--bdp-duration-fast) ease, background var(--bdp-duration-fast) ease;
}

.bdp-root #dropzonecontainer.in,
.bdp-root .dropzonecontainer.in {
  border-color: rgba(19, 214, 255, 0.54);
  background: rgba(19, 214, 255, 0.05);
}

.bdp-root #dropzone,
.bdp-root .dropzone {
  min-height: 70px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  padding: 15px;
  border: 1px dashed var(--bdp-line-soft);
  border-radius: 10px;
  color: var(--bdp-subtle);
  text-align: center;
}

.bdp-root #dropzone h1,
.bdp-root .dropzone h1 {
  margin: 0;
  color: var(--bdp-text-soft);
  font-size: 13px;
  font-weight: 570;
  letter-spacing: 0;
}

.bdp-root .fileupload-buttonbar {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border: 1px solid var(--bdp-line-soft);
  border-radius: var(--bdp-radius-control);
  background: rgba(9, 17, 27, 0.58);
}

.bdp-root .fileinput-button {
  position: relative;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  overflow: hidden;
  color: var(--bdp-link);
  cursor: pointer;
}

.bdp-root .fileinput-button input[type="file"]:not(.d-none) {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}

.bdp-root .fileinput-button label {
  cursor: pointer;
}

.bdp-root .fileupload-progress {
  color: var(--bdp-subtle);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.bdp-root .fileupload-progress.fade,
.bdp-root .template-upload.fade,
.bdp-root .template-download.fade {
  opacity: 0;
  transition: opacity var(--bdp-duration) ease;
}

.bdp-root .fileupload-progress.fade.in,
.bdp-root .template-upload.fade.in,
.bdp-root .template-download.fade.in {
  opacity: 1;
}

.bdp-root .fileupload-progress .progress,
.bdp-root .template-upload .progress {
  height: 7px;
  background: rgba(145, 171, 211, 0.12);
}

.bdp-root .progress .bar,
.bdp-root .progress-success .bar {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--bdp-accent-strong), var(--bdp-cyan));
  box-shadow: 0 0 14px rgba(19, 214, 255, 0.18);
  transition: width 260ms var(--bdp-ease);
}

.bdp-root .progress-extended {
  margin-top: 7px;
  color: var(--bdp-subtle);
  text-align: right;
}

.bdp-root .table-files {
  margin: 0;
}

.bdp-root .table-files .template-upload,
.bdp-root .table-files .template-download {
  background: rgba(5, 11, 19, 0.52);
}

.bdp-root .table-files .name {
  color: var(--bdp-text-soft);
  font-weight: 570;
  overflow-wrap: anywhere;
}

.bdp-root .table-files .size {
  color: var(--bdp-subtle);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.bdp-root .table-files .error {
  color: var(--bdp-danger);
  font-size: 11px;
}

.bdp-root .table-files .start,
.bdp-root .table-files .cancel,
.bdp-root .table-files .delete {
  white-space: nowrap;
}

@media (max-width: 620px) {
  .bdp-root .iti__country-list {
    width: min(330px, calc(100vw - 48px));
  }

  .bdp-body.bdp-root .slider-group {
    align-items: flex-start;
    flex-direction: column;
  }

  .bdp-root #dropzonecontainer,
  .bdp-root .dropzonecontainer {
    padding: 11px;
  }

  .bdp-root .fileupload-buttonbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bdp-loader__mark {
    animation: none;
  }
}

/* Affiliate voucher slider and raw module fields. */

.bdp-root .section-affiliates-newvoucher select,
.bdp-root .section-affiliates-newvoucher input.styled {
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(145, 171, 211, 0.24);
  border-radius: var(--bdp-radius-control);
  background: var(--bdp-control);
  color: var(--bdp-text);
}

.bdp-root .section-affiliates-newvoucher select {
  padding-right: 38px;
}

.bdp-root .section-affiliates-newvoucher #slider {
  width: min(100%, 430px) !important;
  margin: 25px 10px !important;
}

.bdp-root .section-affiliates-newvoucher #slider_margin_indicator,
.bdp-root .section-affiliates-newvoucher #slider_value_indicator {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 9px !important;
  border: 1px solid var(--bdp-line-soft);
  border-radius: 7px;
  background: rgba(2, 7, 12, 0.32);
  color: var(--bdp-text-soft);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  font-weight: 650 !important;
}

/* Ticket attachment gallery and preview. */

.bdp-root .hbfiles {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  margin: 14px 0 4px;
}

.bdp-root .hbfile {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--bdp-line);
  border-radius: 10px;
  background: rgba(5, 11, 19, 0.64);
}

.bdp-root .hbfile-placeholder-box {
  position: relative;
  height: 104px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--bdp-line-soft);
  background:
    radial-gradient(circle at 50% 30%, rgba(99, 164, 212, 0.12), transparent 58%),
    rgba(2, 7, 12, 0.42);
  color: var(--bdp-accent);
  cursor: pointer;
  outline: 0;
}

.bdp-root .hbfile-placeholder-box:hover,
.bdp-root .hbfile-placeholder-box:focus-visible {
  background-color: rgba(38, 80, 116, 0.22);
}

.bdp-root .hbfile-placeholder-box:focus-visible {
  box-shadow: inset 0 0 0 2px var(--bdp-accent);
}

.bdp-root img.hbfile-placeholder {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform var(--bdp-duration) var(--bdp-ease);
}

.bdp-root .hbfile-image .hbfile-placeholder-box:hover img {
  transform: scale(1.035);
}

.bdp-root .hbfile-placeholder--file {
  min-width: 54px;
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid rgba(116, 185, 230, 0.28);
  border-radius: 8px;
  background: rgba(38, 80, 116, 0.2);
  color: var(--bdp-accent);
  font-size: 9px;
  font-weight: 790;
  letter-spacing: 0.1em;
}

.bdp-root .hbfile-control {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px 7px 10px;
}

.bdp-root .hbfile-title {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  color: var(--bdp-text-soft);
  font-size: 10px;
  font-weight: 560;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bdp-root .hbfile-control-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--bdp-line-soft);
  border-radius: 7px;
  background: rgba(145, 171, 211, 0.04);
  color: var(--bdp-link) !important;
  text-decoration: none;
}

.bdp-root .hbfile-control-icon:hover,
.bdp-root .hbfile-control-icon:focus-visible {
  border-color: rgba(116, 185, 230, 0.4);
  background: rgba(38, 80, 116, 0.24);
  outline: 0;
}

.bdp-root .hbfile-download::before {
  content: "↓";
  font-size: 14px;
  line-height: 1;
}

.bdp-root .hbfile-download > .material-icons {
  display: none !important;
}

body.bdp-modal-open {
  overflow: hidden;
}

.bdp-attachment-viewer {
  position: fixed;
  inset: 0;
  z-index: 1510;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 34px);
  background: rgba(0, 2, 5, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.bdp-attachment-viewer[hidden] {
  display: none !important;
}

.bdp-attachment-viewer__panel {
  width: min(1120px, 100%);
  max-height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--bdp-line-strong);
  border-radius: var(--bdp-radius-card);
  background: #040a11;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.62);
}

.bdp-attachment-viewer__bar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  padding: 9px 12px 9px 18px;
  border-bottom: 1px solid var(--bdp-line-soft);
  background: rgba(8, 15, 24, 0.94);
}

.bdp-attachment-viewer__counter {
  margin-right: auto;
  color: var(--bdp-subtle);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bdp-attachment-viewer__stage {
  min-height: min(70vh, 720px);
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background:
    radial-gradient(circle at 50% 42%, rgba(38, 80, 116, 0.14), transparent 48%),
    #02070c;
}

.bdp-attachment-viewer__stage figure {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  align-self: stretch;
  margin: 0;
}

.bdp-attachment-viewer__stage img {
  max-width: 100%;
  max-height: min(72vh, 720px);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.bdp-attachment-viewer__stage figcaption {
  max-width: 100%;
  margin-top: 12px;
  overflow: hidden;
  color: var(--bdp-muted);
  font-size: 11px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bdp-attachment-viewer__nav {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--bdp-line);
  border-radius: 50%;
  background: rgba(9, 17, 27, 0.86);
  color: var(--bdp-text-soft);
  font-size: 18px;
  line-height: 1;
}

.bdp-attachment-viewer__nav:hover,
.bdp-attachment-viewer__nav:focus-visible {
  border-color: rgba(116, 185, 230, 0.48);
  background: rgba(38, 80, 116, 0.38);
  color: #fff;
  outline: 0;
}

.bdp-attachment-viewer__nav:disabled {
  opacity: 0.28;
  pointer-events: none;
}

/* Domain bulk-selection controls. */

.bdp-root .domain-tld-bulk {
  min-width: 210px;
  max-height: 300px;
  padding: 8px !important;
  overflow-y: auto;
  border: 1px solid var(--bdp-line) !important;
  border-radius: var(--bdp-radius-control);
  background: rgba(5, 11, 19, 0.64);
}

.bdp-root .domain-tld-search {
  position: sticky;
  top: 0;
  z-index: 2;
  margin-bottom: 7px;
  background-color: #08111b;
}

.bdp-root .domain-tld-search:focus {
  border-color: rgba(99, 164, 212, 0.82);
  box-shadow: var(--bdp-focus);
}

.bdp-root .domain-tld-checkbox-all,
.bdp-root .domain-tld-checkbox-item {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0 !important;
  padding: 7px 9px !important;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--bdp-muted);
  font-size: 11px;
  cursor: pointer;
  outline: 0;
  transition: border-color var(--bdp-duration-fast) ease, background var(--bdp-duration-fast) ease, color var(--bdp-duration-fast) ease;
}

.bdp-root .domain-tld-checkbox-all {
  border-color: var(--bdp-line-soft);
  color: var(--bdp-text-soft);
  font-weight: 650;
}

.bdp-root .domain-tld-checkbox-all:hover,
.bdp-root .domain-tld-checkbox-item:hover,
.bdp-root .domain-tld-checkbox-all:focus-visible,
.bdp-root .domain-tld-checkbox-item:focus-visible,
.bdp-root .domain-tld-checkbox-item:focus-within {
  border-color: rgba(116, 185, 230, 0.28);
  background: rgba(145, 171, 211, 0.07);
  color: var(--bdp-text-soft);
}

.bdp-root .domain-tld-checkbox-all.checked,
.bdp-root .domain-tld-checkbox-item.checked,
.bdp-root .domain-tld-checkbox-item:has(input:checked) {
  border-color: rgba(35, 220, 173, 0.26);
  background: rgba(35, 220, 173, 0.07);
  color: #aaf1dc;
}

.bdp-root .domain-tld-checkbox-icon.material-icons {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  border: 1px solid var(--bdp-line-strong);
  border-radius: 5px;
  text-indent: 0;
}

.bdp-root .domain-tld-checkbox-icon.material-icons::before {
  content: "✓" !important;
  width: auto;
  height: auto;
  border: 0;
  color: transparent;
  font-size: 11px;
  line-height: 1;
  transform: none;
}

.bdp-root .domain-tld-checkbox-item.checked .domain-tld-checkbox-icon,
.bdp-root .domain-tld-checkbox-item:has(input:checked) .domain-tld-checkbox-icon {
  border-color: rgba(35, 220, 173, 0.52);
  background: rgba(35, 220, 173, 0.16);
}

.bdp-root .domain-tld-checkbox-item.checked .domain-tld-checkbox-icon::before,
.bdp-root .domain-tld-checkbox-item:has(input:checked) .domain-tld-checkbox-icon::before {
  color: var(--bdp-success);
}

.bdp-root .bdp-card-brand {
  width: auto;
  max-width: 64px;
  height: 32px;
  display: block;
  object-fit: contain;
}

/* PNotify runtime shell. */

body.bdp-root .ui-pnotify {
  position: fixed !important;
  top: 84px;
  right: 22px;
  z-index: 1480 !important;
  width: min(360px, calc(100vw - 36px)) !important;
  height: auto;
  display: none;
  opacity: 0;
  pointer-events: none;
}

body.bdp-root .ui-pnotify.ui-pnotify-in {
  display: block !important;
  pointer-events: auto;
}

body.bdp-root .ui-pnotify-fade-slow,
body.bdp-root .ui-pnotify-fade-normal,
body.bdp-root .ui-pnotify-fade-fast {
  transition-property: opacity, transform;
  transition-timing-function: var(--bdp-ease);
}

body.bdp-root .ui-pnotify-fade-slow { transition-duration: 420ms; }
body.bdp-root .ui-pnotify-fade-normal { transition-duration: 240ms; }
body.bdp-root .ui-pnotify-fade-fast { transition-duration: 140ms; }

body.bdp-root .ui-pnotify-fade-in {
  opacity: 1;
  transform: translateY(0);
}

body.bdp-root .ui-pnotify:not(.ui-pnotify-fade-in) {
  transform: translateY(-7px);
}

body.bdp-root .ui-pnotify-container {
  position: relative;
  min-height: 0 !important;
  padding: 14px 42px 14px 16px !important;
  overflow: hidden;
  border: 1px solid var(--bdp-line-strong) !important;
  border-radius: 11px !important;
  background: rgba(4, 10, 17, 0.98) !important;
  color: var(--bdp-text-soft) !important;
  box-shadow: var(--bdp-shadow-menu) !important;
}

body.bdp-root .ui-pnotify-container::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: var(--bdp-accent);
}

body.bdp-root .ui-pnotify-container.brighttheme-success::before,
body.bdp-root .ui-pnotify-container.alert-success::before { background: var(--bdp-success); }
body.bdp-root .ui-pnotify-container.brighttheme-error::before,
body.bdp-root .ui-pnotify-container.alert-danger::before { background: var(--bdp-danger); }
body.bdp-root .ui-pnotify-container.brighttheme-notice::before,
body.bdp-root .ui-pnotify-container.alert-warning::before { background: var(--bdp-warning); }

body.bdp-root .ui-pnotify-title {
  margin: 0 0 4px;
  color: var(--bdp-text-strong);
  font-size: 13px;
  font-weight: 680;
}

body.bdp-root .ui-pnotify-text {
  color: var(--bdp-muted);
  font-size: 12px;
  line-height: 1.55;
}

body.bdp-root .ui-pnotify-icon {
  display: none;
}

body.bdp-root .ui-pnotify-closer,
body.bdp-root .ui-pnotify-sticker {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--bdp-muted);
  outline: 0;
}

body.bdp-root .ui-pnotify-closer:hover,
body.bdp-root .ui-pnotify-closer:focus-visible {
  background: rgba(145, 171, 211, 0.1);
  color: var(--bdp-text-strong);
}

body.bdp-root .ui-pnotify-closer::before {
  content: "×";
  font-size: 18px;
  line-height: 1;
}

body.bdp-root .ui-pnotify-closer > span,
body.bdp-root .ui-pnotify-sticker {
  display: none !important;
}

body.bdp-root .ui-pnotify-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1470;
  background: rgba(0, 2, 5, 0.78);
}

/* Facebox is loaded late by 3-D Secure processing; these body-qualified
 * rules suppress its bitmap corners and keep the secure frame in-system.
 */

body.bdp-root #facebox {
  z-index: 1500 !important;
  max-width: calc(100vw - 28px) !important;
  color: var(--bdp-text) !important;
  font-family: inherit !important;
  text-align: left;
}

body.bdp-root #facebox .popup {
  overflow: hidden;
  border: 1px solid var(--bdp-line-strong) !important;
  border-radius: var(--bdp-radius-card) !important;
  background: rgba(4, 10, 17, 0.99) !important;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.64) !important;
}

body.bdp-root #facebox table {
  width: 100% !important;
  border: 0 !important;
  border-collapse: collapse !important;
  background: transparent !important;
}

body.bdp-root #facebox .b,
body.bdp-root #facebox .tl,
body.bdp-root #facebox .tr,
body.bdp-root #facebox .bl,
body.bdp-root #facebox .br {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
  padding: 0 !important;
  background: none !important;
}

body.bdp-root #facebox td {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.bdp-root #facebox .body {
  width: min(680px, calc(100vw - 30px)) !important;
  max-width: 100% !important;
  padding: 12px !important;
  background: rgba(4, 10, 17, 0.99) !important;
  color: var(--bdp-text) !important;
}

body.bdp-root #facebox .content {
  overflow: hidden;
  border-radius: 9px;
  background: #02070c;
}

body.bdp-root #facebox iframe {
  width: 100% !important;
  max-width: 100%;
  height: min(62vh, 520px) !important;
  display: block;
  border: 0;
  border-radius: 8px;
  background: #fff;
}

body.bdp-root #facebox .footer {
  min-height: 45px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: 10px !important;
  padding-top: 9px !important;
  border-top: 1px solid var(--bdp-line-soft) !important;
}

body.bdp-root #facebox .footer .close {
  min-width: 72px;
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  padding: 7px 11px;
  border: 1px solid var(--bdp-line);
  border-radius: 7px;
  background: rgba(145, 171, 211, 0.06);
  color: var(--bdp-text-soft) !important;
  font-size: 0;
  text-decoration: none;
  opacity: 1;
}

body.bdp-root #facebox .footer .close::before {
  content: "Close";
  font-size: 11px;
  font-weight: 650;
}

body.bdp-root #facebox .footer .close:hover,
body.bdp-root #facebox .footer .close:focus-visible {
  border-color: rgba(116, 185, 230, 0.42);
  background: rgba(38, 80, 116, 0.26);
  outline: 0;
  box-shadow: var(--bdp-focus);
}

body.bdp-root #facebox .close_image {
  display: none !important;
}

body.bdp-root #facebox_overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 1490 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 2, 5, 0.84) !important;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

body.bdp-root #facebox_overlay.facebox_hide:not(.facebox_overlayBG) {
  opacity: 0 !important;
  pointer-events: none;
}

/* Documents, knowledge, and security surfaces ---------------------------- */

.bdp-service-layout {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.bdp-service-layout--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(190px, 240px);
}

.bdp-service-layout--reverse .bdp-service-aside {
  order: 2;
}

.bdp-service-layout--top {
  grid-template-columns: 1fr;
}

.bdp-service-aside {
  position: sticky;
  top: calc(var(--bdp-topbar-height) + 18px);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-card);
  background: rgba(4, 10, 17, 0.72);
}

.bdp-service-main {
  min-width: 0;
  display: grid;
  gap: 18px;
}

.bdp-service-nav,
.bdp-service-menu {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bdp-service-nav {
  flex-direction: column;
  gap: 2px;
  padding: 7px;
}

.bdp-service-nav .bdp-tab {
  width: 100%;
  justify-content: flex-start;
  white-space: normal;
}

.bdp-service-toolbar {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bdp-service-menu {
  max-width: 100%;
  gap: 4px;
  overflow-x: auto;
}

.bdp-tab-item {
  min-width: 0;
}

.bdp-service-billing,
.bdp-service-configuration,
.bdp-upgrade-service,
.bdp-widget {
  overflow: hidden;
}

.bdp-service-billing .bdp-detail-list,
.bdp-service-configuration .bdp-detail-list {
  padding: 0 20px;
}

.bdp-service-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--bdp-muted);
  font-size: 0.7rem;
  font-weight: 680;
}

.bdp-service-state::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bdp-subtle);
}

.bdp-service-state.is-online::before {
  background: var(--bdp-success);
  box-shadow: 0 0 9px rgba(35, 220, 173, 0.48);
}

.bdp-service-state.is-offline::before {
  background: var(--bdp-danger);
}

.bdp-filter-bar,
.bdp-filter-options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.bdp-filter-panel {
  margin-bottom: 18px;
  padding: 18px;
}

.bdp-filter-panel > :not(summary) {
  margin: 0;
}

.bdp-filter-panel .bdp-form-actions {
  margin-top: 16px;
}

.bdp-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 5px 9px;
  border: 1px solid var(--bdp-line-soft);
  border-radius: 999px;
  background: rgba(145, 171, 211, 0.05);
  color: var(--bdp-muted);
  font-size: 0.67rem;
}

.bdp-table-frame {
  border: 1px solid var(--bdp-line);
  background: rgba(4, 10, 17, 0.56);
}

.bdp-table-frame--rounded {
  border-radius: var(--bdp-radius-card);
}

.bdp-table-frame .bdp-table {
  border: 0;
}

.bdp-table-selection th {
  background: rgba(38, 80, 116, 0.12);
}

.bdp-table-cell-primary {
  min-width: 190px;
}

.bdp-table-cell-status {
  white-space: nowrap;
}

.bdp-upgrade-panel {
  padding: 0 18px 18px;
}

.bdp-upgrade-grid {
  border: 1px solid var(--bdp-line-soft);
  border-radius: var(--bdp-radius-control);
}

.bdp-upgrade-header th {
  background: rgba(38, 80, 116, 0.12);
}

.bdp-upgrade-name { min-width: 150px; }
.bdp-upgrade-from { min-width: 130px; color: var(--bdp-muted); }
.bdp-upgrade-to { min-width: 220px; }
.bdp-upgrade-price { min-width: 110px; font-variant-numeric: tabular-nums; }

.bdp-upgrade-slider__group {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.bdp-upgrade-slider__group .bdp-slider {
  min-width: 120px;
  flex: 1;
}

.bdp-status,
[class*="bdp-status-"] {
  font-variant-numeric: tabular-nums;
}

[class*="bdp-status-Active" i],
[class*="bdp-status-Paid" i],
[class*="bdp-status-Closed" i],
[class*="bdp-status-Resolved" i] {
  border-color: rgba(35, 220, 173, 0.34);
  background: rgba(35, 220, 173, 0.07);
  color: #8debd1;
}

[class*="bdp-status-Pending" i],
[class*="bdp-status-Unpaid" i],
[class*="bdp-status-Open" i] {
  border-color: rgba(244, 186, 36, 0.34);
  background: rgba(244, 186, 36, 0.07);
  color: #f6cb5d;
}

[class*="bdp-status-Expired" i],
[class*="bdp-status-Cancelled" i],
[class*="bdp-status-Terminated" i],
[class*="bdp-status-Failed" i],
[class*="bdp-status-Overdue" i] {
  border-color: rgba(255, 155, 155, 0.34);
  background: rgba(255, 155, 155, 0.06);
  color: var(--bdp-danger);
}

.bdp-contracts,
.bdp-contract-view,
.bdp-document-view,
.bdp-knowledgebase,
.bdp-mfa,
.bdp-info-page,
.bdp-error-page {
  min-width: 0;
}

.bdp-contracts > .bdp-card,
.bdp-contract-list,
.bdp-contract-accept,
.bdp-kb-search,
.bdp-kb-index,
.bdp-kb-results,
.bdp-kb-related,
.bdp-kb-widget,
.bdp-mfa > .bdp-alert,
.bdp-mfa-preferences {
  margin-top: 20px;
}

.bdp-contracts-pending {
  border-color: rgba(244, 186, 36, 0.3);
  background: linear-gradient(135deg, rgba(244, 186, 36, 0.07), rgba(8, 15, 24, 0.88) 56%);
}

.bdp-contract-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-card);
  background: var(--bdp-line-soft);
}

.bdp-contract-meta > div {
  min-width: 0;
  padding: 12px 14px;
  background: rgba(4, 10, 17, 0.96);
}

.bdp-contract-meta dt {
  color: var(--bdp-subtle);
  font-size: 0.58rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bdp-contract-meta dd {
  margin: 5px 0 0;
  color: var(--bdp-text-soft);
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

.bdp-contract-card {
  overflow: hidden;
}

.bdp-contract-customer-form {
  padding: 20px;
  border-bottom: 1px solid var(--bdp-line-soft);
}

.bdp-contract-document,
.bdp-document-frame {
  min-width: 0;
  padding: 8px;
  background: #fff;
}

.bdp-contract-frame,
.bdp-document-frame iframe {
  width: 100%;
  min-height: 540px;
  display: block;
  border: 0;
  background: #fff;
}

.bdp-contract-footer {
  justify-content: space-between;
}

.bdp-contract-attachments {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.bdp-contract-attachments > strong {
  color: var(--bdp-text-soft);
  font-size: 0.7rem;
}

.bdp-contract-accept {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bdp-invoice-actions {
  max-width: 620px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.bdp-invoice-credit {
  margin-bottom: 16px;
}

.bdp-payment-method,
.bdp-gateway {
  min-width: 0;
}

.bdp-gateway:not(:empty) {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--bdp-line-soft);
}

.bdp-kb-search {
  max-width: 780px;
}

.bdp-kb-card,
.bdp-kb-index,
.bdp-kb-related,
.bdp-kb-results {
  overflow: hidden;
}

.bdp-kb-grid {
  align-items: start;
}

.bdp-resource-list .bdp-list-item {
  color: var(--bdp-text-soft) !important;
  text-decoration: none;
}

.bdp-resource-list .bdp-list-item:hover {
  color: var(--bdp-text-strong) !important;
}

.bdp-resource-kind {
  display: block;
  margin-bottom: 3px;
  color: var(--bdp-subtle);
  font-size: 0.58rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bdp-kb-article {
  margin-top: 18px;
}

.bdp-kb-vote,
.bdp-kb-vote-panel {
  margin-top: 16px;
}

.bdp-kb-vote-panel,
.bdp-kb-vote-question {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.bdp-mfa-grid {
  align-items: stretch;
}

.bdp-mfa-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
}

.bdp-mfa-card .bdp-card-footer {
  margin-top: auto;
}

.bdp-mfa-module,
.bdp-mfa-preferences {
  max-width: 860px;
}

.bdp-form--narrow {
  width: min(100%, 660px);
}

/* Account, payment, and permissions surfaces ----------------------------- */

.bdp-billing-signals {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-card);
  background: var(--bdp-line-soft);
}

.bdp-billing-signal {
  min-width: 0;
  padding: 14px 16px;
  background: rgba(4, 10, 17, 0.96);
}

.bdp-billing-signal dt {
  color: var(--bdp-subtle);
  font-size: 0.58rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.bdp-billing-signal dd {
  margin: 6px 0 0;
  color: var(--bdp-text-strong);
  font-size: 1rem;
  font-weight: 640;
  font-variant-numeric: tabular-nums;
}

.bdp-billing-signal--attention dd {
  color: var(--bdp-warning);
}

.bdp-billing-signal--credit dd {
  color: var(--bdp-success);
}

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

.bdp-account-tabs {
  align-items: center;
}

.bdp-account-tabs__filter {
  min-height: 36px;
  margin-left: auto;
}

.bdp-account-export,
.bdp-danger-zone,
.bdp-message-record,
.bdp-payment-result {
  margin-top: 18px;
}

.bdp-account-export > .bdp-cluster {
  justify-content: space-between;
}

.bdp-account-export p {
  margin: 6px 0 0;
  color: var(--bdp-muted);
}

.bdp-danger-zone {
  border-color: rgba(255, 155, 155, 0.26);
  background: linear-gradient(135deg, rgba(255, 96, 96, 0.08), rgba(8, 15, 24, 0.86) 58%);
}

.bdp-danger-zone .bdp-card-title {
  margin: 8px 0 18px;
}

.bdp-deposit-limits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.bdp-deposit-limits > div {
  min-width: 130px;
  padding: 10px 13px;
  border: 1px solid var(--bdp-line-soft);
  border-radius: var(--bdp-radius-control);
  background: rgba(2, 7, 12, 0.44);
}

.bdp-deposit-limits dt {
  color: var(--bdp-subtle);
  font-size: 0.62rem;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bdp-deposit-limits dd {
  margin: 4px 0 0;
  color: var(--bdp-text-strong);
  font-size: 0.9rem;
  font-weight: 640;
}

.bdp-message-record {
  overflow: hidden;
}

.bdp-payment-result {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  text-align: left;
}

.bdp-payment-result .bdp-card-title,
.bdp-payment-result p {
  margin: 0;
}

.bdp-settings-list,
.bdp-permission-groups,
.bdp-profile-fields,
.bdp-payment-card-list,
.bdp-payment-choices,
.bdp-choice-list {
  display: grid;
  gap: 12px;
}

.bdp-setting {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.28fr);
  gap: 26px;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid var(--bdp-line-soft);
}

.bdp-setting:last-child {
  border-bottom: 0;
}

.bdp-setting__copy,
.bdp-setting__control {
  min-width: 0;
}

.bdp-setting__copy .bdp-help {
  display: block;
  margin: 4px 0 0;
}

.bdp-profile-field {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(180px, 0.6fr) minmax(0, 1.4fr);
  gap: 28px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--bdp-line-soft);
}

.bdp-profile-field:last-child {
  border-bottom: 0;
}

.bdp-profile-field__label,
.bdp-profile-field__control {
  min-width: 0;
}

.bdp-profile-field__label .bdp-label {
  margin: 0;
}

.bdp-static-value {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 13px;
  border: 1px solid var(--bdp-line-soft);
  border-radius: var(--bdp-radius-control);
  background: rgba(2, 7, 12, 0.42);
  color: var(--bdp-muted);
  overflow-wrap: anywhere;
}

.bdp-choice-list {
  gap: 9px;
}

.bdp-choice-list .bdp-check,
.bdp-choice-list .bdp-radio {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--bdp-line-soft);
  border-radius: var(--bdp-radius-control);
  background: rgba(2, 7, 12, 0.34);
}

.bdp-permission-presets {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid var(--bdp-line-soft);
  border-radius: var(--bdp-radius-control);
  background: rgba(2, 7, 12, 0.42);
}

.bdp-permission-presets > strong {
  color: var(--bdp-text-soft);
  font-size: 0.76rem;
}

.bdp-permission-group {
  overflow: hidden;
  border: 1px solid var(--bdp-line-soft);
  border-radius: var(--bdp-radius-card);
  background: rgba(4, 10, 17, 0.52);
}

.bdp-permission-group__header {
  padding: 14px 16px;
  border-bottom: 1px solid var(--bdp-line-soft);
  background: rgba(145, 171, 211, 0.035);
}

.bdp-permission-master {
  width: 100%;
}

.bdp-permission-master strong {
  color: var(--bdp-text-strong);
}

.bdp-permission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 18px;
  padding: 16px;
}

.bdp-permission-grid .bdp-check {
  min-width: 0;
}

.bdp-permission-scoped {
  display: grid;
  gap: 12px;
}

.bdp-current-ip {
  width: fit-content;
  min-width: min(100%, 260px);
  margin-bottom: 22px;
}

.bdp-current-ip strong {
  display: block;
  margin-top: 8px;
  color: var(--bdp-text-strong);
  font: 650 1rem/1.4 ui-monospace, "SFMono-Regular", Consolas, monospace;
}

.bdp-inline-form {
  max-width: 760px;
  margin-bottom: 20px;
}

.bdp-rule-guide {
  margin-top: 20px;
}

.bdp-rule-guide .bdp-list {
  gap: 7px;
  color: var(--bdp-muted);
  font: 0.78rem/1.55 ui-monospace, "SFMono-Regular", Consolas, monospace;
}

.bdp-rule-guide h4 {
  margin: 20px 0 8px;
}

.bdp-payment-card-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bdp-payment-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.bdp-payment-card--primary {
  border-color: rgba(35, 220, 173, 0.3);
  background: linear-gradient(140deg, rgba(35, 220, 173, 0.08), rgba(8, 15, 24, 0.88) 55%);
}

.bdp-payment-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.bdp-payment-card__details {
  margin-top: 18px;
}

.bdp-payment-card__actions {
  margin-top: auto;
  padding-top: 18px;
}

.bdp-payment-choice {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 56px;
  padding: 12px 14px;
  border: 1px solid var(--bdp-line-soft);
  border-radius: var(--bdp-radius-control);
  background: rgba(2, 7, 12, 0.42);
  cursor: pointer;
}

.bdp-payment-choice:has(input:checked),
.bdp-payment-choice--primary {
  border-color: rgba(116, 185, 230, 0.38);
  background: rgba(38, 80, 116, 0.2);
}

.bdp-payment-choice__copy {
  min-width: 0;
  display: grid;
  gap: 3px;
  flex: 1;
}

.bdp-payment-choice__copy strong {
  color: var(--bdp-text-soft);
  font-size: 0.82rem;
}

.bdp-payment-choice__copy small {
  color: var(--bdp-subtle);
  font-size: 0.7rem;
}

.bdp-payment-choice__details {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--bdp-line-soft);
  border-radius: var(--bdp-radius-control);
  background: rgba(2, 7, 12, 0.28);
}

.bdp-widget-region:empty {
  display: none;
}

.bdp-status--active,
.bdp-status--paid,
.bdp-status--closed,
.bdp-status--resolved {
  border-color: rgba(35, 220, 173, 0.34);
  background: rgba(35, 220, 173, 0.07);
  color: #8debd1;
}

.bdp-status--pending,
.bdp-status--unpaid,
.bdp-status--open,
.bdp-status--in-progress {
  border-color: rgba(244, 186, 36, 0.34);
  background: rgba(244, 186, 36, 0.07);
  color: #f6cb5d;
}

.bdp-status--expired,
.bdp-status--cancelled,
.bdp-status--terminated,
.bdp-status--failed,
.bdp-status--overdue {
  border-color: rgba(255, 155, 155, 0.34);
  background: rgba(255, 155, 155, 0.06);
  color: var(--bdp-danger);
}

body.bdp-root .bdp-tabs.nav-tabs,
body.bdp-root .bdp-tabs.nav-tabs .nav-link {
  border-bottom-color: var(--bdp-line);
}

/* Affiliate and embedded-document surfaces ------------------------------- */

.bdp-stack--tight {
  gap: 10px;
}

.bdp-page-header--affiliate,
.bdp-landing--affiliate {
  position: relative;
  overflow: hidden;
}

.bdp-page-header--affiliate::after,
.bdp-landing--affiliate::after {
  content: "";
  position: absolute;
  inset: auto -10% -70% 42%;
  height: 260px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(116, 185, 230, 0.16), transparent 68%);
}

.bdp-referral-link {
  min-width: 0;
  display: inline-block;
  overflow-wrap: anywhere;
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.88rem;
}

.bdp-field--action {
  align-self: end;
}

.bdp-filter-panel {
  border: 1px solid var(--bdp-line-soft);
  border-radius: var(--bdp-radius-card);
  background: rgba(4, 10, 17, 0.58);
}

.bdp-filter-panel__summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  color: var(--bdp-text-soft);
  font-size: 0.82rem;
  font-weight: 680;
  cursor: pointer;
  list-style: none;
}

.bdp-filter-panel__summary::-webkit-details-marker {
  display: none;
}

.bdp-filter-panel__summary::after {
  content: "+";
  margin-left: auto;
  color: var(--bdp-muted);
  font-size: 1rem;
  font-weight: 500;
}

.bdp-filter-panel[open] .bdp-filter-panel__summary::after {
  content: "\2212";
}

.bdp-filter-panel > :not(summary) {
  margin: 0 16px 16px;
}

.bdp-detail-disclosure {
  border-top: 1px solid var(--bdp-line-soft);
}

.bdp-detail-disclosure > summary {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--bdp-text-soft);
  font-size: 0.82rem;
  font-weight: 650;
  cursor: pointer;
}

.bdp-voucher-scale {
  display: grid;
  gap: 15px;
  padding: 18px;
  border: 1px solid var(--bdp-line-soft);
  border-radius: var(--bdp-radius-control);
  background: rgba(2, 7, 12, 0.52);
}

.bdp-voucher-slider.ui-slider {
  height: 5px;
  margin: 10px 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(145, 171, 211, 0.22);
}

.bdp-voucher-slider .ui-slider-range {
  border-radius: inherit;
  background: linear-gradient(90deg, var(--bdp-violet), var(--bdp-accent));
}

.bdp-voucher-slider .ui-slider-handle {
  top: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  border: 3px solid var(--bdp-canvas-raised);
  border-radius: 50%;
  background: var(--bdp-accent);
  box-shadow: 0 0 0 1px rgba(142, 197, 238, 0.6), 0 7px 18px rgba(0, 0, 0, 0.38);
}

.bdp-invoice-meta {
  margin-bottom: 16px;
}

.bdp-invoice-frame-wrap {
  min-height: 520px;
  padding: 8px;
  overflow: hidden;
  background: #fff;
}

.bdp-invoice-frame {
  width: 100%;
  min-height: 500px;
  display: block;
  border: 0;
  border-radius: calc(var(--bdp-radius-card) - 6px);
  background: #fff;
}

.bdp-code-block {
  max-height: 280px;
  margin: 0;
  padding: 14px 16px;
  overflow: auto;
  border: 1px solid var(--bdp-line-soft);
  border-radius: var(--bdp-radius-control);
  background: #010509;
  color: #b8d9f3;
  font: 0.76rem/1.65 ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.bdp-banner-preview {
  min-height: 72px;
  display: grid;
  place-items: center;
  margin-top: 10px;
  padding: 14px;
  overflow: auto;
  border: 1px dashed var(--bdp-line-strong);
  border-radius: var(--bdp-radius-control);
  background: rgba(255, 255, 255, 0.04);
}

.bdp-tab-panels {
  min-width: 0;
  margin-top: 14px;
}

.bdp-tab-panels .bdp-tab-panel:not(.active):not(.show) {
  display: none;
}

.bdp-modal-content {
  min-width: 0;
}

.bdp-action-menu {
  position: relative;
  display: inline-block;
  text-align: left;
}

.bdp-action-menu > summary {
  list-style: none;
}

.bdp-action-menu > summary::-webkit-details-marker {
  display: none;
}

.bdp-action-menu__panel {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 1050;
  width: max-content;
  min-width: 176px;
  max-width: min(260px, calc(100vw - 34px));
  display: grid;
  gap: 2px;
  padding: 6px;
  border: 1px solid var(--bdp-line-strong);
  border-radius: var(--bdp-radius-control);
  background: rgba(4, 10, 17, 0.99);
  box-shadow: var(--bdp-shadow-menu);
}

.bdp-action-menu__panel a,
.bdp-action-menu__panel button {
  min-height: 36px;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 8px 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--bdp-text-soft) !important;
  font-size: 0.74rem;
  font-weight: 620;
  text-align: left;
  text-decoration: none;
}

.bdp-action-menu__panel a:hover,
.bdp-action-menu__panel button:hover,
.bdp-action-menu__panel a:focus-visible,
.bdp-action-menu__panel button:focus-visible {
  background: rgba(116, 185, 230, 0.1);
  color: var(--bdp-text-strong) !important;
}

.bdp-table-scroll:has(.bdp-action-menu[open]) {
  overflow: visible;
}

@media (max-width: 960px) {
  .bdp-service-layout,
  .bdp-service-layout--reverse {
    grid-template-columns: 1fr;
  }

  .bdp-service-layout--reverse .bdp-service-aside {
    order: 0;
  }

  .bdp-service-aside {
    position: static;
  }

  .bdp-service-nav {
    flex-direction: row;
    overflow-x: auto;
  }

  .bdp-service-nav .bdp-tab {
    width: auto;
    white-space: nowrap;
  }
}

@media (max-width: 860px) {
  .bdp-contract-meta,
  .bdp-mfa-grid,
  .bdp-setting,
  .bdp-profile-field {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .bdp-payment-card-list,
  .bdp-permission-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .bdp-billing-signals {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .bdp-account-tabs__filter {
    width: 100%;
    margin-left: 0;
  }

  .bdp-inline-form .bdp-input-group {
    display: grid;
    gap: 8px;
  }

  .bdp-inline-form .bdp-input-group > * {
    margin: 0;
    border-radius: var(--bdp-radius-control);
  }

  .bdp-payment-card__header {
    flex-direction: column;
  }

  .bdp-attachment-viewer__bar {
    flex-wrap: wrap;
    padding-left: 12px;
  }

  .bdp-attachment-viewer__stage {
    min-height: 60vh;
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 6px;
    padding: 10px;
  }

  .bdp-attachment-viewer__nav {
    width: 34px;
    height: 34px;
  }

  body.bdp-root .ui-pnotify {
    right: 12px !important;
    left: 12px !important;
    width: auto !important;
  }

  body.bdp-root #facebox {
    left: 14px !important;
  }
}

/* Commerce surfaces ----------------------------------------------------
 * The client portal owns the final checkout handoff as well as account-
 * initiated product, domain, and upgrade flows. These components are
 * intentionally native to the Brisk Data system and do not rely on an
 * order-page or framework stylesheet for their layout.
 */

.bdp-cart,
.bdp-cart-products,
.bdp-cart-config,
.bdp-cart-review,
.bdp-service-index {
  min-width: 0;
}

.bdp-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: start;
  gap: 22px;
}

.bdp-cart-layout--single {
  grid-template-columns: minmax(0, 1fr);
}

.bdp-cart-main,
.bdp-cart-cards,
.bdp-cart-products,
.bdp-cart-config,
.bdp-cart-summary,
.bdp-payment-methods {
  min-width: 0;
  display: grid;
  gap: 16px;
}

.bdp-cart-aside {
  position: sticky;
  top: calc(var(--bdp-topbar-height) + 18px);
  min-width: 0;
}

.bdp-cart-progress-wrap {
  margin: 0 0 22px;
  padding: 14px 18px;
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-card);
  background: rgba(4, 10, 17, 0.62);
}

.bdp-cart-progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bdp-cart-step {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--bdp-subtle);
  font-size: 0.68rem;
  font-weight: 680;
  white-space: nowrap;
}

.bdp-cart-step::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border: 1px solid var(--bdp-line-strong);
  border-radius: 50%;
  background: var(--bdp-control);
}

.bdp-cart-step.is-active,
.bdp-cart-step[aria-current="step"] {
  color: var(--bdp-text-strong);
}

.bdp-cart-step.is-active::before,
.bdp-cart-step[aria-current="step"]::before {
  border-color: var(--bdp-cyan);
  background: var(--bdp-cyan);
  box-shadow: 0 0 12px rgba(19, 214, 255, 0.42);
}

.bdp-cart-summary,
.bdp-cart-summary-block,
.bdp-cart-summary-table {
  width: 100%;
}

.bdp-cart-summary-block {
  padding: 16px 18px;
  border-top: 1px solid var(--bdp-line-soft);
}

.bdp-cart-summary-block:first-child {
  border-top: 0;
}

.bdp-cart-summary-item {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 16px;
  padding: 9px 0;
  color: var(--bdp-muted);
  font-size: 0.78rem;
}

.bdp-cart-summary-item > :last-child {
  color: var(--bdp-text-soft);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.bdp-cart-item,
.bdp-cart-subproduct,
.bdp-cart-addon {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 230px);
  align-items: center;
  gap: 10px 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--bdp-line-soft);
}

.bdp-cart-item:last-child,
.bdp-cart-subproduct:last-child,
.bdp-cart-addon:last-child {
  border-bottom: 0;
}

.bdp-cart-item__copy {
  grid-column: 1 / -1;
  color: var(--bdp-muted);
  font-size: 0.76rem;
  line-height: 1.65;
}

.bdp-cart-item__price,
.bdp-price-cell,
.bdp-table-cell-period,
.bdp-value {
  color: var(--bdp-text-soft);
  font-variant-numeric: tabular-nums;
}

.bdp-cart-item__price {
  justify-self: stretch;
  text-align: right;
}

.bdp-cart-option {
  padding-left: 18px;
  border-left: 1px solid rgba(116, 185, 230, 0.24);
}

.bdp-cart-categories,
.bdp-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.bdp-cart-category,
.bdp-product-card {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-card);
  background:
    linear-gradient(145deg, rgba(18, 35, 52, 0.66), rgba(4, 10, 17, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.bdp-cart-category-copy,
.bdp-product-card__body {
  min-width: 0;
  flex: 1;
  padding: 20px;
}

.bdp-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid var(--bdp-line-soft);
}

.bdp-product-card__title {
  margin: 0 0 8px;
  color: var(--bdp-text-strong);
  font-size: 1rem;
}

.bdp-product-card__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(116, 185, 230, 0.28);
  border-radius: 11px;
  background: rgba(38, 80, 116, 0.18);
  color: var(--bdp-accent);
}

.bdp-product-card__price,
.bdp-product-cycle {
  color: var(--bdp-muted);
  font-size: 0.72rem;
}

.bdp-domain-action,
.bdp-domain-choice {
  position: relative;
  min-width: 0;
  margin-bottom: 9px;
  padding: 14px 16px;
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-control);
  background: rgba(6, 17, 26, 0.66);
  transition: border-color var(--bdp-duration-fast) ease, background var(--bdp-duration-fast) ease;
}

.bdp-domain-action:has(input:checked),
.bdp-domain-choice:has(input:checked) {
  border-color: rgba(116, 185, 230, 0.54);
  background: rgba(38, 80, 116, 0.2);
}

.bdp-domain-action input[type="radio"],
.bdp-domain-choice input[type="radio"] {
  width: 17px;
  height: 17px;
  margin: 2px 9px 0 0;
  accent-color: var(--bdp-cyan);
  vertical-align: top;
}

.bdp-domain-action--register { border-left-color: rgba(35, 220, 173, 0.5); }
.bdp-domain-action--transfer { border-left-color: rgba(116, 185, 230, 0.55); }
.bdp-domain-action--own { border-left-color: rgba(139, 92, 255, 0.55); }
.bdp-domain-action--subdomain { border-left-color: rgba(244, 186, 36, 0.5); }

.bdp-domain-choice__body,
.bdp-domain-box,
.bdp-domain-custom,
.bdp-domain-config,
.bdp-domain-contact {
  min-width: 0;
}

.bdp-domain-choice__body {
  display: grid;
  gap: 5px;
}

.bdp-domain-box {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid var(--bdp-line-soft);
  border-radius: var(--bdp-radius-card);
  background: rgba(2, 7, 12, 0.24);
}

.bdp-domain-custom {
  padding: 12px 14px;
  border-left: 2px solid rgba(116, 185, 230, 0.34);
  background: rgba(38, 80, 116, 0.08);
}

.bdp-domain-table,
.bdp-domain-config {
  width: 100%;
}

.bdp-input-affix {
  min-width: max-content;
  display: flex;
  align-items: stretch;
}

.bdp-input-affix .bdp-input-addon {
  height: 100%;
}

.bdp-payment-method-picker {
  overflow: hidden;
}

.bdp-payment-methods {
  margin-bottom: 20px;
}

.bdp-card-choice {
  overflow: hidden;
  background: rgba(4, 10, 17, 0.7);
  transition: border-color var(--bdp-duration-fast) ease, background var(--bdp-duration-fast) ease;
}

.bdp-card-choice:has(input:checked) {
  border-color: rgba(116, 185, 230, 0.5);
  background: rgba(38, 80, 116, 0.13);
}

.bdp-card-choice > .bdp-card-header {
  padding: 0;
}

.bdp-card-choice__summary {
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 62px minmax(110px, 1fr) auto auto auto;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: var(--bdp-muted);
  cursor: pointer;
}

.bdp-card-choice__summary input {
  width: 17px;
  height: 17px;
  accent-color: var(--bdp-cyan);
}

.bdp-card-choice__brand {
  min-width: 0;
}

.bdp-card-brand {
  width: 48px;
  max-height: 30px;
  display: block;
  object-fit: contain;
}

.bdp-card-choice__number {
  color: var(--bdp-text-strong);
  font-variant-numeric: tabular-nums;
  font-weight: 650;
}

.bdp-card-choice__expiry,
.bdp-payment-expiry,
.bdp-card-choice__name {
  color: var(--bdp-subtle);
  font-size: 0.72rem;
}

.bdp-card-choice__panel[hidden] {
  display: none !important;
}

.bdp-payment-panel {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--bdp-line-soft);
  border-radius: var(--bdp-radius-control);
  background: rgba(2, 7, 12, 0.24);
}

.bdp-service-index > .bdp-tabs,
.bdp-service-index > .bdp-filter-panel,
.bdp-service-index > .bdp-table-scroll,
.bdp-service-index > .bdp-pagination-wrap {
  margin-top: 16px;
}

.bdp-service-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}

.bdp-slider {
  position: relative;
  min-height: 8px;
  border: 1px solid var(--bdp-line-strong);
  border-radius: 999px;
  background: rgba(145, 171, 211, 0.12);
}

.bdp-slider .ui-slider-range {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--bdp-violet), var(--bdp-cyan));
}

.bdp-slider .ui-slider-handle {
  top: 50%;
  width: 19px;
  height: 19px;
  margin: 0 0 0 -9px;
  border: 2px solid var(--bdp-canvas);
  border-radius: 50%;
  background: var(--bdp-text-strong);
  box-shadow: 0 0 0 1px var(--bdp-accent), 0 6px 16px rgba(0, 0, 0, 0.34);
  transform: translateY(-50%);
}

.bdp-slider__start,
.bdp-slider__end {
  position: absolute;
  top: 14px;
  color: var(--bdp-subtle);
  font-size: 0.62rem;
}

.bdp-slider__start { left: 0; }
.bdp-slider__end { right: 0; }

.bdp-slider__value {
  min-width: 72px;
  padding: 7px 9px;
  border: 1px solid var(--bdp-line-soft);
  border-radius: 7px;
  background: rgba(2, 7, 12, 0.34);
  color: var(--bdp-text-strong);
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.bdp-upgrade-row td {
  vertical-align: middle;
}

.bdp-upgrade-select,
.bdp-upgrade-checkbox {
  min-width: 0;
}

.bdp-check__label {
  color: var(--bdp-text-soft);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 610;
}

.bdp-table--plain {
  min-width: 0;
}

.bdp-table--plain th,
.bdp-table--plain td,
.bdp-table-plain {
  background: transparent;
}

.bdp-table-optional {
  color: var(--bdp-subtle);
  font-size: 0.68rem;
  font-weight: 520;
  letter-spacing: 0;
  text-transform: none;
}

.bdp-table-actions,
.bdp-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.bdp-upload-row td {
  vertical-align: middle;
}

.bdp-upload-name {
  max-width: 360px;
  color: var(--bdp-text-soft);
  overflow-wrap: anywhere;
}

.bdp-upload-size {
  color: var(--bdp-subtle);
  font-size: 0.7rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .bdp-cart-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .bdp-cart-aside {
    position: static;
  }

  .bdp-cart-categories,
  .bdp-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .bdp-cart-progress {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bdp-cart-item,
  .bdp-cart-subproduct,
  .bdp-cart-addon {
    grid-template-columns: minmax(0, 1fr);
  }

  .bdp-cart-item__price {
    justify-self: stretch;
    text-align: left;
  }

  .bdp-card-choice__summary {
    grid-template-columns: auto 54px minmax(0, 1fr);
  }

  .bdp-card-choice__expiry,
  .bdp-card-choice__name,
  .bdp-card-choice__summary .bdp-badge {
    grid-column: 3;
  }

  .bdp-service-metrics {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .bdp-cart-categories,
  .bdp-product-grid,
  .bdp-cart-progress {
    grid-template-columns: minmax(0, 1fr);
  }

  .bdp-cart-step {
    white-space: normal;
  }

  .bdp-card-choice__summary {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .bdp-card-choice__brand,
  .bdp-card-choice__number,
  .bdp-card-choice__expiry,
  .bdp-card-choice__name,
  .bdp-card-choice__summary .bdp-badge {
    grid-column: 2;
  }
}

/* Support workspace ---------------------------------------------------- */

.bdp-ticket-view,
.bdp-ticket-form,
.bdp-ticket-rating,
.bdp-reply-form,
.bdp-conversation,
.bdp-file-upload,
.bdp-upload-list,
.bdp-contact-overrides {
  min-width: 0;
}

.bdp-conversation {
  display: grid;
  gap: 14px;
  margin: 20px 0;
}

.bdp-message {
  min-width: 0;
  padding: 20px 22px;
  border: 1px solid var(--bdp-line);
  border-radius: var(--bdp-radius-card);
  background: rgba(5, 11, 19, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.bdp-message--team {
  margin-right: clamp(0px, 4vw, 54px);
  border-left-color: rgba(116, 185, 230, 0.56);
  background: linear-gradient(120deg, rgba(38, 80, 116, 0.16), rgba(5, 11, 19, 0.88) 55%);
}

.bdp-message--client {
  margin-left: clamp(0px, 4vw, 54px);
  border-right-color: rgba(139, 92, 255, 0.54);
  background: linear-gradient(240deg, rgba(139, 92, 255, 0.1), rgba(5, 11, 19, 0.88) 55%);
}

.bdp-message-meta {
  align-items: center;
}

.bdp-message-meta > div {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.bdp-message-meta strong {
  color: var(--bdp-text-strong);
  font-size: 0.76rem;
}

.bdp-message-meta time {
  color: var(--bdp-subtle);
  font-size: 0.64rem;
}

.bdp-message-body {
  padding: 16px 0;
}

.bdp-message-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--bdp-line-soft);
}

.bdp-attachments {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin: 4px 0 14px;
}

.bdp-attachment {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--bdp-line-soft);
  border-radius: var(--bdp-radius-control);
  background: rgba(2, 7, 12, 0.32);
}

.bdp-attachment .hbfile-placeholder-box {
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 10px;
  background: rgba(145, 171, 211, 0.035);
}

.bdp-attachment .hbfile-placeholder {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.bdp-attachment .hbfile-control {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border-top: 1px solid var(--bdp-line-soft);
}

.bdp-attachment .hbfile-title {
  overflow: hidden;
  color: var(--bdp-muted);
  font-size: 0.66rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bdp-attachment .bdp-icon-link {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--bdp-line-soft);
  border-radius: 7px;
  color: var(--bdp-link) !important;
  text-decoration: none;
}

.bdp-file-upload {
  display: grid;
  gap: 12px;
  margin: 16px 0;
}

.bdp-dropzone {
  min-height: 104px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px dashed rgba(116, 185, 230, 0.42);
  border-radius: var(--bdp-radius-card);
  background:
    radial-gradient(circle at 50% 0%, rgba(19, 214, 255, 0.08), transparent 60%),
    rgba(2, 7, 12, 0.3);
  color: var(--bdp-muted);
  font-size: 0.74rem;
  text-align: center;
  transition: border-color var(--bdp-duration-fast) ease, background var(--bdp-duration-fast) ease;
}

.bdp-dropzone.in,
.bdp-dropzone.hover,
.bdp-dropzone.is-active {
  border-color: var(--bdp-cyan);
  background-color: rgba(19, 214, 255, 0.08);
  color: var(--bdp-text-strong);
}

.bdp-file-picker {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  padding: 12px 14px;
  border: 1px solid var(--bdp-line-soft);
  border-radius: var(--bdp-radius-control);
  color: var(--bdp-text-soft);
  cursor: pointer;
}

.bdp-file-picker small {
  color: var(--bdp-subtle);
  font-size: 0.65rem;
}

.bdp-file-input {
  max-width: 100%;
  color: var(--bdp-muted);
  font-size: 0.7rem;
}

.bdp-upload-progress {
  display: grid;
  gap: 8px;
}

.bdp-upload-list {
  border: 1px solid var(--bdp-line-soft);
  border-radius: var(--bdp-radius-control);
}

.bdp-upload-list .bdp-table {
  min-width: 540px;
}

.bdp-contact-overrides {
  margin-top: 12px;
  border: 1px solid var(--bdp-line-soft);
  border-radius: var(--bdp-radius-control);
}

.bdp-contact-overrides:not(.is-visible) {
  display: none;
}

.bdp-kb-hint:not(:empty) {
  margin: 14px 0;
  padding: 14px 16px;
  border: 1px solid rgba(116, 185, 230, 0.24);
  border-radius: var(--bdp-radius-control);
  background: rgba(38, 80, 116, 0.1);
}

.bdp-reply-rating,
.bdp-rating-options {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.bdp-reply-rating__option,
.bdp-rating-option {
  min-width: 38px;
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  gap: 3px;
  padding: 8px 11px;
  border: 1px solid var(--bdp-line-strong);
  border-radius: var(--bdp-radius-control);
  background: rgba(2, 7, 12, 0.42);
  color: var(--bdp-muted);
  font-size: 0.7rem;
}

.bdp-rating-option {
  min-width: 92px;
}

.bdp-reply-rating__option:hover,
.bdp-rating-option:hover,
.bdp-reply-rating__option.is-selected,
.bdp-rating-option.is-selected {
  border-color: rgba(116, 185, 230, 0.58);
  background: rgba(38, 80, 116, 0.22);
  color: var(--bdp-text-strong);
}

.bdp-ticket-rating__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 12px 0 0;
}

.bdp-ticket-rating__meta > div {
  display: grid;
  gap: 2px;
}

.bdp-ticket-rating__meta dt {
  color: var(--bdp-subtle);
  font-size: 0.58rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bdp-ticket-rating__meta dd {
  margin: 0;
  color: var(--bdp-text-soft);
  font-size: 0.75rem;
}

@media (max-width: 620px) {
  .bdp-message--team,
  .bdp-message--client {
    margin-right: 0;
    margin-left: 0;
    padding: 17px;
  }

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