FlowPlay Docs

FlowPlay+ Docs

This page introduces FlowPlay, explains how it works and describes how to use it.
All development work should use the production script shown below.
You can always contact us for help.

Upgrade to Flowplay+

For just $8/month, you get access to all these features and more!
Use code UPGRADE10 on checkout to get a 10% discount!
Get Flowplay+ now

Unlimited Flowplay instances

Support for Vimeo & Youtube videos

Keyboard shortcuts

Draggable video track

Custom thumbnails

Preview thumbnail on track

Access to all new features

Priority Slack support

Production Script

Flowplay Basic

<script src="https://cdn.jsdelivr.net/gh/videsigns/webflow-tools@latest/Media%20Player/flowplay.js"></script>
    

⭐️  Click on the script to copy

Flowplay+

<script src="https://cdn.jsdelivr.net/gh/videsigns/webflow-tools@latest/Media%20Player/flowplayplus.js"></script>
    

⭐️  Click on the script to copy

Select video type

Webflow structure for HTML video

html-wrapper
f-data-video = wrapper
html-video-embed
f-data-video = video-element
video-control-wrapper
video-play-button
f-data-video = play-button
video-pause-button
f-data-video = pause-button
video-track-wrapper
video-track
f-data-video = progress-bar
video-progress-bar
f-data-video = progress
video-time-wrapper
video-current-time
f-data-video = current-time
video-duration
f-data-video = duration
settings-dropdown
dropdown-toggle
dropdown-list
speed-dropdown
dropdown-toggle
dropdown-list
speed-item
f-data-video-speed = 0.5
speed-item
f-data-video-speed = 1
speed-item
f-data-video-speed = 1.25
This is a live demo. Click play!
Radiation Belt Storm Probes Launch
NASA
00:00
 / 
00:00

⭐️ Hover over the starred items

HTML embed

1. Add a HTML embed into the wrapper element.

2. Paste in the HTML video tag

3. Add your video source URL inside the src="<link-goes-here>"

4. Add data-video="video-element" inside your <video>


<video class="video" f-data-video="video-element" playsinline>
    <source f-data-video-src-quality="560p" src="source-1-link"/>
    <source f-data-video-src-quality="720p" src="source-2-link"/>
    <source f-data-video-src-quality="1080p" src="source-3-link"/>   
</video>

💡 Click on the code to copy it to clipboard

Where should I host my videos to use in my HTML Embed?

No, Flowplay does not host your videos.

To host your videos, you will need to utilize third-party services such as AWS, Github, Sproutvideo, or others.

At ViDesigns we use Github for videos <25mb and AWS for videos >25mb.

How to use Github to host videos
How to use AWS to host videos (Advanced)


Streamable is a quick and easy way to host your video files and get a MP4 URL. You will need a Basic plan to get a MP4 URL. More info here.

Vimeo does provide direct mp4 links to your videos if you are on the Pro, Business, Premium, Standard, Advanced, or Enterprise plan. More info here.

For more information on how to host your videos, you can refer to this guide provided by Webflow.

Essential Video Attributes

These two attributes are essential for Flowplay to work.

video Player Wrapper

f-data-video
=
wrapper

inside the <video> Tag

f-data-video
=
video-element

💡 Click on the attributes to copy them to clipboard

Playback control attributes

To add custom playback controls on your HTML videos.

Play button

f-data-video
=
play-button
Add this to any Button or Div Block

Pause button

f-data-video
=
pause-button
Add this to any Button or Div Block

Replay button

f-data-video
=
replay-button
Add this to any Button or Div Block

Seek forward button

f-data-video
=
forward-button
Add this to any Button or Div Block

Seek backwards button

f-data-video
=
backward-button
Add this to any Button or Div Block

Fullscreen

f-data-video
=
fullscreen
Add this to any Button or Div Block

Progress Bar + Indicator

f-data-video
=
progress-bar
f-data-video
=
progress
Add this to any Button or Div Block

Buffer bar

f-data-video
=
loading
Add this to any Button or Div Block

Video current Time + Duration

f-data-video
=
current-time
f-data-video
=
duration
Add this to any Text Block or Text Span

Powerup Attributes

Extra features to level up your HTML videos.

volume range

Volume Range Slider

f-data-video
=
volume-slider

Add this to the HTML range slider embed

Volume Level text

f-data-video
=
volume-text

Add this to any text block

💡 Use a HTML range input

Please note: Volume control of the HTML element doesn't affect on IOS device.
Classic Apple. Learn more here.

Mute button

f-data-video
=
volume-button
Add this to any Button or Div Block
Please note that for the mute button to work, you need to add a volume slider inside the player.
It can be hidden but has to be present on with the correct attributes.

Video Speed

Video Speed Selector

f-data-video-speed
=
{speed}

The {speed} attribute value can indeed be set to any integer greater than 0. It offers you the flexibility to control the speed of your video.

Video Speed Text

f-data-video
=
speed-text

If you want to display the video speed, simply add this attribute to any text block or text span.

💡 Use a Dropdown element to contain your speed selectors

Video Quality

Add video Sources to embed


<video class="video" f-data-video="video-element" poster="posterURL">
    <source f-data-video-src-quality="560p" src="source-1-link"/>
    <source f-data-video-src-quality="720p" src="source-2-link"/>
    <source f-data-video-src-quality="1080p" src="source-3-link"/>   
</video>

f-data-video-src-quality
=
{name}

Video Quality Selector

f-data-video-quality
=
{name}

Make sure that the {name} attribute matches the value name assigned to your source links within the embed code.

Video Speed Text

f-data-video
=
quality-text

If you want to display the video quality text, add this to any text block or text span

💡 Use a Dropdown element to contain your quality selectors

Please note: This will not work on Vimeo and Youtube videos due to their API limitations.

Video Overlay Control

This is used when you want users to click on the player to play/pause.
Examples: Youtube, Vimeo, Netlfix

Overlay wrapper

f-data-video
=
poster-button

Overlay Play Icon

f-data-video
=
play-icon

Overlay Pause Icon

f-data-video
=
pause-icon

Show UI elements when paused

Add this attribute to elements you want to show when the video is paused but hide when video is playing.

Element to show/Hide

f-data-video
=
show-pause

Add this attribute to all elements you want to show when paused.

Show Combo Class

.show

This combo class is added to the UI element when video is paused.

custom thumbnail

Please note: This will display the thumbnail back when the video is paused.

Poster Thumbnail

f-data-video
=
poster

💡 You can use an Image element to give your videos a custom poster thumbnail.

Please note: This will display the thumbnail back when the video is paused.

show Thumbnail once

f-data-poster-once
=
true

💡 Add this to the Image element that has the f-data-video = poster attribute

This will only show the poster once, before the video is played and after that it won't appear.

Keyboard shortcut

Keyboard shortcut

f-data-video-shortcut
=
true

Add this to the Div Block with f-data-video=wrapper attribute

Hover Preview thumbnail

Webflow Setup

html-video-embed
f-data-video = video-element
video-control-wrapper
video-play-button
f-data-video = play-button
video-pause-button
f-data-video = pause-button
video-track-wrapper
video-track
f-data-video = progress-bar
video-progress-bar
f-data-video = progress
video-preview-thumbnail
thumbnail-embed
f-data-video = preview-wrapper

HTML Embed

f-data-video
=
preview-wrapper

Add this to the HTML Embed itself.

Inside the <video> tag

f-data-video
=
video-preview

<video class="video" f-data-video="video-preview" src="video-link.mp4"</video>

💡 Click on the code to copy it to clipboard

Components & Starter kits

Starter Kit #1

