@font-face {
  font-family: "Droid Arabic Kufi";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/DroidKufi-Regular.woff") format("woff");
}

@font-face {
  font-family: "Droid Arabic Kufi";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/DroidKufi-Bold.woff") format("woff");
}

:root {
  --ink: #223029;
  --ink-700: #34493A;
  --ink-500: #4D5B51;
  --muted: #6B756F;
  --bg: #FFFDF9;
  --surface: #FFFDF9;
  --surface-2: #F2EEE8;
  --line: #E8DFD3;
  --line-soft: #EFE8DD;
  --brand: #536B58;
  --brand-700: #34493A;
  --brand-300: #B7C6B9;
  --brand-50: #E7EAE8;
  --brass: #C9613E;
  --brass-50: #F7E9E4;
  --ok: #3B7851;
  --ok-50: #E6EDE8;
  --warn: #A9700A;
  --warn-50: #F8EEDB;
  --bad: #AF2A20;
  --bad-50: #F8E6E4;
  --info: #2A5FA8;
  --info-50: #E4EBF7;
  --radius: 14px;
  --radius-sm: 13px;
  --radius-lg: 22px;
  --shadow-1: 0 1px 2px rgba(14,23,38,.05), 0 10px 26px -18px rgba(14,23,38,.35);
  --shadow-2: 0 2px 6px rgba(14,23,38,.06), 0 24px 48px -28px rgba(14,23,38,.45);
  --sans-ar: "Droid Arabic Kufi", Tahoma, Arial, sans-serif;
  --sans-la: Tahoma, Arial, sans-serif;
  --shell: 1180px;
  --cream: #F7EFE3;
  --paper-deep: #FEFAF5;
  --rail: 264px;
}

html[data-theme="dark"] {
  --cream: #26382B;
  --paper-deep: #1E3024;
  --ink: #F3F5EF;
  --ink-700: #D9E4D9;
  --ink-500: #B8C6B9;
  --muted: #9DAFA0;
  --bg: #18281E;
  --surface: #203326;
  --surface-2: #293D30;
  --line: #425549;
  --line-soft: #354A3C;
  --brand: #AEC4AF;
  --brand-700: #C4D8C5;
  --brand-300: #607D65;
  --brand-50: #314A37;
  --brass: #E69D7F;
  --brass-50: #48342B;
  --ok-50: #12301F;
  --warn-50: #2E2410;
  --bad-50: #331715;
  --info-50: #12233F;
  --shadow-1: 0 1px 2px rgba(0,0,0,.4), 0 12px 30px -20px rgba(0,0,0,.8);
  --shadow-2: 0 2px 8px rgba(0,0,0,.45), 0 28px 60px -34px rgba(0,0,0,.9);
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans-ar);
  font-size: 15.5px;
  line-height: 1.75;
  font-feature-settings: "ss01";
  -webkit-font-smoothing: antialiased;
}

html[lang="ar"] body {
  font-size: 15px;
  line-height: 1.75;
}

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4 {
  font-weight: 700;
  line-height: 1.55;
}

html[lang="ar"] h1 {
  font-size: clamp(1.55rem, 1.1rem + 1.8vw, 2.35rem);
}

html[lang="ar"] .dp-btn {
  font-weight: 400;
  padding-block: .72rem;
}

html[lang="ar"] .dp-btn.dp-sm {
  padding-block: .42rem;
}

html[lang="ar"] .dp-badge {
  font-size: .72rem;
  padding-block: .25rem;
}

html[lang="ar"] table.dp-data thead th {
  font-size: .78rem;
}

html[lang="ar"] .dp-brand {
  font-size: 1rem;
}

html[lang="ar"] .dp-brand small {
  font-size: .6rem;
  letter-spacing: .04em;
}

html[lang="ar"] .dp-mainnav a {
  font-size: .88rem;
  padding-inline: .65rem;
}

html:not([lang="ar"]):not([lang="fa"]):not([lang="he"]):not([lang="ur"]) body {
  font-family: var(--sans-la);
  line-height: 1.65;
}

img,
svg {
  max-width: 100%;
  vertical-align: middle;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 .5em;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -.01em;
}

h1 {
  font-size: clamp(1.9rem, 1.3rem + 2.2vw, 2.9rem);
  font-weight: 650;
}

h2 {
  font-size: clamp(1.35rem, 1.05rem + 1.1vw, 1.9rem);
}

h3 {
  font-size: 1.12rem;
}

p {
  margin: 0 0 1rem;
  max-width: 72ch;
}

ul,
ol {
  margin: 0 0 1rem;
  padding-inline-start: 1.15rem;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 1.6rem 0;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

.dp-shell {
  width: min(var(--shell), 100% - 2.4rem);
  margin-inline: auto;
}

.dp-stack > * + * {
  margin-block-start: 1rem;
}

.dp-row {
  display: flex;
  gap: .6rem;
  align-items: center;
  flex-wrap: wrap;
}

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

.dp-push {
  margin-inline-start: auto;
}

.dp-grid {
  display: grid;
  gap: 1.1rem;
}

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

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

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

.dp-section {
  padding-block: clamp(2.6rem, 5vw, 4.6rem);
}

.dp-muted {
  color: var(--muted);
}

.dp-small {
  font-size: .85rem;
}

.dp-center {
  text-align: center;
}

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

.dp-num {
  font-variant-numeric: tabular-nums;
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

.dp-brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 650;
  color: inherit;
  font-size: 1.12rem;
}

.dp-brand:hover {
  text-decoration: none;
}

.dp-brand .dp-mark {
  inline-size: 34px;
  block-size: 34px;
  flex: none;
}

.dp-brand small {
  display: block;
  font-size: .66rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .06em;
  line-height: 1;
}

.dp-mainnav {
  display: flex;
  gap: .2rem;
  align-items: center;
}

.dp-mainnav a {
  color: var(--ink-700);
  padding: .45rem .8rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .95rem;
}

.dp-mainnav a:hover {
  background: var(--surface-2);
  text-decoration: none;
}

.dp-mainnav a[aria-current="page"] {
  color: var(--brand);
  background: var(--brand-50);
}

.dp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .62rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  font-weight: 550;
  font-size: .95rem;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.dp-btn:hover {
  background: var(--brand-700);
  text-decoration: none;
  color: #fff;
}

.dp-btn.dp-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink-700);
}

.dp-btn.dp-ghost:hover {
  background: var(--surface-2);
  border-color: var(--brand-300);
  color: var(--brand);
}

.dp-btn.dp-quiet {
  background: var(--surface-2);
  color: var(--ink-700);
}

.dp-btn.dp-quiet:hover {
  background: var(--line-soft);
  color: var(--ink);
}

.dp-btn.dp-brass {
  background: var(--brass);
  color: #1B1405;
}

.dp-btn.dp-brass:hover {
  background: #A87C1F;
  color: #1B1405;
}

.dp-btn.dp-danger {
  background: var(--bad);
}

.dp-btn.dp-danger:hover {
  background: #8E2018;
}

.dp-btn.dp-sm {
  padding: .34rem .7rem;
  font-size: .84rem;
}

.dp-btn.dp-lg {
  padding: .82rem 1.6rem;
  font-size: 1.02rem;
}

.dp-btn.dp-block {
  inline-size: 100%;
}

.dp-btn[disabled] {
  opacity: .5;
  pointer-events: none;
}

.dp-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}

.dp-card > .dp-card-head {
  padding: .95rem 1.2rem;
  border-block-end: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-wrap: wrap;
}

.dp-card > .dp-card-head h2,
.dp-card > .dp-card-head h3 {
  margin: 0;
  font-size: 1.02rem;
}

.dp-card > .dp-card-body {
  padding: 1.2rem;
}

.dp-card > .dp-card-foot {
  padding: .85rem 1.2rem;
  border-block-start: 1px solid var(--line-soft);
  background: var(--surface-2);
  border-end-end-radius: var(--radius);
  border-end-start-radius: var(--radius);
}

.dp-note {
  border: 1px solid var(--line);
  border-inline-start: 3px solid var(--brand);
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
}

.dp-note.dp-warn {
  border-inline-start-color: var(--warn);
  background: var(--warn-50);
}

.dp-note.dp-bad {
  border-inline-start-color: var(--bad);
  background: var(--bad-50);
}

.dp-note.dp-ok {
  border-inline-start-color: var(--ok);
  background: var(--ok-50);
}

.dp-note p:last-child {
  margin-bottom: 0;
}

.dp-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .78rem;
  font-weight: 550;
  padding: .15rem .55rem;
  border-radius: 100px;
  background: var(--surface-2);
  color: var(--ink-500);
  border: 1px solid var(--line);
}

.dp-badge.dp-ok {
  background: var(--ok-50);
  color: var(--ok);
  border-color: transparent;
}

.dp-badge.dp-warn {
  background: var(--warn-50);
  color: var(--warn);
  border-color: transparent;
}

.dp-badge.dp-bad {
  background: var(--bad-50);
  color: var(--bad);
  border-color: transparent;
}

.dp-badge.dp-info {
  background: var(--info-50);
  color: var(--info);
  border-color: transparent;
}

.dp-badge::before {
  content: "";
  inline-size: 6px;
  block-size: 6px;
  border-radius: 50%;
  background: currentColor;
}

.dp-badge.dp-plain::before {
  display: none;
}

.dp-table-wrap {
  overflow-x: auto;
}

table.dp-data {
  inline-size: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}

table.dp-data th,
table.dp-data td {
  padding: .72rem .85rem;
  text-align: start;
  border-block-end: 1px solid var(--line-soft);
}

table.dp-data thead th {
  background: var(--surface-2);
  color: var(--ink-500);
  font-weight: 550;
  font-size: .82rem;
  white-space: nowrap;
}

table.dp-data tbody tr:hover {
  background: var(--surface-2);
}

table.dp-data tbody tr:last-child td {
  border-block-end: 0;
}

table.dp-data td .dp-btn.dp-sm {
  white-space: nowrap;
}

.dp-field {
  display: block;
  margin-block-end: 1rem;
}

.dp-field > label,
.dp-label {
  display: block;
  font-size: .88rem;
  font-weight: 550;
  margin-block-end: .35rem;
  color: var(--ink-700);
}

.dp-input,
select.dp-input,
textarea.dp-input {
  inline-size: 100%;
  padding: .62rem .8rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}

.dp-input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-50);
}

.dp-input::placeholder {
  color: var(--muted);
}

textarea.dp-input {
  min-block-size: 140px;
  resize: vertical;
}

select.dp-input {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-inline-end: 2rem;
}

html[dir="rtl"] select.dp-input {
  background-position: left 1.1rem top 55%, left .75rem top 55%;
}

html[dir="ltr"] select.dp-input {
  background-position: right .75rem top 55%, right 1.1rem top 55%;
}

.dp-hint {
  font-size: .82rem;
  color: var(--muted);
  margin-block-start: .3rem;
}

.dp-check {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  font-size: .9rem;
}

.dp-check input {
  margin-block-start: .38rem;
  accent-color: var(--brand);
}

fieldset {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  margin: 0 0 1.1rem;
}

legend {
  padding-inline: .45rem;
  font-weight: 600;
  font-size: .92rem;
}

.dp-domainbar {
  display: flex;
  gap: .5rem;
  background: var(--surface);
  padding: .5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
  max-inline-size: 640px;
  flex-wrap: wrap;
}

.dp-domainbar .dp-input {
  flex: 1 1 260px;
  border-color: transparent;
  background: var(--surface-2);
}

.dp-domainbar select.dp-input {
  flex: 0 0 120px;
}

.dp-tlds {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin-block-start: 1rem;
  color: #A8BACC;
  font-size: .88rem;
}

.dp-tlds b {
  color: var(--brass);
  font-weight: 600;
}

.dp-plan {
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
}

.dp-plan .dp-price {
  font-size: 2.1rem;
  font-weight: 650;
  letter-spacing: -.02em;
  line-height: 1.15;
}

.dp-plan .dp-price span {
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
}

.dp-plan ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.4rem;
  font-size: .92rem;
}

.dp-plan ul li {
  padding-block: .34rem;
  border-block-end: 1px dashed var(--line-soft);
}

.dp-plan ul li:last-child {
  border: 0;
}

.dp-plan .dp-btn {
  margin-block-start: auto;
}

.dp-plan.dp-featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-50), var(--shadow-2);
}

.dp-plan .dp-tag {
  align-self: flex-start;
  background: var(--brass-50);
  color: var(--brass);
  font-size: .76rem;
  font-weight: 600;
  padding: .1rem .55rem;
  border-radius: 100px;
  margin-block-end: .5rem;
}

