/* 2. Components */

div#amplitude-player {
  background: #161616;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
}

/* Small only */

@media screen and (max-width: 39.9375em) {
  div#amplitude-player {
    flex-direction: column;
  }
}

/* Large and up */

div#amplitude-left {
  padding: 0px;
  border-right: 1px solid #1616165;
  width: 100%;
  display: flex;
  align-items: center;
}

div#amplitude-left img.album-art {
  width: 75px;
  height: 75px;
}

div#amplitude-left div#player-left-bottom {
  flex: 1;
  background-color: #161616;
  padding: 0px 10px;
  display: flex;
  width: 100%;
}

div#amplitude-left div#player-left-bottom div#volume-container:after {
  content: "";
  display: table;
  clear: both;
}

/* Small only */

@media screen and (max-width: 39.9375em) {
  div#amplitude-player div#amplitude-left {
    width: 100%;
  }
}

@media screen and (max-width: 39.9375em) {
  div#amplitude-player div#amplitude-left img[amplitude-song-info="cover_art_url"] {
    width: auto;
    height: auto;
  }
}

div#amplitude-right {
  padding: 0px;
  overflow-y: scroll;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  height: calc(70vh - 75px - 2.5rem);
}

div#amplitude-right div.song {
  cursor: pointer;
  padding: 10px;
}

div#amplitude-right div.song div.song-now-playing-icon-container {
  float: left;
  width: 20px;
  height: 20px;
}

div#amplitude-right div.song div.song-now-playing-icon-container svg.now-playing {
  display: none;
}

div#amplitude-right div.song div.play-button-container {
  display: none;
  background: url("https://521dimensions.com/img/open-source/amplitudejs/blue-player/list-play-light.png") no-repeat;
  width: 22px;
  height: 22px;
}

div#amplitude-right div.song div.play-button-container:hover {
  background: url("https://521dimensions.com/img/open-source/amplitudejs/blue-player/list-play-hover.png") no-repeat;
}

div#amplitude-right div.song.amplitude-active-song-container div.song-now-playing-icon-container svg.now-playing {
  display: block;
}

div#amplitude-right div.song.amplitude-active-song-container:hover div.play-button-container {
  display: none;
}

div#amplitude-right div.song div.song-meta-data {
  float: left;
  width: calc( 100% - 30px );
  font-family: "Open Sans", sans-serif;
}

div#amplitude-right div.song div.song-meta-data span.song-title {
  color: #fff;
  font-size: 16px;
  display: block;
  font-weight: 300;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

div#amplitude-right div.song div.song-meta-data span.song-artist {
  color: #808080;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

div#amplitude-right div.song img.bandcamp-grey {
  float: left;
  display: block;
  margin-top: 10px;
}

div#amplitude-right div.song img.bandcamp-white {
  float: left;
  display: none;
  margin-top: 10px;
}

div#amplitude-right div.song span.song-duration {
  float: left;
  width: 55px;
  text-align: right;
  line-height: 45px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

div#amplitude-right div.song:after {
  content: "";
  display: table;
  clear: both;
}

/* Small only */

@media screen and (max-width: 39.9375em) {
  div#amplitude-player div#amplitude-right {
    width: 100%;
  }
}

div#progress-container {
  width: 70%;
  float: left;
  position: relative;
  height: 20px;
  cursor: pointer;
}

div#progress-container:hover input[type=range].amplitude-song-slider::-webkit-slider-thumb {
  display: block;
}

div#progress-container:hover input[type=range].amplitude-song-slider::-moz-range-thumb {
  visibility: visible;
}

div#progress-container progress#song-played-progress {
  width: 100%;
  position: absolute;
  left: 0;
  top: .55rem;
  right: 0;
  width: 100%;
  z-index: 60;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 5px;
  background: transparent;
  border: none;
}

@media all and (-ms-high-contrast: none) {
  div#progress-container *::-ms-backdrop, div#progress-container progress#song-played-progress {
    color: #00A0FF;
    border: none;
    background-color: #CFD8DC;
  }
}

div#progress-container progress#song-played-progress[value]::-webkit-progress-bar {
  background: none;
  border-radius: 5px;
}

div#progress-container progress#song-played-progress[value]::-webkit-progress-value {
  background-color: #09e335;
  border-radius: 5px;
}

div#progress-container progress#song-played-progress::-moz-progress-bar {
  background: none;
  border-radius: 5px;
  background-color: #09e335;
  height: 5px;
  margin-top: -2px;
}

div#progress-container progress#song-buffered-progress {
  position: absolute;
  left: 0;
  top: 8px;
  right: 0;
  width: 100%;
  z-index: 10;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 5px;
  background: transparent;
  border: none;
  background-color: #D7DEE3;
}

div#progress-container progress#song-buffered-progress[value]::-webkit-progress-bar {
  background-color: #CFD8DC;
  border-radius: 5px;
}

div#progress-container progress#song-buffered-progress[value]::-webkit-progress-value {
  background-color: #78909C;
  border-radius: 5px;
  transition: width .1s ease;
}

div#progress-container progress#song-buffered-progress::-moz-progress-bar {
  background: none;
  border-radius: 5px;
  background-color: #78909C;
  height: 5px;
  margin-top: -2px;
}

div#progress-container progress::-ms-fill {
  border: none;
}

@media all and (-ms-high-contrast: none) {
  div#progress-container *::-ms-backdrop, div#progress-container progress#song-buffered-progress {
    color: #78909C;
    border: none;
  }
}

div#progress-container input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  margin: 7.5px 0;
  position: absolute;
  z-index: 9999;
  top: -7px;
  height: 20px;
  cursor: pointer;
  background-color: inherit;
  left: 0;
}

div#progress-container input[type=range]:focus {
  outline: none;
}

div#progress-container input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 0px;
  cursor: pointer;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
  background: #09e335;
  border-radius: 0px;
  border: 0px solid #010101;
}

