/**
 * Free-shipping progress bar shown in the cart and checkout.
 */
.csesm2-fs-bar-wrap {
    margin: 0 0 14px;
}

.csesm2-fs-bar__msg {
    font-size: 13px;
    line-height: 1.35;
    margin-bottom: 6px;
    text-align: center;
}

.csesm2-fs-bar--done .csesm2-fs-bar__msg {
    color: #3f9e7f;
    font-weight: 600;
}

.csesm2-fs-bar__track {
    height: 8px;
    background: #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
}

.csesm2-fs-bar__fill {
    height: 100%;
    width: 0;
    background: #97d3c2;
    border-radius: 6px;
    transition: width 0.45s ease;
}

.csesm2-fs-bar--done .csesm2-fs-bar__fill {
    background: #3f9e7f;
}
