/** Shopify CDN: Minification failed

Line 50:13 Expected identifier but found whitespace
Line 50:15 Unexpected "{"
Line 50:24 Expected ":"
Line 50:57 Expected ":"
Line 51:16 Expected identifier but found whitespace
Line 51:18 Unexpected "{"
Line 51:27 Expected ":"
Line 51:63 Expected ":"
Line 56:15 Expected identifier but found whitespace
Line 56:17 Unexpected "{"
... and 6 more hidden warnings

**/


/* CSS from section stylesheet tags */
.video-section {
  position: relative;
  overflow: hidden;
}

.video-wrappers {
  width: 100%;
  display: flex;
  justify-content: center;
}

video {
  width: 100%;
  height: auto;
  display: block;
}

.mute-button {
  position: absolute;
  bottom: 10px;
  left: 15px;
  /* background: rgba(0,0,0,0.6); */
  color: white;
  border: none;
  font-size: 30px;
  cursor: pointer;
  z-index: 10;
}

/* Margin Settings */
.video-section {
  margin-top: {{ section.settings.margin_top_desktop }}px !important;
  margin-bottom: {{ section.settings.margin_bottom_desktop }}px !important;
}

@media only screen and (max-width: 768px) {
  .video-section {
    margin-top: {{ section.settings.margin_top_mobile }}px !important;
    margin-bottom: {{ section.settings.margin_bottom_mobile }}px !important;
  }
}