.YoutubeVideoList_Default{
	padding: 10px;
            background: #ee3a35;
}
.YoutubeVideoList .VideoHeader {
    padding: 5px;
    margin-bottom: 10px;
    background: url(Images/logo.png) no-repeat scroll 5px center;
    /* border: 1px solid #e0e0e0; */
    /* border-radius: 5px 5px 0 0; */
    /* height: 26px; */
        display: none;
}

.YoutubeVideoList .VideoHeader>span {
    color: #175b98;
    font: bold 9pt/22px arial;
    padding-left: 32px;
    text-transform: uppercase;
}


.YoutubeVideoList .VideoList {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.YoutubeVideoList .VideoList .VideoItem .title{
	color: #fff;
}
.YoutubeVideoList li.VideoItem {
    flex-grow: 1;
    width: calc(25% - 20px);
    margin-bottom: 10px;
}

.YoutubeVideoList .image>img {
    width: 100%;
    object-fit: cover;
    margin-bottom: 10px;
}

.YoutubeVideoList div.GridPanel>span {
        text-align: center;
        display: flex;
        width: 100%;
        margin: 5px 0px;
        height: 25px;
        align-items: center;
        justify-content: flex-end;
        display: none;
}
.YoutubeVideoList div.GridPanel span a {
        color: transparent;
        background: #fe00005c;
        width: 15px;
        height: 15px;
        border-radius: 100px;
        overflow: hidden;
        display: -webkit-inline-box;
        margin-bottom: -3px;
}
.YoutubeVideoList div.GridPanel span span{
        color: #fff;
        background: #fe0000b0;
        width: 25px;
        height: 25px;
        border-radius: 100px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: right;
}
@media (max-width: 768px){
        .YoutubeVideoList li.VideoItem {
            flex-grow: 1;
            width: calc(50% - 20px);
        }
}