.dp-feature {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}

.dp-feature .dp-ico {
  flex: none;
  inline-size: 40px;
  block-size: 40px;
  border-radius: 11px;
  background: var(--brand-50);
  color: var(--brand);
  display: grid;
  place-items: center;
}

.dp-feature h3 {
  margin-block-end: .2rem;
  font-size: 1rem;
}

.dp-feature p {
  margin: 0;
  font-size: .92rem;
  color: var(--muted);
}

.dp-portal {
  display: grid;
  grid-template-columns: var(--rail) minmax(0,1fr);
  gap: 1.5rem;
  align-items: start;
  padding-block: 1.6rem 3rem;
}

.dp-rail {
  position: sticky;
  inset-block-start: 86px;
}

.dp-rail nav {
  display: flex;
  flex-direction: column;
  padding: .5rem;
}

.dp-rail nav a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .7rem;
  border-radius: var(--radius-sm);
  color: var(--ink-700);
  font-size: .93rem;
}

.dp-rail nav a:hover {
  background: var(--surface-2);
  text-decoration: none;
}

.dp-rail nav a[aria-current="page"] {
  background: var(--brand-50);
  color: var(--brand);
  font-weight: 550;
}

.dp-rail nav a .dp-count {
  margin-inline-start: auto;
  font-size: .78rem;
  color: var(--muted);
}

.dp-rail .dp-rail-title {
  font-size: .76rem;
  color: var(--muted);
  padding: .7rem .7rem .3rem;
  font-weight: 600;
}

.dp-rail svg {
  flex: none;
}

.dp-page-head {
  padding-block: 1.2rem .4rem;
}

.dp-page-head h1 {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  margin-block-end: .2rem;
}

.dp-crumbs {
  font-size: .84rem;
  color: var(--muted);
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
}

.dp-crumbs span::after {
  content: "/";
  margin-inline-start: .4rem;
  color: var(--line);
}

.dp-crumbs span:last-child::after {
  content: none;
}

.dp-tile {
  padding: 1rem 1.1rem;
  display: flex;
  gap: .9rem;
  align-items: center;
}

.dp-tile .dp-ico {
  inline-size: 42px;
  block-size: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  color: var(--ink-500);
  flex: none;
}

.dp-tile .dp-v {
  font-size: 1.5rem;
  font-weight: 650;
  line-height: 1.2;
}

.dp-tile .dp-k {
  font-size: .84rem;
  color: var(--muted);
}

.dp-tile.dp-acc-brand .dp-ico {
  background: var(--brand-50);
  color: var(--brand);
}

.dp-tile.dp-acc-brass .dp-ico {
  background: var(--brass-50);
  color: var(--brass);
}

.dp-tile.dp-acc-bad .dp-ico {
  background: var(--bad-50);
  color: var(--bad);
}

.dp-tile.dp-acc-info .dp-ico {
  background: var(--info-50);
  color: var(--info);
}

.dp-meter {
  block-size: 7px;
  background: var(--line-soft);
  border-radius: 100px;
  overflow: hidden;
}

.dp-meter i {
  display: block;
  block-size: 100%;
  background: var(--brand);
  border-radius: 100px;
}

.dp-meter i.dp-warn {
  background: var(--warn);
}

.dp-meter i.dp-bad {
  background: var(--bad);
}

.dp-tabs {
  display: flex;
  gap: .3rem;
  border-block-end: 1px solid var(--line);
  margin-block-end: 1.2rem;
  overflow-x: auto;
}

.dp-tabs a,
.dp-tabs button {
  padding: .55rem .9rem;
  border: 0;
  background: none;
  cursor: pointer;
  color: var(--ink-500);
  border-block-end: 2px solid transparent;
  margin-block-end: -1px;
  white-space: nowrap;
  font-size: .93rem;
}

.dp-tabs a:hover,
.dp-tabs button:hover {
  color: var(--ink);
  text-decoration: none;
}

.dp-tabs [aria-selected="true"],
.dp-tabs a[aria-current="page"] {
  color: var(--brand);
  border-block-end-color: var(--brand);
  font-weight: 550;
}

.dp-msg {
  display: grid;
  grid-template-columns: 44px minmax(0,1fr);
  gap: .9rem;
  padding: 1.1rem 1.2rem;
  border-block-end: 1px solid var(--line-soft);
}

.dp-msg:last-child {
  border-block-end: 0;
}

.dp-msg .dp-avatar {
  inline-size: 44px;
  block-size: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  color: var(--ink-500);
  font-weight: 600;
}

.dp-msg.dp-staff .dp-avatar {
  background: var(--brand);
  color: #fff;
}

.dp-msg .dp-who {
  font-weight: 600;
  font-size: .94rem;
}

.dp-msg .dp-when {
  font-size: .8rem;
  color: var(--muted);
}

.dp-msg .dp-body {
  margin-block-start: .35rem;
  font-size: .94rem;
}

.dp-msg .dp-body p:last-child {
  margin-bottom: 0;
}

.dp-msg.dp-staff {
  background: var(--surface-2);
}

.dp-inv-head {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.dp-inv-total {
  min-inline-size: 280px;
  margin-inline-start: auto;
}

.dp-inv-total table {
  inline-size: 100%;
  font-size: .93rem;
}

.dp-inv-total td {
  padding: .35rem 0;
}

.dp-inv-total td:last-child {
  text-align: end;
  font-variant-numeric: tabular-nums;
}

.dp-inv-total tr.dp-grand td {
  font-size: 1.1rem;
  font-weight: 650;
  border-block-start: 1px solid var(--line);
  padding-block-start: .6rem;
}

.dp-cart-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) 340px;
  gap: 1.3rem;
  align-items: start;
}

.dp-summary {
  position: sticky;
  inset-block-start: 86px;
}

.dp-steps {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin-block-end: 1.4rem;
  font-size: .88rem;
}

.dp-steps li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: .45rem;
  color: var(--muted);
  padding: .3rem .75rem;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.dp-steps li b {
  inline-size: 20px;
  block-size: 20px;
  border-radius: 50%;
  background: var(--surface-2);
  display: grid;
  place-items: center;
  font-size: .75rem;
}

.dp-steps li.dp-now {
  color: var(--brand);
  border-color: var(--brand-300);
  background: var(--brand-50);
}

.dp-steps li.dp-now b {
  background: var(--brand);
  color: #fff;
}

.dp-steps li.dp-done {
  color: var(--ok);
}

.dp-steps li.dp-done b {
  background: var(--ok-50);
  color: var(--ok);
}

.dp-kb-item {
  padding: 1rem 1.2rem;
  border-block-end: 1px solid var(--line-soft);
}

.dp-kb-item:last-child {
  border: 0;
}

.dp-kb-item h3 {
  margin-block-end: .15rem;
  font-size: 1rem;
}

.dp-kb-item p {
  margin: 0;
  font-size: .9rem;
  color: var(--muted);
}

.dp-article-meta {
  font-size: .84rem;
  color: var(--muted);
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
}

.dp-empty {
  text-align: center;
  padding: 2.6rem 1.2rem;
}

.dp-empty .dp-ico {
  inline-size: 54px;
  block-size: 54px;
  border-radius: 16px;
  background: var(--surface-2);
  color: var(--muted);
  display: grid;
  place-items: center;
  margin: 0 auto .8rem;
}

.dp-payments {
  display: flex;
  gap: .5rem;
  align-items: center;
  opacity: .8;
}

.dp-payments span {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
  padding: .1rem .5rem;
  font-size: .74rem;
}

body {
  min-block-size: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

.dp-auth {
  display: grid;
  place-items: center;
  padding-block: clamp(2rem, 6vw, 4.5rem);
}

.dp-auth .dp-card {
  inline-size: min(440px, 100%);
}

.dp-auth .dp-card-body {
  padding: 1.6rem;
}

.dp-auth h1 {
  font-size: 1.5rem;
  margin-block-end: .3rem;
}

.dp-sso {
  display: grid;
  gap: .55rem;
}

.dp-divider {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: var(--muted);
  font-size: .82rem;
  margin-block: 1.1rem;
}

.dp-divider::before,
.dp-divider::after {
  content: "";
  flex: 1;
  border-block-start: 1px solid var(--line);
}

@media (max-width: 1040px) {
  .dp-portal {
    grid-template-columns: 1fr;
  }

  .dp-rail {
    position: static;
  }

  .dp-rail nav {
    flex-direction: row;
    overflow-x: auto;
  }

  .dp-rail nav a {
    white-space: nowrap;
  }

  .dp-rail .dp-rail-title {
    display: none;
  }

  .dp-cart-grid {
    grid-template-columns: 1fr;
  }

  .dp-summary {
    position: static;
  }

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

@media (max-width: 860px) {
  .dp-g3 {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .dp-mainnav {
    display: none;
    position: absolute;
    inset-block-start: 70px;
    inset-inline: 0;
    background: var(--surface);
    border-block-end: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: .6rem;
    gap: .1rem;
    box-shadow: var(--shadow-2);
  }

  .dp-mainnav.dp-open {
    display: flex;
  }
}

@media (max-width: 640px) {
  .dp-g2,
  .dp-g3,
  .dp-g4 {
    grid-template-columns: 1fr;
  }

  .dp-hide-sm {
    display: none !important;
  }

  .dp-card > .dp-card-body {
    padding: 1rem;
  }

  table.dp-data th,
  table.dp-data td {
    padding: .6rem .55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

@media print {
  .dp-rail,
  .noprint {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .dp-card {
    box-shadow: none;
    border-color: #ccc;
  }

  .dp-portal {
    grid-template-columns: 1fr;
  }
}

:root {
  --primary: var(--brand);
  --primary-lifted: var(--brand-700);
  --primary-accented: var(--brand-700);
  --secondary: var(--ink-500);
  --secondary-lifted: var(--ink-700);
  --text: var(--ink);
  --text-muted: var(--muted);
  --text-lifted: var(--muted);
  --text-accented: var(--ink-700);
  --border: var(--line);
  --border-muted: var(--line-soft);
  --border-lifted: var(--brand-300);
  --bg-muted: var(--bg);
  --bg-lifted: var(--surface-2);
  --bg-accented: var(--line-soft);
  --bg-inverted: #0e1726;
  --success: var(--ok);
  --error: var(--bad);
  --warning: var(--warn);
  --rounding-sm: 9px;
  --rounding-md: 14px;
  --rounding-lg: 22px;
  --sans-la: Tahoma,Arial,sans-serif;
}

html {
  font-size: 16px;
  scroll-padding-top: 100px;
}

body.dp-theme {
  color: var(--ink);
  background: var(--bg);
  text-align: start;
  overflow-x: clip;
}

body.dp-theme p {
  max-width: none;
}

body.dp-theme button,
body.dp-theme input,
body.dp-theme select,
body.dp-theme textarea {
  font-family: inherit;
}

body.dp-theme h1,
body.dp-theme h2,
body.dp-theme h3,
body.dp-theme h4,
body.dp-theme h5,
body.dp-theme h6 {
  color: var(--ink);
  font-family: inherit;
}

.dp-skip {
  position: fixed;
  top: -100px;
  inset-inline-start: 16px;
  background: var(--brand);
  color: white;
  padding: 12px 20px;
  z-index: 2000;
  border-radius: 8px;
}

.dp-skip:focus {
  top: 10px;
  color: white;
}

.dp-brand {
  flex-shrink: 0;
}

.dp-brand small {
  margin-top: 6px;
  letter-spacing: .08em;
  font-size: 9px;
}

.dp-cart-button {
  color: var(--brand);
  border-color: var(--line);
  font-size: 14px;
  padding: 8px 11px;
}

.dp-cart-button span {
  font-family: Tahoma,Arial;
}

@media (max-width:560px) {
  .dp-shell {
    width: calc(100% - 28px);
  }

  .dp-brand small {
    font-size: 8px;
  }
}

body.dp-theme #main-body {
  padding: 0;
  margin: 0;
  min-height: 48vh;
  background: transparent;
  flex: 1 0 auto;
}

.dp-workspace {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 24px;
  padding-block: 28px 60px;
  align-items: start;
}

.dp-workspace.dp-with-sidebar {
  grid-template-columns: 250px minmax(0,1fr);
}

.dp-main-content {
  min-width: 0;
}

.dp-main-content.primary-content {
  padding: 0;
}

.dp-rail {
  position: sticky;
  top: 100px;
  min-width: 0;
}

.dp-sidebar-toggle {
  display: none;
}

.dp-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0 0 15px;
  border: 0;
  color: var(--muted);
  font-size: 12px;
}

.dp-breadcrumb .breadcrumb-item+.breadcrumb-item {
  padding-inline-start: .5rem;
  padding-left: 0;
}

.dp-breadcrumb .breadcrumb-item+.breadcrumb-item:before {
  float: none;
  padding-inline-end: .5rem;
}

.dp-page-head {
  margin-bottom: 24px;
}

.dp-page-head h1 {
  font-size: clamp(1.4rem,2.5vw,2rem);
}

.dp-page-head p {
  margin-bottom: 8px;
}

.dp-page-head .dp-kicker {
  color: var(--brand);
  font-size: 12px;
}

@media (max-width:1040px) {
  .dp-workspace.dp-with-sidebar {
    grid-template-columns: 1fr;
  }

  .dp-rail {
    position: static;
  }

  .dp-sidebar-toggle {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }

  .dp-sidebars {
    display: none;
    margin-top: 12px;
  }

  .dp-sidebars.dp-expanded {
    display: block;
  }

  .dp-workspace {
    padding-block: 20px 40px;
  }
}

body.dp-theme .card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-1);
  color: var(--ink);
}

body.dp-theme .card-header {
  padding: 16px 18px;
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line-soft);
  border-radius: 14px 14px 0 0;
}

body.dp-theme .card-header .card-title {
  font-size: 14px;
  line-height: 1.8;
}

body.dp-theme .card-body {
  padding: 20px;
}

body.dp-theme .card-footer {
  padding: 14px 18px;
  background: var(--surface-2);
  color: var(--ink-700);
  border-color: var(--line-soft);
  border-radius: 0 0 14px 14px;
}

body.dp-theme .card-accent-blue,
body.dp-theme .card-accent-gold,
body.dp-theme .card-accent-green,
body.dp-theme .card-accent-red {
  border-top-color: var(--brand);
}

body.dp-theme .list-group-item {
  color: var(--ink-700);
  background: var(--surface);
  border-color: var(--line-soft);
  padding: 12px 16px;
  font-size: 13px;
}

body.dp-theme .list-group-item.active {
  background: var(--brand-50);
  border-color: var(--brand-300);
  color: var(--brand);
}

body.dp-theme .list-group-item-action:hover {
  background: var(--surface-2);
  color: var(--brand);
}

body.dp-theme .sidebar .card {
  overflow: visible;
  margin-bottom: 16px;
}

body.dp-theme .sidebar .card-title {
  font-size: 13px;
}

body.dp-theme .sidebar .card-body {
  padding: 14px;
}

body.dp-theme .sidebar .list-group-item {
  font-size: 12px;
}

body.dp-theme .btn {
  font-family: inherit;
  border-radius: 9px;
  box-shadow: none!important;
  text-shadow: none;
  padding: .65rem 1rem;
  font-size: .85rem;
  font-weight: 400;
  line-height: 1.65;
  transition: background .15s,color .15s,border-color .15s;
}

body.dp-theme .btn-primary,
body.dp-theme .btn-success,
body.dp-theme .btn-info {
  background: var(--brand);
  border-color: var(--brand);
  color: white;
}

body.dp-theme .btn-primary:hover,
body.dp-theme .btn-success:hover,
body.dp-theme .btn-info:hover {
  background: var(--brand-700);
  border-color: var(--brand-700);
}

body.dp-theme .btn-default,
body.dp-theme .btn-secondary,
body.dp-theme .btn-light {
  background: var(--surface-2);
  border-color: var(--line);
  color: var(--ink-700);
}

body.dp-theme .btn-default:hover,
body.dp-theme .btn-secondary:hover {
  background: var(--brand-50);
  border-color: var(--brand-300);
  color: var(--brand);
}

body.dp-theme .btn-outline-primary {
  color: var(--brand);
  border-color: var(--brand);
  background: transparent;
}

body.dp-theme .btn-outline-primary:hover {
  background: var(--brand);
  color: #fff;
}

body.dp-theme .btn-danger {
  background: var(--bad);
  border-color: var(--bad);
  color: #fff;
}

body.dp-theme .btn-warning {
  background: var(--brass);
  border-color: var(--brass);
  color: #1b1405;
}

body.dp-theme .btn-sm,
body.dp-theme .btn-xs {
  padding: .4rem .7rem;
  font-size: .75rem;
}

.dp-btn {
  box-shadow: none!important;
}

.dp-btn i {
  flex-shrink: 0;
}

body.dp-theme .form-control,
body.dp-theme .custom-select {
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface);
  color: var(--ink);
  font-family: inherit;
  font-size: 13px;
  min-height: 44px;
  height: auto;
  line-height: 1.7;
  padding: 10px 12px;
  box-shadow: none;
}

