﻿
/*==============================================================================
                         BRIGHCOVE PLAYER MANAGER
==============================================================================*/

/* BEGIN: intrinsic aspect ratio */
.video-container {
    display: block; 
    position: relative;
    max-width: 100%;
    background: #060606;
}
.video-container-inner {
    /* ASPECT RATIO (16:9): 720/1280 * 100 */
    padding-top: 56.25%;
}
.video-js,
.video-poster {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

/* Quality select dropdown */
.vjs-control.selectStyle {
    margin-top: 10px;
    width: auto;
}
.vjs-control.selectStyle label {
    display: inline-block;
    margin-right: 9px;
    color: #fff;
}
.vjs-control.selectStyle select {
    color: black;
}

/* Poster image */
.video-poster {
    cursor: pointer;
    background-position: center center;
    background-size: cover;
}
.video-poster .play-icon-white {
    position: absolute;
    width: 160px;
    height: 160px;
    top: 50%;
    left: 50%;
    margin-left: -80px;
    margin-top: -80px;
    background: url('play_icon_white.png') no-repeat center center;        
    -moz-transition-property: all;
    -moz-transition-duration: .5s;
    -moz-transition-delay: 0s;
    -moz-transition-easing: ease-out;
    -webkit-transition-property: all;
    -webkit-transition-duration: .5s;
    -webkit-transition-delay: 0s;
    -webkit-transition-easing: ease-out;
    -o-transition-property: all;
    -o-transition-duration: .5s;
    -o-transition-delay: 0s;
    -o-transition-easing: ease-out;
    transition-property: all;
    transition-duration: .5s;
    transition-delay: 0s;
    transition-easing: ease-out;
}
.video-poster:hover .play-icon-white {
    filter: alpha(opacity=85);
    opacity: 0.85;
}