/* 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/MIT-LICENSE.txt 
 */
 .sw-theme-arrows .sw-container {
    min-height: 200px;
}
.sw-theme-arrows .step-content {
    padding: 10px 0;
    border: 0 solid #d4d4d4;
    background-color: #fff;
    text-align: left;
}
.sw-theme-arrows .sw-toolbar {
    background: #fff;
    border-radius: 0 !important;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 0 !important;
}
.sw-theme-arrows .sw-toolbar-top {
    border-bottom-color: #fff !important;
}
.sw-theme-arrows .sw-toolbar-bottom {
    border-top-color: #fff !important;
    border-bottom-color: #ddd !important;
}
.sw-theme-arrows > ul.step-anchor {
    display: block;
    border: 0 solid #ccc !important;
    padding: 0;
    background: #f5f5f5;
    border-radius: 5px;
    list-style: none;
    overflow: hidden;
    margin-top: 20px;
}
.sw-theme-arrows > ul.step-anchor li + li:before {
    padding: 0;
}
.sw-theme-arrows > ul.step-anchor > li {
    float: left;
}
.sw-theme-arrows > ul.step-anchor > li > a {
    color: #bbb;
    text-decoration: none;
    padding: 10px 0 10px 45px;
    position: relative;
    display: block;
    float: left;
    border-radius: 0;
    outline-style: none;
    background: #ddd;
}
.sw-theme-arrows > ul.step-anchor > li > a:after {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 30px solid #ddd;
    position: absolute;
    top: 50%;
    margin-top: -50px;
    left: 100%;
    z-index: 2;
}
.sw-theme-arrows > ul.step-anchor > li > a:before {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 30px solid white;
    position: absolute;
    top: 50%;
    margin-top: -50px;
    margin-left: 1px;
    left: 100%;
    z-index: 1;
}
.sw-theme-arrows > ul.step-anchor > li:first-child > a {
    padding-left: 15px;
}
.sw-theme-arrows > ul.step-anchor > li > a:hover {
    color: #bbb;
    text-decoration: none;
    outline-style: none;
    background: #ffc107;
    border-color: #ffc107;
}
.sw-theme-arrows > ul.step-anchor > li > a:hover:after {
    border-left-color: #ffc107;
}
.sw-theme-arrows > ul.step-anchor > li.clickable > a:hover {
    color: #4285f4 !important;
    background: #46b8da !important;
}
.sw-theme-arrows > ul.step-anchor > li.active > a {
    border-color: #002c3e !important;
    color: white !important;
    background: #002c3e !important;
}
.sw-theme-arrows > ul.step-anchor > li.active > a:after {
    border-left: 30px solid #002c3e !important;
}
.sw-theme-arrows > ul.step-anchor > li.done > a {
    border-color: #74a433 !important;
    color: #fff !important;
    background: #74a433 !important;
}
.sw-theme-arrows > ul.step-anchor > li.done > a:after {
    border-left: 30px solid #74a433;
}
.sw-theme-arrows > ul.step-anchor > li.danger > a {
    border-color: #d9534f !important;
    color: #d9534f !important;
    background: #fff !important;
}
.sw-theme-arrows > ul.step-anchor > li.disabled > a,
.sw-theme-arrows > ul.step-anchor > li.disabled > a:hover {
    color: #eee !important;
}
@-webkit-keyframes ld {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}
@-moz-keyframes ld {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}
@-o-keyframes ld {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}
@keyframes ld {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}
.sw-theme-arrows > ul.step-anchor > li.loading:before {
    content: "";
    display: inline-block;
    position: absolute;
    background: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-left-color: #4285f4;
    border-right-color: #4285f4;
    top: 50%;
    left: 50%;
    margin-top: -16px;
    margin-left: -16px;
    width: 32px;
    height: 32px;
    z-index: 99;
    -webkit-animation: ld 1s ease-in-out infinite;
    -moz-animation: ld 1s ease-in-out infinite;
    -o-animation: ld 1s ease-in-out infinite;
    animation: ld 1s ease-in-out infinite;
}