div#progress-container input[type=range]::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 1px solid #09e335;
  height: 15px;
  width: 15px;
  border-radius: 16px;
  background: #09e335;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7.5px;
}

div#progress-container input[type=range]:focus::-webkit-slider-runnable-track {
  background: #09e335;
}

div#progress-container input[type=range]::-moz-range-track {
  width: 100%;
  height: 0px;
  cursor: pointer;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
  background: #09e335;
  border-radius: 0px;
  border: 0px solid #010101;
}

div#progress-container input[type=range]::-moz-range-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 1px solid #09e335;
  height: 15px;
  width: 15px;
  border-radius: 16px;
  background: #09e335;
  cursor: pointer;
}

div#progress-container input[type=range]::-ms-track {
  width: 100%;
  height: 0px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

div#progress-container input[type=range]::-ms-fill-lower {
  background: #4c2d12;
  border: 0px solid #010101;
  border-radius: 0px;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
}

div#progress-container input[type=range]::-ms-fill-upper {
  background: #09e335;
  border: 0px solid #010101;
  border-radius: 0px;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
}

div#progress-container input[type=range]::-ms-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 1px solid #09e335;
  height: 15px;
  width: 15px;
  border-radius: 16px;
  background: #09e335;
  cursor: pointer;
  height: 0px;
  display: block;
}

@media all and (-ms-high-contrast: none) {
  div#progress-container *::-ms-backdrop, div#progress-container input[type="range"].amplitude-song-slider {
    padding: 0px;
  }
}

@media all and (-ms-high-contrast: none) {
  div#progress-container *::-ms-backdrop, div#progress-container input[type=range].amplitude-song-slider::-ms-thumb {
    height: 15px;
    width: 15px;
    border-radius: 10px;
    cursor: pointer;
    margin-top: -8px;
  }
}

@media all and (-ms-high-contrast: none) {
  div#progress-container *::-ms-backdrop, div#progress-container input[type=range].amplitude-song-slider::-ms-track {
    border-width: 15px 0;
    border-color: transparent;
  }
}

@media all and (-ms-high-contrast: none) {
  div#progress-container *::-ms-backdrop, div#progress-container input[type=range].amplitude-song-slider::-ms-fill-lower {
    background: #CFD8DC;
    border-radius: 10px;
  }
}

@media all and (-ms-high-contrast: none) {
  div#progress-container *::-ms-backdrop, div#progress-container input[type=range].amplitude-song-slider::-ms-fill-upper {
    background: #CFD8DC;
    border-radius: 10px;
  }
}

div#progress-container input[type=range]:focus::-ms-fill-lower {
  background: #4c2d12;
}

div#progress-container input[type=range]:focus::-ms-fill-upper {
  background: #09e335;
}

.control-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.control-container div#repeat-container {
  width: 25%;
  float: left;
  padding-top: 20px;
}

.control-container div#repeat-container div#repeat {
  width: 24px;
  height: 19px;
  cursor: pointer;
}

.control-container div#repeat-container div#repeat.amplitude-repeat-off {
  background: url("https://521dimensions.com/img/open-source/amplitudejs/blue-player/repeat-off.svg");
}

.control-container div#repeat-container div#repeat.amplitude-repeat-on {
  background: url("https://521dimensions.com/img/open-source/amplitudejs/blue-player/repeat-on.svg");
}

.control-container div#repeat-container div#shuffle {
  width: 23px;
  height: 19px;
  cursor: pointer;
  float: right;
}

.control-container div#repeat-container div#shuffle.amplitude-shuffle-off {
  background: url("https://521dimensions.com/img/open-source/amplitudejs/blue-player/shuffle-off.svg");
}

.control-container div#repeat-container div#shuffle.amplitude-shuffle-on {
  background: url("https://521dimensions.com/img/open-source/amplitudejs/blue-player/shuffle-on.svg");
}

@media all and (-ms-high-contrast: none) {
  .control-container *::-ms-backdrop, .control-container .control-container {
    margin-top: 40px;
    float: none;
  }
}

.control-container div#central-control-container {
  padding: 0 .5rem;
}

.control-container div#central-control-container div#central-controls {
  width: 150px;
  margin: auto;
}

.control-container div#central-control-container div#central-controls div#previous {
  display: inline-block;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-skip-start-fill" viewBox="0 0 16 16"><path d="M4 4a.5.5 0 0 1 1 0v3.248l6.267-3.636c.54-.313 1.232.066 1.232.696v7.384c0 .63-.692 1.01-1.232.697L5 8.753V12a.5.5 0 0 1-1 0V4z"/></svg>');
  background-repeat: no-repeat;
  float: left;
  margin-top: 10px;
  background-position: center;
  background-size: 40px;
}

.control-container div#central-control-container div#central-controls div#play-pause {
  display: inline-block;
  width: 60px;
  height: 60px;
  cursor: pointer;
  float: left;
}

.control-container div#central-control-container div#central-controls div#play-pause.amplitude-paused {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-play-fill" viewBox="0 0 16 16"><path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/></svg>');
  background-repeat: no-repeat;
  background-size: 60px;
  background-position: center;
}

.control-container div#central-control-container div#central-controls div#play-pause.amplitude-playing {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-pause-fill" viewBox="0 0 16 16"><path d="M5.5 3.5A1.5 1.5 0 0 1 7 5v6a1.5 1.5 0 0 1-3 0V5a1.5 1.5 0 0 1 1.5-1.5zm5 0A1.5 1.5 0 0 1 12 5v6a1.5 1.5 0 0 1-3 0V5a1.5 1.5 0 0 1 1.5-1.5z"/></svg>');
  background-repeat: no-repeat;
  background-size: 60px;
  background-position: center;
}

.control-container div#central-control-container div#central-controls div#next {
  display: inline-block;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-skip-end-fill" viewBox="0 0 16 16"><path d="M12.5 4a.5.5 0 0 0-1 0v3.248L5.233 3.612C4.693 3.3 4 3.678 4 4.308v7.384c0 .63.692 1.01 1.233.697L11.5 8.753V12a.5.5 0 0 0 1 0V4z"/></svg>');
  background-repeat: no-repeat;
  float: left;
  margin-top: 10px;
  background-position: center;
  background-size: 40px;
}

