/*                                                                      */
/* 		                   VIDEO                       		        */
/*                                                                      */
/* v001 02 Aug 2019 -   Initial version created from WOL mobile.css     */
/*                                                                      */
/*                                                                      */


div.video-container {
  position: relative;		/* To prevent iframe dropping through */
  padding-bottom: 56.25%;		/* = 9 / 16 */
  padding-top: 0px;
  height: 0;
  overflow: hidden;
}

div.video-container {
  background: url("../Images/wol-ux-video-corinthian-wallpaper-20190108-002.jpg") no-repeat 0 0;
  background-size: cover;
}

div.video-container iframe,  
div.video-container object,  
div.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;		/* Use padding in parent div to control height */
}


