/* Style the form */
#Steps-Form {
    margin: auto;
    /*padding: 40px;*/
    width: 100%;
    min-width: 600px;
}

/* Style the input fields */


/* Mark input boxes that gets an error on validation: */
input.invalid {
    background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
    display: none;
}

/* Make circles that indicate the steps of the form: */
.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

    /* Mark the active step: */
    .step.active {
        opacity: 1;
    }

    /* Mark the steps that are finished and valid: */
    .step.finish {
        background-color: #b09341;
    }

/*progress bar style --kodhus*/
.progressbar-container {
    width: 100%;
    display: block;
    margin-bottom: 15px;
    overflow: auto;
}

.progressbar {
    counter-reset: stepno;
}

    .progressbar li {
        list-style-type: none;
        float: left;
        /*width: 33.33%;*/
        /*font-size: 12px;*/
        position: relative;
        text-align: center;
        /*text-transform: uppercase;*/
        color: #999999;
    }

        .progressbar li:before {
            content: counter(stepno);
            counter-increment: stepno;
            width: 30px;
            height: 30px;
            line-height: 25px;
            border: 2px solid #999999;
            display: block;
            text-align: center;
            margin: 0 auto 10px auto;
            border-radius: 50%;
            background-color: white;
        }

        .progressbar li:after {
            width: 100%;
            height: 2px;
            content: '';
            position: absolute;
            background-color: #999999;
            top: 15px;
            left: -50%;
            z-index: -1;
        }

        .progressbar li:first-child:after {
            content: none;
        }

        .progressbar li.active {
            color: #b09341;
        }

            .progressbar li.active:before {
                border-color: #b09341;
                background-color: #b09341;
                color: white;
            }

            .progressbar li.active + li:after {
                background-color: #b09341;
            }


        .progressbar li.finish {
            color: #b09341;
        }

            .progressbar li.finish + li:after {
                background-color: #b09341;
            }

            .progressbar li.finish:before {
                border-color: #b09341;
            }

.progressbar-step {
}

    .progressbar-step.finish {
    }

    .progressbar-step.active {
    }