.control-container div#volume-container {
  padding: 0 5px;
}

.control-container div#volume-container div#shuffle-right {
  width: 23px;
  height: 19px;
  cursor: pointer;
  margin: auto;
}

.control-container div#volume-container div#shuffle-right.amplitude-shuffle-off {
  background: url("https://521dimensions.com/img/open-source/amplitudejs/blue-player/shuffle-off.svg");
}

.control-container div#volume-container div#shuffle-right.amplitude-shuffle-on {
  background: url("https://521dimensions.com/img/open-source/amplitudejs/blue-player/shuffle-on.svg");
}

.control-container div.amplitude-mute {
  cursor: pointer;
  width: 25px;
  height: 19px;
  float: left;
}

.control-container div.amplitude-mute.amplitude-not-muted {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-volume-up-fill" viewBox="0 0 16 16"><path d="M11.536 14.01A8.473 8.473 0 0 0 14.026 8a8.473 8.473 0 0 0-2.49-6.01l-.708.707A7.476 7.476 0 0 1 13.025 8c0 2.071-.84 3.946-2.197 5.303l.708.707z"/><path d="M10.121 12.596A6.48 6.48 0 0 0 12.025 8a6.48 6.48 0 0 0-1.904-4.596l-.707.707A5.483 5.483 0 0 1 11.025 8a5.483 5.483 0 0 1-1.61 3.89l.706.706z"/><path d="M8.707 11.182A4.486 4.486 0 0 0 10.025 8a4.486 4.486 0 0 0-1.318-3.182L8 5.525A3.489 3.489 0 0 1 9.025 8 3.49 3.49 0 0 1 8 10.475l.707.707zM6.717 3.55A.5.5 0 0 1 7 4v8a.5.5 0 0 1-.812.39L3.825 10.5H1.5A.5.5 0 0 1 1 10V6a.5.5 0 0 1 .5-.5h2.325l2.363-1.89a.5.5 0 0 1 .529-.06z"/></svg>');
  background-repeat: no-repeat;
  background-size: 22px;
}

.control-container div.amplitude-mute.amplitude-muted {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-volume-mute-fill" viewBox="0 0 16 16"><path d="M6.717 3.55A.5.5 0 0 1 7 4v8a.5.5 0 0 1-.812.39L3.825 10.5H1.5A.5.5 0 0 1 1 10V6a.5.5 0 0 1 .5-.5h2.325l2.363-1.89a.5.5 0 0 1 .529-.06zm7.137 2.096a.5.5 0 0 1 0 .708L12.207 8l1.647 1.646a.5.5 0 0 1-.708.708L11.5 8.707l-1.646 1.647a.5.5 0 0 1-.708-.708L10.793 8 9.146 6.354a.5.5 0 1 1 .708-.708L11.5 7.293l1.646-1.647a.5.5 0 0 1 .708 0z"/></svg>');
  background-repeat: no-repeat;
  background-size: 22px;
}

.control-container:after {
  content: "";
  display: table;
  clear: both;
}

/* Small only */

@media screen and (max-width: 39.9375em) {
  div#amplitude-player div#repeat-container div#repeat {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
}

@media screen and (max-width: 39.9375em) {
  div#amplitude-player div#repeat-container div#shuffle {
    display: none;
  }
}

@media screen and (max-width: 39.9375em) {
  div#amplitude-player div#volume-container div.volume-controls {
    display: none;
  }
}

@media screen and (max-width: 39.9375em) {
  div#amplitude-player div#volume-container div#shuffle-right {
    display: block;
  }
}

/* Medium only */

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  div#amplitude-player div#repeat-container div#repeat {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  div#amplitude-player div#repeat-container div#shuffle {
    display: none;
  }
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  div#amplitude-player div#volume-container div.volume-controls {
    display: none;
  }
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  div#amplitude-player div#volume-container div#shuffle-right {
    display: block;
  }
}

/* Large and up */

@media screen and (min-width: 64em) {
  div#amplitude-player div#repeat-container div#repeat {
    margin-left: 10px;
    margin-right: 20px;
    float: left;
  }
}

@media screen and (min-width: 64em) {
  div#amplitude-player div#volume-container div#shuffle-right {
    display: none;
  }
}

input[type=range].amplitude-volume-slider {
  -webkit-appearance: none;
  width: calc( 100% - 33px);
  float: left;
  margin-top: 5px;
  margin-left: 5px;
  padding: 5px;
  background-color: #191919;
  border-radius: 5px;
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, input[type=range].amplitude-volume-slider {
    margin-top: -24px;
    background-color: rgba(255, 255, 255, 0) !important;
  }
}

input[type=range].amplitude-volume-slider:focus {
  outline: none;
}

input[type=range].amplitude-volume-slider::-webkit-slider-runnable-track {
  width: 75%;
  height: 1px;
  cursor: pointer;
  animate: 0.2s;
  background: #767676;
}

input[type=range].amplitude-volume-slider::-webkit-slider-thumb {
  height: 10px;
  width: 10px;
  border-radius: 10px;
  background: #09e335;
  cursor: pointer;
  margin-top: -4px;
  -webkit-appearance: none;
}

input[type=range].amplitude-volume-slider:focus::-webkit-slider-runnable-track {
  background: #CFD8DC;
}

input[type=range].amplitude-volume-slider::-moz-range-track {
  width: 75%;
  height: 1px;
  cursor: pointer;
  animate: 0.2s;
  background: #767676;
}

input[type=range].amplitude-volume-slider::-moz-range-thumb {
  height: 10px;
  width: 10px;
  border-radius: 10px;
  background: #09e335;
  cursor: pointer;
  margin-top: -4px;
}

input[type=range].amplitude-volume-slider::-ms-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  border-width: 15px 0;
  color: transparent;
}

