.video_wrap {
  position: relative;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: transform;

  &:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  &_check, &_delete {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  &:hover &_check, &:hover &_delete {
    opacity: 1;
    visibility: visible;
  }

  &_check {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 24px;
    height: 24px;
    background: #FFFFFF;
    text-align: center;
    border-radius: 4px;
  }

  &_delete {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 24px;
    background: #FFFFFF;
    border-radius: 4px;
    cursor: pointer;
  }

  &_desc {
    position: absolute;
    bottom: 12px;
    right: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  &_header {
    position: absolute;
    top: 8px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
}

.circle_block {
  padding: 2px 8px;
  background: linear-gradient(90deg, #F42E47 0%, #6E3EE1 100%);
  border-radius: 8px;
  text-align: center;
  color: #FFFFFF;
}

.selected {
  border-color: #1890ff;
}


.footer {
  width: 100%;
  padding: 16px 0;
  background: #FFFFFF;
}

@keyframes loading {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.skeletonWrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f0f0f0;
  padding: 10px;
  border-radius: 8px;
}

.skeletonThumbnail,
.skeletonText {
  background-color: #e0e0e0;
  background-image: linear-gradient(90deg, #e0e0e0 25%, #f3f3f3 50%, #e0e0e0 75%);
  background-size: 200px 100%;
  background-repeat: no-repeat;
  animation: loading 1.5s infinite;
}

.skeletonThumbnail {
  height: 200px;
  border-radius: 4px;
}

.skeletonText {
  height: 20px;
  border-radius: 4px;
  width: 60%;
}
