/* -------------- checkout stepper ------------------  */
.checkoutStepper ul {
    list-style: none;
    color: #343230;
    width: 75%;
    position: relative;
    margin: 0 auto 1em;
    display: flex;
    justify-content: space-between;
    counter-reset: step;
    padding: 0;
}
.checkoutStepper li {
    display: inline-block;
    cursor: pointer;
    text-align: center;
    z-index: 2
}
.checkoutStepper li:before {
    /*    content: "3"; */
    content: counter(step);
    counter-increment: step;
    color: #fff;
    border-radius: 50%;
    background-color: #aaa;
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin: auto;
}

.checkoutStepper ul:after {
    content: "";
    width: 93%;
    height: 2px;
    background-color: #aaa;
    position: absolute;
    top: 17px;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
}

.checkoutStepper li.active:before {
    background-color: #e02c2b
}

.checkoutStepper a {
    color: #aaa;
    text-decoration: none;
    font-size: .9em;
    padding-top: 60px;
}

.checkoutStepper .active a {
    color: #606060;
}


@media screen and (min-width: 600px) {
    section#orderSum {
        margin-top: 4px;
    }
}
/* end checkout stepper */