body {
  background-color: #333;

  /* Smoothly transition the background color */
 // transition: background-color .5s;
 
 
 padding-top: 200x;
}

.player {
	height: 5vh;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;	
	margin-bottom: 22px;
	margin-top: 18px;
}

.details {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-top: 0px;
 
}

.track-art {
 
 
   display:none;
}

.now-playing {
 
   display:none;
}

.track-name {
 
   display:none;
}

.track-artist {
 
   display:none;
}

.buttons {
  display: flex;
 
}


.prev-track, .next-track {
display:none;
}


.z{
 Z-INDEX:-1;
}

body {
  padding: 0px;
  margin: 0px;
  height: 100vh;
  width: 100vw;
}




.playpause-track, .prev-track, .next-track {
  padding: 25px;
  opacity: 0.8;

  /* Smoothly transition the opacity */
  transition: opacity .2s;
}

.playpause-track:hover, .prev-track:hover, .next-track:hover {
  opacity: 1.0;
}

.slider_container {
  width: 75%;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
   display:none;
}

/* 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;
   display:none;
}

/* 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%;
   display:none;
}

.seek_slider:hover, .volume_slider:hover {
  opacity: 1.0;
}

.seek_slider {
  width: 60%;
}

.volume_slider {
  width: 30%;
}

.current-time, .total-duration {
  padding: 10px;
}

i.fa-volume-down, i.fa-volume-up {
  padding: 10px;
}

i.fa-play-circle, i.fa-pause-circle, i.fa-step-forward, i.fa-step-backward {
  cursor: pointer;
}