body.dp-theme .form-control:focus,
body.dp-theme .custom-select:focus {
  border-color: var(--brand-300);
  box-shadow: 0 0 0 3px var(--brand-50);
}

body.dp-theme select.form-control {
  padding-inline-end: 28px;
}

body.dp-theme .form-control:disabled,
body.dp-theme .form-control[readonly] {
  background: var(--surface-2);
  color: var(--muted);
}

body.dp-theme textarea.form-control {
  min-height: 115px;
}

body.dp-theme .form-group label {
  font-size: 12px;
  font-weight: 400;
}

body.dp-theme .input-group-text {
  background: var(--surface-2);
  border-color: var(--line);
  color: var(--muted);
  border-radius: 9px;
}

body.dp-theme .input-group>.form-control {
  min-width: 0;
}

body.dp-theme .input-group-prepend .input-group-text {
  border-start-end-radius: 0;
  border-end-end-radius: 0;
}

body.dp-theme .input-group-append .btn {
  border-start-start-radius: 0;
  border-end-start-radius: 0;
}

body.dp-theme .form-check-input {
  accent-color: var(--brand);
}

body.dp-theme input[type=email],
body.dp-theme input[type=url],
body.dp-theme input[type=tel] {
  direction: ltr;
  text-align: start;
}

body.dp-theme .help-block,
body.dp-theme .text-muted {
  color: var(--muted)!important;
}

body.dp-theme .form-text {
  font-size: 12px;
}

body.dp-theme .table {
  color: var(--ink);
  background: var(--surface);
  font-size: 13px;
}

body.dp-theme .table th {
  background: var(--surface-2);
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  border-color: var(--line);
  white-space: nowrap;
}

body.dp-theme .table td {
  border-color: var(--line-soft);
  vertical-align: middle;
  padding: 14px 12px;
}

body.dp-theme .table-striped tbody tr:nth-of-type(odd) {
  background: var(--surface);
}

body.dp-theme .table-hover tbody tr:hover {
  background: var(--surface-2);
  color: var(--ink);
}

body.dp-theme .dataTables_wrapper {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 20px;
}

body.dp-theme .dataTables_wrapper .dataTables_filter input {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  padding: 8px;
  max-width: 100%;
  margin-inline-start: 8px;
}

body.dp-theme .dataTables_wrapper select {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px;
  background: var(--surface);
  color: var(--ink);
}

body.dp-theme .dataTables_info,
body.dp-theme .dataTables_length {
  font-size: 12px;
  color: var(--muted);
}

body.dp-theme .page-link {
  background: var(--surface);
  border-color: var(--line);
  color: var(--brand);
}

body.dp-theme .page-item.active .page-link {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

body.dp-theme .status,
body.dp-theme .badge {
  font-family: inherit;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.6;
}

body.dp-theme .status-active,
body.dp-theme .status-paid {
  color: var(--ok);
  background: var(--ok-50);
  border-color: var(--ok-50);
}

body.dp-theme .status-pending,
body.dp-theme .status-unpaid {
  color: var(--warn);
  background: var(--warn-50);
  border-color: var(--warn-50);
}

body.dp-theme .status-suspended,
body.dp-theme .status-cancelled {
  color: var(--bad);
  background: var(--bad-50);
  border-color: var(--bad-50);
}

body.dp-theme .alert {
  border-radius: 9px;
  border-width: 1px;
  border-inline-start-width: 3px;
  padding: 15px 18px;
  font-size: 13px;
}

body.dp-theme .alert-info {
  background: var(--info-50);
  border-color: var(--info);
  color: var(--ink);
}

body.dp-theme .alert-success {
  background: var(--ok-50);
  border-color: var(--ok);
  color: var(--ink);
}

body.dp-theme .alert-warning {
  background: var(--warn-50);
  border-color: var(--warn);
  color: var(--ink);
}

body.dp-theme .alert-danger {
  background: var(--bad-50);
  border-color: var(--bad);
  color: var(--ink);
}

body.dp-theme .alert p:last-child {
  margin-bottom: 0;
}

body.dp-theme .tiles {
  padding: 0;
  background: none;
  border: 0;
}

body.dp-theme .tiles .row {
  margin-inline: -6px;
}

body.dp-theme .tiles .row>div {
  padding: 6px;
}

body.dp-theme .tiles .tile {
  display: block;
  position: relative;
  padding: 18px 14px 16px;
  padding-inline-start: 65px;
  min-height: 105px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-1);
  text-align: start;
  color: var(--ink);
}

body.dp-theme .tiles .tile:hover {
  border-color: var(--brand-300);
  text-decoration: none;
}

body.dp-theme .tiles .tile>i {
  position: absolute;
  inset-inline-start: 14px;
  top: 25px;
  background: var(--brand-50);
  color: var(--brand);
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  float: none;
  margin: 0;
}

body.dp-theme .tiles .tile .stat {
  font-family: Tahoma,Arial;
  font-size: 27px;
  line-height: 1.3;
}

body.dp-theme .tiles .tile .title {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

body.dp-theme .tiles .highlight {
  display: none;
}

body.dp-theme .client-home-cards .card {
  margin-bottom: 20px;
}

body.dp-theme .nav-tabs {
  border-color: var(--line);
  gap: 3px;
  flex-wrap: wrap;
}

body.dp-theme .nav-tabs .nav-link {
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  color: var(--ink-500);
  font-size: 12px;
  padding: 12px 14px;
  background: transparent;
}

body.dp-theme .nav-tabs .nav-link.active {
  border-bottom-color: var(--brand);
  color: var(--brand);
  background: var(--brand-50);
}

body.dp-theme .nav-pills .nav-link.active {
  background: var(--brand);
}

body.dp-theme .tab-content {
  padding-top: 18px;
}

body.dp-theme .progress {
  background: var(--line-soft);
  border-radius: 30px;
  height: 8px;
}

body.dp-theme .progress-bar {
  background: var(--brand);
}

body.dp-theme .ticket-reply {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
}

body.dp-theme .ticket-reply.staff {
  background: var(--surface-2);
}

body.dp-theme .ticket-reply .user {
  background: var(--brand-50);
  color: var(--ink);
}

body.dp-theme .ticket-reply .message {
  color: var(--ink);
  overflow-wrap: anywhere;
}

body.dp-theme .ticket-reply .attachments {
  border-color: var(--line);
}

body.dp-theme .modal-content {
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
}

body.dp-theme .modal-header,
body.dp-theme .modal-footer {
  border-color: var(--line);
}

body.dp-theme .modal-title {
  font-size: 17px;
}

body.dp-theme .modal .close {
  color: var(--muted);
  opacity: 1;
}

body.dp-theme .popover {
  background: var(--surface);
  border-color: var(--line);
  border-radius: 12px;
  font-family: inherit;
  max-width: min(380px,92vw);
}

body.dp-theme .popover-body {
  color: var(--ink);
}

body.dp-theme .popover-header {
  background: var(--surface-2);
  border-color: var(--line);
  color: var(--ink);
}

body.dp-theme .dp-auth-form {
  max-width: 540px;
  margin: 20px auto 40px;
}

body.dp-theme .login-form .card {
  width: 100%;
}

body.dp-theme .providerLinkingFeedback {
  max-width: 540px;
  margin-inline: auto;
}

.dp-domainbar {
  margin-top: 26px;
  max-width: 730px;
}

.dp-domainbar .dp-input {
  direction: ltr;
  color: #0e1726;
  background: #fff!important;
  min-width: 0;
}

.dp-domain-hint {
  font-size: 11px;
  color: #afc2d2!important;
  margin-top: 10px;
}

.dp-surface-section {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.dp-section-heading {
  margin-bottom: 28px;
}

.dp-eyebrow {
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--brand);
  margin-bottom: 10px;
}

.dp-service-card {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: none;
}

.dp-service-card h3 {
  margin: 0;
  font-size: 17px;
}

.dp-service-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.dp-service-card .dp-btn {
  margin-top: auto;
  align-self: flex-start;
}

.dp-service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--brand-50);
  color: var(--brand);
  font-size: 22px;
  margin-bottom: 8px;
}

