/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 53:0 Unexpected "<"

**/
<style>
/* Default: Mobile screens - show mobile, hide desktop */
.video-mobile-only {
  display: block !important;
}
.video-desktop-only {
  display: none !important;
}

/* Desktop screens - show desktop, hide mobile */
@media screen and (min-width: 769px) {
  .video-mobile-only {
    display: none !important;
  }
  .video-desktop-only {
    display: block !important;
  }
}

/* Video container base styles */
[class*="video-container-"] {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
  width: 100%;
}

[class*="video-container-"] video {
  width: 100%;
  height: auto;
  border: none;
  border-radius: 5px;
  object-fit: contain;
}

/* Optional: Different styling for top vs bottom positions */
[class*="-top-"] {
  margin-top: 5px;
  margin-bottom: 5px;
}

[class*="-bottom-"] {
  margin-top: 5px;
  margin-bottom: 5px;
}
</style>