.radio {
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin: 10px 0 0 7px;
}
.radio + label {
    position: relative;
    padding: 0 0 0 35px;
    cursor: pointer;
    display: inline-block;
    height: 16px;
    margin-right: -4px;
}
.radio + label:before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 22px;
  height: 22px;
  border: 1px solid #CDD1DA;
  border-radius: 50%;
  background: #FFF;
}
.radio + label:after {
  content: '';
  position: absolute;
  top: 13px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f82249;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.5);
  opacity: 0;
  transition: .2s;
}
.radio:checked + label:after {
  opacity: 1;
}
.radio:focus + label:before {
  box-shadow: 0 0 0 3px rgba(255,255,0,.7);
}

div.play-stop {
    background: url(/images/play_white.svg) 8px 7px no-repeat;
    background-color: #f82249;
    height: 30px;
    width: 30px;
    border: 0px solid gray;
    border-radius: 15px;
    margin: 0 auto;
}
tr.playing div.play-stop, div.playing div.play-stop {
    background: url(/images/stop_white.svg) 7px 7px no-repeat;
    background-color: #f82249;
}
div.play-stop:hover {
    background-color: #ff5977;
}

.soundfonplayer {
    display: inline-block;
}
.input.radio{
  display:none;
}
.mbxs {
    border-top: 1px #ccc solid;
    padding: 5px 0px;
}







.audiojs {
    width: 460px;
    max-width: calc(100% - 5px);
    height: 36px;
    border-radius: 15px;
    background: #f82249;
    overflow: hidden;
    font-family: monospace;
    font-size: 12px;
    background-image: none;
    background-image: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

.audiojs .loaded{
  background: #af1834;
  background-image: none;
}

.audiojs .progress{
  background: #fff;
  background-image: none;
  border-radius: 0px;
}
.audiojs .scrubber{
  border:0px;
  max-width: calc(100% - 175px);
}

.audiojs .play-pause {
    width: 40px;
    height: 40px;
    padding: 4px 6px;
    margin: 0px;
    float: left;
    overflow: hidden;
    border-right: 1px solid #fff;
}

.audiojs .play {
    background: url(/images/play_white.svg) 6px 6px no-repeat;
}

.audiojs .pause {
    background: url(/images/pause_white.svg) 6px 6px no-repeat;
}

.audiojs .time {
    float: left;
    height: 36px;
    line-height: 36px;
    margin: 0px 0px 0px 6px;
    padding: 0px 6px 0px 12px;
    border-left: 1px solid #fff;
    color: #fff;
    text-shadow: none;
}

.audiojs .time em{
  color: #fff;
}