/* NEXGEN_APPROVED_HOT_PINK #FF2D8F 2026-08-21 */
/* ==========================================================
   NEXGEN CONTAINERS — EXACT MOCK MATCH
   Final homepage presentation layer
   ========================================================== */

:root {
  --mock-navy:#050505;
  --mock-navy-deep:#041524;
  --mock-blue:#FF2D8F;
  --mock-blue-bright:#FF2D8F;
  --mock-ink:#071a2b;
  --mock-muted:#60758c;
  --mock-border:#d5e0ea;
  --mock-soft:#f1f5f9;
  --mock-white:#ffffff;
}

/* ----------------------------------------------------------
   HEADER
   ---------------------------------------------------------- */

body:not(.admin-route) .site-header {
  position:sticky !important;
  top:0 !important;
  z-index:100 !important;

  background:#fff !important;
  border-bottom:1px solid #e5ebf1 !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
}

.mock-header {
  height:82px;
  background:#fff;
}

.mock-nav {
  width:min(1380px,calc(100% - 56px));
  height:82px;
  margin:0 auto;

  display:flex;
  align-items:center;
  gap:30px;
}

.mock-logo {
  display:flex;
  align-items:center;
  width:210px;
  flex:0 0 210px;
}

.mock-logo img {
  width:184px;
  max-height:52px;
  object-fit:contain;
  display:block;
}

.mock-links {
  margin-left:auto;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

.mock-links a {
  position:relative;

  color:#0b1e32;
  text-decoration:none;

  font-size:13px;
  line-height:1;
  font-weight:800;

  padding:34px 13px 31px;

  white-space:nowrap;
}

.mock-links a:hover,
.mock-links a.active {
  color:#FF2D8F;
}

.mock-links a.active::after {
  content:"";

  position:absolute;
  left:12px;
  right:12px;
  bottom:20px;

  height:3px;

  background:#FF2D8F;
  border-radius:999px;
}

.mock-phone {
  display:flex;
  align-items:center;
  gap:10px;

  margin-left:18px;

  color:#FF2D8F;
  text-decoration:none;

  font-size:14px;
  font-weight:900;

  white-space:nowrap;
}

.mock-phone-icon {
  font-size:17px;
}

.mock-quote-btn {
  min-width:154px;
  height:52px;

  display:flex;
  align-items:center;
  justify-content:center;

  margin-left:10px;

  border-radius:7px;

  background:#FF2D8F;
  color:#fff;

  text-decoration:none;

  font-size:14px;
  font-weight:900;

  box-shadow:0 8px 20px rgba(255,45,143,.18);
}

.mock-menu {
  display:none;

  margin-left:auto;

  width:46px;
  height:46px;

  border:1px solid #d7e2ec;
  border-radius:8px;

  background:#fff;
  color:#071a2b;

  font-size:23px;
  font-weight:900;
}

/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */

.mock-home {
  background:#fff;
}

.mock-hero {
  width:100%;
  min-height:748px;

  display:grid;
  grid-template-columns:46.3% 53.7%;

  overflow:hidden;

  background:var(--mock-navy);
}

.mock-hero-copy {
  min-width:0;

  display:flex;
  align-items:center;

  background:
    radial-gradient(
      circle at 90% 55%,
      rgba(255,45,143,.08),
      transparent 38%
    ),
    var(--mock-navy);

  color:#fff;
}

.mock-hero-copy-inner {
  width:min(650px,calc(100% - 58px));

  margin-left:max(
    30px,
    calc((100vw - 1380px) / 2 + 28px)
  );

  padding:58px 20px 62px 0;
}

.mock-kicker {
  margin-bottom:22px;

  color:#FF2D8F;

  font-size:11px;
  line-height:1;
  font-weight:1000;

  letter-spacing:.155em;
  text-transform:uppercase;
}

.mock-hero h1 {
  margin:0;

  max-width:620px;

  color:#fff;

  font-size:72px;
  line-height:.94;
  font-weight:950;

  letter-spacing:-.057em;
  text-transform:uppercase;
}

.mock-hero h1 .blue {
  display:block;
  color:#FF2D8F;
}

.mock-service-line {
  margin:24px 0 20px;

  color:#fff;

  font-size:17px;
  line-height:1.3;
  font-weight:950;

  letter-spacing:.035em;
}

.mock-hero-description {
  max-width:585px;

  margin:0;

  color:#c0d1e0;

  font-size:16px;
  line-height:1.65;
  font-weight:500;
}

.mock-trust-row {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));

  gap:18px;

  margin-top:28px;
}

