.checkout-steps {
    padding: 00px 0;
    border: 0px solid red;
}

.checkout-steps .d-flex {
    position: relative;
}

.checkout-line {
    position: absolute;
    top: 22px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: #dee2e6;
    z-index: 1;
}

.step-item {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 25%;
    cursor: pointer;
}

.step-item:hover .step-circle {
    transform: scale(1.05);
    transition: .2s;
}

.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 2px solid #dee2e6;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 10px auto;

    font-weight: 700;
    font-size: 16px;
}

.step-label {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.step-item.active .step-circle {
    background: #198754;
    border-color: #198754;
    color: white;
}

.step-item.completed .step-circle {
    background: #198754;
    border-color: #198754;
    color: white;
}

.step-item.completed .step-circle::before {
    content: "✓";
}