/*only authorized personel are allow to make changes in this file*/
:root {
    --stepper-active: #86bf3a;
    --stepper-done: #86bf3a;
    --stepper-done-connector: #86bf3a;
    --stepper-disabled: #e1eaea;
}

.active-section {
    display: inline-block;
    z-index: 99;
}

.hidden-section {
    display: none;
    z-index: 1;
}

.stepper {
    margin-top: 10vh;
    min-width: 246px !important;
}

.stepper-container {
    display: flex;
    flex-direction: column;
    min-width: 246px !important;
}

.stepper-item {
    display: flex;
    flex-direction: column;
}

.theme-wizard .nav-item:not(:last-child) .nav-link::before {
    content: "" !important;
    height: 100% !important;
    width: 2px !important;
    position: absolute !important;
    left: 4.5% !important;
    top: 48% !important;
    background: rgba(var(--phoenix-quaternary-bg-rgb), 0.8);
}

.theme-wizard .nav-item .nav-link.active .nav-item-circle {
    color: var(--stepper-active) !important;
    border-color: var(--stepper-active) !important;
}

.theme-wizard .nav-item .nav-link.active {
    color: var(--stepper-active) !important;
}

.theme-wizard .nav-item:not(:last-child) .nav-link.done::before {
    --phoenix-theme-wizard-active-color: var(--stepper-done-connector) !important;
}


.theme-wizard .nav-item .nav-link.done {
    color: var(--stepper-done) !important;
}

.theme-wizard .nav-item .nav-link.done .nav-item-circle {
    --phoenix-theme-wizard-complete-color: var(--stepper-done) !important;
}

@media (max-width: 768px) {
    .stepper {
        display: none !important;
    }

    .summary {
        display: none !important;
    }

    .sideInfo {
        display: none !important;
    }
}

@media (min-width: 1338px) and (max-width: 1565px) {
    .theme-wizard .nav-item:not(:last-child) .nav-link::before {
        left: 5.5% !important;
    }
}

@media (max-width: 1338px) {
    .theme-wizard .nav-item:not(:last-child) .nav-link::before {
        left: 6.5% !important;
    }
}

@media (min-width: 1780px){
    .theme-wizard .nav-item:not(:last-child) .nav-link::before {
        left: 4% !important;
    }
}

.step-hidden{
    display: none;
}

.step-line-hidden::before{
    display: none;
}

.stepper-disabled{
    --stepper-active: var(--stepper-disabled);
    --stepper-done: var(--stepper-disabled);
    --stepper-done-connector: var(--stepper-disabled);
}

.theme-wizard.stepper-disabled .nav-item .nav-link .nav-item-circle {
    color: var(--stepper-disabled) !important;
    border-color: var(--stepper-disabled) !important;
}

.theme-wizard.stepper-disabled .nav-item .nav-link .nav-item-title {
    color: var(--stepper-disabled) !important;
}

.theme-wizard.stepper-disabled .nav-item:not(:last-child) .nav-link::before {
    background: var(--stepper-disabled) !important;
}