html {
  display: table;
  margin: auto;
}

body {
  height: 200px;
  width: auto;
  display: block;
  margin: 0;
  padding: 0;
}

span#mobile-cntrl {
  opacity: 0.4;
}

.audio-player {
  width: 100vw;
  text-align: left;
  display: flex;
  flex-flow: row;
  margin: 0;
  padding: 0;
}
.audio-player .player-controls {
  align-items: center;
  justify-content: center;
  width: 96%;
  min-width: 150px;
  padding-left: 1.5%;
  padding-right: 20px;
  border: 0px #000 solid;  
}
.audio-player .player-controls progress {
  width: 98%;
  min-width: 200px;
  border: 0;
  border-radius: 5px;
  margin: 0px 4px;
}
.audio-player .player-controls progress[value] {
  -webkit-appearance: none;
  appearance: none;
  background-color: #bdcfea;
  color: #de74e7;
  height: 4px;
  overflow: hidden;
}

.audio-player .player-controls progress[value]::-webkit-progress-bar {
  background-color: #bdcfea;
  color: #de74e7;
}
.audio-player .player-controls progress::-webkit-progress-value {
  background-color: #de74e7;
}

.player-marquee {
  width: 98%;
  text-align: center;
  padding-top: 8px;
  margin-bottom: -8px;
  margin-left: 4px;
}

.player-marquee #player-title {
  font-size: 11px;
  font-weight: 600;
  overflow: hidden;
  white-space:nowrap;
  text-overflow: ellipsis;  
}

.audio-player #play-btn {
  background-image: url("../imgs/player_btn_play.gif");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center; 
  min-width: 76px;
  width: 82px;
  height: 58px;
  margin: 0px 0px 0px 4px;
}
.audio-player #play-btn.pause {
  background-image: url("../imgs/player_btn_pause.gif");
}

.audio-player #play-btn.load {
  background-image: url("../imgs/player_btn_play.png");
  width: 74px;
  height: 58px;  
}

progress::-moz-progress-bar { background: #de74e7; }

.timer {
  margin-top: 2px; font-size: 10px; color: #666; width:98%;
}

small.start-time {
  float: left; position: relative; left: 6px;
}

small.end-time {
  float: right; position: relative; right: 0; top: 0;
}

#stop-btn {
  display: inline-block;
  border: 1.4px #CCC solid;
  border-radius: 50%;  
  padding: 0px 3px 1px 3px;
  margin-bottom: -20px;
  font-weight: 800;
}

#stop-btn a {
  text-decoration: none;
  color: #CCC;  
}





