.video-thumb {
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.video-thumb .video-player-container {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video-thumb .video-player-container img {
  max-width: 800px;
  max-height: 100%;
}
.video-thumb .video-thumb-list {
  position: relative;
  display: flex;
  height: 80px;
  padding: 10px 0;
}
.video-thumb .video-thumb-list .video-thumb-list-item {
  flex: 1;
  cursor: pointer;
  user-select: none;
}
.video-thumb .video-thumb-list .video-thumb-list-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.1s ease-in-out;
  pointer-events: none;
}
.video-thumb .video-thumb-list .video-thumb-list-item:hover:not(.active) img {
  transform: scale(1.05);
}
.video-thumb .video-thumb-list .video-thumb-list-drager {
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 100;
  width: 6px;
  height: calc(100% - 20px);
  background-color: rgb(var(--primary-5));
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}
.video-thumb .video-thumb-list .video-thumb-list-drager:hover {
  transform: scale(1.05);
}
.video-thumb-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
