.audio-player-wrap {

  position: fixed;
  right: 20px;
  top: 150px;
  width: 300px;


  /* border: solid yellow; */
  background-color: var(--highlightsmall);
  /* width: 50vw;
  height: auto; */

  display: flex;
  flex-direction: column;
  align-items: center;

  border-radius: 30px;

  -webkit-box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.36);
  box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.36);

  padding-bottom: 20px;

  transition: transform 0.25s ease;

  user-select: none;
}


@media only screen and (min-width: 1000px) {

  .audio-player-wrap:hover {
    transform: scale(1.025);
  }

}

.audiovisible {
  transform: translateX(0) !important;
}

.buttoninvisible {
  opacity: 0;
  pointer-events: 0;
}

.audio-player {
  position: fixed;
  opacity: 0;
  pointer-events: none;
}

.album-cover {
  width: 50%;
  padding-top: 20px;
  padding-bottom: 20px;

  max-height: 250px;
  object-fit: contain;
}

.song-element.playing {
    color: black;
    font-weight: bold;
}


.controls {
  width: 80%;
}

.now-playing {
  background-color: #CEFEC7 !important;

  padding-top: 5px;
  padding-bottom: 3px;
  padding-left: 5px;
}

.buttons-wrap {
  /* border: solid pink; */
  display: flex;
  align-content: center;
  justify-content: center;

  padding-top: 20px;

}

.buttons-play-wrap {
  display: flex;
  flex-direction: row;
  /* justify-content: space-between; */
  align-items: center;

  justify-content: space-around;
  width: 150px;
}

.spacer-buttons {
  width: 10px;
}

.shuffle-wrap {
  position: absolute;
  transform: translateX(-110px);
}

.player-circle {
  height: 40px;
  width: 40px;
  background-color: #CEFEC7 !important;
  border-radius: 50%;
  display: inline-block;

  padding: 0;
  background: none;
  border-style: none;

  -webkit-box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.36);
  box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.36);

  transition: 0.15s ease;

  cursor: pointer;
}

.player-circle:hover {
  transform: scale(1.05);
}

.player-image {
  height: 60%;
}



/* Style for the progress bar container */
.progress-bar {
  width: 100%;
  height: 10px;
  background-color: #ccc;
  position: relative;
  cursor: pointer;
}

/* Style for the progress bar itself */
.progress {
  height: 100%;
  background-color: #4CAF50;
}



/* Style for the dot */
.dot {
  width: 15px;
  height: 15px;
  background-color: #CEFEC7 !important;
  border-radius: 50%;
  position: absolute;
  top: 0;
  transform: translate(-50%, -2.5px);

  cursor: grab;

  -webkit-box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.36);
  box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.36);
}




.songliste-wrap {
  background-color: #CEFEC7 !important;
  margin-top: 30px;

  height: 200px;
  overflow-y: scroll;
}

.song-element {
  background-color: transparent;
  border: none;
  width: 100%;
  text-align: initial;
  color: #7D7D7D;
  cursor: pointer;
}

.song-element:hover {
  color: black;
}

.song-even {
  background-color: #9DFC8E;
}

.shuffle-button {
  opacity: 0.3;
  width: 30px;
  height: 30px;
}

.activated {
  /* background-color: blue !important; */
  opacity: 1;
  /* filter: brightness(0) saturate(100%) invert(90%) sepia(7%) saturate(1272%) hue-rotate(63deg) brightness(108%) contrast(99%); */
  background-color: #7a7a7a !important;
}

.shuffle-image {

}

.activatedimg {
  filter: brightness(0) saturate(100%) invert(90%) sepia(7%) saturate(1272%) hue-rotate(63deg) brightness(108%) contrast(99%);

}
