/* ==================================================================
   VEQO — интерфейс голосового агента
   Хвойный бренд + янтарный сигнал, светлая и тёмная тема
   ================================================================== */

:root {
    --paper:        #EDEEEA;
    --paper-2:      #E4E7E1;
    --surface:      #FFFFFF;
    --surface-2:    #F5F7F3;
    --ink:          #111815;
    --ink-2:        #3D4A45;
    --muted:        #727E79;
    --line:         #DCE0DA;
    --line-strong:  #C6CDC4;

    --brand:        #1C5A46;
    --brand-hover:  #164A3A;
    --brand-ink:    #FFFFFF;
    --brand-soft:   #E2EDE7;

    --signal:       #B36B12;
    --signal-soft:  #FAEEDC;
    --danger:       #A8392A;
    --danger-soft:  #F8E6E2;

    --radius:       14px;
    --radius-sm:    9px;
    --shadow:       0 1px 2px rgba(17, 24, 21, .05);
    --shadow-pop:   0 18px 40px -18px rgba(17, 24, 21, .28);

    --sans: "Onest", ui-sans-serif, system-ui, "Segoe UI", Roboto, sans-serif;
    --serif: "Spectral", Georgia, "Times New Roman", serif;

    color-scheme: light;
}

[data-theme="dark"] {
    --paper:        #0D1110;
    --paper-2:      #101614;
    --surface:      #151A18;
    --surface-2:    #1B221F;
    --ink:          #E9EDEA;
    --ink-2:        #BAC4BF;
    --muted:        #838E89;
    --line:         #27302C;
    --line-strong:  #35403B;

    --brand:        #57C295;
    --brand-hover:  #6FD0A7;
    --brand-ink:    #08130E;
    --brand-soft:   #172C24;

    --signal:       #E5A24B;
    --signal-soft:  #2E2411;
    --danger:       #E0715E;
    --danger-soft:  #331A16;

    --shadow:       0 1px 2px rgba(0, 0, 0, .4);
    --shadow-pop:   0 18px 40px -18px rgba(0, 0, 0, .7);

    color-scheme: dark;
}

/* --------------------------- Основа ------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html, body {
    height: 100%;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    font-variant-numeric: tabular-nums;
}

h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: -.01em;
    margin: 0;
}

a { color: inherit; }

button, input, select, textarea {
    font: inherit;
    color: inherit;
}

:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
    border-radius: 4px;
}

::selection {
    background: var(--brand);
    color: var(--brand-ink);
}

/* Скроллбары */
* { scrollbar-width: thin; scrollbar-color: var(--line-strong) transparent; }
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-thumb {
    background: var(--line-strong);
    border: 3px solid transparent;
    background-clip: content-box;
    border-radius: 20px;
}

/* --------------------------- Кнопки ------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: var(--surface);
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover { border-color: var(--ink-2); }

.btn-primary {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--brand-ink);
}
.btn-primary:hover { background: var(--brand-hover); border-color: var(--brand-hover); }

.btn-stop {
    background: var(--danger);
    border-color: var(--danger);
    color: #fff;
}
[data-theme="dark"] .btn-stop { color: #1B0D0A; }

.btn-ghost { background: transparent; }
.btn-lg { padding: 14px 26px; font-size: 15px; width: 100%; }
.btn-sm { padding: 7px 14px; font-size: 13px; }

.btn-quiet {
    border-color: transparent;
    background: var(--surface-2);
    color: var(--ink-2);
}
.btn-quiet:hover { color: var(--ink); border-color: var(--line-strong); }

/* ------------------------- Вход в аккаунт -------------------------- */

.auth {
    min-height: 100dvh;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
}

.auth-side {
    position: relative;
    background: var(--brand);
    color: var(--brand-ink);
    padding: 48px 56px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}
[data-theme="dark"] .auth-side { background: var(--surface); color: var(--ink); }

.auth-side h1 {
    font-size: clamp(34px, 3.4vw, 52px);
    line-height: 1.1;
    max-width: 15ch;
    margin-bottom: 14px;
}
.auth-side p {
    max-width: 46ch;
    opacity: .82;
    margin: 0;
}
.auth-side-mid { max-width: 560px; }

.auth-mark {
    font-family: var(--serif);
    font-size: 22px;
    letter-spacing: .18em;
    font-weight: 600;
}

.auth-stats {
    display: flex;
    gap: 40px;
    font-size: 13px;
    opacity: .8;
}
.auth-stats b {
    display: block;
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
}

.auth-line {
    position: absolute;
    inset: auto 0 -10px 0;
    height: 180px;
    opacity: .16;
    pointer-events: none;
}

