/* ============================================================
   SAMAM Admin — Business V3 (по прототипу index.html V2/V3)
   Тёмная премиум-тема для Django Admin
   ============================================================ */

:root {
  --sam-bg: #071018;
  --sam-bg2: #0b1621;
  --sam-panel: #0e1d2a;
  --sam-panel2: #122536;
  --sam-line: #21384b;
  --sam-text: #eef5fa;
  --sam-muted: #8ba1b3;
  --sam-blue: #58a7ff;
  --sam-cyan: #5ce4df;
  --sam-green: #55d89a;
  --sam-yellow: #ffd166;
  --sam-red: #ff7080;
  --sam-shadow: 0 18px 48px rgba(0, 0, 0, .28);
}

html, body {
  margin: 0;
  min-height: 100vh;
}
body {
  background:
    radial-gradient(circle at 90% -15%, rgba(88, 167, 255, .15), transparent 25%),
    linear-gradient(180deg, var(--sam-bg), var(--sam-bg2));
  background-attachment: fixed;
  color: var(--sam-text);
  font: 14px/1.45 Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}
a { color: var(--sam-blue); text-decoration: none; }
a:hover { color: var(--sam-cyan); }
small { color: var(--sam-muted); }
h1, h2, h3, h4 { color: var(--sam-text); font-weight: 800; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: #21384b; border-radius: 99px; }
::-webkit-scrollbar-track { background: transparent; }

/* ================= Верхняя панель (topbar) ================= */
.bx-header {
  position: sticky;
  top: 0;
  height: 64px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: rgba(7, 16, 24, .88);
  backdrop-filter: blur(18px);
  box-shadow: none;
}
.bx-header-left { flex: 0 0 auto; }
.bx-logo a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--sam-text);
}
.bx-logo .logo-mark {
  width: 35px;
  height: 35px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--sam-blue), var(--sam-cyan));
  color: #04111a;
  font-weight: 950;
  font-size: 17px;
  box-shadow: 0 8px 28px rgba(88, 167, 255, .28);
}
.bx-logo .logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.bx-logo .logo-text b { font-size: 17px; letter-spacing: -.3px; }
.bx-logo .logo-text small { font-size: 10px; color: var(--sam-muted); }
.bx-logo svg { display: none; }

