.inventory-method-chips {
    --chip-blue: #e17200;
    --chip-border: #e6e6e6;
    --chip-bg: #ffffff;
    --chip-check-bg: #ffffff;
    --chip-text: #0f172a;
    --chip-focus-ring: #884603;
}

.inventory-method-chips .fi-fo-checkbox-list-options {
    display: grid;
    gap: 0.9rem;
}

.inventory-method-chips .fi-fo-checkbox-list-option-ctn {
    width: 100%;
    padding-top: 10px;
}

.inventory-method-chips .fi-fo-checkbox-list-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    min-height: 40px;
    padding: 2px 0.7rem;
    border: 2px solid var(--chip-border);
    border-radius: 7px;
    background: var(--chip-bg);
    color: var(--chip-text);
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.inventory-method-chips .fi-fo-checkbox-list-option:hover {
    border-color: #9fbac4;
}

.inventory-method-chips .fi-fo-checkbox-list-option:has(input:checked) {
    border-color: var(--chip-blue);
    background: var(--chip-blue);
}

.inventory-method-chips .fi-fo-checkbox-list-option:has(input:focus-visible) {
    outline: none;
    box-shadow: 0 0 0 4px var(--chip-focus-ring);
}

.inventory-method-chips .fi-fo-checkbox-list-option .fi-checkbox-input {
    width: 1.55rem;
    height: 1.55rem;
    margin: 0;
    flex: 0 0 1.55rem;
    border: 2px solid var(--chip-border);
    border-radius: 0.45rem;
    background: transparent;
    box-shadow: none;
}

.inventory-method-chips .fi-fo-checkbox-list-option .fi-checkbox-input:checked {
    border-color: var(--chip-check-bg);
    background-color: var(--chip-check-bg);
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%231492e6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0z'/%3E%3C/svg%3E");
    background-size: 62%;
    background-position: center;
    background-repeat: no-repeat;
}

.inventory-method-chips .fi-fo-checkbox-list-option .fi-checkbox-input:focus {
    box-shadow: none;
}

.inventory-method-chips .fi-fo-checkbox-list-option .fi-fo-checkbox-list-option-text {
    min-width: 0;
}

.inventory-method-chips .fi-fo-checkbox-list-option .fi-fo-checkbox-list-option-label {
    color: var(--chip-text);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
}

.inventory-method-chips .fi-fo-checkbox-list-option:has(input:checked) .fi-fo-checkbox-list-option-label {
    color: #ffffff;
}

.inventory-method-chips .fi-fo-checkbox-list-option-description {
    display: none;
}

@media (max-width: 640px) {
    .inventory-method-chips .fi-fo-checkbox-list-option {
        min-height: 2.75rem;
        padding: 0.4rem 0.62rem;
        gap: 0.6rem;
    }

    .inventory-method-chips .fi-fo-checkbox-list-option .fi-checkbox-input {
        width: 1.35rem;
        height: 1.35rem;
        flex-basis: 1.35rem;
    }
}

.inventory-rule-heading {
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 0.4rem;
    margin-bottom: 0.1rem;
    border-bottom: 1px solid rgb(226 232 240);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.25;
    color:rgb(225 114 0);
}

.inventory-rule-heading::before,
.inventory-rule-heading::after {
    content: '';
    position: absolute;
    bottom: -2px;
    width: 4px;
    height: 4px;
    border-radius: 9999px;
    background: rgb(226 232 240);
}

.inventory-rule-heading::before {
    left: 0;
}

.inventory-rule-heading::after {
    right: 0;
}

.inventory-rule-heading--spaced {
    margin-top: 0.5rem;
}
