@font-face {
  font-family: "IRANSansWeb";
  src: url("/fonts/iransans/IRANSansWeb.woff2") format("woff2"),
       url("/fonts/iransans/IRANSansWeb.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IRANSansWeb";
  src: url("/fonts/iransans/IRANSansWeb_Bold.woff2") format("woff2"),
       url("/fonts/iransans/IRANSansWeb_Bold.woff") format("woff");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #111827;
  --muted: #667085;
  --bg: #f5f7fb;
  --card: #ffffff;
  --line: #e4e7ec;
  --line-strong: #d0d5dd;
  --brand: #101828;
  --brand-soft: #344054;
  --accent: #f97316;
  --accent-dark: #ea580c;
  --accent-soft: #fff3e8;
  --ok: #047857;
  --bad: #b42318;
  --radius: 24px;
  --shadow: 0 18px 45px rgba(16, 24, 40, 0.08);
  --font: "IRANSansWeb", Tahoma, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  padding-bottom: 76px;
  background:
    radial-gradient(circle at 8% 0%, rgba(249, 115, 22, 0.11), transparent 30rem),
    linear-gradient(180deg, #fafbfc 0, var(--bg) 24rem);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.8;
}
body, input, button, textarea, select { font-family: var(--font); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font-size: 13px; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.25);
  outline-offset: 2px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: -70px;
  right: 16px;
  padding: 10px 16px;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

.topbar {
  position: sticky;
  z-index: 30;
  top: 0;
  min-height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(228, 231, 236, 0.9);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 900; }
.brand-mark, .brand-logo {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 15px;
  background: var(--brand);
  color: #fff;
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.brand b { max-width: 220px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 17px; }
.topbar nav { display: flex; align-items: center; gap: 4px; }
.topbar nav a { padding: 9px 12px; border-radius: 12px; color: #344054; font-size: 12px; font-weight: 800; }
.topbar nav a:hover { background: #f2f4f7; color: #101828; }
.logout-form { margin-right: auto; }

.shell { width: min(1200px, 100%); margin: 0 auto; padding: 30px 18px 72px; }
.hero {
  min-height: 360px;
  padding: clamp(28px, 5vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  gap: 36px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 0%, rgba(249, 115, 22, 0.34), transparent 24rem),
    linear-gradient(135deg, #101828, #344054);
  color: #fff;
  box-shadow: 0 28px 70px rgba(16, 24, 40, 0.18);
}
.hero-copy { max-width: 680px; }
.hero h1 { margin: 8px 0 14px; font-size: clamp(32px, 4.4vw, 58px); line-height: 1.42; letter-spacing: -0.035em; }
.hero p { margin: 0; color: #d0d5dd; font-size: 15px; line-height: 2.05; }
.eyebrow, .section-kicker { color: #fb923c; font-size: 11px; font-weight: 900; letter-spacing: 0.02em; }
.hero-actions { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; }

.searchbox {
  display: grid;
  gap: 13px;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.searchbox label { display: grid; gap: 6px; color: #f2f4f7; font-size: 11px; font-weight: 800; }

input, textarea, select {
  width: 100%;
  min-height: 46px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:hover, textarea:hover, select:hover { border-color: var(--line-strong); }
input:focus, textarea:focus, select:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1); }
textarea { min-height: 100px; resize: vertical; }

button, .btn {
  min-height: 46px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
button:hover, .btn:hover { transform: translateY(-1px); border-color: var(--line-strong); }
.primary, button.primary { border-color: transparent; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; box-shadow: 0 10px 24px rgba(234, 88, 12, 0.2); }
.soft, button.soft { border-color: #fed7aa; background: var(--accent-soft); color: #c2410c; }
.ghost, button.ghost { border-color: var(--line); background: rgba(255, 255, 255, 0.92); color: var(--ink); }

.panel {
  margin-top: 20px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}
.center { text-align: center; }
.section-head { margin-bottom: 20px; display: flex; justify-content: space-between; align-items: flex-end; gap: 18px; }
.section-head h1, .section-head h2 { margin: 2px 0 0; font-size: clamp(24px, 3vw, 34px); line-height: 1.45; }
.section-head p { margin: 5px 0 0; color: var(--muted); font-size: 12px; }

.category-chips { margin-bottom: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.category-chips a { padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: #475467; font-size: 11px; font-weight: 800; }
.category-chips a:hover, .category-chips a.active { border-color: #fdba74; background: var(--accent-soft); color: #c2410c; }

.catalog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.design-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.design-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(16, 24, 40, 0.1); }
.preview { position: relative; height: 230px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, #101828, #475467); color: #fff; }
.preview > span { font-size: 28px; font-weight: 900; letter-spacing: 0.05em; }
.preview img { width: 100%; height: 100%; object-fit: cover; }
.preview-badge { position: absolute; right: 12px; bottom: 12px; padding: 5px 9px; border-radius: 999px; background: rgba(16, 24, 40, 0.78); color: #fff; font-size: 10px; font-weight: 800; backdrop-filter: blur(8px); }
.design-body { padding: 17px; }
.design-title-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.design-title-row h3 { margin: 0; font-size: 16px; }
.design-title-row p { margin: 4px 0 0; color: var(--muted); font-size: 11px; }
.design-title-row code { padding: 4px 7px; border-radius: 8px; background: #f2f4f7; color: #475467; direction: ltr; font-size: 10px; }
.keyword-list { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 5px; }
.keyword-list span { padding: 4px 8px; border-radius: 999px; background: #f2f4f7; color: #475467; font-size: 9px; }
.design-body dl { margin: 14px 0; display: grid; gap: 6px; }
.design-body dl div { padding-bottom: 6px; display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px solid #f2f4f7; font-size: 10px; }
.design-body dt { color: var(--muted); }
.design-body dd { margin: 0; font-weight: 900; }
.card-actions { display: grid; gap: 9px; }
.quantity-action { display: grid; grid-template-columns: minmax(78px, 0.5fr) minmax(0, 1fr); gap: 8px; }
.quantity-action label { display: grid; grid-template-columns: auto minmax(50px, 1fr); align-items: center; gap: 7px; color: var(--muted); font-size: 10px; font-weight: 800; }
.quantity-action input[type="text"] { grid-column: 1 / -1; }
.quantity-action button { min-height: 42px; }

.direct-order-panel { display: grid; grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr); gap: 30px; align-items: start; }
.direct-order-intro h2 { margin: 4px 0 8px; font-size: clamp(24px, 3vw, 34px); }
.direct-order-intro p { margin: 0; color: var(--muted); font-size: 13px; }
.direct-order-intro ul { margin: 18px 0 0; padding-right: 20px; color: #475467; font-size: 12px; }
.direct-order-form { padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: #f9fafb; }
.file-picker { padding: 14px; border: 1px dashed #f59e0b; border-radius: 16px; background: #fffbeb; }
.file-picker span { color: #92400e; font-size: 10px; font-weight: 700; }

.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 24px; align-items: start; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.form-grid label { display: grid; gap: 7px; color: #344054; font-size: 11px; font-weight: 800; }
.wide { grid-column: 1 / -1; }
.auth-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-narrow { max-width: 560px; margin-inline: auto; }
.two { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.empty { padding: 38px; display: grid; gap: 6px; text-align: center; color: var(--muted); border: 1px dashed var(--line-strong); border-radius: 20px; background: #fcfcfd; }
.empty strong { color: #344054; }

.toast { position: fixed; z-index: 50; top: 84px; right: 18px; left: 18px; padding: 13px 16px; border-radius: 16px; box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1); font-size: 12px; }
.toast.error { border: 1px solid #fecdca; background: #fef3f2; color: var(--bad); }
.toast.success { border: 1px solid #a6f4c5; background: #ecfdf3; color: var(--ok); }

.order-list, .line-list, .receipt-list, .delivery-list { display: grid; gap: 12px; }
.order-card, .line-card, .receipt-card, .delivery-card { padding: 16px; display: grid; gap: 9px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.order-card { grid-template-columns: 1.5fr auto 1fr; align-items: center; }
.order-card small { color: var(--accent); font-weight: 900; }
.order-card h2, .order-card h3 { margin: 4px 0; }
.order-card b { font-size: 18px; }
.order-card span { display: block; color: var(--muted); font-size: 10px; }
.compact .order-card { grid-template-columns: 1fr auto; }
.order-hero { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.order-hero h1 { margin: 6px 0; font-size: 36px; }
.amount-box { min-width: 230px; padding: 18px; border-radius: 20px; background: var(--brand); color: #fff; }
.amount-box span, .amount-box small { display: block; color: #d0d5dd; }
.amount-box b { display: block; margin: 6px 0; font-size: 30px; }
.line-card { grid-template-columns: 96px minmax(0, 1fr) 250px; align-items: center; }
.mini-preview { width: 96px; height: 96px; display: grid; place-items: center; overflow: hidden; border-radius: 18px; background: #f2f4f7; color: #101828; font-weight: 900; }
.mini-preview img { width: 100%; height: 100%; object-fit: cover; }
.approve-form { display: grid; gap: 8px; }
.receipt-card { grid-template-columns: minmax(0, 1fr) auto auto auto; align-items: center; }
.receipt-card span { color: var(--muted); font-size: 10px; }
.delivery-card ul { margin: 6px 0 0; padding-right: 18px; color: var(--muted); font-size: 11px; }

.site-footer { width: min(1200px, 100%); margin: 0 auto; padding: 26px 18px 30px; display: flex; justify-content: space-between; align-items: center; gap: 18px; color: #667085; font-size: 11px; }
.site-footer div { display: grid; gap: 2px; }
.site-footer strong { color: #344054; font-size: 13px; }
.site-footer a { font-weight: 900; }
.mobile-nav { position: fixed; z-index: 35; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); background: rgba(255, 255, 255, 0.96); box-shadow: 0 -12px 28px rgba(16, 24, 40, 0.08); backdrop-filter: blur(14px); }
.mobile-nav a { min-height: 60px; display: grid; place-items: center; color: #475467; font-size: 10px; font-weight: 900; }

@media (min-width: 880px) {
  body { padding-bottom: 0; }
  .mobile-nav { display: none; }
}

@media (max-width: 1050px) {
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .topbar nav a { padding-inline: 8px; }
}

@media (max-width: 879px) {
  .topbar { min-height: 64px; padding: 0 14px; }
  .topbar nav { display: none; }
  .brand b { max-width: 180px; }
  .logout-form { margin-right: auto; }
  .shell { padding: 18px 12px 84px; }
  .hero { min-height: 0; padding: 28px; grid-template-columns: 1fr; border-radius: 26px; }
  .hero h1 { font-size: clamp(30px, 9vw, 44px); }
  .catalog-grid, .split, .auth-grid, .form-grid, .direct-order-panel { grid-template-columns: 1fr; }
  .wide { grid-column: auto; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .order-card, .line-card, .receipt-card { grid-template-columns: 1fr; }
  .order-hero { display: grid; }
  .amount-box { min-width: 0; }
  .preview { height: 210px; }
  .site-footer { padding-bottom: 86px; align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .catalog-grid { grid-template-columns: 1fr; }
  .panel { border-radius: 20px; }
  .hero-actions, .hero-actions .btn { width: 100%; }
  .quantity-action { grid-template-columns: 1fr; }
  .quantity-action input[type="text"] { grid-column: auto; }
  .brand-mark, .brand-logo { width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

.account-menu { position: relative; margin-right: auto; }
.account-menu summary { min-width: 150px; padding: 8px 12px; display: grid; gap: 2px; border: 1px solid var(--line); border-radius: 14px; background: #fff; cursor: pointer; list-style: none; }
.account-menu summary::-webkit-details-marker { display: none; }
.account-menu summary span { color: var(--muted); font-size: 9px; }
.account-menu summary b { max-width: 190px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 11px; }
.account-menu-popover { position: absolute; z-index: 60; top: calc(100% + 8px); left: 0; min-width: 230px; padding: 8px; display: grid; gap: 3px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); }
.account-menu-popover a, .account-menu-popover button { min-height: 38px; padding: 8px 10px; justify-content: flex-start; border: 0; border-radius: 10px; background: transparent; color: #344054; font-size: 10px; font-weight: 800; }
.account-menu-popover a:hover, .account-menu-popover button:hover { background: #f2f4f7; transform: none; }
.account-menu-popover form { margin: 0; border-top: 1px solid var(--line); padding-top: 4px; }
.account-hero { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.account-hero h1 { margin: 4px 0; }
.account-hero p { margin: 0; color: var(--muted); }
.account-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.status-pill { display: inline-flex; margin-inline-start: 8px; padding: 4px 9px; border-radius: 999px; background: var(--accent-soft); color: #c2410c; font-size: 9px; font-weight: 900; }
.check-row { display: flex !important; grid-column: 1 / -1; align-items: center; gap: 8px; }
.check-row input { width: auto; }
.shipping-form { display: grid; gap: 20px; }
.shipping-orders { display: grid; gap: 10px; }
.select-card { padding: 14px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 16px; background: #fff; cursor: pointer; }
.select-card:has(input:checked) { border-color: #fb923c; background: #fff7ed; }
.select-card input { width: 18px; height: 18px; }
.select-card span { display: grid; gap: 3px; }
.select-card small { color: var(--muted); }
.mobile-nav { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 879px) {
  .account-menu summary { min-width: 0; }
  .account-menu summary span { display: none; }
  .account-menu-popover { left: 0; right: auto; }
  .account-hero { align-items: stretch; flex-direction: column; }
  .account-actions { display: grid; grid-template-columns: 1fr; }
  .select-card { grid-template-columns: auto minmax(0, 1fr); }
  .select-card strong { grid-column: 2; }
}
/* Customer portal operational surfaces */
.inline-actions { display:flex; flex-wrap:wrap; gap:8px; }
.active-order-grid,.repeat-grid,.account-summary-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.active-order-card,.repeat-card,.account-summary-grid article { padding:18px; border:1px solid var(--line); border-radius:20px; background:#fff; }
.active-order-card { display:grid; grid-template-columns:minmax(0,1fr) auto; gap:16px; }
.active-order-card h2,.repeat-card h3 { margin:3px 0 8px; }
.active-order-card dl { margin:0; display:grid; gap:7px; min-width:170px; }
.active-order-card dl div { display:flex; justify-content:space-between; gap:12px; border-bottom:1px solid #f2f4f7; font-size:10px; }
.active-order-card dt { color:var(--muted); }.active-order-card dd { margin:0; font-weight:900; }
.status-pill { display:inline-flex!important; width:max-content; padding:5px 10px; border-radius:999px; background:#eef2ff; color:#3730a3!important; font-size:10px!important; font-weight:900; }
.repeat-card { display:grid; grid-template-columns:84px minmax(0,1fr) 190px; gap:15px; align-items:center; }
.repeat-card form { display:grid; gap:8px; }.repeat-card p { color:var(--muted); font-size:11px; }
.account-summary-grid { margin-top:20px; grid-template-columns:repeat(4,minmax(0,1fr)); }
.account-summary-grid article { display:grid; gap:5px; box-shadow:var(--shadow); }.account-summary-grid span,.account-summary-grid small { color:var(--muted); font-size:10px; }.account-summary-grid strong { font-size:22px; }
.positive { color:var(--ok)!important; }.negative { color:var(--bad)!important; }
.table-wrap { overflow:auto; border:1px solid var(--line); border-radius:18px; }.statement-table { width:100%; border-collapse:collapse; min-width:820px; }.statement-table th,.statement-table td { padding:12px; border-bottom:1px solid var(--line); text-align:right; font-size:11px; }.statement-table th { background:#f9fafb; color:#475467; }.statement-table td small { display:block; color:var(--muted); }
.balance-badge { padding:12px 16px; border-radius:16px; background:var(--brand); color:#fff; }.balance-badge strong { display:block; font-size:21px; }
.shipping-balance-preview { display:grid; grid-template-columns:1fr auto 1fr auto; gap:12px; align-items:center; padding:14px; border-radius:16px; background:#f9fafb; }.form-warning { margin:0; color:var(--bad); text-align:center; }.shipping-form button:disabled { opacity:.5; cursor:not-allowed; }
.account-menu { margin-right:auto; position:relative; }.account-menu summary { min-height:46px; padding:8px 14px; display:flex; align-items:center; gap:8px; border:1px solid var(--line); border-radius:14px; cursor:pointer; list-style:none; }.account-menu summary span { color:var(--muted); font-size:10px; }.account-menu-popover { position:absolute; z-index:50; left:0; top:54px; min-width:220px; padding:8px; display:grid; gap:3px; border:1px solid var(--line); border-radius:16px; background:#fff; box-shadow:var(--shadow); }.account-menu-popover a,.account-menu-popover button { min-height:38px; justify-content:flex-start; padding:7px 10px; border:0; box-shadow:none; font-size:11px; }
.mobile-nav { grid-template-columns:repeat(5,1fr); }
@media(max-width:879px){.active-order-grid,.repeat-grid,.account-summary-grid{grid-template-columns:1fr}.repeat-card,.active-order-card{grid-template-columns:1fr}.shipping-balance-preview{grid-template-columns:1fr auto}.account-menu{margin-right:auto}.account-menu summary span{display:none}}


.order-card-preview { flex: 0 0 auto; }
.order-card-main { min-width: 0; }
.order-history-card { grid-template-columns: 96px minmax(0,1fr) auto; align-items: center; }
.approval-complete { align-self: center; padding: 10px 14px; border-radius: 14px; background: #ecfdf3; color: #027a48; font-weight: 900; }
.statement-preview, .receipt-preview { display: inline-grid; place-items: center; overflow: hidden; width: 72px; height: 72px; border-radius: 14px; background: #f2f4f7; color: var(--muted); }
.statement-preview img, .receipt-preview img { width: 100%; height: 100%; object-fit: cover; }
.receipt-with-preview { grid-template-columns: 84px minmax(0,1fr) auto auto; }
.receipt-preview .btn { font-size: 9px; padding: 8px; text-align: center; }
@media(max-width:879px) {
  .order-history-card, .receipt-with-preview { grid-template-columns: 1fr; }
  .statement-preview, .receipt-preview { width: 100%; height: 180px; }
}

.push-permission{position:fixed;z-index:120;inset:0;display:grid;place-items:center;padding:20px}.push-permission[hidden]{display:none}.push-permission-backdrop{position:absolute;inset:0;border:0;background:rgba(15,23,42,.66);backdrop-filter:blur(4px)}.push-permission-card{position:relative;z-index:1;width:min(480px,94vw);padding:26px;border-radius:24px;background:#fff;box-shadow:0 28px 80px rgba(0,0,0,.28)}.push-permission-card h2{margin:6px 0 10px}.push-permission-card p{margin:0;color:var(--muted);font-size:12px;line-height:2}.push-permission-actions{display:flex;gap:10px;margin-top:20px}.push-permission-status{margin-top:14px;padding:10px 12px;border-radius:12px;background:#ecfdf5;color:#047857;font-size:11px}.push-permission-status.error{background:#fef2f2;color:#b91c1c}@media(max-width:520px){.push-permission{align-items:end;padding:0}.push-permission-card{width:100%;border-radius:24px 24px 0 0;padding:22px}.push-permission-actions{display:grid}}
