/*!  
 * aeWizard based on SmartWizard v4.x
 * jQuery Wizard Plugin
 * http://www.techlaboratory.net/smartwizard
 *
 * Created by Dipu Raj
 * http://dipuraj.me
 *
 * Licensed under the terms of MIT License
 * https://github.com/techlab/SmartWizard/blob/master/LICENSE
 */

/* aeSmartWizard Basic CSS */
.sw-main {
    /*position: relative;*/
    display: block;
    margin: 0;
    padding: 0;
}

    .sw-main .sw-container {
        display: block;
        margin: 0;
        padding: 0;
        /*position: relative;*/
    }

    .sw-main .step-content {
        display: none;
        /*position: relative;*/
        margin: 0;
    }

    .sw-main .sw-toolbar {
        margin-left: 0;
    }

    .sw-main .step-anchor {
        margin: 0;
        padding: 0;
        counter-reset: step;
        z-index: -100;
        border: 1px solid transparent;
    }

        .sw-main .step-anchor li {
            list-style-type: none;
            float: left;
            font-size: 12px;
            position: relative;
            text-align: center;
            text-transform: uppercase;
            color: #7d7d7d;
        }

        .sw-main .step-anchor.step-count-1 li {
            width: 100%;
        }

        .sw-main .step-anchor.step-count-2 li {
            width: 50%;
        }

        .sw-main .step-anchor.step-count-3 li {
            width: 33%;
        }

        .sw-main .step-anchor.step-count-4 li {
            width: 25%;
        }

        .sw-main .step-anchor.step-count-5 li {
            width: 20%;
        }

        .sw-main .step-anchor.step-count-6 li {
            width: 16%;
        }

            .sw-main .step-anchor li a:before {
                width: 30px;
                height: 30px;
                content: counter(step);
                counter-increment: step;
                line-height: 27px;
                border: 2px solid #7d7d7d;
                display: block;
                text-align: center;
                margin: 0 auto 10px auto;
                border-radius: 50%;
                background-color: white;
                position: relative;
                z-index: 1;
                font-weight: bold;
            }

        .sw-main .step-anchor li a:after {
            width: 100%;
            height: 2px;
            content: '';
            position: absolute;
            background-color: #7d7d7d;
            top: 25px;
            left: -50%;
            z-index: 0;
        }


            .sw-main .step-anchor li.active a {
                border: 1px solid transparent;
                color: #0f3f99;
            }

            .sw-main .step-anchor li:first-child a:after {
                content: none;
            }

    .sw-main > ul.step-anchor > li > a:hover {
        background: transparent;
        border: 1px solid transparent;
        font-weight: bold;
    }

    .sw-main > ul.step-anchor > li > a:focus {
        border: 1px solid transparent;
    }

    .sw-main .step-anchor li.active a:before {
        border-color: #0f3f99;
        background-color: #0f3f99;
        color: #fcdf05;
        font-weight: bold;
        font-size: 16px;
    }

    .sw-main > ul.step-anchor > li.active > a {
        font-weight: bold;
    }

    .sw-main .step-anchor li.active + li a:after {
        background-color: #7d7d7d;
    }

    .sw-main .step-anchor li.done a {
        color: #5cb85c;
    }

        .sw-main .step-anchor li.done a:before {
            border-color: #5cb85c;
            font-family: FontAwesome;
            content: '\f00c'
        }

    .sw-main .step-anchor li.done + li a:after {
        background-color: #5cb85c;
    }
