.podcast-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.podcast-block .podcast-controls .podcast-play-btn{
    margin-left: auto;
    position: relative;
    background: none;
    outline: none;
    cursor: pointer;
}

.podcast-block .podcast-controls .podcast-play-btn:before, .podcast-block .podcast-controls .podcast-play-btn:after {
    content: "";
    display: block;
    position: absolute;
    top: 6px;
    transition: all 0.2s linear;
}


.podcast-block .podcast-controls .podcast-play-btn[data-state="play"]:before {
    left: 7px;
    border: 3.5px solid transparent;
    border-left: 6px solid white;
}
.podcast-block .podcast-controls .podcast-play-btn[data-state="play"]:after {
    left: 4px;
    border: 1px solid white;
    border-top: 6px solid white;
    opacity: 0;
}

.podcast-block .podcast-controls .podcast-play-btn[data-state="pause"]:before {
    border: 1px solid white;
    border-top: 6px solid white;
    left: 10px;
}
.podcast-block .podcast-controls .podcast-play-btn[data-state="pause"]:after {
    border: 1px solid white;
    border-top: 6px solid white;
    opacity: 1;
    left: 7px;
}

.podcast-block .progress {
    cursor: pointer;
    width: 100%;
    height: 6px;
}
.podcast-block progress[value] {
    display: block;
    appearance: none;
    border: none;
    width: 100%;
    height: 100%;
    background-color: #f4f4f4;
    box-shadow: 0 1px 2px rgba(0,0,0,.2) inset;
    position: relative;
}
.podcast-block progress[value]::-webkit-progress-bar {
    background-color: #f4f4f4;
    box-shadow: 0 1px 2px rgba(0,0,0,.2) inset;
}
.podcast-block progress[value]::-webkit-progress-value {
    background: #fc6723;
}
.podcast-block progress[value]::-moz-progress-bar {
    background: #fc6723;
}