.mock-trust {
  display:grid;
  grid-template-columns:40px 1fr;
  gap:10px;
  align-items:center;
}

.mock-trust-icon {
  width:40px;
  height:40px;

  display:grid;
  place-items:center;

  border:1px solid #28516f;
  border-radius:7px;

  color:#FF2D8F;

  font-size:18px;
}

.mock-trust strong {
  display:block;

  color:#fff;

  font-size:11px;
  line-height:1.25;
}

.mock-trust small {
  display:block;

  margin-top:4px;

  color:#7891a7;

  font-size:9px;
  line-height:1.35;
}

.mock-hero-actions {
  display:flex;
  flex-wrap:wrap;
  gap:10px;

  margin-top:29px;
}

.mock-btn {
  min-height:51px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:0 22px;

  border-radius:7px;

  text-decoration:none;

  font-size:14px;
  font-weight:950;

  white-space:nowrap;
}

.mock-btn-primary {
  background:#FF2D8F;
  color:#fff;

  box-shadow:0 8px 22px rgba(255,45,143,.22);
}

.mock-btn-outline {
  border:1px solid #718598;

  background:transparent;
  color:#fff;
}

.mock-hero-photo {
  position:relative;

  min-height:748px;

  overflow:hidden;

  background:#1a2b38;
}

.mock-hero-photo img {
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  object-fit:cover;
  object-position:center center;

  display:block;

  /*
    Slight perimeter crop keeps source-listing UI outside
    the visible mock composition.
  */
  transform:scale(1.08);
}

.mock-hero-photo::before {
  content:"";

  position:absolute;
  inset:0;
  z-index:1;

  background:
    linear-gradient(
      90deg,
      rgba(5,25,42,.20),
      transparent 20%
    );

  pointer-events:none;
}

.mock-built-badge {
  position:absolute;
  z-index:2;

  right:28px;
  bottom:26px;

  min-width:182px;

  padding:17px 20px;

  border-radius:10px;

  background:#fff;

  color:#071a2b;

  box-shadow:0 14px 40px rgba(0,0,0,.12);
}

.mock-built-badge small {
  display:block;

  margin-bottom:8px;

  color:#FF2D8F;

  font-size:8px;
  font-weight:1000;

  letter-spacing:.15em;
}

.mock-built-badge strong {
  font-size:19px;
  line-height:1;
  letter-spacing:-.035em;
}

/* ----------------------------------------------------------
   USE CASES
   ---------------------------------------------------------- */

.mock-usecases {
  padding:82px 0 84px;

  background:#fff;
}

.mock-shell {
  width:min(1380px,calc(100% - 60px));
  margin:0 auto;
}

.mock-section-kicker {
  color:#FF2D8F;

  font-size:11px;
  font-weight:1000;

  letter-spacing:.14em;
  text-transform:uppercase;
}

.mock-usecases h2,
.mock-inventory h2 {
  margin:14px 0 12px;

  color:#071a2b;

  font-size:54px;
  line-height:.96;
  font-weight:900;

  letter-spacing:-.052em;
  text-transform:uppercase;
}

.mock-usecases > .mock-shell > p {
  margin:0;

  color:#60738a;

  font-size:15px;
}

