:root{
  --imd-green: #15EC12;
  --imd-green-dark: #11C80F;
  --imd-green-soft: rgba(21,236,18,.15);
  --imd-border: rgba(21,236,18,.35);
  --imd-text: #0f172a;        /* slate-ish */
  --imd-muted: #64748b;       /* slate-muted */
  --imd-card: #ffffff;
  --imd-bg: #f7f8fb;
  --imd-radius: 16px;
}

/* Base */
body{
  background: var(--imd-bg);
  color: var(--imd-text);
}

.help-block{
  color: red;
}

/* Cards */
.imd-card{
  background: var(--imd-card);
  border-radius: var(--imd-radius);
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 8px 20px rgba(15,23,42,.06);
}

/* Section title left accent (la rayita verde) */
.imd-section-title{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight: 800;
}
.imd-section-title::before{
  content:"";
  width:4px;
  height:22px;
  border-radius: 999px;
  background: var(--imd-green);
}

/* Inputs (borde verde suave, como el screenshot) */
.imd-input,
.imd-select{
  border-radius: 14px !important;
  border: 1px solid var(--imd-border) !important;
  padding: .85rem 1rem !important;
  box-shadow: none !important;
}
.imd-input:focus,
.imd-select:focus{
  border-color: var(--imd-green) !important;
  box-shadow: 0 0 0 .20rem var(--imd-green-soft) !important;
}

/* Input group icon (cuadrito derecho) */
.imd-addon{
  border-radius: 14px !important;
  border: 1px solid var(--imd-border) !important;
  background: #fff !important;
  color: var(--imd-green-dark) !important;
  font-weight: 800;
  padding: .85rem .95rem !important;
}

/* Primary button (grande verde) */
.btn-imd{
  background: var(--imd-green) !important;
  border-color: var(--imd-green) !important;
  color: #0b0f0b !important;
  font-weight: 600 !important;
/*  border-radius: 999px !important;*/
  padding: .6rem 1.25rem !important;
  box-shadow: 0 10px 20px rgba(21,236,18,.18);
}
.btn-imd:hover{
  background: var(--imd-green-dark) !important;
  border-color: var(--imd-green-dark) !important;
}
.btn-imd:disabled{
  opacity:.5;
  box-shadow:none;
}

/* Pills / Chips */
.imd-chip-group{ display:flex; gap:.75rem; flex-wrap:wrap; }
.imd-chip{
  border: 1px solid rgba(15,23,42,.12);
  background:#fff;
  border-radius:999px;
  padding:.6rem 1rem;
  font-weight:700;
  color: rgba(15,23,42,.75);
  cursor:pointer;
  user-select:none;
}
.imd-chip.active{
  border-color: var(--imd-green);
  background: var(--imd-green);
  color:#0b0f0b;
}