.dp-direction-icon {
  margin-inline-start: 8px;
}

[dir=ltr] .dp-direction-icon {
  transform: rotate(180deg);
}

.dp-product-grid {
  margin-top: 26px;
}

.dp-product-category {
  color: var(--brand);
  font-size: 11px;
  margin-bottom: 12px;
}

.dp-plan h3 {
  font-size: 19px;
  line-height: 1.7;
}

.dp-plan .dp-price {
  font-family: Tahoma,Arial;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-block: 12px;
}

.dp-plan .dp-price strong {
  font-size: 28px;
  align-self: flex-start;
  color: var(--ink);
}

.dp-plan .dp-price span {
  font-family: inherit;
  font-size: 12px;
}

.dp-product-description {
  font-size: 13px;
  line-height: 2;
  color: var(--muted);
  padding-block: 18px 24px;
  overflow-wrap: anywhere;
}

.dp-plan .dp-btn {
  width: 100%;
}

.dp-process {
  margin-top: 28px;
}

.dp-process>div {
  padding-inline-end: 22px;
}

.dp-process p {
  color: var(--muted);
  font-size: 13px;
}

.dp-step-number {
  display: grid;
  place-items: center;
  background: var(--brass-50);
  border: 1px solid var(--brass);
  color: var(--brass);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  font: 700 16px Tahoma,Arial;
  margin-bottom: 20px;
}

.dp-cta {
  padding: 36px;
  background: #0e1726;
  border-radius: 22px;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.dp-cta h2 {
  color: #fff!important;
  font-size: 22px;
}

.dp-cta p {
  color: #b7c7d7;
  font-size: 13px;
  margin: 0;
}

.dp-cta .dp-btn {
  white-space: nowrap;
}

.dp-catalog-search {
  width: min(310px,100%);
}

.dp-catalog-search input {
  width: 100%;
}

.dp-digital-note {
  margin-bottom: 24px;
}

.dp-faq {
  max-width: 880px;
}

.dp-faq h2 {
  margin-bottom: 24px;
}

.dp-faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  margin: 12px 0;
}

.dp-faq summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 700;
  color: var(--ink);
}

