/* ═══════════════════════════════════════════════════════════
   VIMO — Mascota suelta (sin círculo) con halo de luz
   ═══════════════════════════════════════════════════════════ */

:root {
  --vmc-primary: #5e2ced;
  --vmc-primary-2: #8b5cf6;
  --vmc-accent: #00dafc;
  --vmc-dark: #0f172a;
  --vmc-border: rgba(94, 44, 237, 0.12);
}

/* ── MASCOTA VIMO SUELTA (sin círculo contenedor) ── */
.vmc-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 110px;
  height: 130px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  z-index: 99997;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  animation: vmc-mascot-enter 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 1s both;
}
.vmc-fab:hover {
  transform: translateY(-6px) scale(1.05);
}
.vmc-fab.vmc-open {
  animation: none;
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}

/* Imagen de la mascota */
.vmc-fab img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 20px rgba(94, 44, 237, 0.55))
    drop-shadow(0 8px 16px rgba(15, 23, 42, 0.35));
  position: relative;
  z-index: 2;
  animation: vmc-float 3.5s ease-in-out infinite;
}
@keyframes vmc-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Halo de luz detrás de la mascota (brilllo sin círculo sólido) */
.vmc-fab::before {
  content: "";
  position: absolute;
  inset: auto 0 -10px 0;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(94, 44, 237, 0.35) 0%, rgba(94, 44, 237, 0) 70%);
  filter: blur(8px);
  z-index: 0;
  animation: vmc-glow-pulse 2s ease-in-out infinite;
}
@keyframes vmc-glow-pulse {
  0%, 100% { opacity: 0.5; transform: scaleX(0.85); }
  50% { opacity: 1; transform: scaleX(1.1); }
}

/* Animación de entrada: sale del círculo y queda suelta */
@keyframes vmc-mascot-enter {
  0% {
    transform: translateY(100px) scale(0);
    opacity: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #5e2ced, #8b5cf6);
    box-shadow: 0 8px 24px rgba(94, 44, 237, 0.6);
  }
  40% {
    transform: translateY(0) scale(0.6);
    opacity: 1;
    border-radius: 50%;
    background: linear-gradient(135deg, #5e2ced, #8b5cf6);
    box-shadow: 0 8px 24px rgba(94, 44, 237, 0.6);
  }
  70% {
    transform: translateY(-18px) scale(1.05);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(94, 44, 237, 0.5), rgba(139, 92, 246, 0.5));
    box-shadow: 0 0 40px rgba(94, 44, 237, 0.8);
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
}

/* Notification dot — OCULTO por solicitud del usuario (FIX 14.4) */
.vmc-fab__dot {
  display: none !important;
}
@keyframes vmc-dot-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6); }
  50% { transform: scale(1.2); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}

/* ── BURBUJAS PROACTIVAS — glass + icono FA + letras pequeñas ── */
.vmc-bubble {
  position: fixed;
  bottom: 80px;
  right: 140px;
  max-width: 280px;
  background: rgba(255, 255, 255, .82);
  color: var(--vmc-dark);
  padding: 10px 14px 10px 12px;
  border-radius: 18px;
  border-bottom-right-radius: 6px;
  box-shadow:
    0 14px 32px rgba(15, 23, 42, .22),
    0 0 0 1px rgba(94, 44, 237, .15),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  font-family: 'Poppins', 'Montserrat', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  z-index: 99996;
  opacity: 0;
  transform: translateX(40px) scale(0.85);
  transition: opacity .4s cubic-bezier(.34,1.56,.64,1), transform .4s cubic-bezier(.34,1.56,.64,1), background .25s, color .25s;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  isolation: isolate;
}
/* Border gradient sutil rotando lento */
.vmc-bubble::before {
  content: ""; position: absolute; inset: 0;
  border-radius: 18px;
  padding: 1.2px;
  background: conic-gradient(
    from var(--vmcb-angle, 0deg),
    rgba(94, 44, 237, .35),
    rgba(0, 218, 252, .35),
    rgba(243, 229, 171, .25),
    rgba(0, 218, 252, .35),
    rgba(94, 44, 237, .35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  animation: vmcb-rotate 12s linear infinite;
  z-index: 1;
}
@property --vmcb-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes vmcb-rotate { to { --vmcb-angle: 360deg; } }
.vmc-bubble.vmc-show { opacity: 1; transform: translateX(0) scale(1); }
.vmc-bubble.vmc-hide { opacity: 0; transform: translateX(40px) scale(0.85); }
.vmc-bubble:hover {
  background: linear-gradient(135deg, rgba(94, 44, 237, .95), rgba(0, 218, 252, .9));
  color: #fff;
  transform: translateX(-3px) scale(1.02);
}
.vmc-bubble__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 9px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--vmc-primary), var(--vmc-primary-2));
  color: #fff;
  font-size: .82rem;
  box-shadow: 0 4px 10px rgba(94, 44, 237, .28);
  position: relative;
  z-index: 2;
}
.vmc-bubble:hover .vmc-bubble__icon {
  background: rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px);
}
.vmc-bubble__text {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 2;
  padding-top: 4px;
}
.vmc-bubble__close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  background: #fff;
  color: var(--vmc-dark);
  border: 1.5px solid rgba(94, 44, 237, .18);
  border-radius: 50%;
  cursor: pointer;
  font-size: .62rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .12);
  opacity: 0;
  transition: opacity .2s, transform .25s;
  z-index: 3;
}
.vmc-bubble:hover .vmc-bubble__close { opacity: 1; }
.vmc-bubble__close:hover { transform: rotate(90deg) scale(1.08); }
.vmc-bubble__tail {
  position: absolute;
  bottom: -2px;
  right: 16px;
  width: 14px;
  height: 14px;
  background: inherit;
  transform: rotate(45deg);
  border-bottom-right-radius: 3px;
  z-index: 0;
}