input[type=range].amplitude-volume-slider::-ms-fill-lower {
  background: #CFD8DC;
  border-radius: 10px;
}

input[type=range].amplitude-volume-slider::-ms-fill-upper {
  background: #CFD8DC;
  border-radius: 10px;
}

input[type=range].amplitude-volume-slider::-ms-thumb {
  height: 10px;
  width: 10px;
  border-radius: 10px;
  background: #09e335;
  cursor: pointer;
  margin-top: 2px;
}

input[type=range].amplitude-volume-slider:focus::-ms-fill-lower {
  background: #CFD8DC;
}

input[type=range].amplitude-volume-slider:focus::-ms-fill-upper {
  background: #CFD8DC;
}

input[type=range].amplitude-volume-slider::-ms-tooltip {
  display: none;
}

div#time-container span.current-time {
  color: #939393;
  font-size: 14px;
  font-weight: 700;
  float: left;
  width: 25%;
  text-align: center;
}

div#time-container span.duration {
  color: #939393;
  font-size: 14px;
  font-weight: 700;
  float: left;
  width: 25%;
  text-align: center;
}

div#time-container:after {
  content: "";
  display: table;
  clear: both;
}

div#meta-container {
  text-align: left;
  margin-top: 5px;
  width: 100%;
  padding-right: 25px;
  max-width: 270px;
  overflow: hidden;
  position: relative;
}
div#meta-container:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 25px;
  background-image: linear-gradient(270deg, #161616, transparent);
}

div#time-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

div#meta-container span.song-name {
  display: inline-block;
  color: white;
  font-size: 20px;
  font-family: 'Source Sans Pro', sans-serif;
  white-space: nowrap;
}

div#meta-container div.song-artist-album {
  color: #656565;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
  white-space: nowrap;
}

div#meta-container div.song-artist-album span {
  display: block;
}

.playlist-display {
  display: flex;
  align-items: center;
}

a#playlist-open {
  padding: 0 3rem;
  color: white;
}

@media (max-width: 991px) {
  .control-container div#central-control-container div#central-controls div#previous {
    display: none;
  }
}

@media (max-width: 991px) {
  .control-container div#central-control-container div#central-controls {
    width: 110px;
  }
}

@media (max-width: 991px) {
  div#amplitude-left img.album-art {
    display: none;
  }
}

@media (max-width: 991px) {
  .control-container div#central-control-container {
    padding-left: 0;
  }
}

@media (max-width: 991px) {
  .global-player {
    padding: 0 0;
  }
}

@media (max-width: 991px) {
  div#meta-container {
    width: calc(100% - 25px);
  }
}

@media (max-width: 991px) {
  div#time-container {
    display: none;
  }
}

@media (max-width: 991px) {
  a#playlist-open {
    padding: 0rem;
    margin-left: auto;
  }
}

@media (max-width: 991px) {
  .control-container div#volume-container {
    display: none;
  }
}

@media (max-width: 991px) {
  .control-container {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .control-container.first {
    width: auto;
  }
}

@media (max-width: 991px) {
  .control-container.volume-control-container {
    width: 0;
  }
}

@media (max-width: 991px) {
  .playlist-display {
    width: calc(100% - 145px);
  }
}

body.player-open, body.menu-open {
  overflow-y: hidden;
}

body.player-live .footer {
  padding-bottom: 115px;
}

@media (prefers-reduced-motion:no-preference) {
  :root {
    scroll-behavior: auto;
  }
}

.global-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 1rem;
  background-color: #161616;
  z-index: 1023;
  height: 100%;
  max-height: 112px;
  transition: max-height 250ms ease, bottom 250ms ease;
  filter: drop-shadow(0px 0px 20px #000);
  border-top: 1px solid #464646;
}

.global-player.promotion {
  max-height: calc(112px + 4rem);
}

.global-player.open {
  max-height: 70vh;
}

.global-player.open.promotion {
  max-height: calc(70vh + 4rem);
}

body.player-open {
  overflow-y: hidden;
}

.global-player .container {
  position: relative;
}

#globalPlayerClose {
  width: 40px;
  height: 40px;
  background-color: #161616;
  border: 4px solid #09e335;
  border-radius: 40px;
  position: absolute;
  right: 0;
  font-size: 1.7rem;
  top: -40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 250ms ease;
}

#globalPlayerClose:hover {
  background-color: #09e335;
  color: #161616;
}

.global-player.hidden {
  bottom: -50%;
}

.subscribe-player {
  height: 0;
  background-color: #161616;
  padding: 0;
  overflow: hidden;
  transition: height 250ms ease;
  text-align: center;
}
.subscribe-player.promotion {
  height: 4rem;
}
.subscribe-player.promotion .container {
  height: 4rem;
}

@media (max-width: 767px) {
  .subscribe-player.promotion {
    height: 11rem;
  }
  .subscribe-player.promotion .container {
    height: 11rem;
  }

  .global-player.promotion {
    max-height: calc(112px + 11rem);
  }
  .global-player .container {
    padding: 0;
  }
}

.amplitude-current-minutes, .amplitude-current-seconds, .amplitude-duration-minutes, .amplitude-duration-seconds, .current-time, .duration {
  font-family: 'Open Sans', sans-serif !important;
  font-weight: normal;
}

div#amplitude-player {
    background: #161616;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap
}

@media screen and (max-width: 39.9375em) {
    div#amplitude-player {
        flex-direction:column
    }
}

div#amplitude-left {
    padding: 0px;
    border-right: 1px solid #1616165;
    width: 100%;
    display: flex;
    align-items: center
}

div#amplitude-left img.album-art {
    width: 75px;
    height: 75px
}

div#amplitude-left div#player-left-bottom {
    flex: 1;
    background-color: #161616;
    padding: 0px 10px;
    display: flex;
    width: 100%
}

div#amplitude-left div#player-left-bottom div#volume-container:after {
    content: "";
    display: table;
    clear: both
}

