

#nowPlayingBarContainer {
	width: 100%;
   background-color: white; 
    bottom: 0;
    position: fixed; 
    display: none;
    z-index: 1; 
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.8);
}

#nowPlayingBar {
	display: flex;
    height: 90px;
    padding: 16px;
    box-sizing: border-box;    
}

#nowPlayingLeft,
#nowPlayingRight {
	width: 30%; 
    
}
#nowPlayingLeft {
    min-width: 180px;
    overflow: hidden;
}

#nowPlayingRight {
	position: relative;
    margin-top: 22px;
}

#nowPlayingCenter {
	width: 40%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#nowPlayingBar .content {
	width: 100%;
	height: 57px;
}

.playerControls .buttons {
	margin: 0 auto;
    display: table;
}

.controlButton {
	background-color: transparent;
    border: none;
    vertical-align: middle;
}

.controlButton:active{
    outline:none;
}

.controlButton img {
	width: 20px;
}

.controlButton.play img,
.controlButton.pause img {
	width: 32px;
	height: 32px;
    
}

.controlButton:hover {
	cursor: pointer;
}

.progressTime {
	color: #000;
    font-size: 11px;
    min-width: 25px;
    text-align: center;
    margin-top:  -4px;
    padding: 0px, 5px;
}

.playbackBar {
	display: flex;
}

.progressBar {
	width: 100%;
    height: 12px;
    box-sizing: border-box;
    display: inline-flex;
    cursor: pointer;
    
}

.progressBarBg {
	background-color: #000;
    height: 4px;
    width: 100%;
    border-radius: 2px;
}

.progress {
	background-color: #a0a0a0;
    height: 4px;
    width: 0;
    border-radius: 2px;
}

.playbackBar .progressBar {
	margin-top: 0px;
}

.albumArtwork{
	height: 100%;
        width: 58px;
    margin-right: 15px;
    float: left;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.35);  
    
}


#nowPlayingLeft .trackInfo {
	display: table;
}

#nowPlayingLeft .trackInfo .trackName {
	margin: 4px 0;
    display: inline-block;
    width: 100%;
    height: 20px;
    overflow: hidden;
}

#nowPlayingLeft .trackInfo .artistName span {
	font-size: 12px;
    color: #000;
    
}

.volumeBar {
	
    width: 68%;
    position: absolute;
    right: 0;

}

.volumeBar img {
    padding-top: 5px; 
}

.volumeBar .progressBar {
	
    width: 125px;
}



#volumeicon {
    padding-top: 0px;
}



.volumeBar input[type="range"]{
    -webkit-appearance: none;
    background-color: #000;
    height: 8px;
    border-bottom: 5px solid #FF5154;
   
}













@media screen and (max-width: 830px) {
    
    .volumeBar .progressBar  {
        display: none;
    }
    
    .volumeBar img  {
        display: none;
    }
    
    .volumeBar {
        width: 10%; 
    }
    
   
    #nowPlayingRight {
        width: 10%;
    }
    
    #nowPlayingCenter {
        width: 100%;
    }
    
}

@media screen and (max-width: 630px) {

.playbackBar {
	display: flex;
    position: absolute; 
    bottom: 0;
    left: 5;
    width: 95%;
}
    .controlButton i {
        margin-top:10px;
    }
    #nowPlayingLeft{
        min-width: 70%;
    }
    #nowPlayingBar{
        height:100px;
    }
}