.jquery-steps {
    margin-top: 12px;
}

.jquery-steps .hidden {
    display: none;
}

.jquery-steps > .steps {
    margin-bottom: 0;
}

.jquery-steps > .steps ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.jquery-steps > .steps li {
    list-style: none;
    margin: 0;
}

.jquery-steps > .steps li a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 14px;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.15);
    transition: background 0.15s ease, color 0.15s ease;
}

.jquery-steps > .steps li a:hover {
    background: rgba(0, 0, 0, 0.22);
    color: #fff;
}

.jquery-steps > .steps li.current a {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.12);
    border-bottom-color: #fff;
    color: #2f343a;
    font-weight: 700;
}

.jquery-steps > .steps li.done a {
    background: rgba(0, 0, 0, 0.08);
    color: rgba(255, 255, 255, 0.9);
}

.jquery-steps > .steps li.disabled a {
    opacity: 0.45;
    cursor: default;
    pointer-events: none;
}

.jquery-steps > .content {
    margin-top: -1px;
    padding: 20px;
    border: 1px solid #dcdcde;
    background: #fff;
}

.jquery-steps > .content > .body {
    margin: 0;
}

.jquery-steps > .actions {
    margin-top: 16px;
}

.jquery-steps > .actions ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.jquery-steps > .actions li {
    list-style: none;
    margin: 0;
}

.jquery-steps > .actions li.disabled a {
    opacity: 0.55;
    pointer-events: none;
}

.jquery-steps > .actions li a {
    min-width: 120px;
    text-align: center;
}

@media (max-width: 782px) {
    .jquery-steps > .steps ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .jquery-steps > .steps li a {
        width: 100%;
        justify-content: center;
        border-radius: 4px;
    }

    .jquery-steps > .content {
        margin-top: 12px;
    }
}
