.video_list .image a:after {
    content: "\f16a";
    width: 80px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    position: absolute;
    top: calc(50% - 30px);
    left: 50%;
    margin-left: -40px;
    margin-top: -30px;
    font-size: 72px;
    color: #999999;
    font-family: "FontAwesome";
    z-index: 2;
    cursor: pointer;
}
.video_list .video_element {
    position: relative;
    margin-bottom: 30px;
}
.video_list .image a:before {
    z-index: 1;
    position: absolute;
    top: calc(50% - 30px);
    left: 50%;
    margin-left: -20px;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    background: white;
    content: " ";
    transition: 200ms;
}
.video_list {
    display: grid;
    grid-template-columns: repeat(3, 32%);
    justify-content: space-between;
}
.video_list .video_element:hover .image a:after {
    color: #cc0000;
}
.video_list a {
    display: block;    
}
.video_link_popup img {
    width: 100%;
    height: auto;
}
/*
.fancybox-iframe-custom {
    max-width: 50%;
    max-height: 50%;
}*/
/*
.fancybox-inner .fancybox-content.fancybox-content-custom {
    background-color: rgba(0, 0, 0, 0.5);
}*/
.fancybox-container .fancybox-bg.opacity_bg {
    background-color: rgba(0, 0, 0, 0.5);
}
.video_element_name {
    margin-top: 10px;
}
.video_element_name a {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 16px;
    color: #6b6b6b;
    outline: none;
    color: #6b6b6b;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease-out;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.buttons {
    margin-bottom: 30px;
}
@media(max-width: 800px) {
    .fancybox-inner .fancybox-content.fancybox-content-custom {
        width: 100% !important;
        height: calc(100vw / 1.33) !important;
        top: calc((100vh - (100vw / 1.33)) / 2) !important;
    }
    .fancybox-inner .fancybox-content.fancybox-content-custom iframe {
        height: 100%;
        width: 100%;
        
    }
}
@media(max-width: 700px) {
    .video_list {
        grid-template-columns: repeat(2, 48%);
    }
}
@media(max-width: 500px) {
    .video_list {
        grid-template-columns: repeat(1, 100%);
    }
}