/* new audioplayer */

.audiplayer audio { display: none; }

.audiplayer.new { margin-bottom: 10px; }

.audiplayer.new .mejs-container { 
    background: transparent; 
    width: 100% !important;    
}

.audiplayer.new .mejs-container .mejs-controls {
    background: transparent;
}

.audiplayer.new .mejs-container .mejs-controls div {
    font-size: 14px;
    color: #5385ad;
}

.audiplayer.new .mejs-container .mejs-controls .mejs-time span {
    color: black;
}

.audiplayer.new .mejs-controls .mejs-button button {
    background-image: url("https://www.ancientfaith.com/assets/img/mediaelement/controls_blue.svg");
}

.audiplayer.new .mejs-container .mejs-controls .mejs-button button {
    transform: scale(1.8);
    outline: none;
    border: 0;
}

.audiplayer.new .mejs-container .mejs-controls .mejs-time-rail span {
    height: 5px;
}

.audiplayer.new .mejs-container .mejs-controls .mejs-volume-button { 
    margin-right: 10px; 
    margin-left: 20px;
    margin-top: -2px;
}

.audiplayer.new .mejs-container .mejs-controls .mejs-playpause-button { margin-right: 15px; margin-top: -2px; }

.audiplayer.new .mejs-container .mejs-controls .mejs-horizontal-volume-slider {
    margin-top: -2px;
}                    

.audiplayer.new .mejs-container .mejs-controls .mejs-horizontal-volume-current {
    background: linear-gradient(rgba(219,109,90,1), rgba(219,109,90,1));
}

.audiplayer.new .mejs-container .mejs-controls .mejs-horizontal-volume-total {
    background: rgba(0, 0, 0, 0) linear-gradient(rgba(30, 30, 30, 0.2), rgba(30, 30, 30, 0.2)) repeat scroll 0% 0% / auto padding-box border-box;
}                    

#piCont {
    position:relative;
    display:none;
    width:100%;
    max-width:300px;
    background-color: transparent; 
    height: 26px;
    margin-top: 0px;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

#pi {
    position:absolute;
    height:22px; 
    width:22px;
    border-radius: 50%;
    background-color: #5385ad; //#5385ad;
    margin-top: 2px;
    z-index: 1;
    transition: transform .5s;
    opacity: 1;
}

#piLine {
    position:absolute;
    height: 1px;
    border: 3px solid #db6d5a; //#082233;
    border-radius: 2px;
    top: 10px;
    width:100%;
}

#pi:hover { cursor: pointer; transform: scale(1.2); }

#remainingTime {
    margin-left:15px; 
    margin-top: 9px; 
    margin-right: 10px; 
    display: none;
}

#remainingTime:before {
    content: "-";
    margin-right: 1px;
}


/* small player */

.small-preroll.mejs-audio.mejs-container {
    background: none;
}
            
.small-preroll.mejs-audio.mejs-container .mejs-controls {
    background: none;
}

.small-preroll.mejs-audio.mejs-container .mejs-controls .mejs-playpause-button button {
    transform: scale(1.6);
    transition: all 1s ease;
    background-image: url(https://www.ancientfaith.com/assets/img/mediaelement/controls_blue.svg);

}    
.small-preroll.mejs-audio.mejs-container .mejs-controls .mejs-playpause-button button:hover {
    transform: scale(1.8);
}                        

@media only screen and (max-width: 800px) {
    #piCont { width: 150px; }

    .audiplayer.new .mejs-container .mejs-controls .mejs-horizontal-volume-slider, .audiplayer.new .mejs-container .mejs-controls .mejs-volume-button {
        display: none;
    }

    .audiplayer.new .mejs-container .mejs-controls .mejs-playpause-button { margin-right: 15px; }
    
    #remainingTime { margin-left:20px; margin-top: 9px; }
}    