/* Radio cards (opciones tipo $10-$30, etc.) */
.imd-radio-card{
  border: 1px solid rgba(15,23,42,.12);
  background:#fff;
  border-radius: 14px;
  padding: 14px 16px;
  display:flex;
  align-items:center;
  gap:12px;
  cursor:pointer;
}
.imd-radio-card.active{
  border-color: var(--imd-green);
  box-shadow: 0 0 0 .20rem var(--imd-green-soft);
}
.imd-radio-dot{
  width:18px; height:18px;
  border-radius:999px;
  border: 2px solid rgba(15,23,42,.20);
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.imd-radio-card.active .imd-radio-dot{
  border-color: var(--imd-green);
}
.imd-radio-card.active .imd-radio-dot::after{
  content:"";
  width:10px; height:10px;
  border-radius:999px;
  background: var(--imd-green);
}

.btn-check:checked + .btn-outline-dark{
  background: var(--imd-green) !important;
  border-color: var(--imd-green) !important;
  color:#0b0f0b !important;
}


/* Wizard: button group look */
.imd-seg{
  display:flex;
  gap:.5rem;
  flex-wrap:wrap;
}
.imd-seg .btn{
  border-radius:999px !important;
  font-weight:800;
}

/*.btn-imd{
  background: var(--imd-green) !important;
  border-color: var(--imd-green) !important;
  color: #0b0f0b !important;
  font-weight: 600 !important;
  border-radius: 999px !important;
  padding: .9rem 1.25rem !important;
  box-shadow: 0 10px 20px rgba(21,236,18,.18);
}*/

.card{
  border: none !important;
  --bs-card-border-color: transparent;
}

.imd-question-title{
  position: relative;
  padding-left: 16px;
  margin-bottom: 12px;
  font-weight: 800;
}

.imd-question-title::before{
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 70%;
  background: var(--imd-green);
  border-radius: 999px;
}


/* Segmented control para opciones */
.imd-option-group .btn{
  border-color: var(--imd-border) !important;   /* verde claro */
  color: rgba(15,23,42,.85) !important;
  font-weight: 600;
/*  border-radius: 12px !important;*/
}

.imd-option-group .btn:hover{
  border-color: var(--imd-green) !important;
}

/* Estado seleccionado: verde sólido (ya lo tienes) */
.imd-option-group .btn-check:checked + .btn{
  background: var(--imd-green) !important;
  border-color: var(--imd-green) !important;
  color: #0b0f0b !important;
}

/* Mantener el grupo como “pastilla” */
.imd-option-group{
  border-radius: 14px;
  overflow: hidden;
}


/* Progress */
.progress{ border-radius: 999px; }
.progress-bar-green{ background: var(--imd-green) !important; }

 
.bg-success { background: var(--imd-green) !important; }
.bg-danger { background: rgb(255 114 114) !important; }

/* HERO */

/* HERO */
.imd-hero-wrap{
  padding-top: 30px; /* por navbar fixed-top */
  padding-bottom: 30px;
}

.imd-landing-card{
  border-radius: 18px;
  background: #fff;
  border: none !important;
  box-shadow: 0 18px 40px rgba(15,23,42,.10);
  overflow: hidden;
}

.imd-hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: .55rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background:#fff;
  font-weight: 800;
  letter-spacing: .02em;
  color: rgba(15,23,42,.80);
}
.imd-hero-badge .dot{
  width:10px;height:10px;border-radius:999px;
  background: var(--imd-green);
  box-shadow: 0 0 0 .20rem var(--imd-green-soft);
}

.imd-hero-title{
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: .95;
  font-size: clamp(42px, 5vw, 72px);
  margin: 18px 0 14px 0;
}
.imd-hero-title .green{ color: var(--imd-green-dark); }

.imd-hero-text{
  font-size: 18px;
  color: rgba(15,23,42,.65);
  line-height: 1.55;
  max-width: 520px;
}

.imd-hero-cta-row{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.imd-hero-meta{
  display:flex;
  align-items:center;
  gap:8px;
  color: rgba(15,23,42,.55);
  font-weight: 700;
}

.imd-hero-divider{
  border-top: 1px solid rgba(15,23,42,.08);
  margin: 22px 0;
}

.imd-avatars{
  display:flex;
  align-items:center;
  gap:10px;
  color: rgba(15,23,42,.65);
}
.imd-avatars .stack{
  display:flex;
  align-items:center;
}
.imd-avatars .circle{
  width:42px;height:42px;border-radius:999px;
  background: #e9edf5;
  border: 2px solid #fff;
  margin-left:-12px;
}
.imd-avatars .circle:first-child{ margin-left:0; }
.imd-avatars .plus{
  width:42px;height:42px;border-radius:999px;
  background: rgba(15,23,42,.60);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-weight: 650;
  margin-left:-12px;
  border: 2px solid #fff;
  font-size: 12px;
}

/* Imagen hero derecha */
.imd-hero-image{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15,23,42,.20);
  overflow: hidden;
  background: #0b1220;
  min-height: 320px;
  max-width: 550px;
}
.imd-hero-image img{
  width:100%;
   height: auto;
  object-fit: cover;
  display:block;
}

/* Mobile ajustes */
@media (max-width: 991.98px){
  .imd-hero-text{ max-width: 100%; }
  .imd-hero-image{ margin-top: 26px; min-height: 260px; }
}

/* MOBILE FIX */
@media (max-width: 576px) {
  .imd-hero-image img {
    max-height: 380px;   /* ajusta 320–420 según gusto */
    width: auto;
  }
}

/*


*/

/* ===== Landing Sections Theme ===== */