@media screen and (max-width: 39.9375em) {
    div#amplitude-player div#amplitude-left {
        width:100%
    }
}

@media screen and (max-width: 39.9375em) {
    div#amplitude-player div#amplitude-left img[amplitude-song-info="cover_art_url"] {
        width:auto;
        height: auto
    }
}

div#amplitude-right {
    padding: 0px;
    overflow-y: scroll;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    height: calc(70vh - 75px - 2.5rem)
}

div#amplitude-right div.song {
    cursor: pointer;
    padding: 10px
}

div#amplitude-right div.song div.song-now-playing-icon-container {
    float: left;
    width: 20px;
    height: 20px;
    margin-right: 10px
}


div#amplitude-right div.song div.play-button-container {
    display: none;
    background: url("https://521dimensions.com/img/open-source/amplitudejs/blue-player/list-play-light.png") no-repeat;
    width: 22px;
    height: 22px;
}

div#amplitude-right div.song div.play-button-container:hover {
    background: url("https://521dimensions.com/img/open-source/amplitudejs/blue-player/list-play-hover.png") no-repeat
}

div#amplitude-right div.song.amplitude-active-song-container div.song-now-playing-icon-container svg.now-playing {
    display: block
}

div#amplitude-right div.song.amplitude-active-song-container:hover div.play-button-container {
    display: none
}

div#amplitude-right div.song div.song-meta-data {
    float: left;
    width: calc( 100% - 30px );
    font-family: "Open Sans",sans-serif
}

div#amplitude-right div.song div.song-meta-data span.song-title {
    color: #fff;
    font-size: 16px;
    display: block;
    font-weight: 300;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

div#amplitude-right div.song div.song-meta-data span.song-artist {
    color: #808080;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

div#amplitude-right div.song img.bandcamp-grey {
    float: left;
    display: block;
    margin-top: 10px
}

div#amplitude-right div.song img.bandcamp-white {
    float: left;
    display: none;
    margin-top: 10px
}

div#amplitude-right div.song span.song-duration {
    float: left;
    width: 55px;
    text-align: right;
    line-height: 45px;
    color: #fff;
    font-size: 16px;
    font-weight: 500
}

div#amplitude-right div.song:after {
    content: "";
    display: table;
    clear: both
}

@media screen and (max-width: 39.9375em) {
    div#amplitude-player div#amplitude-right {
        width:100%
    }
}

div#progress-container {
    width: 70%;
    float: left;
    position: relative;
    height: 20px;
    cursor: pointer
}

div#progress-container:hover input[type=range].amplitude-song-slider::-webkit-slider-thumb {
    display: block
}

div#progress-container:hover input[type=range].amplitude-song-slider::-moz-range-thumb {
    visibility: visible
}

div#progress-container progress#song-played-progress {
    width: 100%;
    position: absolute;
    left: 0;
    top: .55rem;
    right: 0;
    width: 100%;
    z-index: 60;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 4px;
    border-radius: 5px;
    background: transparent;
    border: none
}

@media all and (-ms-high-contrast:none) {
    div#progress-container *::-ms-backdrop,div#progress-container progress#song-played-progress {
        color: #00A0FF;
        border: none;
        background-color: #CFD8DC
    }
}

div#progress-container progress#song-played-progress[value]::-webkit-progress-bar {
    background: none;
    border-radius: 5px
}

div#progress-container progress#song-played-progress[value]::-webkit-progress-value {
    background-color: #09e335;
    border-radius: 5px
}

div#progress-container progress#song-played-progress::-moz-progress-bar {
    background: none;
    border-radius: 5px;
    background-color: #09e335;
    height: 5px;
    margin-top: -2px
}

div#progress-container progress#song-buffered-progress {
    position: absolute;
    left: 0;
    top: 8px;
    right: 0;
    width: 100%;
    z-index: 10;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 4px;
    border-radius: 5px;
    background: transparent;
    border: none;
    background-color: #D7DEE3
}

div#progress-container progress#song-buffered-progress[value]::-webkit-progress-bar {
    background-color: #CFD8DC;
    border-radius: 5px
}

div#progress-container progress#song-buffered-progress[value]::-webkit-progress-value {
    background-color: #78909C;
    border-radius: 5px;
    transition: width .1s ease
}

div#progress-container progress#song-buffered-progress::-moz-progress-bar {
    background: none;
    border-radius: 5px;
    background-color: #78909C;
    height: 5px;
    margin-top: -2px
}

div#progress-container progress::-ms-fill {
    border: none
}

@media all and (-ms-high-contrast:none) {
    div#progress-container *::-ms-backdrop,div#progress-container progress#song-buffered-progress {
        color: #78909C;
        border: none
    }
}

div#progress-container input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    margin: 7.5px 0;
    position: absolute;
    z-index: 9999;
    top: -7px;
    height: 20px;
    cursor: pointer;
    background-color: inherit
}

div#progress-container input[type=range]:focus {
    outline: none
}

div#progress-container input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 0px;
    cursor: pointer;
    box-shadow: 0px 0px 0px rgba(0,0,0,0),0px 0px 0px rgba(13,13,13,0);
    background: #09e335;
    border-radius: 0px;
    border: 0px solid #010101
}

div#progress-container input[type=range]::-webkit-slider-thumb {
    box-shadow: 0px 0px 0px #000,0px 0px 0px #0d0d0d;
    border: 1px solid #09e335;
    height: 15px;
    width: 15px;
    border-radius: 16px;
    background: #09e335;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -7.5px
}

div#progress-container input[type=range]:focus::-webkit-slider-runnable-track {
    background: #09e335
}

div#progress-container input[type=range]::-moz-range-track {
    width: 100%;
    height: 0px;
    cursor: pointer;
    box-shadow: 0px 0px 0px rgba(0,0,0,0),0px 0px 0px rgba(13,13,13,0);
    background: #09e335;
    border-radius: 0px;
    border: 0px solid #010101
}

