/* doAttendance — Commercial landing page */

:root {
  --lp-bg: #06080f;
  --lp-bg2: #0c1021;
  --lp-card: rgba(15, 23, 42, 0.75);
  --lp-border: rgba(255, 255, 255, 0.08);
  --lp-text: #f1f5f9;
  --lp-muted: #94a3b8;
  --lp-dim: #64748b;
  --lp-blue: #3b82f6;
  --lp-purple: #8b5cf6;
  --lp-green: #10b981;
  --lp-gradient: linear-gradient(135deg, #3b82f6, #8b5cf6);
  --lp-radius: 16px;
  --lp-nav-h: 72px;
  --lp-max: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body.lp-body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--lp-bg);
  color: var(--lp-text);
  line-height: 1.6;
  overflow-x: hidden;
}

.lp-container {
  width: min(var(--lp-max), 100% - 32px);
  margin-inline: auto;
}

/* Nav */
.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--lp-nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s;
}

.lp-nav.scrolled {
  background: rgba(6, 8, 15, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--lp-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--lp-max), 100% - 32px);
  margin-inline: auto;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--lp-text);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.lp-logo-mark {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 4px 14px rgba(59, 130, 246, 0.4));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.lp-logo:hover .lp-logo-mark {
  transform: scale(1.04) rotate(-2deg);
  filter: drop-shadow(0 8px 20px rgba(99, 102, 241, 0.5));
}

.lp-logo-mark img {
  display: block;
  width: 42px;
  height: 42px;
}

.lp-logo-text {
  display: flex;
  align-items: baseline;
  gap: 1px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.lp-logo-do {
  color: var(--lp-text);
  font-weight: 700;
  font-size: 1.05em;
}

.lp-logo-accent {
  background: linear-gradient(135deg, #60a5fa 0%, #818cf8 45%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Legacy — keep if referenced elsewhere */
.lp-logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--lp-gradient);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.lp-btn-admin {
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.35);
  color: #c4b5fd;
  font-weight: 600;
}

.lp-btn-admin:hover {
  background: rgba(139, 92, 246, 0.22);
  border-color: rgba(139, 92, 246, 0.55);
  color: #ede9fe;
}

.lp-contact-card-admin .lp-admin-portal-card {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}

.lp-contact-card-admin .lp-admin-portal-arrow {
  display: none;
}

.lp-admin-portal-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.12));
  border: 1px solid rgba(139, 92, 246, 0.3);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}

.lp-admin-portal-card:hover {
  border-color: rgba(99, 102, 241, 0.55);
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.15);
  transform: translateY(-1px);
}

.lp-admin-portal-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.lp-admin-portal-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.lp-admin-portal-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--lp-text);
}

.lp-admin-portal-sub {
  font-size: 0.75rem;
  color: var(--lp-muted);
  font-weight: 500;
}

.lp-admin-portal-arrow {
  font-size: 1.25rem;
  color: #a5b4fc;
  flex-shrink: 0;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-nav-link {
  color: var(--lp-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.lp-nav-link:hover {
  color: var(--lp-text);
  background: rgba(255, 255, 255, 0.05);
}

.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.lp-btn:hover {
  transform: translateY(-2px);
}

.lp-btn-primary {
  background: var(--lp-gradient);
  color: #fff;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

.lp-btn-primary:hover {
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.45);
}

.lp-btn-outline {
  background: transparent;
  color: var(--lp-text);
  border: 1px solid var(--lp-border);
}

.lp-btn-outline:hover {
  border-color: var(--lp-blue);
  color: var(--lp-blue);
}

.lp-btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--lp-muted);
  border: 1px solid var(--lp-border);
}

.lp-nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--lp-border);
  color: var(--lp-text);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 1.25rem;
  cursor: pointer;
}

.lp-nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Hero */
.lp-hero {
  position: relative;
  padding: calc(var(--lp-nav-h) + 48px) 0 80px;
  overflow: hidden;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(59, 130, 246, 0.25), transparent),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(139, 92, 246, 0.15), transparent);
  pointer-events: none;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #93c5fd;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.lp-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  font-weight: 800;
}

.lp-hero h1 em {
  font-style: normal;
  background: var(--lp-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-hero-lead {
  font-size: 1.1rem;
  color: var(--lp-muted);
  max-width: 520px;
  margin-bottom: 28px;
}

.lp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.lp-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.lp-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--lp-text);
}

