body {
  padding: 0;
  margin: 0;
}

.top-bar-bg {
  width: 100vw;
  height: 30px;
  background: #17001d;
}
.top-bar-bg .container {
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
.top-bar-bg .player-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-bg .player-controls span {
  cursor: pointer;
}
.top-bar-bg .player-controls .player-play {
  content: "";
  background: url(../img/icons/play-sm.svg) no-repeat;
  width: 16px;
  height: 16px;
}
.top-bar-bg .player-controls .player-pause {
  content: "";
  background: url(../img/icons/pause-sm.svg) no-repeat;
  width: 16px;
  height: 16px;
}
.top-bar-bg .player {
  display: none;
}
.jp-volume-controls {
  display: flex;
  align-items: center;
  gap: 4px;
}
.jp-volume-controls button {
  display: block;
  overflow: hidden;
  text-indent: -9999px;
  border: none;
  cursor: pointer;
}
.jp-mute {
  width: 16px;
  height: 16px;
}
.jp-mute {
  background: url(../img/icons/volume-mute-fill.svg) 0 0 no-repeat;
}
.jp-mute:focus {
  background: url(../img/icons/volume-mute-fill.svg) 0 0 no-repeat;
}
.jp-volume-bar {
  overflow: hidden;
  background-color: #40074f;
  width: 64px;
  height: 6px;
  cursor: pointer;
}
.jp-volume-bar-value {
  background-color: #723682;
  height: 6px;
}
