/** Shopify CDN: Minification failed

Line 45:9 Expected identifier but found whitespace
Line 45:11 Unexpected "{"
Line 45:20 Expected ":"
Line 45:47 Expected ":"

**/


/* CSS from section stylesheet tags */
.video-carousel-wrapper {
  padding: 40px 20px;
}
.video-carousel-inner {
  margin: 0 auto;
  position: relative;
}
.video-carousel-header {
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
}
.video-carousel-container {
  position: relative;
}
.video-carousel-track {
  display: flex;
  gap: 10px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.video-carousel-track::-webkit-scrollbar {
  display: none;
}
.video-slide {
  flex: 0 0 calc(100% / var(--videos-per-row));
  scroll-snap-align: start;
}
.video-slide video {
  width: 100%;
  height: {{ section.settings.video_height }}px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
.video-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 10px;
  z-index: 10;
  cursor: pointer;
}
.video-carousel-arrow.left {
  left: -20px;
}
.video-carousel-arrow.right {
  right: -20px;
}
@media (max-width: 768px) {
  .video-slide {
    flex: 0 0 calc(100% / var(--videos-per-row-mobile));
  }
  .video-carousel-header {
    font-size: 24px;
  }
  .video-carousel-arrow.left {
    left: 0;
  }
  .video-carousel-arrow.right {
    right: 0;
  }
}