/* Top Info */
.howler-audio-container {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 0;
}
.howler-audio-container .playlistBtn{
    display: none !important;
}
.howler-audio-container.has-playlist .playlistBtn{
    display: block !important;
}

.howler-audio-container .howler-audio-title {
    position: absolute;
    width: 100%;
    top: 3%;
    line-height: 1.5;
    text-align: center;
    font-size: 20px;
    opacity: 0.9;
    font-weight: 300;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
}

.howler-audio-container .timer {
    position: absolute;
    top: 0;
    left: 3%;
    text-align: left;
    font-size: 20px;
    opacity: 0.9;
    font-weight: 300;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
}

.howler-audio-container .duration {
    position: absolute;
    top: 0;
    right: 3%;
    text-align: right;
    font-size: 20px;
    opacity: 0.5;
    font-weight: 300;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
}
.howler-audio-container .bar{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
    opacity: 0.9;
}

/* Controls */
.howler-audio-container .controlsOuter {
    position: absolute;
    width: 100%;
    height: 60px;
    bottom: 4%;
}

.howler-audio-container .controlsInner {
    position: absolute;
    width: 340px;
    height: 60px;
    left: 50%;
    margin: 0 -170px;
}

.howler-audio-container .btn {
    position: absolute;
    cursor: pointer;
    opacity: 0.9;
    -webkit-filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.33));
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.33));
    -webkit-user-select: none;
    user-select: none;
}

.howler-audio-container .btn:hover {
    opacity: 1;
    outline: none
}

.howler-audio-container .btn:focus,
.howler-audio-container .btn:active{
    outline: none;
    box-shadow: none;
}

.howler-audio-container .playBtn {
    width: 69px;
    height: 65px;
    left: 50%;
    margin: auto -34.5px;
}
.howler-audio-container .playBtn:after,
.howler-audio-container .pauseBtn:after,
.howler-audio-container .prevBtn:after,
.howler-audio-container .nextBtn:after,
.howler-audio-container .volumeBtn:after,
.howler-audio-container .playlistBtn:after{
    font-family: FontAwesome;
    position: absolute;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.howler-audio-container .playlistBtn:after{
    content: "\f0ca";
    font-size: 30px;
}
.howler-audio-container .playBtn:after{
    content: "\f04b";
    font-size: 40px;
}
.howler-audio-container .pauseBtn:after{
    content: "\f04c";
    font-size: 40px;
}
.howler-audio-container .prevBtn:after{
    content: "\f048";
    font-size: 30px;
}
.howler-audio-container .nextBtn:after{
    content: "\f051";
    font-size: 30px;
}

.howler-audio-container .volumeBtn:after{
    content: "\f028";
    font-size: 30px;
}
.howler-audio-container.volume-off .volumeBtn:after{
    content: "\f026";
}
.howler-audio-container.volume-down .volumeBtn:after{
    content: "\f027";
}

.howler-audio-container .pauseBtn {
    width: 69px;
    height: 70px;
    left: 50%;
    margin: auto -34.5px;
    display: none;
}

.howler-audio-container .prevBtn {
    width: 35px;
    height: 35px;
    left: 0;
    top: 50%;
    margin: -14.5px auto;
}

.howler-audio-container .nextBtn {
    width: 35px;
    height: 35px;
    right: 0;
    top: 50%;
    margin: -14.5px auto;
}

.howler-audio-container .playlistBtn {
    width: 35px;
    height: 35px;
    top: 50%;
    left: 3%;
    margin: -17.5px auto;
}

.howler-audio-container .volumeBtn {
    width: 35px;
    height: 35px;
    top: 50%;
    right: 3%;
    margin: -17.5px auto;
}

/* Progress */
.howler-audio-container .waveform {
    width: 100%;
    height: 40%;
    position: absolute;
    left: 0;
    top: 50%;
    margin: 0 auto !important;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none;
    cursor: pointer;
    opacity: 0.8;
    -webkit-user-select: none;
    user-select: none;
}

.howler-audio-container .waveform:hover {
    opacity: 1;
}

.howler-audio-container .volume-bar{
    position: absolute;
    top: 50%;
    left: 5%;
    margin: -5px auto;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    border-radius:4px;
}

.howler-audio-container .progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: -1;
    margin-bottom: 0;
}

/* Loading */
#loading {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -35px;
    width: 70px;
    height: 70px;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
    display: none;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }
    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
    }
}

/* Plylist */
.howler-audio-container .playlist {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

.howler-audio-container .list {
    width: 100%;
    height: 360px;
    position: absolute;
    top: 50%;
    left: 0;
    margin: -180px auto;
}

.howler-audio-container .list-song {
    width: 100%;
    height: 120px;
    font-size: 50px;
    line-height: 120px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
}

.howler-audio-container .list-song:hover {
    background-color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

/* Volume */
.howler-audio-container .volume {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    touch-action: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    display: none;
}

.howler-audio-container .barEmpty {
    width: 90%;
    opacity: 0.5;
    box-shadow: none;
    cursor: pointer;
}

.howler-audio-container .barFull {
    width: 90%;
}

.howler-audio-container .sliderBtn {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 93.25%;
    margin: -25px auto;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.33);
    border-radius: 25px;
    cursor: pointer;
}

@media (max-width: 450px){
    .howler-audio-container .controlsInner {
        width: 200px;
        margin: 0 -100px;
    }
    .howler-audio-container .howler-audio-title span.track{
        font-size: 14px;
        line-height: 1.2;
        display: inline-block;
        padding: 0 50px;
        width: 100%;
    }
    .howler-audio-container .howler-audio-title .timer,
    .howler-audio-container .howler-audio-title .duration{
        font-size: 14px;
    }
}