/*youtube channels*/
.channel-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.video-item {
	cursor: pointer;
    width: 170px;
    position: relative;
}
.video-item img {
    width: 170px;
    height: 100px;
    object-fit: cover;
}
.video-duration {
    position: absolute;
    right: 5px;
    top: 72px;
    background: #000;
    color: #fff;
    border-radius: 3px;
    padding: 0 6px;
}
#video-popup {
	overflow: hidden !important;
}