#rp_playlistContainer::-webkit-scrollbar {background: #f1f1f1;width: 5px;}
::-webkit-scrollbar-track {color: #a01717;}
::-webkit-scrollbar-thumb {color: blue;background-color: darkgrey;outline: 1px solid slategrey;}
::-webkit-scrollbar-thumb:hover {
    background: #999999;
}
::-webkit-scrollbar-thumb:active {
    background: #999999;
    -webkit-box-shadow: inset 1px 1px 2px rgba(0,0,0,0.3);
}

div, a, p, img, ul, li {padding: 0; margin: 0; border: 0; outline: 0;} /* reset */

#rp_plugin {
    overflow: hidden; /* collapse fix */
    padding-top: 0px;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
         -o-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    font: normal 100%/1.25 Arial, Helvetica, sans-serif;
}

#rp_videoContainer {
    float: none;
    width: auto;
}

#rp_video {
    position: relative;
    height: 0;
    padding-top: 0px; /* IE6 workaround*/
    padding-bottom: 56.25%; /* responsive 16/9 ratio */
    background: #000000;
}

#rp_video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#rp_playlistContainer {
    position: relative;
    -webkit-overflow-scrolling: touch; /* bounce effect on ios */
    width: 100%;
    height: 180px;
     /* IE6 workaround*/
     /* responsive height ratio */
}

#rp_playlist {
    position: absolute;
     /* fixes horizontal scroll */
    list-style-type: none;
}

#rp_playlist li {
    overflow: hidden;
    float: left;
    width: 200px;
    border-top: none;
    padding: 0;
}

#rp_playlist li:hover {
}

.rp_currentVideo,
#rp_playlist .rp_currentVideo:hover {
    background: #f3f3f3;
    /* border-top: #1887e8 1px solid !important; */
}

#rp_playlist li a {
    display: inline-block;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 1% 2.5%;
    /* text-shadow: 0 1px 0 #000000; */
    text-decoration: none;
}

.rp_thumbnail {
    position: relative;
    display: inline-block;
    overflow-y: hidden; /* -y fix for android */
    float: left;
    width: 188px;
    height: 110px; /* clips letterboxing */
    /* border: 1px solid #222222; */
}

#rp_playlist li:hover .rp_thumbnail {
    border: 1px solid #666666;
}

.rp_currentVideo .rp_thumbnail,
#rp_playlist .rp_currentVideo:hover .rp_thumbnail {
    border: 1px solid #999999;
}

.rp_thumbnail img {
    position: absolute;
    top: -4px; /* clips letterboxing */
    width: 40px;
    top: -16px;
    width: 100%;    
}

.rp_title {
    overflow: hidden;
    display: inherit;
    color: #6d6d6d;
    font-size: 14px; /* fallback */
     /* 13/16 */
    line-height: 18px;
    text-overflow: ellipsis;
    /* white-space: pre; */
    height: 42px;
    -webkit-font-smoothing: antialiased;
    padding: 3px;
}

.rp_author {
    overflow: hidden;
    color: #6e6e6e;
    font-size: 10px; /* fallback */
    font-size: 0.625rem; /* 11/16 */
    text-overflow: ellipsis;
    white-space: nowrap;
    display: none;
    line-height: 13px;
}

#rp_playlist li:hover .rp_author {
    color: #aaaaaa;
}

.rp_currentVideo .rp_author,
#rp_playlist .rp_currentVideo:hover .rp_author {
    color: #6e6e6e;
}




/*
@media screen and (min-width: 320px) {
    .rp_thumbnail {width: 60px;}
    .rp_thumbnail img {top: -6px; width: 60px;}
    .rp_author {padding-top: 2px;}
}

@media screen and (min-width: 480px) {
    .rp_thumbnail {width: 80px;}
    .rp_thumbnail img {top: -8px; width: 80px;}
    .rp_title {font-size: 12px; font-size: 0.9375rem;}
    .rp_author {font-size: 12px; font-size: 0.75rem; padding-top: 6px;}
}

@media screen and (min-width: 720px) {
    #rp_videoContainer {float: left;width: 100%;}
    #rp_playlistContainer {}
    .rp_thumbnail {width: 60px;}
    .rp_thumbnail img {top: -6px;width: 60px;}
    .rp_title {font-size: 13px;font-size: -0.1875rem;}
    .rp_author {font-size: 11px; font-size: 0.6875rem; padding-top: 2px;}
}
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) and (orientation : landscape), (min-device-width : 320px) and (max-device-width : 568px) and (orientation : landscape) {
    // iphone landscape fix 
    #rp_videoContainer {float: left; width: 70%;}
    #rp_playlistContainer {width: 30%; padding-bottom: 39.35%;}
    .rp_thumbnail {width: 40px; height: 22px;}
    .rp_thumbnail img {top: -4px; width: 40px;}
    .rp_title {font-size: 12px; font-size: 0.75rem;}
    .rp_author {font-size: 10px; font-size: 0.625rem;}
}
*/

@media screen and (min-width: 960px) {
    .rp_thumbnail {width: 188px;overflow: hidden;height: 110px;}
    .rp_thumbnail img {top: -16px;width: 100%;}
    .rp_author {}
}

