/* ============================================================================================== 
This copyright notice must be kept untouched in the stylesheet at all times.
The original version of this stylesheet and the associated (x)html 
is available at http://www.script-tutorials.com/html5-audio-player-with-playlist/
Copyright (c) Script Tutorials. All rights reserved.
This stylesheet and the associated (x)html may be modified in any way to fit your requirements.
================================================================================================= */
* {
    margin: 0;
    padding: 0;
}
body {
    background-color: #aaa;
}
.example {
    width: max-content;
    height: max-content;
}
.player {
    background: transparent url("../images/player_img.png") no-repeat scroll center top;
	background-size: calc(1.3*326px) calc(1.3*245px);
    height: calc(1.3*169px);
    position: relative;
    width: calc(1.3*326px);
    z-index: 2;
}
.title, .artist {
    font-family: verdana;
    left: calc(1.3*167px);
    position: absolute;

    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
.title {
    color: #FFFFFF;
    font-size: calc(1.3*11px);
    font-weight: bold;
	margin-right: calc(1.3*20px);
    top: calc(1.3*21px);
}
.controls {
    cursor: pointer;
    height: calc(1.3*23px);
    left: calc(1.3*167px);
    position: absolute;
    top: calc(1.3*65px);
    width: calc(1.3*138px);
}
.controls .play, .controls .pause, .controls .rew, .controls .fwd {
    background: transparent url("../images/player_img.png") no-repeat scroll 0 0;
	background-size: calc(1.3*326px) calc(1.3*245px);
    float: left;
    height: 100%;
    width: 33%;
}
.controls .play {
    background-position: calc(1.3*-8px) calc(1.3*-171px);
	background-size: calc(1.3*326px) calc(1.3*245px);
}
.controls .pause {
    background-position: calc(1.3*-8px) calc(1.3*-198px);
	background-size: calc(1.3*326px) calc(1.3*245px);
    display: none;
}
.controls .rew {
    background-position: calc(1.3*-54px) calc(1.3*-171px);
	background-size: calc(1.3*326px) calc(1.3*245px);
}
.controls .fwd {
    background-position: calc(1.3*-100px) calc(1.3*-171px);
	background-size: calc(1.3*326px) calc(1.3*245px);
}
.controls .play:hover {
    background-position: calc(1.3*-8px) calc(1.3*-170px);
	background-size: calc(1.3*326px) calc(1.3*245px);
}
.controls .pause:hover {
    background-position: calc(1.3*-8px) calc(1.3*-197px);
	background-size: calc(1.3*326px) calc(1.3*245px);
}
.controls .rew:hover {
    background-position: calc(1.3*-54px) calc(1.3*-170px);
	background-size: calc(1.3*326px) calc(1.3*245px);
}
.controls .fwd:hover {
    background-position: calc(1.3*-100px) calc(1.3*-170px);
	background-size: calc(1.3*326px) calc(1.3*245px);
}
.hidden {
    display: none;
}
.controls .visible {
    display: block;
}
.volume {
    height: calc(1.3*11px);
    left: calc(1.3*186px);
    position: absolute;
    top: calc(1.3*96px);
    width: calc(1.3*112px);
}
.tracker {
    height: calc(1.3*15px);
    left: calc(1.3*20px);
    position: absolute;
    top: calc(1.3*126px);
    width: calc(1.3*285px);
}
.ui-slider-range {
    background: transparent url("../images/player_img.png") no-repeat scroll calc(1.3*5px) calc(1.3*-222px);
	background-size: calc(1.3*326px) calc(1.3*245px);
    height: 100%;
    position: absolute;
    top: 0;
}
.ui-slider-handle {
    cursor: pointer;
    height: calc(1.3*10px);
    margin-left: calc(1.3*-3px);
    position: absolute;
    top: calc(1.3*2px);
    width: calc(1.3*10px);
    z-index: 2;
}
.volume .ui-slider-handle {
    background: url("../images/player_img.png") no-repeat scroll calc(1.3*-201px) calc(1.3*-188px) rgba(0, 0, 0, 0);
	background-size: calc(1.3*326px) calc(1.3*245px);
    height: calc(1.3*13px);
    width: calc(1.3*13px);
}
.tracker .ui-slider-handle {
	background: url("../images/player_img.png") no-repeat scroll calc(1.3*-201px) calc(1.3*-188px) rgba(0, 0, 0, 0);
	background-size: calc(1.3*326px) calc(1.3*245px);
	height: calc(1.3*16px);
	width: calc(1.3*16px);
}
.playlist {
	background-color: #333333;
    border-radius: calc(1.3*5px) calc(1.3*5px) calc(1.3*5px) calc(1.3*5px);
    list-style-type: circle;
    margin: calc(1.3*-10px) 0 0 calc(1.3*2px);
    padding-bottom: calc(1.3*10px);
    padding-top: calc(1.3*15px);
    position: absolute;
    width: calc(1.3*322px);
    z-index: 1;

	overflow: auto;
	-ms-overflow-style: none;
	&::-webkit-scrollbar { 
    display: none;
  }
}
.playlist li {
    color: #EEEEEE;
    cursor: pointer;
    margin: 0 0 calc(1.3*5px) calc(1.3*15px);
	font-size: calc(1.3*11px);
}
.playlist li.active {
	font-size: calc(1.3*11px);
    font-weight: bold;
}