.player-wrapper {
    width: 50px;
    max-width: 80%;
}

.player-wrapper .label {
    display: inline-block;
    font-size: 16px;
    padding-right: 10px;
}

.player-wrapper .control-panel {
    display: inline-block;
    width: 350px;
    max-width: calc(80% - 100px);
}

.plyr--audio .plyr__controls {
    width: 50px;
    transform: scale(0.6) translate(100px,-65px);
    padding: 0;
    height: 50px;
    border-radius: 25px;
    background-color: #d6dee6;
}

.plyr--audio .plyr__control {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #38a9f6;
    transition: all 0.4s ease;
}
.plyr--audio .plyr__control:hover {
    transform: scale(1.05);
}
.plyr--audio .plyr__control svg {
    margin: auto;
    fill: #fff;
}

.plyr--audio .plyr__progress {
    display: none;
    left: 0;
    margin: 0 24px;
}

.plyr--full-ui input[type=range]::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
    opacity: 0;
    transition: all 0.2s ease;
    transform: scale(0);
}

.plyr--full-ui input[type=range] {
    color: #fff;
}
.plyr--full-ui input[type=range]:hover {
    cursor: pointer;
}
.plyr--full-ui input[type=range]:hover::-webkit-slider-thumb {
    opacity: 1;
    transform: scale(1);
}

.plyr--full-ui input[type=range]::-webkit-slider-runnable-track {
    height: 8px;
}

.plyr--audio .plyr__progress__buffer {
    color: rgba(255, 255, 255, 0.4);
}
