/*----------------------------
Music Player
----------------------------*/
.player-main-block {
  margin-bottom: 0;
  background-color: #f7f7f7;
  padding: 60px 40px;
}

.album-art-block .track-meta-info {
  position: static;
  color: #111111;
}
.album-art-block .song-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.2;
}
.album-art-block .song-artist-album {
  background-color: transparent;
  background-image: none;
  font-size: 1.4rem;
  font-weight: 300;
  padding: 0;
}
.album-art-block .album-art-space {
  position: relative;
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
  margin-top: 30px;
}
.album-art-block .album-art-space img {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.audio-controller-wrap {
  padding: 0;
  margin-top: 37px;
  background-color: transparent;
}
.audio-controller-wrap .input-range-block {
  font-size: 1.2rem;
  font-weight: 400;
  float: left;
  width: 100%;
  clear: both;
}
.audio-controller-wrap .track-progress-wrap {
  width: calc(100% - 80px);
  float: left;
}
.audio-controller-wrap input[type='range'] {
  background-color: #e7e7e7 !important;
  padding: 0 !important;
  -webkit-appearance: none;
  height: 6px;
}
.audio-controller-wrap input[type='range'].amplitude-song-slider {
  margin-top: 3px;
}
.audio-controller-wrap input[type='range'].amplitude-song-slider::-webkit-slider-thumb {
  background-color: #fc427f;
  width: 3px;
  -webkit-appearance: none;
}
.audio-controller-wrap input[type='range']::-webkit-slider-runnable-track {
  color: #fc427f;
  height: 6px;
}
.audio-controller-wrap input[type='range'].amplitude-volume-slider {
  width: calc(100% - 80px);
  display: inline-block;
  float: left;
  margin-top: 3px;
}
.audio-controller-wrap .current-time,
.audio-controller-wrap .duration {
  width: 40px;
  display: inline-block;
  float: left;
  line-height: 1;
}
.audio-controller-wrap .duration {
  text-align: right;
}

.time-controller-block {
  zoom: 1;
  position: relative;
  overflow: hidden;
}

.control-container {
  margin-top: 27px;
}

.controller-common {
  background-color: transparent;
  margin: 0 12px;
}
.controller-common:before {
  font-size: 1.2rem;
  color: #111111;
}

.amplitude-prev:before {
  content: "\f049";
}

.amplitude-next:before {
  content: "\f050";
}

.player-footer {
  margin-top: 12px;
}

.player-footer .volume-container,
.player-footer .controller-group {
  width: 100%;
  padding: 0;
}

.volume-container i.fa {
  position: static;
  display: inline-block;
  width: 40px;
  float: left;
  font-size: 1.2rem;
}
.volume-container i.fa.fa-volume-down {
  text-align: right;
  padding-right: 7px;
}
.volume-container i.fa.fa-volume-up {
  padding-left: 7px;
}

.player-track-list-block {
  border-right: 10px solid #f7f7f7 !important;
}

.slimScrollDiv .slimScrollBar {
  width: 10px !important;
  background-color: #fc427f !important;
  border-radius: 5px !important;
}
.slimScrollDiv .slimScrollRail {
  width: 10px !important;
  background-color: #f7f7f7 !important;
}

.player-track-list-block {
  background-color: transparent;
  padding: 0 30px 0 0;
}

.amplitude-song-container {
  display: list-item;
  list-style-type: decimal;
  list-style-position: inside;
  font-size: 1.8rem;
  font-weight: 700;
  background-color: #f7f7f7;
  margin: 15px 0;
  padding: 22px 30px;
}
.amplitude-song-container:first-child {
  margin-top: 0;
}
.amplitude-song-container:last-child {
  margin-bottom: 0;
}
.amplitude-song-container .play-now {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  left: auto;
  display: inline-block;
  position: absolute;
}
.amplitude-song-container .play-now .play-state {
  display: none;
}
.amplitude-song-container.amplitude-playing {
  background-color: #fc427f;
  color: #ffffff;
}
.amplitude-song-container.amplitude-playing .song-title {
  color: #ffffff;
}
.amplitude-song-container.amplitude-playing .play-now .play-state {
  display: block;
}
.amplitude-song-container.amplitude-playing .play-now .normal-state {
  display: none;
}

.song-meta-data {
  display: inline-block;
  vertical-align: middle;
  margin-left: 30px;
}
.song-meta-data .song-artist {
  font-weight: 300;
  font-size: 1.4rem;
}

.text-white .player-main-block,
.theme-bg .player-main-block {
  background-color: rgba(255, 255, 255, 0.33);
}
.text-white .album-art-block .track-meta-info,
.theme-bg .album-art-block .track-meta-info {
  color: #ffffff;
}
.text-white .audio-controller-wrap input[type='range'],
.theme-bg .audio-controller-wrap input[type='range'] {
  background-color: rgba(255, 255, 255, 0.15) !important;
}
.text-white .amplitude-song-container,
.theme-bg .amplitude-song-container {
  background-color: rgba(255, 255, 255, 0.33);
}
.text-white .amplitude-song-container.amplitude-playing,
.theme-bg .amplitude-song-container.amplitude-playing {
  background-color: #fc427f;
}
.text-white .player-track-list-block,
.theme-bg .player-track-list-block {
  border-color: rgba(255, 255, 255, 0.33) !important;
}
.text-white .controller-common:before,
.theme-bg .controller-common:before {
  color: #ffffff;
}



