
.mContainer{
    position: fixed;
    bottom: 10px;
    left:5px;
    z-index: 9999;
    right:5px;
    width:100%;

}

.mediPlayer svg {
    z-index: 999;
    width: 60px;
    flex-shrink: 0;
}
.mediPlayer {
    display: flex;
    width:calc(100% - 10px);
    align-items: center;

    /*
   
   width: calc(100% - 20px);  10px margines z każdej strony 
   margin: 0 10px;
   gap: 10px;  odstęp między elementami */


}
.mediPlayer .time-display{
    width: calc(100% - 60px);
    margin-left:-60px;
   
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px;  
         padding-left:70px;
        background-color: rgba(137, 88, 129, 0.9);
        border-radius: 30px;
        height: 60px;
        gap: 10px;
        color:#fff;
        opacity: 0;
        transform: translateX(-20px);  
        animation: fadeRight 0.5s forwards;  
}



.mediPlayer .time-display input {
    width:90%;
}
.mediPlayer .control {
    opacity        : 0; /* transition: opacity .2s linear; */
    pointer-events : none;
    cursor         : pointer;

}

.mediPlayer .not-started .play, .mediPlayer .paused .play {
    opacity : 1;

}

.mediPlayer .playing .pause {
    opacity : 1;

}

.mediPlayer .playing .play {
    opacity : 0;
}

.mediPlayer .ended .stop {
    opacity        : 1;
    pointer-events : none;
}

.mediPlayer .precache-bar .done {
    opacity : 1;
}

.mediPlayer .not-started .progress-bar, .mediPlayer .ended .progress-bar {
    display : none;
}

.mediPlayer .ended .progress-track {
    stroke-opacity : 1;
}

.mediPlayer .progress-bar,
.mediPlayer .precache-bar {
    transition        : stroke-dashoffset 500ms;

    /*    stroke-dasharray  : 298.1371428256714;
        stroke-dashoffset : 298.1371428256714;*/
    stroke: rgb(137, 88, 129);
}
.control.play polygon  {
    fill: #fff; /* dowolny kolor */
}
.playable circle,.playing circle {
    fill:rgb(137, 88, 129);
}

.control.pause line {
    stroke: #fff;
}

.mediPlayer {

    .controls {
        cursor:pointer;
        height:56px;
    }

    input[type="range"] {
        -webkit-appearance: none; /* usuwa domyślny styl */
        width: 90%;
        height: 6px;
        background: #ddd;
        border-radius: 3px;
        outline: none;
    }
    /* Pasek (track) */
    input[type="range"]::-webkit-slider-runnable-track {
        height: 6px;
        background: #ddd;
        border-radius: 3px;
    }

    /* Uchwyt (thumb) */
    input[type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 18px;
        height: 18px;
        background: #fff;
        border: 2px solid #fff;
        border-radius: 50%;
        cursor: pointer;
        margin-top: -6px; /* wyrównanie do środka paska */
    }
    input[type="range"]::-moz-range-thumb {
        width: 18px;
        height: 18px;
        background: #fff;
        border: 2px solid #009EF8;
        border-radius: 50%;
        cursor: pointer;
    }
    input[type="range"]::-ms-thumb {
        width: 18px;
        height: 18px;
        background: #fff;
        border: 2px solid #009EF8;
        border-radius: 50%;
        cursor: pointer;
    }
}


@media only screen and (max-width: 660px) {
    
}

@keyframes fadeRight {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}