.list-video .title {
    text-align: left;
    margin-bottom: 20px;
}
.list-video {
    user-select: none;
}
.list-video .title .content-loading {
    height: 40px;
    width: 250px;
}
.list-video .title .select-box {
    display: flex;
    align-items: center;
}
.list-video .title .select-box span {
    padding: 5px 10px;
    font-weight: 500;
    cursor: pointer;
    background: white;
    border-radius: 5px;
    margin: 0 5px;
}
.list-video .title .select-box span.active {
    background: #e3e3e3;
    border-radius: 5px;
}
.list-video .view-more {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    cursor: pointer;
    color: #000;
    opacity: 0.6;
}
.list-video .view-more img {
    margin: 0;
}
.list-video .view-more:hover {
    opacity: 1;
}
.content-loading {
    width: 100%;
    height: 200px;
    background-color: #eee;
    border-radius: 10px;
    overflow: hidden;
}
.video-item img {
    width: 100%;
    object-fit: cover;
    display: block;
    height: 170px;
}
.video-item .level {
    border-radius: 0;
    border-bottom-left-radius: 10px;
    right: 0;
    top: 0;
}

.video-item .item-content {
    padding: 10px 10px 0 10px;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
}

.video-item .item-content .title {
    font-weight: 600;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 5px;
}

.video-item .item-content .view {
    color: gray;
    font-size: 14px;
}

.tab-popular .video-rank {
    display: none;
}

.tab-popular .video-rank.active {
    display: block;
}

.video-item.loading-box {
    width: 227px;
    height: 268px;
}

.video-item.loading-box .content-loading {
    height: 160px;
}

.video-item.loading-box .item-content {
    padding: 10px;
}

.video-item.loading-box .title .content-loading, .video-item.loading-box .view .content-loading {
    height: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.video-item.loading-box .view .content-loading {
    width: 50px;
    margin-top: 10px;
}

.video-item.loading-box .item {
    height: 30px;
}
.video-item .thumbnail-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    display: none !important;
    transform: translate(-50%, -50%);
    width: 36px !important;
    height: 36px !important;
}
@media only screen and (max-width: 767.98px) {
    .list-video .title h3 {
        font-size: 20px;
        margin-top: 10px;
    }
}