body {
  /* initialize background to lightgreen */
  background-color: white;
  /* Smoothly transition the background color */
  transition: background-color .5s;
}

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

.list-wrapper {
  justify-content: top;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  display: none;
}

.chlist {
  list-style: none;
  align-items: center;
  font-size: 1.5rem;
  height: 185px;
  width: 85%;
  overflow:hidden; 
  overflow-y:scroll;
  padding-top: 5px;
  padding-bottom: 5px;
}

.select-option {
  padding: 5px;
  width: 85%;
}

.select-option:focus {
  outline:none;
}

.select-option:hover {
  outline-style: solid;
  background-color:#eee;
}

.src-wrapper {
  display: none;
}

.details {
  display: flex;
  flex-direction: column;
  /*justify-content: center;*/
}

.header {
  display: flex;
  flex-direction: row;
  margin-top: 25px;
  margin-bottom: 25px;
}

.track-scr {
  font-size: 2rem;
  margin-left: 10px;
  margin-right: auto;
  padding-right: 5px;
  align-items: left;  
  //justify-content: center;
}

 .play-list {
  font-size: 2rem;
  padding-left: 5px;
  margin-left: auto;
  margin-right: 10px;
  align-items: right;  
//justify-content: center;
}


.track-book {
  font-size: 3rem;
  align-items: center;
}

.track-chapter {
  font-size: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

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

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

/* 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%;
}

.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, i.fa-bars, .chlist {
  cursor: pointer;
}

.visually-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