Copy this starter kit into your Webflow project
{"type":"@webflow/XscpData","payload":{"nodes":[{"_id":"17c33ff5-f408-eac7-7143-09c964d640bc","type":"Block","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70ade0"],"children":["17c33ff5-f408-eac7-7143-09c964d640bd","17c33ff5-f408-eac7-7143-09c964d640c0"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640bd","type":"Block","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70add6","7a4c66e2-8dab-161d-3a12-b5125d70adf4"],"children":[],"data":{"text":false,"tag":"div","displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"devlink":{"runtimeProps":{},"slot":""}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640c0","type":"Block","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70ada9"],"children":["17c33ff5-f408-eac7-7143-09c964d640c1","17c33ff5-f408-eac7-7143-09c964d640c2","17c33ff5-f408-eac7-7143-09c964d640c7","17c33ff5-f408-eac7-7143-09c964d6410b"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"wrapper"}],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":"video1"},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640c1","type":"HtmlEmbed","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adc4"],"children":[],"v":"<video class=\"video-player-style\" f-data-video=\"video-element\" playsinline>\n\n<source f-data-video-src-quality=\"720p\" \nsrc=\"https://s3.amazonaws.com/akamai.netstorage/HD_downloads/Orion_SM.mp4\">\n\n<source f-data-video-src-quality=\"1080p\" \nsrc=\"https://s3.amazonaws.com/akamai.netstorage/HD_downloads/rbsp_launch_1080p.mp4\n\">\n\n\n</video>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"meta":{"html":"<video class=\"video-player-style\" f-data-video=\"video-element\" playsinline>\n\n<source f-data-video-src-quality=\"720p\" \nsrc=\"https://s3.amazonaws.com/akamai.netstorage/HD_downloads/Orion_SM.mp4\">\n\n<source f-data-video-src-quality=\"1080p\" \nsrc=\"https://s3.amazonaws.com/akamai.netstorage/HD_downloads/rbsp_launch_1080p.mp4\n\">\n\n\n</video>","div":false,"iframe":false,"script":false,"compilable":false},"type":"html"},"displayName":"","attr":{"id":""},"xattr":[],"visibility":{"conditions":[]},"devlink":{"runtimeProps":{},"slot":""}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640c2","type":"Block","tag":"div","classes":["310c7ca3-45df-10c2-5e3e-c7307a4bdb9c","7a4c66e2-8dab-161d-3a12-b5125d70adb6","7a4c66e2-8dab-161d-3a12-b5125d70adfc"],"children":["17c33ff5-f408-eac7-7143-09c964d640c3","17c33ff5-f408-eac7-7143-09c964d640c5"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640c3","type":"Block","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70addd"],"children":["17c33ff5-f408-eac7-7143-09c964d640c4"],"data":{"search":{"exclude":false},"xattr":[],"text":true,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640c4","text":true,"v":"Radiation Belt Storm Probes Launch"},{"_id":"17c33ff5-f408-eac7-7143-09c964d640c5","type":"Block","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adad"],"children":["17c33ff5-f408-eac7-7143-09c964d640c6"],"data":{"search":{"exclude":false},"xattr":[],"text":true,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640c6","text":true,"v":"NASA"},{"_id":"17c33ff5-f408-eac7-7143-09c964d640c7","type":"Block","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adc1","7a4c66e2-8dab-161d-3a12-b5125d70ade7"],"children":["17c33ff5-f408-eac7-7143-09c964d640c8","17c33ff5-f408-eac7-7143-09c964d640cd","17c33ff5-f408-eac7-7143-09c964d640d8","17c33ff5-f408-eac7-7143-09c964d64103"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640c8","type":"Block","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adbf","7a4c66e2-8dab-161d-3a12-b5125d70aded"],"children":["17c33ff5-f408-eac7-7143-09c964d640c9","17c33ff5-f408-eac7-7143-09c964d640cc"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"style":{"base":{"small":{"noPseudo":{"gridColumnEnd":"span 1","gridColumnStart":"span 1","gridRowEnd":"span 1","gridRowStart":"span 1"}}}},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640c9","type":"Block","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adbc","7a4c66e2-8dab-161d-3a12-b5125d70ae03"],"children":["17c33ff5-f408-eac7-7143-09c964d640ca"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640ca","type":"Link","tag":"a","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adcd"],"children":["17c33ff5-f408-eac7-7143-09c964d640cb"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"volume-button"}],"block":"inline","displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"button":false,"link":{"mode":"external","url":"#"}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640cb","type":"HtmlEmbed","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adc5","7a4c66e2-8dab-161d-3a12-b5125d70adef"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\n  <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.5 7.86233C0.671573 7.86233 0 8.5339 0 9.36233V14.6383C0 15.4667 0.671574 16.1383 1.5 16.1383H5.51737L9.85343 20.4743C10.7984 21.4192 12.4141 20.75 12.4141 19.4136V4.58699C12.4141 3.25064 10.7984 2.58139 9.85343 3.52633L5.51737 7.86233H1.5ZM20.3897 5.59786C20.0774 5.28539 19.5708 5.28531 19.2584 5.59768C18.9459 5.91005 18.9458 6.41658 19.2582 6.72905C20.608 8.07926 21.3662 9.9103 21.3662 11.8195C21.3662 13.7287 20.608 15.5598 19.2582 16.91C18.9458 17.2224 18.9459 17.729 19.2584 18.0413C19.5708 18.3537 20.0774 18.3536 20.3897 18.0412C22.0395 16.3909 22.9662 14.153 22.9662 11.8195C22.9662 9.48605 22.0395 7.24812 20.3897 5.59786ZM17.5658 8.42189C17.2534 8.10942 16.7469 8.10934 16.4344 8.42171C16.1219 8.73407 16.1219 9.2406 16.4342 9.55307C17.0341 10.1532 17.3711 10.967 17.3711 11.8155C17.3711 12.6641 17.0341 13.4779 16.4342 14.0779C16.1219 14.3904 16.1219 14.8969 16.4344 15.2093C16.7469 15.5217 17.2534 15.5216 17.5658 15.2091C18.4656 14.309 18.9711 13.0883 18.9711 11.8155C18.9711 10.5427 18.4656 9.32203 17.5658 8.42189Z\" fill=\"currentColor\"/>\n</svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\n  <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.5 7.86233C0.671573 7.86233 0 8.5339 0 9.36233V14.6383C0 15.4667 0.671574 16.1383 1.5 16.1383H5.51737L9.85343 20.4743C10.7984 21.4192 12.4141 20.75 12.4141 19.4136V4.58699C12.4141 3.25064 10.7984 2.58139 9.85343 3.52633L5.51737 7.86233H1.5ZM20.3897 5.59786C20.0774 5.28539 19.5708 5.28531 19.2584 5.59768C18.9459 5.91005 18.9458 6.41658 19.2582 6.72905C20.608 8.07926 21.3662 9.9103 21.3662 11.8195C21.3662 13.7287 20.608 15.5598 19.2582 16.91C18.9458 17.2224 18.9459 17.729 19.2584 18.0413C19.5708 18.3537 20.0774 18.3536 20.3897 18.0412C22.0395 16.3909 22.9662 14.153 22.9662 11.8195C22.9662 9.48605 22.0395 7.24812 20.3897 5.59786ZM17.5658 8.42189C17.2534 8.10942 16.7469 8.10934 16.4344 8.42171C16.1219 8.73407 16.1219 9.2406 16.4342 9.55307C17.0341 10.1532 17.3711 10.967 17.3711 11.8155C17.3711 12.6641 17.0341 13.4779 16.4342 14.0779C16.1219 14.3904 16.1219 14.8969 16.4344 15.2093C16.7469 15.5217 17.2534 15.5216 17.5658 15.2091C18.4656 14.309 18.9711 13.0883 18.9711 11.8155C18.9711 10.5427 18.4656 9.32203 17.5658 8.42189Z\" fill=\"currentColor\"/>\n</svg>","div":false,"iframe":false,"script":false,"compilable":false},"type":"html"},"displayName":"","attr":{"id":""},"xattr":[],"visibility":{"conditions":[]},"devlink":{"runtimeProps":{},"slot":""}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640cc","type":"HtmlEmbed","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adb1"],"children":[],"v":"<input class=\"slider\" type=\"range\" f-data-video=\"volume-slider\" min=\"0\" max=\"1\" step=\"0.01\" value=\"0.5\">","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"meta":{"html":"<input class=\"slider\" type=\"range\" f-data-video=\"volume-slider\" min=\"0\" max=\"1\" step=\"0.01\" value=\"0.5\">","div":false,"iframe":false,"script":false,"compilable":false},"type":"html"},"displayName":"","attr":{"id":""},"xattr":[],"visibility":{"conditions":[]},"devlink":{"runtimeProps":{},"slot":""}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640cd","type":"Block","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adbf","7a4c66e2-8dab-161d-3a12-b5125d70adf2"],"children":["17c33ff5-f408-eac7-7143-09c964d640ce","17c33ff5-f408-eac7-7143-09c964d640d0","17c33ff5-f408-eac7-7143-09c964d640d2","17c33ff5-f408-eac7-7143-09c964d640d4","17c33ff5-f408-eac7-7143-09c964d640d6"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"style":{"base":{"small":{"noPseudo":{"gridColumnEnd":"span 1","gridColumnStart":"span 1","gridRowEnd":"span 1","gridRowStart":"span 1"}}}},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640ce","type":"Link","tag":"a","classes":["7a4c66e2-8dab-161d-3a12-b5125d70add3","7a4c66e2-8dab-161d-3a12-b5125d70adf9"],"children":["17c33ff5-f408-eac7-7143-09c964d640cf"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"replay-button"}],"block":"inline","displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[true]},"button":false,"link":{"mode":"external","url":"#"}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640cf","type":"HtmlEmbed","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adc5"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\">\n  <g clip-path=\"url(#clip0_45_692)\">\n    <path d=\"M5.98477 22.7035C7.6253 30.2968 15.0587 34.9521 22.5878 33.1014C30.1169 31.2506 34.8905 23.5946 33.25 16.0013C31.6095 8.40793 24.176 3.75263 16.6469 5.60339C12.3644 6.6561 8.97331 9.58701 7.14703 13.3163M5.38393 9.95937L6.48262 14.7846L11.4217 13.4453\" stroke=\"currentColor\" stroke-width=\"2.375\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n  </g>\n  <defs>\n    <clipPath id=\"clip0_45_692\">\n      <rect width=\"36\" height=\"36\" fill=\"white\"/>\n    </clipPath>\n  </defs>\n</svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"type":"html","meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\">\n  <g clip-path=\"url(#clip0_45_692)\">\n    <path d=\"M5.98477 22.7035C7.6253 30.2968 15.0587 34.9521 22.5878 33.1014C30.1169 31.2506 34.8905 23.5946 33.25 16.0013C31.6095 8.40793 24.176 3.75263 16.6469 5.60339C12.3644 6.6561 8.97331 9.58701 7.14703 13.3163M5.38393 9.95937L6.48262 14.7846L11.4217 13.4453\" stroke=\"currentColor\" stroke-width=\"2.375\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n  </g>\n  <defs>\n    <clipPath id=\"clip0_45_692\">\n      <rect width=\"36\" height=\"36\" fill=\"white\"/>\n    </clipPath>\n  </defs>\n</svg>","div":false,"iframe":false,"script":false,"compilable":false}},"displayName":"","attr":{"id":""},"xattr":[],"visibility":{"conditions":[]},"devlink":{"runtimeProps":{},"slot":""}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640d0","type":"Link","tag":"a","classes":["7a4c66e2-8dab-161d-3a12-b5125d70add3","7a4c66e2-8dab-161d-3a12-b5125d70adf9"],"children":["17c33ff5-f408-eac7-7143-09c964d640d1"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"backward-button"}],"block":"inline","displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"button":false,"link":{"mode":"external","url":"#"}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640d1","type":"HtmlEmbed","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adc5"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"32\" height=\"32\" preserveAspectRatio=\"xMidYMid meet\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M11.99 5V1l-5 5l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6s-6-2.69-6-6h-2c0 4.42 3.58 8 8 8s8-3.58 8-8s-3.58-8-8-8zm-1.1 11h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09V16zm4.28-1.76c0 .32-.03.6-.1.82s-.17.42-.29.57s-.28.26-.45.33s-.37.1-.59.1s-.41-.03-.59-.1s-.33-.18-.46-.33s-.23-.34-.3-.57s-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57s.28-.26.45-.33s.37-.1.59-.1s.41.03.59.1s.33.18.46.33s.23.34.3.57s.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31s-.11-.14-.19-.17s-.16-.05-.25-.05s-.18.02-.25.05s-.14.09-.19.17s-.09.18-.12.31s-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32s.11.14.19.17s.16.05.25.05s.18-.02.25-.05s.14-.09.19-.17s.09-.19.11-.32s.04-.29.04-.48v-.97z\"></path></svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"type":"html","meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"32\" height=\"32\" preserveAspectRatio=\"xMidYMid meet\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M11.99 5V1l-5 5l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6s-6-2.69-6-6h-2c0 4.42 3.58 8 8 8s8-3.58 8-8s-3.58-8-8-8zm-1.1 11h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09V16zm4.28-1.76c0 .32-.03.6-.1.82s-.17.42-.29.57s-.28.26-.45.33s-.37.1-.59.1s-.41-.03-.59-.1s-.33-.18-.46-.33s-.23-.34-.3-.57s-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57s.28-.26.45-.33s.37-.1.59-.1s.41.03.59.1s.33.18.46.33s.23.34.3.57s.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31s-.11-.14-.19-.17s-.16-.05-.25-.05s-.18.02-.25.05s-.14.09-.19.17s-.09.18-.12.31s-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32s.11.14.19.17s.16.05.25.05s.18-.02.25-.05s.14-.09.19-.17s.09-.19.11-.32s.04-.29.04-.48v-.97z\"></path></svg>","div":false,"iframe":false,"script":false,"compilable":false}},"displayName":"","attr":{"id":""},"xattr":[],"visibility":{"conditions":[]},"devlink":{"runtimeProps":{},"slot":""}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640d2","type":"Link","tag":"a","classes":["7a4c66e2-8dab-161d-3a12-b5125d70add3","7a4c66e2-8dab-161d-3a12-b5125d70adf9"],"children":["17c33ff5-f408-eac7-7143-09c964d640d3"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"play-button"}],"block":"inline","displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[true]},"button":false,"link":{"mode":"external","url":"#"}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640d3","type":"HtmlEmbed","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adc5"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\">\n  <path d=\"M7.5 7.2475C7.5 6.06075 8.81287 5.34399 9.81114 5.98573L26.5372 16.7382C27.4557 17.3287 27.4557 18.6713 26.5373 19.2618L9.81114 30.0143C8.81287 30.656 7.5 29.9393 7.5 28.7525V7.2475Z\" fill=\"currentColor\"/>\n</svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"type":"html","meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\">\n  <path d=\"M7.5 7.2475C7.5 6.06075 8.81287 5.34399 9.81114 5.98573L26.5372 16.7382C27.4557 17.3287 27.4557 18.6713 26.5373 19.2618L9.81114 30.0143C8.81287 30.656 7.5 29.9393 7.5 28.7525V7.2475Z\" fill=\"currentColor\"/>\n</svg>","div":false,"iframe":false,"script":false,"compilable":false}},"displayName":"","attr":{"id":""},"xattr":[],"visibility":{"conditions":[]},"devlink":{"runtimeProps":{},"slot":""}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640d4","type":"Link","tag":"a","classes":["7a4c66e2-8dab-161d-3a12-b5125d70add3","7a4c66e2-8dab-161d-3a12-b5125d70adf9"],"children":["17c33ff5-f408-eac7-7143-09c964d640d5"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"pause-button"}],"block":"inline","displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"button":false,"link":{"mode":"external","url":"#"}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640d5","type":"HtmlEmbed","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adc5"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\">\n  <path d=\"M21.4286 4.66667C21.4286 3.74619 22.1961 3 23.1429 3H28.2857C29.2325 3 30 3.74619 30 4.66667V31.3333C30 32.2538 29.2325 33 28.2857 33H23.1429C22.1961 33 21.4286 32.2538 21.4286 31.3333V4.66667Z\" fill=\"currentColor\"/>\n  <path d=\"M6 4.66667C6 3.74619 6.76751 3 7.71429 3H12.8571C13.8039 3 14.5714 3.74619 14.5714 4.66667V31.3333C14.5714 32.2538 13.8039 33 12.8571 33H7.71429C6.76751 33 6 32.2538 6 31.3333V4.66667Z\" fill=\"currentColor\"/>\n</svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"type":"html","meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\">\n  <path d=\"M21.4286 4.66667C21.4286 3.74619 22.1961 3 23.1429 3H28.2857C29.2325 3 30 3.74619 30 4.66667V31.3333C30 32.2538 29.2325 33 28.2857 33H23.1429C22.1961 33 21.4286 32.2538 21.4286 31.3333V4.66667Z\" fill=\"currentColor\"/>\n  <path d=\"M6 4.66667C6 3.74619 6.76751 3 7.71429 3H12.8571C13.8039 3 14.5714 3.74619 14.5714 4.66667V31.3333C14.5714 32.2538 13.8039 33 12.8571 33H7.71429C6.76751 33 6 32.2538 6 31.3333V4.66667Z\" fill=\"currentColor\"/>\n</svg>","div":false,"iframe":false,"script":false,"compilable":false}},"displayName":"","attr":{"id":""},"xattr":[],"visibility":{"conditions":[]},"devlink":{"runtimeProps":{},"slot":""}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640d6","type":"Link","tag":"a","classes":["7a4c66e2-8dab-161d-3a12-b5125d70add3"],"children":["17c33ff5-f408-eac7-7143-09c964d640d7"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"forward-button"}],"block":"inline","displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"button":false,"link":{"mode":"external","url":"#"}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640d7","type":"HtmlEmbed","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adc5"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"32\" height=\"32\" preserveAspectRatio=\"xMidYMid meet\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6s2.69-6 6-6v4l5-5l-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8s8-3.58 8-8h-2z\"></path><path fill=\"currentColor\" d=\"M10.9 16v-4.27h-.09l-1.77.63v.69l1.01-.31V16zm3.42-4.22c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1s-.33.18-.45.33s-.23.34-.29.57s-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57s.28.26.46.33s.37.1.59.1s.41-.03.59-.1s.33-.18.45-.33s.22-.34.29-.57s.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57s-.29-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32s-.11.14-.19.17s-.16.05-.25.05s-.18-.02-.25-.05s-.14-.09-.19-.17s-.09-.19-.12-.32s-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31s.11-.14.19-.17s.16-.05.25-.05s.18.02.25.05s.14.09.19.17s.09.18.12.31s.04.29.04.48v.97z\"></path></svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"type":"html","meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"32\" height=\"32\" preserveAspectRatio=\"xMidYMid meet\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6s2.69-6 6-6v4l5-5l-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8s8-3.58 8-8h-2z\"></path><path fill=\"currentColor\" d=\"M10.9 16v-4.27h-.09l-1.77.63v.69l1.01-.31V16zm3.42-4.22c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1s-.33.18-.45.33s-.23.34-.29.57s-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57s.28.26.46.33s.37.1.59.1s.41-.03.59-.1s.33-.18.45-.33s.22-.34.29-.57s.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57s-.29-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32s-.11.14-.19.17s-.16.05-.25.05s-.18-.02-.25-.05s-.14-.09-.19-.17s-.09-.19-.12-.32s-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31s.11-.14.19-.17s.16-.05.25-.05s.18.02.25.05s.14.09.19.17s.09.18.12.31s.04.29.04.48v.97z\"></path></svg>","div":false,"iframe":false,"script":false,"compilable":false}},"displayName":"","attr":{"id":""},"xattr":[],"visibility":{"conditions":[]},"devlink":{"runtimeProps":{},"slot":""}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640d8","type":"Block","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adbf","7a4c66e2-8dab-161d-3a12-b5125d70ade2"],"children":["17c33ff5-f408-eac7-7143-09c964d640d9","17c33ff5-f408-eac7-7143-09c964d640da","17c33ff5-f408-eac7-7143-09c964d640dd","17c33ff5-f408-eac7-7143-09c964d640e2"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"style":{"base":{"small":{"noPseudo":{"gridColumnEnd":"span 1","gridColumnStart":"span 1","gridRowEnd":"span 1","gridRowStart":"span 1"}}}},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640d9","type":"Block","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adbc","7a4c66e2-8dab-161d-3a12-b5125d70ae03"],"children":[],"data":{"text":false,"tag":"div","displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"devlink":{"runtimeProps":{},"slot":""}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640da","type":"Block","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70addb"],"children":["17c33ff5-f408-eac7-7143-09c964d640db","17c33ff5-f408-eac7-7143-09c964d640dc"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640db","type":"HtmlEmbed","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70add4"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\n  <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.5 7.86233C0.671573 7.86233 0 8.5339 0 9.36233V14.6383C0 15.4667 0.671574 16.1383 1.5 16.1383H5.51737L9.85343 20.4743C10.7984 21.4192 12.4141 20.75 12.4141 19.4136V4.58699C12.4141 3.25064 10.7984 2.58139 9.85343 3.52633L5.51737 7.86233H1.5ZM20.3897 5.59786C20.0774 5.28539 19.5708 5.28531 19.2584 5.59768C18.9459 5.91005 18.9458 6.41658 19.2582 6.72905C20.608 8.07926 21.3662 9.9103 21.3662 11.8195C21.3662 13.7287 20.608 15.5598 19.2582 16.91C18.9458 17.2224 18.9459 17.729 19.2584 18.0413C19.5708 18.3537 20.0774 18.3536 20.3897 18.0412C22.0395 16.3909 22.9662 14.153 22.9662 11.8195C22.9662 9.48605 22.0395 7.24812 20.3897 5.59786ZM17.5658 8.42189C17.2534 8.10942 16.7469 8.10934 16.4344 8.42171C16.1219 8.73407 16.1219 9.2406 16.4342 9.55307C17.0341 10.1532 17.3711 10.967 17.3711 11.8155C17.3711 12.6641 17.0341 13.4779 16.4342 14.0779C16.1219 14.3904 16.1219 14.8969 16.4344 15.2093C16.7469 15.5217 17.2534 15.5216 17.5658 15.2091C18.4656 14.309 18.9711 13.0883 18.9711 11.8155C18.9711 10.5427 18.4656 9.32203 17.5658 8.42189Z\" fill=\"currentColor\"/>\n</svg>","data":{"insideRTE":false,"search":{"exclude":true},"xattr":[{"name":"data-video","value":"volume-btn"}],"embed":{"type":"html","meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\n  <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.5 7.86233C0.671573 7.86233 0 8.5339 0 9.36233V14.6383C0 15.4667 0.671574 16.1383 1.5 16.1383H5.51737L9.85343 20.4743C10.7984 21.4192 12.4141 20.75 12.4141 19.4136V4.58699C12.4141 3.25064 10.7984 2.58139 9.85343 3.52633L5.51737 7.86233H1.5ZM20.3897 5.59786C20.0774 5.28539 19.5708 5.28531 19.2584 5.59768C18.9459 5.91005 18.9458 6.41658 19.2582 6.72905C20.608 8.07926 21.3662 9.9103 21.3662 11.8195C21.3662 13.7287 20.608 15.5598 19.2582 16.91C18.9458 17.2224 18.9459 17.729 19.2584 18.0413C19.5708 18.3537 20.0774 18.3536 20.3897 18.0412C22.0395 16.3909 22.9662 14.153 22.9662 11.8195C22.9662 9.48605 22.0395 7.24812 20.3897 5.59786ZM17.5658 8.42189C17.2534 8.10942 16.7469 8.10934 16.4344 8.42171C16.1219 8.73407 16.1219 9.2406 16.4342 9.55307C17.0341 10.1532 17.3711 10.967 17.3711 11.8155C17.3711 12.6641 17.0341 13.4779 16.4342 14.0779C16.1219 14.3904 16.1219 14.8969 16.4344 15.2093C16.7469 15.5217 17.2534 15.5216 17.5658 15.2091C18.4656 14.309 18.9711 13.0883 18.9711 11.8155C18.9711 10.5427 18.4656 9.32203 17.5658 8.42189Z\" fill=\"currentColor\"/>\n</svg>","div":false,"iframe":false,"script":false,"compilable":false}},"displayName":"","attr":{"id":""},"visibility":{"conditions":[]},"devlink":{"runtimeProps":{},"slot":""}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640dc","type":"HtmlEmbed","tag":"div","classes":["2ceb9fd8-9566-0d03-349f-df3d77b909d6"],"children":[],"v":"<input type=\"range\" data-video=\"volume-slider\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.5\">","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"type":"html","meta":{"html":"<input type=\"range\" data-video=\"volume-slider\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.5\">","div":false,"iframe":false,"script":false,"compilable":false}},"displayName":"","attr":{"id":""},"xattr":[],"visibility":{"conditions":[]},"devlink":{"runtimeProps":{},"slot":""}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640dd","type":"Block","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adca"],"children":["17c33ff5-f408-eac7-7143-09c964d640de","17c33ff5-f408-eac7-7143-09c964d640e0"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640de","type":"Link","tag":"a","classes":["7a4c66e2-8dab-161d-3a12-b5125d70add3"],"children":["17c33ff5-f408-eac7-7143-09c964d640df"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"fullscreen"}],"block":"inline","displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[true]},"button":false,"link":{"mode":"external","url":"#"}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640df","type":"HtmlEmbed","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adc5","7a4c66e2-8dab-161d-3a12-b5125d70adef"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\n  <path d=\"M21.1667 2C21.6269 2 22 2.3731 22 2.83333V8.99707C22 9.54989 21.5518 9.99805 20.999 9.99805C20.4462 9.99805 19.998 9.54989 19.998 8.99707V5.41797L5.41797 19.998H8.99707C9.54989 19.998 9.99805 20.4462 9.99805 20.999C9.99805 21.5518 9.54989 22 8.99707 22H2.83333C2.3731 22 2 21.6269 2 21.1667V15.0029C2 14.4501 2.44815 14.002 3.00098 14.002C3.5538 14.002 4.00195 14.4501 4.00195 15.0029V18.582L18.582 4.00195H15.0029C14.4501 4.00195 14.002 3.5538 14.002 3.00098C14.002 2.44815 14.4501 2 15.0029 2H21.1667Z\" fill=\"currentColor\"/>\n</svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"type":"html","meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\n  <path d=\"M21.1667 2C21.6269 2 22 2.3731 22 2.83333V8.99707C22 9.54989 21.5518 9.99805 20.999 9.99805C20.4462 9.99805 19.998 9.54989 19.998 8.99707V5.41797L5.41797 19.998H8.99707C9.54989 19.998 9.99805 20.4462 9.99805 20.999C9.99805 21.5518 9.54989 22 8.99707 22H2.83333C2.3731 22 2 21.6269 2 21.1667V15.0029C2 14.4501 2.44815 14.002 3.00098 14.002C3.5538 14.002 4.00195 14.4501 4.00195 15.0029V18.582L18.582 4.00195H15.0029C14.4501 4.00195 14.002 3.5538 14.002 3.00098C14.002 2.44815 14.4501 2 15.0029 2H21.1667Z\" fill=\"currentColor\"/>\n</svg>","div":false,"iframe":false,"script":false,"compilable":false}},"displayName":"","attr":{"id":""},"xattr":[],"visibility":{"conditions":[]},"devlink":{"runtimeProps":{},"slot":""}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640e0","type":"Link","tag":"a","classes":["7a4c66e2-8dab-161d-3a12-b5125d70add3"],"children":["17c33ff5-f408-eac7-7143-09c964d640e1"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"minimize"}],"block":"inline","displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[true]},"button":false,"link":{"mode":"external","url":"#"}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640e1","type":"HtmlEmbed","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adc5","7a4c66e2-8dab-161d-3a12-b5125d70adef"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\n  <path d=\"M10.8885 12C11.1607 12 11.4234 12.0999 11.6268 12.2808C11.8302 12.4617 11.9601 12.7109 11.992 12.9812L11.9998 13.1112V18.6674C11.9994 18.9507 11.891 19.2231 11.6966 19.429C11.5021 19.635 11.2364 19.7589 10.9536 19.7755C10.6709 19.7921 10.3925 19.7001 10.1753 19.5183C9.95808 19.3366 9.8185 19.0787 9.78504 18.7974L9.77726 18.6674V15.7938L3.89544 21.6756C3.69546 21.8749 3.42712 21.9906 3.14492 21.9992C2.86272 22.0078 2.58782 21.9087 2.37606 21.722C2.16429 21.5352 2.03154 21.2749 2.00477 20.9938C1.97799 20.7128 2.0592 20.4321 2.2319 20.2087L2.32414 20.1043L8.20596 14.2225H5.33228C5.04905 14.2221 4.77662 14.1137 4.57067 13.9193C4.36471 13.7248 4.24078 13.4591 4.22418 13.1763C4.20758 12.8936 4.29957 12.6152 4.48136 12.398C4.66315 12.1808 4.92101 12.0412 5.20226 12.0078L5.33228 12H10.8885ZM20.1041 2.32439C20.304 2.12509 20.5724 2.00938 20.8546 2.00076C21.1368 1.99215 21.4117 2.09127 21.6235 2.27799C21.8352 2.46472 21.968 2.72505 21.9947 3.00611C22.0215 3.28716 21.9403 3.56788 21.7676 3.79123L21.6754 3.89568L15.7935 9.77749H18.6672C18.9505 9.7778 19.2229 9.88626 19.4288 10.0807C19.6348 10.2751 19.7587 10.5409 19.7753 10.8236C19.7919 11.1064 19.6999 11.3848 19.5182 11.602C19.3364 11.8192 19.0785 11.9587 18.7972 11.9922L18.6672 12H13.111C12.8388 11.9999 12.5761 11.9 12.3727 11.7191C12.1693 11.5383 12.0394 11.2891 12.0075 11.0187L11.9998 10.8887V5.33252C12.0001 5.04929 12.1085 4.77686 12.303 4.57091C12.4974 4.36496 12.7631 4.24102 13.0459 4.22442C13.3286 4.20782 13.607 4.29981 13.8242 4.4816C14.0414 4.66339 14.181 4.92125 14.2145 5.2025L14.2222 5.33252V8.20619L20.1041 2.32439Z\" fill=\"currentColor\"/>\n</svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"type":"html","meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\n  <path d=\"M10.8885 12C11.1607 12 11.4234 12.0999 11.6268 12.2808C11.8302 12.4617 11.9601 12.7109 11.992 12.9812L11.9998 13.1112V18.6674C11.9994 18.9507 11.891 19.2231 11.6966 19.429C11.5021 19.635 11.2364 19.7589 10.9536 19.7755C10.6709 19.7921 10.3925 19.7001 10.1753 19.5183C9.95808 19.3366 9.8185 19.0787 9.78504 18.7974L9.77726 18.6674V15.7938L3.89544 21.6756C3.69546 21.8749 3.42712 21.9906 3.14492 21.9992C2.86272 22.0078 2.58782 21.9087 2.37606 21.722C2.16429 21.5352 2.03154 21.2749 2.00477 20.9938C1.97799 20.7128 2.0592 20.4321 2.2319 20.2087L2.32414 20.1043L8.20596 14.2225H5.33228C5.04905 14.2221 4.77662 14.1137 4.57067 13.9193C4.36471 13.7248 4.24078 13.4591 4.22418 13.1763C4.20758 12.8936 4.29957 12.6152 4.48136 12.398C4.66315 12.1808 4.92101 12.0412 5.20226 12.0078L5.33228 12H10.8885ZM20.1041 2.32439C20.304 2.12509 20.5724 2.00938 20.8546 2.00076C21.1368 1.99215 21.4117 2.09127 21.6235 2.27799C21.8352 2.46472 21.968 2.72505 21.9947 3.00611C22.0215 3.28716 21.9403 3.56788 21.7676 3.79123L21.6754 3.89568L15.7935 9.77749H18.6672C18.9505 9.7778 19.2229 9.88626 19.4288 10.0807C19.6348 10.2751 19.7587 10.5409 19.7753 10.8236C19.7919 11.1064 19.6999 11.3848 19.5182 11.602C19.3364 11.8192 19.0785 11.9587 18.7972 11.9922L18.6672 12H13.111C12.8388 11.9999 12.5761 11.9 12.3727 11.7191C12.1693 11.5383 12.0394 11.2891 12.0075 11.0187L11.9998 10.8887V5.33252C12.0001 5.04929 12.1085 4.77686 12.303 4.57091C12.4974 4.36496 12.7631 4.24102 13.0459 4.22442C13.3286 4.20782 13.607 4.29981 13.8242 4.4816C14.0414 4.66339 14.181 4.92125 14.2145 5.2025L14.2222 5.33252V8.20619L20.1041 2.32439Z\" fill=\"currentColor\"/>\n</svg>","div":false,"iframe":false,"script":false,"compilable":false}},"displayName":"","attr":{"id":""},"xattr":[],"visibility":{"conditions":[]},"devlink":{"runtimeProps":{},"slot":""}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640e2","type":"Block","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70add3","7a4c66e2-8dab-161d-3a12-b5125d70adee"],"children":["17c33ff5-f408-eac7-7143-09c964d640e3"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640e3","type":"DropdownWrapper","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adae"],"children":["17c33ff5-f408-eac7-7143-09c964d640e4","17c33ff5-f408-eac7-7143-09c964d640e6"],"data":{"search":{"exclude":true},"xattr":[],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"wrapper"},"attr":{"data-delay":0,"data-hover":false,"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640e4","type":"DropdownToggle","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adb8"],"children":["17c33ff5-f408-eac7-7143-09c964d640e5"],"data":{"search":{"exclude":false},"xattr":[],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"toggle"},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640e5","type":"HtmlEmbed","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adc5","7a4c66e2-8dab-161d-3a12-b5125d70adef"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\n  <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.4001 3.59995C14.4001 4.92543 13.3256 5.99995 12.0001 5.99995C10.6746 5.99995 9.6001 4.92543 9.6001 3.59995C9.6001 2.27447 10.6746 1.19995 12.0001 1.19995C13.3256 1.19995 14.4001 2.27447 14.4001 3.59995ZM14.4001 12C14.4001 13.3254 13.3256 14.4 12.0001 14.4C10.6746 14.4 9.6001 13.3254 9.6001 12C9.6001 10.6745 10.6746 9.59995 12.0001 9.59995C13.3256 9.59995 14.4001 10.6745 14.4001 12ZM12.0001 22.7999C13.3256 22.7999 14.4001 21.7254 14.4001 20.4C14.4001 19.0745 13.3256 18 12.0001 18C10.6746 18 9.6001 19.0745 9.6001 20.4C9.6001 21.7254 10.6746 22.7999 12.0001 22.7999Z\" fill=\"currentColor\"/>\n</svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\n  <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.4001 3.59995C14.4001 4.92543 13.3256 5.99995 12.0001 5.99995C10.6746 5.99995 9.6001 4.92543 9.6001 3.59995C9.6001 2.27447 10.6746 1.19995 12.0001 1.19995C13.3256 1.19995 14.4001 2.27447 14.4001 3.59995ZM14.4001 12C14.4001 13.3254 13.3256 14.4 12.0001 14.4C10.6746 14.4 9.6001 13.3254 9.6001 12C9.6001 10.6745 10.6746 9.59995 12.0001 9.59995C13.3256 9.59995 14.4001 10.6745 14.4001 12ZM12.0001 22.7999C13.3256 22.7999 14.4001 21.7254 14.4001 20.4C14.4001 19.0745 13.3256 18 12.0001 18C10.6746 18 9.6001 19.0745 9.6001 20.4C9.6001 21.7254 10.6746 22.7999 12.0001 22.7999Z\" fill=\"currentColor\"/>\n</svg>","div":false,"iframe":false,"script":false,"compilable":false},"type":"html"},"displayName":"","attr":{"id":""},"xattr":[],"visibility":{"conditions":[]},"devlink":{"runtimeProps":{},"slot":""}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640e6","type":"DropdownList","tag":"nav","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adbb","7a4c66e2-8dab-161d-3a12-b5125d70adf5"],"children":["17c33ff5-f408-eac7-7143-09c964d640e7","17c33ff5-f408-eac7-7143-09c964d640f9"],"data":{"search":{"exclude":false},"xattr":[],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"list"},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"nav"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640e7","type":"DropdownWrapper","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70ada8","7a4c66e2-8dab-161d-3a12-b5125d70adff"],"children":["17c33ff5-f408-eac7-7143-09c964d640e8","17c33ff5-f408-eac7-7143-09c964d640ee"],"data":{"search":{"exclude":true},"xattr":[],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"wrapper"},"attr":{"data-delay":0,"data-hover":false,"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640e8","type":"DropdownToggle","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adba","7a4c66e2-8dab-161d-3a12-b5125d70ae06"],"children":["17c33ff5-f408-eac7-7143-09c964d640e9","17c33ff5-f408-eac7-7143-09c964d640eb","17c33ff5-f408-eac7-7143-09c964d640ed"],"data":{"search":{"exclude":false},"xattr":[],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"toggle"},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640e9","type":"Block","tag":"div","classes":[],"children":["17c33ff5-f408-eac7-7143-09c964d640ea"],"data":{"search":{"exclude":false},"xattr":[],"text":true,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640ea","text":true,"v":"Speed:  "},{"_id":"17c33ff5-f408-eac7-7143-09c964d640eb","type":"Block","tag":"div","classes":[],"children":["17c33ff5-f408-eac7-7143-09c964d640ec"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"speed-text"}],"text":true,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640ec","text":true,"v":"Normal"},{"_id":"17c33ff5-f408-eac7-7143-09c964d640ed","type":"HtmlEmbed","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adb2"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"24\" height=\"24\" preserveAspectRatio=\"xMidYMid meet\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"m10 17l5-5l-5-5v10z\"></path></svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"24\" height=\"24\" preserveAspectRatio=\"xMidYMid meet\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"m10 17l5-5l-5-5v10z\"></path></svg>","div":false,"script":false,"compilable":false,"iframe":false},"type":"html"},"displayName":"","attr":{"id":""},"xattr":[],"visibility":{"conditions":[]},"devlink":{"runtimeProps":{},"slot":""}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640ee","type":"DropdownList","tag":"nav","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adc7","7a4c66e2-8dab-161d-3a12-b5125d70ae00"],"children":["17c33ff5-f408-eac7-7143-09c964d640ef","17c33ff5-f408-eac7-7143-09c964d640f1","17c33ff5-f408-eac7-7143-09c964d640f3","17c33ff5-f408-eac7-7143-09c964d640f5","17c33ff5-f408-eac7-7143-09c964d640f7"],"data":{"search":{"exclude":false},"xattr":[],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"list"},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"nav"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640ef","type":"DropdownLink","tag":"a","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adc8","7a4c66e2-8dab-161d-3a12-b5125d70adf0"],"children":["17c33ff5-f408-eac7-7143-09c964d640f0"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video-speed","value":"0.5"}],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"link"},"attr":{"href":"#","id":""},"visibility":{"conditions":[]},"link":{"url":"#","mode":"external"}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640f0","text":true,"v":"0.5x"},{"_id":"17c33ff5-f408-eac7-7143-09c964d640f1","type":"DropdownLink","tag":"a","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adc8","7a4c66e2-8dab-161d-3a12-b5125d70adf0"],"children":["17c33ff5-f408-eac7-7143-09c964d640f2"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video-speed","value":"1"}],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"link"},"attr":{"href":"#","id":""},"visibility":{"conditions":[]},"link":{"url":"#","mode":"external"}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640f2","text":true,"v":"Normal (1x)"},{"_id":"17c33ff5-f408-eac7-7143-09c964d640f3","type":"DropdownLink","tag":"a","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adc8","7a4c66e2-8dab-161d-3a12-b5125d70adf0"],"children":["17c33ff5-f408-eac7-7143-09c964d640f4"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video-speed","value":"1.25"}],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"link"},"attr":{"href":"#","id":""},"visibility":{"conditions":[]},"link":{"url":"#","mode":"external"}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640f4","text":true,"v":"1.25x"},{"_id":"17c33ff5-f408-eac7-7143-09c964d640f5","type":"DropdownLink","tag":"a","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adc8","7a4c66e2-8dab-161d-3a12-b5125d70adf0"],"children":["17c33ff5-f408-eac7-7143-09c964d640f6"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video-speed","value":"1.5"}],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"link"},"attr":{"href":"#","id":""},"visibility":{"conditions":[]},"link":{"url":"#","mode":"external"}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640f6","text":true,"v":"1.5x"},{"_id":"17c33ff5-f408-eac7-7143-09c964d640f7","type":"DropdownLink","tag":"a","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adc8","7a4c66e2-8dab-161d-3a12-b5125d70adf0"],"children":["17c33ff5-f408-eac7-7143-09c964d640f8"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video-speed","value":"2"}],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"link"},"attr":{"href":"#","id":""},"visibility":{"conditions":[]},"link":{"url":"#","mode":"external"}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640f8","text":true,"v":"2x"},{"_id":"17c33ff5-f408-eac7-7143-09c964d640f9","type":"DropdownWrapper","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70ada8","7a4c66e2-8dab-161d-3a12-b5125d70adff"],"children":["17c33ff5-f408-eac7-7143-09c964d640fa","17c33ff5-f408-eac7-7143-09c964d64100"],"data":{"search":{"exclude":true},"xattr":[],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"wrapper"},"attr":{"data-delay":0,"data-hover":false,"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640fa","type":"DropdownToggle","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adba","7a4c66e2-8dab-161d-3a12-b5125d70ae06"],"children":["17c33ff5-f408-eac7-7143-09c964d640fb","17c33ff5-f408-eac7-7143-09c964d640fd","17c33ff5-f408-eac7-7143-09c964d640ff"],"data":{"search":{"exclude":false},"xattr":[],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"toggle"},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640fb","type":"Block","tag":"div","classes":[],"children":["17c33ff5-f408-eac7-7143-09c964d640fc"],"data":{"search":{"exclude":false},"xattr":[],"text":true,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640fc","text":true,"v":"Quality: "},{"_id":"17c33ff5-f408-eac7-7143-09c964d640fd","type":"Block","tag":"div","classes":[],"children":["17c33ff5-f408-eac7-7143-09c964d640fe"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"quality-text"}],"text":true,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d640fe","text":true,"v":"720p"},{"_id":"17c33ff5-f408-eac7-7143-09c964d640ff","type":"HtmlEmbed","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adb2"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"24\" height=\"24\" preserveAspectRatio=\"xMidYMid meet\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"m10 17l5-5l-5-5v10z\"></path></svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"24\" height=\"24\" preserveAspectRatio=\"xMidYMid meet\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"m10 17l5-5l-5-5v10z\"></path></svg>","div":false,"script":false,"compilable":false,"iframe":false},"type":"html"},"displayName":"","attr":{"id":""},"xattr":[],"visibility":{"conditions":[]},"devlink":{"runtimeProps":{},"slot":""}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d64100","type":"DropdownList","tag":"nav","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adc7","7a4c66e2-8dab-161d-3a12-b5125d70ae00"],"children":["17c33ff5-f408-eac7-7143-09c964d64101"],"data":{"search":{"exclude":false},"xattr":[],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"list"},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"nav"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d64101","type":"DropdownLink","tag":"a","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adc8","7a4c66e2-8dab-161d-3a12-b5125d70adf0"],"children":["17c33ff5-f408-eac7-7143-09c964d64102"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video-quality","value":"720p"}],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"link"},"attr":{"href":"#","id":""},"visibility":{"conditions":[]},"link":{"url":"#","mode":"external"}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d64102","text":true,"v":"720p"},{"_id":"17c33ff5-f408-eac7-7143-09c964d64103","type":"Block","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adda"],"children":["17c33ff5-f408-eac7-7143-09c964d64104","17c33ff5-f408-eac7-7143-09c964d64106","17c33ff5-f408-eac7-7143-09c964d64109"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"style":{"base":{"main":{"noPseudo":{"gridColumnStart":"span 3","gridColumnEnd":"span 3","gridRowStart":"span 1","gridRowEnd":"span 1"}},"small":{"noPseudo":{"gridColumnStart":"span 1","gridColumnEnd":"span 1","gridRowEnd":"span 1","gridRowStart":"span 1"}}}},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d64104","type":"Block","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adce"],"children":["17c33ff5-f408-eac7-7143-09c964d64105"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"current-time"}],"text":true,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d64105","text":true,"v":"00:00"},{"_id":"17c33ff5-f408-eac7-7143-09c964d64106","type":"Link","tag":"a","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adb0","7a4c66e2-8dab-161d-3a12-b5125d70ae05","7a4c66e2-8dab-161d-3a12-b5125d70ae08"],"children":["17c33ff5-f408-eac7-7143-09c964d64107","17c33ff5-f408-eac7-7143-09c964d64108"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"progress-bar"}],"block":"inline","displayName":"","devlink":{"runtimeProps":{},"slot":""},"style":{"base":{"main":{"noPseudo":{"justifySelf":"center"}}}},"attr":{"id":""},"visibility":{"conditions":[]},"button":false,"link":{"mode":"external","url":"#"}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d64107","type":"Block","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adcf","7a4c66e2-8dab-161d-3a12-b5125d70ade5"],"children":[],"data":{"xattr":[{"name":"f-data-video","value":"progress"}],"text":false,"tag":"div","displayName":"","attr":{"id":""},"search":{"exclude":false},"visibility":{"conditions":[]},"devlink":{"runtimeProps":{},"slot":""}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d64108","type":"Block","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70add1"],"children":[],"data":{"xattr":[{"name":"f-data-video","value":"loading"}],"text":false,"tag":"div","displayName":"","attr":{"id":""},"search":{"exclude":false},"visibility":{"conditions":[]},"devlink":{"runtimeProps":{},"slot":""}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d64109","type":"Block","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70adde","7a4c66e2-8dab-161d-3a12-b5125d70ae01"],"children":["17c33ff5-f408-eac7-7143-09c964d6410a"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"duration"}],"text":true,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"style":{"base":{"main":{"noPseudo":{"justifySelf":"end"}}}},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d6410a","text":true,"v":"00:00"},{"_id":"17c33ff5-f408-eac7-7143-09c964d6410b","type":"Block","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70addc","7a4c66e2-8dab-161d-3a12-b5125d70adfd"],"children":["17c33ff5-f408-eac7-7143-09c964d6410c","17c33ff5-f408-eac7-7143-09c964d64111"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"poster-button"}],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d6410c","type":"Link","tag":"a","classes":["7a4c66e2-8dab-161d-3a12-b5125d70ade1","7a4c66e2-8dab-161d-3a12-b5125d70adf3"],"children":["17c33ff5-f408-eac7-7143-09c964d6410d","17c33ff5-f408-eac7-7143-09c964d6410f"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"poster-button"}],"block":"inline","displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"button":false,"link":{"mode":"external","url":"#"}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d6410d","type":"Block","tag":"div","classes":[],"children":["17c33ff5-f408-eac7-7143-09c964d6410e"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"play-icon"}],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d6410e","type":"HtmlEmbed","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70add8"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"100%\" height=\"100%\" preserveAspectRatio=\"xMidYMid meet\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M8 5v14l11-7z\"></path></svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"type":"html","meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"100%\" height=\"100%\" preserveAspectRatio=\"xMidYMid meet\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M8 5v14l11-7z\"></path></svg>","div":false,"iframe":false,"script":false,"compilable":false}},"displayName":"","attr":{"id":""},"xattr":[],"visibility":{"conditions":[]},"devlink":{"runtimeProps":{},"slot":""}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d6410f","type":"Block","tag":"div","classes":[],"children":["17c33ff5-f408-eac7-7143-09c964d64110"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"pause-icon"}],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"17c33ff5-f408-eac7-7143-09c964d64110","type":"HtmlEmbed","tag":"div","classes":["7a4c66e2-8dab-161d-3a12-b5125d70add8"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"24\" height=\"24\" preserveAspectRatio=\"xMidYMid meet\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M6 5h4v14H6zm8 0h4v14h-4z\"></path></svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"type":"html","meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"24\" height=\"24\" preserveAspectRatio=\"xMidYMid meet\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M6 5h4v14H6zm8 0h4v14h-4z\"></path></svg>","div":false,"iframe":false,"script":false,"compilable":false}},"displayName":"","attr":{"id":""},"xattr":[],"visibility":{"conditions":[]},"devlink":{"runtimeProps":{},"slot":""}}},{"_id":"17c33ff5-f408-eac7-7143-09c964d64111","type":"Image","tag":"img","classes":["7a4c66e2-8dab-161d-3a12-b5125d70add5"],"children":[],"data":{"img":{"id":"64ee2d1164b28dcf6679f6f0","sizes":[{"max":479,"size":"92vw"},{"max":991,"size":"90vw"},{"max":10000,"size":"1080px"}]},"xattr":[{"name":"f-data-video","value":"poster"}],"attr":{"src":"https://assets-global.website-files.com/64ee2cd36c26463908188296/64ee2d1164b28dcf6679f6f0_TAL-northrop-grumman-antares-rocket-NASAROCKET0823-7eef1baaa5dd495a8424be38ae16a246.jpg","loading":"lazy","width":"auto","height":"auto","alt":"__wf_reserved_inherit","id":""},"displayName":"","search":{"exclude":false},"visibility":{"conditions":[]},"devlink":{"runtimeProps":{},"slot":""}}}],"styles":[{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adca","fake":false,"type":"class","name":"fullscreen","namespace":"","comb":"","styleLess":"display: flex;","variants":{"small":{"styleLess":"display: none;"}},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adf0","fake":false,"type":"class","name":"is-blurred","namespace":"","comb":"&","styleLess":"transition-property: background-color; transition-duration: 200ms; transition-timing-function: ease;","variants":{"main_hover":{"styleLess":"background-color: hsla(0, 0.00%, 100.00%, 0.05);"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adb1","fake":false,"type":"class","name":"video-volume-embed","namespace":"","comb":"","styleLess":"display: flex; transform: rotate(0deg);","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70addd","fake":false,"type":"class","name":"video-title","namespace":"","comb":"","styleLess":"color: hsla(0, 0.00%, 100.00%, 1.00); font-size: 1.375rem; line-height: 1.5; font-weight: 500;","variants":{"medium":{"styleLess":"font-size: 1.2rem;"},"small":{"styleLess":"font-size: 1.1rem;"},"tiny":{"styleLess":"font-size: 0.9rem;"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adff","fake":false,"type":"class","name":"is-blurred","namespace":"","comb":"&","styleLess":"background-color: hsla(228, 23.81%, 4.12%, 0.70);","variants":{},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70ae06","fake":false,"type":"class","name":"is-blurred","namespace":"","comb":"&","styleLess":"","variants":{"main_open":{"styleLess":"border-bottom-color: hsla(240, 0.00%, 100.00%, 0.20);"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70add8","fake":false,"type":"class","name":"HTML Embed 2","namespace":"","comb":"","styleLess":"display: flex;","variants":{},"children":[],"createdBy":"645217e03563196ad7f16539","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adbf","fake":false,"type":"class","name":"video-controls","namespace":"","comb":"","styleLess":"display: flex; align-items: center; grid-column-gap: 6px; grid-row-gap: 6px; color: hsla(0, 0.00%, 100.00%, 1.00);","variants":{},"children":["7a4c66e2-8dab-161d-3a12-b5125d70ade2","7a4c66e2-8dab-161d-3a12-b5125d70ade4","7a4c66e2-8dab-161d-3a12-b5125d70ade8","7a4c66e2-8dab-161d-3a12-b5125d70aded","7a4c66e2-8dab-161d-3a12-b5125d70adf2"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70ada9","fake":false,"type":"class","name":"html-video-wrapper","namespace":"","comb":"","styleLess":"position: relative; overflow: hidden; width: 100%; min-height: 600px; min-width: 1080px; border-top-left-radius: 1.5rem; border-top-right-radius: 1.5rem; border-bottom-left-radius: 1.5rem; border-bottom-right-radius: 1.5rem; background-color: hsla(0, 0.00%, 6.00%, 1.00);","variants":{"medium":{"styleLess":"min-height: auto; min-width: 90vw; border-top-left-radius: 1.25rem; border-top-right-radius: 1.25rem; border-bottom-left-radius: 1.25rem; border-bottom-right-radius: 1.25rem;"},"tiny":{"styleLess":"height: 60vh;"}},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adee","fake":false,"type":"class","name":"hide-mobile-landscape","namespace":"","comb":"&","styleLess":"","variants":{"small":{"styleLess":"display: flex;"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adc1","fake":false,"type":"class","name":"video-controls-wrapper","namespace":"","comb":"","styleLess":"position: absolute; left: 0%; top: auto; right: 0%; bottom: 0%; z-index: 3; display: flex; width: 100%; padding-top: 1rem; padding-right: 3rem; padding-bottom: 1rem; padding-left: 3rem; flex-direction: column; align-items: stretch; grid-column-gap: 1rem; grid-row-gap: 1rem; border-bottom-left-radius: 1.5rem; border-bottom-right-radius: 1.5rem; background-image: linear-gradient(to bottom, hsla(0, 0.00%, 100.00%, 0.00), hsla(228, 23.81%, 4.12%, 1.00) 95%); color: hsla(0, 0.00%, 100.00%, 1.00);","variants":{},"children":["7a4c66e2-8dab-161d-3a12-b5125d70ade7","7a4c66e2-8dab-161d-3a12-b5125d70adeb","7a4c66e2-8dab-161d-3a12-b5125d70adf8","7a4c66e2-8dab-161d-3a12-b5125d70ae07"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adb8","fake":false,"type":"class","name":"video-dropdown-toggle","namespace":"","comb":"","styleLess":"display: flex; padding-top: 0rem; padding-right: 0rem; padding-bottom: 0rem; padding-left: 0rem; justify-content: center; align-items: center; color: hsla(0, 0.00%, 100.00%, 1.00);","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70ade5","fake":false,"type":"class","name":"large","namespace":"","comb":"&","styleLess":"height: 8px;","variants":{},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adae","fake":false,"type":"class","name":"video-dropdown","namespace":"","comb":"","styleLess":"position: relative;","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adb2","fake":false,"type":"class","name":"dropdown-icon","namespace":"","comb":"","styleLess":"display: flex; width: 1rem; height: 1rem; flex-direction: column; justify-content: center; align-items: center;","variants":{},"children":[],"createdBy":"6075409192d886a671499223","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adfc","fake":false,"type":"class","name":"centered","namespace":"","comb":"&","styleLess":"align-items: center; text-align: center;","variants":{"small":{"styleLess":"padding-top: 1.2rem;"},"tiny":{"styleLess":"padding-top: 1rem;"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70ae01","fake":false,"type":"class","name":"left-aligned","namespace":"","comb":"&","styleLess":"display: flex; justify-content: flex-end;","variants":{"small":{"styleLess":"font-size: 13px;"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adf3","fake":false,"type":"class","name":"hidden","namespace":"","comb":"&","styleLess":"display: none;","variants":{},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adc5","fake":false,"type":"class","name":"html-icon","namespace":"","comb":"","styleLess":"display: flex; width: 1.3rem; height: 1.3rem; justify-content: center; align-items: center;","variants":{"small":{"styleLess":"width: 1.5rem; height: 1.5rem;"}},"children":["7a4c66e2-8dab-161d-3a12-b5125d70adef","7a4c66e2-8dab-161d-3a12-b5125d70adfe"],"createdBy":"645217e03563196ad7f16539","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adfd","fake":false,"type":"class","name":"is-gradient","namespace":"","comb":"&","styleLess":"overflow: hidden; background-image: linear-gradient(to bottom, hsla(0, 0.00%, 3.14%, 0.40), rgba(2, 2, 2, 0) 12%, hsla(0, 0.00%, 6.67%, 0.00) 91%, hsla(0, 0.00%, 3.33%, 1.00));","variants":{},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adb6","fake":false,"type":"class","name":"video-title-wrapper","namespace":"","comb":"","styleLess":"position: absolute; left: 0%; top: 0%; right: 0%; bottom: auto; z-index: 2; display: flex; padding-top: 1.5625rem; padding-right: 2.1875rem; padding-bottom: 1.875rem; padding-left: 2.1875rem; flex-direction: column; grid-row-gap: 5px; border-top-left-radius: 1.5rem; border-top-right-radius: 1.5rem; background-image: @img_64ee2d1164b28dcf6679f6f5; background-position: 50% 0%; background-size: contain; background-repeat: repeat-x;","variants":{"medium":{"styleLess":"overflow: hidden; padding-top: 1.45rem; padding-right: 1.575rem; padding-left: 1.575rem;"},"tiny":{"styleLess":"z-index: 7; padding-top: 1rem; padding-right: 1.3rem; padding-bottom: 1.5rem; padding-left: 1.3rem; grid-row-gap: 0px;"}},"children":["7a4c66e2-8dab-161d-3a12-b5125d70adf7","7a4c66e2-8dab-161d-3a12-b5125d70adfc"],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70ada8","fake":false,"type":"class","name":"video-sub-dropdown","namespace":"","comb":"","styleLess":"margin-right: 0rem; margin-left: 0rem;","variants":{},"children":["7a4c66e2-8dab-161d-3a12-b5125d70adff"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70aded","fake":false,"type":"class","name":"hide-mobile-landscape","namespace":"","comb":"&","styleLess":"","variants":{},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70ade1","fake":false,"type":"class","name":"play-button","namespace":"","comb":"","styleLess":"position: relative; z-index: 99999; display: flex; width: 3rem; height: 3rem; padding-top: 9px; padding-right: 9px; padding-bottom: 9px; padding-left: 9px; flex-direction: column; justify-content: center; align-items: center; border-top-left-radius: 100%; border-top-right-radius: 100%; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; background-color: hsla(228, 0.00%, 100.00%, 1.00); color: hsla(256, 46.10%, 7.30%, 1.00);","variants":{"small":{"styleLess":"display: none;"}},"children":["7a4c66e2-8dab-161d-3a12-b5125d70adf3"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adcd","fake":false,"type":"class","name":"video-element","namespace":"","comb":"","styleLess":"color: hsla(0, 100.00%, 98.89%, 1.00);","variants":{},"children":[],"createdBy":"645217e03563196ad7f16539","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70add6","fake":false,"type":"class","name":"padding-bottom","namespace":"","comb":"","styleLess":"padding-top: 0rem; padding-right: 0rem; padding-left: 0rem;","variants":{"medium":{"styleLess":"padding-top: 0rem; padding-right: 0rem; padding-left: 0rem;"},"small":{"styleLess":"padding-top: 0rem; padding-right: 0rem; padding-left: 0rem;"},"tiny":{"styleLess":"padding-top: 0rem; padding-right: 0rem; padding-left: 0rem;"}},"children":["7a4c66e2-8dab-161d-3a12-b5125d70adea","7a4c66e2-8dab-161d-3a12-b5125d70adf4"],"selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70addc","fake":false,"type":"class","name":"video-play-overlay","namespace":"","comb":"","styleLess":"position: absolute; left: 0%; top: 0%; right: 0%; bottom: 0%; z-index: 1; display: flex; width: 100%; height: 100%; margin-top: auto; margin-right: auto; margin-bottom: auto; margin-left: auto; justify-content: center; align-items: center; border-top-left-radius: 1.5rem; border-top-right-radius: 1.5rem; border-bottom-left-radius: 1.5rem; border-bottom-right-radius: 1.5rem; color: hsla(0, 0.00%, 100.00%, 1.00);","variants":{},"children":["7a4c66e2-8dab-161d-3a12-b5125d70adfd"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adc4","fake":false,"type":"class","name":"html-video-player","namespace":"","comb":"","styleLess":"position: relative; z-index: 0; overflow: hidden; width: 100%; height: 100%; border-top-left-radius: 25px; border-top-right-radius: 25px; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px;","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adbc","fake":false,"type":"class","name":"video-volume-wrapper","namespace":"","comb":"","styleLess":"position: absolute; left: auto; top: 12%; right: 8%; bottom: auto; z-index: 2; display: flex; align-items: center; grid-column-gap: 0.75rem; grid-row-gap: 0.75rem;","variants":{},"children":["7a4c66e2-8dab-161d-3a12-b5125d70ae03"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70ade2","fake":false,"type":"class","name":"right-aligned","namespace":"","comb":"&","styleLess":"justify-content: flex-end;","variants":{"small":{"styleLess":"position: absolute; left: auto; top: 0%; right: 0%; bottom: 0%; height: 100%;"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70add5","fake":false,"type":"class","name":"video-poster-image","namespace":"","comb":"","styleLess":"position: absolute; left: 0%; top: 0%; right: 0%; bottom: 0%; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%;","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adef","fake":false,"type":"class","name":"small","namespace":"","comb":"&","styleLess":"width: 1.2rem; height: 1.2rem;","variants":{},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adba","fake":false,"type":"class","name":"videos-sub-dropdown-toggle","namespace":"","comb":"","styleLess":"display: flex; padding-top: 0.875rem; padding-right: 0.875rem; padding-bottom: 0.875rem; padding-left: 0.875rem; justify-content: center; align-items: center; border-bottom-style: solid; border-bottom-width: 0.0625rem; border-bottom-color: hsla(240, 0.00%, 100.00%, 0.07); color: hsla(0, 0.00%, 100.00%, 1.00);","variants":{},"children":["7a4c66e2-8dab-161d-3a12-b5125d70ade9","7a4c66e2-8dab-161d-3a12-b5125d70ae06"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70ade7","fake":false,"type":"class","name":"is-blurred","namespace":"","comb":"&","styleLess":"bottom: 3.125rem; display: grid; max-width: 50rem; margin-right: auto; margin-left: auto; padding-top: 0.625rem; padding-right: 2.1875rem; padding-bottom: 1.25rem; padding-left: 2.1875rem; flex-direction: column; align-items: stretch; grid-auto-columns: 1fr; grid-column-gap: 0.5rem; grid-row-gap: 0.5rem; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: auto auto; border-top-left-radius: 1.25rem; border-top-right-radius: 1.25rem; border-bottom-left-radius: 1.25rem; border-bottom-right-radius: 1.25rem; background-color: hsla(0, 0.00%, 13.73%, 0.80); background-image: none; box-shadow: inset 0 0 0 1px hsla(0, 0.00%, 13.73%, 0.50); backdrop-filter: blur(13px);","variants":{"medium":{"styleLess":"bottom: 2rem; width: 90%; padding-top: 0.6rem; padding-right: 1.85rem; padding-bottom: 1.15rem; padding-left: 1.85rem;"},"small":{"styleLess":"bottom: 0.8rem; width: 95%; padding-top: 0.2rem; padding-right: 1rem; padding-bottom: 0.9rem; padding-left: 1rem; flex-direction: row; grid-column-gap: 0rem; grid-row-gap: 0rem; grid-template-columns: 1fr; grid-template-rows: auto;"},"tiny":{"styleLess":"border-top-left-radius: 0.8rem; border-top-right-radius: 0.8rem; border-bottom-left-radius: 0.8rem; border-bottom-right-radius: 0.8rem;"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adbb","fake":false,"type":"class","name":"video-sub-dropdown-list-wrapper","namespace":"","comb":"","styleLess":"left: auto; top: auto; right: 0%; bottom: 0%;","variants":{"main_open":{"styleLess":"left: auto; top: auto; right: 0%; bottom: 2.6rem; display: flex; overflow: hidden; padding-top: 0rem; padding-bottom: 0rem; padding-left: 0rem; flex-direction: column; align-items: stretch; border-top-left-radius: 0.75rem; border-top-right-radius: 0.75rem; border-bottom-left-radius: 0.75rem; border-bottom-right-radius: 0.75rem; background-color: hsla(0, 0.00%, 12.55%, 1.00); color: hsla(0, 0.00%, 100.00%, 1.00);"}},"children":["7a4c66e2-8dab-161d-3a12-b5125d70ade3","7a4c66e2-8dab-161d-3a12-b5125d70adec","7a4c66e2-8dab-161d-3a12-b5125d70adf5"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adde","fake":false,"type":"class","name":"video-duration","namespace":"","comb":"","styleLess":"width: 9ch; color: hsla(0, 0.00%, 100.00%, 0.70);","variants":{},"children":["7a4c66e2-8dab-161d-3a12-b5125d70ae01"],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adda","fake":false,"type":"class","name":"time-controls-wrapper","namespace":"","comb":"","styleLess":"display: flex; justify-content: stretch; align-items: center; grid-auto-columns: 1fr; grid-column-gap: 0.1rem; grid-row-gap: 0.1rem; grid-template-columns: 5% 90% 5%; grid-template-rows: auto;","variants":{"small":{"styleLess":"grid-column-gap: 0.2rem; grid-row-gap: 0.2rem;"}},"children":["7a4c66e2-8dab-161d-3a12-b5125d70adfb","7a4c66e2-8dab-161d-3a12-b5125d70ae04"],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adf2","fake":false,"type":"class","name":"player_2","namespace":"","comb":"&","styleLess":"justify-content: center;","variants":{"small":{"styleLess":"grid-column-gap: 10px; grid-row-gap: 10px;"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70ae03","fake":false,"type":"class","name":"1","namespace":"","comb":"&","styleLess":"position: static; top: 7%; right: 3%; z-index: 14; grid-column-gap: 0.5rem; grid-row-gap: 0.5rem;","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70addb","fake":false,"type":"class","name":"volume-control-2","namespace":"","comb":"","styleLess":"display: none; justify-content: center; align-items: center; grid-column-gap: 10px;","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70add4","fake":false,"type":"class","name":"icon-embed-xxsmall 2","namespace":"","comb":"","styleLess":"display: flex; width: 1.2rem; height: 1.2rem; flex-direction: column; justify-content: center; align-items: center;","variants":{},"children":[],"createdBy":"6075409192d886a671499223","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70ae05","fake":false,"type":"class","name":"video-element","namespace":"","comb":"&","styleLess":"position: relative; border-top-left-radius: 40px; border-top-right-radius: 40px; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px;","variants":{},"children":["7a4c66e2-8dab-161d-3a12-b5125d70ae08","7a4c66e2-8dab-161d-3a12-b5125d70ae0b"],"createdBy":"645217e03563196ad7f16539","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adce","fake":false,"type":"class","name":"video-watched","namespace":"","comb":"","styleLess":"width: 9ch;","variants":{"small":{"styleLess":"font-size: 13px;"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adf9","fake":false,"type":"class","name":"is-padding","namespace":"","comb":"&","styleLess":"display: block; padding-top: 0.6rem; padding-right: 0.6rem; padding-bottom: 0.6rem; padding-left: 0.6rem;","variants":{"small":{"styleLess":"display: flex; width: 2.4rem; height: 2.4rem;"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adcf","fake":false,"type":"class","name":"trackinner","namespace":"","comb":"","styleLess":"position: relative; z-index: 1; width: 0%; height: 100%; border-top-left-radius: 40px; border-top-right-radius: 40px; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; background-color: hsla(0, 0.00%, 100.00%, 1.00);","variants":{},"children":["7a4c66e2-8dab-161d-3a12-b5125d70ade5","7a4c66e2-8dab-161d-3a12-b5125d70adf1"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adc7","fake":false,"type":"class","name":"video-sub-dropdown-list","namespace":"","comb":"","styleLess":"position: static;","variants":{"main_open":{"styleLess":"background-color: hsla(228, 0.00%, 100.00%, 0.08); color: hsla(0, 0.00%, 100.00%, 1.00);"}},"children":["7a4c66e2-8dab-161d-3a12-b5125d70ae00"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adc8","fake":false,"type":"class","name":"video-sub-dropdown-item","namespace":"","comb":"","styleLess":"padding-top: 8px; padding-right: 5px; padding-bottom: 8px; padding-left: 5px; transition-property: background-color; transition-duration: 200ms; transition-timing-function: ease; color: hsla(0, 0.00%, 100.00%, 1.00); text-align: center;","variants":{"main_hover":{"styleLess":"background-color: hsla(0, 0.00%, 16.00%, 1.00);"}},"children":["7a4c66e2-8dab-161d-3a12-b5125d70adf0","7a4c66e2-8dab-161d-3a12-b5125d70adf6"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70ae08","fake":false,"type":"class","name":"large","namespace":"","comb":"&","styleLess":"overflow: hidden; height: 8px;","variants":{"small":{"styleLess":"height: 7px;"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adb0","fake":false,"type":"class","name":"track","namespace":"","comb":"","styleLess":"width: 100%; height: 5px; background-color: hsla(0, 0.00%, 98.00%, 0.16);","variants":{},"children":["7a4c66e2-8dab-161d-3a12-b5125d70ae05"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adf5","fake":false,"type":"class","name":"is-blurred","namespace":"","comb":"&","styleLess":"background-color: hsla(228, 23.81%, 4.12%, 0.50); backdrop-filter: blur(5px);","variants":{},"children":["7a4c66e2-8dab-161d-3a12-b5125d70ae0a"],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70ae00","fake":false,"type":"class","name":"is-blurred","namespace":"","comb":"&","styleLess":"background-color: hsla(0, 0.00%, 100.00%, 0.07);","variants":{},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70add3","fake":false,"type":"class","name":"control-button","namespace":"","comb":"","styleLess":"position: relative; z-index: 19; display: flex; width: 2.5rem; height: 2.5rem; flex-direction: column; justify-content: center; align-items: center; border-top-left-radius: 100vw; border-top-right-radius: 100vw; border-bottom-left-radius: 100vw; border-bottom-right-radius: 100vw; color: hsla(0, 0.00%, 100.00%, 1.00);","variants":{"tiny":{"styleLess":"height: 2.5rem; padding-top: 0rem; padding-right: 0rem; padding-bottom: 0rem; padding-left: 0rem;"},"small":{"styleLess":"width: 2rem; height: 2rem;"}},"children":["7a4c66e2-8dab-161d-3a12-b5125d70adee","7a4c66e2-8dab-161d-3a12-b5125d70adf9","7a4c66e2-8dab-161d-3a12-b5125d70ae02"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70ade0","fake":false,"type":"class","name":"video-player-wrapper","namespace":"","comb":"","styleLess":"position: relative; width: 100%; max-width: 67.5rem; margin-right: auto; margin-left: auto;","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adf4","fake":false,"type":"class","name":"padding-large","namespace":"","comb":"&","styleLess":"","variants":{},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70adad","fake":false,"type":"class","name":"video-subtitle","namespace":"","comb":"","styleLess":"max-width: 54ch; color: hsla(0, 0.00%, 93.79%, 1.00); font-size: 14px; line-height: 1.4; font-weight: 600;","variants":{"medium":{"styleLess":"font-size: 1rem;"},"small":{"styleLess":"font-size: 0.9rem;"},"tiny":{"styleLess":"font-size: 0.7rem;"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"7a4c66e2-8dab-161d-3a12-b5125d70add1","fake":false,"type":"class","name":"video-loading-track","namespace":"","comb":"","styleLess":"position: absolute; left: 0%; top: 0%; right: 0%; bottom: 0%; width: 0%; height: 100%; border-top-left-radius: 40px; border-top-right-radius: 40px; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; background-color: hsla(224.99999999999997, 7.77%, 59.61%, 1.00);","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null}],"assets":[{"cdnUrl":"https://assets-global.website-files.com/64ee2cd36c26463908188296/64ee2d1164b28dcf6679f6f0_TAL-northrop-grumman-antares-rocket-NASAROCKET0823-7eef1baaa5dd495a8424be38ae16a246.jpg","siteId":"64ee2cd36c26463908188296","width":1500,"isHD":false,"height":1000,"fileName":"64ee2d1164b28dcf6679f6f0_TAL-northrop-grumman-antares-rocket-NASAROCKET0823-7eef1baaa5dd495a8424be38ae16a246.jpg","createdOn":"2023-08-29T17:38:25.023Z","origFileName":"TAL-northrop-grumman-antares-rocket-NASAROCKET0823-7eef1baaa5dd495a8424be38ae16a246.jpg","fileHash":"3a231271c32c7686a51c27afc693b39e","variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/64ee2cd36c26463908188296/64ee2d1164b28dcf6679f6f0_TAL-northrop-grumman-antares-rocket-NASAROCKET0823-7eef1baaa5dd495a8424be38ae16a246-p-500.jpg","origFileName":"TAL-northrop-grumman-antares-rocket-NASAROCKET0823-7eef1baaa5dd495a8424be38ae16a246-p-500.jpg","fileName":"64ee2d1164b28dcf6679f6f0_TAL-northrop-grumman-antares-rocket-NASAROCKET0823-7eef1baaa5dd495a8424be38ae16a246-p-500.jpg","size":16851,"format":"jpg","width":500,"quality":100,"_id":"64ca4ccd10faeb2646d2ed80","cdnUrl":"https://assets-global.website-files.com/64ee2cd36c26463908188296/64ee2d1164b28dcf6679f6f0_TAL-northrop-grumman-antares-rocket-NASAROCKET0823-7eef1baaa5dd495a8424be38ae16a246-p-500.jpg"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/64ee2cd36c26463908188296/64ee2d1164b28dcf6679f6f0_TAL-northrop-grumman-antares-rocket-NASAROCKET0823-7eef1baaa5dd495a8424be38ae16a246-p-800.jpg","origFileName":"TAL-northrop-grumman-antares-rocket-NASAROCKET0823-7eef1baaa5dd495a8424be38ae16a246-p-800.jpg","fileName":"64ee2d1164b28dcf6679f6f0_TAL-northrop-grumman-antares-rocket-NASAROCKET0823-7eef1baaa5dd495a8424be38ae16a246-p-800.jpg","size":38968,"format":"jpg","width":800,"quality":100,"_id":"64ca4ccd10faeb2646d2ed81","cdnUrl":"https://assets-global.website-files.com/64ee2cd36c26463908188296/64ee2d1164b28dcf6679f6f0_TAL-northrop-grumman-antares-rocket-NASAROCKET0823-7eef1baaa5dd495a8424be38ae16a246-p-800.jpg"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/64ee2cd36c26463908188296/64ee2d1164b28dcf6679f6f0_TAL-northrop-grumman-antares-rocket-NASAROCKET0823-7eef1baaa5dd495a8424be38ae16a246-p-1080.jpg","origFileName":"TAL-northrop-grumman-antares-rocket-NASAROCKET0823-7eef1baaa5dd495a8424be38ae16a246-p-1080.jpg","fileName":"64ee2d1164b28dcf6679f6f0_TAL-northrop-grumman-antares-rocket-NASAROCKET0823-7eef1baaa5dd495a8424be38ae16a246-p-1080.jpg","size":68304,"format":"jpg","width":1080,"quality":100,"_id":"64ca4ccd10faeb2646d2ed82","cdnUrl":"https://assets-global.website-files.com/64ee2cd36c26463908188296/64ee2d1164b28dcf6679f6f0_TAL-northrop-grumman-antares-rocket-NASAROCKET0823-7eef1baaa5dd495a8424be38ae16a246-p-1080.jpg"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/64ee2cd36c26463908188296/64ee2d1164b28dcf6679f6f0_TAL-northrop-grumman-antares-rocket-NASAROCKET0823-7eef1baaa5dd495a8424be38ae16a246-p-130x130q80.jpg","origFileName":"TAL-northrop-grumman-antares-rocket-NASAROCKET0823-7eef1baaa5dd495a8424be38ae16a246-p-130x130q80.jpg","fileName":"64ee2d1164b28dcf6679f6f0_TAL-northrop-grumman-antares-rocket-NASAROCKET0823-7eef1baaa5dd495a8424be38ae16a246-p-130x130q80.jpg","format":"jpg","_id":"64d65d1e15f7713b06ae1974","cdnUrl":"https://assets-global.website-files.com/64ee2cd36c26463908188296/64ee2d1164b28dcf6679f6f0_TAL-northrop-grumman-antares-rocket-NASAROCKET0823-7eef1baaa5dd495a8424be38ae16a246-p-130x130q80.jpg"}],"mimeType":"image/jpeg","s3Url":"https://s3.amazonaws.com/webflow-prod-assets/64ee2cd36c26463908188296/64ee2d1164b28dcf6679f6f0_TAL-northrop-grumman-antares-rocket-NASAROCKET0823-7eef1baaa5dd495a8424be38ae16a246.jpg","thumbUrl":"https://assets-global.website-files.com/64ee2cd36c26463908188296/64ee2d1164b28dcf6679f6f0_TAL-northrop-grumman-antares-rocket-NASAROCKET0823-7eef1baaa5dd495a8424be38ae16a246-p-130x130q80.jpg","_id":"64ee2d1164b28dcf6679f6f0","updatedOn":"2023-08-29T17:38:25.273Z","fileSize":123040},{"cdnUrl":"https://assets-global.website-files.com/64ee2cd36c26463908188296/64ee2d1164b28dcf6679f6f5_Background.png","siteId":"64ee2cd36c26463908188296","width":1600,"isHD":false,"height":192,"fileName":"64ee2d1164b28dcf6679f6f5_Background.png","createdOn":"2023-08-29T17:38:25.031Z","origFileName":"Background.png","fileHash":"4a66f03ceede4e7875d77c9475bc1b8f","variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/64ee2cd36c26463908188296/64ee2d1164b28dcf6679f6f5_Background-p-500.png","origFileName":"Background-p-500.png","fileName":"64ee2d1164b28dcf6679f6f5_Background-p-500.png","size":3096,"format":"png","width":500,"quality":100,"_id":"64d685e8ee36981d0e3284bb","cdnUrl":"https://assets-global.website-files.com/64ee2cd36c26463908188296/64ee2d1164b28dcf6679f6f5_Background-p-500.png"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/64ee2cd36c26463908188296/64ee2d1164b28dcf6679f6f5_Background-p-800.png","origFileName":"Background-p-800.png","fileName":"64ee2d1164b28dcf6679f6f5_Background-p-800.png","size":6895,"format":"png","width":800,"quality":100,"_id":"64d685e8ee36981d0e3284bc","cdnUrl":"https://assets-global.website-files.com/64ee2cd36c26463908188296/64ee2d1164b28dcf6679f6f5_Background-p-800.png"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/64ee2cd36c26463908188296/64ee2d1164b28dcf6679f6f5_Background-p-1080.png","origFileName":"Background-p-1080.png","fileName":"64ee2d1164b28dcf6679f6f5_Background-p-1080.png","size":28082,"format":"png","width":1080,"quality":100,"_id":"64d685e8ee36981d0e3284bd","cdnUrl":"https://assets-global.website-files.com/64ee2cd36c26463908188296/64ee2d1164b28dcf6679f6f5_Background-p-1080.png"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/64ee2cd36c26463908188296/64ee2d1164b28dcf6679f6f5_Background-p-130x130q80.png","origFileName":"Background-p-130x130q80.png","fileName":"64ee2d1164b28dcf6679f6f5_Background-p-130x130q80.png","format":"png","_id":"64ee2d1164b28dcf6679f6f9","cdnUrl":"https://assets-global.website-files.com/64ee2cd36c26463908188296/64ee2d1164b28dcf6679f6f5_Background-p-130x130q80.png"}],"mimeType":"image/png","s3Url":"https://s3.amazonaws.com/webflow-prod-assets/64ee2cd36c26463908188296/64ee2d1164b28dcf6679f6f5_Background.png","thumbUrl":"https://assets-global.website-files.com/64ee2cd36c26463908188296/64ee2d1164b28dcf6679f6f5_Background-p-130x130q80.png","_id":"64ee2d1164b28dcf6679f6f5","updatedOn":"2023-08-29T17:38:25.234Z","fileSize":47883}],"ix1":[],"ix2":{"interactions":[{"id":"i-2","interactionTypeId":"MOUSE_HOVER_INTERACTION","eventIds":["e-3","e-4"],"target":"64ee2cd36c264639081882c3|17c33ff5-f408-eac7-7143-09c964d640c0","createdOn":1691842330530}],"events":[{"id":"e-3","name":"","animationType":"custom","eventTypeId":"MOUSE_OVER","action":{"id":"","actionTypeId":"GENERAL_START_ACTION","instant":true,"config":{"delay":0,"easing":"","duration":0,"actionListId":"a-3","affectedElements":{},"playInReverse":false,"autoStopEventId":"e-4"}},"mediaQueries":["main"],"target":{"id":"64ee2cd36c264639081882c3|17c33ff5-f408-eac7-7143-09c964d640c0","appliesTo":"ELEMENT","styleBlockIds":[]},"targets":[{"id":"64ee2cd36c264639081882c3|17c33ff5-f408-eac7-7143-09c964d640c0","appliesTo":"ELEMENT","styleBlockIds":[]}],"config":{"loop":false,"playInReverse":false,"scrollOffsetValue":null,"scrollOffsetUnit":null,"delay":null,"direction":null,"effectIn":null},"createdOn":1691842330531},{"id":"e-4","name":"","animationType":"custom","eventTypeId":"MOUSE_OUT","action":{"id":"","actionTypeId":"GENERAL_START_ACTION","instant":true,"config":{"delay":0,"easing":"","duration":0,"actionListId":"a-4","affectedElements":{},"playInReverse":false,"autoStopEventId":"e-3"}},"mediaQueries":["main"],"target":{"id":"64ee2cd36c264639081882c3|17c33ff5-f408-eac7-7143-09c964d640c0","appliesTo":"ELEMENT","styleBlockIds":[]},"targets":[{"id":"64ee2cd36c264639081882c3|17c33ff5-f408-eac7-7143-09c964d640c0","appliesTo":"ELEMENT","styleBlockIds":[]}],"config":{"loop":false,"playInReverse":false,"scrollOffsetValue":null,"scrollOffsetUnit":null,"delay":null,"direction":null,"effectIn":null},"createdOn":1691842330572}],"actionLists":[{"id":"a-3","title":"show-controls player-2","actionItemGroups":[{"actionItems":[{"id":"a-3-n","actionTypeId":"GENERAL_DISPLAY","config":{"delay":0,"easing":"","duration":0,"target":{"nodeId":"64ee2cd36c264639081882c3|17c33ff5-f408-eac7-7143-09c964d640c7","appliesTo":"ELEMENT_CLASS","styleBlockIds":["7a4c66e2-8dab-161d-3a12-b5125d70adc1","7a4c66e2-8dab-161d-3a12-b5125d70ade7"],"boundaryMode":false},"value":"grid"},"instant":true},{"id":"a-3-n-2","actionTypeId":"STYLE_OPACITY","config":{"delay":0,"easing":"","duration":150,"target":{"nodeId":"64ee2cd36c264639081882c3|17c33ff5-f408-eac7-7143-09c964d640c7","appliesTo":"ELEMENT_CLASS","styleBlockIds":["7a4c66e2-8dab-161d-3a12-b5125d70adc1","7a4c66e2-8dab-161d-3a12-b5125d70ade7"],"boundaryMode":false},"value":100,"unit":"%"},"instant":false}]}],"useFirstGroupAsInitialState":false,"createdOn":1691842336447},{"id":"a-4","title":"hide-controls player-2","actionItemGroups":[{"actionItems":[{"id":"a-4-n","actionTypeId":"STYLE_OPACITY","config":{"delay":0,"easing":"","duration":300,"target":{"nodeId":"64ee2cd36c264639081882c3|17c33ff5-f408-eac7-7143-09c964d640c7","appliesTo":"ELEMENT_CLASS","styleBlockIds":["7a4c66e2-8dab-161d-3a12-b5125d70adc1","7a4c66e2-8dab-161d-3a12-b5125d70ade7"],"boundaryMode":false},"value":0,"unit":"%"},"instant":false},{"id":"a-4-n-2","actionTypeId":"GENERAL_DISPLAY","config":{"delay":300,"easing":"","duration":0,"target":{"nodeId":"64ee2cd36c264639081882c3|17c33ff5-f408-eac7-7143-09c964d640c7","appliesTo":"ELEMENT_CLASS","styleBlockIds":["7a4c66e2-8dab-161d-3a12-b5125d70adc1","7a4c66e2-8dab-161d-3a12-b5125d70ade7"],"boundaryMode":false},"value":"none"},"instant":true}]}],"useFirstGroupAsInitialState":false,"createdOn":1691842336447}]}},"meta":{"unlinkedSymbolCount":0,"droppedLinks":0,"dynBindRemovedCount":0,"dynListBindRemovedCount":0,"paginationRemovedCount":0}}

