component-videos-list-card-c a, component-videos-list-card-c a:active, component-videos-list-card-c a:hover, component-videos-list-card-c a:focus, component-videos-list-card-c a:visited {
    text-decoration: none !important;
    outline: none !important;
}
component-videos-list-card-c .text-center {
    text-align: center;
}
component-videos-list-card-c .block-video-list {
    height: auto;
    overflow: hidden;
    transition: all 0.3s;
    width: 100%;
    margin-bottom: 30px;
    outline: none;
}
component-videos-list-card-c .block-video-list .background-image-container {
    height: auto;
    overflow: hidden;
    transition: all 0.3s;
}
component-videos-list-card-c .block-video-list .video-cover {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 100%;
    transition: all 0.3s;
    /*opacity: 0.7;*/
}
component-videos-list-card-c .block-video-list:hover .video-cover {
    transform: scale(1.1);
}
component-videos-list-card-c .block-video-list .background-overlay {
    padding: 100% 0 0;
    margin-top: -100%;
    transition: all 0.5s;
    width: 100%;
}
component-videos-list-card-c .block-video-list:hover .background-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    transform: scale(1);
}
component-videos-list-card-c .block-video-list .video-description {
    width: 100%;
    background-color: transparent;
    transition: all 0.3s;
    cursor: pointer;
}
/*component-videos-list-card-c .block-video-list:hover .video-description {
    height: 110px;
    background-color: white;
}*/

component-videos-list-card-c .block-video-list .video-description .left {
    /*float: left;*/
    height: 100%;
    padding: 10px 0px 40px 0px;
    line-height: 1.9;
    transition: all 0.3s;
}
component-videos-list-card-c .block-video-list .video-description .left .sub-info {
    color: white;
    font-size: 14px;
    text-align: left;
    margin: 0px;
    font-weight: bold;
    letter-spacing: 1px;
    font-family: monospace;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    text-decoration: none;
}
component-videos-list-card-c .block-video-list .video-description .left .main-info {
    color: white;
    font-size: 18px;
    font-weight: normal;
    line-height: 20px;
    height: 40px;
    overflow: hidden;
    word-wrap: normal;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    text-decoration: none;
}
component-videos-list-card-c .block-video-list .video-description .right {
    float: right;
    width: 60px;
    height: 100%;
    opacity: 0;
    line-height: 90px;
    transition: all 0.3s;
}
component-videos-list-card-c .block-video-list:hover .video-description .right {
    height: 110px;
    opacity: 1;
    line-height: 110px;
}
component-videos-list-card-c .block-video-list:hover .video-description .right img {
    line-height: 110px;
}
component-videos-list-card-c .block-video-list .video-description .right img {
    line-height: 90px;
    margin: 0px 10px;
}
component-videos-list-card-c .block-video-list:hover .video-description .right img.darkImg {
    display: none;
}
component-videos-list-card-c .outer-video-player {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 11000;
    display: none;
}
component-videos-list-card-c .outer-video-player.active {
    display: block;
}
component-videos-list-card-c .outer-video-player .overlay-backdrop {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1;
    top: 0;
    left: 0;
}
component-videos-list-card-c .outer-video-player .overlay-player {
    width: 100%;
    height: 100vh;
    z-index: 2;
    top: 0;
    left: 0;
    position: absolute;
    text-align: center;
}
component-videos-list-card-c .outer-video-player .overlay-player .display-table {
    width: 100%;
}
component-videos-list-card-c .outer-video-player .overlay-player .display-table .display-table-cell * {
    max-width: 100%;
}
component-videos-list-card-c .outer-video-player .overlay-player .display-table #video-player {
    opacity: 0;
    transition: all 0.3s;
}
component-videos-list-card-c .outer-video-player .overlay-player .display-table #video-player.after {
    opacity: 1;
}
component-videos-list-card-c .outer-video-player .overlay-player .display-table #video-player.after iframe {
    height: 315px!important;
    width: 560px!important;
}
component-videos-list-card-c .outer-video-player .overlay-close {
    top: 0;
    right: 0;
    position: absolute;
    opacity: 0.7;
    outline: none;
    z-index: 3;
}
component-videos-list-card-c .outer-video-player .overlay-close:hover {
    opacity: 1;
}
component-videos-list-card-c .outer-video-player .overlay-close img {
    margin-top: 20px;
    margin-right: 20px;
    cursor: pointer;
    transition: all 0.3s;
}