.video-js-box { text-align: left; position: relative;  } /* Will be set to the width of the video element */
/* Video Element */
video.video-js { background-color: #000; position: relative; }
/* Fullscreen styles for main elements */
.video-js-box.vjs-fullscreen { position: fixed; left: 0; top: 0; right: 0; bottom: 0; overflow: hidden; z-index: 1000; }
.video-js-box.vjs-fullscreen video.video-js { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1001; }
.video-js-box.vjs-fullscreen .vjs-controls { z-index: 1002; }
/* Poster Style */
.vjs-poster { display: block; position: absolute; left: 0; top: 0; width: 100%; height: 100%; }
/* Subtiles Style */
.vjs-subtitles { color:#fff; font-size: 20px; text-align: center; bottom: 20px; left: 0; right: 0; position: absolute; z-index: 1002; }
.vjs-controls {
    list-style: none !important;
    position: absolute;
    border: none;
    opacity:.95;
    color: #fff;
    display: none; /* Start hidden */
    left: 0;
    right: 0; /* 100% width of video-js-box */
    margin:0 !important;
    background:#fff;
    padding:0 !important;;
    height:35px;
    text-align: center;
}
.vjs-controls li {padding-top:0px !important;}
.vjs-progress-item  {width:100%; height:10px;list-style: none !important; }
.vjs-progress-item  ul  {padding:0 !important; margin:0 !important;}
.vjs-progress-container {width:100%; height:10px; }
.vjs-progress-control {width:100%; height:10px; position:relative;padding:0 !important; margin:0 !important; }
.vjs-progress-holder {height:10px; width:100%; cursor: pointer !important; overflow:hidden; position:relative;}
.vjs-progress-holder ul{display: block !important; list-style:none; }
.vjs-progress-holder li {float: left !important;display: block !important; }
.vjs-load-progress {height:9px; display:block; position:absolute; }
.vjs-play-progress {height:9px; display:block;position:absolute; }
.vjs-play-progress {
    /* Default */ background: #fff;
    /* Webkit  */ background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#777));
    /* Firefox */ background: -moz-linear-gradient(top,  #fff,  #777);
}
.vjs-load-progress {
    opacity: 0.8;
    /* Default */ background-color: #555;
    /* Webkit  */ background: -webkit-gradient(linear, left top, left bottom, from(#555), to(#aaa));
    /* Firefox */ background: -moz-linear-gradient(top,  #555,  #aaa);
}
/* Resume List */
.vjs-resume-playback {position:absolute; top:40%; left:35%; z-index:9999; display:none; cursor: pointer !important; }
.vjs-resume-playback ul, li {float:left !important; list-style: none !important;  }
li.vjs-resume-playback-text {color:#fff; font-family:arial !important; font-weight:bold!important; font-size:24px!important; margin-left:5px !important;}
li.vjs-resume-playback-text span {line-height: 14px !important;}

.vjs-resume-playback-btn {display:block;}
li.vjs-resume-playback-btn, li.vjs-resume-playback-text {height:20px; line-height: 14px !important;}
.vjs-resume-playback-btn span{
    display: block; font-size: 0; line-height: 0;
    width: 0px; height: 0;
    border-left: 15px solid #fff; /* Width & Color of play icon */
    border-top: 8px solid rgba(0,0,0,0); border-bottom: 8px solid rgba(0,0,0,0);
}
/* Playback Items */
.vjs-playback-item  {width:100%; height:10px;list-style: none !important;   }
.vjs-playback-item  ul  {padding:0 !important; margin:0 !important;}
.vjs-playback-container {width:100%; height:30px; }
.vjs-playback-container ul, li {float:left;}

/* Placement of Control Items */
.vjs-playback-container > li.vjs-play-control       { width: 25px; left: 5px; }
.vjs-playback-container > li.vjs-time-control       { width: 75px; left: 35px; }
.vjs-playback-container > li.vjs-volume-control     { width: 50px; right: 35px; float:right !important; margin-top:3px; margin-left:2px; }
.vjs-playback-container > li.vjs-fullscreen-control { width: 25px; right: 5px; float:right !important; margin:0 !important; padding:0 !important;}

/* Play/Pause
-------------------------------------------------------------------------------- */
.vjs-play-control { cursor: pointer !important; }
.vjs-play-control span { display: block; font-size: 0; line-height: 0; }
.vjs-play-control.vjs-play span {
    width: 0; height: 0; margin: 8px 0 0 8px;
    /* Drawing the play triangle with borders - http://www.infimum.dk/HTML/slantinfo.html */
    border-left: 10px solid #333; /* Width & Color of play icon */
    /* Height of play icon is total top & bottom border widths. Color is transparent. */
    border-top: 5px solid rgba(0,0,0,0); border-bottom: 5px solid rgba(0,0,0,0);
}
.vjs-play-control.vjs-pause span {
    width: 3px; height: 10px; margin: 8px auto 0;
    /* Drawing the pause bars with borders */
    border-top: 0px; border-left: 3px solid #333; border-bottom: 0px; border-right: 3px solid #333;
}

/* Time Display
-------------------------------------------------------------------------------- */
.vjs-controls .vjs-time-control { font-size: 10px!important; line-height: 1; font-weight: normal; font-family: Arial, sans-serif; color:#333; }
.vjs-controls .vjs-time-control span { line-height: 25px; /* Centering vertically */ }

/* Volume
-------------------------------------------------------------------------------- */
.vjs-volume-control { cursor: pointer !important; }
.vjs-volume-control ul { padding: 0px 0 0 5px !important; width: 30px;  }
.vjs-volume-control ul li {
    float: left; margin: 0 2px 0 0 !important; padding: 0; list-style: none; width: 3px; height: 3px; border-bottom: 12px solid #666666;
    -webkit-transition: all 100ms linear; -moz-transition: all 100ms linear;
}
.vjs-volume-control ul li.vjs-volume-level-on { border-color: #00ADEF; }
.vjs-volume-control ul li:hover { height: 0; border-bottom-width: 15px; }

/* Fullscreen
-------------------------------------------------------------------------------- */
.vjs-fullscreen-control { cursor: pointer !important; }
.vjs-fullscreen-control ul {
    list-style: none; padding: 0 !important; text-align: left !important; vertical-align: top !important; cursor: pointer !important;
    margin: 5px 0 0 5px !important; /* Placement within the fullscreen control item */
    width: 20px !important; height: 20px !important;
}
/* Drawing the fullscreen icon using 4 li elements */
.vjs-fullscreen-control ul li { list-style: none; float: left !important; margin: 0 !important; padding: 0 !important; font-size: 0 !important; line-height: 0 !important; width: 0 !important; text-align: left !important; vertical-align: top !important; }
.vjs-fullscreen-control ul li:nth-child(1) { /* Top-left triangle */
                                             margin-right: 3px !important; /* Space between top-left and top-right */
                                             margin-bottom: 3px !important; /* Space between top-left and bottom-left */
                                             border-top: 6px solid #333 !important; /* Height and color */
                                             border-right: 6px solid rgba(0,0,0,0) !important;  /* Width */
}
.vjs-fullscreen-control ul li:nth-child(2) { border-top: 6px solid #333; border-left: 6px solid rgba(0,0,0,0); }
.vjs-fullscreen-control ul li:nth-child(3) { clear: both; margin: 0 3px 0 0 !important; border-bottom: 6px solid #333; border-right: 6px solid rgba(0,0,0,0); }
.vjs-fullscreen-control ul li:nth-child(4) { border-bottom: 6px solid #333; border-left: 6px solid rgba(0,0,0,0); }
/* Icon when video is in fullscreen mode */
.vjs-fullscreen .vjs-fullscreen-control ul li:nth-child(1) { border: none !important; border-bottom: 6px solid #333 !important; border-left: 6px solid rgba(0,0,0,0) !important; }
.vjs-fullscreen .vjs-fullscreen-control ul li:nth-child(2) { border: none !important; border-bottom: 6px solid #333 !important; border-right: 6px solid rgba(0,0,0,0) !important; }
.vjs-fullscreen .vjs-fullscreen-control ul li:nth-child(3) { border: none !important; border-top: 6px solid #333 !important; border-left: 6px solid rgba(0,0,0,0) !important; }
.vjs-fullscreen .vjs-fullscreen-control ul li:nth-child(4) { border: none !important; border-top: 6px solid #333 !important; border-right: 6px solid rgba(0,0,0,0) !important; }

/* Download Links - Used for browsers that don't support any video.
-------------------------------------------------------------------------------- */
.vjs-no-video { font-size: small; }