/* ── VENTANA CHAT (renovado wow FIX 15.2) ── */
.vmc-window {
  position: fixed;
  bottom: 130px;
  right: 24px;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 500px;
  max-height: calc(100vh - 220px); /* deja espacio arriba para nav + mascot */
  background: rgba(255, 255, 255, .96);
  border-radius: 26px;
  box-shadow:
    0 30px 80px rgba(15, 23, 42, .35),
    0 0 0 1px rgba(94, 44, 237, .08);
  z-index: 999999;
  display: none;
  flex-direction: column;
  overflow: visible; /* CRITICO: que el mascot sobresalga */
  font-family: 'Poppins', 'Montserrat', system-ui, sans-serif;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.3s, transform 0.4s cubic-bezier(.34, 1.56, .64, 1);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  isolation: isolate;
}
/* Border gradient animado */
.vmc-window::before {
  content: ""; position: absolute; inset: 0;
  border-radius: 26px;
  padding: 1.6px;
  background: conic-gradient(
    from var(--vmc-angle, 0deg),
    rgba(94, 44, 237, .55) 0%,
    rgba(0, 218, 252, .55) 25%,
    rgba(243, 229, 171, .45) 50%,
    rgba(0, 218, 252, .55) 75%,
    rgba(94, 44, 237, .55) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 5;
  animation: vmc-rotate 9s linear infinite;
}
@property --vmc-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes vmc-rotate { to { --vmc-angle: 360deg; } }
@supports not (background: conic-gradient(from var(--x), red, blue)) {
  .vmc-window::before { background: linear-gradient(135deg, rgba(94,44,237,.55), rgba(0,218,252,.4)); animation: none; }
}
.vmc-window.vmc-show {
  display: flex;
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── HEADER WOW (mascot SOBRESALE fuera del header) ── */
.vmc-header {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 30% 20%, rgba(0,218,252,.35) 0%, transparent 60%),
    linear-gradient(135deg, #5e2ced 0%, #8b5cf6 50%, #00dafc 100%);
  background-size: 200% 200%;
  animation: vmc-header-bg 8s ease-in-out infinite;
  color: #fff;
  padding: 18px 18px 18px 100px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 26px 26px 0 0;
  overflow: visible;
  z-index: 10; /* encima del border conic (z=5) */
  min-height: 80px;
}
@keyframes vmc-header-bg {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
/* Glow blob detras del header */
.vmc-header::after {
  content: ""; position: absolute;
  top: -10px; left: -10px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(0,218,252,.4) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
  animation: vmc-glow 5s ease-in-out infinite alternate;
}
@keyframes vmc-glow {
  from { opacity: .6; transform: scale(1); }
  to   { opacity: 1; transform: scale(1.15); }
}

/* MASCOT FLOTANDO FUERA del circulo (sin contenedor) */
.vmc-header__avatar {
  position: absolute;
  left: 12px;
  top: -8px;
  width: 78px;
  height: 78px;
  background: transparent !important;
  border: none !important;
  backdrop-filter: none !important;
  display: block;
  z-index: 20; /* encima del border conic-gradient (z=5) */
  pointer-events: none;
  animation: vmc-mascot-float 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.35)) drop-shadow(0 0 14px rgba(0, 218, 252, .35));
  transform-origin: 50% 90%;
}
.vmc-header__avatar img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  display: block;
}
@keyframes vmc-mascot-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-8px) rotate(2deg); }
}

