  div#single-song-player {
  margin: auto;
  margin-top: 10px;
  margin-bottom: 30px;
  width: 100%;
  min-width: 430px;
  max-width: 700px;
  background-color: #ddd;
}

div.control-container {
  background-color: #000;
}
.player-left {
  display: inline-block;
  background-color: #ce992c;
  width: 110px;
  height: 110px;
  float: left;
}
.player-right {
  display: inline-block;
  width: calc(100% - 110px);
  padding: 10px 20px 10px 20px;
  height: 110px;
  float: right;
}
div.control-container div.amplitude-play-pause {
  width: 80px;
  height: 80px;
  margin: 15px;
  cursor: pointer;
}
div.control-container div.amplitude-play-pause.amplitude-paused {
  background: url("/other/untoldstories/css/play-circle-light.svg");
  background-size: cover;
}
div.control-container div.amplitude-play-pause.amplitude-playing {
  background: url("/other/untoldstories/css/pause-circle-light.svg");
  background-size: cover;
}
div.control-container div.meta-container {
  width: 100%;
  text-align: left;
  color: white;
}
div.control-container div.meta-container span[amplitude-song-info="name"] {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 100;
  color: #fff;
  display: block;
}
div.control-container div.meta-container span[amplitude-song-info="artist"] {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  display: block;
}
div.control-container:after {
  content: "";
  display: table;
  clear: both;
}

div.time-container {
  font-family: "Crimson Text", serif;
  font-size: 18px;
  color:  rgb(208, 155, 44);
  height: 16px;
}
div.time-container span.current-time {
  float: left;

}
div.time-container span.duration {
  float: left;
  margin-right: 5px;
}
progress.amplitude-song-played-progress {
  background-color: #999;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  display: block;
  border: none;
  margin-top: 15px;
}
.amplitude-song-slider {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  width: 100%;
  position: relative;
  top:-12px;
  opacity: 0;
}
.amplitude-song-slider:focus {
    outline: none;
}
progress.amplitude-song-played-progress:not([value]) {
  background-color: #999;
}

progress[value]::-webkit-progress-bar {
  background-color: #999;
}

progress[value]::-moz-progress-bar {
  background-color: rgb(208, 155, 44);
}

progress[value]::-webkit-progress-value {
  background-color: rgb(208, 155, 44);
}
.player-toc-heading {
    border-bottom: 1px solid #fff; 
    color: #333;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    padding-top: 2px;
    padding-bottom: 10px;
}
.amplitude-skip-to {
    cursor: pointer;
    color: #000;
    border-bottom: 1px solid #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
    padding-bottom: 10px;
}
.player-toc {
  padding: 10px 30px 20px 30px;
}
.player-toc .amplitude-skip-to,
.player-toc .player-toc-heading,
.player-toc .player-transcript {
    display: block;
}
.player-toc span i {
  margin-right: 5px;
  font-size: 22px;
  position: relative;
  top: 2px;
}
.player-toc-time {
    font-size: 12px;
    font-weight: 100;
}
.player-transcript {
  text-align: right;
}
.player-transcript a {
  color: #333;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: bold;
  text-decoration: underline;
  top: -2px;
  position: relative;
  letter-spacing: 1px;
}