.market-account__inner {
  min-height: 100%;
  height: 100%;
}

.market-account__auth-bg {
  display: none;
}

.market-account__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.market-account__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #f2f2f3;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.market-account__back svg {
  width: 18px;
  height: 18px;
}

.market-account__notice {
  display: none;
  margin-top: 18px;
  border-radius: 18px;
  background: #111f16;
  color: #8ee3ad;
  padding: 13px 15px;
  font-size: 13px;
  line-height: 1.35;
}

.market-account__notice.is-visible {
  display: block;
}

.market-account__content {
  width: 100%;
  margin-top: 24px;
}

.market-account__auth-card {
  display: grid;
  max-width: 520px;
  gap: 24px;
  color: #ffffff;
}

.market-account__auth-card--wide {
  max-width: 820px;
}

.market-account__social-login {
  display: grid;
  gap: 14px;
}

.market-account__social-label {
  color: #8f9299;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.market-account__social-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.market-account__social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border: 2px solid #37383d;
  border-radius: 999px;
  background: transparent;
  color: #f5f5f6;
  padding: 0;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.market-account__social-button:hover,
.market-account__social-button.is-active {
  border-color: rgba(255, 255, 255, 0.18);
  background: #202126;
  color: #ffffff;
  transform: translateY(-1px);
}

.market-account__social-button svg {
  width: 20px;
  height: 20px;
}

.market-account__yandex-icon {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  color: #fc3f1d;
}

.market-account__phone-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  overflow: hidden;
  transition:
    grid-template-rows 220ms ease,
    opacity 180ms ease;
}

.market-account__phone-panel.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.market-account__phone-panel > .market-account__form {
  min-height: 0;
  padding-top: 2px;
}

.market-account__auth-card--login > .market-account__secondary {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: fit-content;
  min-height: auto;
  margin-right: auto;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #f5f5f6;
  padding: 0;
  text-align: center;
  text-decoration: none;
}

.market-account__auth-card--login > .market-account__secondary:hover {
  color: #ffffff;
}

.market-account__otp-form {
  display: grid;
  gap: 18px;
}

.market-account__otp-card {
  display: flex;
  width: min(100%, 320px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}

.market-account__otp-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.market-account__otp-card .label {
  color: #ffffff;
  font-size: 16px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.02em;
}

.market-account__otp-card .text-sm {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.market-account__otp-card .text-muted {
  color: #8e9198;
}

.market-account__otp-card .text-foreground {
  color: #ffffff;
}

.input-otp {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: var(--root-height);
  cursor: text;
  user-select: none;
}

.input-otp__group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.input-otp__slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: #1f2024;
  color: #ffffff;
  font-size: 18px;
  font-weight: 650;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition:
    border-color 160ms ease,
    background 160ms ease;
}

.input-otp__slot[data-filled="true"] {
  border-color: rgba(255, 255, 255, 0.18);
  background: #26272c;
}

.input-otp__separator {
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: #565a63;
}

.input-otp__input-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.input-otp__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0 solid transparent;
  background: transparent;
  color: transparent;
  caret-color: transparent;
  outline: 0 solid transparent;
  box-shadow: none;
  font-family: monospace;
  font-size: var(--root-height);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.5em;
  line-height: 1;
  pointer-events: all;
}

.market-account__otp-help {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 4px 0;
}

.market-account__otp-help .link {
  border: 0;
  background: transparent;
  padding: 0;
  color: #ffffff;
  font: inherit;
  font-size: 14px;
  line-height: 1.45;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.market-account__profile-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.9), rgba(245, 245, 246, 0.94) 44%, rgba(174, 179, 186, 0.9) 100%);
  color: #090909;
  box-shadow:
    inset 0 -18px 34px rgba(0, 0, 0, 0.16),
    0 22px 80px rgba(255, 255, 255, 0.1);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.market-account__auth-copy h2,
