.block-list-ingredients {
    list-style: none;
    padding: 0;
}

.block-list-ingredients li {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 6px 0;
    user-select: none;
    
    &::before {
        content: '';
        display: block;
        width: 20px;
        height: 20px;
        min-width: 20px;
        border: 2px solid var(--wp--preset--color--primary);
        border-radius: 4px;
        background-color: #fff;
        transition: all 0.2s ease-in-out;
    }
    
    &.checked::before {
        background-color: #E50041;
        border-color: #E50041;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
    }
    
    &.checked {
    	color: var(--wp--preset--color--text);
        text-decoration: line-through;
    }
}
