/**
 * Youtube Playlist Player CSS
 * By Aadarsha Paudel (@theNepale)
 * < aadarsha@yahoo.com >
 * -------------------------------------------
 * Please minify the file (youtube.min.css) before use (minified file also included)
*/

#video-playlist {
    margin-bottom: 40px;
}
.video-holder {
    background: #111;
    position: relative;
}
.video-controls {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    color: #FFF;
    z-index: 99;
    padding: 10px;
    height: 60px;
    background: #1c51a2;
}


.video-track {
    margin-right: 100px;
    font-size: 14px;
}
.video-current-playlist {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}
.video-thumbnails {
    height: 100%;
    color: #F6F6F6;
    position: relative;
    padding: 8px;
    overflow-y: auto;
    overflow-x: hidden!important;
}
.video-thumbnails {
    color: #F6F6F6;
}
.big-video {
    width: 70%;
}
.video-thumbs {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 60px;
    width: 30%;
}

@media(max-width:600px){
    .video-controls{
        position:auto;
        bottom:auto;
        display:block;
    }
    .video-thumbs{
        width:100%!important;
    }
    .video-thumbnails{
        display:none!important;
    }
    .big-video{
        padding-top:70px;
        width:100%!important;
    }
}

.big-video-inner {
    padding-top: 56.25%;
    position: relative;
    width: 100%;
}
.video-list{
    padding:8px;
    cursor: pointer;
}
.video-list:hover {
    background: #333;
}
.video-list img {
    width: 80px;
    float: left;
}
.video-title-duration {
    margin-left: 100px;
    display: flex;
}
.video-title-duration h5 {
    font-size: 0.9rem;
}
.big-video-inner iframe {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    margin: 0;
    top: 0;
    left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.video-control-holder {
    position: absolute;
    right: 10px;
    top: 10px;
    background: rgba(0,0,0,0.1);
}

.video-control-holder  a {
    display: inline-block;
    padding: 0 10px;
    line-height: 40px;
    color:white!important;
}
.video-control-holder a:hover{
    cursor:pointer;
    background:rgba(0,0,0,0.5);
}