/*= AUDIO PLAYER
--------------------------------------------------------*/
@media screen and (max-device-width: 600px) {
  div.page{
    width:100%!important;
  }
}


.page  {
	margin: 0 auto;
	width: 80%;
	h1 {
	         display: inline-block;
		text-align: center;
		vertical-align: middle;
	} 
}

.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: #30DFF3;
    width: 100%;
    height: 8%;
}

.audio-player p {
    position: absolute;
    text-align: center;
    left:20%;
    top:30%;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: black;
    font-weight: 700;
}
.mejs-inner{
    width: 60%;
}
.mejs-controls {
    width: 60%;
}

/* Play-Pause Button */
.mejs-controls .mejs-button button {
    position: absolute;
    display: block;
    width: 73px;
    height: 71px;
    cursor: pointer;
    background: #30DFF3;
}

.mejs-controls .mejs-play button,.mejs-controls .mejs-pause button {
    width: 7%;
    height: 100%;
    background: #30DFF3 url(play.png) 0 0 no-repeat;
    background-size: 100%;
}

.mejs-controls .mejs-pause button {
    background: #30DFF3 url(pause.png) 0 0 no-repeat;
    background-size: 100%;

}

/* Time Loader Bar */
.mejs-controls div.mejs-time-rail {
    width: 89%;
}

.mejs-controls .mejs-time-rail span {
    position: absolute;
    display: block;
    width: 89%;
    height: 12px;
    cursor: pointer;
}

.mejs-controls .mejs-time-rail .mejs-time-total {
    background: #30DFF3;
    width: 89%;
    height: 12px;
    margin-top: 3%;
    margin-left:10%;
    margin-right:1%;
}

.mejs-controls .mejs-time-rail .mejs-time-loaded {
    top: 0;
    left: 0;
    width: 0;
    background: #28C0D1;
}

.mejs-controls .mejs-time-rail .mejs-time-current {
    top: 0;
    left: 0;
    width: 0;
    background: #28C0D1;
}

/* 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%;
}

/* 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;
}