div#progress-container input[type=range]::-moz-range-thumb {
    box-shadow: 0px 0px 0px #000,0px 0px 0px #0d0d0d;
    border: 1px solid #09e335;
    height: 15px;
    width: 15px;
    border-radius: 16px;
    background: #09e335;
    cursor: pointer
}

div#progress-container input[type=range]::-ms-track {
    width: 100%;
    height: 0px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent
}

div#progress-container input[type=range]::-ms-fill-lower {
    background: #4c2d12;
    border: 0px solid #010101;
    border-radius: 0px;
    box-shadow: 0px 0px 0px rgba(0,0,0,0),0px 0px 0px rgba(13,13,13,0)
}

div#progress-container input[type=range]::-ms-fill-upper {
    background: #09e335;
    border: 0px solid #010101;
    border-radius: 0px;
    box-shadow: 0px 0px 0px rgba(0,0,0,0),0px 0px 0px rgba(13,13,13,0)
}

div#progress-container input[type=range]::-ms-thumb {
    box-shadow: 0px 0px 0px #000,0px 0px 0px #0d0d0d;
    border: 1px solid #09e335;
    height: 15px;
    width: 15px;
    border-radius: 16px;
    background: #09e335;
    cursor: pointer;
    height: 0px;
    display: block
}

@media all and (-ms-high-contrast:none) {
    div#progress-container *::-ms-backdrop,div#progress-container input[type="range"].amplitude-song-slider {
        padding: 0px
    }
}

@media all and (-ms-high-contrast:none) {
    div#progress-container *::-ms-backdrop,div#progress-container input[type=range].amplitude-song-slider::-ms-thumb {
        height: 15px;
        width: 15px;
        border-radius: 10px;
        cursor: pointer;
        margin-top: -8px
    }
}

@media all and (-ms-high-contrast:none) {
    div#progress-container *::-ms-backdrop,div#progress-container input[type=range].amplitude-song-slider::-ms-track {
        border-width: 15px 0;
        border-color: transparent
    }
}

@media all and (-ms-high-contrast:none) {
    div#progress-container *::-ms-backdrop,div#progress-container input[type=range].amplitude-song-slider::-ms-fill-lower {
        background: #CFD8DC;
        border-radius: 10px
    }
}

@media all and (-ms-high-contrast:none) {
    div#progress-container *::-ms-backdrop,div#progress-container input[type=range].amplitude-song-slider::-ms-fill-upper {
        background: #CFD8DC;
        border-radius: 10px
    }
}

div#progress-container input[type=range]:focus::-ms-fill-lower {
    background: #4c2d12
}

div#progress-container input[type=range]:focus::-ms-fill-upper {
    background: #09e335
}

.control-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%
}

.control-container div#repeat-container {
    width: 25%;
    float: left;
    padding-top: 20px
}

.control-container div#repeat-container div#repeat {
    width: 24px;
    height: 19px;
    cursor: pointer
}

.control-container div#repeat-container div#repeat.amplitude-repeat-off {
    background: url("https://521dimensions.com/img/open-source/amplitudejs/blue-player/repeat-off.svg")
}

.control-container div#repeat-container div#repeat.amplitude-repeat-on {
    background: url("https://521dimensions.com/img/open-source/amplitudejs/blue-player/repeat-on.svg")
}

.control-container div#repeat-container div#shuffle {
    width: 23px;
    height: 19px;
    cursor: pointer;
    float: right
}

.control-container div#repeat-container div#shuffle.amplitude-shuffle-off {
    background: url("https://521dimensions.com/img/open-source/amplitudejs/blue-player/shuffle-off.svg")
}

.control-container div#repeat-container div#shuffle.amplitude-shuffle-on {
    background: url("https://521dimensions.com/img/open-source/amplitudejs/blue-player/shuffle-on.svg")
}

@media all and (-ms-high-contrast:none) {
    .control-container *::-ms-backdrop,.control-container .control-container {
        margin-top: 40px;
        float: none
    }
}

.control-container div#central-control-container {
    padding: 0 .5rem
}

.control-container div#central-control-container div#central-controls {
    width: 150px;
    margin: auto
}

.control-container div#central-control-container div#central-controls div#previous {
    display: inline-block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-skip-start-fill" viewBox="0 0 16 16"><path d="M4 4a.5.5 0 0 1 1 0v3.248l6.267-3.636c.54-.313 1.232.066 1.232.696v7.384c0 .63-.692 1.01-1.232.697L5 8.753V12a.5.5 0 0 1-1 0V4z"/></svg>');
    background-repeat: no-repeat;
    float: left;
    margin-top: 10px;
    background-position: center;
    background-size: 40px
}

.control-container div#central-control-container div#central-controls div#play-pause {
    display: inline-block;
    width: 60px;
    height: 60px;
    cursor: pointer;
    float: left
}

.control-container div#central-control-container div#central-controls div#play-pause.amplitude-paused {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-play-fill" viewBox="0 0 16 16"><path d="m11.596 8.697-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z"/></svg>');
    background-repeat: no-repeat;
    background-size: 60px;
    background-position: center
}

.control-container div#central-control-container div#central-controls div#play-pause.amplitude-playing {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-pause-fill" viewBox="0 0 16 16"><path d="M5.5 3.5A1.5 1.5 0 0 1 7 5v6a1.5 1.5 0 0 1-3 0V5a1.5 1.5 0 0 1 1.5-1.5zm5 0A1.5 1.5 0 0 1 12 5v6a1.5 1.5 0 0 1-3 0V5a1.5 1.5 0 0 1 1.5-1.5z"/></svg>');
    background-repeat: no-repeat;
    background-size: 60px;
    background-position: center
}

.control-container div#central-control-container div#central-controls div#next {
    display: inline-block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-skip-end-fill" viewBox="0 0 16 16"><path d="M12.5 4a.5.5 0 0 0-1 0v3.248L5.233 3.612C4.693 3.3 4 3.678 4 4.308v7.384c0 .63.692 1.01 1.233.697L11.5 8.753V12a.5.5 0 0 0 1 0V4z"/></svg>');
    background-repeat: no-repeat;
    float: left;
    margin-top: 10px;
    background-position: center;
    background-size: 40px
}

