/** Shopify CDN: Minification failed

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 ":"
Line 27:13 Expected identifier but found whitespace
Line 27:15 Unexpected "{"
... and 1 more hidden warnings

**/


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

.video-slider-section .section-title {
  color: #000000;
  text-align: {{ section.settings.heading_alignment }};
  margin-bottom: 2rem;
}

.video-slider-wrapper {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 10px;
  scrollbar-color: #cccccc #ffffff;
  scrollbar-width: thin;
}

.video-slider-wrapper::-webkit-scrollbar {
  height: 6px;
}

.video-slider-wrapper::-webkit-scrollbar-track {
  background: #ffffff;
}

.video-slider-wrapper::-webkit-scrollbar-thumb {
  background: lightgray;
  border-radius: 10px;
}

.video-slider-wrapper:hover::-webkit-scrollbar-thumb {
  background: gray;
}

.video-slider-item video {
  height: 500px;
  width: auto;
  border-radius: 15px;
  max-width: 100%;
}

@media (max-width: 768px) {
  .video-slider-item video {
    height: auto;
    width: 100%;
  }
}