.order-step-process {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.order-step-process .wrapper {
    counter-reset: step;
    margin: 2rem 0;
    max-width: 1000px;
    min-width: 680px;
}

ul.status-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 0;
    margin-top: 4.7px;
    margin-bottom: 0;
    list-style-type: none;
}
ul.status-line li {
    position: relative;
    margin-top: 10px;
    font-size: .9rem;
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    text-align: center;
    color: rgba(127, 205, 49, .9);
}
ul.status-line li.d-none {
    display: none;
}
ul.status-line li:last-child:after {
    display: none;
}


ul.status-line li:before {
    font-family: FontAwesome;
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -2.25rem;
    left: 34%;
    z-index: 1;
    height: 2.5rem;
    width: 2.5rem;
    background: #f8fafc;
    border-radius: 50%;
    font-size: 1.5rem;
    /* color: var(--success); */
    color: rgb(127,205,49, .5);
    font-weight: bolder;
    cursor: pointer;
}

ul.status-line li[data-step="pick-event-date"]:before {
    content: "\f073";
}

ul.status-line li[data-step="tickets"]:before {
    content: "\f145";
}
ul.status-line li[data-step="cart"]:before {
    content: "\f07a";
}
ul.status-line li[data-step="checkout"]:before {
    content: "\f09d";
}
ul.status-line li[data-step="order-process"]:before {
    content: "\f56e";
}
ul.status-line li[data-step="confirmation"]:before {
    content: "\f00c";
}

ul.status-line li:after {
    content: "";
    position: absolute;
    top: -17px;
    left: 50%;
    width: 100%;
    height: 2px;
    /*     background: var(--success); */
    background: rgb(127,205,49, .5);
}
ul.status-line li.active ~ li:before {
    background: #f8fafc;
    color: #A5C8FF70;
}
ul.status-line li.active ~ li:after {
    background: rgba(221, 226, 229, 0.4);
}
ul.status-line li.active:before {
    box-shadow: 0 0 0 3px rgba(127,205,49, 0.9);
    color: var(--success);
    background-color: #f8fafc;
}

ul.status-line li.active ~ li {
    color: #7f8995;
}


ul.status-line li.active:after {
    background: rgba(221, 226, 229, 0.4);
}

ul.status-line li.active a {
    color: var(--success);
    font-weight: bold;
    font-size: 1rem;
}

ul.status-line li a span {
    padding-top: .4rem;
    display: block;
}


@media (max-width: 992px) {
    .order-step-process {
        max-width: 92vw;
        text-align: center;
    }

    .order-step-process .wrapper {
        width: 100vw;
        margin: 1rem 0 0 0;
        min-width: 0;
    }

    ul.status-line li {
        font-size: 0;
    }

    ul.status-line li:before {
        top: -1.85rem;
        height: 1.5rem;
        width: 1.5rem;
        font-size: 1rem;
    }

    ul.status-line li.active::before {
        box-shadow: none;
    }

    ul.status-line li.active a {
        font-size: .7rem;
    }

    ul.status-line li a span {
        padding-top: 0;
    }
}

