/* lsn-media-public.css */
/* 16x9 video */
.responsive-video {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: auto;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 56.25%;
}

/*
@media screen and (min-width: 500px) {
    .responsive-video {
        height: 270px;
        width: 480px;
    }
}

@media screen and (min-width: 768px) {
    .responsive-video {
        height: 315px;
        width: 560px;
    }
}
*/

/* 4x3 ratio video */
.responsive-video-4x3, .responsive-video.aspect-ratio-4x3 {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: auto;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 75%;
}

@media screen and (min-width: 1024px) {
    .responsive-video:not(.auto-video) {
        height: 360px;
        width: 640px;
    }

    .responsive-video-4x3:not(.auto-video) {
        height: 480px;
        width: 640px;
    }
}

.responsive-video iframe, .responsive-video-4x3 iframe,
.responsive-video object, .responsive-video-4x3 object,
.responsive-video embed, .responsive-video-4x3 embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    cursor: pointer;
}

