/*  Audio podcasts
    Created on : Sep 25, 2018, 4:05:05 PM
    Author     : amal
*/

audio{ display: none }

.audio-player{
    margin-bottom: 15px;
    background-color: #f5f5f5;
    padding: 20px;
    box-shadow: 0px 0px 2px #0000001f;
}
.plyr__controls {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    text-align: center;
    color: #a06eb7;
}
.plyr__controls .plyr__menu, .plyr__controls .plyr__progress, .plyr__controls .plyr__time, .plyr__controls>.plyr__control {
    margin-left: 5px;
}
.plyr__control {
    display: inherit;
    background: 0 0;
    border: 0;
    border-radius: 3px;
    color: inherit;
    cursor: pointer;
    flex-shrink: 0;
    overflow: visible;
    padding: 7px;
    position: relative;
    transition: all .3s ease;
}
.plyr__control svg {
    display: inline;
    fill: currentColor;
    height: 18px;
    pointer-events: none;
    width: 18px;
    fill: #9966CC;
}
.plyr__sr-only {
    clip: rect(1px,1px,1px,1px);
    overflow: hidden;
    border: 0!important;
    height: 1px!important;
    padding: 0!important;
    position: absolute!important;
    width: 1px!important;
}
.plyr__time {
    font-size: 14px;
}
.plyr__progress {
    display: flex;
    flex: 1;
    left: 7px;
    margin-right: 14px;
    position: relative;
}
.plyr--full-ui input[type=range] {
    -webkit-appearance: none;
    background: 0 0;
    border: 0;
    border-radius: 28px;
    color: #1aafff;
    display: block;
    height: 20px;
    margin: 0;
    padding: 0;
    transition: box-shadow .3s ease;
    width: 100%;
}
.plyr__progress input[type=range], .plyr__progress__buffer {
    margin-left: -7px;
    margin-right: -7px;
    width: calc(100% + 14px);
}
input[type=range]::-webkit-slider-runnable-track {
    background: #233a5d;
    height: 8px;
}
input[type=range]::-webkit-slider-thumb {        
    margin-top: -6px;
    cursor: pointer;
}

.plyr__progress__buffer {
    -webkit-appearance: none;
    background: 0 0;
    border: 0;
    border-radius: 100px;
    height: 6px;
    left: 0;
    margin-top: -3px;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 0;
}
.plyr__volume {
    max-width: 80px;
}
.plyr__tooltip {
    background: rgba(255,255,255,.9);
    border-radius: 3px;
    bottom: 100%;
    box-shadow: 0 1px 2px rgba(0,0,0,.15);
    color: #4f5b5f;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 10px;
    opacity: 0;
    padding: 5px 7.5px;
    pointer-events: none;
    position: absolute;
    transform: translate(-50%,10px) scale(.8);
    transform-origin: 50% 100%;
    transition: transform .2s .1s ease,opacity .2s .1s ease;
    white-space: nowrap;
    z-index: 2;
}
.play #plyr-play, #plyr-pause, #plyr-muted {
    display: none;
}
.play #plyr-pause {
    display: inline;
}
.play-list{
    float: left;
    width: 100%;
    margin: 10px 0;
    padding: 20px;
    box-shadow: 0px 0px 2px #0000001f;
}
.play-list ul{
    margin: 10px 0; 
    padding: 0 !important;
}
.play-list ul li{
    list-style: none;
    display: inline-block;
    margin: 0 5px 5px 0;
    text-align: center;
    width: 16%;
}
.play-list li a {
    display: inline-block;
    margin: 0px 5px;
}

.play-list li img {
    display: block; background-color: #9b65b2
}
.play-list li a.active img{
    background-color: #233a5d
}
.play-list li span {
    display: block;
}

.lastweek{
    margin-bottom: 30px;
}