.wbstockinfo-bar {
    position: relative;
    display: block;
    margin-top: 10px;
    height: 3px;
    border-radius: 4px;
    background: rgba(var(--color-foreground),0.08);
    overflow: hidden;
}
.wbstockinfo {
    position: relative;
    display: block;
    font-size: calc(var(--font-body-scale) * 14px);
    font-weight: var(--font-body-weight-medium);
}
.wbstockinfo_high {
    color: var(--product-in-stock-color);
}
.wbstockinfo_low {
    color: var(--product-low-stock-color);
}
.wbstockinfo_soon{
    color: var(--product-continue-selling-color);
}
.wbstockinfo-probar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    display: block;
    transition: width 1.15s ease-in-out;
}
.wbstockinfo_high + .wbstockinfo-bar > .wbstockinfo-probar {
    background: var(--product-in-stock-color);
}
.wbstockinfo_low + .wbstockinfo-bar > .wbstockinfo-probar {
    background: var(--product-low-stock-color);
}