.player {
  font-family: Arial,sans-serif;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 99%;
  margin: 0;
  padding: 1px 1px;
  background-color: rgba(245,245,245,.95);
  box-shadow: 0 -2px 10px rgba(0,0,0,.1);
  z-index: 1000;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  max-height: 66vh;
  overflow-y: auto;
}
.player-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: left;
  margin-bottom: 1px;
  flex-wrap: wrap;
  width: 100%;
  gap: 1px
}
.player-btn {
  color: #000;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 0 10px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center
}
.player-btn:hover {
  background: #c4b340
}
.progress-container {
  position: relative;
  width: 100%;
  height: 18px;
  background: #ddd;
  border-radius: 1px;
  margin-bottom: 1px;
  cursor: pointer margin: 1px 0;
  display: flex;
  justify-content: space-between
}
.progress-bar {
  position: absolute;
  height: 100%;
  display: flex;
  background: #c4b340;
  border-radius: 1px;
  width: 0%
}
#currentTime,
#duration {
  font-size: 14px;
  margin-bottom: 1px;
  color: #555;
  z-index: 2;
  pointer-events: none
}
.playlist {
  list-style: none;
  padding: 1;
  overflow-y: auto;
  margin-top: 10px
}
.playlist li {
  padding: 5px 15px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  border-radius: 25px;
  background-color: #29251b80;
  color: #fff;
  /* display: inline-flex; */
  width: fit-content;
  max-width: 100%
}
.playlist li:hover {
  background-color: #29251b
}
.playlist li.playing {
  background-color: #232c37;
  font-weight: 700
}
.playlist li.paused {
  background-color: #232c40;
  font-weight: 700
}
.volume-control {
  text-align: center
}
.speed-select {
  text-align: center
}
.song-info {
  text-align: left;
  font-weight: 700;
  color: #111!important
}
.song-info a {
  color: #000!important;
  text-decoration: none
}
.song-info a:hover {
  color: #000!important;
  text-decoration: underline
}
#back10Btn {
  background-image: url(/img/10minus.svg);
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat
}
#forward10Btn {
  background-image: url(/img/10plus.svg);
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat
}
.close-btn {
  margin-left: auto;
  top: 1px;
  right: 10px;
  background: 0 0;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #555;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%
}
.close-btn:hover {
  color: #333;
  background-color: rgba(0,0,0,.1)
}
.music-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 5px;
  margin-left: -8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center
}
.music-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23777'%3E%3Cpath d='M8 6.82v10.36c0 .79.87 1.27 1.54.84l8.14-5.18c.62-.39.62-1.29 0-1.69L9.54 5.98C8.87 5.55 8 6.03 8 6.82z'/%3E%3C/svg%3E")
}
li.active .music-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234a76a8'%3E%3Cpath d='M8 6.82v10.36c0 .79.87 1.27 1.54.84l8.14-5.18c.62-.39.62-1.29 0-1.69L9.54 5.98C8.87 5.55 8 6.03 8 6.82z'/%3E%3C/svg%3E")
}
li.playing .music-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234a76a8'%3E%3Cpath d='M6 19h4V5H6v14zm8-14v14h4V5h-4z'/%3E%3C/svg%3E")
}
.song-link {
  color: #fff !important;
  text-decoration: none;
  font-size: .8em;
  margin-left: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  background-color: rgba(74,118,168,.15);
  transition: all .2s;
  pointer-events: auto
}
.song-link:hover {
  background-color: rgba(74,118,168,.3);
  text-decoration: underline
}
li {
  pointer-events: none
}
li > div {
  pointer-events: auto
}