.audio-widget {
    direction: ltr;
    display: flex;
    flex-direction: column;
}

.audio-controls {
    background-color: #404040;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 433px;
    height: 120px;
    padding: 0 12px;
    gap: 20px;
}

.audio-play-pause {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.audio-current-time,
.audio-full-time {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #fff;
}

.audio-progress-container {
    position: relative;
    height: 70px;
    width: 100%;
    cursor: pointer;
}

.audio-progress-container img {
    position: absolute;
    object-fit: fill;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.audio-progress-full-img {
    transition: width 0.2s, ease-in-out;
    object-fit: cover;
    clip-path: inset(100% 100% 100% 100%);
}

.audio-widget-subtitles-wrap {
    width: 433px;
    min-height: 134.4px;
    display: flex;
    flex-direction: column;
    /*gap: 4px;*/
}

.audio-widget-subtitles-wrap p{
    background-color: #000000;
    padding: 4px 7px;
}

.current-subtitle {
    font-family: 'SimplePro-H', sans-serif;
    font-size: 18px;
    letter-spacing: 0;
    text-align: center;
    color: #fff;
    position: relative;
    direction: rtl;
}

.ltr .current-subtitle {
    direction: ltr;
}

.circle-media__credit {
    font-size: 12px;
    display: block;
    margin: 6px 4px 0 0;
}

/* Mobile */
@media (max-width: 768px){
    .audio-controls{
        width: 100%;
        height: 100px;
        gap: 10px;
    }
    .audio-controls .audio-current-time{
        width: 35px;
        font-size: 12px;
    }
    .audio-controls .audio-full-time{
        width: 23px;
        font-size: 12px;
    }
    .audio-widget-subtitles-wrap{
        width: 100%;
        min-height: 84.8px;
    }
}