.imd-section{
  padding: 34px 0;
}

.imd-kicker{
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 650;
  color: rgba(15,23,42,.55);
}

.imd-h2{
  font-weight: 650;
  letter-spacing: -0.02em;
  color: rgba(15,23,42,.92);
}

.imd-lead{
  color: rgba(15,23,42,.62);
  line-height: 1.6;
  font-size: 16px;
}

.imd-soft{
  background: #f6f7fb;
}

/* Quote / Insight box */
.imd-quote{
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 10px 24px rgba(15,23,42,.06);
  padding: 22px 22px;
}
.imd-quote p{
  margin: 0;
  color: rgba(15,23,42,.72);
  font-style: italic;
  line-height: 1.6;
}
.imd-quote .source{
  margin-top: 14px;
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 650;
  letter-spacing: .12em;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(15,23,42,.55);
}
.imd-quote .source::before{
  content:"";
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--imd-green);
}

/* Small warning icon chip */
.imd-warn{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255,165,0,.14);
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(255,165,0,.20);
}

/* Checks list */
.imd-checks{
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.imd-check{
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.imd-check .dot{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(21,236,18,.16);
  border: 1px solid rgba(21,236,18,.32);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 650;
  color: var(--imd-green-dark);
  flex: 0 0 auto;
  margin-top: 2px;
}

/* Feature cards (2x2) */
.imd-feature-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
}
@media (max-width: 991.98px){
  .imd-feature-grid{ grid-template-columns: 1fr; }
}

.imd-feature-card{
  background:#fff;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 10px 24px rgba(15,23,42,.06);
  padding: 18px;
  display:flex;
  flex-direction: column;
  gap: 8px;
  min-height: 110px;
}
.imd-feature-card .icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 650;
  margin-bottom: 4px;
}
.imd-feature-card h6{
  font-weight: 650;
  margin: 0;
}
.imd-feature-card p{
  margin: 0;
  color: rgba(15,23,42,.60);
  font-size: 14px;
  line-height: 1.5;
}

/* Dimensions cards (grid 2 columns like screenshot) */
.imd-dim-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
}
@media (max-width: 991.98px){
  .imd-dim-grid{ grid-template-columns: 1fr; }
}

.imd-dim-card{
  background:#fff;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 10px 24px rgba(15,23,42,.06);
  padding: 18px;
  display:flex;
  gap: 14px;
  align-items:flex-start;
}
.imd-dim-ico{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 650;
  flex: 0 0 auto;
}
.imd-dim-card h6{
  font-weight: 650;
  margin: 0 0 4px 0;
}
.imd-dim-card p{
  margin: 0;
  color: rgba(15,23,42,.60);
  font-size: 14px;
  line-height: 1.55;
}

/* ===== Landing: Levels / Value / Deliverable / Final CTA ===== */

.imd-center-title{
  text-align:center;
  margin-bottom: 24px;
}
.imd-center-title h3{
  font-weight: 650;
  margin: 0;
}
.imd-center-title p{
  margin: 8px 0 0 0;
  color: rgba(15,23,42,.60);
}

/* Level cards grid */
.imd-level-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}
@media (max-width: 991.98px){
  .imd-level-grid{ grid-template-columns: 1fr; }
}

.imd-level-card{
  background:#fff;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 10px 24px rgba(15,23,42,.06);
  padding: 18px;
  position: relative;
  min-height: 120px;
}
.imd-level-card.soft{
  background: #f6f7fb;
}
.imd-level-badge{
  width: 34px;height:34px;
  border-radius: 999px;
  background: rgba(15,23,42,.06);
  display:flex;align-items:center;justify-content:center;
  font-weight: 650;
  color: rgba(15,23,42,.70);
  font-size: 12px;
  margin-bottom: 10px;
}
.imd-level-card h6{
  font-weight: 650;
  margin: 0 0 6px 0;
}
.imd-level-card p{
  margin: 0;
  color: rgba(15,23,42,.60);
  font-size: 13px;
  line-height: 1.5;
}

