


.audio-player-wrapper {
  background: #fff;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  padding:0px 32px;
  position: relative;
  width: 50%;
  margin:auto;
  margin-top:30px;
  z-index: 1; }


a.btn-play-pause {
  background: #e2001a;
  background-image: url("../img/icons.svg");
  background-repeat: no-repeat;
  background-position: -270px 0;
  border-radius: 50px;
  cursor: pointer;
  padding: 25px;
  margin-bottom: 24px;
  margin-right: 24px;
  max-height: 50px;
  max-width: 50px;
  -webkit-transition: transform 0.1s cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition: transform 0.1s cubic-bezier(0.25, 0.1, 0.25, 1);
  -o-transition: transform 0.1s cubic-bezier(0.25, 0.1, 0.25, 1);
  transition: transform 0.1s cubic-bezier(0.25, 0.1, 0.25, 1); }
  a.btn-play-pause.btn-play-pause--playing {
    background-image: url("../img/icons.svg");
    background-repeat: no-repeat;
    background-position: -220px 0; }
  a.btn-play-pause:active {
    transform: scale(0.8); }

.audio-player__title {
  color: #3B3B3B;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 13px; }

.audio-player__desc {
  color: #3B3B3B;
  font-weight: 400;
  font-size: 1.125rem;
  margin-bottom: 24px; }

.current_time,
.total_time {
  position: relative;
  z-index: 1;
  color: #686868;
  font-weight: 700;
  font-size: 0.875rem;
  margin-top: 8px; }

.current_time {
  float: left; }

.total_time {
  float: right; }

progress.amplitude-song-played-progress {
  position: relative;
  z-index: 1;
  background-color: #ededed;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  overflow: hidden;
  width: 100%;
  height: 6px;
  display: block;
  cursor: pointer;
  border-radius: 8px;
  margin-top:20px;
  height: 8px;
  border: none; }
  progress.amplitude-song-played-progress:not([value]) {
    background-color: #ededed; }

progress[value]::-webkit-progress-bar {
  background-color: #ededed;
  border-radius: 8px; }

progress[value]::-moz-progress-bar {
  background-color: #e2001a; }

progress[value]::-webkit-progress-value {
  background-color: #e2001a; }

.audio-player--dark .audio-player-wrapper {
  background: #202020; }
  .audio-player--dark .audio-player-wrapper:before {
    background-position: 0 -135px; }
.audio-player--dark .audio-player__title {
  color: #FFF; }
.audio-player--dark .audio-player__desc {
  color: #BCBCBC; }
.audio-player--dark .audio-player__timer {
  color: #BCBCBC; }

@media screen and (max-width: 767px) {
  .audio-player-wrapper {
    padding: 16px 24px;
    flex-direction: column; } }