.control-container div#volume-container {
    padding: 0 5px
}

.control-container div#volume-container div#shuffle-right {
    width: 23px;
    height: 19px;
    cursor: pointer;
    margin: auto
}

.control-container div#volume-container div#shuffle-right.amplitude-shuffle-off {
    background: url("https://521dimensions.com/img/open-source/amplitudejs/blue-player/shuffle-off.svg")
}

.control-container div#volume-container div#shuffle-right.amplitude-shuffle-on {
    background: url("https://521dimensions.com/img/open-source/amplitudejs/blue-player/shuffle-on.svg")
}

.control-container div.amplitude-mute {
    cursor: pointer;
    width: 25px;
    height: 19px;
    float: left
}

.control-container div.amplitude-mute.amplitude-not-muted {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-volume-up-fill" viewBox="0 0 16 16"><path d="M11.536 14.01A8.473 8.473 0 0 0 14.026 8a8.473 8.473 0 0 0-2.49-6.01l-.708.707A7.476 7.476 0 0 1 13.025 8c0 2.071-.84 3.946-2.197 5.303l.708.707z"/><path d="M10.121 12.596A6.48 6.48 0 0 0 12.025 8a6.48 6.48 0 0 0-1.904-4.596l-.707.707A5.483 5.483 0 0 1 11.025 8a5.483 5.483 0 0 1-1.61 3.89l.706.706z"/><path d="M8.707 11.182A4.486 4.486 0 0 0 10.025 8a4.486 4.486 0 0 0-1.318-3.182L8 5.525A3.489 3.489 0 0 1 9.025 8 3.49 3.49 0 0 1 8 10.475l.707.707zM6.717 3.55A.5.5 0 0 1 7 4v8a.5.5 0 0 1-.812.39L3.825 10.5H1.5A.5.5 0 0 1 1 10V6a.5.5 0 0 1 .5-.5h2.325l2.363-1.89a.5.5 0 0 1 .529-.06z"/></svg>');
    background-repeat: no-repeat;
    background-size: 22px
}

.control-container div.amplitude-mute.amplitude-muted {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-volume-mute-fill" viewBox="0 0 16 16"><path d="M6.717 3.55A.5.5 0 0 1 7 4v8a.5.5 0 0 1-.812.39L3.825 10.5H1.5A.5.5 0 0 1 1 10V6a.5.5 0 0 1 .5-.5h2.325l2.363-1.89a.5.5 0 0 1 .529-.06zm7.137 2.096a.5.5 0 0 1 0 .708L12.207 8l1.647 1.646a.5.5 0 0 1-.708.708L11.5 8.707l-1.646 1.647a.5.5 0 0 1-.708-.708L10.793 8 9.146 6.354a.5.5 0 1 1 .708-.708L11.5 7.293l1.646-1.647a.5.5 0 0 1 .708 0z"/></svg>');
    background-repeat: no-repeat;
    background-size: 22px
}

.control-container:after {
    content: "";
    display: table;
    clear: both
}

@media screen and (max-width: 39.9375em) {
    div#amplitude-player div#repeat-container div#repeat {
        margin-left:auto;
        margin-right: auto;
        float: none
    }
}

@media screen and (max-width: 39.9375em) {
    div#amplitude-player div#repeat-container div#shuffle {
        display:none
    }
}

@media screen and (max-width: 39.9375em) {
    div#amplitude-player div#volume-container div.volume-controls {
        display:none
    }
}

@media screen and (max-width: 39.9375em) {
    div#amplitude-player div#volume-container div#shuffle-right {
        display:block
    }
}

@media screen and (min-width: 40em) and (max-width:63.9375em) {
    div#amplitude-player div#repeat-container div#repeat {
        margin-left:auto;
        margin-right: auto;
        float: none
    }
}

@media screen and (min-width: 40em) and (max-width:63.9375em) {
    div#amplitude-player div#repeat-container div#shuffle {
        display:none
    }
}

@media screen and (min-width: 40em) and (max-width:63.9375em) {
    div#amplitude-player div#volume-container div.volume-controls {
        display:none
    }
}

@media screen and (min-width: 40em) and (max-width:63.9375em) {
    div#amplitude-player div#volume-container div#shuffle-right {
        display:block
    }
}

@media screen and (min-width: 64em) {
    div#amplitude-player div#repeat-container div#repeat {
        margin-left:10px;
        margin-right: 20px;
        float: left
    }
}

@media screen and (min-width: 64em) {
    div#amplitude-player div#volume-container div#shuffle-right {
        display:none
    }
}

input[type=range].amplitude-volume-slider {
    -webkit-appearance: none;
    width: calc( 100% - 33px);
    float: left;
    margin-top: 5px;
    margin-left: 5px;
    padding: 5px;
    background-color: #191919;
    border-radius: 5px
}

@media all and (-ms-high-contrast:none) {
    *::-ms-backdrop,input[type=range].amplitude-volume-slider {
        margin-top: -24px;
        background-color: rgba(255,255,255,0) !important
    }
}

input[type=range].amplitude-volume-slider:focus {
    outline: none
}

input[type=range].amplitude-volume-slider::-webkit-slider-runnable-track {
    width: 75%;
    height: 1px;
    cursor: pointer;
    animate: 0.2s;
    background: #767676
}

input[type=range].amplitude-volume-slider::-webkit-slider-thumb {
    height: 10px;
    width: 10px;
    border-radius: 10px;
    background: #09e335;
    cursor: pointer;
    margin-top: -4px;
    -webkit-appearance: none
}

input[type=range].amplitude-volume-slider:focus::-webkit-slider-runnable-track {
    background: #CFD8DC
}

input[type=range].amplitude-volume-slider::-moz-range-track {
    width: 75%;
    height: 1px;
    cursor: pointer;
    animate: 0.2s;
    background: #767676
}