.mock-use-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));

  gap:14px;

  margin-top:36px;
}

.mock-use-card {
  min-height:235px;

  padding:28px 25px;

  border:1px solid var(--mock-border);
  border-radius:8px;

  background:#fff;
}

.mock-use-icon {
  width:52px;
  height:52px;

  display:grid;
  place-items:center;

  margin-bottom:27px;

  border-radius:8px;

  background:#FFE9F4;
  color:#FF2D8F;

  font-size:23px;
}

.mock-use-card h3 {
  margin:0 0 14px;

  color:#071a2b;

  font-size:18px;
  font-weight:900;

  letter-spacing:-.025em;
}

.mock-use-card p {
  margin:0;

  color:#667c91;

  font-size:12px;
  line-height:1.65;
}

/* ----------------------------------------------------------
   INVENTORY
   ---------------------------------------------------------- */

.mock-inventory {
  padding:79px 0 88px;

  background:#f1f5f9;
}

.mock-inventory-head {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:30px;
}

.mock-inventory-head h2 {
  max-width:760px;
  margin-bottom:0;
}

.mock-view-all {
  height:50px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:0 22px;

  border:1px solid #cedae5;
  border-radius:7px;

  background:#fff;
  color:#071a2b;

  text-decoration:none;

  font-size:13px;
  font-weight:950;
}

.mock-inventory-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));

  gap:20px;

  margin-top:38px;
}

.mock-inventory-card {
  overflow:hidden;

  border:1px solid #d8e2ec;
  border-radius:9px;

  background:#fff;

  box-shadow:0 8px 24px rgba(6,27,46,.04);
}

.mock-inventory-media {
  position:relative;

  aspect-ratio:1.64/1;

  overflow:hidden;

  background:#dce4eb;
}

.mock-inventory-media img {
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  object-fit:cover;

  /*
    Crop source-listing UI without distorting card body.
  */
  object-position:42% 48%;
  transform:scale(1.36);
}

.mock-available {
  position:absolute;
  z-index:2;

  top:14px;
  left:14px;

  padding:8px 11px;

  border-radius:5px;

  background:#fff;
  color:#FF2D8F;

  font-size:9px;
  font-weight:1000;

  letter-spacing:.05em;
}

.mock-inventory-body {
  padding:22px;
}

.mock-card-tags {
  display:flex;
  flex-wrap:wrap;
  gap:6px;

  margin-bottom:13px;
}

.mock-card-tags span {
  padding:5px 8px;

  border-radius:999px;

  background:#edf3f8;
  color:#53677b;

  font-size:10px;
  font-weight:900;
}

.mock-card-tags span:first-child {
  background:#FFE8F4;
  color:#FF2D8F;
}

.mock-inventory-card h3 {
  margin:0 0 8px;

  color:#071a2b;

  font-size:21px;
  font-weight:900;

  letter-spacing:-.035em;
}

.mock-inventory-card p {
  min-height:42px;

  margin:0;

  color:#66798d;

  font-size:12px;
  line-height:1.5;
}

.mock-card-bottom {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:15px;

  margin-top:22px;
  padding-top:18px;

  border-top:1px solid #e7edf3;
}

.mock-price small {
  display:block;

  color:#718397;

  font-size:10px;
}

.mock-price strong {
  display:block;

  margin-top:3px;

  color:#071a2b;

  font-size:26px;
  line-height:1;
  font-weight:950;
}

.mock-details {
  min-height:42px;

  display:inline-flex;
  align-items:center;

  padding:0 15px;

  border-radius:6px;

  background:#FF2D8F;
  color:#fff;

  text-decoration:none;

  font-size:12px;
  font-weight:900;
}

/* ----------------------------------------------------------
   LOWER HOME SECTIONS
   Keep visual system consistent with mock
   ---------------------------------------------------------- */

.mock-lower {
  background:#fff;
}

.mock-lower-section {
  padding:82px 0;
}

