/* ============================================================
   BENTO DESIGN SYSTEM — Portal ESRI (alineado con BuenTrato.AI)
   ------------------------------------------------------------
   Este archivo agrega utilities con prefijo bt- al portal ESRI
   para alinearlo con el sistema bento del portal disc.buentrato.ai.

   Es ADITIVO: no reemplaza assets/styles.css. Solo agrega clases
   nuevas que se pueden usar progresivamente página por página.

   Cómo incluirlo:
     <link rel="stylesheet" href="/assets/styles.css">
     <link rel="stylesheet" href="/assets/bento-system.css">

   Reglas críticas (no romper):
   - Carita / logos: SIEMPRE max-height + width:auto + object-fit:contain.
     NUNCA filtros, NUNCA opacity excepto en estados muy explícitos.
   - Paleta: solo 2 colores principales + tonos. No inventar colores.
   - Nombres DISC: nunca D/I/S/C en UI visible — usar "Directo /
     Sociable / Estable / Metódico".
   ============================================================ */


/* ============================================================
   1. VARIABLES — paleta, sombras, tipografía
   Las variables --bt-* son alias amigables sobre las existentes
   --color-* del portal ESRI. Esto permite usar el mismo nombre
   que el portal DISC sin romper estilos viejos.
   ============================================================ */
:root {
    /* Colores principales */
    --bt-primary:        #0380A6;
    --bt-primary-hover:  #026B8A;
    --bt-primary-deeper: #01516A;
    --bt-primary-soft:   #E6F4F9;
    --bt-accent:         #04B5D6;
    --bt-accent-light:   #6DCFE0;
    --bt-gris:           #777579;
    --bt-gris-soft:      #F4F4F4;

    /* Backgrounds */
    --bt-bg:             #ECEBEB;
    --bt-bg-page:        #FFFFFF;
    --bt-white:          #FFFFFF;
    --bt-border:         #ECEBEB;
    --bt-border-soft:    #DDD9D9;

    /* Estados — paleta oficial BuenTrato (solo azules). Soft = mismo color con alpha. */
    --bt-ok:        #01516A;
    --bt-ok-soft:   rgba(1, 81, 106, 0.12);
    --bt-pendiente: #04B5D6;
    --bt-pendiente-soft: rgba(4, 181, 214, 0.13);
    --bt-error:     #01516A;

    /* Sombras */
    --bt-shadow-soft:   0 1px 3px rgba(15, 35, 55, 0.04), 0 4px 16px rgba(15, 35, 55, 0.04);
    --bt-shadow-hover:  0 4px 12px rgba(3, 128, 166, 0.08), 0 16px 40px rgba(15, 35, 55, 0.08);
    --bt-shadow-coach:  0 12px 36px rgba(3, 128, 166, 0.20);

    /* Radios */
    --bt-radius-card: 22px;
    --bt-radius-pill: 999px;

    /* Espaciados */
    --bt-gap: 14px;
}


/* ============================================================
   2. PILL TABS — navegación principal por rol
   ------------------------------------------------------------
   Las tabs viven visualmente "pegadas" al header. Para evitar
   que floten en el espacio blanco con waves, tienen fondo
   blanco y se conectan con el header de arriba. Ocupan toda
   la página de ancho (no flotan en el centro vacío).
   ============================================================ */
.bt-pill-tabs-wrap {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    padding: 0 24px 16px;
    margin: 0;
    background: var(--bt-white);
    /* Sombra inferior sutil para separar visualmente del contenido siguiente,
       en vez del fondo blanco con waves que dejaba a las tabs flotando. */
    box-shadow: 0 1px 0 var(--bt-border), 0 6px 16px -8px rgba(15, 35, 55, 0.06);
}
.bt-pill-tabs {
    display: inline-flex;
    justify-content: center;
    gap: 4px;
    background: var(--bt-gris-soft);
    padding: 4px;
    border-radius: var(--bt-radius-pill);
}
.bt-pill-tab {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--bt-gris);
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    border-radius: var(--bt-radius-pill);
    background: transparent;
    border: none;
    white-space: nowrap;
    font-family: inherit;
    text-decoration: none;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.bt-pill-tab:hover { color: var(--bt-primary); }
