.player-bar {
  --staytuned-player-scrubber-progress-color: #fff;
  --staytuned-player-scrubber-duration-color: #a3a3a3;
  --staytuned-player-scrubber-handle-color: #fff;
  --staytuned-player-btn-mute-color: #fff;
  --staytuned-player-btn-mute-color-hover: #333;
  --staytuned-play-button-color: #000;
  --staytuned-player-scrubber-radius: 4px;
  --staytuned-player-timer-color: #fff;
  z-index: 2147483647;
  display: flex;
  align-items: center;
  height: 78px;
  padding: 0 25px 0 41px;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), #2c3951;
  box-shadow: 0px -1px 10px rgba(0, 0, 0, 0.08);
}

.controls {
  display: flex;
  align-items: center;
  color: #fff;
  margin-right: 50px;
}
.controls staytuned-button-skip {
  margin: 0 24px;
  transform: scale(1.2);
}
.controls .staytuned-button-skip {
  margin: 0 24px;
  transform: scale(1.2);
}

.duration-bar {
  margin-top: -5px;
  flex: 1;
  display: flex;
  align-items: center;
  font-family: Lato;
}
.duration-bar staytuned-slider {
  flex: 1;
  margin: 0 22px;
}

staytuned-button-mute {
  margin: 0 26px 0 26px;
  transform: scale(1.3);
}

.current-track {
  display: none;
}

.btn-display-playlist {
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 19px;
  font-family: Lato;
  border-radius: 4px;
  padding: 3px 20px 3px 9px;
  cursor: pointer;
  transition: 0.3s;
}
.btn-display-playlist .placeHolderDisplayPlaylist {
  width: 40px;
  height: 40px;
  background-color: #a3a3a3;
  margin-right: 10px;
}
.btn-display-playlist .placeHolderDisplayPlaylist img {
  width: 40px;
  height: 40px;
}
.btn-display-playlist.visible, .btn-display-playlist:hover {
  background: rgba(255, 255, 255, 0.13);
}

.track-collection {
  width: 388px;
  height: max-content;
  background: #1e232b;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  position: absolute;
  bottom: 79px;
  right: -400px;
  font-family: Lato;
  transition: 600ms ease 0ms;
  overflow: hidden;
}
.track-collection .title {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 1;
}
.track-collection .title p {
  margin: 18px 23px;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
}
.track-collection .staytuned-track-collection-container {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  padding-right: 17px;
  /* Increase/decrease this value for cross-browser compatibility */
  box-sizing: content-box;
  /* So the width will be 100% + 17px */
  height: 424px;
}
.track-collection.visible {
  right: 20px;
}

.btn-player-bar-options {
  width: 30px;
  height: 30px;
  margin-left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  transition: 0.3s;
  cursor: pointer;
  position: relative;
}

.btn-player-bar-options:hover {
  background: rgba(255, 255, 255, 0.13);
}

.player-bar-options {
  background: #1e232b;
  position: absolute;
  top: -98px;
  left: -169px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  color: #ffffff;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  width: 215px;
  height: 82px;
  opacity: 0;
  transition: 0.5s;
  visibility: hidden;
  z-index: -1;
}
.player-bar-options.visible {
  visibility: visible;
  opacity: 1;
  z-index: 0;
}
.player-bar-options .full-screen,
.player-bar-options .reduce-player {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 6px;
  padding: 7px;
  border-radius: 4px;
}
.player-bar-options .full-screen svg,
.player-bar-options .reduce-player svg {
  height: 17px;
  width: 17px;
}
.player-bar-options .full-screen p,
.player-bar-options .reduce-player p {
  margin: 0 0 0 10px;
}
.player-bar-options .full-screen:hover,
.player-bar-options .reduce-player:hover {
  background: rgba(255, 255, 255, 0.13);
}