﻿/*Generate report flow*/
.oig-wizard-stepper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--grey-500-color);
}

.oig-wizard-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0px 10px;
    color: var(--grey-500-color);
    font-size: 13px;
    line-height: 16px;
}

.oig-wizard-step__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    font-size: 16px;
    background: var(--grey-100-color);
    color: var(--grey-500-color);
}

.oig-wizard-step.is-active {
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color)
}

.oig-wizard-step.is-active .oig-wizard-step__index {
    background: var(--primary-lightest-color);
    color: var(--primary-color);
}

.oig-wizard-step .oig-wizard-step__label {
    font-size: 14px;
}

.oig-dialog-body:has(.oig-wizard-stepper.generate-report) .oig-dialog-content .component-instructions-container .component-description {
    margin-top: 10px;
}