/* Four buyer workspaces. Use the shared white, green and red design system. */
.dm-page {
  background: var(--soft);
  min-height: 78vh;
  padding-bottom: 64px;
  font-size: 16px;
  line-height: 1.6;
}
.dm-page h1,
.dm-page h2,
.dm-page h3,
.dm-page p {
  margin-top: 0;
}
.dm-page h1 {
  font-size: 32px;
  line-height: 1.35;
  letter-spacing: -1.2px;
  margin-bottom: 9px;
}
.dm-page h2 {
  font-size: 21px;
  letter-spacing: -0.55px;
  margin-bottom: 12px;
}
.dm-page h3 {
  font-size: 18px;
  letter-spacing: -0.35px;
  margin-bottom: 6px;
}
.dm-page small,
.dm-muted {
  font-size: 14px;
  color: var(--sub);
}
.dm-page button,
.dm-page input,
.dm-page select,
.dm-page textarea {
  font: inherit;
}
.dm-page button,
.dm-page a {
  touch-action: manipulation;
}
.dm-page .button {
  font-size: 15px;
  min-height: 46px;
}
.dm-page .button:disabled {
  background: var(--soft);
  color: var(--sub);
  cursor: not-allowed;
  transform: none;
}
.dm-page :focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}
.dm-page [hidden] {
  display: none !important;
}
.dm-page .shell {
  max-width: 1280px;
}
.dm-top {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 26px 0 22px;
}
.dm-breadcrumb {
  display: flex;
  gap: 9px;
  color: var(--sub);
  font-size: 14px;
  margin-bottom: 17px;
}
.dm-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.dm-title-row p {
  margin-bottom: 0;
  color: var(--sub);
}
.dm-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.dm-body {
  padding-top: 26px;
}
.dm-demo {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0 0 22px;
  color: var(--sub);
  font-size: 14px;
  line-height: 1.55;
}
.dm-demo b {
  color: var(--sub);
  white-space: nowrap;
  font-weight: 600;
}
.dm-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 24px;
  padding: 20px 0;
}
.dm-stat {
  padding: 2px 24px;
  border-right: 1px solid var(--line);
}
.dm-stat:last-child {
  border: 0;
}
.dm-stat span {
  display: block;
  color: var(--sub);
  font-size: 14px;
}
.dm-stat strong {
  font-size: 28px;
  font-weight: 750;
  letter-spacing: -0.8px;
  display: block;
  margin-top: 5px;
  line-height: 1.3;
}
.dm-stat strong em {
  font-size: 15px;
  font-style: normal;
  margin-left: 4px;
  font-weight: 500;
  color: var(--sub);
}
.dm-stat.accent strong {
  color: var(--brand);
}
.dm-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 22px 0 18px;
  flex-wrap: wrap;
}
.dm-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.dm-filter {
  border: 1px solid var(--line);
  border-radius: 9px;
  min-height: 42px;
  padding: 8px 15px;
  color: var(--sub);
  background: var(--white);
  font-size: 14px !important;
}
.dm-filter.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.dm-search {
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 10px 13px;
  min-width: 250px;
}
.dm-search svg {
  width: 19px;
  color: var(--sub);
}
.dm-search input {
  width: 100%;
  border: 0;
  outline: 0 !important;
  font-size: 14px;
  min-width: 0;
  background: transparent;
}
.dm-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  min-width: 0;
}
.dm-card > p:last-child {
  margin-bottom: 0;
}
.dm-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}
.dm-card-title h2,
.dm-card-title h3 {
  margin-bottom: 0;
}
.dm-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 6px;
  background: var(--soft);
  color: var(--sub);
  white-space: nowrap;
}
.dm-tag.red {
  color: var(--brand);
  background: var(--brand-soft);
}
.dm-tag.green {
  color: #216c4e;
  background: #eef7f1;
}
.dm-tag.amber {
  color: #8f591c;
  background: #fff5e4;
}
.dm-tag.dark {
  color: var(--white);
  background: var(--brand-deep);
}
.dm-link {
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.dm-link svg {
  width: 16px;
}
.dm-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.dm-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.dm-card:hover {
  border-color: var(--green-light);
}
.dm-project-card .dm-card-title {
  align-items: flex-start;
  margin-bottom: 20px;
}
.dm-project-card h2 {
  font-size: 21px;
  margin: 9px 0;
}
.dm-project-location {
  color: var(--sub);
  margin: 0;
  font-size: 14px;
}
.dm-card-kicker {
  font-size: 13px;
  letter-spacing: 0.8px;
  font-weight: 700;
  color: var(--brand);
}
.dm-progress-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 8px;
}
.dm-progress-label b {
  color: var(--brand);
}
.dm-progress {
  height: 7px;
  background: var(--green-line);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}
