.playersection{
  background-color: #f0f0f0;
  width: 100%;
  overflow:hidden;
 
  /* Smoothly transition the background color */
  transition: background-color .5s;

}
 
/* Using flex with the column direction to
   align items in a vertical direction */
.player {
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
 
.details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
 
.track-art {
  height: 300px;
  width: 100%;
  background-size: cover;
  background-position: center;
}
 
/* Changing the font sizes to suitable ones */
.now-playing {
  font-size: 1rem;
}
 
.track-name {
  font-size: 28px;
  font-weight: 700;  
    padding-right: 15px;
	margin-top: 15px;
}
 
.track-artist {
  font-size: 14px;
}
 
/* Using flex with the row direction to
   align items in a horizontal direction */
.buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 10px;
  width: 240px;
  margin: auto;
  justify-content: center;
}
 
.playpause-track,
.prev-track,
.next-track {
  padding: 25px;
  opacity: 0.8;
 
  /* Smoothly transition the opacity */
  transition: opacity .2s;
}
.vcenter-item{
  padding: 32px 0px;
}
 
/* Change the opacity when mouse is hovered */
.playpause-track:hover,
.prev-track:hover,
.next-track:hover {
  opacity: 1.0;
}
 
/* Define the slider width so that it scales properly */
.slider_container {
  width: 100%;
  display: flex;
  align-items: center;
}
.volume-ht{
	    display: flex;
    flex-direction: row;
}
 
/* Modify the appearance of the slider */
.seek_slider, .volume_slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 5px;
  background: black;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}
 
/* Modify the appearance of the slider thumb */
.seek_slider::-webkit-slider-thumb,
.volume_slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: white;
  cursor: pointer;
  border-radius: 50%;
}
 
/* Change the opacity when mouse is hovered */
.seek_slider:hover,
.volume_slider:hover {
  opacity: 1.0;
}
 
.seek_slider {
  width: 60%;
}
 
.volume_slider {
  width: 30%;
}
 .current-time{
	 width: 62px;
 }
.current-time,
.total-duration {
  padding: 10px;
}
 
i.fa-volume-down,
i.fa-volume-up {
  padding: 10px;
}
 
/* Change the mouse cursor to a pointer
   when hovered over */
i.fa-play-circle,
i.fa-pause-circle,
i.fa-step-forward,
i.fa-step-backward {
  cursor: pointer;
}

@media only screen and (max-width: 600px) {
.track-art {
  width: 100%;
  height: 280px;
    background-size: cover;
    background-position: center;
}
.vcenter-item{
  padding: 10px 0px;
    justify-content: center;
}
.track-artist {
  font-size: 14px;
  text-align: center;
}
.track-name {
  font-size: 28px;
  text-align: center;
}
}