.vmc-header__info { flex: 1; min-width: 0; position: relative; z-index: 2; }
/* VIMO grande SIEMPRE visible, fijo */
.vmc-header__name {
  font-weight: 900;
  font-size: 1.45rem;
  margin: 0;
  line-height: 1;
  letter-spacing: 1.5px;
  text-shadow: 0 3px 10px rgba(0,0,0,.28);
  display: block;
}

/* Rotator del status — SOLO opacity para fade suave (sin golpes) */
.vmc-header__status {
  font-size: 0.7rem;
  opacity: 0.95;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: .2px;
  min-height: 1.2em;
}
.vmc-header__dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, .35);
  animation: vmc-dot-pulse 1.6s infinite;
  flex-shrink: 0;
}
.vmc-header__rotator {
  display: inline-block;
  opacity: 1;
  transition: opacity .65s ease-in-out;
  will-change: opacity;
}
.vmc-header__rotator.vmc-rotator--fade { opacity: 0; }
.vmc-header__status {
  font-size: 0.66rem;
  opacity: 0.92;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
  font-weight: 600;
  letter-spacing: .2px;
}
/* dot ahora es un span explicito (.vmc-header__dot) — el ::before queda sin contenido */
.vmc-header__status::before { content: none; }
.vmc-header__close {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  backdrop-filter: blur(8px);
}
.vmc-header__close:hover {
  background: rgba(255, 255, 255, .35);
  transform: rotate(90deg) scale(1.05);
}

.vmc-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 16px;
  background:
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(0,218,252,.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 90%, rgba(94,44,237,.05) 0%, transparent 60%),
    linear-gradient(to bottom, #fbfbff 0%, #ffffff 100%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.vmc-messages::-webkit-scrollbar { width: 5px; }
.vmc-messages::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #5e2ced, #00dafc);
  border-radius: 10px;
}

