/*
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}*/

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

:root {
    --vz-vertical-menu-hover-and-active: #6674A1;
    --vz-vertical-menu-hover-and-active-dark: #32373D;
}

.navbar-menu .navbar-nav .nav-sm {
    padding-left: 0;
}

.form-switch input[type="checkbox"]:not(:checked) + span:before {
    content: attr(data-off);
}

.form-switch input[type="checkbox"]:checked + span:before {
    content: attr(data-on);
}

/* light mode nav menu styling */

/*main menu item vertical line when active*/
/*[data-layout=vertical][data-sidebar=dark][data-layout-mode=light] .navbar-nav .nav-link[data-bs-toggle=collapse][aria-expanded=true]:not(.active) + .collapse.show + .nav-item > .nav-link.active::before,
[data-layout=vertical][data-sidebar=dark][data-layout-mode=light] .navbar-nav .nav-link[data-bs-toggle=collapse][aria-expanded=true].active::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 4px;
    background-color: #ffd800;
}*/

/*main menu item background-colour when active*/
[data-layout=vertical][data-sidebar=dark][data-layout-mode=light] .navbar-nav .nav-link[data-bs-toggle=collapse][aria-expanded=true]:not(.active) + .collapse.show + .nav-item > .nav-link.active,
[data-layout=vertical][data-sidebar=dark][data-layout-mode=light] .navbar-nav .nav-link[data-bs-toggle=collapse][aria-expanded=true].active {
    background-color: var(--vz-vertical-menu-hover-and-active);
}

/*sub menu item background-colour when active*/
[data-layout=vertical][data-sidebar=dark][data-layout-mode=light] .navbar-nav .nav-sm .nav-link.active {
    background-color: var(--vz-vertical-menu-hover-and-active);
}

/*main menu item when the menu is closed but there is an active tab inside of it background-colour*/
[data-layout=vertical][data-sidebar=dark][data-layout-mode=light] .navbar-nav .nav-link.active {
    background-color: var(--vz-vertical-menu-hover-and-active);
}

/*all menu items hover background colour*/
[data-layout-mode=light] .nav-link:not(.active):hover {
    background-color: var(--vz-vertical-menu-hover-and-active);
    color: #fff !important;
}

/* dark mode nav menu styling */

/*main menu item vertical line when active*/
[data-layout=vertical][data-sidebar=dark][data-layout-mode=dark] .navbar-nav .nav-link[data-bs-toggle=collapse][aria-expanded=true]:not(.active) + .collapse.show + .nav-item > .nav-link.active::before,
[data-layout=vertical][data-sidebar=dark][data-layout-mode=dark] .navbar-nav .nav-link[data-bs-toggle=collapse][aria-expanded=true].active::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 4px;
    background-color: #fff;
}

/*main menu item background-colour when active*/
[data-layout=vertical][data-sidebar=dark][data-layout-mode=dark] .navbar-nav .nav-link[data-bs-toggle=collapse][aria-expanded=true]:not(.active) + .collapse.show + .nav-item > .nav-link.active,
[data-layout=vertical][data-sidebar=dark][data-layout-mode=dark] .navbar-nav .nav-link[data-bs-toggle=collapse][aria-expanded=true].active {
    background-color: var(--vz-vertical-menu-hover-and-active-dark);
}

/*sub menu item background-colour when active*/
[data-layout=vertical][data-sidebar=dark][data-layout-mode=dark] .navbar-nav .nav-sm .nav-link.active {
    background-color: var(--vz-vertical-menu-hover-and-active-dark);
}

/*main menu item when the menu is closed but there is an active tab inside of it background-colour*/
[data-layout=vertical][data-sidebar=dark][data-layout-mode=dark] .navbar-nav .nav-link.active {
    background-color: var(--vz-vertical-menu-hover-and-active-dark);
}

    /*main menu item when the menu is closed but there is an active tab inside of it - vertical line*/
    [data-layout=vertical][data-sidebar=dark][data-layout-mode=dark] .navbar-nav .nav-link.active:before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 4px;
        background-color: #fff !important;
    }

/*all menu items hover background colour*/
[data-layout-mode=dark] .nav-link:not(.active):hover {
    background-color: var(--vz-vertical-menu-hover-and-active-dark);
    color: #fff !important;
}

    /*all menu items hover vertical line*/
    [data-layout-mode=dark] .nav-link:not(.active):hover:before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 4px;
        background-color: #fff !important;
    }

.page-title-left {
    flex: 1;
    margin-left: 10px;
}

.navbar-menu .navbar-nav .nav-sm .nav-link:before {
    transition: none;
    width: auto;
}

/* Phase 7 wizard progress partial - Views/Onboard/_WizardSteps.cshtml */
.wizard-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}
.wizard-steps .wizard-step {
    flex: 1;
    text-align: center;
    padding: 0.5rem 0.25rem;
    border-bottom: 3px solid transparent;
    color: #888;
}
.wizard-steps .wizard-step.done {
    color: #198754;
    border-bottom-color: #198754;
}
.wizard-steps .wizard-step.current {
    color: #0d6efd;
    border-bottom-color: #0d6efd;
    font-weight: 600;
}
.wizard-steps .wizard-step.pending {
    color: #adb5bd;
}
.wizard-steps .wizard-step-num {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    line-height: 1.5rem;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.05);
    margin-right: 0.5rem;
}
.wizard-steps .wizard-step.current .wizard-step-num {
    background-color: #cfe2ff;
}
.wizard-steps .wizard-step.done .wizard-step-num {
    background-color: #d1e7dd;
}
