/*!
 * jQuery SmartWizard v5
 * jQuery Wizard Plugin
 * http://www.techlaboratory.net/smartwizard
 *
 * Created by Dipu Raj
 * http://dipu.me
 *
 * Licensed under the terms of MIT License
 * https://github.com/techlab/jquery-smartwizard/blob/master/LICENSE
 */
/* SmartWizard Base Styles */
.sw {
    position: relative;
}

.sw *,
.sw *::before,
.sw *::after {
    box-sizing: border-box;
}

.sw > .tab-content {
    position: relative;
    overflow: hidden;
}

.sw .toolbar {
    padding: .8rem;
}

.sw .toolbar > .btn {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    text-transform: none;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-left: .2rem;
    margin-right: .2rem;
    cursor: pointer;
}

.sw .toolbar > .btn.disabled, .sw .toolbar > .btn:disabled {
    opacity: .65;
}

.sw > .nav {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}

@media screen and (max-width: 640px) {
    .sw > .nav {
        flex-direction: column !important;
        flex: 1 auto;
    }
}

.sw > .nav .nav-link {
    display: block;
    padding: .5rem 1rem;
    text-decoration: none;
}

.sw > .nav .nav-link:hover, .sw > .nav .nav-link:active, .sw > .nav .nav-link:focus {
    text-decoration: none;
}

.sw > .nav .nav-link::-moz-focus-inner {
    border: 0 !important;
}

.sw > .nav .nav-link.disabled {
    color: #ccc !important;
    pointer-events: none;
    cursor: default;
}

.sw > .nav .nav-link.hidden {
    display: none !important;
}

.sw.sw-justified > .nav > li, .sw.sw-justified > .nav .nav-link {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center;
}

.sw.sw-dark {
    color: rgba(255, 255, 255, 0.95);
    background: #000;
}

.sw.sw-loading {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.sw.sw-loading::after {
    content: "";
    display: block;
    position: absolute;
    opacity: 1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 2;
    transition: all .2s ease;
}

.sw.sw-loading::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 45%;
    left: 45%;
    width: 2rem;
    height: 2rem;
    border: 10px solid #f3f3f3;
    border-top: 10px solid #3498db;
    border-radius: 50%;
    z-index: 10;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* SmartWizard Theme: Arrows */
.sw-theme-arrows {
    
}

.sw-theme-arrows > .tab-content > .tab-pane {
    padding: 10px;
}

.sw-theme-arrows .toolbar > .btn {
    color: #ffffff;
    background-color: #b19000;
    border: 1px solid #b19000;
    padding: .375rem .75rem;
    border-radius: .25rem;
    font-weight: 400;
}

.sw-theme-arrows > .nav {
    overflow: hidden;
    border-bottom: 0px solid #eeeeee;
}

.sw-theme-arrows > .nav .nav-link {
    position: relative;
    height: 100%;
    min-height: 100%;
    margin-right: 30px;
    margin-left: -30px;
    padding-left: 40px;
}

@media screen and (max-width: 640px) {
    .sw-theme-arrows > .nav .nav-link {
        overflow: hidden;
        margin-bottom: 1px;
        margin-right: unset;
    }
}

.sw-theme-arrows > .nav .nav-link::after {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    top: 50%;
    left: 100%;
    margin-top: -50px;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 30px solid #f8f8f8;
    z-index: 2;
}

.sw-theme-arrows > .nav .nav-link::before {
    content: " ";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    top: 50%;
    left: 100%;
    margin-top: -50px;
    margin-left: 1px;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 30px solid #eeeeee;
    z-index: 1;
}

.sw-theme-arrows > .nav .nav-link.inactive {
    color: #999999;
    border-color: #f8f8f8;
    background: #f8f8f8;
    cursor: not-allowed;
}

.sw-theme-arrows > .nav .nav-link.active {
    color: #000000;
    border-color: #ffd100;
    background: #ffd100;
    cursor: pointer;
}

.sw-theme-arrows > .nav .nav-link.active::after {
    border-left-color: #ffd100;
}

.sw-theme-arrows > .nav .nav-link.done {
    color: #ffffff;
    border-color: #b19000;
    background: #b19000;
    cursor: pointer;
}

.sw-theme-arrows > .nav .nav-link.done::after {
    border-left-color: #b19000;
}

.sw-theme-arrows > .nav .nav-link.disabled {
    color: #eeeeee;
    border-color: #f9f9f9;
    background: #f9f9f9;
    cursor: not-allowed;
}

.sw-theme-arrows > .nav .nav-link.disabled::after {
    border-left-color: #f9f9f9;
}

.sw-theme-arrows > .nav .nav-link.danger {
    color: #ffffff;
    border-color: #d9534f;
    background: #d9534f;
    cursor: pointer;
}

.sw-theme-arrows > .nav .nav-link.danger::after {
    border-left-color: #d9534f;
}

.sw-theme-arrows.sw-dark {
    color: rgba(255, 255, 255, 0.95);
    background: #000;
}

.sw-theme-arrows.sw-dark > .nav {
    border-bottom: 1px solid #555555;
}

.sw-theme-arrows.sw-dark > .nav .nav-link::after {
    border-left: 30px solid #5f5f5f;
}

.sw-theme-arrows.sw-dark > .nav .nav-link::before {
    border-left: 30px solid #555555;
}

.sw-theme-arrows.sw-dark > .nav .nav-link.inactive {
    color: white;
    border-color: #5f5f5f;
    background: #5f5f5f;
}

.sw-theme-arrows.sw-dark > .nav .nav-link.inactive::after {
    border-left-color: #5f5f5f;
}

.sw-theme-arrows.sw-dark > .nav .nav-link.active {
    color: white;
    border-color: #010506;
    background: #0a2730;
}

.sw-theme-arrows.sw-dark > .nav .nav-link.active::after {
    border-left-color: #0a2730;
}

.sw-theme-arrows.sw-dark > .nav .nav-link.done {
    color: white;
    border-color: black;
    background: black;
}

.sw-theme-arrows.sw-dark > .nav .nav-link.done::after {
    border-left-color: black;
}

.sw-theme-arrows.sw-dark > .nav .nav-link.disabled {
    color: #555555 !important;
    border-color: #f9f9f9;
    background: #474747;
}

.sw-theme-arrows.sw-dark > .nav .nav-link.disabled::after {
    border-left-color: #474747;
}

.sw-theme-arrows.sw-dark > .nav .nav-link.danger {
    color: #ffffff;
    border-color: #d9534f;
    background: #d9534f;
}

.sw-theme-arrows.sw-dark > .nav .nav-link.danger::after {
    border-left-color: #d9534f;
}

input.new-check {
    cursor: default;
    appearance: auto;
    box-sizing: border-box;
    margin: 5px 5px 5px 5px;
    padding: initial;
    border: initial;
    height: 30px;
    width: 30px;
    border-color: #ffd100;
    background-color: #ffd100 !important; 
    position: absolute;
    float:left;
}
