*{
    margin: 0;
}
body{
    background-color: #151515;
    color: #eee;
    font-family: "YouTube Noto", Roboto, Arial, Helvetica, sans-serif;
    width: 100vw;
    height: 100vh;

}
    #player{
        margin: 5px;
    }
    #playlist{
        xxxxfloat: left;
        height: 100vh;
        overflow-y: scroll;
    }
    #playlist_ul {
	    margin:0px !important;
	    padding: 0px !important
    }
        .playlist_item{
            position: relative;
            list-style-type: none;
            padding: 10px;
            xxxxwidth: 480px;
            height: 110px;
            margin: 5px 0;
            background-color: #111;
            cursor: pointer;
            text-align: left;
        }
        .playlist_item:hover:not(.active){
            background-color: #171717;
        }
        .active{
            background-color: #222;
        }

            .playlist_item a {
                width: 100%;
                height: 100%;
            }
                .playlist_item_image{
                    height: 100%;
                    border-radius: 3px;
                    float: left;
                    margin-right: 20px;
                    background-repeat: no-repeat;
                }
                .playlist_item_owner{
                    font-size: .8rem;
                    color: #999;
                    margin-top: 5px;
                }
                .playlist_item_duration{
                    border-radius: 3px;
                    display: block;
                    position: absolute;
                    padding: 2px;
                    background-color: rgba(0,0,0, .5);
                }
                
                
#playlist_loader {
  font-size: 24px;
  color: #666;
  padding: 10px;
  text-align: center;
}
  #player_notice {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-family: system-ui, sans-serif;
    font-size: 14px;
    display: none;
    z-index: 99;
  }