```css
div.mobile-note {
  position: fixed;
  top: 96px;
  left: 0px;
  transform: none;
}
```
### line_item.properties
- **.\_addon\_variants** list of variant IDs
- **.\_addon\_parent\_variant** matches the ID of the variant this addon is bundled to

*headset product ID should have a special case where it only shows the variant title, not product title*


```js
function getFrameUrl(i) {
  return `https://cdn.shopify.com/s/files/1/0643/5169/9161/files/optic_animation_${i}.webp`;
}

const frameCount = 49;
let images = [];

// Preload frames
for (let i = 1; i <= frameCount; i++) {
    const img = new Image();
    img.src = getFrameUrl(i);
    images.push(img);
}
```

```html
<img src='https://www.bigscreenvr.com/images/logos/bigscreen.svg'
  width='134' height='30'
  sizes='(max-width: 991px) 134px, 192px'>    
```