Copy component

Starter Kit #2

Copy this starter kit into your Webflow project
{"type":"@webflow/XscpData","payload":{"nodes":[{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66ef0","type":"Block","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb454d"],"children":["c2fc6a78-8108-513a-633d-f0e43b9fd78d","9c46c431-579c-4e7b-1813-c3e97fe66f09","9c46c431-579c-4e7b-1813-c3e97fe66ef4","9c46c431-579c-4e7b-1813-c3e97fe66efc"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"wrapper"}],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":"video1"},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"c2fc6a78-8108-513a-633d-f0e43b9fd78d","type":"HtmlEmbed","tag":"div","classes":["0bb3e35a-e3ad-d0cd-1a83-223561d3051e"],"children":[],"v":"<video class=\"video-player-style\" f-data-video=\"video-element\" playsinline>\n\n<source f-data-video-src-quality=\"720p\" \nsrc=\"https://file-examples.com/storage/fe5048eb7365a64ba96daa9/2017/04/file_example_MP4_1280_10MG.mp4\">\n\n</video>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"meta":{"html":"<video class=\"video-player-style\" f-data-video=\"video-element\" playsinline>\n\n<source f-data-video-src-quality=\"720p\" \nsrc=\"https://file-examples.com/storage/fe5048eb7365a64ba96daa9/2017/04/file_example_MP4_1280_10MG.mp4\">\n\n</video>","div":false,"iframe":false,"script":false,"compilable":false},"type":"html"}}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66f09","type":"Block","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb453b","b2d08c04-1c71-977a-787e-8bbdc0eb4561","a1deef68-5820-c521-209c-c2e76baccf24"],"children":["9c46c431-579c-4e7b-1813-c3e97fe66f12","9c46c431-579c-4e7b-1813-c3e97fe66f0e","9c46c431-579c-4e7b-1813-c3e97fe66f10","9c46c431-579c-4e7b-1813-c3e97fe66f14"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"show-pause"}],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66f12","type":"Link","tag":"a","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4550","b2d08c04-1c71-977a-787e-8bbdc0eb4576"],"children":["9c46c431-579c-4e7b-1813-c3e97fe66f13"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"backward-button"}],"block":"inline","displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"button":false,"link":{"mode":"external","url":"#"}}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66f13","type":"HtmlEmbed","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4540"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"32\" height=\"32\" preserveaspectratio=\"xMidYMid meet\" viewbox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M11.99 5V1l-5 5l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6s-6-2.69-6-6h-2c0 4.42 3.58 8 8 8s8-3.58 8-8s-3.58-8-8-8zm-1.1 11h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09V16zm4.28-1.76c0 .32-.03.6-.1.82s-.17.42-.29.57s-.28.26-.45.33s-.37.1-.59.1s-.41-.03-.59-.1s-.33-.18-.46-.33s-.23-.34-.3-.57s-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57s.28-.26.45-.33s.37-.1.59-.1s.41.03.59.1s.33.18.46.33s.23.34.3.57s.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31s-.11-.14-.19-.17s-.16-.05-.25-.05s-.18.02-.25.05s-.14.09-.19.17s-.09.18-.12.31s-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32s.11.14.19.17s.16.05.25.05s.18-.02.25-.05s.14-.09.19-.17s.09-.19.11-.32s.04-.29.04-.48v-.97z\"/></svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"type":"html","meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"32\" height=\"32\" preserveAspectRatio=\"xMidYMid meet\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M11.99 5V1l-5 5l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6s-6-2.69-6-6h-2c0 4.42 3.58 8 8 8s8-3.58 8-8s-3.58-8-8-8zm-1.1 11h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09V16zm4.28-1.76c0 .32-.03.6-.1.82s-.17.42-.29.57s-.28.26-.45.33s-.37.1-.59.1s-.41-.03-.59-.1s-.33-.18-.46-.33s-.23-.34-.3-.57s-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57s.28-.26.45-.33s.37-.1.59-.1s.41.03.59.1s.33.18.46.33s.23.34.3.57s.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31s-.11-.14-.19-.17s-.16-.05-.25-.05s-.18.02-.25.05s-.14.09-.19.17s-.09.18-.12.31s-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32s.11.14.19.17s.16.05.25.05s.18-.02.25-.05s.14-.09.19-.17s.09-.19.11-.32s.04-.29.04-.48v-.97z\"></path></svg>","div":false,"iframe":false,"script":false,"compilable":false}}}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66f0e","type":"Link","tag":"a","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4550","b2d08c04-1c71-977a-787e-8bbdc0eb4576"],"children":["9c46c431-579c-4e7b-1813-c3e97fe66f0f"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"play-button"}],"block":"inline","displayName":"","devlink":{"runtimeProps":{},"slot":""},"style":{"base":{"small":{"noPseudo":{"gridColumnEnd":4,"gridColumnStart":3,"gridRowEnd":2,"gridRowStart":1}}}},"attr":{"id":""},"visibility":{"conditions":[]},"button":false,"link":{"mode":"external","url":"#"}}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66f0f","type":"HtmlEmbed","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4540"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewbox=\"0 0 24 24\" fill=\"none\">\n  <path d=\"M5 4.83167C5 4.0405 5.87525 3.56266 6.54076 3.99049L17.6915 11.1588C18.3038 11.5525 18.3038 12.4475 17.6915 12.8412L6.54076 20.0095C5.87525 20.4373 5 19.9595 5 19.1683V4.83167Z\" fill=\"currentColor\"/>\n</svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"type":"html","meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\n  <path d=\"M5 4.83167C5 4.0405 5.87525 3.56266 6.54076 3.99049L17.6915 11.1588C18.3038 11.5525 18.3038 12.4475 17.6915 12.8412L6.54076 20.0095C5.87525 20.4373 5 19.9595 5 19.1683V4.83167Z\" fill=\"currentColor\"/>\n</svg>","div":false,"iframe":false,"script":false,"compilable":false}}}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66f10","type":"Link","tag":"a","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4550","b2d08c04-1c71-977a-787e-8bbdc0eb4576"],"children":["9c46c431-579c-4e7b-1813-c3e97fe66f11"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"pause-button"}],"block":"inline","displayName":"","devlink":{"runtimeProps":{},"slot":""},"style":{"base":{"small":{"noPseudo":{"gridColumnEnd":5,"gridColumnStart":4,"gridRowEnd":2,"gridRowStart":1}}}},"attr":{"id":""},"visibility":{"conditions":[]},"button":false,"link":{"mode":"external","url":"#"}}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66f11","type":"HtmlEmbed","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4540"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewbox=\"0 0 24 24\" fill=\"none\">\n  <path d=\"M14.2857 3.11111C14.2857 2.49746 14.7974 2 15.4286 2H18.8571C19.4883 2 20 2.49746 20 3.11111V20.8889C20 21.5025 19.4883 22 18.8571 22H15.4286C14.7974 22 14.2857 21.5025 14.2857 20.8889V3.11111Z\" fill=\"currentColor\"/>\n  <path d=\"M4 3.11111C4 2.49746 4.51167 2 5.14286 2H8.57143C9.20261 2 9.71429 2.49746 9.71429 3.11111V20.8889C9.71429 21.5025 9.20261 22 8.57143 22H5.14286C4.51167 22 4 21.5025 4 20.8889V3.11111Z\" fill=\"currentColor\"/>\n</svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"type":"html","meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\n  <path d=\"M14.2857 3.11111C14.2857 2.49746 14.7974 2 15.4286 2H18.8571C19.4883 2 20 2.49746 20 3.11111V20.8889C20 21.5025 19.4883 22 18.8571 22H15.4286C14.7974 22 14.2857 21.5025 14.2857 20.8889V3.11111Z\" fill=\"currentColor\"/>\n  <path d=\"M4 3.11111C4 2.49746 4.51167 2 5.14286 2H8.57143C9.20261 2 9.71429 2.49746 9.71429 3.11111V20.8889C9.71429 21.5025 9.20261 22 8.57143 22H5.14286C4.51167 22 4 21.5025 4 20.8889V3.11111Z\" fill=\"currentColor\"/>\n</svg>","div":false,"iframe":false,"script":false,"compilable":false}}}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66f14","type":"Link","tag":"a","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4550","b2d08c04-1c71-977a-787e-8bbdc0eb4576"],"children":["9c46c431-579c-4e7b-1813-c3e97fe66f15"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"forward-button"}],"block":"inline","displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"button":false,"link":{"mode":"external","url":"#"}}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66f15","type":"HtmlEmbed","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4540"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"32\" height=\"32\" preserveaspectratio=\"xMidYMid meet\" viewbox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6s2.69-6 6-6v4l5-5l-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8s8-3.58 8-8h-2z\"/><path fill=\"currentColor\" d=\"M10.9 16v-4.27h-.09l-1.77.63v.69l1.01-.31V16zm3.42-4.22c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1s-.33.18-.45.33s-.23.34-.29.57s-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57s.28.26.46.33s.37.1.59.1s.41-.03.59-.1s.33-.18.45-.33s.22-.34.29-.57s.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57s-.29-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32s-.11.14-.19.17s-.16.05-.25.05s-.18-.02-.25-.05s-.14-.09-.19-.17s-.09-.19-.12-.32s-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31s.11-.14.19-.17s.16-.05.25-.05s.18.02.25.05s.14.09.19.17s.09.18.12.31s.04.29.04.48v.97z\"/></svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"type":"html","meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"32\" height=\"32\" preserveAspectRatio=\"xMidYMid meet\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6s2.69-6 6-6v4l5-5l-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8s8-3.58 8-8h-2z\"></path><path fill=\"currentColor\" d=\"M10.9 16v-4.27h-.09l-1.77.63v.69l1.01-.31V16zm3.42-4.22c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1s-.33.18-.45.33s-.23.34-.29.57s-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57s.28.26.46.33s.37.1.59.1s.41-.03.59-.1s.33-.18.45-.33s.22-.34.29-.57s.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57s-.29-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32s-.11.14-.19.17s-.16.05-.25.05s-.18-.02-.25-.05s-.14-.09-.19-.17s-.09-.19-.12-.32s-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31s.11-.14.19-.17s.16-.05.25-.05s.18.02.25.05s.14.09.19.17s.09.18.12.31s.04.29.04.48v.97z\"></path></svg>","div":false,"iframe":false,"script":false,"compilable":false}}}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66ef4","type":"Block","tag":"div","classes":["310c7ca3-45df-10c2-5e3e-c7307a4bdb9c","b2d08c04-1c71-977a-787e-8bbdc0eb4531","befe03e9-c7e1-b8ea-212a-4780a73b1530"],"children":["9c46c431-579c-4e7b-1813-c3e97fe66ef5"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"show-pause"}],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66ef5","type":"Block","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4559"],"children":["9c46c431-579c-4e7b-1813-c3e97fe66ef6","9c46c431-579c-4e7b-1813-c3e97fe66ef8"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"title"}],"text":true,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66ef6","type":"Strong","tag":"strong","classes":[],"children":["9c46c431-579c-4e7b-1813-c3e97fe66ef7"],"data":{"displayName":"","attr":{"id":""},"xattr":[],"search":{"exclude":false},"visibility":{"conditions":[]},"devlink":{"runtimeProps":{},"slot":""}}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66ef7","text":true,"v":"Pale Blue Dot"},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66ef8","type":"LineBreak","tag":"br","classes":[],"children":[],"data":{"sym":{"inst":"LineBreak"}}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66efc","type":"Block","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb453d","ab94c679-d2fe-b5fb-7d2b-a056343a5eb3"],"children":["9c46c431-579c-4e7b-1813-c3e97fe66efd","9c46c431-579c-4e7b-1813-c3e97fe66f08"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"show-pause"}],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66efd","type":"Block","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4555"],"children":["9c46c431-579c-4e7b-1813-c3e97fe66f05"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66f05","type":"Block","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb452b","b2d08c04-1c71-977a-787e-8bbdc0eb455f"],"children":["9c46c431-579c-4e7b-1813-c3e97fe66f06","9c46c431-579c-4e7b-1813-c3e97fe66f07"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"progress-bar"}],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66f06","type":"Block","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb454b"],"children":["3cc40ae8-9426-60e0-57fd-76549af16819"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"progress"}],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"3cc40ae8-9426-60e0-57fd-76549af16819","type":"Block","tag":"div","classes":["0f9a5e04-bf9f-46ea-4e3a-8ef2ca2981c0"],"children":[],"data":{"tag":"div","text":false}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66f07","type":"Block","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb454e"],"children":[],"data":{"xattr":[{"name":"f-data-video","value":"loading"}],"text":false,"tag":"div"}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66f08","type":"Block","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4553"],"children":["9c46c431-579c-4e7b-1813-c3e97fe66f16"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"style":{"base":{"small":{"noPseudo":{"gridColumnEnd":2,"gridColumnStart":1,"gridRowEnd":2,"gridRowStart":1,"justifySelf":"center"}}}},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66f16","type":"Block","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb453b","b2d08c04-1c71-977a-787e-8bbdc0eb456a"],"children":["9c46c431-579c-4e7b-1813-c3e97fe66f17","9c46c431-579c-4e7b-1813-c3e97fe66f1b","9c46c431-579c-4e7b-1813-c3e97fe66f1e"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66f17","type":"Block","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4538","b2d08c04-1c71-977a-787e-8bbdc0eb4580"],"children":["9c46c431-579c-4e7b-1813-c3e97fe66f18","9c46c431-579c-4e7b-1813-c3e97fe66f1a","dc7fa75b-0a3c-c9ed-d6a2-0e4b6cbc4a26"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66f18","type":"Link","tag":"a","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4549"],"children":["9c46c431-579c-4e7b-1813-c3e97fe66f19"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"volume-button"}],"block":"inline","displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"button":false,"link":{"mode":"external","url":"#"}}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66f19","type":"HtmlEmbed","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4540","b2d08c04-1c71-977a-787e-8bbdc0eb456c"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewbox=\"0 0 24 24\" fill=\"none\">\n  <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.5 7.86233C0.671573 7.86233 0 8.5339 0 9.36233V14.6383C0 15.4667 0.671574 16.1383 1.5 16.1383H5.51737L9.85343 20.4743C10.7984 21.4192 12.4141 20.75 12.4141 19.4136V4.58699C12.4141 3.25064 10.7984 2.58139 9.85343 3.52633L5.51737 7.86233H1.5ZM20.3897 5.59786C20.0774 5.28539 19.5708 5.28531 19.2584 5.59768C18.9459 5.91005 18.9458 6.41658 19.2582 6.72905C20.608 8.07926 21.3662 9.9103 21.3662 11.8195C21.3662 13.7287 20.608 15.5598 19.2582 16.91C18.9458 17.2224 18.9459 17.729 19.2584 18.0413C19.5708 18.3537 20.0774 18.3536 20.3897 18.0412C22.0395 16.3909 22.9662 14.153 22.9662 11.8195C22.9662 9.48605 22.0395 7.24812 20.3897 5.59786ZM17.5658 8.42189C17.2534 8.10942 16.7469 8.10934 16.4344 8.42171C16.1219 8.73407 16.1219 9.2406 16.4342 9.55307C17.0341 10.1532 17.3711 10.967 17.3711 11.8155C17.3711 12.6641 17.0341 13.4779 16.4342 14.0779C16.1219 14.3904 16.1219 14.8969 16.4344 15.2093C16.7469 15.5217 17.2534 15.5216 17.5658 15.2091C18.4656 14.309 18.9711 13.0883 18.9711 11.8155C18.9711 10.5427 18.4656 9.32203 17.5658 8.42189Z\" fill=\"currentColor\"/>\n</svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\n  <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.5 7.86233C0.671573 7.86233 0 8.5339 0 9.36233V14.6383C0 15.4667 0.671574 16.1383 1.5 16.1383H5.51737L9.85343 20.4743C10.7984 21.4192 12.4141 20.75 12.4141 19.4136V4.58699C12.4141 3.25064 10.7984 2.58139 9.85343 3.52633L5.51737 7.86233H1.5ZM20.3897 5.59786C20.0774 5.28539 19.5708 5.28531 19.2584 5.59768C18.9459 5.91005 18.9458 6.41658 19.2582 6.72905C20.608 8.07926 21.3662 9.9103 21.3662 11.8195C21.3662 13.7287 20.608 15.5598 19.2582 16.91C18.9458 17.2224 18.9459 17.729 19.2584 18.0413C19.5708 18.3537 20.0774 18.3536 20.3897 18.0412C22.0395 16.3909 22.9662 14.153 22.9662 11.8195C22.9662 9.48605 22.0395 7.24812 20.3897 5.59786ZM17.5658 8.42189C17.2534 8.10942 16.7469 8.10934 16.4344 8.42171C16.1219 8.73407 16.1219 9.2406 16.4342 9.55307C17.0341 10.1532 17.3711 10.967 17.3711 11.8155C17.3711 12.6641 17.0341 13.4779 16.4342 14.0779C16.1219 14.3904 16.1219 14.8969 16.4344 15.2093C16.7469 15.5217 17.2534 15.5216 17.5658 15.2091C18.4656 14.309 18.9711 13.0883 18.9711 11.8155C18.9711 10.5427 18.4656 9.32203 17.5658 8.42189Z\" fill=\"currentColor\"/>\n</svg>","div":false,"iframe":false,"script":false,"compilable":false},"type":"html"}}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66f1a","type":"HtmlEmbed","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb452c"],"children":[],"v":"<input class=\"slider\" type=\"range\" f-data-video=\"volume-slider\" min=\"0\" max=\"1\" step=\"0.01\" value=\"0.5\">","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"meta":{"html":"<input class=\"slider\" type=\"range\" f-data-video=\"volume-slider\" min=\"0\" max=\"1\" step=\"0.01\" value=\"0.5\">","div":false,"iframe":false,"script":false,"compilable":false},"type":"html"}}},{"_id":"dc7fa75b-0a3c-c9ed-d6a2-0e4b6cbc4a26","type":"Block","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb453c"],"children":["dc7fa75b-0a3c-c9ed-d6a2-0e4b6cbc4a27","dc7fa75b-0a3c-c9ed-d6a2-0e4b6cbc4a29","dc7fa75b-0a3c-c9ed-d6a2-0e4b6cbc4a2b"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"dc7fa75b-0a3c-c9ed-d6a2-0e4b6cbc4a27","type":"Block","tag":"div","classes":[],"children":["dc7fa75b-0a3c-c9ed-d6a2-0e4b6cbc4a28"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"current-time"}],"text":true,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"dc7fa75b-0a3c-c9ed-d6a2-0e4b6cbc4a28","text":true,"v":"00:00"},{"_id":"dc7fa75b-0a3c-c9ed-d6a2-0e4b6cbc4a29","type":"Block","tag":"div","classes":[],"children":["dc7fa75b-0a3c-c9ed-d6a2-0e4b6cbc4a2a"],"data":{"search":{"exclude":false},"xattr":[],"text":true,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"dc7fa75b-0a3c-c9ed-d6a2-0e4b6cbc4a2a","text":true,"v":"/"},{"_id":"dc7fa75b-0a3c-c9ed-d6a2-0e4b6cbc4a2b","type":"Block","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb455a"],"children":["dc7fa75b-0a3c-c9ed-d6a2-0e4b6cbc4a2c"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"duration"}],"text":true,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"dc7fa75b-0a3c-c9ed-d6a2-0e4b6cbc4a2c","text":true,"v":"00:00"},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66f1b","type":"Block","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4557"],"children":["9c46c431-579c-4e7b-1813-c3e97fe66f1c","9c46c431-579c-4e7b-1813-c3e97fe66f1d"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66f1c","type":"HtmlEmbed","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4551"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewbox=\"0 0 24 24\" fill=\"none\">\n  <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.5 7.86233C0.671573 7.86233 0 8.5339 0 9.36233V14.6383C0 15.4667 0.671574 16.1383 1.5 16.1383H5.51737L9.85343 20.4743C10.7984 21.4192 12.4141 20.75 12.4141 19.4136V4.58699C12.4141 3.25064 10.7984 2.58139 9.85343 3.52633L5.51737 7.86233H1.5ZM20.3897 5.59786C20.0774 5.28539 19.5708 5.28531 19.2584 5.59768C18.9459 5.91005 18.9458 6.41658 19.2582 6.72905C20.608 8.07926 21.3662 9.9103 21.3662 11.8195C21.3662 13.7287 20.608 15.5598 19.2582 16.91C18.9458 17.2224 18.9459 17.729 19.2584 18.0413C19.5708 18.3537 20.0774 18.3536 20.3897 18.0412C22.0395 16.3909 22.9662 14.153 22.9662 11.8195C22.9662 9.48605 22.0395 7.24812 20.3897 5.59786ZM17.5658 8.42189C17.2534 8.10942 16.7469 8.10934 16.4344 8.42171C16.1219 8.73407 16.1219 9.2406 16.4342 9.55307C17.0341 10.1532 17.3711 10.967 17.3711 11.8155C17.3711 12.6641 17.0341 13.4779 16.4342 14.0779C16.1219 14.3904 16.1219 14.8969 16.4344 15.2093C16.7469 15.5217 17.2534 15.5216 17.5658 15.2091C18.4656 14.309 18.9711 13.0883 18.9711 11.8155C18.9711 10.5427 18.4656 9.32203 17.5658 8.42189Z\" fill=\"currentColor\"/>\n</svg>","data":{"insideRTE":false,"search":{"exclude":true},"xattr":[{"name":"data-video","value":"volume-btn"}],"embed":{"type":"html","meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\n  <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.5 7.86233C0.671573 7.86233 0 8.5339 0 9.36233V14.6383C0 15.4667 0.671574 16.1383 1.5 16.1383H5.51737L9.85343 20.4743C10.7984 21.4192 12.4141 20.75 12.4141 19.4136V4.58699C12.4141 3.25064 10.7984 2.58139 9.85343 3.52633L5.51737 7.86233H1.5ZM20.3897 5.59786C20.0774 5.28539 19.5708 5.28531 19.2584 5.59768C18.9459 5.91005 18.9458 6.41658 19.2582 6.72905C20.608 8.07926 21.3662 9.9103 21.3662 11.8195C21.3662 13.7287 20.608 15.5598 19.2582 16.91C18.9458 17.2224 18.9459 17.729 19.2584 18.0413C19.5708 18.3537 20.0774 18.3536 20.3897 18.0412C22.0395 16.3909 22.9662 14.153 22.9662 11.8195C22.9662 9.48605 22.0395 7.24812 20.3897 5.59786ZM17.5658 8.42189C17.2534 8.10942 16.7469 8.10934 16.4344 8.42171C16.1219 8.73407 16.1219 9.2406 16.4342 9.55307C17.0341 10.1532 17.3711 10.967 17.3711 11.8155C17.3711 12.6641 17.0341 13.4779 16.4342 14.0779C16.1219 14.3904 16.1219 14.8969 16.4344 15.2093C16.7469 15.5217 17.2534 15.5216 17.5658 15.2091C18.4656 14.309 18.9711 13.0883 18.9711 11.8155C18.9711 10.5427 18.4656 9.32203 17.5658 8.42189Z\" fill=\"currentColor\"/>\n</svg>","div":false,"iframe":false,"script":false,"compilable":false}}}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66f1d","type":"HtmlEmbed","tag":"div","classes":["2ceb9fd8-9566-0d03-349f-df3d77b909d6"],"children":[],"v":"<input type=\"range\" data-video=\"volume-slider\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.5\">","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"type":"html","meta":{"html":"<input type=\"range\" data-video=\"volume-slider\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.5\">","div":false,"iframe":false,"script":false,"compilable":false}}}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66f1e","type":"Block","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4545"],"children":["860007e5-a870-01d6-7b7b-312c42cfde90","9c46c431-579c-4e7b-1813-c3e97fe66f21","edba006a-76df-50c6-6f4d-42adb966e926"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"860007e5-a870-01d6-7b7b-312c42cfde90","type":"Link","tag":"a","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4550"],"children":["860007e5-a870-01d6-7b7b-312c42cfde91"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"fullscreen"}],"block":"inline","displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"button":false,"link":{"mode":"external","url":"#"}}},{"_id":"860007e5-a870-01d6-7b7b-312c42cfde91","type":"HtmlEmbed","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4540","b2d08c04-1c71-977a-787e-8bbdc0eb456c"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewbox=\"0 0 24 24\" fill=\"none\">\n  <path d=\"M21.1667 2C21.6269 2 22 2.3731 22 2.83333V8.99707C22 9.54989 21.5518 9.99805 20.999 9.99805C20.4462 9.99805 19.998 9.54989 19.998 8.99707V5.41797L5.41797 19.998H8.99707C9.54989 19.998 9.99805 20.4462 9.99805 20.999C9.99805 21.5518 9.54989 22 8.99707 22H2.83333C2.3731 22 2 21.6269 2 21.1667V15.0029C2 14.4501 2.44815 14.002 3.00098 14.002C3.5538 14.002 4.00195 14.4501 4.00195 15.0029V18.582L18.582 4.00195H15.0029C14.4501 4.00195 14.002 3.5538 14.002 3.00098C14.002 2.44815 14.4501 2 15.0029 2H21.1667Z\" fill=\"currentColor\"/>\n</svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"type":"html","meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\n  <path d=\"M21.1667 2C21.6269 2 22 2.3731 22 2.83333V8.99707C22 9.54989 21.5518 9.99805 20.999 9.99805C20.4462 9.99805 19.998 9.54989 19.998 8.99707V5.41797L5.41797 19.998H8.99707C9.54989 19.998 9.99805 20.4462 9.99805 20.999C9.99805 21.5518 9.54989 22 8.99707 22H2.83333C2.3731 22 2 21.6269 2 21.1667V15.0029C2 14.4501 2.44815 14.002 3.00098 14.002C3.5538 14.002 4.00195 14.4501 4.00195 15.0029V18.582L18.582 4.00195H15.0029C14.4501 4.00195 14.002 3.5538 14.002 3.00098C14.002 2.44815 14.4501 2 15.0029 2H21.1667Z\" fill=\"currentColor\"/>\n</svg>","div":false,"iframe":false,"script":false,"compilable":false}}}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66f21","type":"Link","tag":"a","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4550"],"children":["9c46c431-579c-4e7b-1813-c3e97fe66f22"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"minimize"}],"block":"inline","displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"button":false,"link":{"mode":"external","url":"#"}}},{"_id":"9c46c431-579c-4e7b-1813-c3e97fe66f22","type":"HtmlEmbed","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4540","b2d08c04-1c71-977a-787e-8bbdc0eb456c"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewbox=\"0 0 24 24\" fill=\"none\">\n  <path d=\"M10.8885 12C11.1607 12 11.4234 12.0999 11.6268 12.2808C11.8302 12.4617 11.9601 12.7109 11.992 12.9812L11.9998 13.1112V18.6674C11.9994 18.9507 11.891 19.2231 11.6966 19.429C11.5021 19.635 11.2364 19.7589 10.9536 19.7755C10.6709 19.7921 10.3925 19.7001 10.1753 19.5183C9.95808 19.3366 9.8185 19.0787 9.78504 18.7974L9.77726 18.6674V15.7938L3.89544 21.6756C3.69546 21.8749 3.42712 21.9906 3.14492 21.9992C2.86272 22.0078 2.58782 21.9087 2.37606 21.722C2.16429 21.5352 2.03154 21.2749 2.00477 20.9938C1.97799 20.7128 2.0592 20.4321 2.2319 20.2087L2.32414 20.1043L8.20596 14.2225H5.33228C5.04905 14.2221 4.77662 14.1137 4.57067 13.9193C4.36471 13.7248 4.24078 13.4591 4.22418 13.1763C4.20758 12.8936 4.29957 12.6152 4.48136 12.398C4.66315 12.1808 4.92101 12.0412 5.20226 12.0078L5.33228 12H10.8885ZM20.1041 2.32439C20.304 2.12509 20.5724 2.00938 20.8546 2.00076C21.1368 1.99215 21.4117 2.09127 21.6235 2.27799C21.8352 2.46472 21.968 2.72505 21.9947 3.00611C22.0215 3.28716 21.9403 3.56788 21.7676 3.79123L21.6754 3.89568L15.7935 9.77749H18.6672C18.9505 9.7778 19.2229 9.88626 19.4288 10.0807C19.6348 10.2751 19.7587 10.5409 19.7753 10.8236C19.7919 11.1064 19.6999 11.3848 19.5182 11.602C19.3364 11.8192 19.0785 11.9587 18.7972 11.9922L18.6672 12H13.111C12.8388 11.9999 12.5761 11.9 12.3727 11.7191C12.1693 11.5383 12.0394 11.2891 12.0075 11.0187L11.9998 10.8887V5.33252C12.0001 5.04929 12.1085 4.77686 12.303 4.57091C12.4974 4.36496 12.7631 4.24102 13.0459 4.22442C13.3286 4.20782 13.607 4.29981 13.8242 4.4816C14.0414 4.66339 14.181 4.92125 14.2145 5.2025L14.2222 5.33252V8.20619L20.1041 2.32439Z\" fill=\"currentColor\"/>\n</svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"type":"html","meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\n  <path d=\"M10.8885 12C11.1607 12 11.4234 12.0999 11.6268 12.2808C11.8302 12.4617 11.9601 12.7109 11.992 12.9812L11.9998 13.1112V18.6674C11.9994 18.9507 11.891 19.2231 11.6966 19.429C11.5021 19.635 11.2364 19.7589 10.9536 19.7755C10.6709 19.7921 10.3925 19.7001 10.1753 19.5183C9.95808 19.3366 9.8185 19.0787 9.78504 18.7974L9.77726 18.6674V15.7938L3.89544 21.6756C3.69546 21.8749 3.42712 21.9906 3.14492 21.9992C2.86272 22.0078 2.58782 21.9087 2.37606 21.722C2.16429 21.5352 2.03154 21.2749 2.00477 20.9938C1.97799 20.7128 2.0592 20.4321 2.2319 20.2087L2.32414 20.1043L8.20596 14.2225H5.33228C5.04905 14.2221 4.77662 14.1137 4.57067 13.9193C4.36471 13.7248 4.24078 13.4591 4.22418 13.1763C4.20758 12.8936 4.29957 12.6152 4.48136 12.398C4.66315 12.1808 4.92101 12.0412 5.20226 12.0078L5.33228 12H10.8885ZM20.1041 2.32439C20.304 2.12509 20.5724 2.00938 20.8546 2.00076C21.1368 1.99215 21.4117 2.09127 21.6235 2.27799C21.8352 2.46472 21.968 2.72505 21.9947 3.00611C22.0215 3.28716 21.9403 3.56788 21.7676 3.79123L21.6754 3.89568L15.7935 9.77749H18.6672C18.9505 9.7778 19.2229 9.88626 19.4288 10.0807C19.6348 10.2751 19.7587 10.5409 19.7753 10.8236C19.7919 11.1064 19.6999 11.3848 19.5182 11.602C19.3364 11.8192 19.0785 11.9587 18.7972 11.9922L18.6672 12H13.111C12.8388 11.9999 12.5761 11.9 12.3727 11.7191C12.1693 11.5383 12.0394 11.2891 12.0075 11.0187L11.9998 10.8887V5.33252C12.0001 5.04929 12.1085 4.77686 12.303 4.57091C12.4974 4.36496 12.7631 4.24102 13.0459 4.22442C13.3286 4.20782 13.607 4.29981 13.8242 4.4816C14.0414 4.66339 14.181 4.92125 14.2145 5.2025L14.2222 5.33252V8.20619L20.1041 2.32439Z\" fill=\"currentColor\"/>\n</svg>","div":false,"iframe":false,"script":false,"compilable":false}}}},{"_id":"edba006a-76df-50c6-6f4d-42adb966e926","type":"Block","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4550"],"children":["edba006a-76df-50c6-6f4d-42adb966e927"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"edba006a-76df-50c6-6f4d-42adb966e927","type":"DropdownWrapper","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4529"],"children":["edba006a-76df-50c6-6f4d-42adb966e928","edba006a-76df-50c6-6f4d-42adb966e92a"],"data":{"search":{"exclude":true},"xattr":[],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"wrapper"},"attr":{"data-delay":0,"data-hover":false,"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"edba006a-76df-50c6-6f4d-42adb966e928","type":"DropdownToggle","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4533"],"children":["edba006a-76df-50c6-6f4d-42adb966e929"],"data":{"search":{"exclude":false},"xattr":[],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"toggle"},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"edba006a-76df-50c6-6f4d-42adb966e929","type":"HtmlEmbed","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4540","b2d08c04-1c71-977a-787e-8bbdc0eb456c"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\n  <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.4001 3.59995C14.4001 4.92543 13.3256 5.99995 12.0001 5.99995C10.6746 5.99995 9.6001 4.92543 9.6001 3.59995C9.6001 2.27447 10.6746 1.19995 12.0001 1.19995C13.3256 1.19995 14.4001 2.27447 14.4001 3.59995ZM14.4001 12C14.4001 13.3254 13.3256 14.4 12.0001 14.4C10.6746 14.4 9.6001 13.3254 9.6001 12C9.6001 10.6745 10.6746 9.59995 12.0001 9.59995C13.3256 9.59995 14.4001 10.6745 14.4001 12ZM12.0001 22.7999C13.3256 22.7999 14.4001 21.7254 14.4001 20.4C14.4001 19.0745 13.3256 18 12.0001 18C10.6746 18 9.6001 19.0745 9.6001 20.4C9.6001 21.7254 10.6746 22.7999 12.0001 22.7999Z\" fill=\"currentColor\"/>\n</svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\n  <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.4001 3.59995C14.4001 4.92543 13.3256 5.99995 12.0001 5.99995C10.6746 5.99995 9.6001 4.92543 9.6001 3.59995C9.6001 2.27447 10.6746 1.19995 12.0001 1.19995C13.3256 1.19995 14.4001 2.27447 14.4001 3.59995ZM14.4001 12C14.4001 13.3254 13.3256 14.4 12.0001 14.4C10.6746 14.4 9.6001 13.3254 9.6001 12C9.6001 10.6745 10.6746 9.59995 12.0001 9.59995C13.3256 9.59995 14.4001 10.6745 14.4001 12ZM12.0001 22.7999C13.3256 22.7999 14.4001 21.7254 14.4001 20.4C14.4001 19.0745 13.3256 18 12.0001 18C10.6746 18 9.6001 19.0745 9.6001 20.4C9.6001 21.7254 10.6746 22.7999 12.0001 22.7999Z\" fill=\"currentColor\"/>\n</svg>","div":false,"iframe":false,"script":false,"compilable":false},"type":"html"}}},{"_id":"edba006a-76df-50c6-6f4d-42adb966e92a","type":"DropdownList","tag":"nav","classes":["094b93dd-23b6-d83e-2cb9-0b0dc43b7d2e"],"children":["edba006a-76df-50c6-6f4d-42adb966e92b","edba006a-76df-50c6-6f4d-42adb966e949"],"data":{"search":{"exclude":false},"xattr":[],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"list"},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"nav"}},{"_id":"edba006a-76df-50c6-6f4d-42adb966e92b","type":"DropdownWrapper","tag":"div","classes":["094b93dd-23b6-d83e-2cb9-0b0dc43b7d2f"],"children":["edba006a-76df-50c6-6f4d-42adb966e92c","edba006a-76df-50c6-6f4d-42adb966e932"],"data":{"search":{"exclude":true},"xattr":[],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"wrapper"},"attr":{"data-delay":0,"data-hover":false,"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"edba006a-76df-50c6-6f4d-42adb966e92c","type":"DropdownToggle","tag":"div","classes":["094b93dd-23b6-d83e-2cb9-0b0dc43b7d2d"],"children":["edba006a-76df-50c6-6f4d-42adb966e92d","edba006a-76df-50c6-6f4d-42adb966e92f","edba006a-76df-50c6-6f4d-42adb966e931"],"data":{"search":{"exclude":false},"xattr":[],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"toggle"},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"edba006a-76df-50c6-6f4d-42adb966e92d","type":"Block","tag":"div","classes":[],"children":["edba006a-76df-50c6-6f4d-42adb966e92e"],"data":{"search":{"exclude":false},"xattr":[],"text":true,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"edba006a-76df-50c6-6f4d-42adb966e92e","text":true,"v":"Speed: "},{"_id":"edba006a-76df-50c6-6f4d-42adb966e92f","type":"Block","tag":"div","classes":[],"children":["edba006a-76df-50c6-6f4d-42adb966e930"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"speed-text"}],"text":true,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"edba006a-76df-50c6-6f4d-42adb966e930","text":true,"v":"Normal"},{"_id":"edba006a-76df-50c6-6f4d-42adb966e931","type":"HtmlEmbed","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb452d"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"24\" height=\"24\" preserveAspectRatio=\"xMidYMid meet\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"m10 17l5-5l-5-5v10z\"></path></svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"24\" height=\"24\" preserveAspectRatio=\"xMidYMid meet\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"m10 17l5-5l-5-5v10z\"></path></svg>","div":false,"script":false,"compilable":false,"iframe":false},"type":"html"}}},{"_id":"edba006a-76df-50c6-6f4d-42adb966e932","type":"DropdownList","tag":"nav","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4542"],"children":["edba006a-76df-50c6-6f4d-42adb966e933","edba006a-76df-50c6-6f4d-42adb966e935","edba006a-76df-50c6-6f4d-42adb966e937","edba006a-76df-50c6-6f4d-42adb966e939","edba006a-76df-50c6-6f4d-42adb966e93b"],"data":{"search":{"exclude":false},"xattr":[],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"list"},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"nav"}},{"_id":"edba006a-76df-50c6-6f4d-42adb966e933","type":"DropdownLink","tag":"a","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4543"],"children":["edba006a-76df-50c6-6f4d-42adb966e934"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video-speed","value":"0.5"}],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"link"},"attr":{"href":"#","id":""},"visibility":{"conditions":[]},"link":{"url":"#","mode":"external"}}},{"_id":"edba006a-76df-50c6-6f4d-42adb966e934","text":true,"v":"0.5x"},{"_id":"edba006a-76df-50c6-6f4d-42adb966e935","type":"DropdownLink","tag":"a","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4543"],"children":["edba006a-76df-50c6-6f4d-42adb966e936"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video-speed","value":"1"}],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"link"},"attr":{"href":"#","id":""},"visibility":{"conditions":[]},"link":{"url":"#","mode":"external"}}},{"_id":"edba006a-76df-50c6-6f4d-42adb966e936","text":true,"v":"Normal (1x)"},{"_id":"edba006a-76df-50c6-6f4d-42adb966e937","type":"DropdownLink","tag":"a","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4543"],"children":["edba006a-76df-50c6-6f4d-42adb966e938"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video-speed","value":"1.25"}],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"link"},"attr":{"href":"#","id":""},"visibility":{"conditions":[]},"link":{"url":"#","mode":"external"}}},{"_id":"edba006a-76df-50c6-6f4d-42adb966e938","text":true,"v":"1.25x"},{"_id":"edba006a-76df-50c6-6f4d-42adb966e939","type":"DropdownLink","tag":"a","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4543"],"children":["edba006a-76df-50c6-6f4d-42adb966e93a"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video-speed","value":"1.5"}],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"link"},"attr":{"href":"#","id":""},"visibility":{"conditions":[]},"link":{"url":"#","mode":"external"}}},{"_id":"edba006a-76df-50c6-6f4d-42adb966e93a","text":true,"v":"1.5x"},{"_id":"edba006a-76df-50c6-6f4d-42adb966e93b","type":"DropdownLink","tag":"a","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4543"],"children":["edba006a-76df-50c6-6f4d-42adb966e93c"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video-speed","value":"2"}],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"link"},"attr":{"href":"#","id":""},"visibility":{"conditions":[]},"link":{"url":"#","mode":"external"}}},{"_id":"edba006a-76df-50c6-6f4d-42adb966e93c","text":true,"v":"2x"},{"_id":"edba006a-76df-50c6-6f4d-42adb966e949","type":"DropdownWrapper","tag":"div","classes":["094b93dd-23b6-d83e-2cb9-0b0dc43b7d2f"],"children":["edba006a-76df-50c6-6f4d-42adb966e94a","edba006a-76df-50c6-6f4d-42adb966e950"],"data":{"search":{"exclude":true},"xattr":[],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"wrapper"},"attr":{"data-delay":0,"data-hover":false,"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"edba006a-76df-50c6-6f4d-42adb966e94a","type":"DropdownToggle","tag":"div","classes":["094b93dd-23b6-d83e-2cb9-0b0dc43b7d2d"],"children":["edba006a-76df-50c6-6f4d-42adb966e94b","edba006a-76df-50c6-6f4d-42adb966e94d","edba006a-76df-50c6-6f4d-42adb966e94f"],"data":{"search":{"exclude":false},"xattr":[],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"toggle"},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"edba006a-76df-50c6-6f4d-42adb966e94b","type":"Block","tag":"div","classes":[],"children":["edba006a-76df-50c6-6f4d-42adb966e94c"],"data":{"search":{"exclude":false},"xattr":[],"text":true,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"edba006a-76df-50c6-6f4d-42adb966e94c","text":true,"v":"Caption: "},{"_id":"edba006a-76df-50c6-6f4d-42adb966e94d","type":"Block","tag":"div","classes":[],"children":["edba006a-76df-50c6-6f4d-42adb966e94e"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"caption-lang"}],"text":true,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"edba006a-76df-50c6-6f4d-42adb966e94e","text":true,"v":"None"},{"_id":"edba006a-76df-50c6-6f4d-42adb966e94f","type":"HtmlEmbed","tag":"div","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb452d"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"24\" height=\"24\" preserveAspectRatio=\"xMidYMid meet\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"m10 17l5-5l-5-5v10z\"></path></svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"24\" height=\"24\" preserveAspectRatio=\"xMidYMid meet\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"m10 17l5-5l-5-5v10z\"></path></svg>","div":false,"script":false,"compilable":false,"iframe":false},"type":"html"}}},{"_id":"edba006a-76df-50c6-6f4d-42adb966e950","type":"DropdownList","tag":"nav","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4542"],"children":["edba006a-76df-50c6-6f4d-42adb966e951"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"caption-wrapper"}],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"list"},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"nav"}},{"_id":"edba006a-76df-50c6-6f4d-42adb966e951","type":"DropdownLink","tag":"a","classes":["b2d08c04-1c71-977a-787e-8bbdc0eb4543"],"children":["edba006a-76df-50c6-6f4d-42adb966e952"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video-caption","value":"none"}],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"link"},"attr":{"href":"#","id":""},"visibility":{"conditions":[]},"link":{"url":"#","mode":"external"}}},{"_id":"edba006a-76df-50c6-6f4d-42adb966e952","text":true,"v":"None"}],"styles":[{"_id":"0f9a5e04-bf9f-46ea-4e3a-8ef2ca2981c0","fake":false,"type":"class","name":"track-grab","namespace":"","comb":"","styleLess":"position: absolute; left: auto; top: 0%; right: -7.5px; bottom: 0%; z-index: -3; width: 20px; height: 20px; margin-top: auto; margin-right: auto; margin-bottom: auto; margin-left: auto; border-top-left-radius: 100vw; border-top-right-radius: 100vw; border-bottom-left-radius: 100vw; border-bottom-right-radius: 100vw; background-color: hsla(258, 0.00%, 100.00%, 1.00); pointer-events: none; transform: scale(0); transition-property: all; transition-duration: 450ms; transition-timing-function: ease-in-out;","variants":{"main_active":{"styleLess":"transform: scale(1.1);"}},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb452b","fake":false,"type":"class","name":"track","namespace":"","comb":"","styleLess":"width: 100%; height: 5px; background-color: hsla(0, 0.00%, 98.00%, 0.16);","variants":{},"children":["b2d08c04-1c71-977a-787e-8bbdc0eb455f","2ea562b8-f6d4-b40d-e2dd-24381381b93d"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb4580","fake":false,"type":"class","name":"1","namespace":"","comb":"&","styleLess":"position: static; top: 7%; right: 3%; z-index: 14; grid-column-gap: 0.5rem; grid-row-gap: 0.5rem;","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb4529","fake":false,"type":"class","name":"video-dropdown","namespace":"","comb":"","styleLess":"position: relative;","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"094b93dd-23b6-d83e-2cb9-0b0dc43b7d2d","fake":false,"type":"class","name":"videos-sub-dropdown-toggle 2","namespace":"","comb":"","styleLess":"display: flex; width: 100%; padding-top: 0.875rem; padding-right: 0.875rem; padding-bottom: 0.875rem; padding-left: 0.875rem; justify-content: center; align-items: center; grid-column-gap: 6px; grid-row-gap: 6px; border-bottom-style: solid; border-bottom-width: 0.0625rem; border-bottom-color: hsla(240, 0.00%, 100.00%, 0.07); color: hsla(0, 0.00%, 100.00%, 1.00);","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb4555","fake":false,"type":"class","name":"track-wrapper","namespace":"","comb":"","styleLess":"","variants":{"small":{"styleLess":"position: absolute; left: 0%; top: auto; right: 0%; bottom: 0.8rem; width: 93%; margin-right: auto; margin-left: auto;"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb4533","fake":false,"type":"class","name":"video-dropdown-toggle","namespace":"","comb":"","styleLess":"display: flex; padding-top: 0rem; padding-right: 0rem; padding-bottom: 0rem; padding-left: 0rem; justify-content: center; align-items: center; color: hsla(0, 0.00%, 100.00%, 1.00);","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb4557","fake":false,"type":"class","name":"volume-control-2","namespace":"","comb":"","styleLess":"display: none; justify-content: center; align-items: center; grid-column-gap: 10px;","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"094b93dd-23b6-d83e-2cb9-0b0dc43b7d2f","fake":false,"type":"class","name":"video-sub-dropdown 2","namespace":"","comb":"","styleLess":"width: 100%; margin-right: 0rem; margin-left: 0rem;","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb4531","fake":false,"type":"class","name":"video-title-wrapper","namespace":"","comb":"","styleLess":"position: absolute; left: 0%; top: 0%; right: 0%; bottom: auto; z-index: 2; display: flex; padding-top: 1.5rem; padding-right: 1.5rem; padding-bottom: 1.5rem; padding-left: 1.5rem; flex-direction: column; grid-row-gap: 5px; border-top-left-radius: 1.5rem; border-top-right-radius: 1.5rem; background-image: @img_654b8880f845aa22d695a504; background-position: 50% 0%; background-size: contain; background-repeat: repeat-x; opacity: 0; transition-property: opacity; transition-duration: 200ms; transition-timing-function: ease;","variants":{"medium":{"styleLess":"overflow: hidden; padding-top: 1.45rem; padding-right: 1.575rem; padding-left: 1.575rem;"},"tiny":{"styleLess":"z-index: 7; padding-top: 1rem; padding-right: 1.3rem; padding-bottom: 1.5rem; padding-left: 1.3rem; grid-row-gap: 0px;"}},"children":["befe03e9-c7e1-b8ea-212a-4780a73b1530"],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb452d","fake":false,"type":"class","name":"dropdown-icon","namespace":"","comb":"","styleLess":"display: flex; width: 1rem; height: 1rem; flex-direction: column; justify-content: center; align-items: center;","variants":{},"children":[],"createdBy":"6075409192d886a671499223","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb4550","fake":false,"type":"class","name":"control-button","namespace":"","comb":"","styleLess":"position: relative; z-index: 19; display: flex; flex-direction: column; justify-content: center; align-items: center; border-top-left-radius: 100vw; border-top-right-radius: 100vw; border-bottom-left-radius: 100vw; border-bottom-right-radius: 100vw; color: hsla(0, 0.00%, 100.00%, 1.00);","variants":{"tiny":{"styleLess":"height: 2.5rem; padding-top: 0rem; padding-right: 0rem; padding-bottom: 0rem; padding-left: 0rem;"},"small":{"styleLess":"width: 2rem; height: 2rem;"}},"children":["b2d08c04-1c71-977a-787e-8bbdc0eb456b","b2d08c04-1c71-977a-787e-8bbdc0eb4570","b2d08c04-1c71-977a-787e-8bbdc0eb4576"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb453d","fake":false,"type":"class","name":"video-controls-wrapper","namespace":"","comb":"","styleLess":"position: absolute; left: 0%; top: auto; right: 0%; bottom: 0%; z-index: 5; display: flex; width: 100%; padding-right: 1.5rem; padding-bottom: 1.5rem; padding-left: 1.5rem; flex-direction: column; align-items: stretch; border-bottom-left-radius: 1.5rem; border-bottom-right-radius: 1.5rem; background-image: linear-gradient(to bottom, hsla(0, 0.00%, 100.00%, 0.00), hsla(228, 23.81%, 4.12%, 1.00) 95%); opacity: 0; transition-property: opacity; transition-duration: 200ms; transition-timing-function: ease-in-out; color: hsla(0, 0.00%, 100.00%, 1.00);","variants":{},"children":["b2d08c04-1c71-977a-787e-8bbdc0eb4583","ab94c679-d2fe-b5fb-7d2b-a056343a5eb3"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb456c","fake":false,"type":"class","name":"small","namespace":"","comb":"&","styleLess":"width: 1.2rem; height: 1.2rem;","variants":{},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb4576","fake":false,"type":"class","name":"is-padding","namespace":"","comb":"&","styleLess":"display: block; padding-top: 0.6rem; padding-right: 0.6rem; padding-bottom: 0.6rem; padding-left: 0.6rem;","variants":{"small":{"styleLess":"display: flex; width: 2.4rem; height: 2.4rem;"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"0bb3e35a-e3ad-d0cd-1a83-223561d3051e","fake":false,"type":"class","name":"html-video-player","namespace":"","comb":"","styleLess":"position: relative; z-index: 0; overflow: hidden; width: 100%; height: 100%; border-top-left-radius: 25px; border-top-right-radius: 25px; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px;","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb4549","fake":false,"type":"class","name":"video-element","namespace":"","comb":"","styleLess":"color: hsla(0, 100.00%, 98.89%, 1.00);","variants":{},"children":[],"createdBy":"645217e03563196ad7f16539","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb4545","fake":false,"type":"class","name":"fullscreen","namespace":"","comb":"","styleLess":"display: flex; grid-column-gap: 1rem; grid-row-gap: 1rem;","variants":{"small":{"styleLess":"display: none;"}},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb4540","fake":false,"type":"class","name":"html-icon","namespace":"","comb":"","styleLess":"display: flex; width: 1.3rem; height: 1.3rem; justify-content: center; align-items: center;","variants":{"small":{"styleLess":"width: 1.5rem; height: 1.5rem;"}},"children":["b2d08c04-1c71-977a-787e-8bbdc0eb456c"],"createdBy":"645217e03563196ad7f16539","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb4538","fake":false,"type":"class","name":"video-volume-wrapper","namespace":"","comb":"","styleLess":"position: absolute; left: auto; top: 12%; right: 8%; bottom: auto; z-index: 2; display: flex; align-items: center; grid-column-gap: 0.75rem; grid-row-gap: 0.75rem;","variants":{},"children":["b2d08c04-1c71-977a-787e-8bbdc0eb4580"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb455a","fake":false,"type":"class","name":"video-duration","namespace":"","comb":"","styleLess":"width: 9ch; color: hsla(0, 0.00%, 100.00%, 0.70);","variants":{},"children":["2ea562b8-f6d4-b40d-e2dd-24381381b936"],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"094b93dd-23b6-d83e-2cb9-0b0dc43b7d2e","fake":false,"type":"class","name":"video-sub-dropdown-list-wrapper 2","namespace":"","comb":"","styleLess":"left: auto; top: auto; right: 0%; bottom: 0%; display: none;","variants":{"main_open":{"styleLess":"left: auto; top: auto; right: 0%; bottom: 2.6rem; z-index: 2; display: flex; overflow: hidden; padding-top: 0rem; padding-bottom: 0rem; padding-left: 0rem; flex-direction: column; align-items: stretch; border-top-left-radius: 0.75rem; border-top-right-radius: 0.75rem; border-bottom-left-radius: 0.75rem; border-bottom-right-radius: 0.75rem; background-color: hsla(0, 0.00%, 12.55%, 1.00); color: hsla(0, 0.00%, 100.00%, 1.00);"}},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb4542","fake":false,"type":"class","name":"video-sub-dropdown-list","namespace":"","comb":"","styleLess":"position: static;","variants":{"main_open":{"styleLess":"background-color: hsla(228, 0.00%, 100.00%, 0.08); color: hsla(0, 0.00%, 100.00%, 1.00);"}},"children":["2ea562b8-f6d4-b40d-e2dd-24381381b93a"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb4553","fake":false,"type":"class","name":"lower-video-controls","namespace":"","comb":"","styleLess":"display: flex; justify-content: space-between;","variants":{"small":{"styleLess":"margin-top: auto; margin-right: auto; margin-bottom: auto; margin-left: auto;"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb455f","fake":false,"type":"class","name":"video-element","namespace":"","comb":"&","styleLess":"position: relative; height: 6px; border-top-left-radius: 40px; border-top-right-radius: 40px; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px;","variants":{},"children":[],"createdBy":"645217e03563196ad7f16539","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb454e","fake":false,"type":"class","name":"video-loading-track","namespace":"","comb":"","styleLess":"position: absolute; left: 0%; top: 0%; right: 0%; bottom: 0%; width: 0%; height: 100%; border-top-left-radius: 40px; border-top-right-radius: 40px; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; background-color: hsla(0, 0.00%, 100.00%, 0.21);","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb454b","fake":false,"type":"class","name":"trackinner","namespace":"","comb":"","styleLess":"position: relative; z-index: 2; width: 0%; height: 100%; border-top-left-radius: 40px; border-top-right-radius: 40px; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; background-color: hsla(0, 0.00%, 100.00%, 1.00);","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb4551","fake":false,"type":"class","name":"icon-embed-xxsmall 2","namespace":"","comb":"","styleLess":"display: flex; width: 1.2rem; height: 1.2rem; flex-direction: column; justify-content: center; align-items: center;","variants":{},"children":[],"createdBy":"6075409192d886a671499223","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb4559","fake":false,"type":"class","name":"video-title","namespace":"","comb":"","styleLess":"color: hsla(0, 0.00%, 100.00%, 1.00); font-size: 1.375rem; line-height: 1.5; font-weight: 500;","variants":{"medium":{"styleLess":"font-size: 1.2rem;"},"small":{"styleLess":"font-size: 1.1rem;"},"tiny":{"styleLess":"font-size: 0.9rem;"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb4543","fake":false,"type":"class","name":"video-sub-dropdown-item","namespace":"","comb":"","styleLess":"padding-top: 8px; padding-right: 5px; padding-bottom: 8px; padding-left: 5px; transition-property: background-color; transition-duration: 200ms; transition-timing-function: ease; color: hsla(0, 0.00%, 100.00%, 1.00); text-align: center;","variants":{"main_hover":{"styleLess":"background-color: hsla(0, 0.00%, 16.00%, 1.00);"}},"children":["2ea562b8-f6d4-b40d-e2dd-24381381b937"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"a1deef68-5820-c521-209c-c2e76baccf24","fake":false,"type":"class","name":"show","namespace":"","comb":"&","styleLess":"opacity: 1;","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb452c","fake":false,"type":"class","name":"video-volume-embed","namespace":"","comb":"","styleLess":"display: flex; overflow: hidden; max-width: 0px; transform: rotate(0deg); transition-property: max-width; transition-duration: 400ms; transition-timing-function: cubic-bezier(.645, .045, .355, 1);","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb456a","fake":false,"type":"class","name":"hide-mobile-landscape","namespace":"","comb":"&","styleLess":"width: 100%; margin-top: 10px; justify-content: space-between;","variants":{"small":{"styleLess":"display: none;"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb453b","fake":false,"type":"class","name":"video-controls","namespace":"","comb":"","styleLess":"display: flex; align-items: center; grid-column-gap: 6px; grid-row-gap: 6px; color: hsla(0, 0.00%, 100.00%, 1.00);","variants":{},"children":["b2d08c04-1c71-977a-787e-8bbdc0eb4561","b2d08c04-1c71-977a-787e-8bbdc0eb456a","2ea562b8-f6d4-b40d-e2dd-24381381b938","2ea562b8-f6d4-b40d-e2dd-24381381b93b","2ea562b8-f6d4-b40d-e2dd-24381381b93c"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb4561","fake":false,"type":"class","name":"player_1","namespace":"","comb":"&","styleLess":"position: absolute; left: 0%; top: 0%; right: 0%; bottom: 0%; z-index: 0; justify-content: center; grid-column-gap: 1.25rem; grid-row-gap: 1.25rem; opacity: 0; transition-property: opacity; transition-duration: 300ms; transition-timing-function: ease;","variants":{"small":{"styleLess":"display: flex; justify-content: center; justify-items: center; align-content: center; grid-auto-columns: 1fr; grid-column-gap: 1rem; grid-row-gap: 1rem; grid-template-columns: 1fr 1fr 1fr 1fr 1fr; grid-template-rows: auto;"}},"children":["a1deef68-5820-c521-209c-c2e76baccf24"],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"ab94c679-d2fe-b5fb-7d2b-a056343a5eb3","fake":false,"type":"class","name":"show","namespace":"","comb":"&","styleLess":"opacity: 1;","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"befe03e9-c7e1-b8ea-212a-4780a73b1530","fake":false,"type":"class","name":"show","namespace":"","comb":"&","styleLess":"opacity: 1;","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb453c","fake":false,"type":"class","name":"video-track-wrapper","namespace":"","comb":"","styleLess":"display: flex; grid-column-gap: 4px;","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"b2d08c04-1c71-977a-787e-8bbdc0eb454d","fake":false,"type":"class","name":"flowplay-video-wrapper","namespace":"","comb":"","styleLess":"position: relative; overflow: hidden; width: 100%; aspect-ratio: 16/9; border-top-left-radius: 1.5rem; border-top-right-radius: 1.5rem; border-bottom-left-radius: 1.5rem; border-bottom-right-radius: 1.5rem; background-color: hsla(0, 0.00%, 6.00%, 1.00); box-shadow: 0 0 0 0 rgba(0,0,0,0), 0 2px 3.2px 0 rgba(0,0,0,0.046), 0 4px 6.5px 0 rgba(0,0,0,0.058), 0 7px 9.7px 0 rgba(0,0,0,0.065), 0 9px 13.1px 0 rgba(0,0,0,0.069), 0 12px 16.6px 0 rgba(0,0,0,0.071), 0 17px 20.3px 0 rgba(0,0,0,0.074), 0 22px 24.4px 0 rgba(0,0,0,0.076), 0 31px 29.2px 0 rgba(0,0,0,0.078), 0 45px 35.5px 0 rgba(0,0,0,0.082), 0 74px 45.5px 0 rgba(0,0,0,0.089); transition-property: box-shadow; transition-duration: 200ms; transition-timing-function: ease-out;","variants":{"medium":{"styleLess":"min-height: auto; min-width: 90vw; border-top-left-radius: 1.25rem; border-top-right-radius: 1.25rem; border-bottom-left-radius: 1.25rem; border-bottom-right-radius: 1.25rem;"},"main_hover":{"styleLess":"box-shadow: 0 0 0 0 rgba(0,0,0,0), 0 2px 3.2px 0 rgba(0,0,0,0.046), 0 4px 6.5px 0 rgba(0,0,0,0.058), 0 7px 9.7px 0 rgba(0,0,0,0.065), 0 9px 13.1px 0 rgba(0,0,0,0.069), 0 12px 16.6px 0 rgba(0,0,0,0.071), 0 17px 20.3px 0 rgba(0,0,0,0.074), 0 22px 24.4px 0 rgba(0,0,0,0.076), 0 31px 29.2px 0 rgba(0,0,0,0.078), 0 45px 35.5px 0 rgba(0,0,0,0.082), 0 74px 45.5px 0 rgba(0,0,0,0.089);"}},"children":[],"createdBy":null,"selector":null}],"assets":[{"cdnUrl":"https://assets-global.website-files.com/654b8880f845aa22d695a4ff/654b8880f845aa22d695a504_Background.png","siteId":"654b8880f845aa22d695a4ff","width":1600,"isHD":false,"height":192,"fileName":"654b8880f845aa22d695a504_Background.png","createdOn":"2023-08-29T17:38:25.031Z","origFileName":"Background.png","fileHash":"4a66f03ceede4e7875d77c9475bc1b8f","translationLoading":false,"variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/654b8880f845aa22d695a4ff/654b8880f845aa22d695a504_Background-p-500.png","origFileName":"Background-p-500.png","fileName":"654b8880f845aa22d695a504_Background-p-500.png","size":3096,"format":"png","width":500,"quality":100,"_id":"64d685e8ee36981d0e3284bb","cdnUrl":"https://assets-global.website-files.com/654b8880f845aa22d695a4ff/654b8880f845aa22d695a504_Background-p-500.png"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/654b8880f845aa22d695a4ff/654b8880f845aa22d695a504_Background-p-800.png","origFileName":"Background-p-800.png","fileName":"654b8880f845aa22d695a504_Background-p-800.png","size":6895,"format":"png","width":800,"quality":100,"_id":"64d685e8ee36981d0e3284bc","cdnUrl":"https://assets-global.website-files.com/654b8880f845aa22d695a4ff/654b8880f845aa22d695a504_Background-p-800.png"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/654b8880f845aa22d695a4ff/654b8880f845aa22d695a504_Background-p-1080.png","origFileName":"Background-p-1080.png","fileName":"654b8880f845aa22d695a504_Background-p-1080.png","size":28082,"format":"png","width":1080,"quality":100,"_id":"64d685e8ee36981d0e3284bd","cdnUrl":"https://assets-global.website-files.com/654b8880f845aa22d695a4ff/654b8880f845aa22d695a504_Background-p-1080.png"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/654b8880f845aa22d695a4ff/654b8880f845aa22d695a504_Background-p-130x130q80.png","origFileName":"Background-p-130x130q80.png","fileName":"654b8880f845aa22d695a504_Background-p-130x130q80.png","format":"png","_id":"64ee2d1164b28dcf6679f6f9","cdnUrl":"https://assets-global.website-files.com/654b8880f845aa22d695a4ff/654b8880f845aa22d695a504_Background-p-130x130q80.png"}],"mimeType":"image/png","s3Url":"https://s3.amazonaws.com/webflow-prod-assets/654b8880f845aa22d695a4ff/654b8880f845aa22d695a504_Background.png","thumbUrl":"https://assets-global.website-files.com/654b8880f845aa22d695a4ff/654b8880f845aa22d695a504_Background-p-130x130q80.png","_id":"654b8880f845aa22d695a504","updatedOn":"2023-11-08T13:09:20.773Z","fileSize":47883,"localizedSettings":{}}],"ix1":[],"ix2":{"interactions":[{"id":"i-5","interactionTypeId":"MOUSE_HOVER_INTERACTION","eventIds":["e-9","e-10"],"target":"659d4cc518e024980cd0d538|9c46c431-579c-4e7b-1813-c3e97fe66ef0","createdOn":1704807622429}],"events":[{"id":"e-9","name":"","animationType":"preset","eventTypeId":"MOUSE_OVER","action":{"id":"","actionTypeId":"GENERAL_START_ACTION","instant":true,"config":{"delay":0,"easing":"","duration":0,"actionListId":"a","affectedElements":{},"playInReverse":false,"autoStopEventId":"e-10"}},"mediaQueries":["main"],"target":{"id":"659d4cc518e024980cd0d538|9c46c431-579c-4e7b-1813-c3e97fe66ef0","appliesTo":"ELEMENT","styleBlockIds":[]},"targets":[{"id":"659d4cc518e024980cd0d538|9c46c431-579c-4e7b-1813-c3e97fe66ef0","appliesTo":"ELEMENT","styleBlockIds":[]}],"config":{"loop":false,"playInReverse":false,"scrollOffsetValue":null,"scrollOffsetUnit":null,"delay":null,"direction":null,"effectIn":null},"createdOn":1704807622429},{"id":"e-10","name":"","animationType":"preset","eventTypeId":"MOUSE_OUT","action":{"id":"","actionTypeId":"GENERAL_START_ACTION","instant":true,"config":{"delay":0,"easing":"","duration":0,"actionListId":"a-2","affectedElements":{},"playInReverse":false,"autoStopEventId":"e-9"}},"mediaQueries":["main"],"target":{"id":"659d4cc518e024980cd0d538|9c46c431-579c-4e7b-1813-c3e97fe66ef0","appliesTo":"ELEMENT","styleBlockIds":[]},"targets":[{"id":"659d4cc518e024980cd0d538|9c46c431-579c-4e7b-1813-c3e97fe66ef0","appliesTo":"ELEMENT","styleBlockIds":[]}],"config":{"loop":false,"playInReverse":false,"scrollOffsetValue":null,"scrollOffsetUnit":null,"delay":null,"direction":null,"effectIn":null},"createdOn":1704807622429}],"actionLists":[{"id":"a","title":"show-controls player-1","actionItemGroups":[{"actionItems":[{"id":"a-n","actionTypeId":"STYLE_OPACITY","config":{"delay":100,"easing":"outQuint","duration":250,"target":{"nodeId":"654b8880f845aa22d695a4fe|12af78fb-bbc1-974f-7dcb-b6de1aec108d","appliesTo":"ELEMENT","styleBlockIds":[],"boundaryMode":false},"value":100,"unit":"%"},"instant":false},{"id":"a-n-2","actionTypeId":"STYLE_OPACITY","config":{"delay":100,"easing":"","duration":250,"target":{"nodeId":"654b8880f845aa22d695a4fe|12af78fb-bbc1-974f-7dcb-b6de1aec10d8","appliesTo":"ELEMENT_CLASS","styleBlockIds":["b2d08c04-1c71-977a-787e-8bbdc0eb455d"],"useEventTarget":"CHILDREN","boundaryMode":false},"value":100,"unit":"%"},"instant":false}]}],"useFirstGroupAsInitialState":false,"createdOn":1688478421949},{"id":"a-2","title":"hide-controls player-1","actionItemGroups":[{"actionItems":[{"id":"a-2-n","actionTypeId":"STYLE_OPACITY","config":{"delay":0,"easing":"","duration":500,"target":{"nodeId":"654b8880f845aa22d695a4fe|12af78fb-bbc1-974f-7dcb-b6de1aec108d","appliesTo":"ELEMENT","styleBlockIds":[],"boundaryMode":false},"value":0,"unit":"%"},"instant":false},{"id":"a-2-n-2","actionTypeId":"STYLE_OPACITY","config":{"delay":0,"easing":"","duration":500,"target":{"nodeId":"654b8880f845aa22d695a4fe|12af78fb-bbc1-974f-7dcb-b6de1aec10d8","appliesTo":"ELEMENT_CLASS","styleBlockIds":["b2d08c04-1c71-977a-787e-8bbdc0eb455d"],"useEventTarget":"CHILDREN","boundaryMode":false},"value":0,"unit":"%"},"instant":false}]}],"useFirstGroupAsInitialState":false,"createdOn":1688478421949}]}},"meta":{"unlinkedSymbolCount":0,"droppedLinks":0,"dynBindRemovedCount":0,"dynListBindRemovedCount":0,"paginationRemovedCount":0,"universalBindingsRemovedCount":0}}

