.playlist > .heading {
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}



@font-face{font-family:"Ionicons";src:url("../fonts/ionicons.eot?v=2.0.0");src:url("../fonts/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"),url("../fonts/ionicons.ttf?v=2.0.0") format("truetype"),url("../fonts/ionicons.woff?v=2.0.0") format("woff"),url("../fonts/ionicons.svg?v=2.0.0#Ionicons") format("svg");font-weight:normal;font-style:normal}
[class^="ion-"]:before,[class*=" ion-"]:before{display:inline-block;font-family:"Ionicons";speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;text-rendering:auto;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}


html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	font-family: 'BPG Arial', sans-serif;
}
.player {
	height: 100%;
}
iframe {
	width: calc(100% - 120px);
	height: 100%;
	float: left;
}
.playlist {
	width: 120px;
	height: 100%;
	float: left;
	position: relative;
	background-color: black;
}
.playlist-container {
	margin-top: 32px;
	width: 100%;
	height: calc(100% - 32px);
	overflow-y: auto;
}
.playlist > .heading {
	width: 100%;
	border: none;
	outline: none;
	background-color: #ff7710;
	font-size: 1em;
    padding: 6px;
    color: white;
    position: absolute;
    left: 0;
    top: 0;
    border-bottom: 1px solid #222222;
    cursor: pointer;
    text-align: left;
    -moz-transition:background-color .2s;
    -o-transition:background-color .2s;
    -webkit-transition:background-color .2s;
    transition:background-color .2s;
}
.playlist > .heading:hover {
	background-color: #c75b09;
}
.playlist > .heading i:before {
	font-size: 16px;
}
.playlist ul {
	padding: 0;
	margin: 0;
}
.playlist ul > li {
	display: block;
	color: #cacaca;
    text-align: left;
    padding: 7px 7px 7px 10px;
    background-color: #222222;
    border-bottom: 1px solid black;
    font-size: 0.9em;
    cursor: pointer;
    -moz-transition:background-color .2s, color .2s, border-color .2s;
    -o-transition:background-color .2s, color .2s, border-color .2s;
    -webkit-transition:background-color .2s, color .2s, border-color .2s;
    transition:background-color .2s, color .2s, border-color .2s;
}
.playlist li.season-title i:before, .playlist > .heading i:before, .playlist ul > li.active:before {
	margin-right: 5px;
}
.playlist ul > li.active, .playlist ul > li:hover {
	background-color: black;
	color: white;
	border-color: #222222;
}
.playlist li.season-title {
	cursor: default !important;
	background-color: #4e4e4e !important;
	color: white !important;
	font-size: 14px;
}
.playlist ul > li.active:before {
 	color: #ff7710;
}

::-webkit-scrollbar{width:10px;}
::-webkit-scrollbar-track{background:#e5e5e5;}
::-webkit-scrollbar-thumb{background:#ff7710;}

.playlist > .heading i:before {
    content: "\f49c";
}
.season-title i::before {
    content: "\f369";
    font-size: 20px;
    display: inline-block;
    margin-left: -3px;
}

