.bt-pill-tab.active {
    color: var(--bt-primary);
    background: var(--bt-white);
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(15, 35, 55, 0.08);
}
.bt-pill-tab .bt-pill-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Cuando un .app-header va seguido directamente de .bt-pill-tabs-wrap,
   eliminar el padding-bottom del header para que ambos se sientan una
   sola unidad visualmente. */
.app-header.app-header-clean:has(+ .bt-pill-tabs-wrap),
.app-header:has(+ .bt-pill-tabs-wrap) {
    padding-bottom: 8px;
    background: var(--bt-white);
}

/* Mobile: pill-tabs siguen centradas pero con scroll horizontal si no caben */
@media (max-width: 600px) {
    .bt-pill-tabs-wrap {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 16px 12px;
        scrollbar-width: none;
    }
    .bt-pill-tabs-wrap::-webkit-scrollbar { display: none; }
    .bt-pill-tab { padding: 7px 14px; font-size: 12px; }
}


/* ============================================================
   3. FOOTER institucional (igual que portal DISC)
   ============================================================ */
.bt-footer {
    position: relative;
    z-index: 2;
    background: transparent;
    color: var(--bt-gris);
    padding: 24px 32px 32px;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 1px solid var(--bt-border);
    max-width: 1200px;
    margin: 48px auto 0;
}
.bt-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.bt-footer-brand img {
    max-height: 28px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
}
.bt-footer-brand-text {
    font-size: 12px;
    color: var(--bt-gris);
    line-height: 1.4;
}
.bt-footer-brand-text strong {
    color: var(--bt-primary);
    font-weight: 600;
}
.bt-footer-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.bt-footer-links a {
    color: var(--bt-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.bt-footer-links a:hover {
    color: var(--bt-primary-hover);
    text-decoration: underline;
}
.bt-footer-links .bt-footer-sep {
    color: var(--bt-border-soft);
    user-select: none;
}
.bt-footer-icon {
    color: var(--bt-gris);
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}
.bt-footer-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.bt-footer-icon:hover { color: var(--bt-primary); }

@media (max-width: 600px) {
    .bt-footer {
        padding: 20px 16px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}


/* ============================================================
   4. CARDS / WIDGETS bento (alternativa a .card y .grid-card)
   ============================================================ */
.bt-card {
    background: var(--bt-white);
    border-radius: var(--bt-radius-card);
    padding: 20px;
    box-shadow: var(--bt-shadow-soft);
    border: 1px solid var(--bt-border-soft);
    transition: transform 0.25s, box-shadow 0.25s;
    overflow: hidden;
    position: relative;
}
.bt-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--bt-shadow-hover);
}
.bt-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.bt-card-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--bt-gris);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.bt-card-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--bt-primary);
    letter-spacing: -0.3px;
    line-height: 1.25;
    margin: 0 0 6px;
}
.bt-card-sub {
    font-size: 13px;
    color: var(--bt-gris);
    line-height: 1.45;
    margin: 0;
}


/* ============================================================
   5. TAGS de estado
   ============================================================ */
.bt-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: var(--bt-radius-pill);
    padding: 3px 9px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.bt-tag::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
}
.bt-tag.ok        { background: var(--bt-ok-soft);        color: var(--bt-ok); }
.bt-tag.ok::before        { background: var(--bt-ok); }
.bt-tag.pending   { background: var(--bt-pendiente-soft); color: var(--bt-pendiente); }
.bt-tag.pending::before   { background: var(--bt-pendiente); }
.bt-tag.disc      { background: var(--bt-primary-soft);  color: var(--bt-primary-deeper); }
.bt-tag.disc::before      { background: var(--bt-primary); }


/* ============================================================
   6. BOTONES bento
   ============================================================ */
