.podcast--container {
    max-width: 800px;
    margin-inline: auto;
    padding-inline: 24px
}

@media screen and (min-width: 848px) {
    .podcast--container {
        padding-inline: 0
    }
}

.podcast .audio-player {
    padding: 32px 40px;
    background: #101537;
    border-radius: 50px;
    color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 32px
}

.podcast .audio-player audio {
    display: none
}

.podcast .audio-player .play-pause {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 18px;
    width: 18px;
    -webkit-mask: url("../images/icon-play.svg") no-repeat center;
    mask: url("../images/icon-play.svg") no-repeat center;
    background: white;
    cursor: pointer
}

.podcast .audio-player .play-pause.paused {
    -webkit-mask: url("../images/icon-pause.svg") no-repeat center;
    mask: url("../images/icon-pause.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain
}

.podcast .audio-player .progress-container {
    width: 100%;
    height: 8px;
    background: #000;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    max-width: 42%
}

.podcast .audio-player .progress-container .progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #CB05ED 0%, #693CFF 53.13%, #44B0FF 100%);
    transition: width 0.1s linear
}

.podcast .audio-player .sound-container {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: auto
}

.podcast .audio-player .sound-container .sound {
    cursor: pointer;
    height: 18px;
    width: 18px;
    -webkit-mask: url("../images/icon-sound.svg") no-repeat center;
    mask: url("../images/icon-sound.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: white
}

.podcast .audio-player .sound-container .toggle-sound {
    display: none;
    position: absolute;
    padding: 16px;
    background: #101537;
    right: 0;
    top: calc(100% + 46px);
    transform: translateX(40px);
    border-radius: 32px
}

.podcast .audio-player .sound-container .toggle-sound.open {
    display: flex;
}

.podcast .audio-player .sound-container input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: #6C39FE;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transform: translateY(-4px);
}

.podcast .audio-player .sound-container input::-moz-range-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    top: -4px;
    background: #6C39FE;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

.podcast .audio-player .sound-container input::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    background: white;
}

.podcast .audio-player .sound-container input::-moz-range-track {
    background: white;
    width: 100%;
    height: 4px;
}

.podcast .audio-player .sound-container .audio-time span {
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.8px
}