#shipping--progress-bar {
    margin-top: 10px;
    margin-bottom: 20px;
}

#shipping--progress-wrapper {
    background: #f0f0f0;
    width: 100%;
    height: 20px;
    border-radius: 20px;
    position: relative;
}

#shipping--progress-percentage {
    color: white;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%,0);
}

#shipping--progress-counter {
    background: #6fb42f;
    width: 100%;
    height: 20px;
    border-radius: 20px;
    float: left;
    transition: all .5s ease;
}

#shipping--progress-counter.progress {
    background: #feb439;   
}

#shipping--progress-title {
    text-align: center;
    margin-top: 0;
    font-weight: 600;
}

@media only screen and (max-width: 770px) {
    #shipping--progress-bar {
        margin-top: 90px;
        padding: 0 20px;
    }   
    #shipping--progress-title {
        font-weight: 400;
    }
}