@use '../variables.scss' as var;

@mixin SnVideo {
    .#{var.$classPrefix}Video {
        height         : 0;
        overflow       : hidden;
        padding-bottom : 56.25%;
        position       : relative;
        > iframe,
        > video,
        > .video {
            position : absolute;
            top      : 0;
            left     : 0;
            width    : 100%;
            height   : 100%;
        }
    }
}