Webflow structure for Vimeo Videos

html-wrapper
f-data-video = wrapper
vimeo-video-element
f-data-video = vimeo-element
f-data-video-id = {vimeo-video-id}
f-data-video-controls = false
video-control-wrapper
video-play-button
f-data-video = play-button
video-pause-button
f-data-video = pause-button
video-track-wrapper
video-track
f-data-video = progress-bar
video-progress-bar
f-data-video = progress
video-time-wrapper
video-current-time
f-data-video = current-time
video-duration
f-data-video = duration
settings-dropdown
dropdown-toggle
dropdown-list
speed-dropdown
dropdown-toggle
dropdown-list
speed-item
f-data-video-speed = 0.5
speed-item
f-data-video-speed = 1
speed-item
f-data-video-speed = 1.25
This is a live demo. Click play!
Office Olympics
The Office S02E03
00:00
 / 
00:00

Vimeo Video Element

Add a Div Block inside your wrapper element. This is the Div Block that will contain your Vimeo iframe

To this Div Block add these following attributes

f-data-video
=
vimeo-element
f-data-video-id
=
{vimeo-video-id}
f-data-video-controls
=
false

Essential Video Attributes

These attributes are essential for Flowplay to work.

video Player Wrapper

f-data-video
=
wrapper

Vimeo Video Element