.bt-btn {
    background: var(--bt-primary);
    color: var(--bt-white);
    border: none;
    border-radius: var(--bt-radius-pill);
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 80ms;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}
.bt-btn:hover  { background: var(--bt-primary-hover); }
.bt-btn:active { transform: translateY(1px); }
.bt-btn.outline {
    background: var(--bt-white);
    color: var(--bt-primary);
    border: 1.5px solid var(--bt-primary);
}
.bt-btn.outline:hover { background: var(--bt-primary-soft); }
.bt-btn.small { padding: 7px 14px; font-size: 12px; }
.bt-btn.large { padding: 12px 24px; font-size: 14px; }


/* ============================================================
   7. ANILLOS APPLE WATCH (concéntricos) — para futuro DISC embebido
   ============================================================ */
.bt-ring-svg {
    transform: rotate(-90deg);
}
.bt-ring-track {
    fill: none;
    stroke: var(--bt-bg);
}
.bt-ring-fill {
    fill: none;
    stroke: var(--bt-primary);
    stroke-linecap: round;
    transition: stroke-dashoffset 0.6s ease;
}


/* ============================================================
   8. LOGO HELPERS
   ============================================================ */
.bt-logo-img {
    max-height: 56px;
    width: auto;
    object-fit: contain;
    display: block;
}
.bt-logo-img.small  { max-height: 28px; }
.bt-logo-img.medium { max-height: 44px; }
.bt-logo-img.large  { max-height: 80px; }
/* NUNCA aplicar filter, opacity, transform que altere proporciones */


/* ============================================================
   9. CARITA COACH grande (para coach widget en dashboards futuros)
   ============================================================ */
.bt-coach-avatar {
    width: 110px; height: 110px;
    border-radius: 50%;
    background: var(--bt-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--bt-shadow-coach);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    animation: bt-breathe 3s ease-in-out infinite;
    cursor: pointer;
}
.bt-coach-avatar img {
    max-height: 72px;
    width: auto;
    object-fit: contain;
    display: block;
}
.bt-coach-avatar::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 3px solid var(--bt-primary);
    animation: bt-ping 2.4s cubic-bezier(0, 0, 0.2, 1) infinite;
    pointer-events: none;
}
@keyframes bt-breathe {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.04); }
}
@keyframes bt-ping {
    0%   { transform: scale(1);   opacity: 0.7; }
    80%, 100% { transform: scale(1.4); opacity: 0; }
}


/* ============================================================
   10. ESCALAS DE TIPOGRAFÍA
   ============================================================ */
.bt-h1 {
    font-size: 28px; font-weight: 600; color: var(--bt-primary);
    letter-spacing: -0.6px; line-height: 1.15; margin: 0;
}
.bt-h2 {
    font-size: 22px; font-weight: 600; color: var(--bt-primary);
    letter-spacing: -0.4px; line-height: 1.2; margin: 0;
}
.bt-h3 {
    font-size: 17px; font-weight: 600; color: var(--bt-primary-deeper);
    letter-spacing: -0.2px; line-height: 1.25; margin: 0;
}
.bt-body  { font-size: 14px; color: var(--bt-gris); line-height: 1.5; }
.bt-small { font-size: 12px; color: var(--bt-gris); line-height: 1.4; }


