﻿/* ------------------------------------------------
   The Whisky Exchange
   Designed and Built by The Whisky Exchange
   All Rights Reserved

   Lazy Load Youtube

   Content:
   Stucture
   Video
   ------------------------------------------------ */
/* ------------------------------------------------
   Structure
   ------------------------------------------------ */
.video-lazy {
   position: relative;
   width: 100%;
   padding-bottom: 56.25%; /* 16/9 ratio */
   height: 0;
   overflow: hidden;
   background-color: #000;
}
.video-lazy .video-lazy-placeholder {
   width: 100%;
   background-repeat: no-repeat;
   background-position: center center;
   cursor: pointer;
   -webkit-background-size: cover;
   -moz-background-size: cover;
   -o-background-size: cover;
   background-size: cover;
}
.video-lazy .video-lazy-placeholder .video-lazy-spacer {
   padding: 0 0 57% 0;
   background: url(/media/rtwe/assets/application-v2/images/widgets/ytplay.png) center center no-repeat;
}
/* ------------------------------------------------
   Video
   ------------------------------------------------ */
.video-lazy iframe {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}