/* @import url(//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css); */


/*********************
 * Wrapper
 *********************/
.js-video {
    position: relative;
    z-index: 100;
}

/*********************
 * Elements inside js-video
 *********************/


.js-video button {
    -moz-appearance: none;
    -webkit-appearance: none;
}

/*********************
 * UI
 *********************/
.playPause.ui-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 0;
    display: block;
    width: auto;
    bottom: 10px;
}
.playPause.ui-icon:before, .playPause.ui-icon:after {
    position: absolute;
    top: 50%;
    left: 50%;
}
.playPause.ui-icon:after {
    content: '';
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    background: rgba(255, 255, 255, 1);
    border-radius: 50%;
    box-shadow: 0 0 5px #c4c4c4;
}
.playPause.ui-icon:before {
    font-size: 40px;
    line-height: 80px;
    z-index: 2;
    top: 50%;
    left: 50%;
    display:block;
    content: '';
    border-left: 25px solid #070707;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
}
.playPause.ui-icon.fa-pause:before, .playPause.ui-icon.fa-undo:before {
    margin-left: -17px;
}
.playPause.ui-icon.fa-pause {
    opacity: 0;
}

.ui {
    padding: 0px 2vw;
    font-size: 0;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    position: absolute;
    z-index: 1;
    bottom: 0;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    visibility: hidden;
}
.js-video:hover .ui{
    visibility: visible;
}

.ui > div.video_icon02{
    width: 90%;
    margin-top: 10px;
    height: 5px;
}
.ui > div.video_icon03{
    font-size: 12px;
    text-align: center;
    line-height: 20px;
}

.ui > div.video_icon05{
}
.ui > div.video_icon01{
}


.timeDisplay {
    white-space: nowrap;
}
.timeDisplay i {
    display: inline;
    font-style: normal;
}

.fullscreen {
    position: relative;
    font-style: normal;
    bottom: 8px;
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    cursor: pointer;
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    z-index: 100;

}
.fullscreen:before {
    font-size: 30px;
    line-height: 40px;
    color: rgba(0, 0, 0, 0.45);
}
.fullscreen:hover:before {
    color: #333;
}

.ui-icon {
    font-size: 20px;
    vertical-align: middle;
    width: 20px;
    margin-right: 10px;
    cursor: pointer;
}

/*********************
 * Progress
 *********************/
.progress, .volumeControl {
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
    position: relative;
    height: 5px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 2px;
    border: 0;
    z-index: 100;

}

.progress > * {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 100;

}

.progress-time {
    background-color: black;
}

.anim {
    -moz-transition: width 1000ms linear;
    -o-transition: width 1000ms linear;
    -webkit-transition: width 1000ms linear;
    transition: width 1000ms linear;
}

.progress-buffer {
    background-color: rgba(0, 0, 0, 0.3);
    -moz-transition: width 250ms linear;
    -o-transition: width 250ms linear;
    -webkit-transition: width 250ms linear;
    transition: width 250ms linear;
}

.volumeControl {
    width: 90%;
    overflow: visible;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    z-index: 100;
}
.volumeControl .ui-slider-handle {
    position: absolute;
    width: 9px;
    height: 9px;
    border: 0;
    top: -2px;
    background: transparent;
    z-index: 100;

}
.volumeControl .ui-slider-handle:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: -50%;
    background: black;
    border-radius: 4px;
    z-index: 100;
}
.volumeControl .ui-slider-handle:focus {
    outline: none;
}