f-data-video
=
vimeo-element
f-data-video-id
=
{vimeo-video-id}
f-data-video-controls
=
false

Vimeo iframe styling

If you want to style the iframe, add a div to your page, style it however you want and add this attribute to that div block. This class and styling will be added to your iframe.

f-data-video
=
vimeo-player

💡 This is useful if you're trying to make your Vimeo player fill up the full area of your wrapper

Playback control attributes

To add custom playback controls on your HTML videos.

Play button

f-data-video
=
play-button
Add this to any Button or Div Block

Pause button

f-data-video
=
pause-button
Add this to any Button or Div Block

Replay button

f-data-video
=
replay-button
Add this to any Button or Div Block

Seek forward button

f-data-video
=
forward-button
Add this to any Button or Div Block

Seek backwards button

f-data-video
=
backward-button
Add this to any Button or Div Block

Fullscreen

f-data-video
=
fullscreen
Add this to any Button or Div Block

Progress Bar + Indicator

f-data-video
=
progress-bar
f-data-video
=
progress

Video Buffer Bar

f-data-video
=
loading

Video current Time + Duration

f-data-video
=
current-time
f-data-video
=
duration
Add this to any Text Block or Text Span

Keyboard shortcuts

f-data-video
=
shortcuts
Add this to the element with f-data-video=wrapper attribute

