/*= AUDIO PLAYER
--------------------------------------------------------*/
.audio-player,.audio-player div,.audio-player p,.audio-player a,.audio-player button {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

.audio-player {
    position: relative;
    margin: 0 auto;
    background: #d14242;
    width: 100%;
    height: 120px;
}

.audio-player p {
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    left: 20px;
    top: 62px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #fcc;
    font-weight: 700;
    margin-top: -15px;
}

/* Play-Pause Button */
.mejs-controls .mejs-button button {
    position: absolute;
    display: block;
    width: 73px;
    height: 71px;
    cursor: pointer;
    background: #961717;
}

.mejs-controls .mejs-play button,.mejs-controls .mejs-pause button {
    width: 115px;
    height: 120px;
    background: #961717 url(../images/playerbuttons.png) 0 0 no-repeat;
}

.mejs-controls .mejs-pause button {
    background-position: 0 -120px;
}

/* Mute-Unmute Control */
.mejs-controls .mejs-mute button,.mejs-controls .mejs-unmute button {
    width: 24px;
    height: 23px;
    background: transparent url(../images/mute-unmute.png) 0 0;
    top: 28px;
    left: 140px;
}

.mejs-controls .mejs-unmute button {
    background-position: 0 -23px;
}

/* Volume Slider */
.mejs-controls div.mejs-horizontal-volume-slider {
    position: absolute;
    top: 33px;
    right: 23px;
    cursor: pointer;
    width: 30%;
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
    /* width: 232px; */
    height: 8px;
    background: #961717;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
    position: absolute;
    width: 0;
    height: 8px;
    background: #961717;
    top: 1px;
    left: 1px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

/* Time Loader Bar */
.mejs-controls div.mejs-time-rail {
  /*   width: 380px; */
}

.mejs-controls .mejs-time-rail span {
    position: absolute;
    display: block;
  /*   width: 380px; */
    height: 12px;
    top: 40px;
    left: 55px;
    cursor: pointer;
    -webkit-border-radius: 0 0 2px 2px;
    -moz-border-radius: 0 0 2px 2px;
    border-radius: 0 0 2px 2px;
}

.mejs-controls .mejs-time-rail .mejs-time-total {
    background: #e26060;
    width: 311px !important;
    height: 12px;
    margin-top: 68px;
    margin-left: 60px;
}

.mejs-controls .mejs-time-rail .mejs-time-loaded {
    top: 0;
    left: 0;
    width: 0;
    background: #961717;
}

.mejs-controls .mejs-time-rail .mejs-time-current {
    top: 0;
    left: 0;
    width: 0;
    background: #961717;
}

/* Flat sliders for time and volume */
.mejs-controls .mejs-time-rail .mejs-time-handle {
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    top: 2px;
    background: #330202;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    left: 11px;
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle {
    position: absolute;
    display: block;
    width: 12px;
    height: 12px;
    -webkit-border-radius: 50%;
    top: -2px;
    background: #330202;
}

/* Time Progress Tooltip*/
.mejs-controls .mejs-time-rail .mejs-time-float {
    position: absolute;
    z-index: 9999;
    color: fff;
    width: 33px;
    height: 23px;
    top: -26px;
    display: none;
    margin-left: -17px;
}

.mejs-controls .mejs-time-rail .mejs-time-float-current {
    width: 33px;
    display: block;
    left: 0;
    top: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #f89494;
    text-align: center;
    z-index: 9999;
    background: #bf3737;
    padding: 2px 2px 5px;
}

.mejs-controls .mejs-time-rail .mejs-time-float-current:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-width: 10px;
    border-style: solid;
    border-color: #bf3737 transparent transparent;
    top: 15px;
    left: 8px;
}