/* ============================================================
   11. STATS ROW — KPIs en cápsulas con número en círculo
   Mismo lenguaje que el dashboard. Antes vivían inline en
   dashboard.html; los movemos aquí para que TODAS las páginas
   internas puedan usarlos sin duplicar CSS.
   ============================================================ */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 40px;
}
@media (max-width: 900px) {
    .stats-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .stats-row { grid-template-columns: 1fr; }
}
.stat-card {
    background: #fff;
    border-radius: 22px;
    padding: 22px;
    border: 1px solid #E0DCDC;
    display: flex;
    gap: 14px;
    align-items: center;
    transition: transform 160ms ease, box-shadow 160ms ease;
}
.stat-card:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,0.04); }
.stat-card .num-circle {
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 500; line-height: 1;
    flex-shrink: 0;
}
.stat-card .num-circle.alert { background: #E6F4F9; color: #01516A; }
.stat-card .num-circle.info  { background: #E6F4F9; color: #01516A; }
.stat-card .num-circle.gray  { background: #F0EEEE; color: #444441; }
.stat-card .num-circle.green { background: #E6F4F9; color: #0380A6; }
.stat-card .num-circle.warm  { background: #D6ECF5; color: #04B5D6; }
.stat-card .stat-label { font-size: 13px; color: #1a1a1a; font-weight: 500; line-height: 1.3; }
.stat-card .stat-sub   { font-size: 12px; color: #5A6776; line-height: 1.3; }


/* ============================================================
   12. RING CARDS — estilo Apple Watch
   Tarjeta con un anillo SVG circular que muestra un porcentaje
   en el centro. Perfecto para objetivos de un proceso, dimensiones
   de clima, métricas que tienen una escala 0-100. Mismo lenguaje
   que el dashboard.
   ============================================================ */
.ring-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 22px;
    border: 1px solid #E0DCDC;
    transition: transform 200ms, box-shadow 200ms;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.ring-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3,128,166,0.08), 0 16px 40px rgba(15,35,55,0.08);
}
.ring-card-head {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 14px;
}
.ring-svg-wrap {
    position: relative;
    width: 80px; height: 80px;
    flex-shrink: 0;
}
.ring-svg-wrap svg {
    width: 100%; height: 100%;
    transform: rotate(-90deg);
}
.ring-num {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    font-size: 17px; font-weight: 500;
    color: var(--color-primary-deeper, #01516A);
    line-height: 1;
}
.ring-num small {
    font-size: 9px;
    color: var(--color-text-muted, #5A6776);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-top: 2px;
    font-weight: 400;
}
.ring-card-body { flex: 1; min-width: 0; }
.ring-card-name {
    font-size: 15px;
    font-weight: 500;
    color: #1A1A1A;
    letter-spacing: -0.2px;
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ring-card-meta {
    font-size: 12px;
    color: var(--color-text-muted, #5A6776);
    line-height: 1.4;
}
.ring-card-body-multiline .ring-card-name {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.35;
}
.ring-card-foot {
    display: flex;
    gap: 8px;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--color-border, #ECEBEB);
    margin-top: auto;
    flex-wrap: wrap;
}
.ring-card-foot .pill-meta {
    font-size: 11.5px;
    color: var(--color-primary-deeper, #01516A);
    background: #E6F4F9;
    padding: 3px 10px;
    border-radius: 999px;
}

/* Grid responsive de ring-cards */
.ring-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}


/* ============================================================
   13. PENDIENTE-WIDGET — carrusel de slides
   Un slide a la vez con dots de navegación y flechas. Reemplaza
   listas verticales largas por un widget compacto rotatorio.
   Mismo lenguaje del "Tu día" del dashboard.
   ============================================================ */
.pendiente-widget {
    position: relative;
    background: #fff;
    border-radius: 22px;
    border: 1px solid #E0DCDC;
    padding: 22px 24px 18px;
    overflow: hidden;
    min-height: 140px;
}
.pendiente-widget .pw-deco-wave {
    position: absolute; bottom: 0; left: 0; right: 0; opacity: 0.4; pointer-events: none;
}
.pendiente-widget > * { position: relative; }
.pw-track {
    position: relative;
    min-height: 76px;
}
.pw-slide {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    transition: opacity 280ms ease;
    opacity: 0;
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.pw-slide.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}
.pw-slide-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    background: #E6F4F9;
    color: #01516A;
}
.pw-slide-icon svg { width: 22px; height: 22px; }
.pw-slide-body { flex: 1; min-width: 0; }
.pw-slide-title {
    font-size: 15px;
    color: var(--color-text, #1a1a1a);
    line-height: 1.4;
    margin-bottom: 4px;
}
.pw-slide-meta {
    font-size: 13px;
    color: var(--color-text-muted, #5A6776);
    line-height: 1.4;
}
.pw-slide.has-link:hover .pw-slide-title { color: var(--color-primary, #0380A6); }
.pw-slide.has-link::after {
    content: '→';
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary, #0380A6);
    font-size: 18px;
    opacity: 0.5;
    transition: opacity 0.2s, transform 0.2s;
}
.pw-slide.has-link:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(4px);
}
.pw-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--color-border, #ECEBEB);
}
.pw-dots { display: flex; gap: 6px; }
.pw-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--color-border, #ECEBEB);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.pw-dot.active {
    background: var(--color-primary, #0380A6);
    transform: scale(1.3);
}
.pw-counter {
    font-size: 12px;
    color: var(--color-text-muted, #5A6776);
    font-variant-numeric: tabular-nums;
}
.pw-arrows { display: flex; gap: 6px; }
.pw-arrow {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: transparent;
    color: var(--color-text-muted, #5A6776);
    border: 1px solid var(--color-border, #ECEBEB);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.pw-arrow:hover {
    background: #E6F4F9;
    color: var(--color-primary, #0380A6);
    border-color: var(--color-primary, #0380A6);
}
.pw-arrow svg { width: 14px; height: 14px; }
.pw-arrow:disabled { opacity: 0.35; cursor: not-allowed; }
.pw-empty {
    text-align: center;
    padding: 20px 16px;
    color: var(--color-text-muted, #5A6776);
    font-size: 14px;
}
.pw-empty img { max-height: 36px; opacity: 0.8; margin-bottom: 8px; }


/* ============================================================
   14. KPI-EXEC — bloque ejecutivo con gradiente
   Card con gradiente azul corporativo, círculos decorativos, KPIs
   en grilla y botones light/ghost. Usar para resúmenes ejecutivos
   en /reportes.html y vistas administrativas.
   ============================================================ */
.kpi-exec {
    background: linear-gradient(135deg, var(--color-primary, #0380A6), var(--color-primary-deeper, #01516A));
    border-radius: 28px;
    padding: 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
}
.kpi-exec .deco-c1, .kpi-exec .deco-c2 {
    position: absolute; border-radius: 50%; pointer-events: none;
}
.kpi-exec .deco-c1 { right: -80px; top: -80px; width: 240px; height: 240px; background: rgba(255,255,255,0.06); }
.kpi-exec .deco-c2 { right: 20px; bottom: -100px; width: 200px; height: 200px; background: rgba(255,255,255,0.04); }
.kpi-exec h2, .kpi-exec h3 {
    position: relative; margin: 0 0 8px;
    font-size: 20px; font-weight: 400; letter-spacing: -0.3px;
    color: #fff;
}
.kpi-exec p {
    position: relative; margin: 0 0 24px;
    font-size: 14px; opacity: 0.85; color: #fff;
}
.kpi-exec-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}
.kpi-exec-item .num {
    font-size: 32px; font-weight: 400; letter-spacing: -1px; line-height: 1;
}
.kpi-exec-item .lbl {
    font-size: 11px; opacity: 0.85;
    text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px;
}
.kpi-exec-actions {
    position: relative; display: flex; gap: 10px; flex-wrap: wrap;
}
.btn-light {
    background: #fff; color: var(--color-primary-deeper, #01516A);
    border: none; padding: 11px 22px; border-radius: 999px;
    font-size: 13px; font-weight: 500; cursor: pointer; font-family: inherit;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: background 0.15s;
}
.btn-light:hover { background: rgba(255,255,255,0.92); }
.btn-light svg { width: 14px; height: 14px; }
.btn-ghost-light {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 22px; border-radius: 999px;
    font-size: 13px; font-weight: 500; cursor: pointer; font-family: inherit;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.25); }


/* ============================================================
   15. NO IMPRIMIR — el footer y las tabs no se imprimen en PDF
   ============================================================ */
@media print {
    .bt-pill-tabs-wrap, .bt-footer {
        display: none !important;
    }
}
