/* =============================================
   CART PROGRESS BAR (Shared: Cart + Checkout + Confirmation)
   ============================================= */

.cart-progress {
    margin-top: 26px;
    margin-bottom: 30px;
    border-bottom: 1px solid #CCCCCC;
}

.cart-progress__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.cart-progress__item {
    position: relative;
    font-weight: 400;
    font-family: 'TeX Gyre Adventor', sans-serif;
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    color: #333333;
    width: 33%;
    text-align: center;
    padding: 22px;
    padding-top: 0;
    white-space: nowrap;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.cart-progress__item+.cart-progress__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 29px;
    background: #ccc;
}

.cart-progress__item--completed::after,
.cart-progress__item--active::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -3px;
    width: 100%;
    height: 3px;
    background: #1410E3;
}

.cart-progress__item--active {
    color: #1410E3;
    font-weight: 700;
}

/* -- Responsive -- */
@media (max-width: 767px) {
    .cart-progress__item {
        padding: 8px 12px;
    }
}