.market-account__profile-copy h1 {
  color: #ffffff;
  font-size: clamp(34px, 7vw, 52px);
  font-weight: 560;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.market-account__auth-copy p,
.market-account__profile-copy p,
.market-account__hint {
  margin-top: 10px;
  color: #8e9198;
  font-size: 14px;
  line-height: 1.55;
}

.market-account__form {
  display: grid;
  gap: 12px;
}

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

.market-account__field {
  display: grid;
  gap: 8px;
}

.market-account__field--wide {
  grid-column: 1 / -1;
}

.market-account__field span {
  color: #8f9299;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.market-account__field input {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 18px;
  background: #191a1e;
  color: #f5f5f6;
  padding: 0 16px;
  font: inherit;
  font-size: 16px;
  outline: none;
  box-shadow: none;
}

.market-account__field input::placeholder {
  color: #70737a;
}

.market-account__field input:disabled,
.market-account__primary:disabled,
.market-account__secondary:disabled {
  cursor: wait;
  opacity: 0.62;
}

.market-account__code-field input {
  text-align: center;
  font-size: 28px;
  font-weight: 650;
  letter-spacing: 0.32em;
}

.market-account__dev-code {
  border-radius: 18px;
  background: #15171b;
  color: #9ea2ad;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.35;
}

.market-account__dev-code strong {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.market-account__primary,
.market-account__secondary,
.market-account__edit,
.market-account__logout {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.market-account__primary {
  background: #f5f5f6;
  color: #101010;
}

.market-account__secondary,
.market-account__edit,
.market-account__logout {
  background: #191a1e;
  color: #f3f3f4;
}

.market-account__profile-head {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 310px;
  padding: 22px 0 10px;
  text-align: center;
  color: #ffffff;
}

.market-account__avatar-frame {
  position: relative;
  display: inline-flex;
}

.market-account__online-dot {
  content: "";
  position: absolute;
  right: 7px;
  bottom: 8px;
  width: 17px;
  height: 17px;
  border: 3px solid #000000;
  border-radius: 999px;
  background: #7df0ac;
}

.market-account__profile-copy {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 18px;
}

.market-account__profile-copy p,
.market-account__profile-copy span {
  margin: 0;
  color: #90939b;
  font-size: 15px;
  line-height: 1.2;
}

.market-account__profile-copy p {
  color: #b3b5bb;
  font-weight: 500;
}

.market-account__profile-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.market-account__edit,
.market-account__logout {
  position: relative;
  z-index: 1;
  min-height: 44px;
  padding: 0 18px;
}

.market-account__edit {
  background: #24262b;
}

.market-account__profile-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 5vw, 44px);
  margin: 0 auto 24px;
  padding: 4px 0 18px;
}

.market-account__profile-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: #777b84;
  padding: 0;
  font: inherit;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: color 160ms ease;
}

.market-account__profile-tab strong {
  color: #f3f3f4;
  font-size: 16px;
  font-weight: 600;
}

.market-account__profile-tab.is-active,
.market-account__profile-tab:hover {
  color: #ffffff;
}

.market-account__quick-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.market-account__quick-stat {
  display: grid;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  background: #101113;
  padding: 16px;
  color: #ffffff;
}

.market-account__quick-stat span,
.market-account__block-head span,
.market-account__contact-copy span {
  color: #898d96;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.market-account__quick-stat strong {
  color: #ffffff;
  font-size: 22px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.05em;
}

.market-account__contact-card {
  display: grid;
  gap: 16px;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 28px;
  background: #101113;
  padding: 18px;
  color: #ffffff;
}

.market-account__block-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.market-account__block-head strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.02em;
}

.market-account__contact-list {
  display: grid;
  gap: 8px;
}

.market-account__contact-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border-radius: 20px;
  background: #15161a;
  padding: 12px;
}

.market-account__contact-icon,
.market-account__section-icon,
.market-account__section-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.market-account__contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: #202126;
  color: #f3f3f4;
}

.market-account__contact-icon svg,
.market-account__section-icon svg,
.market-account__section-arrow svg {
  width: 22px;
  height: 22px;
}

.market-account__contact-copy {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.market-account__contact-copy strong {
  overflow: hidden;
  color: #f2f2f3;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.market-account__sections {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.market-account__section-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  background: #101113;
  color: #ffffff;
  padding: 18px;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.market-account__section-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: #15161a;
  transform: translateY(-1px);
}

.market-account__section-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  color: #101010;
}

.market-account__section-icon--mint {
  background: #b9f7dc;
}

.market-account__section-icon--blue {
  background: #c8d7ff;
}

.market-account__section-icon--peach {
  background: #ffd2b8;
}

.market-account__section-icon--violet {
  background: #d7c8ff;
}

.market-account__section-icon--neutral {
  background: #1b1b1b;
  color: #e0e0e0;
}