.auth-form-wrap {
    display: grid;
    place-items: center;
    padding: 32px;
    background: var(--paper);
}
.auth-form {
    width: min(380px, 100%);
}
.auth-form h2 {
    font-size: 27px;
    margin-bottom: 6px;
}
.auth-form .sub {
    color: var(--muted);
    margin: 0 0 30px;
    font-size: 14px;
}

.field { margin-bottom: 16px; }
.field label {
    display: block;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 6px;
}
.input {
    width: 100%;
    padding: 12px 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    transition: border-color .15s ease;
}
.input:hover { border-color: var(--line-strong); }
.input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }

textarea.input { resize: vertical; }
select.input { appearance: none; background-image: none; cursor: pointer; }

.alert {
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    background: var(--danger-soft);
    color: var(--danger);
    font-size: 14px;
    margin-bottom: 18px;
}
.alert-ok { background: var(--brand-soft); color: var(--brand); }

.auth-hint {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

/* --------------------------- Каркас -------------------------------- */

.shell {
    display: grid;
    grid-template-columns: 286px 1fr;
    height: 100dvh;
    overflow: hidden;
}

.side {
    background: var(--surface);
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    padding: 22px 18px;
    gap: 20px;
    overflow-y: auto;
}

.side-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.brand {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 600;
    letter-spacing: .16em;
    text-decoration: none;
}
.brand span { color: var(--brand); }

.theme-toggle {
    width: 34px; height: 34px;
    display: grid; place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface-2);
    cursor: pointer;
    color: var(--ink-2);
}
.theme-toggle:hover { color: var(--ink); border-color: var(--line-strong); }
.theme-toggle .i-sun { display: none; }
[data-theme="dark"] .theme-toggle .i-sun { display: block; }
[data-theme="dark"] .theme-toggle .i-moon { display: none; }

/* Карточка аккаунта */
.account {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-2);
    padding: 16px;
}
.account-head {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 14px;
}
.avatar {
    width: 38px; height: 38px;
    flex: none;
    border-radius: 11px;
    background: var(--brand);
    color: var(--brand-ink);
    display: grid; place-items: center;
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 600;
}
.account-login {
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.account-role { font-size: 12px; color: var(--muted); }

.account-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    padding: 7px 0;
    font-size: 13px;
    border-top: 1px dashed var(--line);
}
.account-row:first-of-type { border-top: none; }
.account-row dt { color: var(--muted); margin: 0; }
.account-row dd { margin: 0; font-weight: 500; text-align: right; }
.account dl { margin: 0 0 14px; }

.date-warn { color: var(--signal); }

/* Навигация */
.nav { display: flex; flex-direction: column; gap: 3px; }
.nav-title {
    font-size: 12px;
    color: var(--muted);
    padding: 0 12px 6px;
}
.nav a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--ink-2);
    font-size: 14.5px;
    transition: background .15s ease, color .15s ease;
}
.nav a:hover { background: var(--surface-2); color: var(--ink); }
.nav a.active {
    background: var(--brand-soft);
    color: var(--brand);
    font-weight: 500;
}
[data-theme="dark"] .nav a.active { color: var(--brand-hover); }
.nav a svg { flex: none; opacity: .85; }
.nav .count {
    margin-left: auto;
    font-size: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    padding: 0 7px;
    border-radius: 999px;
    color: var(--muted);
}
.nav a.active .count { background: var(--surface); border-color: transparent; color: var(--brand); }

.side-foot { margin-top: auto; }
.side-foot .btn { width: 100%; }
.side-note {
    font-size: 12px;
    color: var(--muted);
    margin: 12px 2px 0;
}

/* ----------------------- Основная область -------------------------- */

.main {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: var(--paper);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 30px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    flex: none;
}
.topbar h1 { font-size: 24px; }
.topbar .crumb { font-size: 13px; color: var(--muted); }

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 15px 7px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--surface);
    font-size: 13.5px;
    white-space: nowrap;
}
.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--muted);
    flex: none;
}
.status-pill.live { border-color: var(--brand); color: var(--brand); }
.status-pill.live .dot { background: var(--brand); box-shadow: 0 0 0 0 var(--brand); animation: pulse 2s ease-out infinite; }

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(28, 90, 70, .45); }
    70%  { box-shadow: 0 0 0 9px rgba(28, 90, 70, 0); }
    100% { box-shadow: 0 0 0 0 rgba(28, 90, 70, 0); }
}

.content {
    flex: 1;
    min-height: 0;
    overflow: auto;
    padding: 26px 30px 30px;
}
.content.no-scroll { overflow: hidden; }

/* ------------------- Раздел «Запуск вызовов» ----------------------- */

.calls-grid {
    display: grid;
    grid-template-columns: minmax(340px, 420px) 1fr;
    gap: 22px;
    height: 100%;
    min-height: 0;
}

.panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    min-height: 0;
}
.panel-head {
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex: none;
}
.panel-head h2 { font-size: 18px; }
.panel-head .hint { font-size: 12.5px; color: var(--muted); }
.panel-body { padding: 20px; overflow: auto; min-height: 0; }
.panel-foot {
    padding: 16px 20px;
    border-top: 1px solid var(--line);
    flex: none;
}

/* Осциллограмма — единственная анимация в интерфейсе */
.scope {
    height: 96px;
    border-radius: var(--radius-sm);
    background: var(--surface-2);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 0 16px;
    margin-bottom: 18px;
    overflow: hidden;
}
.scope i {
    display: block;
    width: 3px;
    height: 4px;
    border-radius: 2px;
    background: var(--line-strong);
    transition: background .3s ease;
}
.scope.live i {
    background: var(--brand);
    animation: wave 1.15s ease-in-out infinite;
}
@keyframes wave {
    0%, 100% { height: 5px; }
    50%      { height: var(--h, 30px); }
}
@media (prefers-reduced-motion: reduce) {
    .scope.live i { animation: none; height: var(--h, 30px); }
    .status-pill.live .dot { animation: none; }
}

.control-label {
    font-size: 13px;
    color: var(--muted);
    margin: 0 0 9px;
}

/* Список голосов */
.voices {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-height: 268px;
    overflow: auto;
    margin: 0 -6px 18px;
    padding: 0 6px;
}
.voice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 1px solid transparent;
}
.voice:hover { background: var(--surface-2); }
.voice input { accent-color: var(--brand); width: 15px; height: 15px; flex: none; }
.voice.selected { background: var(--brand-soft); border-color: transparent; }
.voice-name { font-size: 14px; }
.voice-miss { font-size: 12px; color: var(--muted); }
.voice-play {
    margin-left: auto;
    width: 30px; height: 30px;
    flex: none;
    display: grid; place-items: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--ink-2);
    cursor: pointer;
}
.voice-play:hover { color: var(--brand); border-color: var(--brand); }
.voice-play[disabled] { opacity: .4; cursor: not-allowed; }
.voice-play.playing { background: var(--brand); border-color: var(--brand); color: var(--brand-ink); }

.readout {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 15px;
    border-radius: var(--radius-sm);
    background: var(--surface-2);
    border: 1px solid var(--line);
}
.readout .k { font-size: 13px; color: var(--muted); }
.readout .v { font-family: var(--serif); font-size: 19px; }

/* Редактор скрипта */
.script-area {
    flex: 1;
    min-height: 0;
    padding: 0;
    display: flex;
}
.script-area textarea {
    flex: 1;
    width: 100%;
    border: none;
    background: transparent;
    padding: 22px 24px;
    resize: none;
    font-size: 16px;
    line-height: 1.75;
    font-family: var(--serif);
    outline: none;
    min-height: 0;
}
.script-foot {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: space-between;
}
.save-state { font-size: 13px; color: var(--muted); }
.save-state.ok { color: var(--brand); }

/* ------------------------- Заявки ---------------------------------- */

.orders {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
    gap: 18px;
    align-content: start;
}

.order {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.order-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px 13px;
    border-bottom: 1px solid var(--line);
}
.order-client { font-family: var(--serif); font-size: 20px; line-height: 1.2; }
.order-phone {
    font-size: 13.5px;
    color: var(--brand);
    text-decoration: none;
    display: inline-block;
    margin-top: 3px;
}
.order-phone:hover { text-decoration: underline; }
.order-id { font-size: 12px; color: var(--muted); white-space: nowrap; }

.prob {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    padding: 4px 11px;
    border-radius: 999px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    white-space: nowrap;
}
.prob-high { background: var(--brand-soft); border-color: transparent; color: var(--brand); }
.prob-mid  { background: var(--signal-soft); border-color: transparent; color: var(--signal); }
.prob-low  { background: var(--danger-soft); border-color: transparent; color: var(--danger); }

.order-body { padding: 6px 18px 14px; }
.order-row {
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}
.order-row:last-child { border-bottom: none; }
.order-row dt { color: var(--muted); font-size: 13px; }
.order-row dd { margin: 0; }
.order dl { margin: 0; }

.order-foot {
    margin-top: auto;
    display: flex;
    gap: 9px;
    padding: 14px 18px;
    border-top: 1px solid var(--line);
    background: var(--surface-2);
    flex-wrap: wrap;
    align-items: center;
}
.order-foot form { margin: 0; }
.rec-player { width: 100%; }
.rec-player audio { width: 100%; margin-top: 10px; }
.rec-missing {
    font-size: 13px;
    color: var(--signal);
    margin-left: 2px;
}

