﻿#audioPlayer *,
#audioPlayer *::before,
#audioPlayer *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.audio-player_wrap {
    position: relative;
    z-index: 0;
}

.audio-player {
    background: rgb(28, 111, 153);
    background: -o-linear-gradient(bottom, rgba(28, 111, 153, 1) 0%, rgba(42, 137, 169, 1) 100%);
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(28, 111, 153, 1)), to(rgba(42, 137, 169, 1)));
    background: linear-gradient(0deg, rgba(28, 111, 153, 1) 0%, rgba(42, 137, 169, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1c6f99", endColorstr="#2a89a9", GradientType=1);
    border-radius: 20px;
    padding: 25px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.audio-player>* {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%
}

.audio-player__play-control {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto
}

.audio-player__head {
    font-weight: bold;
    font-size: 16px;
    color: #cbdce4;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden
}

.audio-player__title {
    font-weight: 600;
    color: inherit;
    font-size: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden
}

.audio-player__play {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin-right: 25px;
    background: url("../images/icon-pause.png") center center no-repeat #fff;
    cursor: pointer
}

    .audio-player__play.is-pause {
        background-image: url("../images/icon-play.png") 
    }

.player-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #c1d5e0;
    font-size: 18px;
    margin-top: 6px
}

.volume-mute {
    background: url("../images/icon-volume.png") center center no-repeat;
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 12px;
    cursor: pointer
}

    .volume-mute.is-muted {
        background-image: url("../images/icon-mute.png")
    }

.start-time_split {
    display: inline-block;
    margin: 0 3px
}

.total-plays {
    margin-left: auto
}

.audio-player .timeline {
    width: 100%;
    background: #79a6b9;
    display: block;
    border-radius: 10px;
    cursor: url('../images/arrow-symbol.png'), auto;
}


.audio-player .seekobj {
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 10px;
    cursor: url('../images/arrow-symbol.png'), auto;
    position: relative
}

.audio-player .seekobj::after {
    content: "";
    width: 14px;
    height: 14px;
    background-color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 50%;
    margin-top: -4px;
    opacity: 0;
    visibility: hidden
}

    .audio-player .seekobj:hover::after {
        opacity: 1;
        visibility: visible;
        cursor: url('../images/arrow-symbol.png'), auto;
    }


.play-list-wrap {
    background-color: #f7f7f7;
    margin: 0 25px;
    padding: 25px;
    padding-bottom: 15px;
    border-radius: 0 0 20px 20px;
    margin-top: -20px;
}

.play-list {

    margin: 0;

    padding: 0;

    list-style-type: none;
}

.play-list .play-list__item {
    padding: 15px;
    border-radius: 10px;
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    color: #9d9d9d;
    margin: 5px 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.play-list .play-list__item.active,
.play-list .play-list__item:hover {
    background-color: #e4ecef;
}

.play-list .play-list__item.active .play-list__title,
.play-list .play-list__item:hover .play-list__title {
    color: #1e7199;
}

.play-list__control {
    background: rgb(28, 111, 153);
    background: -o-linear-gradient(bottom, rgba(28, 111, 153, 1) 0%, rgba(42, 137, 169, 1) 100%);
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(28, 111, 153, 1)), to(rgba(42, 137, 169, 1)));
    background: linear-gradient(0deg, rgba(28, 111, 153, 1) 0%, rgba(42, 137, 169, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1c6f99", endColorstr="#2a89a9", GradientType=1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 12px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 32px;
    flex: 0 0 32px;
    max-width: 32px;
}

.play-list__control_icon {
    background: url(../images/icon-play-white.png) center center no-repeat;
    background-size: 10px 12px;
    display: block;
    width: 100%;
    height: 100%;
}

.is-pause .play-list__control_icon {
    background-image: url(../images/icon-pause-white.png)
}

.play-list__info {}

.play-list__title {
    font-size: 18px;
    font-weight: bold;
    color: #9d9d9d;
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.play-list__timeline {
    font-weight: normal;
}

@media (max-width:575.98px) {
    .audio-player {
        display: block;
        padding: 20px
    }

    .audio-player__play {
        width: 48px;
        height: 48px;
        background-size: 15px 18px;
        margin: 0 0 15px
    }

    .audio-player__head {
        font-size: 14px
    }

    .audio-player__title {
        font-size: 18px
    }

    .play-list-wrap {
        margin-right: 0;
        margin-left: 0;
        padding: 15px;
        padding-bottom: 10px;
    }

    .play-list__title {
        font-size: 15px;
    }
}


/* 

.volumeBox input {
    background: #009933;
    color: #fff;
    border-radius: 10px;
    box-shadow: 2px 0px 4px #79a6b9;
}

.volumeBox input[type="range"] {
    -webkit-appearance: none;
    width: 150px;
    height: 2px;
    background: aqua;
    background-position: center;
    background-repeat: no-repeat;
}

.volumeBox {
    display: flex;
    align-items: center;
    margin-right: 12px;
}

.volumeBox input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: #009900;
    position: relative;
    border: 3px solid aquamarine;
    -webkit-appearance: none;
    z-index: 3;
    cursor: pointer;
} */

.volumeBox {

    display: flex;

    align-items: center;

    margin-right: 12px;

    position: relative;
}

    .volumeBox input[type="range"] {
        margin: auto;
        -webkit-appearance: none;
        position: relative;
        overflow: hidden;
        height: 4px;
        width: 60px;
        cursor: url('../images/arrow-symbol.png'), auto;
        border-radius: 5px;
        /* iOS */
        background: #79a6b9;
    }


    .volumeBox ::-webkit-slider-runnable-track {
        background: #79a6b9;
    }

    /*
 * 1. Set to 0 width and remove border for a slider without a thumb
 */
    .volumeBox ::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 10px;
        height: 20px;
        border-radius: 100%;
        /* background: #fff; */
        z-index: 3;
        cursor: url('../images/arrow-symbol.png'), auto;
        box-shadow: -100vw 0 0 100vw dodgerblue;
        /* display: none; */
    }

    .volumeBox:hover ::-webkit-slider-thumb {
        background: #fff;
    }

    .volumeBox ::-moz-range-track {
        height: 40px;
        background: #79a6b9;
    }

    .volumeBox ::-moz-range-thumb {
        background: #fff;
        height: 40px;
        width: 20px;
        border: 3px solid #999;
        border-radius: 0 !important;
        box-shadow: -100vw 0 0 100vw dodgerblue;
        box-sizing: border-box;
    }

    .volumeBox ::-ms-fill-lower {
        background: dodgerblue;
    }

    .volumeBox ::-ms-thumb {
        background: #fff;
        border: 2px solid #999;
        height: 40px;
        width: 20px;
        box-sizing: border-box;
    }

    .volumeBox ::-ms-ticks-after {
        display: none;
    }

    .volumeBox ::-ms-ticks-before {
        display: none;
    }

    .volumeBox ::-ms-track {
        background: #79a6b9;
        color: transparent;
        height: 40px;
        border: none;
    }

    .volumeBox ::-ms-tooltip {
        display: none;
    }
@media screen and (max-width : 768px) {
    .volumeBox {
        display: none;
    }
    .start-time_split {
        display: none;
    }
} 
