#atomion-order-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

#atomion-order-progress .progress-step {
    text-transform: uppercase;
    font-weight: 800;
    padding: .5rem 1rem;
}

.progress-style-3 .progress-step {
    color: #cccccc;
    text-align: center;
    width: 100%;
    border-right: 1px solid #cccccc;
}

.progress-style-3 .progress-step > a {
    color: #cccccc;
}

.progress-style-3 .progress-step:last-child {
    border-right: none;
}

.progress-style-3 .current,
.progress-style-3 .current > a,
.progress-style-3 .progress-step > a:hover,
.progress-style-3 .progress-step > a:focus {
    color: initial;
}

.progress-style-3 .progress-step span {
    display: block;
    font-size: 1.6rem;
    transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
}

@media screen and (max-width: 600px) {
    #atomion-order-progress.has-4-steps {
        flex-wrap: wrap;
        justify-content: space-around;
    }

    #atomion-order-progress .progress-step {
        padding: 0.5rem .5rem;
        font-size: 80%;
        width: 49%;
    }

    #atomion-order-progress.progress-style-3 .progress-step {
        width: 50%;
    }

    .progress-style-3.has-4-steps .progress-step {
        border: 0;
    }

    .progress-style-3.has-4-steps .progress-step:first-child,
    .progress-style-3.has-4-steps .progress-step:nth-child(2) {
        border-bottom: 1px solid #ccc;
    }

    .progress-style-3 .progress-step span {
        font-size: 1rem;
    }
}