.market-account__section-copy {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.market-account__section-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}

.market-account__section-description {
  color: #8d9097;
  font-size: 13px;
  line-height: 1.4;
}

.market-account__section-side {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.market-account__section-value {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #1a1b1f;
  color: #d9dbe0;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.market-account__section-arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #18191d;
  color: #f2f2f3;
}

.market-account__section-detail {
  position: relative;
  display: grid;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
  padding: 26px 0 12px;
  color: #ffffff;
}

.market-account__section-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #15161a;
  color: #f5f5f6;
  cursor: pointer;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.market-account__section-close:hover {
  background: #f5f5f6;
  color: #101010;
  transform: translateY(-1px);
}

.market-account__section-close svg {
  width: 20px;
  height: 20px;
}

.market-account__detail-hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding-right: 58px;
}

.market-account__detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 24px;
  color: #101010;
}

.market-account__detail-icon svg {
  width: 28px;
  height: 28px;
}

.market-account__detail-copy {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.market-account__detail-copy > span {
  color: #8f9299;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.market-account__detail-copy h1 {
  color: #ffffff;
  font-size: clamp(34px, 7vw, 52px);
  font-weight: 560;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.market-account__detail-copy p {
  max-width: 520px;
  color: #8e9198;
  font-size: 14px;
  line-height: 1.5;
}

.market-account__detail-list {
  display: grid;
  gap: 12px;
}

.market-account__detail-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  background: #101113;
  padding: 18px;
}

.market-account__detail-row-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.market-account__detail-row-copy strong {
  overflow: hidden;
  color: #f5f5f6;
  font-size: 17px;
  font-weight: 620;
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.market-account__detail-row-copy span {
  color: #8d9097;
  font-size: 13px;
  line-height: 1.45;
}

.market-account__detail-status {
  border-radius: 999px;
  background: #1a1b1f;
  color: #d9dbe0;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.market-account__dashboard {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-bottom: 24px;
  color: #f5f5f5;
}

.market-account__dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0 28px;
}

.market-account__identity {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 16px;
}

.market-account__dashboard .market-account__profile-avatar {
  width: 68px;
  height: 68px;
  background: #ededed;
  box-shadow: none;
  font-size: 24px;
}

.market-account__dashboard .market-account__online-dot {
  right: 2px;
  bottom: 3px;
  width: 14px;
  height: 14px;
  border-width: 3px;
  background: #7fe3a3;
}

.market-account__identity-copy {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.market-account__identity-copy > span,
.market-account__panel-heading > span,
.market-account__order-topline > span,
.market-account__delivery-copy > span {
  color: #777777;
  font-size: 11px;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.market-account__identity-copy h1 {
  overflow: hidden;
  margin: 0;
  color: #f7f7f7;
  font-size: clamp(25px, 2.5vw, 36px);
  font-weight: 590;
  line-height: 1;
  letter-spacing: -0.045em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.market-account__identity-copy p {
  overflow: hidden;
  margin: 0;
  color: #8d8d8d;
  font-size: 13px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.market-account__header-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.market-account__round-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #272727;
  border-radius: 999px;
  background: #101010;
  color: #bdbdbd;
  padding: 0;
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.market-account__round-action:hover {
  border-color: #3a3a3a;
  background: #191919;
  color: #ffffff;
}

.market-account__round-action svg {
  width: 19px;
  height: 19px;
}

.market-account__order-card {
  overflow: hidden;
  border: 1px solid #242424;
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 255, 255, 0.075), transparent 29%),
    #0d0d0d;
  padding: 24px;
}

.market-account__order-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.market-account__order-topline strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #92dbaa;
  font-size: 12px;
  font-weight: 650;
}

.market-account__order-topline strong::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.market-account__order-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.market-account__order-products {
  display: flex;
  min-width: 82px;
  padding-left: 14px;
}

.market-account__order-products img,
.market-account__order-products > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-left: -14px;
  border: 3px solid #0d0d0d;
  border-radius: 17px;
  background: #1b1b1b;
  color: #e7e7e7;
  object-fit: cover;
}

.market-account__order-products > span svg {
  width: 24px;
  height: 24px;
}

.market-account__order-copy {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.market-account__order-copy > span {
  color: #7f7f7f;
  font-size: 12px;
}

.market-account__order-copy h2 {
  overflow: hidden;
  margin: 0;
  color: #f5f5f5;
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 590;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.market-account__order-copy p {
  margin: 0;
  color: #c7c7c7;
  font-size: 14px;
  font-weight: 600;
}

.market-account__order-open {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: #f2f2f2;
  color: #111111;
  padding: 0 18px;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}

.market-account__order-open svg {
  width: 15px;
  height: 15px;
}

.market-account__order-progress {
  overflow: hidden;
  height: 3px;
  margin-top: 24px;
  border-radius: 999px;
  background: #292929;
}

.market-account__order-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #eeeeee;
}

.market-account__order-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: #636363;
  font-size: 10px;
}

.market-account__order-steps span,
.market-account__quick-action strong,
.market-account__quick-action small,
.market-account__panel-heading span,
.market-account__panel-heading strong,
.market-account__menu-copy strong,
.market-account__menu-copy span,
.market-account__delivery-copy span,
.market-account__delivery-copy strong,
.market-account__delivery-copy p {
  margin: 0;
}

.market-account__quick-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.market-account__quick-action {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 112px;
  justify-items: start;
  border: 1px solid #222222;
  border-radius: 24px;
  background: #0c0c0c;
  color: #f5f5f5;
  padding: 16px;
  text-align: left;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.market-account__quick-action:hover {
  border-color: #383838;
  background: #131313;
  transform: translateY(-1px);
}

.market-account__quick-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 13px;
  background: #1b1b1b;
  color: #d8d8d8;
}

.market-account__quick-icon svg {
  width: 19px;
  height: 19px;
}

.market-account__quick-action strong {
  align-self: end;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
}

.market-account__quick-action small {
  position: absolute;
  top: 17px;
  right: 17px;
  min-width: 22px;
  border-radius: 999px;
  background: #202020;
  color: #a9a9a9;
  padding: 5px 7px;
  font-size: 10px;
  text-align: center;
}

.market-account__dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  align-items: start;
  gap: 12px;
  margin-top: 12px;
}

