.YoutubeVideoList {
        margin-bottom: 10px;
        padding: 0;
}
.YoutubeVideoList .ListVideo {
        padding: 0;
        /* border: 1px solid #dee2e6; */
        border-top: 0;
}
.YoutubeVideoList ul {
        list-style: outside none none;
        margin: 0;
        padding: 0;
}
.YoutubeVideoList li {
        cursor: pointer;
        display: flex;
        width: 100%;
        align-items: flex-start;
        gap: 10px;
        padding-bottom: 5px;
        font-size: 14px;
}
.YoutubeVideoList li+li{
        border-top: 1px dashed #ddd;
        padding-top: 5px;
}
.YoutubeVideoList .ListVideo .VideoItem img {
        height: 55px;
        /* margin-right: 10px; */
        width: 80px;
        object-fit: cover;
        margin-top: 5px;
}
.YoutubeVideoList li .title:hover {
        color: #005e9d;
}
.YoutubeVideoList li .title {
        color: #212529;
        font-size: 14px;
        flex: 1;
}
.YoutubeVideoList .VideoHeader {
        border-radius: 0 10px 0 0;
        display: none;
        height: 28px;
        padding-bottom: 5px;
}
.YoutubeVideoList .VideoHeader .Text {
        color: #fff;
        font: bold 10pt/28px arial;
        height: 28px;
        padding-left: 30px;
}
.ListVideo > span .CurrentPage {
        font: 600 13px arial;
        padding: 3px;
        text-align: right;
}
.YoutubeVideoList .ListVideo>span>span, .YoutubeVideoList .ListVideo>span>a {
        width: 25px;
        height: 25px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        background: #dee2e6;
        border-radius: 5px;
        font-size: 12px;
        text-decoration: none;
}
.YoutubeVideoList .ListVideo>span>span {
        background: #dc3545;
        color: #fff;
}
.YoutubeVideoList .ListVideo > span{
        display: flex;
        justify-content: center;
        margin-top: 10px;
}
@media only screen and (max-width: 768px){
        div.YoutubeVideoList {
                padding: 0 10px;
                margin-bottom: 10px;
        }
}