.lp-stat span {
  font-size: 0.8rem;
  color: var(--lp-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lp-hero-cycle .lp-phone-screen {
  padding: 0;
  overflow: hidden;
}

.lp-hero-cycle .lp-scene-viewport {
  min-height: 320px;
  border-radius: 20px;
  background: var(--lp-bg2);
  position: relative;
}

.lp-hero-cycle .lp-scene {
  position: absolute;
  inset: 0;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s;
}

.lp-hero-cycle .lp-scene.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

/* Mockups */
.lp-mockups {
  position: relative;
  min-height: 420px;
}

.lp-phone {
  position: absolute;
  right: 0;
  top: 20px;
  width: 220px;
  padding: 12px;
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border-radius: 32px;
  border: 2px solid var(--lp-border);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.lp-phone-notch {
  width: 80px;
  height: 8px;
  background: #000;
  border-radius: 4px;
  margin: 0 auto 12px;
}

.lp-phone-screen {
  background: var(--lp-bg2);
  border-radius: 20px;
  padding: 16px;
  min-height: 320px;
}

.lp-phone-screen .lp-mini-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid var(--lp-border);
}

.lp-phone-screen .lp-check {
  background: var(--lp-green);
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 16px;
}

.lp-dashboard {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 280px;
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.lp-dash-bar {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 8px;
  overflow: hidden;
}

.lp-dash-bar span {
  display: block;
  height: 100%;
  border-radius: 4px;
  background: var(--lp-gradient);
}

.lp-dash-bar:nth-child(1) span { width: 78%; }
.lp-dash-bar:nth-child(2) span { width: 92%; background: var(--lp-green); }
.lp-dash-bar:nth-child(3) span { width: 65%; }

/* Trust bar */
.lp-trust {
  padding: 32px 0;
  border-block: 1px solid var(--lp-border);
  background: rgba(255, 255, 255, 0.02);
}

.lp-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
  align-items: center;
}

.lp-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--lp-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.lp-trust-icon {
  font-size: 1.25rem;
}

/* Sections */
.lp-section {
  padding: 80px 0;
}

.lp-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.lp-section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.lp-section-head p {
  color: var(--lp-muted);
  margin: 0;
  font-size: 1.05rem;
}

.lp-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lp-blue);
  margin-bottom: 12px;
}

/* Features */
.lp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-feature {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s;
}

.lp-feature:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
}

.lp-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  background: rgba(59, 130, 246, 0.12);
}

.lp-feature:nth-child(2) .lp-feature-icon { background: rgba(16, 185, 129, 0.12); }
.lp-feature:nth-child(3) .lp-feature-icon { background: rgba(139, 92, 246, 0.12); }
.lp-feature:nth-child(4) .lp-feature-icon { background: rgba(245, 158, 11, 0.12); }
.lp-feature:nth-child(5) .lp-feature-icon { background: rgba(236, 72, 153, 0.12); }
.lp-feature:nth-child(6) .lp-feature-icon { background: rgba(6, 182, 212, 0.12); }

.lp-feature h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.lp-feature p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.9rem;
}

/* Steps */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-step {
  text-align: center;
  padding: 32px 20px;
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  position: relative;
}

.lp-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lp-gradient);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}

.lp-step h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.lp-step p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.9rem;
}

/* Pricing */
.lp-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.lp-price-card {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.lp-price-card.featured {
  border-color: var(--lp-blue);
  box-shadow: 0 0 0 1px var(--lp-blue), 0 24px 48px rgba(59, 130, 246, 0.15);
  transform: scale(1.03);
}

.lp-price-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lp-gradient);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lp-price-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.lp-price-card .lp-price {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 16px 0 4px;
}

.lp-price-card .lp-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--lp-muted);
}

.lp-price-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  flex: 1;
}

.lp-price-card li {
  padding: 8px 0;
  color: var(--lp-muted);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--lp-border);
}

.lp-price-card li::before {
  content: '✓ ';
  color: var(--lp-green);
  font-weight: 700;
}

.lp-price-card .lp-btn {
  width: 100%;
  margin-top: auto;
}

/* Testimonials */
.lp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-quote {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 28px;
}

