/*!
 * SmartWizard v4.3.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 Basic CSS */
.sw {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
}

.sw .sw-container {
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
}

.sw .step-content {
    display: none;
    position: relative;
    margin: 0;
}

.sw .toolbar {
    margin-left: 0;
    padding-bottom: 20px !important;
}

/* SmartWizard Theme: White */
.sw-theme-default {
   border:0px solid #f0f0f4;
}

.sw-theme-default .sw-container {
    min-height: 250px;
}

.sw-theme-default .step-content {
    padding: 15px;
    border: 0px solid #f0f0f4;
    background-color: #FFF;
    text-align: left;
}
#step-1{
    background: transparent;
    margin-bottom: 20px;
}
.sw-theme-default .toolbar {
    /* background: #fff; */
    border-radius: 0 !important;
    padding-right: 10px;
    padding: 4px;
    margin-bottom: 0 !important;
    display: none;
    margin-top: 10px;
}

.sw-theme-default .toolbar-top {
    border-bottom-color:#f0f0f4 !important;
}

.sw-theme-default .toolbar-bottom {
    border-top-color:#f0f0f4 !important;
}

.sw-theme-default > ul.nav  {
    margin-bottom: 0px;
    padding-left:25px;

}
.sw-theme-default > ul.nav > li {
    position: relative;
    margin-right: 2px;
}

.sw-theme-default > ul.nav > li > a, .sw-theme-default > ul.nav > li > a:hover {
    border: none !important;
    color: #100E09 !important;

    outline-style: none;
    background: transparent !important;
    border: none !important;
    cursor: not-allowed;
	border-radius:0 !important;
}
.sw-theme-default > ul.nav > li.clickable > a:hover {
    color: #00418A  !important;
    background: transparent !important;
    cursor: pointer;
}
/*
.sw-theme-default > ul.nav > li > a.inactive::after {
    content: "";
    background-color: #091E71; ;
    height: 2px;
    position: absolute;
    width: 100%;
    left: 0px;
    bottom: 0px;
    -webkit-transition: all 250ms ease 0s;
    transition: all 250ms ease 0s;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
} */

.sw-theme-default > ul.nav > li > a.active {
    border: none !important;
    color: #fff !important;
    background-color: #091E71;  !important;
}


.sw-theme-default > ul.nav > li > a.active::after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.sw-theme-default > ul.nav > li > a.done {

    border: none !important;
    cursor: pointer;
}

@media screen and (min-width: 480px) and (max-width: 767px)  {.sw-theme-default > ul.nav > li > a.done {color: grey !important; background: transparent !important;}}
@media screen and (min-width: 320px) and (max-width: 479px) {.sw-theme-default > ul.nav > li > a.done {color: grey !important; background: transparent !important;}}


.sw-theme-default > ul.nav > li > a.done:hover {
    border: none !important;
    cursor: pointer;
}

@media screen and (min-width: 480px) and (max-width: 767px)  {.sw-theme-default > ul.nav > li > a.done:hover {color: #396224 !important; background: transparent !important;}}
@media screen and (min-width: 320px) and (max-width: 479px) {.sw-theme-default > ul.nav > li > a.done:hover {color: #396224 !important; background: transparent !important;}}


.sw-theme-default > ul.nav > li > a.done::after {
    background-color: #091E71;  !important;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.sw-theme-default > ul.nav > li.danger > a {
    border: none !important;
    color: #d9534f !important;
    /* background: #d9534f !important; */
    cursor: pointer;
}

.sw-theme-default > ul.nav > li.danger > a::after {
    background: #d9534f;
    border-left-color: #f8d7da;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.sw-theme-default > ul.nav > li.disabled > a, .sw-theme-default > ul.nav > li.disabled > a:hover {
    color: #eee !important;
    cursor: not-allowed;
}

/* Responsive CSS */
@media screen and (max-width: 768px) {
    .sw-theme-default > .nav-tabs > li {
        float: none !important;
    }
}

/* Common Loader */
.sw-loading::after {
    position: absolute;
    display: block;
    opacity: 1;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255,255,255,.7);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    z-index: 2;
}

.sw-loading::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #3498db;
    width: 80px;
    height: 80px;
    margin-top: -40px;
    margin-left: -40px;
    -webkit-animation: spin 1s linear infinite;
 /* Safari */
    animation: spin 1s linear infinite;
}
.sw .sw-btn-prev{
    margin-right: 5px;
}
@media only screen and (max-width: 767px) {
    .sw .sw-btn-prev{
        margin-top:10px;
    }
}



/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.sw-btn-next{
    float: right;
    display: none;
}


    .sw-theme-default {
        border: none;
        background:#fff;
    }

    .sw-theme-default > ul.nav {
        justify-content: center;
        padding: 36px 4px 16px 4px
    }

    .sw-theme-default > ul.nav > li {
        margin: 0;
        width: calc(100% / 6);
        display: flex;
        justify-content: center;
        align-items: baseline;
    }

    .sw-theme-default > ul.nav > li > a:after {
        position: absolute;
        content: "1";
        z-index : 1;
        width: 32px;
        height: 32px;
        background: #C4C4C4;
        color: #fff;
        border-radius: 50%;
        text-align: center;
        vertical-align: middle;
        line-height: 32px;
        left: calc(50% - 16px);
        top: 0;
    }
    .sw-theme-default > ul.nav > li:nth-child(1) > a:after {
        content: "1";
    }
    .sw-theme-default > ul.nav > li:nth-child(2) > a:after {
        content: "2";
    }
    .sw-theme-default > ul.nav > li:nth-child(3) > a:after {
        content: "3";
    }
    .sw-theme-default > ul.nav > li:nth-child(4) > a:after {
        content: "4";
    }
    .sw-theme-default > ul.nav > li:nth-child(5) > a:after {
        content: "5";
    }
    .sw-theme-default > ul.nav > li:nth-child(6) > a:after {
        content: "6";
    }
    .sw-theme-default > ul.nav > li > a.active:after {
        background-color: #091E71;
    }
    .sw-theme-default > ul.nav > li > a.done:after {
        content: "\f00c";
        font-family: 'FontAwesome';
    }
    .sw-theme-default > ul.nav > li > a.done:before,
    .sw-theme-default > ul.nav > li > a.active:before {
        border-color: #00418A;
    }
    .sw-theme-default > ul.nav > li > a:before {
        content: "";
        position: absolute;
        top: calc(50% - 28px);
        right:  48%;
        width: 100%;
        border: 4px solid #C4C4C4;
    }
    .sw-theme-default > ul.nav > li:nth-child(1) > a:before {
        content: none
    }

    .sw-theme-default > ul.nav > li a {
        padding: 40px 5px 0 !important;
        margin: 0 !important;
        font-size: 1rem;
        height: 80px;
        text-align: center;
        display: flex;
        align-items: baseline;
    }


    @media (max-width: 1024px) {
        .sw-theme-default > ul.nav > li a {
            padding: 40px 5px 0 !important;
            margin: 0 !important;
            font-size: 0.6rem;
        }
    }
    

    



    .sw-theme-default > ul.nav > li > a.active {
        color:#00418A  !important;
        background: inherit !important;
    }

    #step-1 fieldset{
        border: none !important;
        padding: 0 !important;
    }

    #step-1 fieldset legend {
        padding: 0;
    }

    #step-1>.card {
        background: transparent;
    }
    #step-1 fieldset>.row {
        background: #fff;
        border-radius: 5px;
        padding: 10px 16px;
    }

    #step-5 .badgetext{
        font-size: 1rem;
    }
