#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-1 .progress-step {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 80px;
    width: 100%;
    margin-right: 3px;
    background: #f8f6f7;
    border-bottom: 4px solid transparent;
}

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

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

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

    #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-1 .progress-step {
        height: 65px;
        margin-right: 3px;
        margin-bottom: 6px;
    }
}

@media screen and (max-width: 480px) {
    .progress-style-1 .progress-step {
        margin-right: 0;
    }
}