.youtube {
    width: 200px;
    height: 160px;
    border-radius: 12px;
    border: 1px solid #CCC;
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: all 200ms ease-out;
    cursor: pointer;
}

.youtube .youtube-preview {
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 300px;
    /*filter: blur(2px);*/
    z-index: -1;
}

.youtube .play {
    background: url('/i/youtube-play-btn.png') no-repeat;
    background-position: 0 -50px;
    -webkit-background-size: 100% auto;
    background-size: 100% auto;
    position: absolute;
    height: 50px;
    width: 69px;
    transition: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.youtube:hover .play {
    background-position: 0 0;
}