.imd-level-card.target{
  border-color: rgba(21,236,18,.55);
  box-shadow: 0 0 0 .22rem rgba(21,236,18,.12), 0 10px 24px rgba(15,23,42,.06);
}
.imd-level-card.target .imd-level-badge{
  background: rgba(21,236,18,.20);
  color: var(--imd-green-dark);
}
.imd-level-tag{
  position:absolute;
  top: 14px;
  right: 14px;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .12em;
  color: rgba(15,23,42,.55);
  background: rgba(21,236,18,.12);
  border: 1px solid rgba(21,236,18,.30);
  border-radius: 999px;
  padding: 2px 8px;
}

/* Value cards */
.imd-value-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}
@media (max-width: 991.98px){
  .imd-value-grid{ grid-template-columns: 1fr; }
}
.imd-value-card{
  background:#fff;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 10px 24px rgba(15,23,42,.06);
  padding: 18px;
  text-align:center;
}
.imd-value-ico{
  width: 46px;height:46px;
  border-radius: 999px;
  display:flex;align-items:center;justify-content:center;
  margin: 0 auto 10px auto;
  font-weight: 650;
}
.imd-value-card h6{
  font-weight: 650;
  margin: 0 0 6px 0;
}
.imd-value-card p{
  margin: 0;
  color: rgba(15,23,42,.60);
  font-size: 13px;
  line-height: 1.55;
}

/* Deliverable block */
.imd-deliver{
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 10px 24px rgba(15,23,42,.06);
  padding: 22px;
}

.imd-deliver-bullets{
  margin-top: 16px;
  display:grid;
  gap: 10px;
}
.imd-deliver-bullet{
  background: #f6f7fb;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.06);
  padding: 12px 14px;
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 800;
  color: rgba(15,23,42,.75);
  font-size: 13px;
}
.imd-deliver-bullet .ico{
  width: 22px;height:22px;
  border-radius: 8px;
  background: rgba(21,236,18,.15);
  display:flex;align-items:center;justify-content:center;
  color: var(--imd-green-dark);
  font-weight: 650;
}

/* Mock dashboard */
.imd-mock{
  margin-top: 18px;
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 18px 40px rgba(15,23,42,.18);
  background: #0b1220;
  min-height: 220px;
}
.imd-mock img{
  width:100%;
  height:auto;
  display:block;
}

/* Final CTA banner */
.imd-final{
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 18px 40px rgba(15,23,42,.18);
  background: linear-gradient(135deg, rgba(10, 18, 32, 1), rgba(20, 42, 52, 1));
  color: #fff;
  padding: 42px 22px;
  text-align:center;
}
.imd-final h2{
  font-weight: 650;
  margin: 0 0 10px 0;
  letter-spacing: -0.02em;
}
.imd-final p{
  margin: 0 auto 18px auto;
  max-width: 760px;
  color: rgba(255,255,255,.80);
}
.imd-final small{
  display:block;
  margin-top: 10px;
  color: rgba(255,255,255,.65);
}


/* ===== Result Page (matches screenshot) ===== */

.imd-result-wrap{
  padding: 18px 0 40px 0;
}

.imd-result-shell{
  max-width: 520px;
  margin: 0 auto;
}

.imd-result-card{
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15,23,42,.12);
  border: 1px solid rgba(15,23,42,.06);
}

/* Top bar */
.imd-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 5px 18px 2px 18px;
  background: #fff;
}

.imd-brand{
  display:flex;
  align-items:center;
  gap: 12px;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: rgba(15,23,42,.92);
  font-size: 26px;
}

.imd-brand-badge{
  width: 54px;
  height: 48px;
  border-radius: 14px;
  background: var(--imd-green);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 10px 18px rgba(21,236,18,.22);
}

.imd-icon-btn{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.08);
  background: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.imd-icon-btn:hover{
  border-color: rgba(21,236,18,.55);
  box-shadow: 0 0 0 .20rem var(--imd-green-soft);
}

/* Hero section */
.imd-result-hero{
  padding: 26px 18px 8px 18px;
  background: #f5f7fb;
  border-top: 1px solid rgba(15,23,42,.06);
}

