/********************/
/* VIDEO CONTAINERS */
/********************/
a.c7n-youtube-link,
a.c7n-mp4-link, a.c7n-mp4-link-autoplay
{
    width: 100%;
    height: 100%;
    display: block;
    z-index: 3;
    position: relative;
    border-bottom: 0;
}

.c7n-youtube-link:before,
.c7n-mp4-link:before,
.c7n-mp4-link-autoplay:before
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 2;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* padding: 20px 10px; */
    color: #ffffff;
    font-weight: 700;
    background-color: rgba(0,0,0,0.75);
    background-color: rgba(0,0,0,0.85);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 1;
    content: "\f16a";
    font-family: "FontAwesome";
    background-color: rgba(0,0,0,0);
    font-size: 3em;
}

.c7n-youtube-link:hover:before,
.c7n-mp4-link:hover:before,
.c7n-mp4-link-autoplay:hover:before {
    background-color: rgba(0,0,0,0.85);
}

a.c7n-youtube-link.teaser-img-link {
    height: 300px;
}

/* Optional: iFrame Styling */
#ytplayer {
    width: 100%;
    border: 0;
    min-height: 250px;
}