/* Customize the advanced audio player's appearance here */
html, body {
	margin: 0;
	padding: 0;
	height: 100%;
}
body {
	padding: 5px 0;
	background: #111;
	/*font: 20px/24px 'Helvetica', 'Arial', sans-serif;*/
	font-family: 'Noto Sans Malayalam';
	font-size: 22px;
	color: #eee;
	position: relative;
	margin: 0 auto;
	width: 100%;
	max-width: 1000px;
}
a, a:focus, a:active, a:hover {
	color: #fff;
	text-decoration: none;
}
.h3-ml, .h3-en a {
	text-align: center;
	color: #90EE90;
	font-size: 24px;
}
.h3-en, .h3-ml a {
	text-align: center;
	color: #00FFFF;
	font-size: 24px;
}
li,
p {
  line-height: 2;
}
.sticky-div {
	background-color: #111;
	position: fixed;
	top: 0px;
	padding: 0px;
	z-index: 100;
	width: 100%;
	max-width: 1000px;
}
.controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}
.progress {
    height: 10px;
    background-color: #ccc;
    margin-top: 10px;
}
.progress-bar {
    width: 0;
    height: 100%;
    background-color: #4caf50;
}
.audio-player {
    background: #444;
    padding: 20px;
}
#audio {
   width: 100%;
}
#current-time, #total-time {
    margin-top: 10px;
}
/* page style */
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* songTitle style */
#songTitle {
	color: orange;
}
/* playlist style */
.playlist-wrap {
	background-color: #222;
	top: 265px;
}
.playlist-wrap li {
	margin: 0px;
	padding: .25em 0 .25em .5em;
	list-style: none;
	color: skyblue;
	font-weight: bold;
}
.playlist-wrap li.sel {
	background-color: #222;
}
.playlist-wrap li:hover, li:active {
	background-color: #333;
}
.playlist-wrap li li {
	margin: 0px;
	padding: 0px;
	list-style: decimal outside;
	color: white;
	font-weight: normal;
}
.playlist-wrap li li a:hover, .playlist-wrap li li a:focus {
	background-color: #999;
}