Powerup Attributes

Extra features to level up your HTML videos.

volume range

Volume Range Slider

f-data-video
=
volume-slider

Add this to the HTML range slider embed

Volume Level text

f-data-video
=
volume-text

Add this to any text block

💡 Use a HTML range slider

Please note: Volume control of the HTML element doesn't affect on IOS device.
Classic Apple. Learn more here.

Mute button

f-data-video
=
volume-button
Add this to any Button or Div Block
Please note that for the mute button to work, you need to add a volume slider inside the player.
It can be hidden but has to be present on with the correct attributes.

custom thumbnail

Please note: This will display the thumbnail back when the video is paused.

Poster Thumbnail

f-data-video
=
poster

💡 You can use an Image element to give your videos a custom poster thumbnail.

Please note: This will display the thumbnail back when the video is paused.

show Thumbnail once

f-data-poster-once
=
true

💡 Add this to the Image element that has the f-data-video = poster attribute

This will only show the poster once, before the video is played and after that it won't appear.

Loop, muted & Autoplay

Add these attribute to the Div Block with the f-data-video = vimeo-element attribute.

Vimeo Autoplay

f-data-video-autoplay
=
true

Vimeo Muted

f-data-video-muted
=
true

For good UX, please mute your Vimeo videos.

Vimeo Loop

f-data-video-loop
=
true

💡 Things to note

Please add a mute button and a volume range slider inside the player to make this work. This can be hidden but it has to be present inside the player.

💡 Can I use this as Background Videos?
We do not recommend this for BG videos as Vimeo videos often follow the
uploaded aspect ratio and can't be filled to cover the Div Block.

Video Speed

Video Speed Selector

f-data-video-speed
=
{speed}

{speed} can be any integer > 0
This attribute can be added to any div block or link block

Video Speed Text

f-data-video
=
speed-text

If you want display the video speed,
add this to any text block

💡 Use a Dropdown element to contain your speed selectors

Show UI elements when paused

Add this attribute to elements you want to show when the video is paused but hide when video is playing.

Element to show/Hide

f-data-video
=
show-pause

Add this attribute to all elements you want to show when paused.

Show Combo Class

.show

This combo class is added to the UI element when video is paused.

Video Overlay Control

This is used when you want users to click on the player to play/pause.
Examples: Youtube, Vimeo, Netlfix

Overlay wrapper

f-data-video
=
poster-button

Overlay Play Icon

f-data-video
=
play-icon

Overlay Pause Icon

f-data-video
=
pause-icon

Vimeo Captions

Display closed captions or subtitles on your Vimeo video.

Enable Caption Button

f-data-video
=
caption

Disable Caption Button

f-data-video
=
caption-disabled

CC Language Selector List

f-data-video
=
caption-wrapper

Add this to the Dropdown List element

CC Language Selector Item

f-data-video-caption
=
none

Add this to only the FIRST link

CC Language text

f-data-video
=
caption-lang

Add this to the text that will show the language selected. This can we any Text Block.

vimeo miscellaneous

Other Vimeo features.

Get video Title

Display the title of the Vimeo video dynamically

f-data-video
=
title
Add this to any Text Block or Text Span

Custom “loading” progress Div

Display a custom loader when Vimeo Video is loading

f-data-video
=
loader
Add this to any Div Block

Components & Starter kits

Vimeo Player Starter Kit #1

