/** Shopify CDN: Minification failed

Line 19:10 Unexpected "{"
Line 19:19 Expected ":"
Line 20:14 Expected identifier but found whitespace
Line 20:16 Unexpected "{"
Line 20:25 Expected ":"
Line 20:51 Expected ":"
Line 21:17 Expected identifier but found whitespace
Line 21:19 Unexpected "{"
Line 21:28 Expected ":"
Line 21:57 Expected ":"
... and 3 more hidden warnings

**/


/* CSS from section stylesheet tags */
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
  background-color: #EFEFEF;
}

.video-slider .testimonial__image {
  height: 500px;
  max-width: 27rem;
  background: none;
}

.video-slider video {
  height: 100% !important;
  border-radius: 15px;
}

.video-slider .video-slider-list {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: #ccc #fff;
}

.video-slider .video-slider-list::-webkit-scrollbar {
  height: 8px;
}

.video-slider .video-slider-list::-webkit-scrollbar-track {
  background: #fff;
}

.video-slider .video-slider-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.video-slider .video-slider-list::-webkit-scrollbar-thumb:hover {
  background: #000;
}

.video-slider .video-slider-item {
  scroll-snap-align: center;
  flex: 0 0 auto;
}

.video-slider .title {
  color: #000;
  text-align: {{ section.settings.heading_alignment }};
}

@media screen and (max-width: 800px) {
  .video-slider .testimonial__image {
    margin-left: 0;
  }

  .video-slider .video-slider-list {
    width: 100%;
  }
}