.vmc-msg {
  max-width: 86%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.82rem;
  line-height: 1.45;
  animation: vmc-slide-in .35s cubic-bezier(.34, 1.56, .64, 1);
  position: relative;
}
@keyframes vmc-slide-in { from { opacity: 0; transform: translateY(10px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
.vmc-msg--bot {
  background: rgba(241, 245, 249, .95);
  color: var(--vmc-dark);
  border-bottom-left-radius: 6px;
  align-self: flex-start;
  border: 1px solid rgba(94, 44, 237, .08);
  box-shadow: 0 4px 12px rgba(94, 44, 237, .06);
}
.vmc-msg--user {
  background: linear-gradient(135deg, #5e2ced 0%, #8b5cf6 50%, #00dafc 100%);
  background-size: 200% 200%;
  color: #fff;
  border-bottom-right-radius: 6px;
  align-self: flex-end;
  box-shadow: 0 6px 18px rgba(94, 44, 237, .35);
  font-weight: 500;
}
.vmc-msg a { text-decoration: underline; }
.vmc-msg--bot a { color: var(--vmc-primary); font-weight: 700; }
.vmc-msg--user a { color: #fff; }

.vmc-typing {
  background: rgba(241, 245, 249, .95);
  padding: 14px 18px;
  border-radius: 18px;
  border-bottom-left-radius: 6px;
  align-self: flex-start;
  display: flex;
  gap: 5px;
  border: 1px solid rgba(94, 44, 237, .08);
}
.vmc-typing span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5e2ced, #00dafc);
  animation: vmc-bounce 1.4s infinite both;
}
.vmc-typing span:nth-child(2) { animation-delay: .15s; }
.vmc-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes vmc-bounce {
  0%, 80%, 100% { transform: scale(.6); opacity: .4; }
  40%           { transform: scale(1.1); opacity: 1; }
}

.vmc-quick {
  padding: 8px 16px 6px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.vmc-quick button {
  background: rgba(255, 255, 255, .9);
  color: var(--vmc-primary);
  border: none;
  position: relative;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  cursor: pointer;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  font-family: inherit;
  box-shadow:
    inset 0 0 0 1.2px rgba(94, 44, 237, .22),
    0 3px 8px rgba(94, 44, 237, .05);
  letter-spacing: .25px;
}
.vmc-quick button:hover {
  background: linear-gradient(135deg, #5e2ced, #00dafc);
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    inset 0 0 0 1.5px transparent,
    0 8px 18px rgba(94, 44, 237, .35);
}

.vmc-input {
  padding: 14px 18px 16px;
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, .85);
  border-top: 1px solid rgba(94, 44, 237, .08);
  position: relative;
  z-index: 1;
  align-items: center;
  box-sizing: border-box;
  max-width: 100%;
}
.vmc-input input { min-width: 0; box-sizing: border-box; }
.vmc-input input {
  flex: 1;
  padding: 10px 16px;
  border: 1.5px solid rgba(94, 44, 237, .18);
  border-radius: 999px;
  font-size: 0.82rem;
  outline: none;
  font-family: inherit;
  background: #fff;
  transition: border-color .25s, box-shadow .25s;
  color: #1e293b;
}
.vmc-input input::placeholder { color: #94a3b8; }
.vmc-input input:focus {
  border-color: var(--vmc-primary);
  box-shadow: 0 0 0 4px rgba(94, 44, 237, .14);
}
.vmc-input button {
  position: relative;
  background: linear-gradient(135deg, #5e2ced 0%, #8b5cf6 50%, #00dafc 100%);
  background-size: 200% 200%;
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s, box-shadow .25s;
  box-shadow:
    0 8px 18px rgba(94, 44, 237, .35),
    inset 0 1px 0 rgba(255, 255, 255, .25);
  animation: vmc-send-bg 4s ease-in-out infinite;
  overflow: hidden;
}
@keyframes vmc-send-bg { 0%,100%{background-position:0% 50%;} 50%{background-position:100% 50%;} }
.vmc-input button::before {
  content: ""; position: absolute;
  top: 0; left: -120%;
  width: 70%; height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.4) 50%, transparent 70%);
  animation: vmc-send-shimmer 3.8s ease-in-out infinite;
}
@keyframes vmc-send-shimmer { 0%{left:-120%;} 50%{left:140%;} 100%{left:140%;} }
.vmc-input button:hover { transform: scale(1.05); box-shadow: 0 10px 20px rgba(94,44,237,.5); }
.vmc-input button:active { transform: scale(.95); }
.vmc-input button:disabled { opacity: .5; cursor: not-allowed; animation: none; }
.vmc-input button i { position: relative; z-index: 1; }

.vmc-footer {
  padding: 6px 16px 8px;
  background: transparent;
  font-size: 0.6rem;
  color: #94a3b8;
  text-align: center;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: 0 0 26px 26px;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}
.vmc-footer strong {
  background: linear-gradient(135deg, #5e2ced, #00dafc);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

@media (max-width: 480px) {
  .vmc-window {
    width: calc(100vw - 16px);
    height: calc(100vh - 160px);
    bottom: 150px;
    right: 8px;
  }
  .vmc-fab { width: 90px; height: 110px; bottom: 10px; right: 10px; }
  .vmc-bubble { right: 110px; bottom: 50px; max-width: calc(100vw - 130px); }
  .vmc-header { padding-left: 100px; }
  .vmc-header__avatar { width: 80px; height: 80px; left: 10px; top: -18px; }
}

@media (prefers-reduced-motion: reduce) {
  .vmc-window::before,
  .vmc-header,
  .vmc-header::after,
  .vmc-header__avatar,
  .vmc-input button,
  .vmc-input button::before { animation: none !important; }
}

/* ════════════════════════════════════════════════════
   UNIFICACION DE TIPOGRAFIA (override Outfit del tech)
   Forzar Poppins en headings y body de TODOS los subdomains.
   Solo aplica a contenedores comunes — no toca el chatbot ni elementos especificos.
   ════════════════════════════════════════════════════ */
body,
body h1, body h2, body h3, body h4, body h5, body h6,
.mk-hero-title, .mk-title, .font-poppins,
.mk-hero h1, .mk-hero h2,
[class*="mk-"] h1, [class*="mk-"] h2, [class*="mk-"] h3, [class*="mk-"] h4 {
  font-family: 'Poppins', 'Montserrat', system-ui, -apple-system, sans-serif !important;
}
body { font-family: 'Montserrat', system-ui, -apple-system, sans-serif !important; }
/* Excepciones: el chatbot mantiene su propia tipografia */
.vmc-window, .vmc-window *,
.vmc-bubble, .vmc-bubble * { font-family: 'Poppins', 'Montserrat', system-ui, sans-serif !important; }

/* FIX iconos: la regla `*` de arriba sobreescribia el font-family de Font Awesome,
   haciendo que los <i class="fa-solid fa-..."> se vieran como cuadrado-con-X (glyph
   missing en Poppins). Restauramos la tipografia de FA para sus clases. */
.vmc-window i[class*="fa-"], .vmc-bubble i[class*="fa-"],
.vmc-window .fa, .vmc-window .fas, .vmc-window .fa-solid, .vmc-window .far, .vmc-window .fa-regular,
.vmc-bubble .fa, .vmc-bubble .fas, .vmc-bubble .fa-solid, .vmc-bubble .far, .vmc-bubble .fa-regular {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important; /* obligatorio para que solid se renderice */
}
.vmc-window .fab, .vmc-window .fa-brands,
.vmc-bubble .fab, .vmc-bubble .fa-brands {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}
.vmc-window i.fa-regular, .vmc-window i.far,
.vmc-bubble i.fa-regular, .vmc-bubble i.far {
    font-weight: 400 !important;
}