/* Пустое состояние */
.empty {
    height: 100%;
    display: grid;
    place-content: center;
    justify-items: center;
    text-align: center;
    gap: 8px;
    color: var(--muted);
    padding: 40px;
}
.empty h2 { font-size: 22px; color: var(--ink); }
.empty p { margin: 0; max-width: 44ch; }
.empty .btn { margin-top: 10px; }

/* -------------------------- Тарифы --------------------------------- */

.plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
    min-height: 100%;
}
.plan {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
}
.plan-current {
    border-color: var(--brand);
    box-shadow: 0 0 0 1px var(--brand);
}
.plan h2 {
    font-size: 15px;
    font-family: var(--sans);
    font-weight: 600;
    letter-spacing: .12em;
    color: var(--muted);
}
.plan-price {
    font-family: var(--serif);
    font-size: 42px;
    line-height: 1.15;
    margin: 16px 0 2px;
}
.plan-price small {
    font-family: var(--sans);
    font-size: 14px;
    color: var(--muted);
    font-weight: 400;
}
.plan-calls {
    font-size: 15px;
    color: var(--brand);
    margin-bottom: 16px;
}
.plan-note {
    font-size: 14px;
    color: var(--ink-2);
    margin: 0 0 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}
.plan ul {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}
.plan li { display: flex; gap: 10px; align-items: flex-start; }
.plan li svg { flex: none; margin-top: 4px; color: var(--brand); }
.plan .btn { margin-top: auto; }
.plan-badge {
    display: inline-block;
    font-size: 12px;
    color: var(--brand);
    background: var(--brand-soft);
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 2px;
}

/* --------------------- Плашка об окончании ------------------------- */

.subwarn {
    flex: none;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 30px;
    background: var(--signal-soft);
    border-top: 1px solid var(--signal);
    color: var(--signal);
    font-size: 14px;
}
.subwarn strong { color: var(--ink); font-weight: 600; }
.subwarn .btn {
    margin-left: auto;
    background: var(--signal);
    border-color: var(--signal);
    color: #fff;
}
[data-theme="dark"] .subwarn .btn { color: #1F1608; }
.subwarn .btn:hover { filter: brightness(1.06); }

/* -------------------------- Админка -------------------------------- */

.admin-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 26px 60px;
}
.admin-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}
.admin-top h1 { font-size: 26px; }
.admin-top .crumb { font-size: 13px; color: var(--muted); }
.admin-actions { display: flex; gap: 10px; align-items: center; }

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    margin-bottom: 20px;
}
.card > h2 {
    font-size: 19px;
    margin-bottom: 4px;
}
.card .card-sub {
    color: var(--muted);
    font-size: 13.5px;
    margin: 0 0 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px;
}
.span-all { grid-column: 1 / -1; }

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.table th {
    text-align: left;
    font-weight: 500;
    color: var(--muted);
    font-size: 13px;
    padding: 0 12px 10px;
    border-bottom: 1px solid var(--line);
}
.table td {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}
.table tr:last-child td { border-bottom: none; }
.table .u-login { font-weight: 600; }
.table .acts { display: flex; gap: 8px; justify-content: flex-end; }

.tag {
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 999px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    white-space: nowrap;
}
.tag-live { background: var(--brand-soft); border-color: transparent; color: var(--brand); }

.admin-auth {
    min-height: 100dvh;
    display: grid;
    place-items: center;
    padding: 24px;
}
.admin-auth .card { width: min(400px, 100%); margin: 0; }

details.orders-editor summary {
    cursor: pointer;
    font-size: 14px;
    color: var(--brand);
    padding: 8px 0;
}
details.orders-editor[open] summary { margin-bottom: 12px; }

.order-mini {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 14px;
    margin-bottom: 12px;
    background: var(--surface-2);
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
    font-size: 14px;
}

/* ------------------------ Адаптивность ----------------------------- */

@media (max-width: 1180px) {
    .calls-grid { grid-template-columns: 1fr; height: auto; }
    .calls-grid .panel:last-child { min-height: 460px; }
    .content { overflow: auto; }
    .plans { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .auth { grid-template-columns: 1fr; }
    .auth-side { display: none; }
    .shell {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 100dvh;
        overflow: visible;
    }
    .side {
        border-right: none;
        border-bottom: 1px solid var(--line);
        overflow: visible;
    }
    .main { overflow: visible; }
    .content { padding: 20px 16px 24px; }
    .topbar { padding: 16px; flex-wrap: wrap; }
    .orders { grid-template-columns: 1fr; }
    .subwarn { padding: 12px 16px; flex-wrap: wrap; }
    .subwarn .btn { margin-left: 0; width: 100%; }
}