.dm-progress > span {
  display: block;
  height: 100%;
  background: var(--brand);
  border-radius: 4px;
}
.dm-pair {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  margin: 10px 0;
}
.dm-pair span {
  color: var(--sub);
}
.dm-pair strong {
  text-align: right;
  font-weight: 600;
}
.dm-card-actions {
  display: flex;
  gap: 9px;
  margin-top: 22px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
}
.dm-card-actions .button {
  flex: 1;
  padding: 0 10px;
}
.dm-project-note {
  margin: 17px 0 0;
  background: var(--soft);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--sub);
  font-size: 14px;
}
.dm-empty {
  padding: 45px 22px;
  text-align: center;
  grid-column: 1/-1;
  border: 1px dashed var(--line);
  border-radius: 14px;
  background: var(--white);
}
.dm-empty > svg {
  width: 35px;
  height: 35px;
  color: var(--muted);
  margin-bottom: 10px;
}
.dm-empty h2 {
  margin-bottom: 7px;
}
.dm-empty p {
  color: var(--sub);
}
.dm-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: start;
}
.dm-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dm-side {
  position: sticky;
  top: 78px;
}
.dm-side .button {
  width: 100%;
  margin-top: 12px;
}
.dm-side .dm-total {
  font-size: 27px;
  color: var(--brand);
  line-height: 1.3;
  margin: 18px 0 8px;
}
.dm-tabs {
  display: flex;
  gap: 25px;
  border-bottom: 1px solid var(--line);
  margin: 24px 0 22px;
  overflow: auto;
}
.dm-tabs a {
  white-space: nowrap;
  padding: 0 2px 13px;
  font-weight: 600;
  font-size: 15px;
  color: var(--sub);
}
.dm-tabs a.active {
  color: var(--brand);
  border-bottom: 3px solid var(--brand);
}
.dm-table-wrap {
  overflow-x: auto;
  max-width: 100%;
}
.dm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.dm-table th {
  text-align: left;
  color: var(--sub);
  font-weight: 500;
  background: var(--soft);
  padding: 12px 10px;
  white-space: nowrap;
}
.dm-table td {
  padding: 18px 10px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.dm-table td.numeric,
.dm-table th.numeric {
  text-align: right;
}
.dm-table td b {
  display: block;
  color: var(--ink);
}
.dm-table td small {
  display: block;
  margin-top: 3px;
  font-size: 13px;
}
.dm-table button,
.dm-quiet-button {
  border: 0;
  background: transparent;
  color: var(--brand);
  font-size: 14px !important;
  padding: 6px;
}
.dm-table select {
  font-size: 14px;
  padding: 8px 5px;
  border: 1px solid var(--line);
  border-radius: 7px;
  max-width: 100%;
}
.dm-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dm-timeline li {
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.dm-timeline time {
  color: var(--brand);
  font-weight: 700;
  font-size: 15px;
}
.dm-timeline p {
  color: var(--sub);
  font-size: 14px;
  margin-bottom: 0;
}
.dm-form {
  max-width: 960px;
  margin: 0 auto;
}
.dm-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 21px;
}
.dm-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  font-size: 15px;
  font-weight: 600;
}
.dm-field.full {
  grid-column: 1/-1;
}
.dm-field > span > em {
  font-style: normal;
  color: var(--brand);
  margin-left: 3px;
}
.dm-field input,
.dm-field select,
.dm-field textarea,
.dm-input {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  min-height: 47px;
  padding: 11px 12px;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
}
.dm-field textarea {
  resize: vertical;
  min-height: 115px;
  line-height: 1.6;
}
.dm-field small {
  font-weight: 400;
}
.dm-form-section + .dm-form-section {
  margin-top: 20px;
}
.dm-form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
}
.dm-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
}
.dm-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
  margin-top: 3px;
  flex-shrink: 0;
}
.dm-info {
  padding: 15px 17px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  color: var(--sub);
  margin: 16px 0;
  line-height: 1.7;
}
.dm-info.important {
  background: var(--brand-soft);
  color: var(--brand);
  border-color: var(--green-line);
}
.dm-stepper {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  gap: 28px;
}
.dm-stepper li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 14px;
}
.dm-stepper span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--sub);
}
.dm-stepper li.active {
  color: var(--brand);
  font-weight: 700;
}
.dm-stepper li.active span {
  background: var(--brand);
  color: var(--white);
}
.dm-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.dm-choice {
  cursor: pointer;
}
.dm-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.dm-choice > span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 53px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  text-align: center;
  padding: 8px;
}
.dm-choice input:checked + span {
  background: var(--brand-soft);
  color: var(--brand);
  border-color: var(--brand);
  font-weight: 700;
}
.dm-choice input:focus-visible + span {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}
.dm-quote-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dm-quote-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 145px 150px 110px;
  gap: 20px;
  align-items: center;
}
.dm-quote-row p {
  font-size: 14px;
  color: var(--sub);
  margin: 5px 0 0;
}
.dm-quote-row h2 {
  font-size: 18px;
  margin: 8px 0 0;
}
.dm-row-item {
  display: grid;
  grid-template-columns: 1.4fr 1fr 90px 80px 38px;
  align-items: end;
  gap: 10px;
  margin-top: 12px;
}
.dm-row-item label {
  font-size: 14px;
  display: block;
}
.dm-row-item label > span {
  display: block;
  margin-bottom: 6px;
}
.dm-row-item input {
  font-size: 14px;
  min-height: 43px;
}
.dm-row-item button {
  height: 43px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-size: 20px;
  color: var(--sub);
}
.dm-filezone {
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  background: var(--brand-soft);
  text-align: center;
  padding: 24px;
  position: relative;
}
.dm-filezone > svg {
  color: var(--brand);
  width: 29px;
  height: 29px;
}
.dm-filezone p {
  font-size: 14px;
  color: var(--sub);
  margin-bottom: 10px;
}
.dm-filezone input {
  max-width: 100%;
  font-size: 14px;
}
.dm-file-list {
  padding: 0;
  list-style: none;
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--sub);
  overflow-wrap: anywhere;
}
.dm-success {
  max-width: 740px;
  margin: 12px auto;
  text-align: center;
  padding: 42px 32px;
}
.dm-success-mark {
  display: grid;
  place-items: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  margin: 0 auto 23px;
}
.dm-success-mark svg {
  width: 31px;
  height: 31px;
}
.dm-success h2 {
  font-size: 27px;
}
.dm-success .dm-actions {
  justify-content: center;
  margin-top: 23px;
}
.dm-success .dm-info {
  text-align: left;
}
.dm-definition {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  font-size: 15px;
  margin: 0;
}
.dm-definition dt {
  color: var(--sub);
}
.dm-definition dd {
  margin: 0;
  overflow-wrap: anywhere;
}
.dm-compare {
  min-width: 660px;
  table-layout: fixed;
}
.dm-compare th:not(:first-child),
.dm-compare td:not(:first-child) {
  text-align: center;
}
.dm-compare th:first-child {
  width: 140px;
}
.dm-compare strong {
  font-size: 21px;
  color: var(--brand);
}
.dm-compare .best {
  background: var(--brand-soft);
}
.dm-deal-card {
  padding: 0;
  overflow: hidden;
}
.dm-deal-head {
  padding: 26px;
  background: var(--soft);
  border-bottom: 1px solid var(--green-line);
  min-height: 144px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
}
.dm-deal-head.ink {
  background: var(--brand-deep);
  color: var(--white);
}
.dm-deal-head .dm-tag {
  align-self: flex-start;
}
.dm-deal-head h2 {
  font-size: 23px;
  line-height: 1.45;
  margin-bottom: 0;
}
.dm-deal-head p {
  margin: 0;
  font-size: 14px;
  color: inherit;
  opacity: 0.78;
}
.dm-deal-body {
  padding: 23px;
}
.dm-deal-price {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin: 13px 0 22px;
}
.dm-deal-price strong {
  font-size: 27px;
  color: var(--brand);
  letter-spacing: -0.8px;
}
.dm-deal-price small {
  display: block;
}
.dm-deal-price del {
  color: var(--muted);
  font-size: 14px;
}
.dm-deal-body .button {
  width: 100%;
  margin-top: 18px;
}
.dm-deal-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}
.dm-deal-terms span {
  font-size: 13px;
  color: var(--sub);
  background: var(--soft);
  padding: 5px 8px;
  border-radius: 5px;
}
.dm-unit-price {
  color: var(--brand);
  font-size: 34px;
  letter-spacing: -1px;
  line-height: 1.25;
}
.dm-tier {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin: 18px 0;
}
.dm-tier > div {
  border: 1px solid var(--line);
  padding: 15px 10px;
  border-radius: 9px;
  text-align: center;
  font-size: 14px;
}
.dm-tier > div.active {
  border-color: var(--brand);
  background: var(--brand-soft);
}
.dm-tier b {
  display: block;
  font-size: 18px;
  color: var(--brand);
  margin-top: 6px;
}
.dm-quantity {
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr) 43px;
  gap: 0;
  margin-top: 10px;
}
.dm-quantity button {
  border: 1px solid var(--line);
  background: var(--soft);
  font-size: 22px;
}
.dm-quantity button:first-child {
  border-radius: 8px 0 0 8px;
}
.dm-quantity button:last-child {
  border-radius: 0 8px 8px 0;
}
.dm-quantity input {
  border: 1px solid var(--line);
  border-left: 0;
  border-right: 0;
  width: 100%;
  text-align: center;
  min-height: 47px;
  font-size: 18px;
}
.dm-brand-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 25px;
  align-items: center;
  background: var(--brand-deep);
  color: var(--white);
  padding: 28px 32px;
  border-radius: 16px;
  margin-bottom: 25px;
}
.dm-brand-feature h2 {
  font-size: 25px;
  margin-bottom: 8px;
}
.dm-brand-feature p {
  color: #d5cfd4;
  font-size: 15px;
  margin-bottom: 0;
}
.dm-brand-feature .dm-search {
  color: var(--ink);
  border-color: var(--white);
}
.dm-brand-card {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.dm-wordmark {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #ece9ec;
  padding: 8px 0 23px;
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.dm-wordmark span {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-left: 6px;
}
.dm-brand-card p {
  color: var(--sub);
  font-size: 14px;
  margin-bottom: 0;
  min-height: 44px;
}
.dm-brand-card .dm-actions {
  justify-content: space-between;
  margin-top: auto;
}
.dm-favorite-brand {
  background: none;
  border: 0;
  padding: 5px;
  color: var(--sub);
}
.dm-favorite-brand.active {
  color: var(--brand);
}
.dm-favorite-brand.active svg {
  fill: var(--brand-soft);
}
.dm-brand-hero {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  gap: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 32px;
}
.dm-brand-hero .dm-wordmark {
  border: 0;
  border-right: 1px solid var(--line);
  padding-right: 30px;
  font-size: 35px;
  min-height: 100px;
}
.dm-brand-hero h2 {
  font-size: 23px;
}
.dm-brand-hero p {
  color: var(--sub);
  margin-bottom: 10px;
}
.dm-material-row {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 90px 110px;
  align-items: center;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.dm-material-row:last-child {
  border-bottom: 0;
}
.dm-material-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
}
.dm-material-row input[type="number"] {
  width: 100%;
  min-height: 42px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 16px;
}
.dm-material-row h3 {
  font-size: 16px;
}
.dm-material-row p {
  font-size: 14px;
  margin: 0;
  color: var(--sub);
}
.dm-material-row > b {
  font-size: 15px;
  text-align: right;
}
.dm-catalog-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dm-catalog-product {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 17px;
}
.dm-product-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
}
.dm-catalog-product h3 {
  font-size: 17px;
}
.dm-catalog-product p {
  font-size: 14px;
  color: var(--sub);
  margin: 0;
}
.dm-catalog-product small {
  display: block;
  margin-top: 5px;
}
.dm-inline-list {
  margin: 0;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.95;
  color: var(--sub);
}
.dm-note-line {
  font-size: 14px;
  color: var(--sub);
  padding: 12px 0;
}
.dm-divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 20px 0;
}
.nav-inner > a.dm-nav-active {
  color: var(--brand);
  box-shadow: inset 0 -3px var(--brand);
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 1050px) {
  .dm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dm-layout {
    grid-template-columns: minmax(0, 1fr) 270px;
  }
  .dm-quote-row {
    grid-template-columns: minmax(0, 1fr) 130px 110px;
  }
  .dm-quote-row .dm-row-date {
    display: none;
  }
  .dm-stat {
    padding: 0 18px;
  }
  .dm-stat strong {
    font-size: 25px;
  }
  .dm-title-row h1 {
    font-size: 29px;
  }
}
@media (max-width: 760px) {
  .dm-page {
    padding-bottom: 35px;
  }
  .dm-page .shell {
    width: calc(100% - 32px);
  }
  .dm-top {
    padding: 20px 0;
  }
  .dm-breadcrumb {
    font-size: 13px;
    margin-bottom: 12px;
  }
  .dm-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }
  .dm-title-row h1 {
    font-size: 27px;
  }
  .dm-title-row p {
    font-size: 15px;
  }
  .dm-title-row > .dm-actions {
    width: 100%;
  }
  .dm-title-row > .dm-actions > .button {
    flex: 1;
  }
  .dm-body {
    padding-top: 20px;
  }
  .dm-demo {
    display: block;
    font-size: 13px;
    margin-bottom: 17px;
  }
  .dm-demo b {
    margin-right: 6px;
  }
  .dm-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
    border-radius: 13px;
  }
  .dm-stat {
    padding: 17px;
    border-bottom: 1px solid var(--line);
  }
  .dm-stat:nth-child(2) {
    border-right: 0;
  }
  .dm-stat:nth-child(3),
  .dm-stat:nth-child(4) {
    border-bottom: 0;
  }
  .dm-stat strong {
    font-size: 24px;
  }
  .dm-stat span {
    font-size: 14px;
  }
  .dm-grid,
  .dm-grid.two {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .dm-card {
    padding: 19px;
    border-radius: 13px;
  }
  .dm-toolbar {
    margin: 18px 0 15px;
    gap: 13px;
  }
  .dm-toolbar > .dm-search {
    width: 100%;
    min-width: 0;
  }
  .dm-filters {
    gap: 6px;
  }
  .dm-filter {
    padding: 7px 11px;
    min-height: 41px;
  }
  .dm-layout {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .dm-side {
    position: static;
  }
  .dm-tabs {
    gap: 23px;
    margin-top: 21px;
  }
  .dm-tabs a {
    font-size: 15px;
  }
  .dm-fields {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .dm-field.full {
    grid-column: auto;
  }
  .dm-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dm-stepper {
    gap: 17px;
    justify-content: space-between;
  }
  .dm-stepper li {
    font-size: 13px;
    gap: 6px;
  }
  .dm-stepper span {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  .dm-form-actions {
    position: sticky;
    bottom: 65px;
    background: rgba(246, 246, 247, 0.97);
    z-index: 10;
    padding: 14px 0;
    gap: 8px;
  }
  .dm-form-actions > .button {
    flex: 1;
    padding: 0 11px;
  }
  .dm-quote-row {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }
  .dm-quote-row > div:first-child {
    grid-column: 1/-1;
  }
  .dm-quote-row .dm-row-summary {
    font-size: 14px;
  }
  .dm-quote-row h2 {
    font-size: 19px;
  }
  .dm-quote-row > .button {
    min-width: 105px;
  }
  .dm-row-item {
    grid-template-columns: 1fr 80px 38px;
    gap: 9px;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid var(--line);
  }
  .dm-row-item label:first-child {
    grid-column: 1/-1;
  }
  .dm-row-item label:nth-child(2) {
    grid-column: 1/-1;
  }
  .dm-row-item label:nth-child(4) {
    grid-column: 2;
  }
  .dm-success {
    padding: 30px 18px;
  }
  .dm-success h2 {
    font-size: 24px;
  }
  .dm-success .button {
    width: 100%;
  }
  .dm-definition {
    grid-template-columns: 85px 1fr;
    gap: 12px;
    font-size: 14px;
  }
  .dm-project-table thead {
    display: none;
  }
  .dm-project-table tr {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0 14px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }
  .dm-project-table td {
    border: 0;
    padding: 6px 0;
  }
  .dm-project-table td:first-child {
    grid-column: 1/-1;
  }
  .dm-project-table td[data-label]::before {
    content: attr(data-label);
    font-size: 13px;
    color: var(--sub);
    margin-right: 8px;
  }
  .dm-project-table td.numeric {
    text-align: left;
  }
  .dm-deal-head {
    padding: 23px;
    min-height: 133px;
  }
  .dm-deal-body {
    padding: 20px;
  }
  .dm-deal-card {
    padding: 0;
  }
  .dm-tier {
    gap: 7px;
  }
  .dm-tier > div {
    padding: 12px 7px;
  }
  .dm-tier b {
    font-size: 16px;
  }
  .dm-brand-feature {
    grid-template-columns: 1fr;
    padding: 23px;
    gap: 20px;
  }
  .dm-brand-feature h2 {
    font-size: 22px;
  }
  .dm-brand-feature .dm-search {
    min-width: 0;
  }
  .dm-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .dm-brand-card {
    padding: 16px;
    gap: 12px;
  }
  .dm-wordmark {
    font-size: 23px;
    min-height: 80px;
    padding-bottom: 16px;
  }
  .dm-wordmark span {
    font-size: 14px;
  }
  .dm-brand-card h3 {
    font-size: 16px;
  }
  .dm-brand-card p {
    min-height: 0;
    font-size: 13px;
  }
  .dm-brand-card .dm-link {
    font-size: 13px;
  }
  .dm-brand-hero {
    grid-template-columns: 1fr;
    padding: 21px;
    gap: 20px;
  }
  .dm-brand-hero .dm-wordmark {
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 20px;
    min-height: 80px;
    justify-content: flex-start;
    font-size: 31px;
  }
  .dm-brand-hero h2 {
    font-size: 21px;
  }
  .dm-brand-hero p {
    font-size: 15px;
  }
  .dm-catalog-product {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }
  .dm-catalog-product .button {
    grid-column: 1/-1;
    min-height: 42px;
  }
  .dm-product-icon {
    width: 42px;
    height: 42px;
  }
  .dm-material-row {
    grid-template-columns: 22px minmax(0, 1fr) 73px;
    gap: 10px;
  }
  .dm-material-row > b {
    grid-column: 2/-1;
    text-align: left;
  }
  .dm-timeline li {
    grid-template-columns: 72px 1fr;
    gap: 13px;
  }
  .dm-card-title {
    align-items: flex-start;
    gap: 10px;
  }
  .dm-card-title h2 {
    font-size: 19px;
  }
  .dm-card-title > .dm-link {
    white-space: nowrap;
  }
  .dm-table-wrap:focus-visible {
    outline-offset: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .dm-page * {
    transition: none !important;
    animation: none !important;
  }
}
@media (max-width: 820px) {
  body.category-workspace > .category-nav {
    display: block;
    height: 52px;
    top: 66px;
  }
  body.category-workspace .category-nav .nav-inner {
    display: flex;
    overflow-x: auto;
    width: calc(100% - 24px);
    gap: 0;
    scrollbar-width: none;
  }
  body.category-workspace .category-nav .all-category,
  body.category-workspace .category-nav .nav-spacer,
  body.category-workspace .category-nav .auth-prompt,
  body.category-workspace .category-nav a[href="#orders"],
  body.category-workspace .category-nav a[href="#partner"] {
    display: none;
  }
  body.category-workspace .category-nav a {
    height: 100%;
    flex: 1;
    justify-content: center;
    padding: 0 12px;
    display: flex;
    align-items: center;
    font-size: 14px;
  }
  body.category-workspace .dm-side {
    top: 132px;
  }
}