.bx-header-right { margin-left: auto; display: flex; align-items: center; gap: 7px; }
.bx-user { position: relative; display: flex; align-items: center; gap: 8px; }
.bx-user-name {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .085);
  background: rgba(255, 255, 255, .05);
  border-radius: 10px;
  cursor: pointer;
  color: var(--sam-text);
}
.bx-user:hover .bx-user-name { background: rgba(255, 255, 255, .085); }
.bx-user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
  background: linear-gradient(135deg, #28455d, #173044);
  border: 1px solid rgba(255, 255, 255, .08);
}
.bx-user-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 46px;
  min-width: 200px;
  background: #0d1b28;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 12px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
  overflow: hidden;
  z-index: 90;
}
.bx-user:hover .bx-user-menu,
.bx-user:focus-within .bx-user-menu { display: block; }
.bx-user-menu a,
.bx-user-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  border: 0;
  background: transparent;
  color: #dce8f0;
  font-size: 13px;
  cursor: pointer;
}
.bx-user-menu a:hover,
.bx-user-menu button:hover { background: rgba(88, 167, 255, .09); color: #fff; }

/* ================= Каркас: сайдбар + контент ================= */
.bx-wrapper { display: grid; grid-template-columns: 265px minmax(0, 1fr); min-height: calc(100vh - 64px); }

.bx-sidebar {
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow: auto;
  border-right: 1px solid rgba(255, 255, 255, .055);
  background: linear-gradient(180deg, rgba(10, 22, 32, .98), rgba(7, 16, 24, .97));
  padding: 10px 9px 24px;
}
.bx-nav-title {
  padding: 11px 10px 5px;
  color: #5f788d;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.15px;
  font-weight: 900;
}
.bx-nav-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  margin-bottom: 1px;
  border-radius: 10px;
  color: #91a6b6 !important;
  cursor: pointer;
  user-select: none;
  font-size: 13px;
}
.bx-nav-item:hover { background: rgba(255, 255, 255, .04); color: #fff !important; }
.bx-nav-item.active {
  background: linear-gradient(90deg, rgba(88, 167, 255, .17), rgba(88, 167, 255, .03));
  color: #fff !important;
  box-shadow: inset 0 0 0 1px rgba(88, 167, 255, .15);
  position: relative;
}
.bx-nav-item.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 5px;
  background: linear-gradient(var(--sam-blue), var(--sam-cyan));
}
.bx-nav-ico { width: 22px; text-align: center; flex: 0 0 auto; }
.bx-nav-disabled { opacity: .45; cursor: default; }
.bx-nav-disabled:hover { background: transparent; color: #91a6b6 !important; }

/* ================= Контент ================= */
.bx-main { min-width: 0; padding: 0; }
.content { padding: 18px 22px 50px; }
.bx-page-title {
  font-size: 28px;
  letter-spacing: -.65px;
  margin: 6px 0 16px;
  font-weight: 800;
  color: var(--sam-text);
}
.breadcrumbs { color: #61798c; font-size: 11px; margin-top: 10px; }
.breadcrumbs a { color: #61798c; }
.breadcrumbs a:hover { color: var(--sam-blue); }

.bx-footer {
  border-top: 1px solid rgba(255, 255, 255, .055);
  color: #5f788d;
  font-size: 12px;
  padding: 14px 22px;
  background: transparent;
}

/* Сообщения */
.bx-messages li {
  border-radius: 12px;
  border: 1px solid rgba(85, 216, 154, .25);
  background: rgba(85, 216, 154, .08);
  color: var(--sam-green);
  padding: 10px 14px;
  margin: 0 0 8px;
  list-style: none;
  box-shadow: inset 3px 0 var(--sam-green);
}
.bx-messages li.warning {
  border-color: rgba(255, 209, 102, .25);
  background: rgba(255, 209, 102, .07);
  color: var(--sam-yellow);
  box-shadow: inset 3px 0 var(--sam-yellow);
}
.bx-messages li.error {
  border-color: rgba(255, 112, 128, .25);
  background: rgba(255, 112, 128, .07);
  color: var(--sam-red);
  box-shadow: inset 3px 0 var(--sam-red);
}
ul.messagelist { padding: 0; margin: 12px 0; }

/* ================= Панели и карточки ================= */
.module,
#content .module {
  border: 1px solid rgba(255, 255, 255, .07);
  background: linear-gradient(180deg, rgba(255, 255, 255, .042), rgba(255, 255, 255, .025));
  border-radius: 16px;
  box-shadow: var(--sam-shadow);
  overflow: hidden;
  margin-bottom: 16px;
}
.module h2, .module caption {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  color: var(--sam-text);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 16px;
  margin: 0;
}
fieldset.module { padding: 0 16px 16px; border: 0; }
.module table { margin: 0; }

/* Таблицы Django */
table { border-collapse: collapse; }
#changelist table, .results table, table tbody { background: transparent; }
th, td {
  border-bottom: 1px solid rgba(255, 255, 255, .055);
  color: var(--sam-text);
  padding: 10px 11px;
  font-size: 12.5px;
}
thead th {
  background: rgba(255, 255, 255, .04);
  color: #71899c;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
thead th a:link { color: #71899c; }
thead th a:hover { color: #fff; }
tbody tr:hover td, tbody tr:hover th { background: rgba(255, 255, 255, .022); }
tr.selected td { background: rgba(88, 167, 255, .12) !important; }
td.actions { white-space: nowrap; }

/* Ссылки в ячейках */
td a.link, .field-__str__ a { color: var(--sam-blue); }

/* Пилюли статусов */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
}
.pill-ok { border: 1px solid rgba(85, 216, 154, .25); background: rgba(85, 216, 154, .09); color: var(--sam-green); }
.pill-warn { border: 1px solid rgba(255, 209, 102, .25); background: rgba(255, 209, 102, .08); color: var(--sam-yellow); }
.pill-bad { border: 1px solid rgba(255, 112, 128, .25); background: rgba(255, 112, 128, .09); color: var(--sam-red); }

/* ================= Формы ================= */
label { color: #8199aa; font-size: 12px; font-weight: 600; }
.required label::after, label.required::after { content: "*"; color: var(--sam-red); }
input[type=text], input[type=password], input[type=email], input[type=number],
input[type=url], input[type=date], input[type=datetime-local], input[type=tel],
select, textarea {
  background: rgba(255, 255, 255, .04) !important;
  border: 1px solid rgba(255, 255, 255, .08) !important;
  color: var(--sam-text) !important;
  border-radius: 10px !important;
  padding: 9px 10px !important;
  outline: 0;
}
input:focus, select:focus, textarea:focus {
  border-color: rgba(88, 167, 255, .45) !important;
  box-shadow: 0 0 0 3px rgba(88, 167, 255, .12);
}
select option { background: #10202e; color: var(--sam-text); }
textarea { min-height: 110px; font-family: ui-monospace, Consolas, monospace; }
.help, .help-text, p.help { color: #61798c; font-size: 11.5px; }

.form-row { border-bottom: 1px solid rgba(255, 255, 255, .04); padding: 8px 0; }
.form-row.errors td, .form-row.errors { background: rgba(255, 112, 128, .05); }
.errornote {
  border-radius: 12px;
  border: 1px solid rgba(255, 112, 128, .3);
  background: rgba(255, 112, 128, .09);
  color: var(--sam-red);
  padding: 12px 14px;
}
.errorlist li { color: var(--sam-red); }

/* Кнопки */
.button, input[type=submit], input[type=button], button, .submit-row input {
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .085);
  background: rgba(255, 255, 255, .05);
  color: var(--sam-text) !important;
  font-weight: 600;
  cursor: pointer;
}
.button:hover, input[type=submit]:hover, button:hover { background: rgba(255, 255, 255, .09); color: #fff !important; }
button.default, input[type=submit].default, .submit-row input.default {
  border: 0;
  background: linear-gradient(135deg, var(--sam-blue), #347dff);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(52, 125, 255, .2);
}
button.default:hover, input[type=submit].default:hover { filter: brightness(1.1); background: linear-gradient(135deg, var(--sam-blue), #347dff); }
.deletelink { color: var(--sam-red); }
.submit-row {
  border: 1px solid rgba(255, 255, 255, .07);
  background: rgba(255, 255, 255, .03);
  border-radius: 14px;
  padding: 12px;
}
.submit-row a.deletelink {
  background: rgba(255, 112, 128, .1);
  border: 1px solid rgba(255, 112, 128, .3);
  color: var(--sam-red) !important;
  border-radius: 10px;
  padding: 8px 14px;
}

/* Объектные инструменты / фильтры / пагинация */
.object-tools li a, .object-tools a:link {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .085);
  border-radius: 10px;
  color: var(--sam-text) !important;
  height: auto;
  padding: 7px 12px;
}
.object-tools li a:hover { background: rgba(88, 167, 255, .12); color: #fff !important; }
#changelist-filter {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  color: var(--sam-text);
}
#changelist-filter h2 { color: #71899c; font-size: 11px; }
#changelist-filter li { color: #91a6b6; }
#changelist-filter li a { color: #91a6b6; }
#changelist-filter li a:hover { color: #fff; }
#changelist-search input { min-width: 220px; }
.paginator { color: #71899c; }
.paginator a:link, .paginator a:visited {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  color: var(--sam-text);
  border-radius: 8px;
}
.paginator a:hover { background: rgba(88, 167, 255, .12); }

/* Календарь и прочие всплывашки */
.calendar, .calendarbox, .clockbox {
  background: #0d1b28 !important;
  border: 1px solid rgba(255, 255, 255, .09) !important;
  border-radius: 12px;
  color: var(--sam-text);
}
.calendar td a:active, .calendar td a:focus, .calendar td.today a { background: rgba(88, 167, 255, .2); }
.calendar caption, .calendarnow, .calendar-shortcuts { color: var(--sam-muted); background: transparent; }

/* ================= Страница входа ================= */
body.login {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
body.login #content { padding: 0; }
#login-form {
  width: min(420px, 94vw);
  border: 1px solid rgba(255, 255, 255, .09);
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .02));
  border-radius: 18px;
  box-shadow: var(--sam-shadow);
  padding: 26px 26px 20px;
}
#login-form h1 {
  font-size: 21px;
  margin: 0 0 4px;
  display: none;
}
#login-form .form-row { border: 0; padding: 6px 0; }
#login-form label { display: block; margin-bottom: 5px; }
#login-form input[type=text], #login-form input[type=password] { width: 100%; box-sizing: border-box; }
#login-form .submit-row { border: 0; background: transparent; padding: 14px 0 0; text-align: left; }
#login-form .submit-row input { width: 100%; }
.login .nav-sidebar, .login #site-name { display: none; }
.login-link { color: var(--sam-muted); font-size: 12px; }
.login-link:hover { color: var(--sam-blue); }
#login-form .password-reset-link { text-align: center; padding: 8px 0 0; }

/* ================= Универсальная форма с табами справа (Битрикс-стиль) ================= */
.sam-form-with-tabs {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 215px;
  gap: 16px;
  align-items: start;
}
.sam-form-main { min-width: 0; }

/* Панель вкладки = карточка */
fieldset.module.sam-fm-pane {
  border: 1px solid rgba(255, 255, 255, .07);
  background: linear-gradient(180deg, rgba(255, 255, 255, .042), rgba(255, 255, 255, .025));
  border-radius: 16px;
  box-shadow: var(--sam-shadow);
  margin-bottom: 14px;
}
fieldset.module.sam-fm-pane > h2 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #71899c;
}

/* Неактивные вкладки скрыты */
fieldset.module.sam-fm-pane { display: none; }
fieldset.module.sam-fm-pane.active { display: block; }

/* Вертикальная линейка табов справа */
.sam-tab-rail {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(10, 22, 32, .98), rgba(7, 16, 24, .97));
  box-shadow: var(--sam-shadow);
}
.sam-tab-rail::before {
  content: "Разделы формы";
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.15px;
  font-weight: 900;
  color: #5f788d;
  padding: 4px 8px 8px;
}
.sam-tab-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 36px;
  padding: 9px 11px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #91a6b6 !important;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}
.sam-tab-btn:hover { background: rgba(255, 255, 255, .05); color: #fff !important; }
.sam-tab-btn.active {
  background: linear-gradient(90deg, rgba(88, 167, 255, .17), rgba(88, 167, 255, .03));
  color: #fff !important;
  box-shadow: inset 0 0 0 1px rgba(88, 167, 255, .15);
}
.sam-tab-btn.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  bottom: 7px;
  width: 3px;
  border-radius: 5px;
  background: linear-gradient(var(--sam-blue), var(--sam-cyan));
}
.sam-tab-label { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sam-tab-badge {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  background: rgba(255, 112, 128, .15);
  color: var(--sam-red);
  border: 1px solid rgba(255, 112, 128, .3);
}

@media (max-width: 900px) {
  .sam-form-with-tabs { grid-template-columns: 1fr; }
  .sam-tab-rail {
    position: static;
    order: -1;
    flex-direction: row;
    overflow-x: auto;
    margin-bottom: 12px;
  }
  .sam-tab-rail::before { display: none; }
  .sam-tab-btn { white-space: nowrap; width: auto; }
}

/* ================= Дашборд (Рабочий стол) ================= */
.sam-hero {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 12px;
  margin-bottom: 12px;
}
.sam-hero-main {
  min-height: 176px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  background:
    radial-gradient(circle at 110% -60%, rgba(88, 167, 255, .19), transparent 62%),
    linear-gradient(135deg, rgba(88, 167, 255, .13), rgba(92, 228, 223, .05)),
    rgba(255, 255, 255, .025);
  box-shadow: var(--sam-shadow);
}
.sam-hero-main h2 { font-size: 24px; margin: 0 0 7px; }
.sam-hero-main p { color: #8fa5b7; max-width: 760px; margin: 0 0 14px; }
.sam-hero-actions { display: flex; gap: 7px; flex-wrap: wrap; position: relative; z-index: 2; }
.sam-btn {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .085);
  background: rgba(255, 255, 255, .05);
  color: var(--sam-text) !important;
  font-weight: 600;
}
.sam-btn:hover { background: rgba(88, 167, 255, .12); color: #fff !important; }
.sam-btn.primary {
  border: 0;
  background: linear-gradient(135deg, var(--sam-blue), #347dff);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(52, 125, 255, .2);
}
.sam-health {
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .042), rgba(255, 255, 255, .025));
  box-shadow: var(--sam-shadow);
}
.sam-ring {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--sam-green) 0 96%, rgba(255, 255, 255, .065) 96%);
  position: relative;
  flex: 0 0 auto;
}
.sam-ring::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: #10202e;
}
.sam-ring b { position: relative; z-index: 1; font-size: 20px; }
.sam-health .big { font-size: 29px; font-weight: 900; }
.sam-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}
.sam-kpi {
  min-height: 104px;
  padding: 13px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .042), rgba(255, 255, 255, .025));
  box-shadow: var(--sam-shadow);
}
.sam-kpi .label { font-size: 11px; color: #778ea1; }
.sam-kpi .val { font-weight: 900; font-size: 23px; margin-top: 5px; }
.sam-grid2 { display: grid; grid-template-columns: 1.25fr .75fr; gap: 12px; align-items: start; }
.sam-panel {
  border: 1px solid rgba(255, 255, 255, .07);
  background: linear-gradient(180deg, rgba(255, 255, 255, .042), rgba(255, 255, 255, .025));
  border-radius: 16px;
  box-shadow: var(--sam-shadow);
  overflow: hidden;
  margin-bottom: 12px;
}
.sam-panel-head {
  min-height: 52px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.sam-panel-head h3 { font-size: 14px; margin: 0; }
.sam-panel-body { padding: 14px; }
.sam-quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.sam-quick {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .055);
  background: rgba(255, 255, 255, .027);
  border-radius: 12px;
  transition: .18s;
}
.sam-quick:hover {
  transform: translateY(-2px);
  border-color: rgba(88, 167, 255, .28);
  background: rgba(88, 167, 255, .055);
}
.sam-quick .qico { font-size: 19px; margin-bottom: 6px; display: block; }
.sam-quick b { display: block; color: var(--sam-text); font-size: 13px; }
.sam-quick small { display: block; font-size: 11px; }
.sam-status-list { display: flex; flex-direction: column; gap: 8px; }
.sam-status-row {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 9px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .028);
  font-size: 12.5px;
}
.sam-status-row .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sam-blue);
  box-shadow: 0 0 12px rgba(88, 167, 255, .4);
}
.sam-status-row small { justify-self: end; }
.sam-empty { color: var(--sam-muted); padding: 18px; text-align: center; }

/* ================= Адаптив ================= */
@media (max-width: 900px) {
  .bx-wrapper { grid-template-columns: 1fr; }
  .bx-sidebar {
    position: fixed;
    left: -290px;
    top: 64px;
    width: 280px;
    z-index: 150;
    transition: .2s;
    box-shadow: 20px 0 60px rgba(0, 0, 0, .45);
  }
  .sam-hero, .sam-grid2 { grid-template-columns: 1fr; }
  .sam-quick-grid { grid-template-columns: 1fr 1fr; }
  .content { padding: 14px 12px 40px; }
}
