/* Youtube WYSIWYG */ 
#content a.c7n-youtube-link
{
    width: 100%;
    height: 100%;
    display: block;
    z-index: 3;
    position: relative;
    border-bottom: 0;
}

#content a.c7n-youtube-link: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: 1;
    content: "\f16a";
    font-family: "FontAwesome";
    background-color: rgba(0,0,0,0);
    font-size: 3em;
    -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;
}

/* Play Button */
.c7n-youtube-link:before {
    /*opacity: 1;
    content: "\f16a";
    font-family: "FontAwesome";
    background-color: rgba(0,0,0,0);
    font-size: 3em;*/
}

.c7n-youtube-link:hover:before {
    background-color: rgba(0,0,0,0.85);
}

#ytplayer {
    width: 100%;
    border: 0;
    min-height: 250px;
}