/** Shopify CDN: Minification failed

Line 22:27 Expected ")" to end URL token
Line 66:14 Expected identifier but found whitespace
Line 66:16 Unexpected "{"
Line 66:25 Expected ":"
Line 66:60 Expected ":"
Line 69:14 Expected identifier but found whitespace
Line 69:16 Unexpected "{"
Line 69:25 Expected ":"
Line 69:56 Expected ":"
Line 74:14 Expected identifier but found whitespace
... and 15 more hidden warnings

**/


/* CSS from section stylesheet tags */
@import url('https://cdn.jsdelivr.net/npm/flickity@2/dist/flickity.min.css');

.video-reviews-section {
  background-image: url({{ section.settings.background_image | image_url }});
  background-size: cover;
  background-position: center;
  padding: 10px;
  text-align: center;
}

.video-reviews-section h2 {
  margin-bottom: 10px;
}

.video-reviews-section p.description {
  margin-bottom: 30px;
}

.flickity-carousel {
  direction: ltr;
}

.flickity-viewport {
  overflow: visible !important;
}

.video-carousel .video-item {
  width: 50%;
  padding: 0 10px;
  box-sizing: border-box;
}

.video-carousel video {
  width: 100%;
  aspect-ratio: 9/16;
  display: block;
}

/* Tablet & PC override */
@media screen and (min-width: 750px) {
  .video-carousel .video-item {
    width: 25%;
  }
}

@media screen and (max-width: 749px) {
  .video-reviews-section h2 {
    font-size: {{ section.settings.headline_size_mobile }}px;
  }
  .video-reviews-section p.description {
    font-size: {{ section.settings.desc_size_mobile }}px;
  }
}
@media screen and (min-width: 750px) and (max-width: 1024px) {
  .video-reviews-section h2 {
    font-size: {{ section.settings.headline_size_tablet }}px;
  }
  .video-reviews-section p.description {
    font-size: {{ section.settings.desc_size_tablet }}px;
  }
}
@media screen and (min-width: 1025px) {
  .video-reviews-section h2 {
    font-size: {{ section.settings.headline_size_pc }}px;
  }
  .video-reviews-section p.description {
    font-size: {{ section.settings.desc_size_pc }}px;
  }
}