.player-container {
    width: 238px;
    height: 43px;
    background-color: #F0F0F0;
    background-image: linear-gradient(to bottom,#f7f7f7 60%, #e5e5e5 60.1%, #fefefe 100%);
    border: 1px solid #b2b2b2;
    font-family: Arial, sans-serif;
    position: relative;

    display: block;

    image-rendering: pixelated;
}
@media screen and (max-width: 768px) {
    .player-container {
        margin-left: 10px;
    }
    
}
.controls {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.control-btn {
    background: none;
    border: none;
    cursor: pointer;
}
.stop{
    margin-top: 3px;
}

.play-icon:active, .pause-icon:active, .mute-icon:active, .unmute-icon:active, .stop.control-btn img:active {
    filter: brightness(0.8);
}

.track-time {
    font-size: 8pt;
    color: #72a4d4;
    margin-left: auto;
    margin-right: 5px;
    /*overflow the text instead of wrapping it*/
    white-space: nowrap;
}
.mute-unmute{
    margin-top: 0px;
}
.volume-control {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 0px;
}

.volume-slider {
    -webkit-appearance: none;
    width: 66px;
}

.progress-container {
    width: 100%;
    margin-bottom: -2px;
    margin-top: -4px;
}

.progress-bar {
    width: 98%;
}
input[type="range"] {
    -webkit-appearance: none !important; 
    background-color: transparent;
    height: 4px;
    outline: none;
    cursor: pointer;
    border-radius: 2px;
    background-image: 
        linear-gradient(to right, #a2a1a3ff 0px, #a2a1a300 2px, #a2a1a300 calc(100% - 2px), #a2a1a3ff 100%),
        linear-gradient(to bottom, #b2b2b2, #f3f3f3, #e5e5e5, #bbbbbc);
}

.progress-bar::-moz-range-thumb {
    background-color: transparent;
    border: none;
    width: 0px;
    height: 0px;
}

/*firefox progress bar thumb*/
.progress-container:hover .progress-bar::-moz-range-thumb {
    background-color: transparent;
    border: none;
    background-image: url("./gfx/progressbar-handle-border.png");
    width: 18px;
    height: 11px;
    margin-left: -1px;
}

/*chromium progress bar thumb*/
.progress-bar::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    background-color: transparent;
    border: none;
    background-image: url("./gfx/progressbar-handle-border.png");
    width: 18px;
    height: 11px;
    margin-left: -1px;
}



/*firefox volume slider thumb*/
.volume-slider::-moz-range-thumb {
    background-color: transparent;
    border: none;
    background-image: url("./gfx/volume-handle-border.png") !important;
    width: 12px;
    height: 12px;
    margin-left: -1px;
}

/*chromium volume slider thumb*/
.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    background-color: transparent;
    border: none;
    background-image: url("./gfx/volume-handle-border.png") !important;
    width: 12px;
    height: 12px;
    margin-left: -1px;
}


/*firefox slider gradient*/
input[type="range"]::-moz-range-progress{
    height: 3px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    /*background: linear-gradient(to bottom, #1a1a1b, #7fc9fa, #014cb6, #619ff2);  /* Top to bottom gradient */
    background: linear-gradient(to bottom, 
    #7fc9fa 0%, #7fc9fa 33%,
    #014cb6 33.1%, #014cb6 67%,
    #619ff2 67.1%, #619ff2 100%);  /* Top to bottom gradient */
}

/* volume slider gradient Firefox*/
.volume-slider::-moz-range-progress{
    height: 4px;
    background: linear-gradient(to bottom, 
    #a2a1a3 0%, #a2a1a3 25%,
    #84c5ff 25.01%, #84c5ff 50%,
    #0f41cd 50.01%, #0f41cd 75%,
    #6e96ff 75.01%, #6e96ff 100%);  /* Top to bottom gradient */
}