.market-account__dashboard-side {
  display: grid;
  gap: 12px;
}

.market-account__menu-panel,
.market-account__delivery-card {
  border: 1px solid #222222;
  border-radius: 28px;
  background: #0c0c0c;
}

.market-account__menu-panel {
  overflow: hidden;
  padding: 20px;
}

.market-account__panel-heading {
  display: grid;
  gap: 6px;
  padding: 2px 2px 18px;
}

.market-account__panel-heading strong {
  color: #f3f3f3;
  font-size: 18px;
  font-weight: 590;
  letter-spacing: -0.025em;
}

.market-account__menu-list {
  display: grid;
}

.market-account__menu-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 13px;
  width: 100%;
  min-height: 72px;
  border: 0;
  border-top: 1px solid #1f1f1f;
  background: transparent;
  color: #f4f4f4;
  padding: 11px 2px;
  text-align: left;
  cursor: pointer;
}

.market-account__menu-icon,
.market-account__menu-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.market-account__menu-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: #191919;
  color: #bbbbbb;
}

.market-account__menu-icon svg {
  width: 19px;
  height: 19px;
}

.market-account__menu-copy {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.market-account__menu-copy strong {
  font-size: 14px;
  font-weight: 600;
}

.market-account__menu-copy span {
  overflow: hidden;
  color: #777777;
  font-size: 11px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.market-account__menu-meta {
  color: #8a8a8a;
  font-size: 11px;
  white-space: nowrap;
}

.market-account__menu-arrow {
  color: #656565;
}

.market-account__menu-arrow svg {
  width: 16px;
  height: 16px;
}

.market-account__menu-row:hover .market-account__menu-icon {
  background: #222222;
  color: #ffffff;
}

.market-account__delivery-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
}

.market-account__delivery-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: #1a1a1a;
  color: #d5d5d5;
}

.market-account__delivery-icon svg {
  width: 21px;
  height: 21px;
}

.market-account__delivery-copy {
  display: grid;
  min-width: 0;
  gap: 6px;
}

.market-account__delivery-copy strong {
  overflow: hidden;
  color: #f2f2f2;
  font-size: 13px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.market-account__delivery-copy p {
  color: #727272;
  font-size: 10px;
  line-height: 1.35;
}

.market-account__delivery-card > button {
  border: 0;
  background: transparent;
  color: #bdbdbd;
  padding: 8px 0;
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}