input[type=range].amplitude-volume-slider::-moz-range-thumb {
    height: 10px;
    width: 10px;
    border-radius: 10px;
    background: #09e335;
    cursor: pointer;
    margin-top: -4px
}

input[type=range].amplitude-volume-slider::-ms-track {
    width: 100%;
    height: 1px;
    cursor: pointer;
    animate: 0.2s;
    background: transparent;
    border-color: transparent;
    border-width: 15px 0;
    color: transparent
}

input[type=range].amplitude-volume-slider::-ms-fill-lower {
    background: #CFD8DC;
    border-radius: 10px
}

input[type=range].amplitude-volume-slider::-ms-fill-upper {
    background: #CFD8DC;
    border-radius: 10px
}

input[type=range].amplitude-volume-slider::-ms-thumb {
    height: 10px;
    width: 10px;
    border-radius: 10px;
    background: #09e335;
    cursor: pointer;
    margin-top: 2px
}

input[type=range].amplitude-volume-slider:focus::-ms-fill-lower {
    background: #CFD8DC
}

input[type=range].amplitude-volume-slider:focus::-ms-fill-upper {
    background: #CFD8DC
}

input[type=range].amplitude-volume-slider::-ms-tooltip {
    display: none
}

div#time-container span.current-time {
    color: #939393;
    font-size: 14px;
    font-weight: 700;
    float: left;
    width: 25%;
    text-align: center
}

div#time-container span.duration {
    color: #939393;
    font-size: 14px;
    font-weight: 700;
    float: left;
    width: 25%;
    text-align: center
}

div#time-container:after {
    content: "";
    display: table;
    clear: both
}

div#meta-container {
    text-align: left;
    margin-top: 5px;
    width: 100%;
    padding-right: 25px;
    max-width: 270px;
    overflow: hidden;
    position: relative
}

div#meta-container:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 25px;
    background-image: linear-gradient(270deg,#161616,transparent)
}

div#time-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

div#meta-container span.song-name {
    display: inline-block;
    color: white;
    font-size: 20px;
    font-family: 'Source Sans Pro',sans-serif;
    white-space: nowrap
}

div#meta-container div.song-artist-album {
    color: #656565;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Open Sans',sans-serif;
    white-space: nowrap
}

div#meta-container div.song-artist-album span {
    display: block
}

.playlist-display {
    display: flex;
    align-items: center
}

a#playlist-open {
    padding: 0 3rem;
    color: white
}

@media (max-width: 991px) {
    .control-container div#central-control-container div#central-controls div#previous {
        display:none
    }
}

@media (max-width: 991px) {
    .control-container div#central-control-container div#central-controls {
        width:110px
    }
}

@media (max-width: 991px) {
    div#amplitude-left img.album-art {
        display:none
    }
}

@media (max-width: 991px) {
    .control-container div#central-control-container {
        padding-left:0
    }
}

@media (max-width: 991px) {
    .global-player {
        padding:0 0
    }
}

@media (max-width: 991px) {
    div#meta-container {
        width:calc(100% - 25px)
    }
}

@media (max-width: 991px) {
    div#time-container {
        display:none
    }
}

@media (max-width: 991px) {
    a#playlist-open {
        padding:0rem;
        margin-left: auto
    }
}

@media (max-width: 991px) {
    .control-container div#volume-container {
        display:none
    }
}

@media (max-width: 991px) {
    .control-container {
        width:100%
    }
}

@media (max-width: 991px) {
    .control-container.first {
        width:auto
    }
}

@media (max-width: 991px) {
    .control-container.volume-control-container {
        width:0
    }
}

@media (max-width: 991px) {
    .playlist-display {
        width:calc(100% - 145px)
    }
}

body.player-open,body.menu-open {
    overflow-y: hidden
}

body.player-live .footer {
    padding-bottom: 115px
}

@media (prefers-reduced-motion:no-preference) {
    :root {
        scroll-behavior: auto
    }
}

.global-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 1rem;
    background-color: #161616;
    z-index: 1023;
    height: 100%;
    max-height: 112px;
    transition: max-height 250ms ease,bottom 250ms ease;
    filter: drop-shadow(0px 0px 20px #000);
    border-top: 1px solid #464646
}

.global-player.promotion {
    max-height: calc(112px + 4rem)
}

.global-player.open {
    max-height: 70vh
}

.global-player.open.promotion {
    max-height: calc(70vh + 4rem)
}

body.player-open {
    overflow-y: hidden
}

.global-player .container {
    position: relative
}

#globalPlayerClose {
    width: 40px;
    height: 40px;
    background-color: #161616;
    border: 4px solid #09e335;
    border-radius: 40px;
    position: absolute;
    right: 0;
    font-size: 1.7rem;
    top: -40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 250ms ease
}

#globalPlayerClose:hover {
    background-color: #09e335;
    color: #161616
}

.global-player.hidden {
    bottom: -50%
}

.subscribe-player {
    height: 0;
    background-color: #161616;
    padding: 0;
    overflow: hidden;
    transition: height 250ms ease;
    text-align: center
}

.subscribe-player.promotion {
    height: 4rem
}

.subscribe-player.promotion .container {
    height: 4rem
}

@media (max-width: 767px) {
    .subscribe-player.promotion {
        height:11rem
    }

    .subscribe-player.promotion .container {
        height: 11rem
    }

    .global-player.promotion {
        max-height: calc(112px + 11rem)
    }

    .global-player .container {
        padding: 0
    }
}

.amplitude-current-minutes,.amplitude-current-seconds,.amplitude-duration-minutes,.amplitude-duration-seconds,.current-time,.duration {
    font-family: 'Open Sans',sans-serif !important;
    font-weight: normal
}
.song.amplitude-song-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 84%;
}

@media(max-width: 767px) {
    div#amplitude-right div.song div.song-meta-data span.song-artist {
        max-width: 230px;
        margin-right: auto;
    }
}