/*----------------------------------------------------------------------------*/
/* Component Container */
/*----------------------------------------------------------------------------*/

.com.video {
    /*overflow:hidden;*/
    background-color: #000;
}

:-webkit-full-screen {
    position: fixed;
    background: #000;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    /*padding-bottom: 32px;*/
    box-sizing:border-box;
    -webkit-box-sizing:border-box
}
:-moz-full-screen {
    position: fixed;
    background: #000;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    /*padding-bottom: 32px;*/
    box-sizing: border-box;
    -moz-box-sizing:border-box
}
:-ms-full-screen {
    position: fixed;
    background: #000;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    padding-bottom: 32px;
    box-sizing: border-box;
}

:-webkit-full-screen video {
    /*height: 100% !important;*/
    left: 0 !important;
    margin: 0 !important;
    top: 0 !important;
    width: 100% !important;
}
:-moz-full-screen video {
    /*height: 100% !important;*/
    left: 0 !important;
    margin: 0 !important;
    top: 0 !important;
    width: 100% !important;
}
:-ms-full-screen video {
    /*height: 100% !important;*/
    left: 0 !important;
    margin: 0 !important;
    top: 0 !important;
    width: 100% !important;
}

:-webkit-full-screen .video-share-button {
    display: none;
}
:-moz-full-screen .video-share-button {
    display: none;
}
:-ms-full-screen .video-share-button {
    display: none;
}

/*----------------------------------------------------------------------------*/
/* Player Container */
/*----------------------------------------------------------------------------*/

.video-player {
    height: 100%;
    overflow: hidden;
    position: relative;
    top: 0;
    width: 100%;
    z-index: -2;
}

/*----------------------------------------------------------------------------*/
/* Video Share */
/*----------------------------------------------------------------------------*/

.video-share-button {
    position: absolute;
    top: 48px;
    right: 16px;
    z-index: 4;
}

/*----------------------------------------------------------------------------*/
/* Video Poster */
/*----------------------------------------------------------------------------*/

:-webkit-full-screen .video-poster {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
}

:-moz-full-screen .video-poster {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
}

:-ms-full-screen .video-poster {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
}

.video-poster {
    background-position: center;
    background-size: 100% 100%;
    top: 0;
    position: relative;
    z-index: 2;
}

.video-poster img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -32px;
    margin-left: -32px;
    width: 64px;
    height: 64px;
    cursor: pointer;
}

/*----------------------------------------------------------------------------*/
/* Video */
/*----------------------------------------------------------------------------*/

.video > .video-player > video, .video > .video-player > iframe {
    top: 0;
    position: absolute;
    z-index: -2;
}

/*----------------------------------------------------------------------------*/
/* Video Controls */
/*----------------------------------------------------------------------------*/

.video-controls {
    height: 32px;
    line-height: 32px;
    padding: 0;
    width: 100%;
    position: relative;
    z-index: 10;
}

.video-controls a {
    color: #FFF;
}

.video-controls .play-button,
.video-controls .duration,
.video-controls .mute-button,
.video-controls .fullscreen-button {
    bottom: 7px;
    display: block;
    height: 24px;
    line-height: 32px;
    position: absolute;
    text-align: center;
    width: 24px;
}

.video-controls .play-button {
    bottom: 0;
    height: 32px;
    width: 44px;
}

/* Progress Bar */
/*----------------------------------------------------------------------------*/

.video-controls .progress-bar-container progress,
.video-controls .progress-bar-container progress:focus,
.video-controls .progress-bar-container progress:active  {
    border: none;
    height: 7px;
    outline: none;
    position: absolute;
}

.video-controls input.progress-bar {
    -webkit-appearance: none !important;
    background: transparent;
    bottom: 10px;
    left: 47px;
    z-index: 3;
}

.video-controls ::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    background: #666;
    height:7px;
    width:10px;
}

.progress-bar-container {
    height: 100%;
    padding-left: 44px;
    padding-right: 116px;
    padding-top: 12px;
}

.video-controls .progress-bar-container .progress-bar {
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.25) inset;
    float: left;
    position: relative !important;
    width: 100%;
    z-index: 2;
    display: block;
    height: 7px;
    cursor: pointer;
}

.video-controls .progress-bar-container .progress-bar .bar {
    display: block;
    height: 7px;
}

.video-controls .progress-bar-container .buffer-bar {
}

.video-controls .progress-bar-container .buffer-bar > .bar {
  background-color: #DDD;
}

.video-controls .progress-bar-container .duration-bar {
    background: none;
    margin-top: -7px;
    z-index: 3;
}

.video-controls .progress-bar-container .duration-bar .bar {
    display: block;
    background-color: whiteSmoke;
}

/*----------------------------------------------------------------------------*/
/* Duration */

.video-controls .duration {
    font-size: 11px;
    right: 78px;
}

/* Mute */
.video-controls .mute-button {
    right: 34px;
    text-align: left;
}

/* Full Screen */
.video-controls .fullscreen-button {
    right: 10px;
}