        .player {
            border: 1px solid #ccc;
			background-color: #f4f4f4;
			direction: ltr;
			text-align: left;
        }

        .controls {
            margin-top: 10px;
        }
		
		button { 
			background-color: #f0f0f0;
			margin: 0px;
			padding: 12px;
		}
		
        .time-container {
            margin-top: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        #seekBar {
            width: 100%;
        }
        #songname {
            padding-left: 30px;
        }		
		.song-list {		
			height: 150px;
			overflow: auto;
			background-color: #f4f4f4;	
			border: 1px solid #ccc;		
			text-align: left;
			padding-left: 15px;
			direction: ltr;
		}		
		
        .song-list ul {
            list-style: none;
            padding: 0;
        }

        .song-list li {
            padding: 5px;
            cursor: pointer;
        }

        .song-list li.loading {
            opacity: 0.5;
        }

        .song-list li.active {
            background-color: #ecdc88;
        }
		
		@-webkit-keyframes eq {
		  0% { height: 3px; }
		  50% { height: 20px; }
		  100% { height: 3px; }
		}

		@keyframes eq {
		  0% { height: 3px; }
		  50% { height: 20px; }
		  100% { height: 3px; }
		}
		.eq {
		  display: -webkit-box;
		  display: -webkit-flex;
		  display: -ms-flexbox;
		  display: flex;
		  width: 45px;
		  height: 45px;
		  margin: 10px;
		  float: left;
		  -webkit-box-pack: justify;
		  -webkit-justify-content: space-between;
			  -ms-flex-pack: justify;
				  justify-content: space-between;
		  -webkit-box-align: end;
		  -webkit-align-items: flex-end;
			  -ms-flex-align: end;
				  align-items: flex-end;
		}
		.eq-bar {
		  width: 10px;
		  background: rgba(0,0,0,.7);
		}
		.eq-bar:nth-child(1) {
		  -webkit-animation: eq .8s ease-in-out infinite 0s;
				  animation: eq .8s ease-in-out infinite 0s;
		}
		.eq-bar:nth-child(2) {
		  -webkit-animation: eq .8s ease-in-out infinite .2s;
				  animation: eq .8s ease-in-out infinite .2s;
		}
		.eq-bar:nth-child(3) {
		  -webkit-animation: eq .8s ease-in-out infinite .4s;
				  animation: eq .8s ease-in-out infinite .4s;
		}
	.material-icons.md-dark { color: rgba(0, 0, 0, 0.75); }		
	.material-icons {
	  font-family: 'Material Icons';
	  font-weight: normal;
	  font-style: normal;
	  font-size: 24px;
	  line-height: 1;
	  letter-spacing: normal;
	  text-transform: none;
	  display: inline-block;
	  white-space: nowrap;
	  word-wrap: normal;
	  direction: ltr;
	  -moz-font-feature-settings: 'liga';
	  -moz-osx-font-smoothing: grayscale;
	}		