/** Shopify CDN: Minification failed

Line 19:9 Expected identifier but found whitespace
Line 19:11 Unexpected "{"
Line 19:20 Expected ":"
Line 19:49 Expected ":"
Line 47:11 Expected identifier but found whitespace
Line 47:13 Unexpected "{"
Line 47:22 Expected ":"
Line 47:50 Expected ":"

**/


/* CSS from section stylesheet tags */
.video-container {
  position: relative;
  width: 100%;
  height: {{ section.settings.desktop_height }}px;
  overflow: hidden;
}

.video-container video {
  /* Make video to at least 100% wide and tall */
  min-width: 100%; 
  min-height: 100%; 
  
  /* Setting width & height to auto prevents the browser from stretching or squishing the video */
  width: auto;
  height: auto;
  
  /* Center the video */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Hide mobile video on desktop */
.mobile-video {
  display: none;
}

/* Hide desktop video on mobile, show mobile video */
@media screen and (max-width: 768px) {
  .video-container {
    height: {{ section.settings.mobile_height }}px;
  }
  
  .desktop-video {
    display: none;
  }
  
  .mobile-video {
    display: block;
  }
}

/* Object-fit for better video scaling */
@supports (object-fit: cover) {
  .video-container video {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}