.mock-lower-section.alt {
  background:#f4f7fa;
}

.mock-two-col {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.mock-lower h2 {
  margin:12px 0 18px;

  color:#071a2b;

  font-size:48px;
  line-height:.98;
  letter-spacing:-.05em;
  text-transform:uppercase;
}

.mock-lower p {
  color:#62778b;
  line-height:1.65;
}

.mock-dark-card {
  padding:38px;

  border-radius:10px;

  background:#050505;
  color:#fff;
}

.mock-dark-card h3 {
  color:#fff;
  font-size:30px;
}

.mock-dark-card p {
  color:#acc0d1;
}

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */

@media (max-width:1100px) {

  .mock-links,
  .mock-phone,
  .mock-quote-btn {
    display:none;
  }

  .mock-menu {
    display:grid;
    place-items:center;
  }

  .mock-nav {
    width:min(100% - 32px,1380px);
  }

  .mock-hero {
    grid-template-columns:1fr 1fr;
  }

  .mock-hero h1 {
    font-size:60px;
  }

  .mock-trust-row {
    grid-template-columns:1fr;
    gap:12px;
  }

  .mock-use-grid {
    grid-template-columns:repeat(2,1fr);
  }

}

@media (max-width:760px) {

  .mock-header,
  .mock-nav {
    height:68px;
  }

  .mock-nav {
    width:calc(100% - 28px);
  }

  .mock-logo {
    width:160px;
    flex-basis:160px;
  }

  .mock-logo img {
    width:148px;
  }

  .mock-hero {
    display:block;
  }

  .mock-hero-copy {
    min-height:auto;
  }

  .mock-hero-copy-inner {
    width:100%;
    margin:0;
    padding:54px 22px 48px;
  }

  .mock-hero h1 {
    font-size:53px;
  }

  .mock-service-line {
    font-size:14px;
  }

  .mock-hero-description {
    font-size:15px;
  }

  .mock-trust-row {
    grid-template-columns:repeat(3,1fr);
    gap:7px;
  }

  .mock-trust {
    display:block;
  }

  .mock-trust-icon {
    margin-bottom:8px;
  }

  .mock-trust small {
    display:none;
  }

  .mock-hero-actions {
    display:grid;
    grid-template-columns:1fr 1fr;
  }

  .mock-btn {
    padding:0 13px;
    font-size:12px;
  }

  .mock-btn:last-child {
    grid-column:1/-1;
  }

  .mock-hero-photo {
    min-height:390px;
  }

  .mock-hero-photo img {
    transform:scale(1.12);
  }

  .mock-built-badge {
    right:18px;
    bottom:18px;

    min-width:150px;
  }

  .mock-shell {
    width:calc(100% - 30px);
  }

  .mock-usecases,
  .mock-inventory,
  .mock-lower-section {
    padding:56px 0;
  }

  .mock-usecases h2,
  .mock-inventory h2,
  .mock-lower h2 {
    font-size:40px;
  }

  .mock-use-grid {
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .mock-use-card {
    min-height:205px;
    padding:20px 16px;
  }

  .mock-use-icon {
    width:44px;
    height:44px;
    margin-bottom:20px;
  }

  .mock-use-card h3 {
    font-size:15px;
  }

  .mock-use-card p {
    font-size:11px;
  }

  .mock-inventory-head {
    align-items:flex-start;
    flex-direction:column;
  }

  .mock-inventory-grid {
    grid-template-columns:1fr;
  }

  .mock-inventory-card p {
    min-height:0;
  }

  .mock-two-col {
    grid-template-columns:1fr;
    gap:28px;
  }

}

@media (max-width:420px) {

  .mock-hero h1 {
    font-size:46px;
  }

  .mock-trust-row {
    grid-template-columns:1fr 1fr 1fr;
  }

  .mock-use-grid {
    grid-template-columns:1fr 1fr;
  }

}

/* FINAL HERO SOURCE COUNTER CROP */

.mock-hero-photo img {
  object-position: center 43% !important;
  transform: scale(1.18) !important;
}

@media (max-width:760px) {
  .mock-hero-photo img {
    object-position: center 42% !important;
    transform: scale(1.22) !important;
  }
}


/* NEXGEN MOBILE TRUST ROW — COMPLETE CONTENT FIX 2026-08-22 */
@media (max-width: 760px) {
  body.v5-home .mock-trust-row,
  body.nexgen-v5.v5-home .mock-trust-row {
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:12px !important;
    width:100% !important;
    margin-top:28px !important;
  }

  body.v5-home .mock-trust,
  body.nexgen-v5.v5-home .mock-trust {
    display:grid !important;
    grid-template-columns:52px minmax(0,1fr) !important;
    align-items:center !important;
    gap:14px !important;
    width:100% !important;
    min-width:0 !important;
    min-height:88px !important;
    padding:14px 16px !important;
    border:1px solid rgba(255,255,255,.12) !important;
    border-radius:10px !important;
    background:rgba(255,255,255,.035) !important;
    box-sizing:border-box !important;
  }

  body.v5-home .mock-trust-icon,
  body.nexgen-v5.v5-home .mock-trust-icon {
    width:48px !important;
    height:48px !important;
    margin:0 !important;
    border-color:#28516f !important;
    border-radius:9px !important;
    color:#FF2D8F !important;
    font-size:20px !important;
  }

  body.v5-home .mock-trust > div:last-child,
  body.nexgen-v5.v5-home .mock-trust > div:last-child {
    min-width:0 !important;
    width:auto !important;
  }

  body.v5-home .mock-trust strong,
  body.nexgen-v5.v5-home .mock-trust strong {
    display:block !important;
    width:auto !important;
    max-width:100% !important;
    margin:0 !important;
    color:#fff !important;
    font-size:15px !important;
    line-height:1.25 !important;
    font-weight:900 !important;
    white-space:normal !important;
    overflow:visible !important;
    text-overflow:clip !important;
  }

  body.v5-home .mock-trust small,
  body.nexgen-v5.v5-home .mock-trust small {
    display:block !important;
    width:auto !important;
    max-width:100% !important;
    margin-top:5px !important;
    color:#9ab0c2 !important;
    font-size:12px !important;
    line-height:1.4 !important;
    white-space:normal !important;
    overflow:visible !important;
    text-overflow:clip !important;
  }

  body.v5-home .mock-hero-actions,
  body.nexgen-v5.v5-home .mock-hero-actions {
    margin-top:20px !important;
  }
}
/* NEXGEN APPROVED MOCKUP VISUAL LOCK V7 */
body.v5-home .mock-hero,body.nexgen-v5.v5-home .mock-hero{position:relative!important;display:block!important;min-height:590px!important;background:#050505 url('/assets/hero-real.jpg') center/cover no-repeat!important;overflow:hidden!important}body.v5-home .mock-hero::before,body.nexgen-v5.v5-home .mock-hero::before{content:"";position:absolute;inset:0;z-index:0;background:linear-gradient(90deg,rgba(0,0,0,.92),rgba(0,0,0,.72) 45%,rgba(0,0,0,.18))!important}body.v5-home .mock-hero-copy,body.nexgen-v5.v5-home .mock-hero-copy{position:relative!important;z-index:2!important;width:100%!important;min-height:590px!important;display:flex!important;align-items:center!important;background:transparent!important}body.v5-home .mock-hero-copy-inner,body.nexgen-v5.v5-home .mock-hero-copy-inner{width:min(760px,90vw)!important;margin-left:max(4.5vw,34px)!important;padding:64px 0 70px!important}body.v5-home .mock-hero h1 .blue,body.nexgen-v5.v5-home .mock-hero h1 .blue{color:#FF2D8F!important}body.v5-home .mock-service-line,body.nexgen-v5.v5-home .mock-service-line{margin-top:22px!important;color:#fff!important;font-size:22px!important;font-weight:600!important;text-transform:none!important}body.v5-home .mock-hero-description,body.nexgen-v5.v5-home .mock-hero-description,body.v5-home .mock-trust-row,body.nexgen-v5.v5-home .mock-trust-row,body.v5-home .mock-trust,body.nexgen-v5.v5-home .mock-trust,body.v5-home .mock-hero-photo,body.nexgen-v5.v5-home .mock-hero-photo{display:none!important}body.v5-home .mock-hero-actions,body.nexgen-v5.v5-home .mock-hero-actions{display:flex!important;gap:16px!important;margin-top:30px!important}body.v5-home .mock-hero-actions .mock-btn,body.nexgen-v5.v5-home .mock-hero-actions .mock-btn{min-width:180px!important;min-height:52px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important}body.v5-home .mock-btn-primary,body.nexgen-v5.v5-home .mock-btn-primary{background:#FF2D8F!important;border-color:#FF2D8F!important}@media(max-width:760px){body.v5-home .mock-hero,body.nexgen-v5.v5-home .mock-hero{min-height:600px!important;background-position:62% center!important}body.v5-home .mock-hero-copy,body.nexgen-v5.v5-home .mock-hero-copy{min-height:600px!important;align-items:flex-end!important}body.v5-home .mock-hero-copy-inner,body.nexgen-v5.v5-home .mock-hero-copy-inner{margin:0!important;padding:60px 22px 54px!important;width:auto!important}body.v5-home .mock-hero h1,body.nexgen-v5.v5-home .mock-hero h1{font-size:clamp(48px,15vw,66px)!important;line-height:.94!important}body.v5-home .mock-service-line,body.nexgen-v5.v5-home .mock-service-line{font-size:17px!important}body.v5-home .mock-hero-actions,body.nexgen-v5.v5-home .mock-hero-actions{display:grid!important;grid-template-columns:1fr 1fr!important;gap:12px!important}body.v5-home .mock-hero-actions .mock-btn,body.nexgen-v5.v5-home .mock-hero-actions .mock-btn{min-width:0!important;width:100%!important}}
/* NEXGEN FINAL BLACK/DARK SITE LOCK — user approved 2026-08-22 */
html,body{background:#050505!important;}
#siteHeader,.site-header,.mock-header,.mock-nav{background:#050505!important;}
body.v5-home,body.nexgen-v5.v5-home,body.v5-home .mock-home,body.nexgen-v5.v5-home .mock-home{background:#050505!important;}
body.v5-home .mock-lower,body.nexgen-v5.v5-home .mock-lower{background:#050505!important;}

/* NEXGEN_FINAL_VISIBLE_LOCK_V2_20260823 */
html,body,#siteHeader,.site-header,.mock-header,.mock-nav,body.v5-home,body.nexgen-v5.v5-home,body.v5-home .mock-home,body.nexgen-v5.v5-home .mock-home,body.v5-home .mock-lower,body.nexgen-v5.v5-home .mock-lower{background:#050505!important;}
.mock-home .mock-trust-row{display:none!important;}


/* NEXGEN GENERATED USE-CASE ICONS — approved 2026-08-23 */
.mock-use-icon.mock-use-icon-generated{width:92px!important;height:92px!important;display:flex!important;align-items:center!important;justify-content:center!important;padding:0!important;background:transparent!important;border:0!important;overflow:visible!important;}
.mock-use-icon-generated .mock-use-icon-img{display:block!important;width:92px!important;height:92px!important;object-fit:contain!important;border-radius:22px!important;}
@media (max-width:760px){.mock-use-icon.mock-use-icon-generated{width:82px!important;height:82px!important;}.mock-use-icon-generated .mock-use-icon-img{width:82px!important;height:82px!important;border-radius:20px!important;}}


/* NEXGEN GENERATED USE-CASE ICONS — approved 2026-08-23 */
.mock-use-icon.mock-use-icon-generated{width:92px!important;height:92px!important;display:flex!important;align-items:center!important;justify-content:center!important;padding:0!important;background:transparent!important;border:0!important;overflow:visible!important;}
.mock-use-icon-generated .mock-use-icon-img{display:block!important;width:92px!important;height:92px!important;object-fit:contain!important;border-radius:22px!important;}
@media (max-width:760px){.mock-use-icon.mock-use-icon-generated{width:82px!important;height:82px!important;}.mock-use-icon-generated .mock-use-icon-img{width:82px!important;height:82px!important;border-radius:20px!important;}}
/* NEXGEN_BLACK_FINAL_V7 */
html,body{background-color:#000!important;}
div.container-corrugation{background-color:#000!important;background-image:none!important;}
div.container-corrugation::before,div.container-corrugation::after{background-color:#000!important;background-image:none!important;}
div.design-face{background-color:#000!important;background-image:none!important;}
div.design-face::before,div.design-face::after{background-color:#000!important;background-image:none!important;}
div.designer-workspace{background-color:#000!important;background-image:none!important;}
div.designer-workspace::before,div.designer-workspace::after{background-color:#000!important;background-image:none!important;}
div.mock-inventory-media{background-color:#000!important;background-image:none!important;}
div.mock-inventory-media::before,div.mock-inventory-media::after{background-color:#000!important;background-image:none!important;}
div.nexgen-card-media{background-color:#000!important;background-image:none!important;}
div.nexgen-card-media::before,div.nexgen-card-media::after{background-color:#000!important;background-image:none!important;}
div.nexgen-card-media > img{background-color:#000!important;background-image:none!important;}
div.nexgen-card-media > img::before,div.nexgen-card-media > img::after{background-color:#000!important;background-image:none!important;}
div.rental-detail-grid{background-color:#000!important;background-image:none!important;}
div.rental-detail-grid::before,div.rental-detail-grid::after{background-color:#000!important;background-image:none!important;}
[class*="rental" i]:not(input):not(textarea):not(select):not(option):not(button):not(a):not(img):not(picture):not(video):not(canvas):not(svg){background-color:#000!important;}
[id*="rental" i]:not(input):not(textarea):not(select):not(option):not(button):not(a):not(img):not(picture):not(video):not(canvas):not(svg){background-color:#000!important;}
[class*="financ" i]:not(input):not(textarea):not(select):not(option):not(button):not(a):not(img):not(picture):not(video):not(canvas):not(svg){background-color:#000!important;}
[id*="financ" i]:not(input):not(textarea):not(select):not(option):not(button):not(a):not(img):not(picture):not(video):not(canvas):not(svg){background-color:#000!important;}
[class*="lease" i]:not(input):not(textarea):not(select):not(option):not(button):not(a):not(img):not(picture):not(video):not(canvas):not(svg){background-color:#000!important;}
[id*="lease" i]:not(input):not(textarea):not(select):not(option):not(button):not(a):not(img):not(picture):not(video):not(canvas):not(svg){background-color:#000!important;}
[class*="designer" i]:not(input):not(textarea):not(select):not(option):not(button):not(a):not(img):not(picture):not(video):not(canvas):not(svg){background-color:#000!important;}
[id*="designer" i]:not(input):not(textarea):not(select):not(option):not(button):not(a):not(img):not(picture):not(video):not(canvas):not(svg){background-color:#000!important;}
[class*="modification" i]:not(input):not(textarea):not(select):not(option):not(button):not(a):not(img):not(picture):not(video):not(canvas):not(svg){background-color:#000!important;}
[id*="modification" i]:not(input):not(textarea):not(select):not(option):not(button):not(a):not(img):not(picture):not(video):not(canvas):not(svg){background-color:#000!important;}