.lp-quote p {
  margin: 0 0 20px;
  color: var(--lp-muted);
  font-style: italic;
  font-size: 0.95rem;
}

.lp-quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lp-gradient);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.lp-quote-author strong {
  display: block;
  font-size: 0.9rem;
}

.lp-quote-author span {
  font-size: 0.8rem;
  color: var(--lp-dim);
}

/* FAQ */
.lp-faq {
  max-width: 720px;
  margin: 0 auto;
}

.lp-faq-item {
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--lp-card);
}

.lp-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--lp-text);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.lp-faq-q::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--lp-blue);
  transition: transform 0.2s;
}

.lp-faq-item.open .lp-faq-q::after {
  transform: rotate(45deg);
}

.lp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.lp-faq-item.open .lp-faq-a {
  max-height: 200px;
}

.lp-faq-a p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--lp-muted);
  font-size: 0.9rem;
}

/* Contact CTA */
.lp-cta {
  text-align: center;
  padding: 64px 32px;
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 24px;
  background-image: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.12), transparent 60%);
}

.lp-cta h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0 0 12px;
}

.lp-cta p {
  color: var(--lp-muted);
  max-width: 520px;
  margin: 0 auto 28px;
}

.lp-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.lp-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  text-align: left;
}

.lp-contact-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid var(--lp-border);
}

.lp-contact-card strong {
  display: block;
  margin-bottom: 6px;
}

.lp-contact-card a {
  color: var(--lp-blue);
  text-decoration: none;
}

/* Footer */
.lp-footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--lp-border);
  margin-top: 40px;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.lp-footer p {
  color: var(--lp-muted);
  font-size: 0.85rem;
  margin: 8px 0 0;
}

.lp-footer h4 {
  margin: 0 0 12px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-dim);
}

.lp-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-footer a {
  color: var(--lp-muted);
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  padding: 4px 0;
}

.lp-footer a:hover {
  color: var(--lp-blue);
}

.lp-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--lp-border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--lp-dim);
}

/* WhatsApp float */
.lp-wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
}

.lp-wa-float:hover {
  transform: scale(1.08);
}

/* Reveal animation */
.lp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.lp-reveal.lp-visible {
  opacity: 1;
  transform: none;
}

/* Nav drawer — before links crush on medium screens */
@media (max-width: 1100px) {
  .lp-nav-toggle {
    display: grid;
    place-items: center;
  }

  .lp-nav-menu {
    position: fixed;
    top: var(--lp-nav-h);
    left: 0;
    right: 0;
    background: rgba(6, 8, 15, 0.98);
    border-bottom: 1px solid var(--lp-border);
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    display: none;
    backdrop-filter: blur(16px);
    max-height: calc(100vh - var(--lp-nav-h));
    overflow-y: auto;
  }

  .lp-nav.open .lp-nav-menu {
    display: flex;
  }

  .lp-nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .lp-nav-link {
    padding: 12px 14px;
  }

  .lp-nav-actions {
    flex-direction: column;
    width: 100%;
    margin-top: 8px;
  }

  .lp-nav-actions .lp-btn {
    width: 100%;
  }
}

@media (min-width: 1101px) and (max-width: 1280px) {
  .lp-nav-menu {
    gap: 12px;
  }

  .lp-nav-link {
    padding: 8px 10px;
    font-size: 0.85rem;
  }

  .lp-nav-actions {
    gap: 8px;
  }

  .lp-nav-actions .lp-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

/* Mobile */
@media (max-width: 960px) {
  .lp-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lp-hero-lead {
    margin-inline: auto;
  }

  .lp-hero-cta,
  .lp-hero-stats {
    justify-content: center;
  }

  .lp-mockups {
    min-height: 360px;
    max-width: 340px;
    margin: 0 auto;
  }

  .lp-features,
  .lp-steps,
  .lp-pricing,
  .lp-testimonials,
  .lp-contact-grid,
  .lp-footer-grid {
    grid-template-columns: 1fr;
  }

  .lp-price-card.featured {
    transform: none;
  }
}

@media (max-width: 600px) {
  .lp-section {
    padding: 56px 0;
  }

  .lp-phone {
    width: 180px;
    right: 10px;
  }

  .lp-dashboard {
    width: 200px;
  }
}
