/*!  
 * 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
 */

/* SmartWizard Theme: Dots */
.sw-theme-dots {
}

    .sw-theme-dots .sw-container {
        min-height: 300px;
        margin-top: 0px !important;
        width: 100%;
        border-bottom: #4fc5ea 2px solid;
    }

    .sw-theme-dots .step-content {
        padding: 10px 0;
        border: none;
        background-color: #FFF;
        text-align: left;
    }

    .sw-theme-dots .sw-toolbar {
        /*background: #fff;*/
        border-radius: 0 !important;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 0px;
        margin-bottom: 0 !important;
    }

    .sw-theme-dots .sw-toolbar-top {
        border-bottom-color: #ddd !important;
    }

    .sw-theme-dots .sw-toolbar-bottom {
        /*border-top-color: #ddd !important;*/
        /*border-bottom-color: #ddd !important;*/
    }

    .sw-theme-dots > ul.step-anchor {
        position: relative;
        background: #fff;
        display: block;
        border: 0px solid #ccc !important;
        list-style: none;
    }

        .sw-theme-dots > ul.step-anchor:before {
            content: " ";
            position: absolute;
            top: 0px;
            bottom: 0;
            width: 100%;
            height: 3px;
            background-color: #ddd;
            border-radius: 3px;
            z-order: 0;
            z-index: 95;
        }

        .sw-theme-dots > ul.step-anchor > li {
            border: none;
            width: 25%;
        }
            /* Anchors styles */
            .sw-theme-dots > ul.step-anchor > li > a {
                position: relative;
                text-align: center;
                font-weight: bold;
                background: transparent;
                border: none;
                color: #ccc;
                text-decoration: none;
                outline-style: none;
                z-index: 96;
                display: block;
                margin-top: 0px;
            }

                .sw-theme-dots > ul.step-anchor > li > a:before {
                    position: absolute;
                    bottom: 2px;
                    left: 40%;
                    margin-top: -10px;
                    display: block;
                    border-radius: 50%;
                    color: #428bca;
                    background: #f5f5f5;
                    border: none;
                    width: 30px;
                    height: 30px;
                    text-decoration: none;
                    z-index: 98;
                }

                .sw-theme-dots > ul.step-anchor > li > a:after {
                    content: ' ';
                    position: relative;
                    left: 43%;
                    margin-top: -50px !important;
                    display: block;
                    width: 20px;
                    height: 20px;
                    background: #d2d6de;
                    border-radius: 50%;
                    z-index: 99;
                    border: 2px solid #d2d6de;
                    box-shadow: inset 0px 0px 0px 3px #fff !important;
                }

                .sw-theme-dots > ul.step-anchor > li > a:hover {
                    color: #ccc;
                    background: transparent;
                }

                .sw-theme-dots > ul.step-anchor > li > a:focus {
                    color: #ccc;
                    border: none;
                }

            .sw-theme-dots > ul.step-anchor > li.clickable > a:hover {
                color: #999;
            }
            /* Active anchors */
            .sw-theme-dots > ul.step-anchor > li.active > a {
                color: #61daff;
                margin-top: -0px;
                line-height: 40px;
                text-align: center;
                width: 100%;
            }


                .sw-theme-dots > ul.step-anchor > li.active > a:hover {
                    border: none;
                }

                .sw-theme-dots > ul.step-anchor > li.active > a:after {
                    background: #61daff;
                    margin-top: -57px;
                    border: 2px solid #61daff;
                    box-shadow: inset 0px 0px 0px 3px #fff !important;
                }
            /* Done anchors */
            .sw-theme-dots > ul.step-anchor > li.done > a {
                color: #a8be37;
                margin-top: 0px;
            }

                .sw-theme-dots > ul.step-anchor > li.done > a:after {
                    background: #a8be37;
                    margin-top: -57px;
                    border: 2px solid #a8be37;
                    box-shadow: inset 0px 0px 0px 3px #fff !important;
                }
            /* Danger anchors */
            .sw-theme-dots > ul.step-anchor > li.danger > a {
                color: #d9534f;
            }

                .sw-theme-dots > ul.step-anchor > li.danger > a:after {
                    background: #d9534f;
                    margin-top: -57px;
                    border: 2px solid #d9534f;
                    box-shadow: inset 0px 0px 0px 3px #fff !important;
                }

            .sw-theme-dots > ul.step-anchor > li.disabled > a, .sw-theme-dots > ul.step-anchor > li.disabled > a:hover {
                color: #eee !important;
            }

                .sw-theme-dots > ul.step-anchor > li.disabled > a:after {
                    background: #eee;
                }
.nav-next {
    position: absolute;
    right: 0px;
    border: solid 1px transparent;
    background-color: #F5F9FC;
    z-index: 1;
    padding: 11px 6px 12px;
    color: #179AC6;
    font-weight: bold;
    top: 3px;
    float: right;
    cursor: pointer;
}

.nav-previous {
    position: absolute;
    left: 0px;
    border: solid 1px transparent;
    background-color: #F5F9FC;
    z-index: 1;
    padding: 11px 6px 12px;
    color: #179AC6;
    font-weight: bold;
    top: 3px;
    float: right;
    cursor: pointer;
}

.sw-btn-group {
    width: 100%;
}

    .sw-btn-group .sw-btn-prev {
        border-radius: 3px !important;
    }

    .sw-btn-group .sw-btn-next {
        float: right !important;
        border-radius: 3px !important;
    }

.sw-btn-group-extra {
    position: absolute;
    text-align: center;
    margin-left: 0px !important;
    z-index: 1;
    left: 120px;
    right: 120px;
}

    .sw-btn-group-extra button {
        float: none !important;
        margin-right: 10px;
        border-radius: 3px !important;
        line-height: 20px;
    }
/* Responsive CSS */
@media screen and (max-width: 768px) {
    .sw-theme-dots > ul.step-anchor:before {
        top: 0;
        bottom: 0;
        left: 10px;
        width: 5px;
        height: 100%;
        background-color: #f5f5f5;
        display: block;
        margin-right: 10px;
    }

    .sw-theme-dots > ul.step-anchor > li {
        margin-left: 20px;
        display: block;
        clear: both;
    }

        .sw-theme-dots > ul.step-anchor > li > a {
            text-align: left;
            margin-left: 0;
            display: block;
        }

            .sw-theme-dots > ul.step-anchor > li > a:before {
                top: 5px;
                left: -23px;
                margin-right: 10px;
                display: block;
            }

            .sw-theme-dots > ul.step-anchor > li > a:after {
                top: -38px;
                left: -31px;
                margin-right: 10px;
                display: block;
            }
}



/* Loader Animation
 * Courtesy: https://codepen.io/emjay/pen/VjVBRq
 */
.sw-theme-dots > ul.step-anchor > li.loading > a:before {
    -webkit-animation: help-bubble-pulse 1.5s linear infinite;
    animation: help-bubble-pulse 1.5s linear infinite;
}

.sw-theme-dots > ul.step-anchor > li.loading > a:after {
    background-color: #ccc;
    opacity: 1;
    -webkit-animation: help-bubble-pulse 1.5s linear infinite;
    animation: help-bubble-pulse 1.5s linear infinite;
}

@-webkit-keyframes help-bubble-pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .75;
    }

    25% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .75;
    }

    100% {
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes help-bubble-pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .75;
    }

    25% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .75;
    }

    100% {
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
        opacity: 0;
    }
}
