/*                                                                      */
/* 		                   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;
  margin-bottom: 20px;     /* To stop text content crashing the bottom of the video (IMC: 20201006) */  
}

div.video-container {
  /*background: url(https://cms03.s3-eu-west-1.amazonaws.com/csg-ux-99-video-wallpaper-loading-1205x678.png ) no-repeat 0 0;*/
  background: url(https://cms03.s3-eu-west-1.amazonaws.com/csg-ux-99-video-wallpaper-loading-1205x678.png) no-repeat 0 0;
  background-size: cover;
}
/*
div.video-container iframe {
  visibility: hidden;
} */

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 */
}


