/*----------------------  Video Player --------------------------*/

.video_player_outer
{
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10001; 
    display:none;
}
.video_player_box
{
    position:absolute;
    top:10%;
    left:10%;
    width:80%;
    height:80%;
    background-color: #000;
    
       
    z-index: 1001;
}


.video_player_close
{
    position:absolute;
    right:15px;
    top:15px;
    background-image:url(images/templates/icon_close.png);
    width:19px;
    height:19px;
    cursor:pointer;
}


.video_player_close > a
{
    position:absolute; 
    width:100%; 
    height:100%; 
    top:0; 
    left:0; 
    text-decoration:none;
    z-index:10;
    background-color:white;
    opacity: 0;
    filter: alpha(opacity=1);
}


.video_player_embed_box
{
    width:100%;
    height:100%;
    padding-top: 5px;
    padding-bottom: 5px;
    position:relative;
}
#video_player_vplayer
{
    width:100%;
    height:100%;
}




/* video container */
.videoContainer{
    width:100%;
    height:100%;
    position:relative;
    overflow:hidden;
    background:#000;
    color:#ccc;
}

/* video caption css */
.video_player_caption{
    display:none;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    padding:10px;
    color:#ccc;
    font-size:20px;
    font-weight:bold;
    box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    background: #1F1F1F; /* fallback */
    background:-moz-linear-gradient(top,#242424 50%,#1F1F1F 50%,#171717 100%);
    background:-webkit-linear-gradient(top,#242424 50%,#1F1F1F 50%,#171717 100%);
    background:-o-linear-gradient(top,#242424 50%,#1F1F1F 50%,#171717 100%);
}

/*** VIDEO CONTROLS CSS ***/
/* control holder */
.video_player_control{
    background:#333;
    color:#ccc;
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    z-index:5;
    display:none;
}
/* control top part */
.topControl{
    height:11px;
    border-bottom:1px solid #404040;
    padding:1px 5px;
    background:#1F1F1F; /* fallback */
    background:-moz-linear-gradient(top,#242424 50%,#1F1F1F 50%,#171717 100%);
    background:-webkit-linear-gradient(top,#242424 50%,#1F1F1F 50%,#171717 100%);
    background:-o-linear-gradient(top,#242424 50%,#1F1F1F 50%,#171717 100%);
}
/* control bottom part */
.btmControl{
    clear:both;
    background: #1F1F1F; /* fallback */
    background:-moz-linear-gradient(top,#242424 50%,#1F1F1F 50%,#171717 100%);
    background:-webkit-linear-gradient(top,#242424 50%,#1F1F1F 50%,#171717 100%);
    background:-o-linear-gradient(top,#242424 50%,#1F1F1F 50%,#171717 100%);
}
.video_player_control div.btn {
    float:left;
    width:34px;
    height:30px;
    padding:0 5px;
    border-right:1px solid #404040;
    cursor:pointer;
}
.video_player_control div.text{
    font-size:12px;
    font-weight:bold;
    line-height:30px;
    text-align:center;
    font-family:verdana;
    width:20px;
    border:none;
    color:#777;
}
.video_player_control div.btnPlay{
    background:url(images/video/control.png) no-repeat 0 0;
    border-left:1px solid #404040;
}
.video_player_control div.paused{
    background:url(images/video/control.png) no-repeat 0 -30px;
}
.video_player_control div.btnStop{
    background:url(images/video/control.png) no-repeat 0 -60px;
}
.video_player_control div.spdText{
    border:none;
    font-size:14px;
    line-height:30px;
    font-style:italic;
}
.video_player_control div.selected{
    font-size:15px;
    color:#ccc;
}
.video_player_control div.sound{
    background:url(images/video/control.png) no-repeat -88px -30px;
    border:none;
    float:right;
    margin-right:20px;
}
.video_player_control div.sound2{
    background:url(images/video/control.png) no-repeat -88px -60px !important;
    margin-right:20px;
}
.video_player_control div.muted{
    background:url(images/video/control.png) no-repeat -88px 0 !important;
    margin-right:20px;
}
.video_player_control div.btnFS{
    background:url(images/video/fullscreen.png) no-repeat;
    width:25px;
    height:25px;
    float:right;
    margin-right:20px;
}
.video_player_control div.btnLight{
    background:url(images/video/control.png) no-repeat -44px -60px;
    border-left:1px solid #404040;
    float:right;
}
.video_player_control div.lighton{
    background:url(images/video/control.png) no-repeat -44px -30px !important;
}

/* PROGRESS BAR CSS */
/* Progress bar */
.video_player_progress {
    width:100%;
    height:10px;
    position:relative;    
    cursor:pointer;
    background: #444; /* fallback */
    background:-moz-linear-gradient(top,#666,#333);
    background:-webkit-linear-gradient(top,#666,#333);
    background:-o-linear-gradient(top,#666,#333);
    box-shadow:0 2px 3px #333 inset;
    -moz-box-shadow:0 2px 3px #333 inset;
    -webkit-box-shadow:0 2px 3px #333 inset;
    border-radius:10px;
    -moz-border-radius:10px;
    -webkit-border-radius:10px;
}
.video_player_progress span {
    height:100%;
    position:absolute;
    top:0;
    left:0;
    display:block;
    border-radius:10px;
    -moz-border-radius:10px;
    -webkit-border-radius:10px;
}
.timeBar{
    z-index:10;
    width:0;
    background: #3FB7FC; /* fallback */
    background:-moz-linear-gradient(top,#A0DCFF 50%,#3FB7FC 50%,#16A9FF 100%);
    background:-webkit-linear-gradient(top,#A0DCFF 50%,#3FB7FC 50%,#16A9FF 100%);
    background:-o-linear-gradient(top,#A0DCFF 50%,#3FB7FC 50%,#16A9FF 100%);
    box-shadow:0 0 1px #fff;
    -moz-box-shadow:0 0 1px #fff;
    -webkit-box-shadow:0 0 1px #fff;
}
.bufferBar{
    z-index:5;
    width:0;
    background: #777;
    background:-moz-linear-gradient(top,#999,#666);
    background:-webkit-linear-gradient(top,#999,#666);
    background:-o-linear-gradient(top,#999,#666);
    box-shadow:2px 0 5px #333;
    -moz-box-shadow:2px 0 5px #333;
    -webkit-box-shadow:2px 0 5px #333;
}
/* time and duration */
.video_player_time{
    width: 100px;
    font-size: 11px;
    line-height: 12px;
    position: absolute;
    left: 50%;
    margin-left: -50px;
}

/* VOLUME BAR CSS */
/* volume bar */
.volume{
    position: relative;
    cursor: pointer;
    width: 70px;
    height: 10px;
    float: right;
    margin-top: 10px;
    margin-right: 10px;
    border-style: solid;
    border-color: #fff;
    border-width: 1px;
}
.volumeBar{
    display:block;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    background-color:#eee;
    z-index:10;
}

/* OTHERS CSS */
/* video screen cover */
.loading, #init_video_payer{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:url(images/video/loading.gif) no-repeat 50% 50%;
    z-index:2;
    display:none;
}
#init_video_payer{
    background:url(images/video/bigplay.png) no-repeat 50% 50% !important;
    cursor:pointer;
}


/* Basic */
.clearfix{
	clear:both;
}


@media all and (max-width: 980px) {
    .video_player_box
    {
        width: 98%;
        left: 1%;
        height: 98%;
        top: 1%;
    }
}
