:root{
  --help-bg:#eef4fb;
  --help-panel:#171b22;
  --help-panel-2:#202631;
  --help-panel-3:#2b3240;
  --help-surface:#ffffff;
  --help-surface-soft:#f7faff;
  --help-line:#d9e3ef;
  --help-text:#1d2734;
  --help-muted:#617185;
  --help-accent:#5865f2;
  --help-accent-strong:#4158d0;
  --help-shadow:0 18px 42px rgba(15,23,42,.12);
  --help-shadow-soft:0 10px 24px rgba(15,23,42,.08);
  --help-radius:18px;
  --help-radius-lg:24px;
}

html,body{min-height:100%}
body.help-public-page{min-height:100vh;}
body{
  margin:0;
  color:var(--help-text);
  background:
    radial-gradient(circle at top left, rgba(88,101,242,.14), transparent 30%),
    radial-gradient(circle at top right, rgba(65,88,208,.10), transparent 25%),
    linear-gradient(180deg,#f8fbff 0%,var(--help-bg) 100%);
  font-family:"Open Sans",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  overflow-x:hidden;
}
body.help-public-page{
  min-height:100vh;
}
a{color:var(--help-accent-strong)}
a:hover{color:var(--help-accent)}
img{max-width:100%;height:auto}

.help-shell,
.help-site-shell{
  width:min(1680px,calc(100% - 28px));
  margin:18px auto 26px;
  display:grid;
  gap:18px;
  position:relative;
}

.help-page-render{
  width:100%;
}

.help-home-shell,
.help-site-shell{
  display:grid;
  gap:18px;
  width:100%;
}

.help-home-layout,
.help-site-layout{
  display:grid;
  gap:18px;
}

.help-topbar,
.help-site-header{
  position:sticky;
  top:0;
  z-index:40;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 18px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:22px;
  background:rgba(23,27,34,.96);
  color:#fff;
  box-shadow:0 16px 34px rgba(15,23,42,.20);
  backdrop-filter:blur(14px);
}
.help-brand{
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:0;
}
.help-site-brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.help-brand-link{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  min-width:0;
  border:0;
  outline:0;
  box-shadow:none;
}
.help-brand-title{
  display:inline-flex;
  align-items:center;
  justify-content:flex-start;
  min-width:0;
  line-height:0;
  margin:0;
  padding:0;
  border:0;
  outline:0;
  background:transparent;
  box-shadow:none;
}
.help-brand-title strong{
  font-size:1.2rem;
  letter-spacing:-.02em;
}
.help-brand-title--image,
.help-brand-title img,
.help-brand-logo{
  display:block;
  width:auto;
  max-width:280px;
  max-height:70px;
  object-fit:contain;
  border:0;
  outline:0;
  box-shadow:none;
  vertical-align:middle;
}
.site-brand-logo{
  display:block;
  max-height:42px;
  width:auto;
  max-width:min(280px,100%);
  object-fit:contain;
}
.site-brand-combo{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-width:0;
}
.site-brand-combo img{
  max-height:42px;
  width:auto;
  object-fit:contain;
}
.help-brand span{
  color:rgba(255,255,255,.72);
  font-size:.92rem;
}
.help-topbar-actions,
.help-site-actions,
.help-site-header-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.help-menu-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.08);
  color:#fff;
  cursor:pointer;
  box-shadow:none;
  flex-shrink:0;
}
.help-menu-toggle:hover{
  background:rgba(255,255,255,.14);
  border-color:rgba(255,255,255,.2);
}
.help-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--help-line);
  background: linear-gradient(180deg, #fff, #f8f9fa);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--help-shadow-soft);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease, color .16s ease;
}
.help-button:hover,.button:hover{
  transform:translateY(-1px);
  border-color:rgba(88,101,242,.28);
  box-shadow:0 14px 26px rgba(15,23,42,.10);
}
.help-button.primary,.button.primary{
  background:linear-gradient(180deg,var(--help-accent),var(--help-accent-strong));
  border-color:transparent;
  color:#fff;
}
.help-button.dark{
  background:linear-gradient(180deg,var(--help-panel-3),var(--help-panel-2));
  color:#fff;
  border-color:rgba(255,255,255,.08);
}
.help-site-shell .help-button:not(.primary):not(.dark),
.help-site-shell .button:not(.primary):not(.dark),
.help-home-shell .help-button:not(.primary):not(.dark),
.help-home-shell .button:not(.primary):not(.dark),
.help-site-shell .help-button:not(.primary):not(.dark):hover,
.help-site-shell .button:not(.primary):not(.dark):hover,
.help-home-shell .help-button:not(.primary):not(.dark):hover,
.help-home-shell .button:not(.primary):not(.dark):hover,
.help-site-shell .help-button:not(.primary):not(.dark):focus,
.help-site-shell .button:not(.primary):not(.dark):focus,
.help-home-shell .help-button:not(.primary):not(.dark):focus,
.help-home-shell .button:not(.primary):not(.dark):focus,
.help-site-shell .help-button:not(.primary):not(.dark):active,
.help-site-shell .button:not(.primary):not(.dark):active,
.help-home-shell .help-button:not(.primary):not(.dark):active,
.help-home-shell .button:not(.primary):not(.dark):active{
  color:#000 !important;
}