.dp-faq details p {
  padding: 0 20px 20px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.dp-faq details[open] summary {
  color: var(--brand);
}

[dir=rtl] .dp-theme .text-left {
  text-align: right!important;
}

[dir=rtl] .dp-theme .text-right {
  text-align: left!important;
}

[dir=rtl] .dp-theme .float-left {
  float: right!important;
}

[dir=rtl] .dp-theme .float-right {
  float: left!important;
}

[dir=rtl] .dp-theme .form-check {
  padding-left: 0;
  padding-right: 1.25rem;
}

[dir=rtl] .dp-theme .form-check-input {
  margin-left: 0;
  margin-right: -1.25rem;
}

[dir=rtl] .dp-theme .custom-control {
  padding-left: 0;
  padding-right: 1.5rem;
}

[dir=rtl] .dp-theme .custom-control-label:before,
[dir=rtl] .dp-theme .custom-control-label:after {
  left: auto;
  right: -1.5rem;
}

[dir=rtl] .dp-theme .close {
  float: left;
}

[dir=rtl] .dp-theme .input-group>.form-control:not(:last-child) {
  border-top-right-radius: 9px;
  border-bottom-right-radius: 9px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

[dir=rtl] .dp-theme .input-group>.form-control:not(:first-child) {
  border-top-left-radius: 9px;
  border-bottom-left-radius: 9px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

[dir=rtl] .dp-theme .input-group-prepend {
  margin-right: 0;
  margin-left: -1px;
}

[dir=rtl] .dp-theme .input-group-append {
  margin-left: 0;
  margin-right: -1px;
}

[dir=rtl] .dp-theme .input-group-prepend .input-group-text {
  border-radius: 0 9px 9px 0;
}

[dir=rtl] .dp-theme .input-group-append .btn {
  border-radius: 9px 0 0 9px;
}

body.dp-theme.dp-invoice {
  padding: 30px 16px;
  background: var(--bg);
}

body.dp-theme .invoice-container {
  max-width: 1000px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  padding: 35px;
}

body.dp-theme .invoice-container .table {
  border: 1px solid var(--line);
}

body.dp-theme .invoice-container .invoice-status {
  font-family: inherit;
}

html[data-theme=dark] .dp-theme .bg-white,
html[data-theme=dark] .dp-theme .bg-light {
  background: var(--surface)!important;
}

html[data-theme=dark] .dp-theme .text-dark {
  color: var(--ink)!important;
}

html[data-theme=dark] .dp-theme .well {
  background: var(--surface-2);
  color: var(--ink);
  border-color: var(--line);
}

html[data-theme=dark] .dp-theme .client-alerts {
  background: var(--surface);
  color: var(--ink);
}

html[data-theme=dark] .dp-theme .client-alerts a {
  color: var(--ink);
}

@media (max-width:860px) {
  .dp-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px;
  }

  .dp-section {
    padding-block: 36px;
  }
}

@media (max-width:640px) {
  body.dp-theme .tiles .tile {
    min-height: 105px;
    padding: 14px 12px;
    padding-inline-start: 55px;
  }

  body.dp-theme .tiles .tile>i {
    width: 32px;
    height: 32px;
    font-size: 16px;
    inset-inline-start: 12px;
  }

  .dp-domainbar {
    flex-direction: column;
    padding: 8px;
    gap: 8px;
  }

  .dp-domainbar .dp-input {
    flex: auto;
    width: 100%;
  }

  .dp-domainbar .dp-btn {
    width: 100%;
  }

  .dp-service-card {
    padding: 22px;
  }

  .dp-faq summary {
    padding: 16px;
    font-size: 13px;
  }

  .dp-main-content .dataTables_wrapper {
    padding: 10px;
  }

  .dp-main-content .dataTables_filter {
    max-width: 100%;
  }

  body.dp-theme .invoice-container {
    padding: 18px;
  }

  .dp-cta h2 {
    font-size: 19px;
  }

  .dp-process>div {
    padding: 0;
  }
}

@media print {
  body.dp-theme {
    display: block;
    background: #fff;
    color: #000;
  }

  .dp-rail,
  .dp-breadcrumb {
    display: none!important;
  }

  .dp-workspace.dp-with-sidebar {
    display: block;
  }

  body.dp-theme.dp-invoice {
    padding: 0;
  }

  body.dp-theme .invoice-container {
    max-width: none;
    border: 0;
    padding: 0;
  }

  body.dp-theme .btn,
  body.dp-theme .dp-btn {
    box-shadow: none;
  }
}

body.dp-theme [hidden] {
  display: none!important;
}

[dir=rtl] body.dp-theme [class*="ml-"],
[dir=rtl] body.dp-theme [class*="mr-"] {
  margin-left: 0!important;
  margin-right: 0!important;
}

[dir=rtl] body.dp-theme [class*="pl-"],
[dir=rtl] body.dp-theme [class*="pr-"] {
  padding-left: 0!important;
  padding-right: 0!important;
}

[dir=rtl] body.dp-theme .ml-0 {
  margin-right: 0!important;
}

[dir=rtl] body.dp-theme .ml-1 {
  margin-right: .25rem!important;
}

[dir=rtl] body.dp-theme .ml-2 {
  margin-right: .5rem!important;
}

[dir=rtl] body.dp-theme .ml-3 {
  margin-right: 1rem!important;
}

[dir=rtl] body.dp-theme .ml-4 {
  margin-right: 1.5rem!important;
}

[dir=rtl] body.dp-theme .ml-5 {
  margin-right: 3rem!important;
}

[dir=rtl] body.dp-theme .ml-auto {
  margin-right: auto!important;
}

[dir=rtl] body.dp-theme .mr-0 {
  margin-left: 0!important;
}

[dir=rtl] body.dp-theme .mr-1 {
  margin-left: .25rem!important;
}

[dir=rtl] body.dp-theme .mr-2 {
  margin-left: .5rem!important;
}

[dir=rtl] body.dp-theme .mr-3 {
  margin-left: 1rem!important;
}

[dir=rtl] body.dp-theme .mr-4 {
  margin-left: 1.5rem!important;
}

[dir=rtl] body.dp-theme .mr-5 {
  margin-left: 3rem!important;
}

[dir=rtl] body.dp-theme .mr-auto {
  margin-left: auto!important;
}

[dir=rtl] body.dp-theme .pl-0 {
  padding-right: 0!important;
}

[dir=rtl] body.dp-theme .pl-1 {
  padding-right: .25rem!important;
}

[dir=rtl] body.dp-theme .pl-2 {
  padding-right: .5rem!important;
}

[dir=rtl] body.dp-theme .pl-3 {
  padding-right: 1rem!important;
}

[dir=rtl] body.dp-theme .pl-4 {
  padding-right: 1.5rem!important;
}

[dir=rtl] body.dp-theme .pl-5 {
  padding-right: 3rem!important;
}

[dir=rtl] body.dp-theme .pr-0 {
  padding-left: 0!important;
}

[dir=rtl] body.dp-theme .pr-1 {
  padding-left: .25rem!important;
}

[dir=rtl] body.dp-theme .pr-2 {
  padding-left: .5rem!important;
}

[dir=rtl] body.dp-theme .pr-3 {
  padding-left: 1rem!important;
}

[dir=rtl] body.dp-theme .pr-4 {
  padding-left: 1.5rem!important;
}

[dir=rtl] body.dp-theme .pr-5 {
  padding-left: 3rem!important;
}

@media (min-width:576px) {
  [dir=rtl] body.dp-theme .ml-sm-0 {
    margin-right: 0!important;
  }

  [dir=rtl] body.dp-theme .ml-sm-1 {
    margin-right: .25rem!important;
  }

  [dir=rtl] body.dp-theme .ml-sm-2 {
    margin-right: .5rem!important;
  }

  [dir=rtl] body.dp-theme .ml-sm-3 {
    margin-right: 1rem!important;
  }

  [dir=rtl] body.dp-theme .ml-sm-4 {
    margin-right: 1.5rem!important;
  }

  [dir=rtl] body.dp-theme .ml-sm-5 {
    margin-right: 3rem!important;
  }

  [dir=rtl] body.dp-theme .ml-sm-auto {
    margin-right: auto!important;
  }

  [dir=rtl] body.dp-theme .mr-sm-0 {
    margin-left: 0!important;
  }

  [dir=rtl] body.dp-theme .mr-sm-1 {
    margin-left: .25rem!important;
  }

  [dir=rtl] body.dp-theme .mr-sm-2 {
    margin-left: .5rem!important;
  }

  [dir=rtl] body.dp-theme .mr-sm-3 {
    margin-left: 1rem!important;
  }

  [dir=rtl] body.dp-theme .mr-sm-4 {
    margin-left: 1.5rem!important;
  }

  [dir=rtl] body.dp-theme .mr-sm-5 {
    margin-left: 3rem!important;
  }

  [dir=rtl] body.dp-theme .mr-sm-auto {
    margin-left: auto!important;
  }

  [dir=rtl] body.dp-theme .pl-sm-0 {
    padding-right: 0!important;
  }

  [dir=rtl] body.dp-theme .pl-sm-1 {
    padding-right: .25rem!important;
  }

  [dir=rtl] body.dp-theme .pl-sm-2 {
    padding-right: .5rem!important;
  }

  [dir=rtl] body.dp-theme .pl-sm-3 {
    padding-right: 1rem!important;
  }

  [dir=rtl] body.dp-theme .pl-sm-4 {
    padding-right: 1.5rem!important;
  }

  [dir=rtl] body.dp-theme .pl-sm-5 {
    padding-right: 3rem!important;
  }

  [dir=rtl] body.dp-theme .pr-sm-0 {
    padding-left: 0!important;
  }

  [dir=rtl] body.dp-theme .pr-sm-1 {
    padding-left: .25rem!important;
  }

  [dir=rtl] body.dp-theme .pr-sm-2 {
    padding-left: .5rem!important;
  }

  [dir=rtl] body.dp-theme .pr-sm-3 {
    padding-left: 1rem!important;
  }

  [dir=rtl] body.dp-theme .pr-sm-4 {
    padding-left: 1.5rem!important;
  }

  [dir=rtl] body.dp-theme .pr-sm-5 {
    padding-left: 3rem!important;
  }
}

@media (min-width:768px) {
  [dir=rtl] body.dp-theme .ml-md-0 {
    margin-right: 0!important;
  }

  [dir=rtl] body.dp-theme .ml-md-1 {
    margin-right: .25rem!important;
  }

  [dir=rtl] body.dp-theme .ml-md-2 {
    margin-right: .5rem!important;
  }

  [dir=rtl] body.dp-theme .ml-md-3 {
    margin-right: 1rem!important;
  }

  [dir=rtl] body.dp-theme .ml-md-4 {
    margin-right: 1.5rem!important;
  }

  [dir=rtl] body.dp-theme .ml-md-5 {
    margin-right: 3rem!important;
  }

  [dir=rtl] body.dp-theme .ml-md-auto {
    margin-right: auto!important;
  }

  [dir=rtl] body.dp-theme .mr-md-0 {
    margin-left: 0!important;
  }

  [dir=rtl] body.dp-theme .mr-md-1 {
    margin-left: .25rem!important;
  }

  [dir=rtl] body.dp-theme .mr-md-2 {
    margin-left: .5rem!important;
  }

  [dir=rtl] body.dp-theme .mr-md-3 {
    margin-left: 1rem!important;
  }

  [dir=rtl] body.dp-theme .mr-md-4 {
    margin-left: 1.5rem!important;
  }

  [dir=rtl] body.dp-theme .mr-md-5 {
    margin-left: 3rem!important;
  }

  [dir=rtl] body.dp-theme .mr-md-auto {
    margin-left: auto!important;
  }

  [dir=rtl] body.dp-theme .pl-md-0 {
    padding-right: 0!important;
  }

  [dir=rtl] body.dp-theme .pl-md-1 {
    padding-right: .25rem!important;
  }

  [dir=rtl] body.dp-theme .pl-md-2 {
    padding-right: .5rem!important;
  }

  [dir=rtl] body.dp-theme .pl-md-3 {
    padding-right: 1rem!important;
  }

  [dir=rtl] body.dp-theme .pl-md-4 {
    padding-right: 1.5rem!important;
  }

  [dir=rtl] body.dp-theme .pl-md-5 {
    padding-right: 3rem!important;
  }

  [dir=rtl] body.dp-theme .pr-md-0 {
    padding-left: 0!important;
  }

  [dir=rtl] body.dp-theme .pr-md-1 {
    padding-left: .25rem!important;
  }

  [dir=rtl] body.dp-theme .pr-md-2 {
    padding-left: .5rem!important;
  }

  [dir=rtl] body.dp-theme .pr-md-3 {
    padding-left: 1rem!important;
  }

  [dir=rtl] body.dp-theme .pr-md-4 {
    padding-left: 1.5rem!important;
  }

  [dir=rtl] body.dp-theme .pr-md-5 {
    padding-left: 3rem!important;
  }
}

@media (min-width:992px) {
  [dir=rtl] body.dp-theme .ml-lg-0 {
    margin-right: 0!important;
  }

  [dir=rtl] body.dp-theme .ml-lg-1 {
    margin-right: .25rem!important;
  }

  [dir=rtl] body.dp-theme .ml-lg-2 {
    margin-right: .5rem!important;
  }

  [dir=rtl] body.dp-theme .ml-lg-3 {
    margin-right: 1rem!important;
  }

  [dir=rtl] body.dp-theme .ml-lg-4 {
    margin-right: 1.5rem!important;
  }

  [dir=rtl] body.dp-theme .ml-lg-5 {
    margin-right: 3rem!important;
  }

  [dir=rtl] body.dp-theme .ml-lg-auto {
    margin-right: auto!important;
  }

  [dir=rtl] body.dp-theme .mr-lg-0 {
    margin-left: 0!important;
  }

  [dir=rtl] body.dp-theme .mr-lg-1 {
    margin-left: .25rem!important;
  }

  [dir=rtl] body.dp-theme .mr-lg-2 {
    margin-left: .5rem!important;
  }

  [dir=rtl] body.dp-theme .mr-lg-3 {
    margin-left: 1rem!important;
  }

  [dir=rtl] body.dp-theme .mr-lg-4 {
    margin-left: 1.5rem!important;
  }

  [dir=rtl] body.dp-theme .mr-lg-5 {
    margin-left: 3rem!important;
  }

  [dir=rtl] body.dp-theme .mr-lg-auto {
    margin-left: auto!important;
  }

  [dir=rtl] body.dp-theme .pl-lg-0 {
    padding-right: 0!important;
  }

  [dir=rtl] body.dp-theme .pl-lg-1 {
    padding-right: .25rem!important;
  }

  [dir=rtl] body.dp-theme .pl-lg-2 {
    padding-right: .5rem!important;
  }

  [dir=rtl] body.dp-theme .pl-lg-3 {
    padding-right: 1rem!important;
  }

  [dir=rtl] body.dp-theme .pl-lg-4 {
    padding-right: 1.5rem!important;
  }

  [dir=rtl] body.dp-theme .pl-lg-5 {
    padding-right: 3rem!important;
  }

  [dir=rtl] body.dp-theme .pr-lg-0 {
    padding-left: 0!important;
  }

  [dir=rtl] body.dp-theme .pr-lg-1 {
    padding-left: .25rem!important;
  }

  [dir=rtl] body.dp-theme .pr-lg-2 {
    padding-left: .5rem!important;
  }

  [dir=rtl] body.dp-theme .pr-lg-3 {
    padding-left: 1rem!important;
  }

  [dir=rtl] body.dp-theme .pr-lg-4 {
    padding-left: 1.5rem!important;
  }

  [dir=rtl] body.dp-theme .pr-lg-5 {
    padding-left: 3rem!important;
  }
}

@media (min-width:1200px) {
  [dir=rtl] body.dp-theme .ml-xl-0 {
    margin-right: 0!important;
  }

  [dir=rtl] body.dp-theme .ml-xl-1 {
    margin-right: .25rem!important;
  }

  [dir=rtl] body.dp-theme .ml-xl-2 {
    margin-right: .5rem!important;
  }

  [dir=rtl] body.dp-theme .ml-xl-3 {
    margin-right: 1rem!important;
  }

  [dir=rtl] body.dp-theme .ml-xl-4 {
    margin-right: 1.5rem!important;
  }

  [dir=rtl] body.dp-theme .ml-xl-5 {
    margin-right: 3rem!important;
  }

  [dir=rtl] body.dp-theme .ml-xl-auto {
    margin-right: auto!important;
  }

  [dir=rtl] body.dp-theme .mr-xl-0 {
    margin-left: 0!important;
  }

  [dir=rtl] body.dp-theme .mr-xl-1 {
    margin-left: .25rem!important;
  }

  [dir=rtl] body.dp-theme .mr-xl-2 {
    margin-left: .5rem!important;
  }

  [dir=rtl] body.dp-theme .mr-xl-3 {
    margin-left: 1rem!important;
  }

  [dir=rtl] body.dp-theme .mr-xl-4 {
    margin-left: 1.5rem!important;
  }

  [dir=rtl] body.dp-theme .mr-xl-5 {
    margin-left: 3rem!important;
  }

  [dir=rtl] body.dp-theme .mr-xl-auto {
    margin-left: auto!important;
  }

  [dir=rtl] body.dp-theme .pl-xl-0 {
    padding-right: 0!important;
  }

  [dir=rtl] body.dp-theme .pl-xl-1 {
    padding-right: .25rem!important;
  }

  [dir=rtl] body.dp-theme .pl-xl-2 {
    padding-right: .5rem!important;
  }

  [dir=rtl] body.dp-theme .pl-xl-3 {
    padding-right: 1rem!important;
  }

  [dir=rtl] body.dp-theme .pl-xl-4 {
    padding-right: 1.5rem!important;
  }

  [dir=rtl] body.dp-theme .pl-xl-5 {
    padding-right: 3rem!important;
  }

  [dir=rtl] body.dp-theme .pr-xl-0 {
    padding-left: 0!important;
  }

  [dir=rtl] body.dp-theme .pr-xl-1 {
    padding-left: .25rem!important;
  }

  [dir=rtl] body.dp-theme .pr-xl-2 {
    padding-left: .5rem!important;
  }

  [dir=rtl] body.dp-theme .pr-xl-3 {
    padding-left: 1rem!important;
  }

  [dir=rtl] body.dp-theme .pr-xl-4 {
    padding-left: 1.5rem!important;
  }

  [dir=rtl] body.dp-theme .pr-xl-5 {
    padding-left: 3rem!important;
  }
}

.dp-announcement{background:#34493a;color:#eff5ef;border-radius:0;font-size:12px}
.dp-announcement .dp-shell{display:flex;justify-content:center;align-items:center;gap:20px;min-height:36px;padding-block:5px}
.dp-announcement a{color:#e6c475;display:inline-flex;align-items:center;gap:9px;white-space:nowrap}
.dp-topbar{position:relative;z-index:105;background:var(--surface);border-bottom:1px solid var(--line-soft);color:var(--muted);font-size:12px}
.dp-topbar .dp-shell{display:flex;align-items:center;gap:12px;min-height:46px}
.dp-utility-links{display:flex;align-items:center;gap:20px}
.dp-utility-links a{color:var(--muted)}
.dp-control{display:inline-flex;align-items:center;justify-content:center;gap:6px;min-height:40px;padding:8px 10px;border:1px solid var(--line);border-radius:12px;background:var(--surface);color:var(--brand-700);box-shadow:none;cursor:pointer;text-decoration:none}
.dp-control:hover{background:var(--brand-50);color:var(--brand);text-decoration:none}
.dp-theme-toggle{border:0;min-height:28px;padding:4px 7px;font-size:16px;background:transparent}
.dp-langwrap{position:relative}
.dp-language-pill{border-radius:24px;background:var(--surface-2);min-height:33px;padding:4px 12px;gap:8px;color:var(--ink-500);font-size:12px}
.dp-language-pill>span:first-child{font-size:19px;line-height:1}
.dp-language-pill small{text-transform:uppercase;font-family:Tahoma,Arial;font-size:9px;color:var(--muted)}
.dp-language-pill>i{font-size:9px}
.dp-langmenu{position:absolute;inset-inline-end:0;top:calc(100% + 8px);width:200px;max-height:360px;overflow-y:auto;padding:8px;background:var(--surface);border:1px solid var(--line);border-radius:12px;box-shadow:var(--shadow-2);z-index:120}
.dp-langmenu a{display:flex;align-items:center;gap:10px;padding:8px 10px;border-radius:7px;color:var(--ink);font-size:12px;white-space:nowrap}
.dp-langmenu a:hover,.dp-langmenu a[aria-current=true]{background:var(--brand-50);color:var(--brand);text-decoration:none}
.dp-masthead{position:relative;z-index:100;background:var(--surface);border-bottom:1px solid var(--line)}
.dp-masthead>.dp-shell{display:flex;align-items:center;gap:14px;min-height:89px;padding-block:12px}
.dp-masthead .dp-brand{flex-shrink:0}
.dp-logo{display:block;max-width:195px;max-height:50px;width:auto;height:auto;object-fit:contain}
.dp-main-navigation{flex:1;min-width:0;justify-content:center}
.dp-primary-nav,.dp-account-nav{display:flex;flex-direction:row;align-items:center;gap:2px;margin:0;padding:0;list-style:none}
.dp-primary-nav>li>a{position:relative;display:flex;align-items:center;gap:6px;padding:13px 6px;border-radius:0;color:var(--ink-700);font-size:14px;white-space:nowrap;text-decoration:none}
.dp-primary-nav>li>a>i{font-size:13px;color:var(--brass)}
.dp-primary-nav>li>a:hover,.dp-primary-nav>li.active>a{color:var(--brand)}
.dp-primary-nav>li.active>a::after{content:"";position:absolute;inset-inline:8px;bottom:-13px;height:3px;background:var(--brass);border-radius:3px 3px 0 0}
.dp-primary-nav .dropdown-menu,.dp-account-nav .dropdown-menu{background:var(--surface);border:1px solid var(--line);border-radius:12px;padding:8px;min-width:235px;max-height:70vh;overflow-y:auto;text-align:start;box-shadow:var(--shadow-2);margin-top:10px}
.dp-primary-nav .dropdown-item,.dp-account-nav .dropdown-item{font-size:13px;color:var(--ink-700);background:transparent;white-space:normal;border-radius:7px}
.dp-primary-nav li.dropdown-item,.dp-account-nav li.dropdown-item{padding:8px 6px}
.dp-primary-nav li.dropdown-item:hover,.dp-account-nav li.dropdown-item:hover{background:var(--brand-50)}
.dp-primary-nav .dropdown-item:hover,.dp-account-nav .dropdown-item:hover{color:var(--brand);text-decoration:none}
.dp-primary-nav .dropdown-divider,.dp-account-nav .dropdown-divider{border-color:var(--line)}
[dir=rtl] .dp-primary-nav .dropdown-menu{right:0;left:auto}
[dir=rtl] .dp-account-nav .dropdown-menu{left:0;right:auto}
.dp-header-actions{display:flex;align-items:center;gap:8px;margin-inline-start:auto;flex-shrink:0}
.dp-account-nav>li>a{display:flex;align-items:center;justify-content:center;gap:7px;padding:5px 8px;border:1px solid var(--line);border-radius:24px;min-height:42px;color:var(--ink-700);background:var(--surface);text-decoration:none;font-size:12px;white-space:nowrap}
.dp-account-avatar{display:grid;place-items:center;border-radius:50%;width:31px;height:31px;background:var(--brand-50);color:var(--brand);font-size:15px}
.dp-account-nav .dropdown-toggle::after{font-size:10px;margin:0}
.dp-notification-button,.dp-cart-button{position:relative;min-width:40px;font-size:16px}
.dp-cart-button #cartItemCount,.dp-notification-count{font:10px/1 Tahoma,Arial;color:var(--brand);display:inline-flex;justify-content:center;align-items:center;min-width:13px}
.dp-notification-count{position:absolute;inset-inline-end:3px;top:3px;border-radius:50%;background:var(--brass);color:#fff;min-height:15px;min-width:15px}
.dp-navtoggle{display:none;align-items:center;justify-content:center;width:38px;height:38px;border:1px solid var(--line);border-radius:10px;background:var(--surface);color:var(--brand)}
/* Four-column footer, with the brand at the start of the reading direction. */
.dp-footer{background:#2b3c30;color:#c1cfca;padding:52px 0 20px;border-radius:0}
.dp-footer-grid{display:grid;grid-template-columns:1.55fr 1fr 1fr 1.05fr;gap:44px;align-items:start}
.dp-footer .dp-brand{color:#fff;justify-content:flex-start;font-size:18px}
.dp-footer .dp-logo{max-width:235px;max-height:60px;filter:brightness(0) invert(1)}
.dp-footer .dp-brand small{color:#a6beb6}
.dp-footer-about{max-width:none;margin:20px 0 0;font-size:14px;line-height:1.95;color:#c1cfca}
.dp-footer h4{font-size:16px;color:#fff;margin:3px 0 20px;font-weight:700}
.dp-footer-column ul{list-style:none;padding:0;margin:0;display:grid;gap:10px}
.dp-footer a{color:#c1cfca;font-size:13px;transition:color .15s ease}
.dp-footer a:hover{color:#e3c177;text-decoration:none}
.dp-footer-connect{text-align:center}
.dp-footer-buttons{display:flex;align-items:center;flex-direction:column;gap:9px}
.dp-footer-action{display:flex;align-items:center;justify-content:center;gap:9px;width:165px;min-height:39px;border:1px solid rgba(210,224,216,.25);border-radius:8px;background:rgba(255,255,255,.03)}
.dp-footer a.dp-store-badge{display:flex;align-items:center;gap:10px;direction:ltr;padding:6px 11px;min-height:44px;width:155px;border:1px solid #99a69e;border-radius:6px;background:#070c09;color:#fff;text-align:start}
.dp-store-badge>i{font-size:27px}
.dp-store-badge span{display:flex;flex-direction:column}
.dp-store-badge small{font-size:8px;line-height:1.4}
.dp-store-badge strong{font:17px/1.25 Tahoma,Arial}
.dp-footer-social{display:flex;flex-wrap:wrap;gap:7px;justify-content:center;list-style:none;padding:12px 0 0;margin:13px 0 0;border-top:1px solid rgba(210,224,216,.15)}
.dp-footer-social li{margin:0!important}
.dp-footer-social a.btn{display:grid;place-items:center;width:35px;height:35px;padding:0;margin:0!important;border:1px solid rgba(210,224,216,.25);border-radius:50%;background:transparent;color:#b6c9c3;font-size:14px;box-shadow:none}
.dp-footer-social a.btn:hover{background:rgba(255,255,255,.08);color:#dfbd74}
.dp-footer-email{display:inline-block;margin-top:11px;overflow-wrap:anywhere;font-family:Tahoma,Arial}
.dp-legal{display:grid;grid-template-columns:1fr 1.2fr 1fr;align-items:center;gap:18px;padding:14px 17px;margin-top:35px;border:1px solid rgba(210,224,216,.15);border-radius:15px;background:rgba(255,255,255,.035);font-size:11px}
.dp-legal-links{display:flex;gap:14px;flex-wrap:wrap}
.dp-legal a{font-size:11px}
.dp-copyright{text-align:center;color:#b1c3bb;font-size:11px}
.dp-payments{display:flex;justify-content:flex-end;gap:4px;flex-wrap:wrap}
.dp-payment-badge{display:inline-flex;align-items:center;justify-content:center;min-height:23px;padding:3px 5px;background:#fff;border:1px solid #dbe5e0;border-radius:4px;font:700 10px/1.3 Tahoma,Arial;color:#254b68}
/* Data Planet 1.2: measured TrafikRedo proportions, hosting content. */
body.dp-theme{background:radial-gradient(circle at 8% 4%,rgba(83,107,88,.09) 0 74px,transparent 75px),radial-gradient(circle at 94% 18%,rgba(231,179,86,.1) 0 110px,transparent 111px),repeating-linear-gradient(135deg,rgba(52,73,58,.043) 0 1px,transparent 1px 18px),linear-gradient(#ede5d9,#dce7dc);background-attachment:fixed;color:var(--ink);font-size:15px;line-height:1.75}
.dp-site-frame{width:min(1360px,calc(100% - 48px));margin:0 auto;background:var(--surface);min-inline-size:0;box-shadow:0 20px 55px rgba(42,55,46,.06)}
.dp-site-frame .dp-shell{width:min(1180px,calc(100% - 48px))}
body.dp-shopping .dp-workspace{padding-block:48px 88px}
.dp-service-ticker{padding:14px 0;background:var(--surface);border-bottom:1px solid var(--line-soft)}
.dp-service-ticker>.dp-shell{display:flex;align-items:center;gap:18px;height:35px;overflow:hidden}
.dp-service-ticker strong{display:flex;align-items:center;flex-shrink:0;padding:6px 16px;background:#b94d40;color:#fff;font-size:12px;border-radius:5px}
.dp-ticker-links{display:flex;align-items:center;gap:28px;overflow-x:auto;scrollbar-width:none;min-width:0}
.dp-ticker-links::-webkit-scrollbar{display:none}
.dp-ticker-links a{display:flex;align-items:center;gap:8px;color:var(--ink-500);font-size:12px;white-space:nowrap;padding:7px 0}
.dp-ticker-links a i{color:var(--brass)}
.dp-ticker-links a:hover{color:var(--brass)}
.dp-home-tip{padding:18px 0}
.dp-home-tip p{display:flex;align-items:center;gap:12px;margin:0;padding:16px 20px;min-height:80px;background:#dceff7;color:#285a70;border:1px solid #bbd3dc;border-inline-start:4px solid #75a6b8;border-radius:7px;font-size:13px;line-height:1.9}
.dp-home-tip p>i{font-size:22px}
.dp-hero{background:var(--surface);color:#fff;padding:20px 0 0}
.dp-home-tip+.dp-hero{padding:0}
.dp-service-hero .dp-crumbs{display:flex;align-items:center;gap:12px;margin:0 0 17px;color:var(--muted);font-size:12px}
.dp-hero-slider{position:relative;height:330px;isolation:isolate;overflow:hidden;border:1px solid var(--line);border-radius:3px;background:linear-gradient(115deg,#172b24,#253d30)}
.dp-hero-viewport,.dp-slides{display:grid;grid-template-rows:minmax(0,1fr);height:100%;min-height:0;min-width:0}
.dp-hero-slide{grid-area:1/1;min-height:0;display:flex;flex-direction:column;align-items:center;justify-content:center;align-self:stretch;text-align:center;width:min(1040px,calc(100% - 130px));margin-inline:auto;padding:30px 0 42px;min-width:0;opacity:0;visibility:hidden;pointer-events:none;transition:opacity .65s ease,visibility .65s ease}
.dp-hero-slide[data-active=true]{opacity:1;visibility:visible;pointer-events:auto}
body.dp-theme .dp-hero .dp-kicker{display:inline-flex;align-items:center;max-width:100%;margin:0 0 12px;padding:6px 14px;min-height:32px;color:#fff;border:1px solid rgba(255,255,255,.38);border-radius:999px;background:rgba(255,255,255,.12);font-size:13px;line-height:1.5;white-space:nowrap}
body.dp-theme .dp-hero .dp-hero-heading{max-width:100%;margin:0;color:#fff;font-size:clamp(28px,2.77vw,37.8px);font-weight:700;line-height:1.28;white-space:nowrap;letter-spacing:0}
body.dp-theme .dp-hero .dp-lede{max-width:100%;margin:13px 0 0;color:rgba(255,255,255,.94);font-size:15px;line-height:1.85;white-space:nowrap}
.dp-hero-actions{margin-top:22px;justify-content:center}
.dp-hero .dp-btn{min-height:50px;padding:11px 24px;font-size:14px;border-radius:13px;background:var(--brass);border-color:var(--brass);color:#fff}
.dp-hero .dp-btn:hover{background:#a75133;border-color:#a75133}
.dp-hero-controls{position:absolute;inset:0;pointer-events:none}
.dp-hero-arrows button{position:absolute;top:calc(50% - 22px);display:grid;place-items:center;width:44px;height:44px;border:1px solid rgba(255,255,255,.42);border-radius:50%;background:rgba(255,253,249,.92);color:#223029;pointer-events:auto;box-shadow:none;font-size:14px;cursor:pointer}
.dp-hero-arrows button:hover{background:#fff;border-color:#fff}
.dp-hero-arrows button[data-dp-hero=prev]{inset-inline-start:16px}
.dp-hero-arrows button[data-dp-hero=next]{inset-inline-end:16px}
.dp-hero-arrows button[data-dp-hero=pause]{top:auto;bottom:12px;inset-inline-end:18px;width:28px;height:28px;font-size:10px;color:#fff;background:rgba(255,255,255,.08)}
[dir=rtl] .dp-hero-arrows button[data-dp-hero=prev] i,[dir=rtl] .dp-hero-arrows button[data-dp-hero=next] i{transform:rotate(180deg)}
.dp-hero-dots{position:absolute;bottom:13px;left:50%;transform:translateX(-50%);display:flex;align-items:center;gap:3px;pointer-events:auto}
.dp-hero-dots button{border:0;padding:7px;background:transparent;width:24px;height:24px;cursor:pointer}
.dp-hero-dots button::before{content:"";display:block;width:6px;height:6px;border-radius:50%;background:rgba(255,255,255,.4)}
.dp-hero-dots button[aria-current=true]::before{background:#e7b356}
.dp-hero-count{position:absolute;bottom:16px;inset-inline-start:18px;font:11px/1.5 Tahoma,Arial;color:rgba(255,255,255,.7)}
.dp-quick-services{padding:17px 0 24px;border-bottom:1px solid var(--line);background:var(--surface)}
.dp-quick-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr))}
.dp-quick-service{display:flex;align-items:center;justify-content:center;flex-direction:column;gap:10px;min-height:155px;padding:18px 8px;border-inline-end:1px solid var(--line);color:var(--ink);text-align:center}
.dp-quick-service:last-child{border:0}
.dp-quick-service:hover{background:var(--cream);color:var(--brand);text-decoration:none}
.dp-quick-service>i{font-size:42px;width:48px;height:48px;color:var(--brass)}
.dp-quick-service strong{font-size:15px;line-height:1.8}
.dp-quick-service>span{font-size:12px;color:var(--muted)}
.dp-home-domain{padding:72px 0;background:linear-gradient(135deg,var(--cream),var(--paper-deep))}
.dp-domain-panel{display:grid;grid-template-columns:minmax(0,1fr) minmax(350px,.84fr);gap:44px;align-items:stretch}
.dp-domain-copy{position:relative;min-width:0;padding:clamp(38px,4vw,58px);display:flex;flex-direction:column;justify-content:center;border:1px solid var(--line);border-radius:30px;background:radial-gradient(circle at 12% 14%,rgba(207,96,57,.09) 0 64px,transparent 65px),radial-gradient(circle at 92% 92%,rgba(83,107,88,.11) 0 96px,transparent 97px),linear-gradient(145deg,var(--surface),var(--surface-2));box-shadow:0 20px 48px rgba(35,52,43,.08);overflow:hidden}
.dp-domain-copy::before{content:"";position:absolute;inset-block:30px;inset-inline-start:0;width:4px;border-radius:999px;background:linear-gradient(var(--brass),var(--brand));opacity:.72}
.dp-domain-copy h2{margin:16px 0;font-size:32px;line-height:1.7;color:var(--brand-700)}
.dp-domain-copy p{font-size:15px;line-height:2;color:var(--muted);margin:0}
.dp-domain-copy>.dp-btn{align-self:flex-start;margin-top:24px}
.dp-check-list{display:grid;gap:14px;margin:24px 0 0;padding:0;list-style:none;font-size:14px;color:var(--ink-500)}
.dp-check-list li{display:flex;align-items:center;gap:10px}
.dp-check-list i{color:var(--ok);flex-shrink:0}
.dp-domain-tool{display:flex;flex-direction:column;align-items:stretch;justify-content:center;min-height:540px;padding:34px;border:1px solid var(--line);border-radius:28px;background:var(--surface);box-shadow:var(--shadow-2)}
.dp-domain-symbol{display:grid;place-items:center;width:90px;height:90px;margin:0 auto 24px;border-radius:24px;background:var(--brand-50);color:var(--brand);font-size:50px}
.dp-domain-tool h3{font-size:23px;text-align:center;margin:0 0 14px}
.dp-domain-tool>p{font-size:14px;line-height:1.9;text-align:center;color:var(--muted)}
.dp-domain-tool .dp-domainbar{display:flex;flex-direction:column;width:100%;max-width:none;margin:18px 0 0;padding:0;background:none;border:0;box-shadow:none;gap:12px;border-radius:0}
.dp-domain-tool .dp-domainbar .dp-input{width:100%;min-width:0;height:54px;min-height:54px;border:1px solid #d9cbbb;background:var(--surface);border-radius:13px;padding:12px 16px;font:15px Tahoma,Arial;flex:none}
.dp-domain-tool .dp-domainbar .dp-btn{width:100%;min-height:50px;background:var(--brass);border-color:var(--brass);color:#fff}
.dp-domain-tool .dp-domain-hint{margin:10px 0 0;font-size:11px}
.dp-domain-tool .dp-domain-note{margin:28px 0 0;padding-top:18px;border-top:1px solid var(--line);font-size:12px}
.dp-domain-note i{margin-inline-end:8px}
.dp-eyebrow{color:var(--brass);font-size:13px;font-weight:700;letter-spacing:0}
.dp-section-heading{text-align:center;max-width:1100px;margin:0 auto 36px}
.dp-section-heading h2{font-size:32px;color:var(--brand-700);margin:12px 0 14px;line-height:1.65}
.dp-section-heading p{color:var(--muted);font-size:15px;line-height:1.9;margin:0}
.dp-home-benefits{padding:36px 0 52px;background:var(--surface)}
.dp-benefits-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.dp-benefit{display:flex;align-items:flex-start;gap:14px;padding:21px;border:1px solid var(--line);border-radius:22px;background:var(--surface);min-height:123px}
.dp-benefit>span{display:grid;place-items:center;flex:0 0 44px;width:44px;height:44px;border-radius:13px;background:var(--brand-50);color:var(--brand);font-size:24px}
.dp-benefit h3{font-size:17px;line-height:1.6;margin:0 0 8px}
.dp-benefit p{font-size:13px;line-height:1.9;margin:0;color:var(--muted)}
.dp-home-plans{padding:0 0 82px;background:var(--surface)}
.dp-product-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:20px}
.dp-plan{--plan-accent:#7D5BE7;position:relative;min-width:0;display:flex;flex-direction:column;padding:0;overflow:hidden;border:1px solid color-mix(in srgb,var(--plan-accent) 22%,var(--line));border-radius:18px;background:var(--surface);box-shadow:var(--shadow-1)}
.dp-plan:nth-child(4n+2){--plan-accent:#F15B5D}.dp-plan:nth-child(4n+3){--plan-accent:#B84A78}.dp-plan:nth-child(4n+4){--plan-accent:#5B9440}
.dp-plan[hidden]{display:none!important}
.dp-plan-masthead{display:grid;place-items:center;text-align:center;min-height:100px;padding:22px 18px 34px;background:linear-gradient(155deg,#0b2044,#07162f)}
body.dp-theme .dp-plan-masthead h3{color:#fff;font-size:19.2px;line-height:1.6;margin:0;overflow-wrap:anywhere}
.dp-plan-ribbon{z-index:1;display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:8px;width:calc(100% - 32px);min-height:54px;margin:-27px auto 0;padding:9px 15px;border:1px solid var(--plan-accent);border-radius:14px;background:linear-gradient(100deg,color-mix(in srgb,var(--plan-accent) 72%,#fff),var(--plan-accent));color:#fff;text-align:center}
.dp-plan-ribbon strong{font:700 25px/1.4 Tahoma,Arial;overflow-wrap:anywhere}
.dp-plan-ribbon>span{font-size:13px}
.dp-plan-body{padding:18px 17px 17px;display:flex;flex:1;flex-direction:column;min-height:340px}
.dp-plan-cycle{min-height:42px;margin:0 0 10px;color:var(--muted);font-size:12px;line-height:1.7;text-align:center}
.dp-plan-features{display:flex;flex-direction:column;flex:1;gap:0;list-style:none;margin:0 0 20px;padding:0}
.dp-plan-features li{display:flex;align-items:center;gap:9px;min-width:0;min-height:41px;padding:9px 0;border-bottom:1px solid var(--line-soft);font-size:13px;line-height:1.65;color:var(--ink-500)}
.dp-plan-features li:last-child{border-bottom:0}
.dp-plan-features li>i{display:grid;place-items:center;flex:0 0 20px;width:20px;height:20px;font-size:11px;color:var(--ok);background:var(--ok-50);border:1px solid #bfd2c5;border-radius:50%}
.dp-plan-features li>span{overflow-wrap:anywhere}
body.dp-theme .dp-plan .dp-plan-action{width:100%;min-height:44px;padding:9px 12px;border:1px solid var(--plan-accent);border-radius:999px;background:var(--surface);color:var(--plan-accent);font-size:13px;margin-top:auto;font-weight:700}
body.dp-theme .dp-plan .dp-plan-action:hover{background:color-mix(in srgb,var(--plan-accent) 9%,var(--surface))}
.dp-plans-more{position:relative;display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:16px;align-items:center;min-height:92px;margin:18px 0 0;padding:16px 18px;text-align:start;border:1px solid var(--line);border-radius:20px;background:linear-gradient(110deg,var(--brand-50),var(--surface) 54%,var(--cream));box-shadow:var(--shadow-1)}.dp-plans-more-icon{display:grid;place-items:center;width:52px;height:52px;border:1px solid var(--line);border-radius:16px;background:var(--cream);color:var(--brass);font-size:24px}.dp-plans-more strong{font-size:18px}.dp-plans-more>.dp-btn{min-width:210px}
.dp-plans-more p{margin:3px 0 0;font-size:13px;color:var(--muted)}
.dp-plans-more p a{color:var(--brass);text-decoration:underline}
.dp-plans-empty{text-align:center;padding:40px;border:1px solid var(--line);border-radius:18px;background:var(--surface-2)}
.dp-contact-strip{background:var(--cream);border-top:1px solid var(--line);padding:26px 0}
.dp-contact-strip>.dp-shell{display:flex;align-items:center;gap:22px}
.dp-contact-strip>.dp-shell>i{font-size:37px;color:var(--brass)}
.dp-contact-strip strong{font-size:17px}
.dp-contact-strip p{margin:6px 0 0;font-size:13px;color:var(--muted)}
.dp-contact-strip .dp-btn{margin-inline-start:auto;flex-shrink:0}
html[data-theme=dark] body.dp-theme{background:repeating-linear-gradient(135deg,rgba(160,185,164,.03) 0 1px,transparent 1px 18px),linear-gradient(#15231b,#192b20)}
html[data-theme=dark] .dp-home-tip p{background:#1f3540;border-color:#365767;color:#c1dbe4}
html[data-theme=dark] .dp-announcement,html[data-theme=dark] .dp-footer{background:#192b20}
@media(min-width:1041px){.dp-main-navigation.collapse{display:flex!important}}
@media(max-width:1040px){.dp-masthead>.dp-shell{flex-wrap:wrap;gap:12px}.dp-main-navigation{order:5;flex:0 0 100%;width:100%}.dp-navtoggle{display:inline-flex;margin-inline-start:auto}.dp-header-actions{margin-inline-start:0}.dp-primary-nav{flex-direction:column;align-items:stretch;width:100%;padding:8px 0}.dp-primary-nav>li{width:100%}.dp-primary-nav>li>a{font-size:14px;padding:12px 8px}.dp-primary-nav>li.active>a::after{inset-inline:0;bottom:0;height:1px}.dp-primary-nav .dropdown-menu{position:static;float:none;box-shadow:none;max-height:none}.dp-footer-grid{gap:28px}.dp-footer .dp-logo{max-width:185px}.dp-footer-action{width:150px}.dp-domain-panel{gap:28px}.dp-domain-copy{padding:35px}.dp-domain-copy h2{font-size:28px}}
@media(max-width:1040px){body.dp-theme .dp-hero .dp-hero-heading{font-size:28px}body.dp-theme .dp-hero .dp-lede{font-size:13px}.dp-footer-grid{grid-template-columns:1.2fr 1fr;gap:32px 45px}.dp-footer-connect{text-align:start}.dp-footer-buttons{align-items:flex-start}.dp-footer-social{justify-content:flex-start}.dp-footer-brand{grid-column:1}.dp-legal{grid-template-columns:1fr 1fr}.dp-copyright{grid-column:1/-1;grid-row:2}.dp-product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.dp-benefits-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.dp-quick-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.dp-quick-service:nth-child(3){border-inline-end:0}.dp-quick-service:nth-child(-n+3){border-bottom:1px solid var(--line)}.dp-domain-panel{grid-template-columns:1fr}.dp-domain-tool{min-height:420px}.dp-domain-copy{padding:42px}.dp-home-domain{padding:48px 0}}
@media(max-width:760px){.dp-site-frame{width:100%;margin:0;box-shadow:none}.dp-site-frame .dp-shell{width:calc(100% - 32px)}.dp-announcement .dp-shell{gap:10px;font-size:11px;min-height:39px}.dp-announcement span{max-width:72%;line-height:1.8}.dp-announcement a{font-size:10px;gap:4px}.dp-topbar .dp-shell{gap:8px;min-height:44px}.dp-utility-links{gap:12px}.dp-utility-links a{font-size:11px}.dp-theme-toggle{font-size:14px;padding:4px}.dp-language-pill{padding:3px 8px;gap:5px;font-size:11px;min-height:32px}.dp-language-pill small{display:none}.dp-masthead>.dp-shell{gap:8px;min-height:77px;padding-block:12px}.dp-logo{max-width:140px;max-height:44px}.dp-masthead .dp-brand{font-size:14px}.dp-masthead .dp-brand small{font-size:8px}.dp-header-actions{gap:5px}.dp-notification-button,.dp-cart-button{min-width:30px;min-height:35px;padding:5px;font-size:14px;border-radius:10px}.dp-account-nav>li>a{min-height:35px;padding:4px 6px;font-size:11px}.dp-account-avatar{width:24px;height:24px;font-size:13px}.dp-account-nav .dropdown-menu{min-width:220px}.dp-navtoggle{width:33px;height:35px;font-size:14px}.dp-ticker-links{gap:20px}.dp-ticker-links a{font-size:11px}.dp-service-ticker>.dp-shell{gap:12px}.dp-service-ticker strong{padding:6px 11px}.dp-home-tip p{padding:13px 14px;font-size:12px}.dp-hero-slider{height:340px;border-radius:20px}.dp-hero-slide{width:100%;padding:28px 22px 64px}body.dp-theme .dp-hero .dp-kicker{font-size:12px;white-space:normal;max-width:100%}body.dp-theme .dp-hero .dp-hero-heading{font-size:27px;white-space:normal;line-height:1.42}body.dp-theme .dp-hero .dp-lede{font-size:14px;white-space:normal;line-height:1.75}.dp-hero .dp-btn{font-size:13px;min-height:44px;padding:9px 16px;width:min(100%,310px)}.dp-hero-actions{width:100%;margin-top:14px}.dp-hero-arrows button{width:40px;height:40px;top:auto;bottom:16px;font-size:13px}.dp-hero-arrows button[data-dp-hero=prev]{inset-inline-start:15px}.dp-hero-arrows button[data-dp-hero=next]{inset-inline-end:15px}.dp-quick-service{min-height:137px;padding:15px 5px}.dp-quick-service>i{font-size:32px;width:38px;height:38px}.dp-quick-service strong{font-size:12px}.dp-quick-service>span{font-size:10px}.dp-domain-copy{padding:30px 24px}.dp-domain-copy h2{font-size:27px}.dp-domain-copy p,.dp-check-list{font-size:13px}.dp-domain-tool{padding:28px 22px}.dp-home-domain{padding:52px 0}.dp-section-heading h2{font-size:31px}.dp-section-heading p{font-size:13px}.dp-section-heading{margin-bottom:26px}.dp-benefits-grid{grid-template-columns:1fr}.dp-home-plans{padding-bottom:52px}.dp-contact-strip>.dp-shell{flex-wrap:wrap;gap:14px}.dp-contact-strip>.dp-shell>div{flex:1;min-width:220px}.dp-contact-strip strong{font-size:15px}.dp-contact-strip .dp-btn{margin-inline-start:0}.dp-footer{padding-block:34px 18px}.dp-footer-grid{grid-template-columns:1fr 1fr;gap:28px 20px}.dp-footer-brand{grid-column:1/-1}.dp-footer .dp-logo{max-width:190px}.dp-footer-about{font-size:13px;max-width:520px;margin-top:14px}.dp-footer h4{font-size:15px;margin-bottom:14px}.dp-footer a{font-size:13px}.dp-footer-connect{grid-column:1/-1;text-align:center}.dp-footer-buttons{flex-direction:row;justify-content:center;flex-wrap:wrap}.dp-footer-social{justify-content:center}.dp-footer-action{width:155px}.dp-legal{padding:14px 11px;margin-top:24px;grid-template-columns:1fr;gap:13px}.dp-legal-links,.dp-payments{justify-content:center}.dp-copyright{grid-column:1;grid-row:auto;font-size:11px}.dp-footer-grid .dp-brand{justify-content:flex-start}body.dp-shopping .dp-workspace{padding-block:26px 48px}}
@media(max-width:580px){.dp-product-grid{grid-template-columns:1fr;gap:22px}.dp-plan-body{min-height:0}.dp-plan-features{margin-bottom:22px}.dp-domain-panel{gap:24px}.dp-footer-grid{gap:28px 18px}}
@media(max-width:380px){.dp-masthead .dp-logo{max-width:108px}.dp-masthead>.dp-shell{gap:5px}.dp-header-actions{gap:4px}.dp-account-avatar{width:21px;height:21px}.dp-account-nav>li>a{padding:4px}.dp-utility-links a{font-size:10px}.dp-utility-links{gap:8px}.dp-quick-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.dp-quick-service:nth-child(n){border-bottom:1px solid var(--line);border-inline-end:1px solid var(--line)}.dp-quick-service:nth-child(2n){border-inline-end:0}.dp-quick-service:nth-last-child(-n+2){border-bottom:0}body.dp-theme .dp-hero .dp-hero-heading{font-size:22px}}
@media(prefers-reduced-motion:reduce){.dp-hero-slide{transition:none}}
@media print{.dp-announcement,.dp-topbar,.dp-masthead,.dp-service-ticker,.dp-footer{display:none!important}.dp-site-frame{width:100%;margin:0;box-shadow:none}.dp-site-frame .dp-shell{width:100%}}
.dp-mobile-tools,.dp-drawer-head,.dp-drawer-account{display:none}
.dp-navtoggle>span{display:none}
.dp-nav-scrim{position:fixed;inset:0;z-index:1100;background:rgba(20,34,26,.48)}
.dp-nav-scrim[hidden]{display:none}
@media(max-width:760px){
 .dp-announcement,.dp-topbar,.dp-header-actions{display:none}
 .dp-masthead{z-index:auto;background:var(--surface)}
 .dp-masthead>.dp-shell{min-height:64px;padding:0 8px;position:relative;justify-content:center;gap:0;flex-wrap:nowrap}
 .dp-masthead>.dp-shell>.dp-brand{position:absolute;inset-inline-start:50%;transform:translateX(-50%);width:128px;max-width:128px;height:48px;justify-content:center;gap:5px}
 [dir=rtl] .dp-masthead>.dp-shell>.dp-brand{transform:translateX(50%)}
 .dp-masthead .dp-logo{max-width:100%;max-height:44px}
 .dp-masthead .dp-mark{width:30px;height:30px;flex:0 0 30px}
 .dp-masthead .dp-brand>span{font:700 12px/1.3 Tahoma,Arial;overflow-wrap:normal}
 .dp-masthead .dp-brand small{display:none}
 .dp-navtoggle{display:inline-flex;position:absolute;inset-inline-start:0;gap:6px;margin:0;padding:0 10px;width:auto;min-width:42px;height:40px;border-radius:11px;z-index:3;font-size:17px}
 .dp-navtoggle>span{display:inline;font-size:12px;font-weight:700;line-height:1}
 .dp-mobile-tools{display:flex;position:absolute;inset-inline-end:0;align-items:center;gap:4px;direction:ltr;z-index:3}
 .dp-mobile-tool{display:grid;place-items:center;width:40px;height:40px;flex:0 0 40px;border:1px solid var(--line);border-radius:11px;background:var(--surface);color:var(--brand-700);font-size:19px;cursor:pointer;text-decoration:none}
 .dp-mobile-tool:hover{background:var(--cream);color:var(--brass)}
 .dp-mobile-language summary{list-style:none;padding:3px}
 .dp-mobile-language summary::-webkit-details-marker{display:none}
 .dp-mobile-language>div{position:fixed;z-index:150;top:68px;inset-inline:12px;padding:10px;background:var(--surface);border:1px solid var(--line);border-radius:14px;box-shadow:var(--shadow-2);max-height:60vh;overflow-y:auto;direction:ltr}
 [dir=rtl] .dp-mobile-language>div{direction:rtl}
 .dp-mobile-language a{display:flex;align-items:center;gap:10px;padding:10px 12px;color:var(--ink);font-size:13px;border-radius:8px}
 .dp-mobile-language a[aria-current=true]{background:var(--brand-50)}
 .dp-main-navigation.collapse{display:block;position:fixed;z-index:1101;inset-block:0;inset-inline-start:0;width:min(360px,92vw);height:100dvh;padding:20px 18px 30px;background:var(--surface);overflow-y:auto;overscroll-behavior:contain;visibility:hidden;pointer-events:none;transform:translateX(-105%);transition:transform .24s ease,visibility .24s;box-shadow:var(--shadow-2)}
 [dir=rtl] .dp-main-navigation.collapse{transform:translateX(105%)}
 .dp-main-navigation.collapse.show,[dir=rtl] .dp-main-navigation.collapse.show{visibility:visible;pointer-events:auto;transform:translateX(0)}
 .dp-nav-open{overflow:hidden}
 .dp-drawer-head{display:flex;justify-content:space-between;align-items:center;gap:12px;padding-bottom:18px;border-bottom:1px solid var(--line);color:var(--brand-700);font-size:15px}
 .dp-drawer-head button{display:grid;place-items:center;width:38px;height:38px;border:1px solid var(--line);border-radius:11px;background:var(--surface);color:var(--ink);font-size:17px}
 .dp-drawer-account{display:grid;gap:4px;padding-top:15px;margin-top:12px;border-top:1px solid var(--line)}
 .dp-drawer-account a,.dp-drawer-account button{display:flex;align-items:center;gap:10px;padding:11px 9px;border:0;background:transparent;color:var(--ink-700);font-size:14px;text-align:start}
 .dp-home-tip{padding:12px 0}.dp-home-tip p{min-height:62px;padding:11px 14px;line-height:1.8}
 .dp-hero-dots{bottom:21px}.dp-hero-count{display:none}
 .dp-hero-arrows button[data-dp-hero=pause]{top:10px;bottom:auto;inset-inline-end:10px;width:26px;height:26px;font-size:9px}
 .dp-quick-services{padding:14px 0 22px}
 .dp-quick-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
 .dp-quick-service:nth-child(n){border-inline-end:1px solid var(--line);border-bottom:1px solid var(--line)}
 .dp-quick-service:nth-child(2n){border-inline-end:0}
 .dp-quick-service:nth-last-child(-n+2){border-bottom:0}
 .dp-home-benefits{padding:20px 0 26px}.dp-home-benefits .dp-section-heading{margin-bottom:18px}
 .dp-benefit{padding:17px;min-height:0}.dp-benefit>span{flex-basis:48px;width:48px;height:48px;border-radius:15px}
 .dp-product-grid{grid-template-columns:1fr}.dp-plan-body{min-height:0}
 .dp-domain-panel{gap:42px}.dp-domain-tool{border-radius:20px;padding:22px}
 body.dp-shopping .dp-workspace{padding-top:22px}
}
@media(max-width:620px){
 .dp-footer{padding:38px 0 28px}
 .dp-footer-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;align-items:stretch}
 .dp-footer-brand{grid-column:1/-1;padding:0 4px 20px;display:flex;align-items:center;flex-direction:column;text-align:center}
 .dp-footer-grid .dp-footer-brand .dp-brand{justify-content:center;margin-bottom:13px}
 .dp-footer-about{margin:0;font-size:13px;line-height:1.95;color:rgba(255,255,255,.69)}
 .dp-footer-column,.dp-footer-connect{min-width:0;min-height:218px;padding:19px 16px 17px;border:1px solid rgba(255,255,255,.11);border-radius:19px;background:rgba(255,255,255,.045)}
 .dp-footer h4{margin:0 0 11px;font-size:15px;line-height:1.5}
 .dp-footer-column ul{gap:4px}.dp-footer-column a{display:block;padding-block:5px;font-size:13px;line-height:1.65}
 .dp-footer-connect{grid-column:1/-1;min-height:0}
 .dp-legal{margin-top:18px;padding:20px 14px;border-radius:19px;gap:16px;justify-items:center}
 .dp-legal-links{justify-content:center;gap:10px 16px}.dp-copyright{order:3}.dp-payments{order:4}
}
@media(max-width:430px){.dp-masthead>.dp-shell>.dp-brand{width:100px;max-width:100px}.dp-mobile-tools{gap:3px}.dp-mobile-tool{width:37px;height:37px;flex-basis:37px}.dp-mobile-language summary{width:37px;height:37px}.dp-masthead .dp-brand>span{font-size:10px}.dp-masthead .dp-mark{width:24px;height:24px;flex-basis:24px}}
@media(max-width:390px){body.dp-theme .dp-hero .dp-hero-heading{font-size:23px}body.dp-theme .dp-hero .dp-lede{font-size:13px}.dp-hero-slide{padding-inline:17px}}
@media(max-width:360px){.dp-masthead>.dp-shell>.dp-brand{width:76px;max-width:76px}.dp-mobile-tool{width:35px;height:35px;flex-basis:35px}.dp-navtoggle{padding-inline:8px;font-size:14px}.dp-navtoggle>span{font-size:11px}}
@media(max-width:350px){body.dp-theme .dp-hero .dp-hero-heading{font-size:21px}.dp-quick-grid{grid-template-columns:1fr}.dp-quick-service:nth-child(n){min-height:118px;border-inline-end:0;border-bottom:1px solid var(--line)}.dp-quick-service:last-child{border-bottom:0}}
@media(max-width:340px){.dp-footer-grid{grid-template-columns:1fr}}
@media(prefers-reduced-motion:reduce){.dp-main-navigation.collapse{transition:none}}

@media(min-width:1041px) and (max-width:1280px){.dp-masthead>.dp-shell{gap:10px}.dp-primary-nav>li>a{font-size:12px;padding-inline:5px;gap:5px}.dp-logo{max-width:170px}.dp-header-actions{gap:5px}}

@media(max-width:760px){.dp-plans-more{grid-template-columns:auto minmax(0,1fr);gap:12px;padding:16px}.dp-plans-more>.dp-btn{grid-column:1/-1;width:100%;min-width:0}}
