body {
  background-color: #afd8af;
}

.player {
  /*height: 30vh;*/
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.details {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-top: 10px;
}

.track-art {
  margin: 7px;
  height: 102px;
  width: 102px;
  background-image: url("");
  background-size: cover;
  border-radius: 5%;
  border-style: solid;
	border-color: #503A22;
	border-width: thin;
  box-shadow: 0 0 7px rgba(100,100,100,0.8);
}

.now-playing {
  font-size: 1rem;
}

.track-name {
  font-size: 1.75rem;
  margin-top: 2px;
}

.track-artist {
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.playpause-track, .prev-track, .next-track {
  padding: 9px;
  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: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #aad5aa;
  border: 1px solid #63866354;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(100,100,100,0.6);
}

/* Modify the appearance of the slider */
.seek_slider, .volume_slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 5px;
  background: #503a22;
  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: #586d58;
  cursor: pointer;
  border-radius: 50%;
}

.seek_slider:hover, .volume_slider:hover {
  opacity: 1.0;
}

.seek_slider {
  width: 50%;
}

.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;
}