#playerHolder {
  position: fixed;
  bottom: 0;
  background: aquamarine;
  padding: 5px;
  height: 70px;
  width: 100%;
  text-align: center;
  font-size: 1rem !important;
}
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  background: url('../../img/bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgb(52 52 52);
  background-blend-mode: lighten;
}
.col.ps-3.playing-info {
  background: #589b54;
  color: #191818;
  padding: 8px;
  box-shadow: 5px 5px 5px #525252 inset;
  border: solid 1px #000;
  min-height: 120px;
}
#subControls {
    font-size: larger;
    padding-top: 12px;
}
#nowPlaying{
  padding: 12px;
  background: #141414;
  color: #fff;
}
.controls {
  background: inherit!important;
  /* color: white; */
  /* padding: 12px; */
}
#playerHolder > .track-name,
#playerHolder > .track-artist {
  font-size: 1rem;
}
.fav-button.liked {
  color: #ff2222;
}
.small-thumb {
  max-width: 100%;
  height: auto;
  max-width: 35px;
  /* border-radius: 100%; */
  margin-right: 10px;
  padding-top: 6px;
}
.list-group-item,
.list-group-item-action:focus {
  background: #080808;
  color: #fff;
}
.list-group-item:hover {
  background: #212529;
  color: #fff;
}
.list-group-item.active {
  z-index: 2;
  background-color: #5c5c5c;
  border-color: #1c1b1b;
}
.artist-name {
  font-weight: 200;
  font-size: small;
  color: #b5b5b5;
}
.player-card {
  background: #080808;
  border-radius: 15px;
}

.center-this {
  margin-right: auto;
  margin-left: auto;
}
.player {
  /* height: 95vh; */
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
/* a#repeat {
  font-size: 2rem;
} */
.details {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #37517f;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.track-art {
  margin: 25px;
  height: 250px;
  width: 250px;
  background-image: url("https://images.pexels.com/photos/262034/pexels-photo-262034.jpeg?auto=compress&cs=tinysrgb&dpr=3&h=750&w=1260");
  background-size: cover;
  border-radius: 15%;
}

.now-playing {
  font-size: 0.8rem;
  font-weight: 400;
  font-family: monospace;
  color: #212121cc;
}

.track-name {
  font-size: 1.2rem;
  /* text-align: center; */
}

.track-artist {
  font-size: 1rem;
  /* color: #999a9b; */
  font-weight: 200;
}
.digitalFont {
  font-family: "Silkscreen", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.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 0.2s;
}

.playpause-track:hover,
.prev-track:hover,
.next-track:hover {
  opacity: 1;
}
input.seek_slider {
  margin-top: 20px;
}
.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: #14fb00;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}
span#repeatOne {
  background: #198754;
  padding-right: 7px;
  border-radius: 100%;
  padding-left: 7px;
  padding-top: 2px;
  padding-bottom: 2px;
  border: 2px solid #198754;
  color: #fff;
}
/* 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;
}

.seek_slider {
  width: 60%;
  background: #00faff;
}

.volume_slider {
  width: 30%;
}
.red-slide {
  background: #e81c1c;
}
.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;
}

.counterBox {
  padding-top: 10px;
  padding-right: 18px;
  max-width: 30px;
  width: 30px;
}
.wave {
  height: 30px;
  /* border: 1px solid #fff; */
  padding-bottom: 5px;
  display: inline-flex;
  align-items: flex-end;
  margin-right: 10px;
}
.wave1 {
  width: 3px;
  height: 10px;
  margin-right: 3px;
  border-radius: 10px 10px 0px 0px;
  background: #1db954;
  animation: unset;
}
.wave .wave1:nth-child(2) {
  height: 13px;
  /* animation-delay: .4s; */
}
.wave .wave1:nth-child(3) {
  height: 8px;
  /* animation-delay: .8s; */
}
/* javascript class wave  */
.active2 .wave1 {
  animation: wave 0.5s linear infinite;
}
.active2 .wave1:nth-child(2) {
  animation-delay: 0.4s;
}
.active2 .wave1:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes wave {
  0% {
    height: 10px;
  }
  50% {
    height: 15px;
  }
  100% {
    height: 10px;
  }
}
