/** Shopify CDN: Minification failed

Line 16:22 Unexpected "{"
Line 16:31 Expected ":"
Line 25:22 Unexpected "{"
Line 25:31 Expected ":"
Line 31:22 Unexpected "{"
Line 31:31 Expected ":"
Line 34:22 Unexpected "{"
Line 34:31 Expected ":"
Line 37:22 Unexpected "{"
Line 37:31 Expected ":"
... and 22 more hidden warnings

**/
.video-popup-section-{{ section.id }} .video-container {
  position: relative;
  z-index: 1;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
  background-color: #fff;
}
.video-popup-section-{{ section.id }} .video-container img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.video-popup-section-{{ section.id }} .overlay {
  display: none;
}
.video-popup-section-{{ section.id }} .play-button {
  display: none;
}
.video-popup-section-{{ section.id }} .video-popup-heading {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 600;
}
.video-popup-section-{{ section.id }} .video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.5);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.video-popup-section-{{ section.id }} .video-modal.active {
  display: flex;
}
.video-popup-section-{{ section.id }} .video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  border-radius: 0;
  overflow: visible;
}
.video-popup-section-{{ section.id }} .video-modal-close {
  position: absolute;
  top: -15px;
  right: -40px;
  color: #fff;
  font-size: 45px;
  font-weight: 400;
  cursor: pointer;
  z-index: 10000;
  background: transparent;
  border: none;
  padding: 0;
  line-height: 1;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: Montserrat, sans-serif;
}
.video-popup-section-{{ section.id }} .video-iframe-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.video-popup-section-{{ section.id }} .video-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 768px) {
  .video-popup-section-{{ section.id }} .play-button {
    width: 60px;
    height: 60px;
  }
  .video-popup-section-{{ section.id }} .play-button::after {
    border-width: 12px 0 12px 20px;
  }
  .video-popup-section-{{ section.id }} .video-modal-content {
    width: 90%;
  }
  .video-popup-section-{{ section.id }} .video-modal-close {
    top: -35px;
    right: -12px;
    font-size: 40px;
    width: 38px;
    height: 38px;
  }
  .video-popup-section-{{ section.id }} .video-popup-heading {
   font-size: 18px;
   margin-bottom: 20px;
   font-weight: 600;
 }
}