.audio-player-fixed {
    position: fixed;
    bottom: -120px; /* скрыт изначально */
    left: 0;
    width: 100%;
    background: rgb(26 26 26);
    color: #fff;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    transition: bottom 0.4s ease;
    z-index: 9999;
}

.audio-player-fixed.active {
    bottom: 0; /* показываем */
}

.audio-player-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 90%;
    max-width: 700px;
}

.audio-player-fixed audio {
    width: 100%;
}

.audio-player-fixed .close-audio-player {
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    color: #fff;
    transition: transform 0.2s;
}

.audio-player-fixed .close-audio-player:hover {
    transform: rotate(90deg);
}
.fa-fw {
    font-family: fontawesome;
}
.open-audio-player {
    background: rgb(255 255 255 / 70%);
    border: 1px solid #e5e5e5;
    border-radius: 50px;
    padding: 5px 7px;
    display: flex;
    align-items: center;
    width: 122px;
}
.open-audio-player i {
    background: var(--color-content-primary);
    color: #fff;
    padding: 0.5rem;
    font-weight: 300;
    width: 40px;
    min-width: 40px;
    height: 40px;
    line-height: 1.5;
    border-radius: 20px;
}
.txt_audio {
    font-size: 12px;
    line-height: 1.2;
    max-width: 80px;
    font-weight: 600;
    text-align: left; 
    display: block;
}
@media (max-width:600px) {
.open-audio-player i {
    background: var(--color-content-primary);
    width: 30px;
    min-width: 30px;
    height: 30px;
    line-height: 1.2;
    font-size: 14px;
}
}

















