#top100_podcast_player_container {
    margin: 25px auto 8px;
    max-width: 1024px;
}

#top100_podcast_player_container audio {
    display: none;
}

#top100_podcast_player_container .player {
    background-color: #CCCCCC;
    border-radius: 50px;
    position: relative;
    z-index: 3;
}

#top100_podcast_player_container .player:after {
    clear: both;
    content: '';
    display: block;
}

#top100_podcast_player_container .player .podcast_controls {
    display: block;
    float: left;
}

#top100_podcast_player_container .player .toggle-play,
#top100_podcast_player_container .player .podcast_toggle-mute {
    background-color: transparent;
    border: none;
}

#top100_podcast_player_container .player .podcast_toggle-mute {
    padding-top: 18px;
    padding-right: 24px;
}

#top100_podcast_player_container .player .play {
    opacity: 1;
}

#top100_podcast_player_container .player .stop {
    opacity: 0;
}

#top100_podcast_player_container .player.playing .play {
    opacity: 0;
}

#top100_podcast_player_container .player.playing .stop {
    opacity: 1;
}

#top100_podcast_player_container .player .progress_bar {
    display: inline-block;
    margin-top: 24px;
    width: calc(100% - 158px);
}

#top100_podcast_player_container .player .sound {
    display: block;
    float: right;
    position: relative;
}

#top100_podcast_player_container .player .podcast_toggle-mute .podcast-volume-control {
    opacity: 0;
    transform: scaleY(0);
    transition: transform .2s;
    position: absolute;
    bottom: 75%;
    left: 42%;
    width: 14px;
    height: 100px;
    margin-left: -7px;
    background: white;
    border: 1px solid #ddd;
}

#top100_podcast_player_container .player .podcast_toggle-mute .podcast-volume-control .podcast-volume {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0px;
    background: #01d7b2;
    transition: height .1s;
}

#top100_podcast_player_container .player .podcast_toggle-mute:hover .podcast-volume-control {
    transform: scaleY(1);
    opacity: 1;
}

#top100_podcast_player_container .player .sound .cls-1 {
    fill: #01d7b2;
}

#top100_podcast_player_container .player .sound .cls-2 {
    fill: #fff;
}

#top100_podcast_player_container .player .sound .cls-3 {
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-width: 3px;
}

#top100_podcast_player_container ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#top100_podcast_player_container ul li {
    padding: 20px 0;
}

#top100_podcast_player_container li.active .play {
    display: none;
}

#top100_podcast_player_container li:not(.active) .playing {
    display: none;
}

#top100_podcast_player_container li.active ul.tracks li {
    cursor: pointer;
    display: block;
    opacity: 1;
    transition: all .3s ease-in-out;
}

#top100_podcast_player_container ul.tracks li {
    display: none;
    opacity: 0;
    transition: all 2s ease-in-out;
}

#top100_podcast_player_container ul li svg {
    margin-right: 5px;
    margin-top: 2px;
}

#top100_podcast_player_container .album_wrapper {
    width: 100%;
    background-color: #f2f2f2;
    margin-top: -35px;
    padding: 50px 30px 15px;
}

#top100_podcast_player_container .album > li:not(:last-child) {
    border-bottom: 2px solid #CCCCCC;
}

#top100_podcast_player_container .album > li > span {
    cursor: pointer;
    position: relative;
}

/*#top100_podcast_player_container .album > li > span:before {
    border-left: 10px solid #01d7b2;
    border-top: 7px solid #f2f2f2;
    border-bottom: 7px solid #f2f2f2;
    content: '';
    left: -5px;
    position: absolute;
    top: 3px;
}*/

/*#top100_podcast_player_container .album > li.active > span:before {
    border-left: 7px solid #f2f2f2;
    border-right: 7px solid #f2f2f2;
    border-bottom: 10px solid #01d7b2;
    border-top: none;
    content: '';
    left: -5px;
    position: absolute;
    top: 3px;
}*/

#top100_podcast_player_container .tracks li {
    padding-left: 30px;
    transition: all .3s ease-in-out;
}

#top100_podcast_player_container .tracks li.active {
    background-color: rgb(1, 215, 178);
    color: #fff;
}

#top100_podcast_player_container .podcasts:after {
    clear: both;
    content: '';
    display: block;
    width: 100%;
}

#top100_podcast_player_container .time {
    float: left;
    width: 130px;
}

#timeline{
    width: calc(100% - 130px);
    height: 20px;
    background: #f2f2f2;
    float: right;
    border-radius: 15px;
}

#playhead{
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-top: 1px;
    background: rgb(1, 215, 178);
}