/* Center entire slider field */
.b2-11-inp-fld-wrp {
    text-align: center !important;
}

/* Hide default "Value :" text */
.b2-11-slider-val {
    font-size: 0 !important;
}

/* Rebuild formatted value display */
.b2-11-slider-val::after {
    content: var(--bfv-fld-val);
    font-size: 40px;
    font-weight: 800;
    display: block;
    margin-top: 15px;
}
/* Position wrapper */
.b2-11-inp-fld-wrp {
    position: relative;
}

/* Create a mask that covers the original numbers */
.b2-11-inp-fld-wrp::before,
.b2-11-inp-fld-wrp::after {
    position: absolute;
    top: 18px;
    background: #ffffff; /* match your card background */
    padding: 0 6px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    z-index: 5;
    margin-top: 6px;
}

/* Left label */
.b2-11-inp-fld-wrp::before {
    content: "$5,000";
    left: 0;
}

/* Right label */
.b2-11-inp-fld-wrp::after {
    content: "$1,000,000+";
    right: 0;
}