.imd-kicker-green{
  text-align:center;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: .14em;
  color: var(--imd-green-dark);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.imd-result-title{
  text-align:center;
  font-weight: 650;
  letter-spacing: -0.03em;
  font-size: 35px;
  line-height: 1.02;
  margin: 0 0 18px 0;
  color: rgba(15,23,42,.92);
}

/* Donut */
.imd-gauge{
  width: 280px;
  height: 280px;
  margin: 0 auto 18px auto;
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.imd-gauge svg{
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  filter: drop-shadow(0 18px 28px rgba(21,236,18,.18));
}

.imd-gauge .center{
  position: absolute;
  text-align: center;
  transform: translateY(-2px);
}

.imd-gauge .value{
  font-size: 62px;
  font-weight: 650;
  letter-spacing: -0.04em;
  color: rgba(15,23,42,.92);
  line-height: 1;
}
.imd-gauge .sub{
  margin-top: 6px;
  font-size: 22px;
  font-weight: 700;
  color: rgba(100,116,139,.85);
}

.imd-gauge .knob{
  position:absolute;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #0b0f0b;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}

/* Inner cards */
.imd-panel{
  margin: 0 16px 14px 16px;
  background:#fff;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 10px 24px rgba(15,23,42,.06);
  padding: 18px 16px;
}

.imd-panel-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 10px;
}

.imd-panel-head .left{
  font-size: 22px;
  font-weight: 400;
  color: rgba(15,23,42,.62);
}
.imd-panel-head .right{
  font-size: 22px;
  font-weight: 650;
  color: var(--imd-green-dark);
  text-align:right;
}

.imd-panel p{
  margin: 10px 0 0 0;
  color: rgba(100,116,139,.95);
  line-height: 1.55;
  font-size: 18px;
}

.imd-panel b{ color: rgba(15,23,42,.92); }

.imd-progress{
  margin-top: 12px;
  height: 10px;
  border-radius: 999px;
  background: rgba(15,23,42,.08);
  overflow:hidden;
}
.imd-progress > span{
  display:block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: var(--imd-green);
}

/* Objective panel uses blue bar like screenshot */
.imd-progress.blue > span{
  background: #2f6bff;
}

/* Benchmark */
.imd-benchmark{
  padding: 12px 0 6px 0;
}
.imd-bench-title{
  margin: 16px 16px 10px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.imd-bench-title h3{
  margin: 0;
  font-size: 32px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.imd-tabs{
  background:#fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 14px;
  padding: 4px;
  display:flex;
  gap: 4px;
}
.imd-tab{
  border: none;
  background: transparent;
  padding: 8px 14px;
  border-radius: 12px;
  font-weight: 800;
  color: rgba(15,23,42,.55);
}
.imd-tab.active{
  background: rgba(15,23,42,.06);
  color: rgba(15,23,42,.82);
}

.imd-bench-box{
  margin: 0 10px 16px 10px;
  background:#fff;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 10px 24px rgba(15,23,42,.06);
  padding: 18px 16px;
}

.imd-bench-row{
  margin-bottom: 16px;
}
.imd-bench-row:last-child{ margin-bottom: 0; }


..score{
  font-weight: 800;
}
.imd-bench-row .row-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-weight: 650;
  font-size: 18px;
  color: rgba(15,23,42,.88);
}
.imd-bench-row .row-head .muted{
  font-weight: 800;
  color: rgba(100,116,139,.9);
}
.imd-bench-row .score{
  font-weight: 950;
  color: var(--imd-green-dark);
}
.imd-bench-row.gray .score{ color: rgba(100,116,139,.9); }
.imd-bench-row.red .score{ color: rgba(236,52,18,.9); }

.imd-bench-bar{
  margin-top: 10px;
  height: 12px;
  background: rgba(15,23,42,.08);
  border-radius: 999px;
  overflow:hidden;
  position: relative;
}
.imd-bench-bar > span{
  display:block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: rgba(15,23,42,.20);
}
.imd-bench-row.green .imd-bench-bar > span{ background: rgba(21,236,18,.65); }
.imd-bench-row.gray  .imd-bench-bar > span{ background: rgba(15,23,42,.18); }
.imd-bench-row.red  .imd-bench-bar > span{ background: rgba(236,52,18,.65); }

/* little white knob at the end like screenshot */
.imd-bench-row.green .imd-bench-bar::after{
  content:"";
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  left: calc(var(--p, 0%) - 10px);
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  border: 3px solid rgba(21,236,18,.85);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}


