#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;
}

#atomion-order-progress.progress-style-2 {
    padding: 1.2rem 3rem;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}


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

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

.progress-style-2 .progress-step span {
    display: inline-block;
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    line-height: 32px;
    text-align: center;
    color: white;
    background: #cccccc;
    margin-right: .5rem;
    border-radius: 50%;
    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: 950px) {
    #atomion-order-progress.progress-style-2 {
        padding: 1.2rem 0;
    }

    .progress-style-2 .progress-step {
        text-align: center;
    }

    .progress-style-2 .progress-step span {
        display: block;
        margin: 0 auto;
    }
}

@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%;
    }

    .progress-style-2 .progress-step span {
        width: 25px;
        height: 25px;
        font-size: 1rem;
        line-height: 25px;
        margin-bottom: 7px;
    }
}

@media screen and (max-width: 480px) {
    #atomion-order-progress.progress-style-2 {
        align-items: unset;
    }
}