Copy this starter kit into your Webflow project
{"type":"@webflow/XscpData","payload":{"nodes":[{"_id":"4a529af9-6d34-eaa0-a51d-78babe4a17c7","type":"Block","tag":"div","classes":["f8ebac68-514a-77bd-9910-b77f979f72a7"],"children":["afd97aa2-b18d-6336-fb68-f18509923337","4a529af9-6d34-eaa0-a51d-78babe4a17c9","4a529af9-6d34-eaa0-a51d-78babe4a17ce"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"wrapper"}],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":"video1"},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"afd97aa2-b18d-6336-fb68-f18509923337","type":"Block","tag":"div","classes":["102a3f6d-1899-0a11-ed2f-acd1edce4003"],"children":["afd97aa2-b18d-6336-fb68-f18509923338"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"vimeo-element"},{"name":"f-data-video-id","value":"501090222"},{"name":"f-data-video-controls","value":"false"}],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"afd97aa2-b18d-6336-fb68-f18509923338","type":"Block","tag":"div","classes":["102a3f6d-1899-0a11-ed2f-acd1edce4004"],"children":[],"data":{"xattr":[{"name":"f-data-video","value":"vimeo-player"}],"text":false,"tag":"div"}},{"_id":"4a529af9-6d34-eaa0-a51d-78babe4a17c9","type":"Block","tag":"div","classes":["310c7ca3-45df-10c2-5e3e-c7307a4bdb9c","400ff970-4235-75b1-dd68-25dd3807709f","f329980b-afce-72b0-6712-a687b3a7d364"],"children":["4a529af9-6d34-eaa0-a51d-78babe4a17ca","4a529af9-6d34-eaa0-a51d-78babe4a17cc"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"4a529af9-6d34-eaa0-a51d-78babe4a17ca","type":"Block","tag":"div","classes":["90a53f2a-f929-3a56-308b-1a89c7028561"],"children":["4a529af9-6d34-eaa0-a51d-78babe4a17cb"],"data":{"search":{"exclude":false},"xattr":[],"text":true,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"4a529af9-6d34-eaa0-a51d-78babe4a17cb","text":true,"v":"Office Olympics"},{"_id":"4a529af9-6d34-eaa0-a51d-78babe4a17cc","type":"Block","tag":"div","classes":["ae59975c-ac7b-e3db-ee5c-5355a0d0ef28"],"children":["4a529af9-6d34-eaa0-a51d-78babe4a17cd"],"data":{"search":{"exclude":false},"xattr":[],"text":true,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"4a529af9-6d34-eaa0-a51d-78babe4a17cd","text":true,"v":"The Office S02E03"},{"_id":"4a529af9-6d34-eaa0-a51d-78babe4a17ce","type":"Block","tag":"div","classes":["f8ebac68-514a-77bd-9910-b77f979f72ae","fc762881-922e-08fc-50dc-56cb8f8826a5"],"children":["4a529af9-6d34-eaa0-a51d-78babe4a17e6","4a529af9-6d34-eaa0-a51d-78babe4a17db","c925b912-28c4-2937-0357-249bbaea0c7e","4a529af9-6d34-eaa0-a51d-78babe4a17d7"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"4a529af9-6d34-eaa0-a51d-78babe4a17e6","type":"Block","tag":"div","classes":["f8ebac68-514a-77bd-9910-b77f979f72ab","2dd8cdfd-cbfd-7db8-1550-c263e1b5b802"],"children":["4a529af9-6d34-eaa0-a51d-78babe4a17e7","64ef7aed-6f65-1656-dde0-c7d4739ed8aa"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"style":{"base":{"small":{"noPseudo":{"gridColumnEnd":"span 1","gridColumnStart":"span 1","gridRowEnd":"span 1","gridRowStart":"span 1"}}}},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"4a529af9-6d34-eaa0-a51d-78babe4a17e7","type":"Block","tag":"div","classes":["6a27efd0-bea8-1f1d-1ec3-ce38d1bb9ac0","6a27efd0-bea8-1f1d-1ec3-ce38d1bb9ac2"],"children":["4a529af9-6d34-eaa0-a51d-78babe4a17e8"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"4a529af9-6d34-eaa0-a51d-78babe4a17e8","type":"Link","tag":"a","classes":["37f1c06b-fd3d-d33f-6495-f7d7f9aa923f"],"children":["4a529af9-6d34-eaa0-a51d-78babe4a17e9"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"volume-button"}],"block":"inline","displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"button":false,"link":{"mode":"external","url":"#"}}},{"_id":"4a529af9-6d34-eaa0-a51d-78babe4a17e9","type":"HtmlEmbed","tag":"div","classes":["b391cf0a-7922-2069-b97a-a7b3a11957da","6ed4b41b-ef0f-e511-5ec2-c432cbdd5da1"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\n  <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.5 7.86233C0.671573 7.86233 0 8.5339 0 9.36233V14.6383C0 15.4667 0.671574 16.1383 1.5 16.1383H5.51737L9.85343 20.4743C10.7984 21.4192 12.4141 20.75 12.4141 19.4136V4.58699C12.4141 3.25064 10.7984 2.58139 9.85343 3.52633L5.51737 7.86233H1.5ZM20.3897 5.59786C20.0774 5.28539 19.5708 5.28531 19.2584 5.59768C18.9459 5.91005 18.9458 6.41658 19.2582 6.72905C20.608 8.07926 21.3662 9.9103 21.3662 11.8195C21.3662 13.7287 20.608 15.5598 19.2582 16.91C18.9458 17.2224 18.9459 17.729 19.2584 18.0413C19.5708 18.3537 20.0774 18.3536 20.3897 18.0412C22.0395 16.3909 22.9662 14.153 22.9662 11.8195C22.9662 9.48605 22.0395 7.24812 20.3897 5.59786ZM17.5658 8.42189C17.2534 8.10942 16.7469 8.10934 16.4344 8.42171C16.1219 8.73407 16.1219 9.2406 16.4342 9.55307C17.0341 10.1532 17.3711 10.967 17.3711 11.8155C17.3711 12.6641 17.0341 13.4779 16.4342 14.0779C16.1219 14.3904 16.1219 14.8969 16.4344 15.2093C16.7469 15.5217 17.2534 15.5216 17.5658 15.2091C18.4656 14.309 18.9711 13.0883 18.9711 11.8155C18.9711 10.5427 18.4656 9.32203 17.5658 8.42189Z\" fill=\"currentColor\"/>\n</svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\n  <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.5 7.86233C0.671573 7.86233 0 8.5339 0 9.36233V14.6383C0 15.4667 0.671574 16.1383 1.5 16.1383H5.51737L9.85343 20.4743C10.7984 21.4192 12.4141 20.75 12.4141 19.4136V4.58699C12.4141 3.25064 10.7984 2.58139 9.85343 3.52633L5.51737 7.86233H1.5ZM20.3897 5.59786C20.0774 5.28539 19.5708 5.28531 19.2584 5.59768C18.9459 5.91005 18.9458 6.41658 19.2582 6.72905C20.608 8.07926 21.3662 9.9103 21.3662 11.8195C21.3662 13.7287 20.608 15.5598 19.2582 16.91C18.9458 17.2224 18.9459 17.729 19.2584 18.0413C19.5708 18.3537 20.0774 18.3536 20.3897 18.0412C22.0395 16.3909 22.9662 14.153 22.9662 11.8195C22.9662 9.48605 22.0395 7.24812 20.3897 5.59786ZM17.5658 8.42189C17.2534 8.10942 16.7469 8.10934 16.4344 8.42171C16.1219 8.73407 16.1219 9.2406 16.4342 9.55307C17.0341 10.1532 17.3711 10.967 17.3711 11.8155C17.3711 12.6641 17.0341 13.4779 16.4342 14.0779C16.1219 14.3904 16.1219 14.8969 16.4344 15.2093C16.7469 15.5217 17.2534 15.5216 17.5658 15.2091C18.4656 14.309 18.9711 13.0883 18.9711 11.8155C18.9711 10.5427 18.4656 9.32203 17.5658 8.42189Z\" fill=\"currentColor\"/>\n</svg>","div":false,"iframe":false,"script":false,"compilable":false},"type":"html"}}},{"_id":"64ef7aed-6f65-1656-dde0-c7d4739ed8aa","type":"HtmlEmbed","tag":"div","classes":["b391cf0a-7922-2069-b97a-a7b3a11957d8"],"children":[],"v":"<input class=\"slider\" type=\"range\" f-data-video=\"volume-slider\" min=\"0\" max=\"1\" step=\"0.01\" value=\"0.5\">","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"meta":{"html":"<input class=\"slider\" type=\"range\" f-data-video=\"volume-slider\" min=\"0\" max=\"1\" step=\"0.01\" value=\"0.5\">","div":false,"iframe":false,"script":false,"compilable":false},"type":"html"}}},{"_id":"4a529af9-6d34-eaa0-a51d-78babe4a17db","type":"Block","tag":"div","classes":["f8ebac68-514a-77bd-9910-b77f979f72ab","83882ba1-fe51-360f-e909-6d4b93f9b024"],"children":["4a529af9-6d34-eaa0-a51d-78babe4a17dc","4a529af9-6d34-eaa0-a51d-78babe4a17e2","4a529af9-6d34-eaa0-a51d-78babe4a17de","4a529af9-6d34-eaa0-a51d-78babe4a17e0","de5a539a-9926-ae71-e8c8-0fe24fb983ba"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"style":{"base":{"small":{"noPseudo":{"gridColumnEnd":"span 1","gridColumnStart":"span 1","gridRowEnd":"span 1","gridRowStart":"span 1"}}}},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"4a529af9-6d34-eaa0-a51d-78babe4a17dc","type":"Link","tag":"a","classes":["b391cf0a-7922-2069-b97a-a7b3a11957e9","6f591eb8-6205-e7b6-f845-87ffff734d27"],"children":["4a529af9-6d34-eaa0-a51d-78babe4a17dd"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"replay-button"}],"block":"inline","displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[true]},"button":false,"link":{"mode":"external","url":"#"}}},{"_id":"4a529af9-6d34-eaa0-a51d-78babe4a17dd","type":"HtmlEmbed","tag":"div","classes":["b391cf0a-7922-2069-b97a-a7b3a11957da"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\">\n  <g clip-path=\"url(#clip0_45_692)\">\n    <path d=\"M5.98477 22.7035C7.6253 30.2968 15.0587 34.9521 22.5878 33.1014C30.1169 31.2506 34.8905 23.5946 33.25 16.0013C31.6095 8.40793 24.176 3.75263 16.6469 5.60339C12.3644 6.6561 8.97331 9.58701 7.14703 13.3163M5.38393 9.95937L6.48262 14.7846L11.4217 13.4453\" stroke=\"currentColor\" stroke-width=\"2.375\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n  </g>\n  <defs>\n    <clipPath id=\"clip0_45_692\">\n      <rect width=\"36\" height=\"36\" fill=\"white\"/>\n    </clipPath>\n  </defs>\n</svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"type":"html","meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\">\n  <g clip-path=\"url(#clip0_45_692)\">\n    <path d=\"M5.98477 22.7035C7.6253 30.2968 15.0587 34.9521 22.5878 33.1014C30.1169 31.2506 34.8905 23.5946 33.25 16.0013C31.6095 8.40793 24.176 3.75263 16.6469 5.60339C12.3644 6.6561 8.97331 9.58701 7.14703 13.3163M5.38393 9.95937L6.48262 14.7846L11.4217 13.4453\" stroke=\"currentColor\" stroke-width=\"2.375\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\n  </g>\n  <defs>\n    <clipPath id=\"clip0_45_692\">\n      <rect width=\"36\" height=\"36\" fill=\"white\"/>\n    </clipPath>\n  </defs>\n</svg>","div":false,"iframe":false,"script":false,"compilable":false}}}},{"_id":"4a529af9-6d34-eaa0-a51d-78babe4a17e2","type":"Link","tag":"a","classes":["b391cf0a-7922-2069-b97a-a7b3a11957e9","6f591eb8-6205-e7b6-f845-87ffff734d27"],"children":["e0dfd401-c467-ba04-f6f4-1efa0adebb57"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"backward-button"}],"block":"inline","displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"button":false,"link":{"mode":"external","url":"#"}}},{"_id":"e0dfd401-c467-ba04-f6f4-1efa0adebb57","type":"HtmlEmbed","tag":"div","classes":["b391cf0a-7922-2069-b97a-a7b3a11957da"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"32\" height=\"32\" preserveAspectRatio=\"xMidYMid meet\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M11.99 5V1l-5 5l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6s-6-2.69-6-6h-2c0 4.42 3.58 8 8 8s8-3.58 8-8s-3.58-8-8-8zm-1.1 11h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09V16zm4.28-1.76c0 .32-.03.6-.1.82s-.17.42-.29.57s-.28.26-.45.33s-.37.1-.59.1s-.41-.03-.59-.1s-.33-.18-.46-.33s-.23-.34-.3-.57s-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57s.28-.26.45-.33s.37-.1.59-.1s.41.03.59.1s.33.18.46.33s.23.34.3.57s.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31s-.11-.14-.19-.17s-.16-.05-.25-.05s-.18.02-.25.05s-.14.09-.19.17s-.09.18-.12.31s-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32s.11.14.19.17s.16.05.25.05s.18-.02.25-.05s.14-.09.19-.17s.09-.19.11-.32s.04-.29.04-.48v-.97z\"></path></svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"type":"html","meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"32\" height=\"32\" preserveAspectRatio=\"xMidYMid meet\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M11.99 5V1l-5 5l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6s-6-2.69-6-6h-2c0 4.42 3.58 8 8 8s8-3.58 8-8s-3.58-8-8-8zm-1.1 11h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09V16zm4.28-1.76c0 .32-.03.6-.1.82s-.17.42-.29.57s-.28.26-.45.33s-.37.1-.59.1s-.41-.03-.59-.1s-.33-.18-.46-.33s-.23-.34-.3-.57s-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57s.28-.26.45-.33s.37-.1.59-.1s.41.03.59.1s.33.18.46.33s.23.34.3.57s.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31s-.11-.14-.19-.17s-.16-.05-.25-.05s-.18.02-.25.05s-.14.09-.19.17s-.09.18-.12.31s-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32s.11.14.19.17s.16.05.25.05s.18-.02.25-.05s.14-.09.19-.17s.09-.19.11-.32s.04-.29.04-.48v-.97z\"></path></svg>","div":false,"iframe":false,"script":false,"compilable":false}}}},{"_id":"4a529af9-6d34-eaa0-a51d-78babe4a17de","type":"Link","tag":"a","classes":["b391cf0a-7922-2069-b97a-a7b3a11957e9","6f591eb8-6205-e7b6-f845-87ffff734d27"],"children":["4a529af9-6d34-eaa0-a51d-78babe4a17df"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"play-button"}],"block":"inline","displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[true]},"button":false,"link":{"mode":"external","url":"#"}}},{"_id":"4a529af9-6d34-eaa0-a51d-78babe4a17df","type":"HtmlEmbed","tag":"div","classes":["b391cf0a-7922-2069-b97a-a7b3a11957da"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\">\n  <path d=\"M7.5 7.2475C7.5 6.06075 8.81287 5.34399 9.81114 5.98573L26.5372 16.7382C27.4557 17.3287 27.4557 18.6713 26.5373 19.2618L9.81114 30.0143C8.81287 30.656 7.5 29.9393 7.5 28.7525V7.2475Z\" fill=\"currentColor\"/>\n</svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"type":"html","meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\">\n  <path d=\"M7.5 7.2475C7.5 6.06075 8.81287 5.34399 9.81114 5.98573L26.5372 16.7382C27.4557 17.3287 27.4557 18.6713 26.5373 19.2618L9.81114 30.0143C8.81287 30.656 7.5 29.9393 7.5 28.7525V7.2475Z\" fill=\"currentColor\"/>\n</svg>","div":false,"iframe":false,"script":false,"compilable":false}}}},{"_id":"4a529af9-6d34-eaa0-a51d-78babe4a17e0","type":"Link","tag":"a","classes":["b391cf0a-7922-2069-b97a-a7b3a11957e9","6f591eb8-6205-e7b6-f845-87ffff734d27"],"children":["4a529af9-6d34-eaa0-a51d-78babe4a17e1"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"pause-button"}],"block":"inline","displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"button":false,"link":{"mode":"external","url":"#"}}},{"_id":"4a529af9-6d34-eaa0-a51d-78babe4a17e1","type":"HtmlEmbed","tag":"div","classes":["b391cf0a-7922-2069-b97a-a7b3a11957da"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\">\n  <path d=\"M21.4286 4.66667C21.4286 3.74619 22.1961 3 23.1429 3H28.2857C29.2325 3 30 3.74619 30 4.66667V31.3333C30 32.2538 29.2325 33 28.2857 33H23.1429C22.1961 33 21.4286 32.2538 21.4286 31.3333V4.66667Z\" fill=\"currentColor\"/>\n  <path d=\"M6 4.66667C6 3.74619 6.76751 3 7.71429 3H12.8571C13.8039 3 14.5714 3.74619 14.5714 4.66667V31.3333C14.5714 32.2538 13.8039 33 12.8571 33H7.71429C6.76751 33 6 32.2538 6 31.3333V4.66667Z\" fill=\"currentColor\"/>\n</svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"type":"html","meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\">\n  <path d=\"M21.4286 4.66667C21.4286 3.74619 22.1961 3 23.1429 3H28.2857C29.2325 3 30 3.74619 30 4.66667V31.3333C30 32.2538 29.2325 33 28.2857 33H23.1429C22.1961 33 21.4286 32.2538 21.4286 31.3333V4.66667Z\" fill=\"currentColor\"/>\n  <path d=\"M6 4.66667C6 3.74619 6.76751 3 7.71429 3H12.8571C13.8039 3 14.5714 3.74619 14.5714 4.66667V31.3333C14.5714 32.2538 13.8039 33 12.8571 33H7.71429C6.76751 33 6 32.2538 6 31.3333V4.66667Z\" fill=\"currentColor\"/>\n</svg>","div":false,"iframe":false,"script":false,"compilable":false}}}},{"_id":"de5a539a-9926-ae71-e8c8-0fe24fb983ba","type":"Link","tag":"a","classes":["b391cf0a-7922-2069-b97a-a7b3a11957e9"],"children":["de5a539a-9926-ae71-e8c8-0fe24fb983bb"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"forward-button"}],"block":"inline","displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"button":false,"link":{"mode":"external","url":"#"}}},{"_id":"de5a539a-9926-ae71-e8c8-0fe24fb983bb","type":"HtmlEmbed","tag":"div","classes":["b391cf0a-7922-2069-b97a-a7b3a11957da"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"32\" height=\"32\" preserveAspectRatio=\"xMidYMid meet\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6s2.69-6 6-6v4l5-5l-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8s8-3.58 8-8h-2z\"></path><path fill=\"currentColor\" d=\"M10.9 16v-4.27h-.09l-1.77.63v.69l1.01-.31V16zm3.42-4.22c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1s-.33.18-.45.33s-.23.34-.29.57s-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57s.28.26.46.33s.37.1.59.1s.41-.03.59-.1s.33-.18.45-.33s.22-.34.29-.57s.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57s-.29-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32s-.11.14-.19.17s-.16.05-.25.05s-.18-.02-.25-.05s-.14-.09-.19-.17s-.09-.19-.12-.32s-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31s.11-.14.19-.17s.16-.05.25-.05s.18.02.25.05s.14.09.19.17s.09.18.12.31s.04.29.04.48v.97z\"></path></svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"type":"html","meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"32\" height=\"32\" preserveAspectRatio=\"xMidYMid meet\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6s2.69-6 6-6v4l5-5l-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8s8-3.58 8-8h-2z\"></path><path fill=\"currentColor\" d=\"M10.9 16v-4.27h-.09l-1.77.63v.69l1.01-.31V16zm3.42-4.22c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1s-.33.18-.45.33s-.23.34-.29.57s-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57s.28.26.46.33s.37.1.59.1s.41-.03.59-.1s.33-.18.45-.33s.22-.34.29-.57s.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57s-.29-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32s-.11.14-.19.17s-.16.05-.25.05s-.18-.02-.25-.05s-.14-.09-.19-.17s-.09-.19-.12-.32s-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31s.11-.14.19-.17s.16-.05.25-.05s.18.02.25.05s.14.09.19.17s.09.18.12.31s.04.29.04.48v.97z\"></path></svg>","div":false,"iframe":false,"script":false,"compilable":false}}}},{"_id":"c925b912-28c4-2937-0357-249bbaea0c7e","type":"Block","tag":"div","classes":["f8ebac68-514a-77bd-9910-b77f979f72ab","3e7c1962-4d18-154a-fd56-e1228ddf6dc9"],"children":["c925b912-28c4-2937-0357-249bbaea0c7f","c925b912-28c4-2937-0357-249bbaea0c83","c925b912-28c4-2937-0357-249bbaea0c86","c925b912-28c4-2937-0357-249bbaea0c8b"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"style":{"base":{"small":{"noPseudo":{"gridColumnEnd":"span 1","gridColumnStart":"span 1","gridRowEnd":"span 1","gridRowStart":"span 1"}}}},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"c925b912-28c4-2937-0357-249bbaea0c7f","type":"Block","tag":"div","classes":["6a27efd0-bea8-1f1d-1ec3-ce38d1bb9ac0","6a27efd0-bea8-1f1d-1ec3-ce38d1bb9ac2"],"children":[],"data":{"text":false,"tag":"div"}},{"_id":"c925b912-28c4-2937-0357-249bbaea0c83","type":"Block","tag":"div","classes":["f8ebac68-514a-77bd-9910-b77f979f72ac"],"children":["c925b912-28c4-2937-0357-249bbaea0c84","c925b912-28c4-2937-0357-249bbaea0c85"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"c925b912-28c4-2937-0357-249bbaea0c84","type":"HtmlEmbed","tag":"div","classes":["f8ebac68-514a-77bd-9910-b77f979f72ad"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\n  <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.5 7.86233C0.671573 7.86233 0 8.5339 0 9.36233V14.6383C0 15.4667 0.671574 16.1383 1.5 16.1383H5.51737L9.85343 20.4743C10.7984 21.4192 12.4141 20.75 12.4141 19.4136V4.58699C12.4141 3.25064 10.7984 2.58139 9.85343 3.52633L5.51737 7.86233H1.5ZM20.3897 5.59786C20.0774 5.28539 19.5708 5.28531 19.2584 5.59768C18.9459 5.91005 18.9458 6.41658 19.2582 6.72905C20.608 8.07926 21.3662 9.9103 21.3662 11.8195C21.3662 13.7287 20.608 15.5598 19.2582 16.91C18.9458 17.2224 18.9459 17.729 19.2584 18.0413C19.5708 18.3537 20.0774 18.3536 20.3897 18.0412C22.0395 16.3909 22.9662 14.153 22.9662 11.8195C22.9662 9.48605 22.0395 7.24812 20.3897 5.59786ZM17.5658 8.42189C17.2534 8.10942 16.7469 8.10934 16.4344 8.42171C16.1219 8.73407 16.1219 9.2406 16.4342 9.55307C17.0341 10.1532 17.3711 10.967 17.3711 11.8155C17.3711 12.6641 17.0341 13.4779 16.4342 14.0779C16.1219 14.3904 16.1219 14.8969 16.4344 15.2093C16.7469 15.5217 17.2534 15.5216 17.5658 15.2091C18.4656 14.309 18.9711 13.0883 18.9711 11.8155C18.9711 10.5427 18.4656 9.32203 17.5658 8.42189Z\" fill=\"currentColor\"/>\n</svg>","data":{"insideRTE":false,"search":{"exclude":true},"xattr":[{"name":"data-video","value":"volume-btn"}],"embed":{"type":"html","meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\n  <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.5 7.86233C0.671573 7.86233 0 8.5339 0 9.36233V14.6383C0 15.4667 0.671574 16.1383 1.5 16.1383H5.51737L9.85343 20.4743C10.7984 21.4192 12.4141 20.75 12.4141 19.4136V4.58699C12.4141 3.25064 10.7984 2.58139 9.85343 3.52633L5.51737 7.86233H1.5ZM20.3897 5.59786C20.0774 5.28539 19.5708 5.28531 19.2584 5.59768C18.9459 5.91005 18.9458 6.41658 19.2582 6.72905C20.608 8.07926 21.3662 9.9103 21.3662 11.8195C21.3662 13.7287 20.608 15.5598 19.2582 16.91C18.9458 17.2224 18.9459 17.729 19.2584 18.0413C19.5708 18.3537 20.0774 18.3536 20.3897 18.0412C22.0395 16.3909 22.9662 14.153 22.9662 11.8195C22.9662 9.48605 22.0395 7.24812 20.3897 5.59786ZM17.5658 8.42189C17.2534 8.10942 16.7469 8.10934 16.4344 8.42171C16.1219 8.73407 16.1219 9.2406 16.4342 9.55307C17.0341 10.1532 17.3711 10.967 17.3711 11.8155C17.3711 12.6641 17.0341 13.4779 16.4342 14.0779C16.1219 14.3904 16.1219 14.8969 16.4344 15.2093C16.7469 15.5217 17.2534 15.5216 17.5658 15.2091C18.4656 14.309 18.9711 13.0883 18.9711 11.8155C18.9711 10.5427 18.4656 9.32203 17.5658 8.42189Z\" fill=\"currentColor\"/>\n</svg>","div":false,"iframe":false,"script":false,"compilable":false}}}},{"_id":"c925b912-28c4-2937-0357-249bbaea0c85","type":"HtmlEmbed","tag":"div","classes":["2ceb9fd8-9566-0d03-349f-df3d77b909d6"],"children":[],"v":"<input type=\"range\" data-video=\"volume-slider\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.5\">","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"type":"html","meta":{"html":"<input type=\"range\" data-video=\"volume-slider\" min=\"0\" max=\"1\" step=\"0.1\" value=\"0.5\">","div":false,"iframe":false,"script":false,"compilable":false}}}},{"_id":"c925b912-28c4-2937-0357-249bbaea0c86","type":"Block","tag":"div","classes":["f8ebac68-514a-77bd-9910-b77f979f72b0"],"children":["c925b912-28c4-2937-0357-249bbaea0c87","c925b912-28c4-2937-0357-249bbaea0c89"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"c925b912-28c4-2937-0357-249bbaea0c87","type":"Link","tag":"a","classes":["b391cf0a-7922-2069-b97a-a7b3a11957e9"],"children":["c925b912-28c4-2937-0357-249bbaea0c88"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"fullscreen"}],"block":"inline","displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[true]},"button":false,"link":{"mode":"external","url":"#"}}},{"_id":"c925b912-28c4-2937-0357-249bbaea0c88","type":"HtmlEmbed","tag":"div","classes":["b391cf0a-7922-2069-b97a-a7b3a11957da","6ed4b41b-ef0f-e511-5ec2-c432cbdd5da1"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\n  <path d=\"M21.1667 2C21.6269 2 22 2.3731 22 2.83333V8.99707C22 9.54989 21.5518 9.99805 20.999 9.99805C20.4462 9.99805 19.998 9.54989 19.998 8.99707V5.41797L5.41797 19.998H8.99707C9.54989 19.998 9.99805 20.4462 9.99805 20.999C9.99805 21.5518 9.54989 22 8.99707 22H2.83333C2.3731 22 2 21.6269 2 21.1667V15.0029C2 14.4501 2.44815 14.002 3.00098 14.002C3.5538 14.002 4.00195 14.4501 4.00195 15.0029V18.582L18.582 4.00195H15.0029C14.4501 4.00195 14.002 3.5538 14.002 3.00098C14.002 2.44815 14.4501 2 15.0029 2H21.1667Z\" fill=\"currentColor\"/>\n</svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"type":"html","meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\n  <path d=\"M21.1667 2C21.6269 2 22 2.3731 22 2.83333V8.99707C22 9.54989 21.5518 9.99805 20.999 9.99805C20.4462 9.99805 19.998 9.54989 19.998 8.99707V5.41797L5.41797 19.998H8.99707C9.54989 19.998 9.99805 20.4462 9.99805 20.999C9.99805 21.5518 9.54989 22 8.99707 22H2.83333C2.3731 22 2 21.6269 2 21.1667V15.0029C2 14.4501 2.44815 14.002 3.00098 14.002C3.5538 14.002 4.00195 14.4501 4.00195 15.0029V18.582L18.582 4.00195H15.0029C14.4501 4.00195 14.002 3.5538 14.002 3.00098C14.002 2.44815 14.4501 2 15.0029 2H21.1667Z\" fill=\"currentColor\"/>\n</svg>","div":false,"iframe":false,"script":false,"compilable":false}}}},{"_id":"c925b912-28c4-2937-0357-249bbaea0c89","type":"Link","tag":"a","classes":["b391cf0a-7922-2069-b97a-a7b3a11957e9"],"children":["c925b912-28c4-2937-0357-249bbaea0c8a"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"minimize"}],"block":"inline","displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[true]},"button":false,"link":{"mode":"external","url":"#"}}},{"_id":"c925b912-28c4-2937-0357-249bbaea0c8a","type":"HtmlEmbed","tag":"div","classes":["b391cf0a-7922-2069-b97a-a7b3a11957da","6ed4b41b-ef0f-e511-5ec2-c432cbdd5da1"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\n  <path d=\"M10.8885 12C11.1607 12 11.4234 12.0999 11.6268 12.2808C11.8302 12.4617 11.9601 12.7109 11.992 12.9812L11.9998 13.1112V18.6674C11.9994 18.9507 11.891 19.2231 11.6966 19.429C11.5021 19.635 11.2364 19.7589 10.9536 19.7755C10.6709 19.7921 10.3925 19.7001 10.1753 19.5183C9.95808 19.3366 9.8185 19.0787 9.78504 18.7974L9.77726 18.6674V15.7938L3.89544 21.6756C3.69546 21.8749 3.42712 21.9906 3.14492 21.9992C2.86272 22.0078 2.58782 21.9087 2.37606 21.722C2.16429 21.5352 2.03154 21.2749 2.00477 20.9938C1.97799 20.7128 2.0592 20.4321 2.2319 20.2087L2.32414 20.1043L8.20596 14.2225H5.33228C5.04905 14.2221 4.77662 14.1137 4.57067 13.9193C4.36471 13.7248 4.24078 13.4591 4.22418 13.1763C4.20758 12.8936 4.29957 12.6152 4.48136 12.398C4.66315 12.1808 4.92101 12.0412 5.20226 12.0078L5.33228 12H10.8885ZM20.1041 2.32439C20.304 2.12509 20.5724 2.00938 20.8546 2.00076C21.1368 1.99215 21.4117 2.09127 21.6235 2.27799C21.8352 2.46472 21.968 2.72505 21.9947 3.00611C22.0215 3.28716 21.9403 3.56788 21.7676 3.79123L21.6754 3.89568L15.7935 9.77749H18.6672C18.9505 9.7778 19.2229 9.88626 19.4288 10.0807C19.6348 10.2751 19.7587 10.5409 19.7753 10.8236C19.7919 11.1064 19.6999 11.3848 19.5182 11.602C19.3364 11.8192 19.0785 11.9587 18.7972 11.9922L18.6672 12H13.111C12.8388 11.9999 12.5761 11.9 12.3727 11.7191C12.1693 11.5383 12.0394 11.2891 12.0075 11.0187L11.9998 10.8887V5.33252C12.0001 5.04929 12.1085 4.77686 12.303 4.57091C12.4974 4.36496 12.7631 4.24102 13.0459 4.22442C13.3286 4.20782 13.607 4.29981 13.8242 4.4816C14.0414 4.66339 14.181 4.92125 14.2145 5.2025L14.2222 5.33252V8.20619L20.1041 2.32439Z\" fill=\"currentColor\"/>\n</svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"type":"html","meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\n  <path d=\"M10.8885 12C11.1607 12 11.4234 12.0999 11.6268 12.2808C11.8302 12.4617 11.9601 12.7109 11.992 12.9812L11.9998 13.1112V18.6674C11.9994 18.9507 11.891 19.2231 11.6966 19.429C11.5021 19.635 11.2364 19.7589 10.9536 19.7755C10.6709 19.7921 10.3925 19.7001 10.1753 19.5183C9.95808 19.3366 9.8185 19.0787 9.78504 18.7974L9.77726 18.6674V15.7938L3.89544 21.6756C3.69546 21.8749 3.42712 21.9906 3.14492 21.9992C2.86272 22.0078 2.58782 21.9087 2.37606 21.722C2.16429 21.5352 2.03154 21.2749 2.00477 20.9938C1.97799 20.7128 2.0592 20.4321 2.2319 20.2087L2.32414 20.1043L8.20596 14.2225H5.33228C5.04905 14.2221 4.77662 14.1137 4.57067 13.9193C4.36471 13.7248 4.24078 13.4591 4.22418 13.1763C4.20758 12.8936 4.29957 12.6152 4.48136 12.398C4.66315 12.1808 4.92101 12.0412 5.20226 12.0078L5.33228 12H10.8885ZM20.1041 2.32439C20.304 2.12509 20.5724 2.00938 20.8546 2.00076C21.1368 1.99215 21.4117 2.09127 21.6235 2.27799C21.8352 2.46472 21.968 2.72505 21.9947 3.00611C22.0215 3.28716 21.9403 3.56788 21.7676 3.79123L21.6754 3.89568L15.7935 9.77749H18.6672C18.9505 9.7778 19.2229 9.88626 19.4288 10.0807C19.6348 10.2751 19.7587 10.5409 19.7753 10.8236C19.7919 11.1064 19.6999 11.3848 19.5182 11.602C19.3364 11.8192 19.0785 11.9587 18.7972 11.9922L18.6672 12H13.111C12.8388 11.9999 12.5761 11.9 12.3727 11.7191C12.1693 11.5383 12.0394 11.2891 12.0075 11.0187L11.9998 10.8887V5.33252C12.0001 5.04929 12.1085 4.77686 12.303 4.57091C12.4974 4.36496 12.7631 4.24102 13.0459 4.22442C13.3286 4.20782 13.607 4.29981 13.8242 4.4816C14.0414 4.66339 14.181 4.92125 14.2145 5.2025L14.2222 5.33252V8.20619L20.1041 2.32439Z\" fill=\"currentColor\"/>\n</svg>","div":false,"iframe":false,"script":false,"compilable":false}}}},{"_id":"c925b912-28c4-2937-0357-249bbaea0c8b","type":"Block","tag":"div","classes":["b391cf0a-7922-2069-b97a-a7b3a11957e9","f9e1bba5-c0aa-2e8f-dfcf-b353f096433a"],"children":["c925b912-28c4-2937-0357-249bbaea0c8c"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"c925b912-28c4-2937-0357-249bbaea0c8c","type":"DropdownWrapper","tag":"div","classes":["b391cf0a-7922-2069-b97a-a7b3a11957dc"],"children":["c925b912-28c4-2937-0357-249bbaea0c8d","c925b912-28c4-2937-0357-249bbaea0c8f"],"data":{"search":{"exclude":true},"xattr":[],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"wrapper"},"attr":{"data-delay":0,"data-hover":false,"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"c925b912-28c4-2937-0357-249bbaea0c8d","type":"DropdownToggle","tag":"div","classes":["b391cf0a-7922-2069-b97a-a7b3a11957eb"],"children":["c925b912-28c4-2937-0357-249bbaea0c8e"],"data":{"search":{"exclude":false},"xattr":[],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"toggle"},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"c925b912-28c4-2937-0357-249bbaea0c8e","type":"HtmlEmbed","tag":"div","classes":["b391cf0a-7922-2069-b97a-a7b3a11957da","6ed4b41b-ef0f-e511-5ec2-c432cbdd5da1"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\n  <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.4001 3.59995C14.4001 4.92543 13.3256 5.99995 12.0001 5.99995C10.6746 5.99995 9.6001 4.92543 9.6001 3.59995C9.6001 2.27447 10.6746 1.19995 12.0001 1.19995C13.3256 1.19995 14.4001 2.27447 14.4001 3.59995ZM14.4001 12C14.4001 13.3254 13.3256 14.4 12.0001 14.4C10.6746 14.4 9.6001 13.3254 9.6001 12C9.6001 10.6745 10.6746 9.59995 12.0001 9.59995C13.3256 9.59995 14.4001 10.6745 14.4001 12ZM12.0001 22.7999C13.3256 22.7999 14.4001 21.7254 14.4001 20.4C14.4001 19.0745 13.3256 18 12.0001 18C10.6746 18 9.6001 19.0745 9.6001 20.4C9.6001 21.7254 10.6746 22.7999 12.0001 22.7999Z\" fill=\"currentColor\"/>\n</svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\n  <path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.4001 3.59995C14.4001 4.92543 13.3256 5.99995 12.0001 5.99995C10.6746 5.99995 9.6001 4.92543 9.6001 3.59995C9.6001 2.27447 10.6746 1.19995 12.0001 1.19995C13.3256 1.19995 14.4001 2.27447 14.4001 3.59995ZM14.4001 12C14.4001 13.3254 13.3256 14.4 12.0001 14.4C10.6746 14.4 9.6001 13.3254 9.6001 12C9.6001 10.6745 10.6746 9.59995 12.0001 9.59995C13.3256 9.59995 14.4001 10.6745 14.4001 12ZM12.0001 22.7999C13.3256 22.7999 14.4001 21.7254 14.4001 20.4C14.4001 19.0745 13.3256 18 12.0001 18C10.6746 18 9.6001 19.0745 9.6001 20.4C9.6001 21.7254 10.6746 22.7999 12.0001 22.7999Z\" fill=\"currentColor\"/>\n</svg>","div":false,"iframe":false,"script":false,"compilable":false},"type":"html"}}},{"_id":"c925b912-28c4-2937-0357-249bbaea0c8f","type":"DropdownList","tag":"nav","classes":["b391cf0a-7922-2069-b97a-a7b3a11957ec","5ffd01b2-4cc4-4d3f-21c8-a9d7c355bd36"],"children":["c925b912-28c4-2937-0357-249bbaea0c90","c925b912-28c4-2937-0357-249bbaea0ca2"],"data":{"search":{"exclude":false},"xattr":[],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"list"},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"nav"}},{"_id":"c925b912-28c4-2937-0357-249bbaea0c90","type":"DropdownWrapper","tag":"div","classes":["b391cf0a-7922-2069-b97a-a7b3a11957e5","3ae4aae8-b1ff-fa81-6012-0f90206e653f"],"children":["c925b912-28c4-2937-0357-249bbaea0c91","c925b912-28c4-2937-0357-249bbaea0c97"],"data":{"search":{"exclude":true},"xattr":[],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"wrapper"},"attr":{"data-delay":0,"data-hover":false,"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"c925b912-28c4-2937-0357-249bbaea0c91","type":"DropdownToggle","tag":"div","classes":["b391cf0a-7922-2069-b97a-a7b3a11957e4","f112fd1f-793f-464b-3fae-184f73b2311e"],"children":["c925b912-28c4-2937-0357-249bbaea0c92","c925b912-28c4-2937-0357-249bbaea0c94","c925b912-28c4-2937-0357-249bbaea0c96"],"data":{"search":{"exclude":false},"xattr":[],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"toggle"},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"c925b912-28c4-2937-0357-249bbaea0c92","type":"Block","tag":"div","classes":[],"children":["c925b912-28c4-2937-0357-249bbaea0c93"],"data":{"search":{"exclude":false},"xattr":[],"text":true,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"c925b912-28c4-2937-0357-249bbaea0c93","text":true,"v":"Speed:  "},{"_id":"c925b912-28c4-2937-0357-249bbaea0c94","type":"Block","tag":"div","classes":[],"children":["c925b912-28c4-2937-0357-249bbaea0c95"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"speed-text"}],"text":true,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"c925b912-28c4-2937-0357-249bbaea0c95","text":true,"v":"Normal"},{"_id":"c925b912-28c4-2937-0357-249bbaea0c96","type":"HtmlEmbed","tag":"div","classes":["b391cf0a-7922-2069-b97a-a7b3a11957e7"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"24\" height=\"24\" preserveAspectRatio=\"xMidYMid meet\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"m10 17l5-5l-5-5v10z\"></path></svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"24\" height=\"24\" preserveAspectRatio=\"xMidYMid meet\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"m10 17l5-5l-5-5v10z\"></path></svg>","div":false,"script":false,"compilable":false,"iframe":false},"type":"html"}}},{"_id":"c925b912-28c4-2937-0357-249bbaea0c97","type":"DropdownList","tag":"nav","classes":["b391cf0a-7922-2069-b97a-a7b3a11957de","c0a0e015-4030-76c4-212f-12ad9bd93168"],"children":["c925b912-28c4-2937-0357-249bbaea0c98","c925b912-28c4-2937-0357-249bbaea0c9a","c925b912-28c4-2937-0357-249bbaea0c9c","c925b912-28c4-2937-0357-249bbaea0c9e","c925b912-28c4-2937-0357-249bbaea0ca0"],"data":{"search":{"exclude":false},"xattr":[],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"list"},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"nav"}},{"_id":"c925b912-28c4-2937-0357-249bbaea0c98","type":"DropdownLink","tag":"a","classes":["b391cf0a-7922-2069-b97a-a7b3a11957ee","905073a4-b188-9549-0c29-f700784b5108"],"children":["c925b912-28c4-2937-0357-249bbaea0c99"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video-speed","value":"0.5"}],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"link"},"attr":{"href":"#","id":""},"visibility":{"conditions":[]},"link":{"url":"#","mode":"external"}}},{"_id":"c925b912-28c4-2937-0357-249bbaea0c99","text":true,"v":"0.5x"},{"_id":"c925b912-28c4-2937-0357-249bbaea0c9a","type":"DropdownLink","tag":"a","classes":["b391cf0a-7922-2069-b97a-a7b3a11957ee","905073a4-b188-9549-0c29-f700784b5108"],"children":["c925b912-28c4-2937-0357-249bbaea0c9b"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video-speed","value":"1"}],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"link"},"attr":{"href":"#","id":""},"visibility":{"conditions":[]},"link":{"url":"#","mode":"external"}}},{"_id":"c925b912-28c4-2937-0357-249bbaea0c9b","text":true,"v":"Normal (1x)"},{"_id":"c925b912-28c4-2937-0357-249bbaea0c9c","type":"DropdownLink","tag":"a","classes":["b391cf0a-7922-2069-b97a-a7b3a11957ee","905073a4-b188-9549-0c29-f700784b5108"],"children":["c925b912-28c4-2937-0357-249bbaea0c9d"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video-speed","value":"1.25"}],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"link"},"attr":{"href":"#","id":""},"visibility":{"conditions":[]},"link":{"url":"#","mode":"external"}}},{"_id":"c925b912-28c4-2937-0357-249bbaea0c9d","text":true,"v":"1.25x"},{"_id":"c925b912-28c4-2937-0357-249bbaea0c9e","type":"DropdownLink","tag":"a","classes":["b391cf0a-7922-2069-b97a-a7b3a11957ee","905073a4-b188-9549-0c29-f700784b5108"],"children":["c925b912-28c4-2937-0357-249bbaea0c9f"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video-speed","value":"1.5"}],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"link"},"attr":{"href":"#","id":""},"visibility":{"conditions":[]},"link":{"url":"#","mode":"external"}}},{"_id":"c925b912-28c4-2937-0357-249bbaea0c9f","text":true,"v":"1.5x"},{"_id":"c925b912-28c4-2937-0357-249bbaea0ca0","type":"DropdownLink","tag":"a","classes":["b391cf0a-7922-2069-b97a-a7b3a11957ee","905073a4-b188-9549-0c29-f700784b5108"],"children":["c925b912-28c4-2937-0357-249bbaea0ca1"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video-speed","value":"2"}],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"link"},"attr":{"href":"#","id":""},"visibility":{"conditions":[]},"link":{"url":"#","mode":"external"}}},{"_id":"c925b912-28c4-2937-0357-249bbaea0ca1","text":true,"v":"2x"},{"_id":"c925b912-28c4-2937-0357-249bbaea0ca2","type":"DropdownWrapper","tag":"div","classes":["b391cf0a-7922-2069-b97a-a7b3a11957e5","3ae4aae8-b1ff-fa81-6012-0f90206e653f"],"children":["c925b912-28c4-2937-0357-249bbaea0ca3","c925b912-28c4-2937-0357-249bbaea0ca9"],"data":{"search":{"exclude":true},"xattr":[],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"wrapper"},"attr":{"data-delay":0,"data-hover":false,"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"c925b912-28c4-2937-0357-249bbaea0ca3","type":"DropdownToggle","tag":"div","classes":["b391cf0a-7922-2069-b97a-a7b3a11957e4","f112fd1f-793f-464b-3fae-184f73b2311e"],"children":["c925b912-28c4-2937-0357-249bbaea0ca4","c925b912-28c4-2937-0357-249bbaea0ca6","c925b912-28c4-2937-0357-249bbaea0ca8"],"data":{"search":{"exclude":false},"xattr":[],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"toggle"},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"c925b912-28c4-2937-0357-249bbaea0ca4","type":"Block","tag":"div","classes":[],"children":["c925b912-28c4-2937-0357-249bbaea0ca5"],"data":{"search":{"exclude":false},"xattr":[],"text":true,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"c925b912-28c4-2937-0357-249bbaea0ca5","text":true,"v":"Quality: "},{"_id":"c925b912-28c4-2937-0357-249bbaea0ca6","type":"Block","tag":"div","classes":[],"children":["c925b912-28c4-2937-0357-249bbaea0ca7"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"quality-text"}],"text":true,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"c925b912-28c4-2937-0357-249bbaea0ca7","text":true,"v":"720p"},{"_id":"c925b912-28c4-2937-0357-249bbaea0ca8","type":"HtmlEmbed","tag":"div","classes":["b391cf0a-7922-2069-b97a-a7b3a11957e7"],"children":[],"v":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"24\" height=\"24\" preserveAspectRatio=\"xMidYMid meet\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"m10 17l5-5l-5-5v10z\"></path></svg>","data":{"insideRTE":false,"search":{"exclude":true},"embed":{"meta":{"html":"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" aria-hidden=\"true\" role=\"img\" class=\"iconify iconify--ic\" width=\"24\" height=\"24\" preserveAspectRatio=\"xMidYMid meet\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"m10 17l5-5l-5-5v10z\"></path></svg>","div":false,"script":false,"compilable":false,"iframe":false},"type":"html"}}},{"_id":"c925b912-28c4-2937-0357-249bbaea0ca9","type":"DropdownList","tag":"nav","classes":["b391cf0a-7922-2069-b97a-a7b3a11957de","c0a0e015-4030-76c4-212f-12ad9bd93168"],"children":["c925b912-28c4-2937-0357-249bbaea0caa"],"data":{"search":{"exclude":false},"xattr":[],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"list"},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"nav"}},{"_id":"c925b912-28c4-2937-0357-249bbaea0caa","type":"DropdownLink","tag":"a","classes":["b391cf0a-7922-2069-b97a-a7b3a11957ee","905073a4-b188-9549-0c29-f700784b5108"],"children":["c925b912-28c4-2937-0357-249bbaea0cab"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video-quality","value":"720p"}],"displayName":"","devlink":{"runtimeProps":{},"slot":""},"dropdown":{"type":"link"},"attr":{"href":"#","id":""},"visibility":{"conditions":[]},"link":{"url":"#","mode":"external"}}},{"_id":"c925b912-28c4-2937-0357-249bbaea0cab","text":true,"v":"720p"},{"_id":"4a529af9-6d34-eaa0-a51d-78babe4a17d7","type":"Block","tag":"div","classes":["7af36b65-06f0-5f3c-353a-e9bfd83ad9bc"],"children":["4a529af9-6d34-eaa0-a51d-78babe4a17d1","4a529af9-6d34-eaa0-a51d-78babe4a17d8","4a529af9-6d34-eaa0-a51d-78babe4a17d5"],"data":{"search":{"exclude":false},"xattr":[],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"style":{"base":{"main":{"noPseudo":{"gridColumnStart":"span 3","gridColumnEnd":"span 3","gridRowStart":"span 1","gridRowEnd":"span 1"}},"small":{"noPseudo":{"gridColumnStart":"span 1","gridColumnEnd":"span 1","gridRowEnd":"span 1","gridRowStart":"span 1"}}}},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"4a529af9-6d34-eaa0-a51d-78babe4a17d1","type":"Block","tag":"div","classes":["bb6d4c72-49f2-e38e-79fa-55335f492c36"],"children":["4a529af9-6d34-eaa0-a51d-78babe4a17d2"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"current-time"}],"text":true,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"4a529af9-6d34-eaa0-a51d-78babe4a17d2","text":true,"v":"00:00"},{"_id":"4a529af9-6d34-eaa0-a51d-78babe4a17d8","type":"Block","tag":"div","classes":["f8ebac68-514a-77bd-9910-b77f979f72aa","f8ebac68-514a-77bd-9910-b77f979f72b2","4c4faddf-581f-2164-e7f5-0a276aa7943f"],"children":["4a529af9-6d34-eaa0-a51d-78babe4a17d9","5f7e62ca-39f9-f2c3-e607-5e3f0cd19257"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"progress-bar"}],"text":false,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"4a529af9-6d34-eaa0-a51d-78babe4a17d9","type":"Block","tag":"div","classes":["f8ebac68-514a-77bd-9910-b77f979f72af","0f681d56-776d-efcc-61c7-5c8eb84c41f8"],"children":[],"data":{"xattr":[{"name":"f-data-video","value":"progress"}],"text":false,"tag":"div"}},{"_id":"5f7e62ca-39f9-f2c3-e607-5e3f0cd19257","type":"Block","tag":"div","classes":["f1f68b1c-056d-a6b5-9814-08017334e9fc"],"children":[],"data":{"xattr":[{"name":"f-data-video","value":"loading"}],"text":false,"tag":"div"}},{"_id":"4a529af9-6d34-eaa0-a51d-78babe4a17d5","type":"Block","tag":"div","classes":["96c205ba-9ac7-df13-2508-aa10e67134e8","0421cbd0-a71d-c2b7-23c7-f6821192b5a1"],"children":["4a529af9-6d34-eaa0-a51d-78babe4a17d6"],"data":{"search":{"exclude":false},"xattr":[{"name":"f-data-video","value":"duration"}],"text":true,"displayName":"","devlink":{"runtimeProps":{},"slot":""},"style":{"base":{"main":{"noPseudo":{"justifySelf":"end"}}}},"attr":{"id":""},"visibility":{"conditions":[]},"tag":"div"}},{"_id":"4a529af9-6d34-eaa0-a51d-78babe4a17d6","text":true,"v":"00:00"}],"styles":[{"_id":"b391cf0a-7922-2069-b97a-a7b3a11957e5","fake":false,"type":"class","name":"video-sub-dropdown","namespace":"","comb":"","styleLess":"margin-right: 0rem; margin-left: 0rem;","variants":{},"children":["3ae4aae8-b1ff-fa81-6012-0f90206e653f"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"4c4faddf-581f-2164-e7f5-0a276aa7943f","fake":false,"type":"class","name":"large","namespace":"","comb":"&","styleLess":"overflow: hidden; height: 8px;","variants":{"small":{"styleLess":"height: 7px;"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"ae59975c-ac7b-e3db-ee5c-5355a0d0ef28","fake":false,"type":"class","name":"video-subtitle","namespace":"","comb":"","styleLess":"max-width: 54ch; color: hsla(0, 0.00%, 93.79%, 1.00); font-size: 14px; line-height: 1.4; font-weight: 600;","variants":{"medium":{"styleLess":"font-size: 1rem;"},"small":{"styleLess":"font-size: 0.9rem;"},"tiny":{"styleLess":"font-size: 0.7rem;"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"b391cf0a-7922-2069-b97a-a7b3a11957dc","fake":false,"type":"class","name":"video-dropdown","namespace":"","comb":"","styleLess":"position: relative;","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"3e7c1962-4d18-154a-fd56-e1228ddf6dc9","fake":false,"type":"class","name":"right-aligned","namespace":"","comb":"&","styleLess":"justify-content: flex-end;","variants":{"small":{"styleLess":"position: absolute; left: auto; top: 0%; right: 0%; bottom: 0%; height: 100%;"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"f8ebac68-514a-77bd-9910-b77f979f72b2","fake":false,"type":"class","name":"video-element","namespace":"","comb":"&","styleLess":"position: relative; height: 10px; margin-top: 12px; border-top-left-radius: 40px; border-top-right-radius: 40px; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px;","variants":{},"children":["4c4faddf-581f-2164-e7f5-0a276aa7943f","4e8bf136-e293-1f06-9a18-8c8f5f64e8b0"],"createdBy":"645217e03563196ad7f16539","selector":null},{"_id":"f8ebac68-514a-77bd-9910-b77f979f72aa","fake":false,"type":"class","name":"track","namespace":"","comb":"","styleLess":"width: 100%; height: 5px; background-color: hsla(0, 0.00%, 98.00%, 0.16);","variants":{},"children":["f8ebac68-514a-77bd-9910-b77f979f72b2"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"b391cf0a-7922-2069-b97a-a7b3a11957d8","fake":false,"type":"class","name":"video-volume-embed","namespace":"","comb":"","styleLess":"display: flex; transform: rotate(0deg);","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"b391cf0a-7922-2069-b97a-a7b3a11957e7","fake":false,"type":"class","name":"dropdown-icon","namespace":"","comb":"","styleLess":"display: flex; width: 1rem; height: 1rem; flex-direction: column; justify-content: center; align-items: center;","variants":{},"children":[],"createdBy":"6075409192d886a671499223","selector":null},{"_id":"400ff970-4235-75b1-dd68-25dd3807709f","fake":false,"type":"class","name":"video-title-wrapper","namespace":"","comb":"","styleLess":"position: absolute; left: 0%; top: 0%; right: 0%; bottom: auto; z-index: 2; display: flex; padding-top: 1.5625rem; padding-right: 2.1875rem; padding-bottom: 1.875rem; padding-left: 2.1875rem; flex-direction: column; grid-row-gap: 5px; border-top-left-radius: 1.5rem; border-top-right-radius: 1.5rem; background-image: @img_64d685e6c89c9754f03b98c7; background-position: 50% 0%; background-size: contain; background-repeat: repeat-x;","variants":{"medium":{"styleLess":"overflow: hidden; padding-top: 1.45rem; padding-right: 1.575rem; padding-left: 1.575rem;"},"tiny":{"styleLess":"z-index: 7; padding-top: 1rem; padding-right: 1.3rem; padding-bottom: 1.5rem; padding-left: 1.3rem; grid-row-gap: 0px;"}},"children":["f329980b-afce-72b0-6712-a687b3a7d364","5d166bac-19d3-97a4-6f55-c7f65f8afb5b"],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"0f681d56-776d-efcc-61c7-5c8eb84c41f8","fake":false,"type":"class","name":"large","namespace":"","comb":"&","styleLess":"height: 8px;","variants":{},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"fc762881-922e-08fc-50dc-56cb8f8826a5","fake":false,"type":"class","name":"is-blurred","namespace":"","comb":"&","styleLess":"bottom: 3.125rem; display: grid; max-width: 50rem; margin-right: auto; margin-left: auto; padding-top: 0.625rem; padding-right: 2.1875rem; padding-bottom: 1.25rem; padding-left: 2.1875rem; flex-direction: column; align-items: stretch; grid-auto-columns: 1fr; grid-column-gap: 0.5rem; grid-row-gap: 0.5rem; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: auto auto; border-top-left-radius: 1.25rem; border-top-right-radius: 1.25rem; border-bottom-left-radius: 1.25rem; border-bottom-right-radius: 1.25rem; background-color: hsla(0, 0.00%, 13.73%, 0.80); background-image: none; box-shadow: inset 0 0 0 1px hsla(0, 0.00%, 13.73%, 0.50); backdrop-filter: blur(13px);","variants":{"medium":{"styleLess":"bottom: 2rem; width: 90%; padding-top: 0.6rem; padding-right: 1.85rem; padding-bottom: 1.15rem; padding-left: 1.85rem;"},"small":{"styleLess":"bottom: 0.8rem; width: 95%; padding-top: 0.2rem; padding-right: 1rem; padding-bottom: 0.9rem; padding-left: 1rem; flex-direction: row; grid-column-gap: 0rem; grid-row-gap: 0rem; grid-template-columns: 1fr; grid-template-rows: auto;"},"tiny":{"styleLess":"border-top-left-radius: 0.8rem; border-top-right-radius: 0.8rem; border-bottom-left-radius: 0.8rem; border-bottom-right-radius: 0.8rem;"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"b391cf0a-7922-2069-b97a-a7b3a11957eb","fake":false,"type":"class","name":"video-dropdown-toggle","namespace":"","comb":"","styleLess":"display: flex; padding-top: 0rem; padding-right: 0rem; padding-bottom: 0rem; padding-left: 0rem; justify-content: center; align-items: center; color: hsla(0, 0.00%, 100.00%, 1.00);","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"b391cf0a-7922-2069-b97a-a7b3a11957e4","fake":false,"type":"class","name":"videos-sub-dropdown-toggle","namespace":"","comb":"","styleLess":"display: flex; padding-top: 0.875rem; padding-right: 0.875rem; padding-bottom: 0.875rem; padding-left: 0.875rem; justify-content: center; align-items: center; border-bottom-style: solid; border-bottom-width: 0.0625rem; border-bottom-color: hsla(240, 0.00%, 100.00%, 0.07); color: hsla(0, 0.00%, 100.00%, 1.00);","variants":{},"children":["f112fd1f-793f-464b-3fae-184f73b2311e","222daf99-0033-a71d-5560-7d917d995141"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"102a3f6d-1899-0a11-ed2f-acd1edce4003","fake":false,"type":"class","name":"home-demo-video","namespace":"","comb":"","styleLess":"position: absolute; left: 0%; top: 0%; right: 0%; bottom: 0%; z-index: 0; display: flex; overflow: hidden; width: 100%; height: 100%; margin-top: auto; margin-right: auto; margin-bottom: auto; margin-left: auto; justify-content: center; align-items: center; border-top-left-radius: 0.75rem; border-top-right-radius: 0.75rem; border-bottom-left-radius: 0.75rem; border-bottom-right-radius: 0.75rem; object-fit: cover;","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"b391cf0a-7922-2069-b97a-a7b3a11957ec","fake":false,"type":"class","name":"video-sub-dropdown-list-wrapper","namespace":"","comb":"","styleLess":"left: auto; top: auto; right: 0%; bottom: 0%;","variants":{"main_open":{"styleLess":"left: auto; top: auto; right: 0%; bottom: 2.6rem; display: flex; overflow: hidden; padding-top: 0rem; padding-bottom: 0rem; padding-left: 0rem; flex-direction: column; align-items: stretch; border-top-left-radius: 0.75rem; border-top-right-radius: 0.75rem; border-bottom-left-radius: 0.75rem; border-bottom-right-radius: 0.75rem; background-color: hsla(0, 0.00%, 12.55%, 1.00); color: hsla(0, 0.00%, 100.00%, 1.00);"}},"children":["6253069c-7858-5742-ef18-0296dd7fb088","5ffd01b2-4cc4-4d3f-21c8-a9d7c355bd36","ff5a7a35-5e3b-7b2f-4ccb-279b3c7b53c3"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"6a27efd0-bea8-1f1d-1ec3-ce38d1bb9ac0","fake":false,"type":"class","name":"video-volume-wrapper","namespace":"","comb":"","styleLess":"position: absolute; left: auto; top: 12%; right: 8%; bottom: auto; z-index: 2; display: flex; align-items: center; grid-column-gap: 0.75rem; grid-row-gap: 0.75rem;","variants":{},"children":["6a27efd0-bea8-1f1d-1ec3-ce38d1bb9ac2"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"2dd8cdfd-cbfd-7db8-1550-c263e1b5b802","fake":false,"type":"class","name":"hide-mobile-landscape","namespace":"","comb":"&","styleLess":"","variants":{},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"f9e1bba5-c0aa-2e8f-dfcf-b353f096433a","fake":false,"type":"class","name":"hide-mobile-landscape","namespace":"","comb":"&","styleLess":"","variants":{"small":{"styleLess":"display: flex;"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"f8ebac68-514a-77bd-9910-b77f979f72ab","fake":false,"type":"class","name":"video-controls","namespace":"","comb":"","styleLess":"display: flex; align-items: center; grid-column-gap: 6px; grid-row-gap: 6px; color: hsla(0, 0.00%, 100.00%, 1.00);","variants":{},"children":["3e7c1962-4d18-154a-fd56-e1228ddf6dc9","83882ba1-fe51-360f-e909-6d4b93f9b024","2dd8cdfd-cbfd-7db8-1550-c263e1b5b802","d1ca6552-a9f3-bccb-4ca4-548cb60d9b9f","0d308ff6-c6dc-1ddc-2060-692c95053c5a"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"f8ebac68-514a-77bd-9910-b77f979f72ae","fake":false,"type":"class","name":"video-controls-wrapper","namespace":"","comb":"","styleLess":"position: absolute; left: 0%; top: auto; right: 0%; bottom: 0%; z-index: 3; display: flex; width: 100%; padding-top: 1rem; padding-right: 3rem; padding-bottom: 1rem; padding-left: 3rem; flex-direction: column; align-items: stretch; grid-column-gap: 1rem; grid-row-gap: 1rem; border-bottom-left-radius: 1.5rem; border-bottom-right-radius: 1.5rem; background-image: linear-gradient(to bottom, hsla(0, 0.00%, 100.00%, 0.00), hsla(228, 23.81%, 4.12%, 1.00) 95%); color: hsla(0, 0.00%, 100.00%, 1.00);","variants":{},"children":["219e5cf9-65c0-1d8f-632a-058b624dd0a5","fc762881-922e-08fc-50dc-56cb8f8826a5","953d4081-ecc0-91a3-42e1-ee41496485fb","5950a1c1-e581-82b2-a9c0-8bc51fa5773d"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"6ed4b41b-ef0f-e511-5ec2-c432cbdd5da1","fake":false,"type":"class","name":"small","namespace":"","comb":"&","styleLess":"width: 1.2rem; height: 1.2rem;","variants":{},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"905073a4-b188-9549-0c29-f700784b5108","fake":false,"type":"class","name":"is-blurred","namespace":"","comb":"&","styleLess":"transition-property: background-color; transition-duration: 200ms; transition-timing-function: ease;","variants":{"main_hover":{"styleLess":"background-color: hsla(0, 0.00%, 100.00%, 0.05);"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"b391cf0a-7922-2069-b97a-a7b3a11957da","fake":false,"type":"class","name":"html-icon","namespace":"","comb":"","styleLess":"display: flex; width: 1.3rem; height: 1.3rem; justify-content: center; align-items: center;","variants":{"small":{"styleLess":"width: 1.5rem; height: 1.5rem;"}},"children":["6ed4b41b-ef0f-e511-5ec2-c432cbdd5da1","4054110b-f08a-a2c6-d35b-3f114c87b4fb"],"createdBy":"645217e03563196ad7f16539","selector":null},{"_id":"b391cf0a-7922-2069-b97a-a7b3a11957de","fake":false,"type":"class","name":"video-sub-dropdown-list","namespace":"","comb":"","styleLess":"position: static;","variants":{"main_open":{"styleLess":"background-color: hsla(228, 0.00%, 100.00%, 0.08); color: hsla(0, 0.00%, 100.00%, 1.00);"}},"children":["c0a0e015-4030-76c4-212f-12ad9bd93168"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"83882ba1-fe51-360f-e909-6d4b93f9b024","fake":false,"type":"class","name":"player_2","namespace":"","comb":"&","styleLess":"justify-content: center;","variants":{"small":{"styleLess":"grid-column-gap: 10px; grid-row-gap: 10px;"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"b391cf0a-7922-2069-b97a-a7b3a11957ee","fake":false,"type":"class","name":"video-sub-dropdown-item","namespace":"","comb":"","styleLess":"padding-top: 8px; padding-right: 5px; padding-bottom: 8px; padding-left: 5px; transition-property: background-color; transition-duration: 200ms; transition-timing-function: ease; color: hsla(0, 0.00%, 100.00%, 1.00); text-align: center;","variants":{"main_hover":{"styleLess":"background-color: hsla(0, 0.00%, 16.00%, 1.00);"}},"children":["905073a4-b188-9549-0c29-f700784b5108","71d631be-2c7f-6df8-8f23-cee1a0f72eca"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"f8ebac68-514a-77bd-9910-b77f979f72b0","fake":false,"type":"class","name":"fullscreen","namespace":"","comb":"","styleLess":"display: flex;","variants":{"small":{"styleLess":"display: none;"}},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"102a3f6d-1899-0a11-ed2f-acd1edce4004","fake":false,"type":"class","name":"vimeo-player","namespace":"","comb":"","styleLess":"position: absolute; left: auto; top: 0%; right: auto; bottom: 0%; width: 110%; height: 110%; margin-top: auto; margin-right: auto; margin-bottom: auto; margin-left: auto; object-fit: cover;","variants":{"tiny":{"styleLess":"width: 320%;"}},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"37f1c06b-fd3d-d33f-6495-f7d7f9aa923f","fake":false,"type":"class","name":"video-element","namespace":"","comb":"","styleLess":"color: hsla(0, 100.00%, 98.89%, 1.00);","variants":{},"children":[],"createdBy":"645217e03563196ad7f16539","selector":null},{"_id":"5ffd01b2-4cc4-4d3f-21c8-a9d7c355bd36","fake":false,"type":"class","name":"is-blurred","namespace":"","comb":"&","styleLess":"background-color: hsla(228, 23.81%, 4.12%, 0.50); backdrop-filter: blur(5px);","variants":{},"children":["2cba8be9-b3f2-ea5c-f116-5796dc9be236"],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"bb6d4c72-49f2-e38e-79fa-55335f492c36","fake":false,"type":"class","name":"video-watched","namespace":"","comb":"","styleLess":"width: 9ch;","variants":{"small":{"styleLess":"font-size: 13px;"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"f8ebac68-514a-77bd-9910-b77f979f72af","fake":false,"type":"class","name":"trackinner","namespace":"","comb":"","styleLess":"position: relative; z-index: 1; width: 0%; height: 100%; border-top-left-radius: 40px; border-top-right-radius: 40px; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; background-color: hsla(0, 0.00%, 100.00%, 1.00);","variants":{},"children":["0f681d56-776d-efcc-61c7-5c8eb84c41f8","e434e543-aa8f-1fad-86c3-d53e5bd04aa6"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"6f591eb8-6205-e7b6-f845-87ffff734d27","fake":false,"type":"class","name":"is-padding","namespace":"","comb":"&","styleLess":"display: block; padding-top: 0.6rem; padding-right: 0.6rem; padding-bottom: 0.6rem; padding-left: 0.6rem;","variants":{"small":{"styleLess":"display: flex; width: 2.4rem; height: 2.4rem;"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"f8ebac68-514a-77bd-9910-b77f979f72a7","fake":false,"type":"class","name":"flowplay-video-wrapper","namespace":"","comb":"","styleLess":"position: relative; overflow: hidden; width: 100%; min-height: 600px; min-width: 1080px; border-top-left-radius: 1.5rem; border-top-right-radius: 1.5rem; border-bottom-left-radius: 1.5rem; border-bottom-right-radius: 1.5rem; background-color: hsla(0, 0.00%, 6.00%, 1.00);","variants":{"medium":{"styleLess":"min-height: auto; min-width: 90vw; border-top-left-radius: 1.25rem; border-top-right-radius: 1.25rem; border-bottom-left-radius: 1.25rem; border-bottom-right-radius: 1.25rem;"},"tiny":{"styleLess":"height: 60vh;"}},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"f1f68b1c-056d-a6b5-9814-08017334e9fc","fake":false,"type":"class","name":"video-loading-track","namespace":"","comb":"","styleLess":"position: absolute; left: 0%; top: 0%; right: 0%; bottom: 0%; width: 0%; height: 100%; border-top-left-radius: 40px; border-top-right-radius: 40px; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; background-color: hsla(224.99999999999997, 7.77%, 59.61%, 1.00);","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"f329980b-afce-72b0-6712-a687b3a7d364","fake":false,"type":"class","name":"centered","namespace":"","comb":"&","styleLess":"align-items: center; text-align: center;","variants":{"small":{"styleLess":"padding-top: 1.2rem;"},"tiny":{"styleLess":"padding-top: 1rem;"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"b391cf0a-7922-2069-b97a-a7b3a11957e9","fake":false,"type":"class","name":"control-button","namespace":"","comb":"","styleLess":"position: relative; z-index: 19; display: flex; width: 2.5rem; height: 2.5rem; flex-direction: column; justify-content: center; align-items: center; border-top-left-radius: 100vw; border-top-right-radius: 100vw; border-bottom-left-radius: 100vw; border-bottom-right-radius: 100vw; color: hsla(0, 0.00%, 100.00%, 1.00);","variants":{"tiny":{"styleLess":"height: 2.5rem; padding-top: 0rem; padding-right: 0rem; padding-bottom: 0rem; padding-left: 0rem;"},"small":{"styleLess":"width: 2rem; height: 2rem;"}},"children":["6f591eb8-6205-e7b6-f845-87ffff734d27","9988bc7a-e864-92b6-7a6a-2cebd674059a","f9e1bba5-c0aa-2e8f-dfcf-b353f096433a","89bbf4b2-7b78-c144-548c-62d8ee110188"],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"f8ebac68-514a-77bd-9910-b77f979f72ad","fake":false,"type":"class","name":"icon-embed-xxsmall 2","namespace":"","comb":"","styleLess":"display: flex; width: 1.2rem; height: 1.2rem; flex-direction: column; justify-content: center; align-items: center;","variants":{},"children":[],"createdBy":"6075409192d886a671499223","selector":null},{"_id":"3ae4aae8-b1ff-fa81-6012-0f90206e653f","fake":false,"type":"class","name":"is-blurred","namespace":"","comb":"&","styleLess":"background-color: hsla(228, 23.81%, 4.12%, 0.70);","variants":{},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"c0a0e015-4030-76c4-212f-12ad9bd93168","fake":false,"type":"class","name":"is-blurred","namespace":"","comb":"&","styleLess":"background-color: hsla(0, 0.00%, 100.00%, 0.07);","variants":{},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"0421cbd0-a71d-c2b7-23c7-f6821192b5a1","fake":false,"type":"class","name":"left-aligned","namespace":"","comb":"&","styleLess":"display: flex; justify-content: flex-end;","variants":{"small":{"styleLess":"font-size: 13px;"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"6a27efd0-bea8-1f1d-1ec3-ce38d1bb9ac2","fake":false,"type":"class","name":"1","namespace":"","comb":"&","styleLess":"position: static; top: 7%; right: 3%; z-index: 14; grid-column-gap: 0.5rem; grid-row-gap: 0.5rem;","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"7af36b65-06f0-5f3c-353a-e9bfd83ad9bc","fake":false,"type":"class","name":"time-controls-wrapper","namespace":"","comb":"","styleLess":"display: flex; justify-content: stretch; align-items: center; grid-auto-columns: 1fr; grid-column-gap: 0.1rem; grid-row-gap: 0.1rem; grid-template-columns: 5% 90% 5%; grid-template-rows: auto;","variants":{"small":{"styleLess":"grid-column-gap: 0.2rem; grid-row-gap: 0.2rem;"}},"children":["86c2c78d-7587-d49c-0127-a5cecf21b1cb","72d95893-0810-800f-f81b-6b4517eb5c25"],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"f8ebac68-514a-77bd-9910-b77f979f72ac","fake":false,"type":"class","name":"volume-control-2","namespace":"","comb":"","styleLess":"display: none; justify-content: center; align-items: center; grid-column-gap: 10px;","variants":{},"children":[],"createdBy":"5e9be5f24c5ff9f8b4c2a621","selector":null},{"_id":"90a53f2a-f929-3a56-308b-1a89c7028561","fake":false,"type":"class","name":"video-title","namespace":"","comb":"","styleLess":"color: hsla(0, 0.00%, 100.00%, 1.00); font-size: 1.375rem; line-height: 1.5; font-weight: 500;","variants":{"medium":{"styleLess":"font-size: 1.2rem;"},"small":{"styleLess":"font-size: 1.1rem;"},"tiny":{"styleLess":"font-size: 0.9rem;"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"96c205ba-9ac7-df13-2508-aa10e67134e8","fake":false,"type":"class","name":"video-duration","namespace":"","comb":"","styleLess":"width: 9ch; color: hsla(0, 0.00%, 100.00%, 0.70);","variants":{},"children":["0421cbd0-a71d-c2b7-23c7-f6821192b5a1"],"createdBy":"5fe4339406bec67ba1521581","selector":null},{"_id":"f112fd1f-793f-464b-3fae-184f73b2311e","fake":false,"type":"class","name":"is-blurred","namespace":"","comb":"&","styleLess":"","variants":{"main_open":{"styleLess":"border-bottom-color: hsla(240, 0.00%, 100.00%, 0.20);"}},"children":[],"createdBy":"5fe4339406bec67ba1521581","selector":null}],"assets":[{"cdnUrl":"https://assets-global.website-files.com/64be96e8e47606e453cde1f6/64d685e6c89c9754f03b98c7_Background.png","siteId":"64be96e8e47606e453cde1f6","width":1600,"isHD":false,"height":192,"fileName":"64d685e6c89c9754f03b98c7_Background.png","createdOn":"2023-08-11T19:03:02.144Z","origFileName":"Background.png","fileHash":"4a66f03ceede4e7875d77c9475bc1b8f","variants":[{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/64be96e8e47606e453cde1f6/64d685e6c89c9754f03b98c7_Background-p-500.png","origFileName":"Background-p-500.png","fileName":"64d685e6c89c9754f03b98c7_Background-p-500.png","size":3096,"format":"png","width":500,"quality":100,"_id":"64d685e8ee36981d0e3284bb","cdnUrl":"https://assets-global.website-files.com/64be96e8e47606e453cde1f6/64d685e6c89c9754f03b98c7_Background-p-500.png"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/64be96e8e47606e453cde1f6/64d685e6c89c9754f03b98c7_Background-p-800.png","origFileName":"Background-p-800.png","fileName":"64d685e6c89c9754f03b98c7_Background-p-800.png","size":6895,"format":"png","width":800,"quality":100,"_id":"64d685e8ee36981d0e3284bc","cdnUrl":"https://assets-global.website-files.com/64be96e8e47606e453cde1f6/64d685e6c89c9754f03b98c7_Background-p-800.png"},{"s3Url":"https://s3.amazonaws.com/webflow-prod-assets/64be96e8e47606e453cde1f6/64d685e6c89c9754f03b98c7_Background-p-1080.png","origFileName":"Background-p-1080.png","fileName":"64d685e6c89c9754f03b98c7_Background-p-1080.png","size":28082,"format":"png","width":1080,"quality":100,"_id":"64d685e8ee36981d0e3284bd","cdnUrl":"https://assets-global.website-files.com/64be96e8e47606e453cde1f6/64d685e6c89c9754f03b98c7_Background-p-1080.png"}],"mimeType":"image/png","s3Url":"https://s3.amazonaws.com/webflow-prod-assets/64be96e8e47606e453cde1f6/64d685e6c89c9754f03b98c7_Background.png","thumbUrl":"https://assets-global.website-files.com/64be96e8e47606e453cde1f6/64d685e6c89c9754f03b98c7_Background-p-130x130q80.png","_id":"64d685e6c89c9754f03b98c7","updatedOn":"2023-08-12T10:21:03.489Z","fileSize":47883}],"ix1":[],"ix2":{"interactions":[{"id":"i-8","interactionTypeId":"MOUSE_HOVER_INTERACTION","eventIds":["e-15","e-16"],"target":"64eb7e6bc52ced54d92fc0cc|4a529af9-6d34-eaa0-a51d-78babe4a17c7","createdOn":1693154923267}],"events":[{"id":"e-15","name":"","animationType":"preset","eventTypeId":"MOUSE_OVER","action":{"id":"","actionTypeId":"GENERAL_START_ACTION","instant":true,"config":{"delay":0,"easing":"","duration":0,"actionListId":"a-5","affectedElements":{},"playInReverse":false,"autoStopEventId":"e-16"}},"mediaQueries":["main"],"target":{"id":"64eb7e6bc52ced54d92fc0cc|4a529af9-6d34-eaa0-a51d-78babe4a17c7","appliesTo":"ELEMENT","styleBlockIds":[]},"targets":[{"id":"64eb7e6bc52ced54d92fc0cc|4a529af9-6d34-eaa0-a51d-78babe4a17c7","appliesTo":"ELEMENT","styleBlockIds":[]}],"config":{"loop":false,"playInReverse":false,"scrollOffsetValue":null,"scrollOffsetUnit":null,"delay":null,"direction":null,"effectIn":null},"createdOn":1693154923267},{"id":"e-16","name":"","animationType":"preset","eventTypeId":"MOUSE_OUT","action":{"id":"","actionTypeId":"GENERAL_START_ACTION","instant":true,"config":{"delay":0,"easing":"","duration":0,"actionListId":"a-6","affectedElements":{},"playInReverse":false,"autoStopEventId":"e-15"}},"mediaQueries":["main"],"target":{"id":"64eb7e6bc52ced54d92fc0cc|4a529af9-6d34-eaa0-a51d-78babe4a17c7","appliesTo":"ELEMENT","styleBlockIds":[]},"targets":[{"id":"64eb7e6bc52ced54d92fc0cc|4a529af9-6d34-eaa0-a51d-78babe4a17c7","appliesTo":"ELEMENT","styleBlockIds":[]}],"config":{"loop":false,"playInReverse":false,"scrollOffsetValue":null,"scrollOffsetUnit":null,"delay":null,"direction":null,"effectIn":null},"createdOn":1693154923267}],"actionLists":[{"id":"a-5","title":"show-controls player-2","actionItemGroups":[{"actionItems":[{"id":"a-5-n-2","actionTypeId":"GENERAL_DISPLAY","config":{"delay":0,"easing":"","duration":0,"target":{"nodeId":"64be96e8e47606e453cde203|4a529af9-6d34-eaa0-a51d-78babe4a17ce","appliesTo":"ELEMENT_CLASS","styleBlockIds":["f8ebac68-514a-77bd-9910-b77f979f72ae","fc762881-922e-08fc-50dc-56cb8f8826a5"],"boundaryMode":false},"value":"grid"},"instant":true},{"id":"a-5-n","actionTypeId":"STYLE_OPACITY","config":{"delay":0,"easing":"","duration":150,"target":{"nodeId":"64be96e8e47606e453cde203|4a529af9-6d34-eaa0-a51d-78babe4a17ce","appliesTo":"ELEMENT_CLASS","styleBlockIds":["f8ebac68-514a-77bd-9910-b77f979f72ae","fc762881-922e-08fc-50dc-56cb8f8826a5"],"boundaryMode":false},"value":100,"unit":"%"},"instant":false}]}],"useFirstGroupAsInitialState":false,"createdOn":1691842336447},{"id":"a-6","title":"hide-controls player-2","actionItemGroups":[{"actionItems":[{"id":"a-6-n-2","actionTypeId":"STYLE_OPACITY","config":{"delay":0,"easing":"","duration":300,"target":{"nodeId":"64be96e8e47606e453cde203|4a529af9-6d34-eaa0-a51d-78babe4a17ce","appliesTo":"ELEMENT_CLASS","styleBlockIds":["f8ebac68-514a-77bd-9910-b77f979f72ae","fc762881-922e-08fc-50dc-56cb8f8826a5"],"boundaryMode":false},"value":0,"unit":"%"},"instant":false},{"id":"a-6-n","actionTypeId":"GENERAL_DISPLAY","config":{"delay":300,"easing":"","duration":0,"target":{"nodeId":"64be96e8e47606e453cde203|4a529af9-6d34-eaa0-a51d-78babe4a17ce","appliesTo":"ELEMENT_CLASS","styleBlockIds":["f8ebac68-514a-77bd-9910-b77f979f72ae","fc762881-922e-08fc-50dc-56cb8f8826a5"],"boundaryMode":false},"value":"none"},"instant":true}]}],"useFirstGroupAsInitialState":false,"createdOn":1691842336447}]}},"meta":{"unlinkedSymbolCount":0,"droppedLinks":0,"dynBindRemovedCount":0,"dynListBindRemovedCount":0,"paginationRemovedCount":0}}

Copy component

Webflow structure for Youtube

html-wrapper
f-data-video = wrapper
youtube-video-element
f-data-video = youtube-element
f-data-video-id = {youtube-video-id}
f-data-video-controls = false
video-control-wrapper
video-play-button
f-data-video = play-button
video-pause-button
f-data-video = pause-button
video-track-wrapper
video-track
f-data-video = progress-bar
video-progress-bar
f-data-video = progress
video-time-wrapper
video-current-time
f-data-video = current-time
video-duration
f-data-video = duration
settings-dropdown
dropdown-toggle
dropdown-list
speed-dropdown
dropdown-toggle
dropdown-list
speed-item
f-data-video-speed = 0.5
speed-item
f-data-video-speed = 1
speed-item
f-data-video-speed = 1.25
This is a live demo. Click play!
00:00
/
00:00

Youtube Video Element

Add a Div Block inside your wrapper element. This is the Div Block that will contain your Vimeo iframe

To this Div Block add these following attributes

f-data-video
=
youtube-element
f-data-video-id
=
{youtube-video-id}
f-data-video-controls
=
false


💡 It is important to note that Youtube SDK does not give us a lot of control of the UI elements. There will still be a Youtube logo on the bottom right corner and recommended videos can't be hidden. You can "hide" this using a custom thumbnail when the video is paused.

Essential Video Attributes

These two attributes are essential for Flowplay to work.

video Player Wrapper

f-data-video
=
wrapper

Youtube Video Element

f-data-video
=
youtube-element
f-data-video-id
=
{youtube-video-id}
f-data-video-controls
=
false

💡 Click on the attributes to copy them to clipboard

Playback control attributes

To add custom playback controls on your HTML videos.

Play button

f-data-video
=
play-button
Add this to any Button or Div Block

Pause button

f-data-video
=
pause-button
Add this to any Button or Div Block

Replay button

f-data-video
=
replay-button
Add this to any Button or Div Block

Seek forward button

f-data-video
=
forward-button
Add this to any Button or Div Block

Seek backwards button

f-data-video
=
backward-button
Add this to any Button or Div Block

Fullscreen

f-data-video
=
fullscreen
Add this to any Button or Div Block

Progress Bar + Indicator

f-data-video
=
progress-bar
f-data-video
=
progress
Add this to any Button or Div Block

Loading bar

f-data-video
=
loading-bar
Add this to any Button or Div Block

Video current Time + Duration

f-data-video
=
current-time
f-data-video
=
duration
Add this to any Text Block or Text Span

Keyboard shortcuts

f-data-video
=
shortcuts
Add this to the element with f-data-video=wrapper attribute

Mute button

f-data-video
=
volume-button
Add this to any Button or Div Block

Powerup Attributes

Extra features to level up your HTML videos.

volume range

Volume Range Slider

f-data-video
=
volume-slider

Add this to the HTML range slider embed

Volume Level text

f-data-video
=
volume-text

Add this to any text block

💡 Use a HTML range input

Please note: Volume control of the HTML element doesn't affect on IOS device.
Classic Apple. Learn more here.

Video Speed

Video Speed Selector

f-data-video-speed
=
{speed}

The {speed} attribute value can indeed be set to any integer greater than 0. It offers you the flexibility to control the speed of your video.

Video Speed Text

f-data-video
=
speed-text

If you want to display the video speed, simply add this attribute to any text block or text span.

💡 Use a Dropdown element to contain your speed selectors

Video Overlay Control

This is used when you want users to click on the player to play/pause.
Examples: Youtube, Vimeo, Netlfix

Overlay wrapper

f-data-video
=
poster-button

Overlay Play Icon

f-data-video
=
play-icon

Overlay Pause Icon

f-data-video
=
pause-icon
Copied to clipboard