@keyframes fade{
  0%{opacity:0;}
  100%{opacity:1;}
}
#plst_wrap {
  /*  align-items: flex-start;
    display: flex;
    justify-content: flex-start;
    transition: max-height 1s ease-out;
    flex-direction: column; */
}
.wdp-playlist-video-card-module__card {
    align-items: flex-start;
    border-top: 1px solid #fafafa;
    display: flex;
    flex-wrap: nowrap;
    padding: 16px;
    transition: background-color .2s ease-in-out;
    width: 100%;
   /*  position: relative; */
}
.wdp-playlist-video-card-module__card:first-child {
    border-top: none;
}
.wdp-playlist-video-card-module__card:hover {
    background-color: #fafafa;
    border-color: transparent;
    border-radius: 8px;
}
.wdp-playlist-video-card-module__card:hover+.wdp-playlist-video-card-module__card {
    border-color: transparent;
}
.wdp-playlist-video-card-module__content {
    align-items: flex-start;
    cursor: pointer;
    display: flex;
    flex-grow: 1;
    gap: 16px;
}
.wdp-playlist-video-card-module__media {
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    overflow: hidden;
    /* position: relative;*/
    touch-action: manipulation;
    width: clamp(86px, 100%, 215px);
}
@supports not (aspect-ratio: 1/1) {
    .wdp-playlist-video-card-module__media:before {
        content:"";
        float: left;
        padding-top: 56.25%
    }

    .wdp-playlist-video-card-module__media:after {
        clear: both;
        content: "";
        display: block
    }
}
@media screen and (max-width: 424.9px) {
    .wdp-playlist-video-card-module__media {
        width:clamp(86px,100%,94px)
    }
}
.wdp-playlist-video-card-module__thumb {
    bottom: 0;
    left: 50%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.wdp-playlist-video-card-module__thumbBackground {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(.5);
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.wdp-playlist-video-card-module__thumbForeground {
    min-height: 100%;
    width: auto;
}
.wdp-playlist-video-card-module__duration {
    background: rgba(0, 0, 0, .5);
    bottom: 5px;
    color: white;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    padding: 2px 1px;
    position: absolute;
    right: 8px;
    z-index: 2;
}
.wdp-playlist-video-card-module__info {
    /* flex: 1 1 0%; */
}


#preloader {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #cccccc;
  border-top-color: #1a1a1a;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Fancybox  */
/* @media all and (min-width: 800px) {*/
.fancybox-thumbs {
    top: auto;
    width: auto;
    bottom: 0;
    left: 0;
    right : 0;
	height: 150px;
    padding: 5px 10px 10px 10px;
    box-sizing: border-box; 
	/*background: rgba(0, 0, 0, 0.3); */
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 0;
	bottom: 150px;
  }
.fancybox-thumbs__list a {height: 150px; width: 180px; margin: 6px;}
/* } */
