body .checkout-page-title .breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    body .checkout-page-title .breadcrumbs {
        margin-bottom: 30px;
    }
}

body .checkout-page-title .breadcrumbs .item {
    display: flex;
}

body .checkout-page-title .breadcrumbs .item .ellipse {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 8px;
    border: 2px solid #b7bbc5;
}

body .checkout-page-title .breadcrumbs .item .number {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #b7bbc5;
}

body .checkout-page-title .breadcrumbs .item a {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: var(--text);
}

/* Guard against wpautop injecting <p> wrappers around breadcrumb links */
body .checkout-page-title .breadcrumbs .item p {
    margin: 0;
}

body .checkout-page-title .breadcrumbs br {
    display: none;
}

@supports (display: contents) {
    body .checkout-page-title .breadcrumbs .item p {
        display: contents;
    }
}

body .checkout-page-title .breadcrumbs .item .icon {
    display: none;
}

body .checkout-page-title .breadcrumbs .item.current .ellipse {
    background-color: var(--primary);
    border-color: var(--primary);
}

body .checkout-page-title .breadcrumbs .item.current .number {
    color: #fff;
}

body .checkout-page-title .breadcrumbs .item.current a {
    color: var(--primary);
}

@media (max-width: 767px) {
    body .checkout-page-title .breadcrumbs .item.hide-for-small {
        display: flex !important;
    }

    body .checkout-page-title .breadcrumbs .item.hide-for-small a {
        display: none;
    }

    body .checkout-page-title .breadcrumbs .item.hide-for-small .ellipse {
        margin-right: 0;
    }

    body .checkout-page-title .breadcrumbs .item.current a {
        text-decoration: none;
        text-align: center;
    }

    body .checkout-page-title .breadcrumbs .item {
        align-items: center;
    }
}

body .checkout-page-title .breadcrumbs .line {
    width: 75px;
    height: 2px;
    margin: 0 16px;
    background-color: #e5e7ec;
}

@media (max-width: 549px) {
    body .checkout-page-title .breadcrumbs .line {
        width: 55px;
    }
}

body .checkout-page-title .breadcrumb-woo-title {
    text-align: center;
    font-size: 32px;
    line-height: 48px;
    font-weight: 700;
    color: var(--heading);
    margin-top: 60px;
}

.checkout-page-title {
    padding-top: 40px;
}

@media (max-width: 767px) {
    .checkout-page-title {
        padding-top: 40px;
    }

    .checkout-page-title .page-title-inner {
        justify-content: space-between;
    }
}

.checkout-page-title .page-title-inner {
    padding-top: 0;
    min-height: unset;
}

.checkout-page-title .checkout-breadcrumbs {
    padding: 0;
}

.woocommerce-checkout body .checkout-page-title .breadcrumbs .item.shopping-cart .ellipse {
    border-color: var(--primary);
    background-color: var(--primary);
}

.woocommerce-checkout body .checkout-page-title .breadcrumbs .item.shopping-cart .ellipse .number {
    display: none;
}

.woocommerce-checkout body .checkout-page-title .breadcrumbs .item.shopping-cart .ellipse .icon {
    display: flex;
}