#youtube
{
    width: 90px;
    height: auto;
    display: inline-block;
}

#youtube_wrapper
{
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}

#youtube_wrapper iframe
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#youtube_container
{
    display: none;
}

#youtube_play_icon
{
    position: relative;
    cursor: pointer;
}

#youtube_play_icon img
{
    max-width: 100%;
}

#youtube_play_icon:before
{
    position:absolute;
    content: "";
    height: 40px;
    width: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .8;
    background: url('/images/play_40.png');
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1500;
}

.list_carousel #youtube
{
    width: 92px;
}

.list_carousel #youtube_play_icon:before
{
    top: 40%;
}

@media(max-width: 767px)
{
    #youtube_container
    {
        display: block !important;
    }

    #youtube_play_icon
    {
        display:none !important;
    }
}