.msform {
    width: 600px;
    margin: 50px 0 50px auto;
    text-align: center;
    position: relative;
}

.progressbar {
    overflow: hidden;
    counter-reset: step;
    width: 100%;
}

.progressbar li {
    list-style-type: none;
    color: #28A9E2;
    text-transform: uppercase;
    font-size: 11px;
    width: 25%;
    float: left;
    position: relative;
    font-weight: 600;
}

.progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 20px;
    line-height: 20px;
    display: block;
    font-size: 10px;
    color: #28A9E2;
    background: white;
    border-radius: 50%;
    margin: 0 auto 5px auto;
    border: 1.4px solid #28A9E2;
}

.progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #28A9E2;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1;
}

.progressbar li:first-child:after {
    content: none;
}

.progressbar li.active:before,
.progressbar li.active:after {
    background: #28A9E2;
    color: white;
}

@media only screen and (max-width: 767px) {
    .progressbar {
        overflow: hidden;
        counter-reset: step;
        width: 100%;
        margin: 0 0;
        padding: 0 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1025px) {}

@media only screen and (min-width: 1024px) {
    .progressbar {
        overflow: hidden;
        counter-reset: step;
        width: 100%;
        margin: 0 auto 30px;
    }
}


/* ********************************** OLD VERSION ************************************* */

.checkout-head p {
    color: #28A9E2;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.1;
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: 'Bricksram';
    text-align: center;
}

.step-col-num {
    color: #28A9E2;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    line-height: 23px;
    font-family: 'Bricksram';
    border: 2px solid #28A9E2;
    color: #28A9E2;
    border-radius: 50%;
    padding: 6px 12px;
}

.step-col-line {
    height: 2px;
    width: 80px;
    vertical-align: middle;
    text-align: center;
    margin: auto;
    background: #28A9E2;
    border: 1px solid #28A9E2;
    display: inline-block;
}

.step-num {
    color: #28A9E2;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.1;
    margin: auto;
    font-family: 'Bricksram';
    text-align: center;
}

.step-line {
    height: 2px;
    width: 15px;
    vertical-align: middle;
    text-align: center;
    margin: auto;
    background: white;
    display: inline-block;
}

.step-circle {
    font-size: 42px;
    vertical-align: middle;
    padding: 0 0 7px 0;
    color: #28A9E2;
}

@media (max-width: 767px) {
    .step-num-sec {
        display: none;
    }
}