/** Shopify CDN: Minification failed

Line 19:10 Unexpected "{"
Line 19:19 Expected ":"
Line 19:26 Unexpected "{"
Line 24:10 Unexpected "{"
Line 24:19 Expected ":"
Line 30:10 Unexpected "{"
Line 30:19 Expected ":"
Line 37:10 Unexpected "{"
Line 37:19 Expected ":"
Line 41:10 Unexpected "{"
... and 35 more hidden warnings

**/


/* CSS from section stylesheet tags */
.section-{{ section.id }} {
  position: relative;
  overflow: hidden;
}

.section-{{ section.id }} .video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.section-{{ section.id }} video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-{{ section.id }} .video-desktop {
  display: block;
}

.section-{{ section.id }} .video-mobile {
  display: none;
}

@media (max-width: 767px) {
  .section-{{ section.id }} .video-desktop {
    display: none;
  }
  .section-{{ section.id }} .video-mobile {
    display: block;
  }
}

.section-{{ section.id }} .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.section-{{ section.id }} .overlay-inner {
  padding: 20px;
  max-width: 800px;
}

.section-{{ section.id }} .overlay-title {
  font-size: {{ section.settings.title_font_desktop }}px;
  margin-bottom: 15px;
}

.section-{{ section.id }} .overlay-body {
  font-size: {{ section.settings.body_font_desktop }}px;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .section-{{ section.id }} .overlay-title {
    font-size: {{ section.settings.title_font_mobile }}px;
  }
  .section-{{ section.id }} .overlay-body {
    font-size: {{ section.settings.body_font_mobile }}px;
  }
}

.section-{{ section.id }} .button {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}