:root {
    --podcasts-color: #CD3852;
}
.podcasts__content {
    max-width: 1280px;
    margin: auto;
}
@media screen and (max-width: 1305px) {
    .podcasts__content {
        max-width: 100%;
        padding: 0 15px;
    }
}
.podcasts__list {
    padding: 0 16px;
    margin: 0;
    margin-bottom: 20px;

    list-style: none;
}
.podcast-player button:disabled {
    opacity: 0.5;
    cursor: default;
}
.podcast {
    display: grid;
    grid-template-columns: 85px auto 215px;
    grid-gap: 16px;

    padding-bottom: 22px;
    border-bottom: 1px solid #D9D9D9;
}
@media screen and (max-width: 886px) {
    .podcast {
        grid-template-columns: max-content auto;
        row-gap: 30px;
        padding-bottom: 10px;
    }
}
@media screen and (max-width: 481px) {
    .podcast {
        display: block;
    }
    .podcast__logo_contianer {
        float: left;

        margin-right: 11px;
        margin-bottom: 8px;
    }
}

.podcast:last-child {
    border: none;
}

.podcast + .podcast {
    margin-top: 23px;
}
.podcast__logo {
    width: 100%;
    height: auto;
}
.podcast__header {
    margin: 0;
    margin-bottom: 4px;

    font-family: "Montserrat-Regular", sans-serif;
    font-size: 20px;
    line-height: 1.25;
    color: var(--podcasts-color);
}
@media (max-width: 575px) {
    .podcast__header {
        margin-bottom: 8px;

        font-size: 14px;
    }
}
.podcast__header_second {
    margin: 0 0 6px;

    font-family: "Montserrat-Regular", sans-serif;
    font-size: 16px;
    line-height: 19px;
    color: #8A8A8A;
}
.podcast__paragraph {
    margin: 0;

    font-family: "Montserrat-Regular", sans-serif;
    font-size: 16px;
    line-height: 19px;
}
@media (max-width: 575px) {
    .podcast__paragraph,
    .podcast__header_second {
        margin-bottom: 8px;

        font-size: 12px;
        line-height: 14px;
    }
}
.podcast__paragraph_type_duration {
    margin-bottom: 0;

    color: rgba(0, 0, 0, 0.40);
}
@media screen and (max-width: 420px) {
    .podcast__paragraph {
        text-align: justify;
    }
}
.podcast__duration_container,
.podcast__manipulation_container {
    display: flex;
    align-items: center;
}
.podcast__button {
    width: 45px;
    height: 45px;
    padding: 0;
    border: 0;
    
    background: #82379E url(/design/images/new_romantika_images/img_for_design/new2021/svg/pause.svg) no-repeat 50% 50% /14px;
    border-radius: 50%;
    cursor: pointer;
}
.podcast__button:hover {
    background-color: #a043c2;
}
.podcast__button:focus {
    outline: none;
}
.podcast__button:active {
    background-color: #652a7a;
}
.podcast__button.play {
    background-image: url(/design/images/new_romantika_images/img_for_design/new2021/svg/play.svg);
    background-position-x: 55%;
}
.podcast__play-icon {
    pointer-events: none;
}
.podcast__share_init-button {
    padding: 0;
    border: 0;
    background: transparent;
}
.init-button__img {
    opacity: .5;
}
.podcast__manipulation {
    display: grid;
    grid-template-columns: max-content 35px auto;
    column-gap: 38px;
    align-items: center;
}
@media screen and (max-width: 886px) {
    .podcast__manipulation {
        grid-area: 2/2/3/3;
    }
}
@media screen and (max-width: 575px) {
    .podcast__manipulation {
        justify-content: center;

        width: 100%;
        margin-top: 10px;
    }
}
.podcast__manipulation_container {
    padding-left: 26px;
}
.podcast__manipulation_share-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.podcast__manipulation_share-container .social-share {
    position: absolute;
    left: 50%;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    width: 140px;
    height: 45px;
    padding: 0 10px;
    
    background-color: #FAEEFF;
    border-radius: calc(45px / 2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translate3d(-50%, -80%, 0);
}
.podcast__manipulation_share-container .social-share.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity .3s linear;
}
.podcast__manipulation_share-container .share {
    justify-content: center;

    padding: 0;
    margin: 0 !important;
    border: 0;

    background: transparent;
}
.podcast__manipulation_share-container .share__img {
    border-radius: 50%;
}