.checkout_stepper_section {
    width: 100%;
    background-color: var(--primary);
    color: #fff;
}

.checkout_stepper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    overflow: hidden;
}


.active {
    background-color: #fff !important;
    color: var(--primary) !important;
    box-shadow: none !important;
}

.checkout_stepper_step:last-child::before {
    box-shadow: none !important;
    height: 100px !important;
    top: -2px !important;
}

.completed {
    border-radius: 100%;
    background-color: #fff !important;
    color: var(--primary) !important;
    position: relative;
}

.checkout_stepper_step.completed, .checkout_stepper_step.active {
    border-radius: 100%;
    background-color: transparent !important;
    color: var(--primary) !important;
    position: relative;
}

.checkout_stepper_step.completed::before {
    background-color: #fff !important;
    top: 30px;
    box-shadow: none;
}


.checkout_stepper_step {
    border-radius: 100%;
    color: var(--primary);
    position: relative;
}

.checkout_stepper_step::before {
    content: "";
    position: absolute;
    left: 0;
    width: 300px;
    height: 3px;
    z-index: 0;
    height: 5px;
    box-shadow: 0 0 5px 0 #b3b3b32a;
    background-color: var(--primary);
    top: 30px;
}

.checkout_stepper_svg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    z-index: 1;
    background-color: var(--primary);
    border-radius: 100%;
    color: #fff;
    position: relative;
    box-shadow: 0 0 5px 0 #b3b3b32a;
}

@media(max-width: 768px) {
    .checkout_stepper_svg {
        width: 44px;
        height: 44px;
    }

    .checkout_stepper_step::before {
        top: 19px;
    }

    .checkout_stepper_step.completed::before {
        top: 19px;
    }

    .stepper_item_title {
        font-size: 12px;
    }
}

.checkout_stepper_step svg {
    width: 28px;
    height: 28px;

}

.stepper_item_title {
    text-align: center;
    padding: 5px 0;
    margin: 0;
    color: #fff;
    position: relative;
}