
/* Hides default video controls */

.media-control {
    cursor: pointer;
    display: inline-block;
    min-width: 60px;
    height: 50px;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px 20px;
}
.media-play-pause {
    background-image: url('./img/play-icon.svg');
    float: left;
}
.media-play-pause:hover {
    background-color: rgba(65, 186, 242, 0.25);
}
.media-volume {
    background-image: url('./img/volume-medium-icon.svg');
    border-left: 1px solid #004559;
    border-right: 1px solid #004559;
}
.media-time {
    display: inline-block;
    float: left;
    color: #fff;
    height: 50px;
    line-height: 50px;
    padding: 0 25px;
    border-left: 1px solid #004559;
}
.media-replay {
    display: inline-block;
    float: left;
    background-image: url('./img/replay-icon.svg');
    border-right: 1px solid #004559;
}
.media-replay:hover {
    background-color: rgba(65, 186, 242, 0.25);
}
#video-time{
    border-left: none !important;
}
#video-container-wrapper {
    width: 100%;
    height: 100%;
}
#video-subtitles-wrapper{
    position: relative;
    height: 100%;
    overflow: hidden;
}
#video-subtitles-container{
    visibility: hidden;
    z-index: 512;
    position: absolute;
    bottom: 75px;
    left: 25px;
    right: 25px;
    min-height: 30px;
    overflow: hidden;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 18px;
    text-shadow: black -1px 0px, black 0px 1px, black 1px 0px, black 0px -1px;
    background-color: transparent;
}
#video-container {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000;
}
#video {
    width: 100%;
    height: 100%;
    display: block;
    padding-bottom: 60px;
}
#video-playhead {
    padding-left: 5px;
}
#video-volume {
    width: auto;
    float: left;
    background-position: left 20px top 15px;
}
#video-subtitles {
    display: none;
    background-image: url('./img/cc-icon.svg');
    float: right;
    border-left: 1px solid #004559;
}
#video-subtitles:hover {
    background-color: rgba(65, 186, 242, 0.25);
}
#video-fullscreen {
    background-image: url('./img/expand-icon.svg');
    float: right !important;
    border-left: 1px solid #004559;
}
#video-fullscreen:hover {
    background-color: rgba(65, 186, 242, 0.25);
}
#video-controls {
    position: relative;
}
#video-controls-wrapper {
    z-index: 2147483647;
    width: 100%;
    height: 50px;
    text-align: center;
    position: absolute;
    bottom: 0;
    background-color: #005266;
    overflow: hidden;
}
#video-timeline {
    z-index: 2147483647;
    position: absolute;
    bottom: 50px;
    height: 10px;
    width: 100%;
    background: #EBEFF2;
    cursor: pointer;
}
#video-playhead {
    height: 10px;
    background: #05B9F0;
    position: absolute;
}
#video-anchor {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #0085B8;
    right: -5px;
}
#video-volume-line-wrapper {
    display: none;
    height: 50px;
    width: 0;
    margin-left: 60px;
    padding-left: 8px;
    margin-top: 0;
    padding-right: 20px;
}
#video-volume-line {
    cursor: pointer;
    position: relative;
    height: 10px;
    width: 100px;
    margin-top: 20px;
    background-color: #004559;
    border-radius: 10px;
}
#video-volume-head {
    position: absolute;
    height: 10px;
    background-color: #05B9F0;
    left: 0;
    border-radius: 10px 0 0 10px;
}
#video-volume-anchor {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #fff;
    right: -8px;
    bottom: -3px;
    border-radius: 16px;
    box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.25);
}
#video-quality {
    float: right;
    border-left: 1px solid #004559;
    background-image: url('./img/quality-hd.svg');
}
#video-quality:hover {
    background-color: rgba(65, 186, 242, 0.25);
}
#audio-play-pause.media-play-pause {
    background-image: url('./img/pause-icon.svg');
}
#audio-play-pause {
    border-left: none;
}
#audio-content {
    height: 500px;
}
#audio-container {
    width: 500px;
    min-width: 235px;
}
#audio-controls {
    height: 50px;
    text-align: center;
    position: relative;
    background-color: #005266;
}
#audio-timeline {
    z-index: 1024;
    height: 20px;
    width: 500px;
    background-color: green;
    /*position: absolute;
    left: 150px;
    right: 30px;
    display: inline-block;*/
    cursor: pointer;
    /*margin-top: 14px;*/
}
#audio-playhead {
    height: 20px;
    background-color: #05B9F0;
    position: absolute;
    padding-left: 10px;
}
#audio-anchor {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #0085B8;
    right: -10px;
}
#audio-hover-time-cover,
#video-hover-time-cover {
    z-index: 512;
    display: none;
    width: 58px;
    height: 17px;
    left: 339px;
    top: -90px;
    padding: 6px;
    border-radius: 2px;
    position: absolute;
    background-color: #0085B8;
    text-align: center;
    color: #fff;
    line-height: 18px;
}
#audio-hover-time-cover {
    top: -27px;
}
#audio-hover-time-triangle {
    position: absolute;
    top: 29px;
    left: 24px;
    border: 11px solid transparent;
    border-top: 11px solid #0085B8;
}
#audio-volume,
#video-volume {
    float: left;
}
#audio-volume {
    position: relative;
}
#audio-volume-line-wrapper {
    display: none;
    z-index: 2147483647;
    position: absolute;
    bottom: 50px;
    left: -1px;
    height: 150px;
    width: 60px;
    background-color: #005266;
    border: 1px solid #004559;
    border-bottom: none;
}
#audio-volume-line {
    position: relative;
    height: 100px;
    width: 10px;
    margin: 25px auto 25px auto;
    background-color: #004559;
    border-radius: 10px;
}
#audio-volume-head {
    position: absolute;
    width: 10px;
    background-color: #05B9F0;
    bottom: 0;
    border-radius: 0 0 10px 10px;
}
#audio-volume-anchor {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #fff;
    top: -8px;
    left: -3px;
    border-radius: 16px;
}