/*
 * MetaDx Lab - custom.css
 * Accent: #8e44ad (purple)
 * Theme: Dark (black bg)
 * Bootstrap 4 + Materialize CSS + Template 2105_input
 * ALL lengths in px - NO rem
 */

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
    --accent: #8e44ad;
    --accent-hover: #7d3c98;
    --accent-light: rgba(142, 68, 173, 0.15);
    --bg: #000000;
    --bg-secondary: #0d0d0d;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --text-primary: #e2e8f0;
    --text-secondary: #c8d6e5;
    --text-muted: #8fabc4;
    --border-color: rgba(255, 255, 255, 0.1);
    --section-pad: 80px;
}

/* =============================================
   GLOBAL RESETS & BASE
   ============================================= */
html { font-size: 18px; }

body {
    background-color: #000000;
    color: #e2e8f0;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

a { color: #8e44ad; transition: color 0.3s ease; }
a:hover, a:focus { color: #7d3c98; text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
    color: #e2e8f0;
    text-transform: none;
    letter-spacing: normal;
}

p { color: #c8d6e5; line-height: 1.75; }

img {
    max-width: 100%;
    height: auto;
}

/* Blog/article images full-width */
.legal-body img,
article img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

/* Container narrow for legal pages */
.container-narrow {
    max-width: 720px;
    margin: 0 auto;
}

/* =============================================
   NAVIGATION
   ============================================= */
.metadx-navbar {
    background-color: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    z-index: 1050;
}

.metadx-navbar .navbar-brand img { height: 36px; width: auto; }

.metadx-navbar .nav-item { margin-bottom: 0 !important; background-image: none !important; }

.metadx-navbar .nav-link {
    color: #e2e8f0 !important;
    font-size: 15px;
    padding: 8px 16px !important;
    transition: color 0.3s ease;
}

.metadx-navbar .nav-link:hover,
.metadx-navbar .nav-item.active .nav-link {
    color: #8e44ad !important;
}

.metadx-navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
}

.metadx-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(226, 232, 240, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.metadx-navbar.active,
.metadx-navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.98) !important;
}

.metadx-navbar.active .navbar-nav > li > a,
.metadx-navbar.scrolled .navbar-nav > li > a {
    color: #e2e8f0 !important;
}

/* =============================================
   SECTION PADDING
   ============================================= */
.section-pad { padding-top: 80px; padding-bottom: 80px; }
.section-pad-top { padding-top: 120px; padding-bottom: 80px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.mb-80 { margin-bottom: 80px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 16px;
    text-transform: none;
    letter-spacing: normal;
}

.section-subtitle {
    font-size: 18px;
    color: #c8d6e5;
    max-width: 620px;
    margin: 0 auto;
}

.section-header { text-align: center; }

/* =============================================
   HERO SECTION
   ============================================= */
#home-page #home,
.hero-section {
    background-image: url('../images/vet-diagnostics-lab-workstation.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #000000;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.72);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: #8e44ad;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 58px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 18px;
    color: #c8d6e5;
    max-width: 580px;
    margin-bottom: 40px;
    line-height: 1.75;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.hero-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(142, 68, 173, 0.3);
}

/* header-thumb override (R79) */
.header-thumb {
    background: transparent !important;
    border: none !important;
}

/* =============================================
   PAGE HERO (subpages)
   ============================================= */
.page-hero {
    background-color: #000000;
    padding-bottom: 60px;
}

.page-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-hero-desc {
    font-size: 18px;
    color: #c8d6e5;
    max-width: 680px;
    line-height: 1.75;
}

/* =============================================
   BUTTONS
   ============================================= */
/* Override Materialize .btn conflicts */
.btn {
    display: inline-block;
    height: auto;
    line-height: 1.4;
    text-align: center;
    vertical-align: middle;
    text-transform: none;
    letter-spacing: normal;
}
.btn-accent {
    background-color: #8e44ad !important;
    color: #ffffff !important;
    border: 2px solid #8e44ad !important;
    border-radius: 4px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-accent:hover, .btn-accent:focus {
    background-color: #7d3c98 !important;
    border-color: #7d3c98 !important;
    color: #ffffff !important;
}

.btn-outline-accent {
    background-color: transparent;
    color: #8e44ad;
    border: 2px solid #8e44ad;
    border-radius: 4px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-outline-accent:hover, .btn-outline-accent:focus {
    background-color: #8e44ad;
    color: #ffffff;
}

/* Dark section: outline button = white */
.dark-section .btn-outline-light {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.dark-section .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: #ffffff;
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-section {
    background-color: #111111;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid { }

.stat-item {
    padding: 20px 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child { border-right: none; }

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #8e44ad;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #888888;
    line-height: 1.4;
}

/* =============================================
   CARD GRIDS — EQUAL HEIGHT (K17)
   ============================================= */
.card-grid, .team-grid, .blog-grid, .features-grid {
    display: flex;
    flex-wrap: wrap;
}

.card-grid > *,
.team-grid > *,
.blog-grid > *,
.features-grid > * {
    display: flex;
    flex-direction: column;
}

/* =============================================
   STEP CARDS (How It Works)
   ============================================= */
.how-section { background-color: #000000; }

.step-card {
    padding: 40px 24px;
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 30px;
    transition: border-color 0.3s ease;
}

.step-card:hover { border-color: #8e44ad; }

.step-icon-wrap { height: 48px; display: flex; align-items: center; justify-content: center; }

.step-icon {
    font-size: 48px;
    color: #8e44ad !important;
}

.step-number {
    font-size: 13px;
    font-weight: 700;
    color: #8e44ad;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 16px;
    color: #c8d6e5;
    line-height: 1.7;
}

/* =============================================
   CONDITION CARDS
   ============================================= */
.dark-section { background-color: #070707; }

.condition-card-inner, .value-card-inner, .cond-item-inner {
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px 24px;
    height: 100%;
    transition: border-color 0.3s ease;
}

.condition-card-inner:hover,
.value-card-inner:hover,
.cond-item-inner:hover {
    border-color: #8e44ad;
}

.condition-icon, .value-icon {
    font-size: 32px;
    color: #8e44ad !important;
    margin-bottom: 16px;
    display: block;
}

.condition-title, .value-title {
    font-size: 18px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 10px;
}

.condition-desc, .value-desc {
    font-size: 15px;
    color: #c8d6e5;
    line-height: 1.65;
    margin-bottom: 0;
}

/* =============================================
   CONDITIONS FULL (Solutions page)
   ============================================= */
.cond-item { margin-bottom: 24px; }

.cond-number {
    font-size: 13px;
    font-weight: 700;
    color: #8e44ad;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.cond-title {
    font-size: 18px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 8px;
}

.cond-desc {
    font-size: 15px;
    color: #c8d6e5;
    line-height: 1.65;
    margin-bottom: 0;
}

/* =============================================
   WHY SECTION
   ============================================= */
.why-section { background-color: #0d0d0d; }

.why-desc {
    font-size: 18px;
    color: #c8d6e5;
    margin-bottom: 24px;
    line-height: 1.75;
}

.why-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.why-list li {
    font-size: 16px;
    color: #c8d6e5;
    padding: 8px 0;
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.why-check {
    color: #8e44ad !important;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section { background-color: #070707; }

.cta-title {
    font-size: 43px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    text-transform: none;
    letter-spacing: normal;
}

.cta-desc {
    font-size: 18px;
    color: #c8d6e5;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

/* =============================================
   TEAM CARDS
   ============================================= */
.team-card-inner {
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    transition: border-color 0.3s ease;
}

.team-card-inner:hover { border-color: #8e44ad; }

.team-avatar-wrap {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.team-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.team-card-body { padding: 24px; flex: 1; }

.team-name {
    font-size: 20px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 4px;
}

.team-role {
    font-size: 14px;
    font-weight: 600;
    color: #8e44ad;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.team-bio {
    font-size: 15px;
    color: #c8d6e5;
    line-height: 1.65;
    margin-bottom: 0;
}

/* =============================================
   CULTURE SECTION
   ============================================= */
.culture-section { background-color: #070707; }

.culture-desc {
    font-size: 16px;
    color: #c8d6e5;
    line-height: 1.75;
    margin-bottom: 20px;
}

.culture-stat .stat-number { font-size: 36px; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-info { }

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon-wrap {
    width: 44px;
    height: 44px;
    background-color: rgba(142, 68, 173, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon {
    font-size: 18px;
    color: #8e44ad !important;
}

.contact-label {
    font-size: 14px;
    font-weight: 700;
    color: #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.contact-text p {
    font-size: 16px;
    color: #c8d6e5;
    margin-bottom: 4px;
    line-height: 1.6;
}

.contact-hours {
    font-size: 13px;
    color: #888888 !important;
}

.contact-form-wrap { border-radius: 8px; }

.contact-form-title {
    font-size: 28px;
    font-weight: 700;
    color: #e2e8f0;
}

/* Bootstrap 4 select in dark theme */
.custom-select {
    background-color: #1a1a1a;
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 10px 14px;
    width: 100%;
    margin-bottom: 20px;
    font-size: 16px;
}

.custom-select option { background-color: #1a1a1a; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.story-section { background-color: #000000; }
.story-content p { margin-bottom: 18px; font-size: 16px; line-height: 1.75; }

/* =============================================
   SOLUTIONS PAGE
   ============================================= */
.platform-section { background-color: #000000; }
.platform-section p { font-size: 16px; line-height: 1.75; margin-bottom: 16px; }

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.feature-list li {
    font-size: 16px;
    color: #c8d6e5;
    padding: 8px 0;
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-check {
    color: #8e44ad !important;
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Integration Cards */
.integrations-section { background-color: #0d0d0d; }

.integration-card {
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 36px 24px;
    height: 100%;
    transition: border-color 0.3s ease;
}

.integration-card:hover { border-color: #8e44ad; }

.integration-icon-wrap {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.integration-icon {
    font-size: 40px;
    color: #8e44ad !important;
}

.integration-title {
    font-size: 18px;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 10px;
}

.integration-desc {
    font-size: 15px;
    color: #c8d6e5;
    line-height: 1.65;
    margin-bottom: 0;
}

/* =============================================
   BLOG LISTING
   ============================================= */
.blog-listing-section { background-color: #000000; }

.blog-card-inner {
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    transition: border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card-inner:hover { border-color: #8e44ad; }

.blog-card-img-link { display: block; overflow: hidden; }

.blog-thumb {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card-img-link:hover .blog-thumb { transform: scale(1.04); }

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    align-items: center;
}

.blog-date {
    font-size: 13px;
    color: #888888;
}

.blog-cat {
    font-size: 11px;
    font-weight: 700;
    color: #8e44ad;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: rgba(142, 68, 173, 0.15);
    padding: 3px 8px;
    border-radius: 3px;
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-title a { color: #e2e8f0; }
.blog-title a:hover { color: #8e44ad; }

.blog-excerpt {
    font-size: 15px;
    color: #c8d6e5;
    line-height: 1.65;
    margin-bottom: 20px;
    flex: 1;
}

.blog-read-more {
    font-size: 14px;
    font-weight: 600;
    color: #8e44ad;
    margin-top: auto;
}

.blog-read-more:hover { color: #7d3c98; }

.blog-read-more .fa-arrow-right { font-size: 12px; margin-left: 4px; }

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-section { background-color: #000000; }

.legal-title {
    font-size: 48px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 14px;
    color: #888888;
    margin-bottom: 48px;
}

.legal-body h2 {
    font-size: 24px;
    font-weight: 700;
    color: #e2e8f0;
    margin-top: 40px;
    margin-bottom: 14px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: #e2e8f0;
    margin-top: 24px;
    margin-bottom: 10px;
}

.legal-body p {
    font-size: 16px;
    color: #c8d6e5;
    line-height: 1.75;
    margin-bottom: 16px;
}

.legal-body a { color: #8e44ad; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 60px;
}

.footer-brand { }
.footer-logo { display: block; }
.footer-tagline { font-size: 14px; color: #888888; margin-bottom: 12px; }
.footer-address { font-size: 14px; color: #888888; line-height: 1.6; }

.footer-heading {
    font-size: 13px;
    font-weight: 700;
    color: #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-list {
    list-style: none;
    padding-left: 0;
}

.footer-list li {
    margin-bottom: 8px;
}

.footer-list li a {
    font-size: 14px;
    color: #888888;
    transition: color 0.3s;
}

.footer-list li a:hover { color: #e2e8f0; }

.footer-contact p {
    font-size: 14px;
    color: #888888;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact a { color: #888888; }
.footer-contact a:hover { color: #e2e8f0; }

.footer-icon {
    color: #8e44ad !important;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    margin-top: 40px;
}

.footer-copy {
    font-size: 13px;
    color: #888888;
    margin-bottom: 0;
}

.footer-legal-link {
    font-size: 13px;
    color: #888888;
    margin-left: 16px;
    transition: color 0.3s;
}

.footer-legal-link:hover { color: #e2e8f0; }

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #111111;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.cookie-text {
    font-size: 14px;
    color: #c8d6e5;
    margin-bottom: 0;
    flex: 1;
}

.cookie-text a { color: #8e44ad; }

.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* =============================================
   R75 — White bg buttons: hardcoded dark text
   ============================================= */
.btn-large-white, .btn-white {
    color: #000000 !important;
}

/* =============================================
   R77 — Template nav cleanup
   ============================================= */
.nav-item { margin-bottom: 0 !important; background-image: none !important; }
.site-logo { max-width: none !important; }

/* =============================================
   R80 — Steps: centered card content
   ============================================= */
.step-card { text-align: center; }

/* =============================================
   R85 — Dark sections: solid text colors
   ============================================= */
.dark-section, .conditions-section, .cta-section, .culture-section {
    color: #e2e8f0;
}

.dark-section p, .conditions-section p, .cta-section p, .culture-section p {
    color: #c8d6e5;
}

/* =============================================
   R86 — Avatar: object-position center
   ============================================= */
.team-avatar { object-position: center; }

/* =============================================
   R87 — Feature cards: uniform icon height
   ============================================= */
.step-icon, .condition-icon, .value-icon, .integration-icon {
    display: block;
    height: 48px;
    font-size: 40px;
    line-height: 48px;
}

/* =============================================
   R89 — Template overlay: pointer-events:none
   ============================================= */
.tm-bg-overlay, [class*="overlay"] { pointer-events: none !important; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
    .hero-title { font-size: 42px; }
    .page-hero-title { font-size: 36px; }
    .section-title { font-size: 32px; }
    .cta-title { font-size: 32px; }
}

@media (max-width: 767px) {
    :root { --section-pad: 50px; }
    .hero-title { font-size: 32px; }
    .page-hero-title { font-size: 28px; }
    .section-title { font-size: 26px; }
    .cta-title { font-size: 26px; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    .hero-ctas { flex-direction: column; }
    .cookie-inner { flex-direction: column; }
    .footer-legal-link { margin-left: 0; margin-right: 16px; }
}

/* ============================================================
   Fix CTA button contrast (complete override) — appended
   ============================================================ */
.cta-section .btn-accent,
.cta-section .btn-primary,
.bg-dark-brand .btn-accent,
.bg-dark-brand .btn-primary {
  background-color: #ffffff !important;
  border: 2px solid #ffffff !important;
  color: #8e44ad !important;
}
.cta-section .btn-accent:hover,
.cta-section .btn-primary:hover,
.bg-dark-brand .btn-accent:hover,
.bg-dark-brand .btn-primary:hover {
  background-color: transparent !important;
  color: #ffffff !important;
}
/* Outline/secondary buttons on dark bg */
.cta-section .btn-secondary,
.cta-section .btn-outline,
.bg-dark-brand .btn-secondary {
  border-color: #ffffff !important;
  color: #ffffff !important;
}
