.VideoPane {
    position: relative;
    overflow: hidden;
    background-color: #ececec;
    margin-bottom: 25px;
}
.VideoPane video {
    position: absolute;
    z-index: 1;
    top: 0;
    width:100%;
    height:100%;
    /*  object-fit is not supported on IE  */
    object-fit: cover;
    opacity:1;
}
.VideoPane .container, .VideoPane .bottom-header-panel {
  z-index: 2;
  position: relative;
}
