.audio-player {
    background-color: #E1E1E1;
    padding: 0.3rem 0.3rem 0.625rem 0.3rem;
    height: 4.75rem;
    -webkit-border-radius: 0.375rem 0.375rem 0 0;
    -moz-border-radius: 0.375rem 0.375rem 0 0;
    border-radius: 0.375rem 0.375rem 0 0;
    font-size: 0.875rem;
    margin: 0;
    z-index: 8999;
}

.audio-player-album-artwork {
    height: 4rem;
    width: 4rem;
    float: left;
    background-size: cover;
    margin: 0 0.5rem 0 0;
    background-color: #EDEDED;
}

.audio-player-track {
    color: #4AA4DF;
    display: block;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0 0 0.250rem 0;
}

.audio-player-button {
    display: inline-block;
    white-space: nowrap;
  vertical-align: middle;
    border: 0.063rem solid rgba(0, 0, 0, 0);
    -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
width: 2rem;
height: 2rem;
text-align: center;
padding: 0.4rem 0;
font-size: 0.875rem;
/*line-height: 1.4;*/
border-radius: 1rem;
background-color: #A5A5A5;
float: left;
overflow: hidden;
    cursor: pointer;
    color: white;
}

.audio-player-paused {
    background-color: #4AA4DF;
}

.audio-player-paused:hover {
    background-color: #4890c9;
}

.audio-player-playing:hover {
    background-color: #999;
}

.audio-player-waveform {
    display: block;
    width: 100%;
    height: 34px;
}

.audio-player-waveform img {
    height: 32px;
    max-height: 32px;
}

.audio-player-waveform-visualisation {
    height: 34px;
    margin-left: 7rem;
}

.audio-player-scrubber {
    position: relative;
    border: 1px solid #DDD;
    background: #FFF;
    height: 34px;
    margin: 0;
    overflow: hidden;
    border-radius: 0.375rem;
    width: 90%;
    float: left;
}

.audio-player-duration {
    border: 1px solid #DDD;
    background: #FFF;
    height: 34px;
    border-radius: 0.375rem;
    margin: 0 0 0 1%;
    width: 9%;
    float: left;
    font-size: 0.7rem;
    text-align: center;
    line-height: 32px;
    font-weight: bold;
    -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.audio-player-current-progress:after {
    content: " / ";
    font-weight: normal;
}

.audio-player-current-progress {
    color: #4AA4DF;
}
    /*display: block;*/
    /*border-bottom: 1px solid #EEE;*/
    /*text-align: center;*/
/*}*/

/*.audio-player-total {*/
    /*display: block;*/
    /*margin: 0.063rem 0 0 0;*/
    /*text-align: center;*/
/*}*/

.audio-player-marks {
    height: 0.5rem;
    position: relative;
    font-size: 0.6rem;
    line-height: 0.6rem;
    width: 90%;
    color: #A5A5A5;
    overflow: hidden;
}

.audio-player-marks-0,
.audio-player-marks-25,
.audio-player-marks-50,
.audio-player-marks-75
{
    border-left: 1px solid #A5A5A5;
    height: 0.5rem;
    padding: 0;
}

.audio-player-marks-0 {
    left: 0;
    border-left: 0;
}

.audio-player-marks-25 {
    position: absolute;
    left: 25%;
    padding-left: 0.125rem;
}

.audio-player-marks-50 {
    position: absolute;
    left: 50%;
    padding-left: 0.125rem;
}

.audio-player-marks-75 {
    position: absolute;
    left: 75%;
    padding-left: 0.125rem;
}

.audio-player-marks-100 {
    position: absolute;
    height: 0.5rem;
    right: 0;
    padding: 0;
}

.audio-player-progress {
    background-color: #A0D3F4;
    border-right: 1px solid #4FA5DD;
    position: absolute;
    top: 0;
    left: 0;
    height: 32px;
    width: 0;
    opacity: 0.7;
    -webkit-transition: width 0.25s linear;
    -moz-transition: width 0.25s linear;
    -o-transition: width 0.25s linear;
    transition: width 0.25s linear;

}

.audio-player-move-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}


.glyphicon-play:before {
    content: "\e072";
}

.glyphicon-pause:before {
    content: "\e073";
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 25px;
    height: 15px;
    top:4px;
}
.audio-player-autoplay-switch{
    font-size:0.7em;
    float:right;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}
