
.stepper .step-container {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    border: 0 solid #CCC;
    overflow-x: hidden;
}

.stepper .loader {
    display: none;
}

.stepper .msgBox {
    display: none;
}

.stepper > ul {
    display: table;
    table-layout: fixed;
    list-style: none;
    position: relative;
    width: 100%;
    margin: 0 0 20px 0;
    padding: 0;
}

.stepper > ul li {
    display: table-cell;
    text-align: center;
}

.stepper > ul li a, 
.stepper > ul li:hover {
    display: block;
    position: relative;
    -moz-opacity: 1;
    filter: alpha(opacity= 100);
    opacity: 1;
    color: #666;
    text-decoration: none;
}

.stepper > ul li a:before {
    content: "";
    position: absolute;
    height: 4px;
    background: #ccc;
    top: 20px;
    width: 100%;
    z-index: 4;
    left: 0;
}

.stepper > ul li a .step-number {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100px;
    display: block;
    margin: 0 auto 5px;
    font-size: 16px;
    text-align: center;
    background: #ccc;
    color: #fff;
    position: relative;
    z-index: 5;
}

.stepper > ul li a.completed:before {
    background: #2c97cf;
    color: #fff;
}

.stepper > ul li a.completed .step-number {
    background: #2c97cf;
}

.stepper > ul li:first-child a:before {
    left: 50%;
}

.stepper > ul li:last-child a:before {
    right: 50%;
    width: 50%;
    left: auto;
}

.step-content-hidden {
    display: none;
}

@media (max-width: 1366px) {
    .step-description {
        font-size: 11px;
    }
}
