/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *

    This file contains rules for
    VIDEO CANVAS STUDIO
    that implement the UU design system specifically for Sitevision

* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

/* Container for the video. The video has 7:4 aspect ratio and 4/7 = 0.5714, however we need to
   adjust for some padding */
.video-canvas-studio-container {
    padding-top: 56.2%;
    position: relative;
    width: 100%;
}

/* The iframe that contains the video should be positioned absolute and fill the container */
.video-canvas-studio-container iframe {
    border: none;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}