/* Gallery Video Fix -- size our custom video slides like image slides.
   We use our own `hh-gallery-video` wrapper (NOT blueimp's `video-content`)
   specifically to avoid blueimp's `.video-content > video { display:none }`. */
.blueimp-gallery > .slides > .slide > .hh-gallery-video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blueimp-gallery > .slides > .slide > .hh-gallery-video > video {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    margin: auto;
    outline: none;
}