.help-grid,
.help-site-layout{
  display:grid;
  grid-template-columns:290px minmax(0,1fr) 310px;
  gap:18px;
  align-items:start;
  min-width:0;
}

.help-sidebar-backdrop{
  position:fixed;
  inset:0;
  background:rgba(15,23,42,.42);
  z-index:60;
}

.help-sidebar,
.help-site-sidebar,
.help-main,
.help-site-main,
.help-rail,
.help-site-rightbar{
  min-width:0;
}

.help-sidebar,
.help-site-sidebar,
.help-rail,
.help-site-rightbar{
  position:sticky;
  top:92px;
}

.help-sidebar-collapsed .help-site-layout{
  grid-template-columns:minmax(0,1fr) 310px;
}
.help-sidebar-collapsed .help-site-sidebar{
  display:none;
}

.help-card,
.help-sidebar-card,
.help-site-card,
.help-rail-card,
.help-hero,
.help-content-section,
.help-panel,
.help-page-card,
.help-note,
.help-stat,
.help-404{
  background:var(--help-surface);
  border:1px solid var(--help-line);
  border-radius:var(--help-radius-lg);
  box-shadow:var(--help-shadow);
}

.help-sidebar-card{
  overflow:hidden;
  margin-bottom:16px;
}
.help-sidebar-header{
  padding:18px 18px 14px;
  background:linear-gradient(135deg, rgba(88,101,242,.14), rgba(65,88,208,.06));
  border-bottom:1px solid var(--help-line);
}
.help-sidebar-header h2,
.help-sidebar-header h3{
  margin:0 0 6px;
  font-size:1.1rem;
}
.help-sidebar-header p{
  margin:0;
  color:var(--help-muted);
  line-height:1.5;
}
.help-sidebar-body{
  padding:12px;
}
.help-menu-list{
  list-style:none;
  padding:0;
  margin:0;
}
.help-menu-list > li{
  margin:0 0 8px;
}
.help-menu-list a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  text-decoration:none;
  color:var(--help-text);
  background:#f8fbff;
  border:1px solid transparent;
  border-radius:14px;
  padding:11px 13px;
  font-weight:700;
  box-shadow:0 8px 18px rgba(15,23,42,.05);
}
.help-menu-list a:hover{
  border-color:rgba(88,101,242,.22);
  color:var(--help-accent-strong);
}
.help-menu-list li.is-active > a{
  background:#eef2ff;
  border-color:rgba(88,101,242,.18);
  color:var(--help-accent-strong);
}
.help-menu-list ul{
  list-style:none;
  padding:8px 0 0 14px;
  margin:0;
}
.help-menu-list ul a{
  font-size:.96rem;
  font-weight:600;
}
.help-menu-list .menu-tag{
  display:inline-flex;
  align-items:center;
  padding:.18rem .45rem;
  border-radius:999px;
  background:rgba(88,101,242,.12);
  color:var(--help-accent-strong);
  font-size:.72rem;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.help-main,
.help-site-main{
  display:grid;
  gap:18px;
  min-width:0;
}

.help-hero{
  display:grid;
  grid-template-columns:minmax(0,1.7fr) minmax(260px,.95fr);
  gap:0;
  overflow:hidden;
}
.help-hero-copy,
.help-hero-main{
  padding:24px;
}
.help-kicker{
  display:inline-flex;
  align-items:center;
  padding:.28rem .65rem;
  border-radius:999px;
  background:rgba(88,101,242,.12);
  color:var(--help-accent-strong);
  font-size:.74rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.help-hero h1{
  margin:.5rem 0 .45rem;
  font-size:clamp(2rem,3vw,3rem);
  line-height:1.08;
}
.help-hero p{
  color:var(--help-muted);
  line-height:1.7;
  margin:.4rem 0 0;
}
.help-hero-actions,
.help-panel-actions,
.help-rail-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.help-hero-side{
  padding:22px;
  background:linear-gradient(180deg,var(--help-panel) 0%, var(--help-panel-2) 100%);
  color:#fff;
}
.help-page-home .help-hero-side{
  background:linear-gradient(180deg,var(--help-panel) 0%, var(--help-panel-2) 100%);
}
.help-page-internal .help-hero-side{
  background:linear-gradient(180deg,var(--help-panel) 0%, var(--help-panel-2) 100%);
}
.help-hero-side h2,
.help-hero-side p,
.help-hero-side li{
  color:#fff;
}
.help-hero-side ul{
  margin:.8rem 0 0;
  padding-left:1rem;
}
.help-hero-side li{margin-bottom:.5rem}

.help-panel{
  padding:22px;
}
.help-panel-header{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:18px;
}
.help-panel-header h2{
  margin:0 0 4px;
  font-size:1.5rem;
}
.help-panel-header p{
  margin:0;
  color:var(--help-muted);
  line-height:1.6;
}
.help-subtitle{
  font-size:.92rem;
  color:var(--help-muted);
}

.help-card-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.help-page-card{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding:18px;
  text-decoration:none;
  color:inherit;
}
.help-page-card:hover{
  transform:translateY(-2px);
  box-shadow:0 20px 36px rgba(15,23,42,.12);
}
.help-page-card .label{
  display:inline-flex;
  align-items:center;
  align-self:flex-start;
  padding:.25rem .55rem;
  border-radius:999px;
  background:rgba(88,101,242,.12);
  color:var(--help-accent-strong);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.help-page-card h3{
  margin:0;
  font-size:1.08rem;
}
.help-page-card p{
  margin:0;
  color:var(--help-muted);
  line-height:1.65;
}
.help-page-card .meta{
  margin-top:auto;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  color:var(--help-muted);
  font-size:.88rem;
}
.help-page-card .meta span{
  display:inline-flex;
  align-items:center;
  padding:.2rem .5rem;
  border-radius:999px;
  background:var(--help-surface-soft);
  border:1px solid var(--help-line);
}

.help-block{
  background:var(--help-surface);
  border:1px solid var(--help-line);
  border-radius:var(--help-radius-lg);
  box-shadow:var(--help-shadow);
  padding:20px;
}
.help-block + .help-block{margin-top:18px}
.help-block h2,
.help-block h3{
  margin-top:0;
}
.help-block .section-text{
  margin:.3rem 0 0;
  color:var(--help-muted);
  line-height:1.6;
}

.help-content-body,
.help-block .content-html{
  margin-top:16px;
  max-width:100%;
  overflow-x:auto;
  color:var(--help-text);
  font-size:1.02rem;
  line-height:1.85;
}
.help-content-body > :first-child,
.help-block .content-html > :first-child{
  margin-top:0;
}
.help-content-body > :last-child,
.help-block .content-html > :last-child{
  margin-bottom:0;
}
.help-content-body p,
.help-content-body ul,
.help-content-body ol,
.help-content-body blockquote,
.help-content-body pre,
.help-content-body table,
.help-content-body section,
.help-content-body article,
.help-content-body .help-doc-card,
.help-content-body .help-example,
.help-content-body .help-warning,
.help-content-body .help-steps,
.help-content-body .help-checklist,
.help-content-body .help-command-box,
.help-content-body .help-field-list{
  margin:0 0 16px;
}
.help-content-body p{
  color:var(--help-text);
}
.help-content-body p.help-edit-gap,
.help-block .content-html p.help-edit-gap{
  margin:0;
  min-height:.45rem;
  line-height:.45rem;
}
.help-content-body h1,
.help-content-body h2,
.help-content-body h3,
.help-content-body h4,
.help-content-body h5,
.help-content-body h6{
  margin:1.35em 0 .55em;
  line-height:1.18;
  letter-spacing:-.02em;
  color:var(--help-text);
}
.help-content-body h2{
  font-size:clamp(1.5rem,2vw,1.9rem);
  padding-bottom:.4rem;
  border-bottom:1px solid var(--help-line);
}
.help-content-body h3{
  font-size:1.25rem;
}
.help-content-body h4{
  font-size:1.08rem;
  color:var(--help-muted);
}
.help-content-body ul,
.help-content-body ol{
  padding-left:1.35rem;
  margin-left:.1rem;
}
.help-content-body li{
  margin:.35rem 0;
  padding-left:.15rem;
}
.help-content-body li::marker{
  color:var(--help-accent-strong);
}
.help-content-body strong{
  color:var(--help-text);
}
.help-content-body code{
  display:inline-flex;
  align-items:center;
  padding:.14rem .45rem;
  border-radius:8px;
  border:1px solid rgba(88,101,242,.18);
  background:#eef2ff;
  color:var(--help-accent-strong);
  font-size:.95em;
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
}
.help-content-body pre{
  padding:14px 16px;
  border-radius:16px;
  background:#101827;
  color:#e5eefb;
  border:1px solid rgba(16,24,39,.06);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
  overflow:auto;
  white-space:pre-wrap;
  word-break:break-word;
}
.help-content-body pre code{
  display:block;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  color:inherit;
}
.help-content-body blockquote,
.help-doc-card,
.help-example,
.help-warning,
.help-steps,
.help-checklist,
.help-command-box,
.help-field-list,
.help-content-body section,
.help-content-body article{
  padding:16px 18px;
  border-radius:18px;
  background:linear-gradient(180deg,#fff,var(--help-surface-soft));
  border:1px solid var(--help-line);
  box-shadow:var(--help-shadow-soft);
}
.help-content-body blockquote{
  border-left:5px solid var(--help-accent);
  color:var(--help-muted);
  font-style:italic;
}
.help-content-body blockquote > :first-child,
.help-doc-card > :first-child,
.help-example > :first-child,
.help-warning > :first-child,
.help-steps > :first-child,
.help-checklist > :first-child,
.help-command-box > :first-child,
.help-field-list > :first-child{
  margin-top:0;
}
.help-content-body blockquote > :last-child,
.help-doc-card > :last-child,
.help-example > :last-child,
.help-warning > :last-child,
.help-steps > :last-child,
.help-checklist > :last-child,
.help-command-box > :last-child,
.help-field-list > :last-child{
  margin-bottom:0;
}
.help-content-body .help-doc-card,
.help-content-body .help-example,
.help-content-body .help-warning,
.help-content-body .help-steps,
.help-content-body .help-checklist,
.help-content-body .help-command-box,
.help-content-body .help-field-list,
.help-content-body .help-columns,
.help-content-body section,
.help-content-body article{
  display:grid;
  gap:10px;
}
.help-content-body .help-columns{
  grid-template-columns:repeat(2,minmax(0,1fr));
  align-items:start;
}
.help-content-body .help-column{
  min-width:0;
  display:grid;
  gap:10px;
}
.help-content-body .help-example{
  border-color:rgba(88,101,242,.18);
  background:linear-gradient(180deg,#f9fbff,#eef4ff);
}
.help-content-body .help-warning{
  border-color:rgba(245,158,11,.28);
  background:linear-gradient(180deg,#fffaf0,#fff7e6);
}
.help-content-body .help-command-box{
  border-color:rgba(16,185,129,.22);
  background:linear-gradient(180deg,#f7fffb,#edfdf5);
}
.help-content-body .help-steps ol,
.help-content-body .help-checklist ul,
.help-content-body .help-field-list ul{
  margin:.2rem 0 0;
}
.help-content-body .help-doc-card h2,
.help-content-body .help-example h2,
.help-content-body .help-warning h2,
.help-content-body .help-steps h2,
.help-content-body .help-checklist h2,
.help-content-body .help-command-box h2,
.help-content-body .help-field-list h2{
  margin-top:0;
}
.help-content-body .help-command-box code{
  background:#dcfce7;
  border-color:rgba(16,185,129,.22);
  color:#166534;
}
.help-content-body figure{
  margin:0;
}
.help-content-body .help-media{
  display:grid;
  gap:10px;
}
.help-video-block{
  margin:24px 0;
}
.help-video-frame{
  position:relative;
  width:100%;
  aspect-ratio:16 / 9;
  overflow:hidden;
  border-radius:18px;
  border:1px solid var(--help-line);
  background:#000;
  box-shadow:var(--help-shadow-soft);
}
.help-video-frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
@supports not (aspect-ratio: 1 / 1){
  .help-video-frame{
    height:0;
    padding-top:56.25%;
  }
}
.help-content-body .help-content-image{
  display:block;
  width:100%;
  height:auto;
  border-radius:16px;
  border:1px solid var(--help-line);
  box-shadow:var(--help-shadow-soft);
}
.help-content-body table{
  width:100%;
  min-width:720px;
  border-collapse:separate;
  border-spacing:0;
  background:#fff;
  border:1px solid var(--help-line);
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--help-shadow-soft);
}
.help-content-body th,
.help-content-body td{
  padding:12px 14px;
  border-bottom:1px solid var(--help-line);
  text-align:left;
  vertical-align:top;
}
.help-content-body th{
  background:#f8fbff;
  color:var(--help-muted);
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.05em;
}
.help-content-body tr:last-child td{
  border-bottom:0;
}
.help-content-body a{
  text-decoration:underline;
  text-decoration-color:rgba(88,101,242,.26);
  text-underline-offset:2px;
}
.help-content-body a:hover{
  text-decoration-color:currentColor;
}

.help-content-section .help-panel-header,
.help-content-section .help-panel-actions{
  position:relative;
}

.help-page-home .help-content-section,
.help-page-internal .help-content-section{
  background:var(--help-surface);
}

.help-content-section:not(.help-hero){
  padding:22px;
}

.help-page-home .help-card,
.help-page-internal .help-card{
  background:var(--help-surface);
}

.help-page-home .help-button,
.help-page-home .button,
.help-page-internal .help-button,
.help-page-internal .button{
  border-radius:14px;
}

.help-grid-2,
.help-grid-3,
.help-site-grid-2,
.help-site-grid-3{
  display:grid;
  gap:14px;
}
.help-grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.help-grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.help-site-grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.help-site-grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}

.help-note{
  padding:16px;
}
.help-note p{
  margin:0;
  color:var(--help-muted);
  line-height:1.65;
}
.help-note strong{
  display:block;
  margin-bottom:.35rem;
}

.help-rail-card{
  overflow:hidden;
  margin-bottom:16px;
}
.help-rail-card .help-sidebar-header{
  background:linear-gradient(135deg, rgba(65,88,208,.14), rgba(88,101,242,.07));
}
.help-rail-card .help-sidebar-body{
  display:grid;
  gap:10px;
}
.help-rail-card .help-sidebar-body .help-button,
.help-rail-card .help-sidebar-body .button{
  width:100%;
}

.help-stat{
  padding:16px;
}
.help-stat strong{
  display:block;
  margin-bottom:.35rem;
}
.help-stat p{
  margin:0;
  color:var(--help-muted);
  line-height:1.65;
}

.help-empty,
.help-404{
  padding:18px;
}
.help-empty p,
.help-404 p{
  margin:0;
  color:var(--help-muted);
  line-height:1.65;
}

.help-footer{
  padding:4px 2px 0;
  color:var(--help-muted);
  font-size:.92rem;
}

@media (max-width: 1220px){
  .help-grid,
  .help-site-layout{
    grid-template-columns:260px minmax(0,1fr);
  }
  .help-rail{
    grid-column:1 / -1;
    position:static;
  }
  .help-card-grid,
  .help-grid-3{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 960px){
  .help-shell,
  .help-site-shell{
    width:min(100%,calc(100% - 14px));
    margin:8px auto 18px;
  }
  .help-topbar,
  .help-site-header{
    position:static;
    flex-direction:column;
    align-items:flex-start;
  }
  .help-grid,
  .help-site-layout{
    grid-template-columns:1fr;
  }
  .help-site-sidebar{
    position:fixed;
    top:72px;
    left:12px;
    bottom:12px;
    width:min(320px,calc(100vw - 24px));
    z-index:70;
    background:var(--help-surface);
    border:1px solid var(--help-line);
    border-radius:20px;
    box-shadow:var(--help-shadow);
    transform:translateX(-110%);
    transition:transform .22s ease;
    overflow:auto;
  }
  .help-sidebar-open .help-site-sidebar{
    transform:translateX(0);
  }
  .help-sidebar-open .help-sidebar-backdrop{
    display:block;
  }
  .help-sidebar,
  .help-rail,
  .help-site-rightbar{
    position:static;
  }
  .help-sidebar-collapsed .help-site-sidebar{
    display:none;
  }
  .help-card-grid,
  .help-grid-2,
  .help-grid-3,
  .help-hero,
  .help-content-body .help-columns{
    grid-template-columns:1fr;
  }
}

@media (max-width: 720px){
  .help-site-header{
    padding:12px 14px;
  }
  .help-site-brand{
    width:100%;
  }
  .help-site-header-actions{
    width:100%;
  }
  .help-menu-toggle{
    width:40px;
    height:40px;
  }
  .help-brand-logo{
    max-width:140px;
    max-height:34px;
  }
  .help-topbar-actions,
  .help-hero-actions,
  .help-panel-actions,
  .help-rail-actions{
    width:100%;
  }
  .help-button,
  .button{
    width:100%;
  }
  .help-hero-copy,
  .help-hero-side,
  .help-panel,
  .help-block,
  .help-note{
    padding:16px;
  }
  .help-sidebar-header,
  .help-sidebar-body,
  .help-rail-card .help-sidebar-body{
    padding-left:14px;
    padding-right:14px;
  }
}
