body {
  background-color: lightgreen;

  /* Smoothly transition the background color */
  transition: background-color .5s;
}

.player {
/*backgrund pa player*/  
  height: 95vh;
  /*background-image: url("guitar.jpg");*/
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.details {
  /*Bildplacering 25px*/
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-top: 20px;
}
/*Bildstorleken och vilken bild myART 250orginal*/
.track-art {
  margin: 25px;
  height: 260px;
  width: 260px;
  background-image: url("guitar.jpg");
  background-size: cover;
  border-radius: 55%;
}

.now-playing {
  font-size: 0.3rem;
}

.track-name {
  font-size: 1.5rem;
}

.track-artist {
  font-size: 0.7rem;
}

.buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.playpause-track, .prev-track, .next-track {
   /*avstand button till Namn*/
  padding: 8px;
  opacity: 0.18;

  /* Smoothly transition the opacity .2 orginal*/
  transition: opacity .1s;
}

.playpause-track:hover, .prev-track:hover, .next-track:hover {
  opacity: 0.7;
}

.slider_container {
  /**/
  width: 75%;
  max-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 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: 12px;
  height: 12px;
  background: red;
  cursor: pointer;
  border-radius: 15%;
}

.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;
}