html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
}

img {
    display: block;
}

svg, path {
    fill: #fff;
}

.hidden {
    display: none;
}


/* AD CONTAINER
 -------------------------------------------------------------------*/
.ad-container {
    position: relative;
    width: 300px;
    height: 250px;
    cursor: pointer;
}


/* COLLAPSED PANEL
 -------------------------------------------------------------------*/
.collapsed-panel {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 300px;
    height: 250px;
    border: 1px solid #000;
    background-color: #000
}

.bg {
    position: relative;
    z-index: 10;
    background: url(images/bg.jpg) no-repeat;
}

.open-action {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 100;
    width: 16px;
    height: 16px;
}

.tt {
    position: absolute;
    top: 71px;
    left: 16px;
    z-index: 10;
}

.legal {
    position: absolute;
    top: 212px;
    left: 3px;
    z-index: 10;
}

.cta {
    position: absolute;
    bottom: -3px;
    left: 0px;
    z-index: 20;
    width: 300px;
    height: 20px;
    background-repeat: no-repeat;
    background-image: url(images/cta-trailer.png);
}

.cta:hover {
    opacity: 0.8 !important;
}

.get-tix {
    background-image: url(images/cta-tix.png);
}

.formats {
    position: absolute;
    top: 215px;
    left: 81px;
    z-index: 10;
}

.collapsed-exit {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
}


/* DATE CODING
 -------------------------------------------------------------------*/

 .date-code {
    position: absolute;
    top: 196px;
    left: 50px;
    width: 200px;
    height: 15px;
    z-index: 10;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(images/date-november.png);
 }

 .now-playing {
    background-image: url(images/date-now.png);
 }

 .tomorrow {
    background-image: url(images/date-tomorrow.png);
 }

 .friday {
    background-image: url(images/date-friday.png);
 }

/* EXPANDED PANEL
 -------------------------------------------------------------------*/
.expanded-panel {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 300px;
    height: 250px;
    border: 1px solid #000;
    background: url(images/bg.jpg) no-repeat;
}

.close-action {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 100;
    width: 16px;
    height: 16px;
}

.expanded-exit {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
}

.expanded-exit.user-video {
    height: calc(100% - 50px);
}


/* VIDEO PANEL
 -------------------------------------------------------------------*/
.video-panel {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 300px;
    height: 250px;
    background-color: black;
}

.video-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 5;
}

