/* === Form Wizard === */

.j-form-wizard-nav {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    padding: 14px 20px;
    background: #f4f4f4;
    border-radius: 6px;
}

.j-form-wizard-step {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    transition: opacity 0.2s;
    cursor: pointer;
}

.j-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #d9e1e4;
    color: #666;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}

.j-step-title {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.j-form-wizard-step.active {
    opacity: 1;
}

.j-form-wizard-step.active .j-step-num {
    background: var(--primary-base-color, #17a2b8);
    color: #fff;
}

.j-form-wizard-step.completed {
    opacity: 0.75;
}

.j-form-wizard-step.completed .j-step-num {
    background: #74b31b;
    color: #fff;
    font-size: 0;
}

.j-form-wizard-step.completed .j-step-num::after {
    content: '✓';
    font-size: 13px;
}

.j-form-wizard-sep {
    flex: 1;
    height: 1px;
    background: #e8edef;
    margin: 0 8px;
    min-width: 10px;
}

@media (max-width: 767px) {
    .j-form-wizard-nav {
        padding: 10px 14px;
        margin-bottom: 16px;
    }
}

#j-i-form.c-form-creation.c-form-creation-base .j-title-block.form-row:has(#j-i-title[name=title]) {
    display: none;
}

.j-cat-select-popup {
    display: block !important;
}
.wb-f-filter.wb-f-filter-showed.fc-popup.j-cat-select-step1, .wb-f-filter.wb-f-filter-showed.fc-popup.j-cat-select-step2 {
    position: relative !important;
}

.wb-f-filter.wb-f-filter-showed.fc-popup.j-cat-select-step1, .wb-f-filter.wb-f-filter-showed.fc-popup.j-cat-select-step2 {
    box-shadow: none;
    margin-top: 20px;
}