/** Shopify CDN: Minification failed

Line 38:15 Unexpected "{"
Line 38:24 Expected ":"
Line 38:30 Unexpected "{"
Line 39:17 Expected identifier but found "{"
Line 39:18 Unexpected "{"
Line 39:27 Expected ":"
Line 39:58 Expected ":"
Line 40:19 Expected identifier but found "{"
Line 40:20 Unexpected "{"
Line 40:29 Expected ":"
... and 1 more hidden warnings

**/
  .video-grid{
    width:100%;   
  }
  .row-video-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 150px;
    position: fixed;
    right: 20px;
    bottom: 120px;
    z-index: 99;
    box-shadow: 0 0 10px #000;
    border-radius: 10px;
  }
  .row-video-list .slick-track:after,
  .row-video-list .slick-track:before{
    display:none;
  }
  .row-video-list .slick-track .video-grid {
    display: block !important;
  }
  .main-video-{{ section.id }}{
     padding-top:{{ section.settings.top_space_mobile }}px;
    padding-bottom:{{ section.settings.bottom_space_desktop }}px;
  }
  .yt-video-wrapper {
    padding-top: 177.82%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    width:100%;
  }
  .row-video-list .video-grid .video-title{
    font-size: 14px;
    letter-spacing: 0;
    font-weight: 700;
    line-height: 1.3;
    color: rgba(34, 34, 34, 1);
    padding-right: 1px;
  }
  .yt-video-wrapper iframe {
      position: absolute;
      top: -2px;
      right: 0;
      border: 0;
      left: -2px;
      width: calc(100% + 4px);
      height: calc(100% + 4px);
      border-radius: 8px;
      display: none;
  }
  .yt-video-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: calc(100% + 4px) !important;
    height: calc(100% + 4px)  !important;
  }
  .video-over-title {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 24px;
    color: #fff;
    height: 108px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(246, 246, 246, 0) 60%, rgba(246, 246, 246, 0) 100%);
  }
  .play-btn {
    width: 35px;
    height: 35px;
    position: absolute;
    inset: 0;
    margin: auto;
    cursor: pointer;
    border-radius: 40px;
  }
  .play-btn svg {
    max-width: 100%;
    max-height: 100%;
  }
  .yt-video-wrapper.playing img, .yt-video-wrapper.playing .play-btn {
    display: none;
  }
  .yt-video-wrapper.playing iframe {
    display: block;
  }

.row-video-list .video-close-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  display: block;
  padding: 0;
  line-height: 30px;
}

.row-video-list .video-close-btn:hover {
  background: rgba(0, 0, 0, 0.85);
}

@media screen and (max-width: 480px) {
  .video-over-title {
    font-size: 14px;
    height: 70px;
  }
  .row-video-list {
    max-width: 100px;
  }
}