.wrap-media {
    color: #000;
    max-width: 576px;
}

.wrap-media .card-audio {
    background-color: rgba(255,255,255,.5);
}

.wrap-media a.mp-link { color: #000;}
.wrap-media a:hover.mp-link { color: #fff;}

.wrap-media audio {
    width: 100%;
    margin: 0px auto;
}

.wrap-media audio.bar_audio {
    background-color: #1d70b6;
    background-color: #000;
}

/* ////// My Player ///////// */

.player-card {
    background: rgba(255,255,255,.8);
    background-color: #1d70b6;

    /* macht Animation */
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out; 
}
.player-card .player-cover {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 21/9;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.player-card .player-cover img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    height: auto;
    
    z-index: 1;
}

.player-card .player-cover div.area {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}
.player-card .player-cover i#btnplayer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 8rem;
    width: 8rem;

    cursor: pointer;
    color: #000;
    font-size: 5rem;
    padding: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,.2);
}
.player-card .player-cover i#btnplayer:hover {
    color: #FFF;
    background-color: rgba(0,0,0,.4);
}

/* */
.player-card .player-card-body {
    background-color: #000;
}

.player-card .player-card-body audio.hide {
    display: none; 
}

.player-card .list-group {
    border-top: 5px solid transparent;
}
@media (min-width: 992px) { 
    .player-card .list-group {
        max-height: 50vh;
        overflow: auto;
        padding-right: .4rem;
    }
/* https://codepen.io/stephenpaton-tech/full/JjRvGmY */
    /* Firefox */
    .player-card .list-group {
    scrollbar-width: auto;
    scrollbar-color: rgba(43,189,119,.8) #ffffff;
    }
    /* Chrome, Edge, and Safari */
    .player-card .list-group::-webkit-scrollbar {
    width: 16px;
    }
    .player-card .list-group::-webkit-scrollbar-track {
    background: #ffffff;
    }
    .player-card .list-group::-webkit-scrollbar-thumb {
    background-color: rgba(43,189,119,.8);
    border-radius: 10px;
    border: 3px solid #ffffff;
    }

}

.player-card .list-group-item, 
.player-card .list-group-item.active {
    margin: 2px auto;
    border-color: transparent;
    border-left: 5px solid #FFF;
}
.player-card .list-group-item.active {
    background-color: #1c9cd4;
    background-color: #1d70b6;
    border-left: 5px solid #000;
}
.player-card .list-group-item.active {
    box-shadow: inset 0 0 1.4rem rgba(255,255,255, .2);
}

/* piss off - do same */
.player-card, 
.player-card .player-cover, 
.player-card .list-group-item.active {
    background: #de001f;
    background: rgba(28,156,212,.8); /* Basis: #1d70b6 */
    background: rgba(29,112,182,.2); /* dark Basis: #1d70b6 */
    background: rgba(0,0,0,.5);
    background: rgba(235, 68, 68, 0.5);
    background: rgba(127,228,98,.8); /* green: #7fe462 */
    background: rgba(43,189,119,.8); /* green: #2bbd77 */
    
}

/* ////// icon Bar svg animiert // https://codepen.io/rbetti/pen/POvOdx ////// */
#equalizer {
    position: relative;
    visibility:hidden;
    background: transparent;
    height: 20px;
}
/*  click hide / show */
small.playbar.hide #equalizer {
    visibility:hidden;
}
small.playbar.show #equalizer { 
    visibility: visible; 
} 
/* nur wenn umschliessender Tag.class .anim dann optisch animiert */  
.anim #bar1 {
animation: bar1 1.2s infinite linear;
}
.anim #bar2 {
animation: bar2 0.8s infinite linear;
}
.anim #bar3 {
animation: bar3 1s infinite linear;
}
.anim #bar4 {
animation: bar4 0.7s infinite linear;
}

@keyframes bar1 {
0% {
    height: 2px;
}
50% {
    height: 7px;
}
100% {
    height: 2px;
}
}

@keyframes bar2 {
0% {
    height: 5px;
}
40% {
    height: 1px;
}
80% {
    height: 7px;
}
100% {
    height: 5px;
}
}

@keyframes bar3 {
0% {
    height: 7px;
}
50% {
    height: 0;
}
100% {
    height: 7px;
}
}

@keyframes bar4 {
0% {
    height: 2px;
}
50% {
    height: 7px;
}
100% {
    height: 2px;
}
}
/* bar END */

