.each_podcast_activator {
    cursor: pointer;
}

.podcast_player_container {
    max-width: var(--site-content-width, 1200px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.volume_icon .icon_box {
    margin: 0;
    position: absolute;
    opacity: 0;
    transition: all 0.5s ease;
}

.volume_icon .icon_box.active {
    opacity: 1;
}

.podcast_player_container .icon_box {
    margin: 0;
}

.podcast_control_section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #B6B6B6;
    margin-bottom: 20px;
}

.podcast_audio_control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
}

.podcast_btn.podcast_play_pause {
    font-size: 33px;
    position: relative;
    width: 35px;
    height: 35px;
    line-height: 25px;
    text-align: center;
}

.podcast_btn.podcast_play_pause i {
    position: absolute;
    transition: all 0.5s ease;
    transform: scale(0);
    color: var(--color-content-primary);
}

.podcast_btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.podcast_btn.podcast_play_pause.paused i.fas.fa-play {
    transform: scale(1);
}

.podcast_btn.podcast_play_pause.played i.fas.fa-pause {
    transform: scale(1);
}

.podcast_speed_control {
    display: flex;
    line-height: 17px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 4px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-20px);
}

.podcast_speed_control div {
    font-size: 25px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.04em;
    transition: all 0.5s ease;
    text-align: right;
    font-family: pelak-en;
    width: 0;
    overflow: hidden;
    margin-left: 0;
    text-align: center;
    cursor: pointer;
}

.podcast_speed_control.opened .speed_icon {
    width: 44px;
    margin-left: 2px;
}

.podcast_speed_control div.active {
    width: 44px;
    margin-left: 2px;
}

.podcast_footer {
    display: flex;
    gap: 15px;
}

canvas.podcast_waveform {
    width: 100%;
    height: 200px;
    position: absolute;
    z-index: 1;
    top: -90px;
    pointer-events: none;
}

.podcast_timeline {
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.podcast_timeline_bg {
    width: 100%;
    height: 5px;
    background: #dbdbdb;
    border-radius: 6px;
    position: relative;
    z-index: 2;
}

.podcast_timeline_elapsed {
    position: absolute;
    left: 0;
    width: 0;
    border-radius: 5px;
    height: 5px;
    background: var(--color-content-primary);
    z-index: 3;
}

.podcast_time_pointer {
    min-width: 50px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: #b6b6b6;
}

.podcast_time_pointer.remaining_time {
    right: 0;
    cursor: pointer;
}

.podcast_pointer_dot {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 4px 1px #0000004d;
    transition: all 0.2s ease;
    border: solid #fff 2px;
}

.podcast_timeline_pointer {
    position: absolute;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    z-index: 12;
    transform: translate(-10px);
    cursor: pointer;
}

.podcast_timeline_pointer:hover div {
    transform: scale(1.5);
    background: var(--color-content-primary);
}

.podcast_player_wrapper.active {
    transform: translateY(0);
}

.podcast_duration_field {
    display: flex;
    align-items: center;
    gap: 5px;
}

.icon_box.podcast_duration_icon {
    width: 17px;
    height: 17px;
    margin: 0;
}

.podcast_volume_control {
    position: absolute;
    left: 0;
}

@media (max-width: 600px) {
    .podcast_player_container {
        flex-direction: column;
        justify-content: space-between;
        padding-bottom: 30px;
    }

    .podcast_player_wrapper {
        height: 130px;
    }

    .podcast_timeline {
        width: 100%;
        flex-grow: 0;
    }
}