/* сетка со ссылками на подкасты */
.podcast-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px 16px;

    margin-bottom: 56px;
}
@media (max-width: 767px) {
    .podcast-nav {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 16px;
        
        margin-bottom: 30px;
    }
}
@media (max-width: 575px) {
    .podcast-nav {
        grid-template-columns: repeat(2, 1fr);
        padding-inline: 1rem;
    }
}
.podcast-link {
    text-align: center;
}
.podcast-link__cover-wrap {
    display: block;
    
    margin-bottom: 14px;
}
.podcast-link__cover {
    display: block;
    
    width: 100%;
    height: auto;
}
.podcast-link__title {
    font-family: "Montserrat-Regular", sans-serif;
    font-size: 20px;
    line-height: 1em;
    font-weight: 500;
    text-decoration: none;
    color: rgba(0, 0, 0, .8);
}
.podcast-link__title:hover,
.podcast-link__title:focus {
    text-decoration: none;
    color: #82379E;
}
.podcast-link__title:active {
    color: #000;
}
.podcast-link__episodes {
    margin-top: 7px;

    font-family: "Montserrat-Regular", sans-serif;
    font-size: 16px;
    line-height: 1em;
    color: rgba(0, 0, 0, 0.40);
}

/* детальная страница подкаста */
.podcast-info {
    display: flex;

    max-width: 1000px;
    margin-bottom: 64px;
}
.podcast-info__img {
    align-self: flex-start;

    width: 290px;
    height: auto;
    margin-right: 15px;
}
.podcast-info__inner {
    flex-grow: 1;
    padding: 15px 20px;
}
.podcast-info__title {
    margin: 0;
    margin-bottom: 16px;

    font-family: "Montserrat-Regular", sans-serif;
    font-size: 32px;
    line-height: 1em;
    color: rgba(0, 0, 0, 0.80);
}
.podcast-info__desc {
    padding-bottom: 32px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 32px;

    font-family: "Montserrat-Regular", sans-serif;
    font-size: 16px;
    line-height: 1em;
    color: rgba(0, 0, 0, 0.60);
}
.podcast-info__desc p:last-child {
    margin: 0;
}
.podcast-info__controls {
    display: flex;
    justify-content: space-between;

    width: 100%;
    max-width: 458px;
}
.podcast-info__btn {
    flex-basis: 221px;
    padding: 0;
    border: 0;

    font-family: "Montserrat-Regular", sans-serif;
    font-size: 20px;
    line-height: 50px;
    color: #FAEEFF;

    background-color: #82379E;
    border-radius: 25px;
}
.podcast-info__btn:hover,
.podcast-info__btn:focus {
    background-color: #9b42bb;
    outline: none;
}
.podcast-info__btn:active {
    background-color: #8839a5;
}
.podcast-info__btn_bg_light {
    color: #82379E;

    background-color: #FAEEFF;
}
.podcast-info__btn_bg_light:hover,
.podcast-info__btn_bg_light:focus {
    background-color: #fbf1ff;
}
.podcast-info__btn_bg_light:active {
    background-color: #f4e0fd;
}
.podcast-info__controls .podcast__share-container {
    flex-basis: 221px;
}
.podcast-info__controls .podcast__share_init-button {
    z-index: 2;
}
.podcast-info__controls .podcast__manipulation_share-container .social-share {
    left: 100%;
    z-index: 1;
    
    width: 170px;
    height: 100%;
    padding-left: 55px;
    border: 1px solid rgba(131, 55, 158, 0.5);
    
    background: #fff;
    border-radius: 25px;
    
    transform: translate(-45px, 0);
}
@media (max-width: 1024px) {
    .podcast-info__img {
        width: 237px;
    }
    .podcast-info__title {
        font-size: 24px;
    }
}
@media (max-width: 991px) {
    .podcast-info__controls .podcast__manipulation_share-container .social-share {
        left: 50%;
        z-index: 2;
        
        width: 160px;
        height: 45px;
        padding-left: 10px;

        border-radius: calc(45px / 2);

        transform: translate(-50%, -80%);
    }
}
@media (max-width: 767px) {
    .podcast-info {
        flex-wrap: wrap;
        
        margin-bottom: 36px;
    }
    .podcast-info__img {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        margin-bottom: 24px;
    }
    .podcast-info__inner {
        flex-basis: 100%;
        max-width: 100%;
        padding: 0 16px;
    }
    .podcast-info__desc {
        padding-bottom: 16px;
        margin-bottom: 16px;
    }
    .podcast-info__controls {
        max-width: 345px;
        margin: 0 auto;
    }
    .podcast-info__btn {
        flex-basis: 165px;
        
        font-size: 16px;
        line-height: 38px;
    }
    .podcast-info__controls .podcast__share-container {
        flex-basis: 165px;
    }
    .podcast-info__controls .podcast__manipulation_share-container .social-share {
        width: 140px;
        height: 40px;
        border-radius: 20px;

        transform: translate(-50%, -100%);
    }
}

.header__content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.podcast__cover {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.podcast__container .promotion__horizontal-section {
    margin: 30px 0;
}
.podcast_header,
.podcast_header a{
    width:100%;
    display: block;
}
/* Подкасты шапка */
.podcast_header__poster {
    width:100%;
    height:auto;
}
/* Подкасты список */
.podcast_item{
    display: flex;
    flex-wrap: nowrap;
    padding:5px 0px 10px 5px ;
    margin:0px 0px 0px 0px ;
    transition: all 0.2s ease-in-out;
    border-bottom:solid 1px #D8D8D8;
}
    @media (max-width: 750px) {
        .podcast_item {
            margin:20px 0px 0px 0px ;
            flex-wrap: wrap;
        }
        .podcast_item .podcast_item__img { order: 1; padding:10px;}
        .podcast_item .podcast_item__title_and_date { order: 5; width:100% !important;margin-top: 20px;}
        .podcast_item .podcast_item__imgControl { order: 4; margin-top:15px;}
        .podcast_item .podcast_item__share_link { order: 2; margin: 50px 20px 0px 20px;}
        .podcast_item .podcast_item__sound_time { order: 3; margin: 50px 20px 0px 10px;}
    }


.podcast_item.active{
    box-shadow: 0px 2px 20px rgba(42, 12, 66, 0.35);
}

.podcast_item .podcast_playing{
    visibility: hidden;
    height:1px;
}
.podcast_item.active .podcast_playing{
    visibility:visible;
    height:12px;
    width:auto;
    margin-left:10px;
}
.podcast_item__title_and_date {
    font-size:14px;
    width:80%;
}
    @media (max-width: 1400px) {
        .podcast_item__title_and_date {width:65%;}
    }
     @media (max-width: 1200px) {
        .podcast_item__title_and_date {width:80%;}
    }
.podcast_item__num{
    font-family: PT_Serif,sans-serif;
    font-size:1rem;
    padding:4% 2% 1%;
    width: 6%;
}
    @media (max-width: 1024px) {
        .podcast_item__num {padding:6% 2% 1% 2%;}
    }
    @media (max-width: 750px) {
        .podcast_item__num {padding:6% 2% 1% 2%;width: 8%;}
    }
.podcast_item__title,
.podcast_item__anonse,
.podcast_item__date{
    font-family: 'Montserrat-Regular',sans-serif;
    padding:2px 20px;
}
.podcast_item__anonce{
    font-size:14px;
    padding:4% 2% 1%;
}

.podcast_item__anonceMobile{display:none;}
.podcast_item__anonceNotmobile{display:block;}

    @media (max-width: 750px) {
        .podcast_item__anonceMobile   { width:100%;
                                        display:block;
                                        padding:10px;
                                        margin-bottom:60px;
                                        font-size:14px;
                                        background: #d5cfda;
                                        background: -moz-linear-gradient(top,  #ffffff 0%, #d5cfda 100%);
                                        background: -webkit-linear-gradient(top,  #ffffff 0%,#d5cfda 100%);
                                        background: linear-gradient(to bottom,  #ffffff 0%,#d5cfda 100%); 
                                        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d5cfda',GradientType=0 ); 
        }
        .podcast_item__anonceNotmobile {display:none !important;}
    }

.podcast_item__title {font-weight: 800;}
.podcast_item__date  {font-weight: normal;color:rgba(0, 0, 0, 0.67);}

.podcast_item__img{
    position: relative;
    width: 100px;
    height:100px;
    border:solid 1px #fff;
}



.podcast_item__imgBack {
    z-index:1;
}
.podcast_item__imgControl{
    width: 100px;
    height: 100px;
    z-index: 2;
    cursor: pointer;
    margin-top: 2px;
    border: none;
    padding: 0;
    background-color: transparent;
}
.podcast_item__imgControl:focus,
.podcast_item__imgControl:active {
    outline: none;
}
    @media (max-width: 1024px) {
        .podcast_item__imgControl {width: 60px;margin-top:15px;}
    }

.podcast_item__imgControl,
.podcast_item__imgControl.play {
    background: url(/design/images/podcast/podcast_play.png?v=4) center center no-repeat;
}
.podcast_item__imgControl.pause{
    background: url(/design/images/podcast/podcast_pause.png?v=4) center center no-repeat;
}
.podcast_item__sound_time{
    font-family: PT_Serif,sans-serif;
    color:#9A4799;
    padding:40px 10px 0px 10px;
}
    @media (max-width: 1024px) {
        .podcast_item__sound_time {margin:12px 0px 0px  0px;}
    }
    @media (max-width: 750px) {
        .podcast_item__sound_time {
            margin:0px 0px 0px  0px;
            padding:0px 10px 0px 10px;
            
        }
    }
.podcast_item__sound_timegray{
    font-family: 'Montserrat-Regular',sans-serif;
    color: rgba(0, 0, 0, 0.67);
    padding:15px 40px 0px 10px;
}
.podcast_item__share_link{
    background: url(/design/images/podcast/podcast_ico_share_link.svg) no-repeat;
    background-size: contain;
    width:25px;
    height:25px;
    margin:40px 10px 0px 10px;
    position:relative;
    cursor: pointer;
}
     @media (max-width: 1024px) {
        .podcast_item__share_link {margin:55px 10px 0px 10px;}
    }
    @media (max-width: 750px) {
        .podcast_item__share_link {margin:0px 10px 0px 10px;}
    }

/* Share */
.podcast_item__share_link_list {
    display:flex;
    flex-wrap: nowrap;
    justify-content: center;
    position:absolute;
    background:url(/design/images/podcast/podcast_ico_share_union.svg) no-repeat;
    background-size: contain;
    padding:20px;
    top: -44px;
    left: -60px;
    height: 90px;
    width: 133px;
    z-index: 1000;
}
.podcast_item__share_link_list li{
    list-style-type:none;
}
.podcast_item__share_ico_vk a.share{
    background:url(/design/images/podcast/podcast_ico_vk.svg);
    background-size: contain;
    width: 25px;
    height: 25px;
    margin:-7px 7px 0px 0px;
}
.podcast_item__share_ico_ok a.share{
    background:url(/design/images/podcast/podcast_ico_ok.svg);
    background-size: contain;
    width: 25px;
    height: 25px;
    margin:-7px 7px 0px 0px;
}
.podcast_item__share_ico_fb a.share{
    background:url(/design/images/podcast/podcast_ico_fb.svg);
    background-size: contain;
    width: 25px;
    height: 25px;
    margin:-7px 0px 0px 0px;
}


/*Поиск подкастов*/
.podcast_search, 
.podcast_search__form{
    width:100%;
    padding:10px;
}
.hidden { 
    visibility: hidden; 
}
.podcast_search .podcast_search__input {
    border-top:none;
    border-right:none;
    border-left:none;
    border-bottom:solid 1px rgba(83, 39, 120, 0.3);
    font-family: 'Montserrat-Regular', sans-serif;
    color: #000;
    font-size:16px;
    width:93%;
    display: block;
    float:left;
}
.podcast_search .podcast_search__input:focus {
    outline: none;
}
@media (max-width: 1024px) {
    .podcast_search .podcast_search__input {width:90%;}
}
.podcast_search__btn {
    display: block;
    width: 25px;
    height: 25px;
    border: none;
    background: url(/design/images/podcast/podcast_search.svg) no-repeat;
    background-size: contain;
    float: left;
    margin: 5px 0px 0px 20px;
    cursor: pointer;
}
.podcast_search__btn:focus {
    outline: none;
}
@media (max-width: 1024px) {
    .podcast_search__btn {margin:4px 1px 0px 3px !important;}
}
.podcast_search__spacer{
    width: 100%;
    height:150px;
}

/*Плеер подкастов */
#podcast_player {display:none;}

.podcast_player_blk{
    width:50%;
    min-width:100px;
    position:relative;
}
.podcast_player_wrap {
    width:100%;
    height:80px;
    position:fixed;
    bottom:5px;
    z-index:1000;
}
    @media (max-width: 750px) {
        .podcast_player_wrap {height:100px !important;}
    }
.podcast_item__img.inplayer,
.podcast_item__title_and_date.inplayer,
.podcast_item__sound_timegray.inplayer {
    margin-top:10px;
}
    @media (max-width: 1024px) {
        .podcast_item__sound_timegray.inplayer {display:none;}
    }
    @media (max-width: 500px) {
        .inplayer .podcast_item__title,
        .inplayer .podcast_item__date
        {font-size: 0.7rem !important;}
    }
.podcast_item__img.inplayer {
    margin-left:40px;
}
.podcast_player_block{
    width:95%;
    height:80px;
    margin:0 auto;
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgba(54, 14, 87, 0.3);
    border-radius: 5px;
}
    @media (max-width: 1200px) {
        .podcast_player_block {width:99%;}
        .scrollToTop {display:none !important;}
    }
    @media (max-width: 1024px) {
        .podcast_player_block {width:99%;}
    }
    @media (max-width: 750px) {
        .podcast_player_block{height:100px !important;}
    }
.podcast_player_control {
    padding:5px 0px 0px 0px;
    width:100%;
    display:flex;
    flex-wrap: nowrap;
}
.podcast_item__viceplacer{
    display: block;
    width:10%;
    position:relative;
}
.podcast_prev,
.podcast_next {
    position:absolute;
    z-index:1000;
    top:30px;
    cursor:pointer;
}

.podcast_prev.fade,
.podcast_next.fade {
    opacity: 0.2;
    cursor:default;
}
.podcast_prev {left: 60px;}
.podcast_next {left:200px;}

    @media (max-width: 700px) {
        .podcast_prev {left: 5px;}
    }
    @media (max-width: 700px) {
        .podcast_next {left: 95px;}
    }
    
.podcast_player_close {
    position:relative;
    top:30px;
    right:-40px;
    width:18px;
    height:18px;
    display: block;
    background: url(/design/images/podcast/podcast_close.svg);
    background-size: contain;
    z-index:3000;
}
@media (max-width: 1024px) {
        .podcast_player_close {
            right: 2px;
            top: 27px;
        }
    }
.podcast_player_blk .mplayer-block-play .play{
    background:url(/design/images/podcast/podcast_icon_play.svg) center center no-repeat !important;
}
.podcast_player_blk .mplayer-block-play .stop{
    background:url(/design/images/podcast/podcast_icon_pause.svg) center center no-repeat !important;
}
.podcast_player_blk .podcast_player{
    position:relative;
    left: 87px;
    top: 14px;
}
    @media (max-width: 700px) {
        .podcast_player_blk .podcast_player {left: 1px;}
    }
.podcast_player_blk #soundSlider-block .player-volume{
    margin-top: 3px;
}
    @media (max-width: 1250px) {
        .podcast_player_blk #soundSlider-block .player-volume {display:none;}
    }
.podcast_player_blk .mplayer-block-volume{
    height: 0px !important;}
.podcast_player_blk .icon-volume:before{
    content:"" !important;
    background: url(/design/images/podcast/podcast_icon_speaker.svg) no-repeat;
    display:block;
    width:24px;
    height:20px;
}
.podcast_player_blk #soundSlider-block .player-volume .icon-volume.icon-volume-off::before{
    content:"" !important;
    background: url(/design/images/podcast/podcast_icon_speakeroff.svg)  no-repeat;
    display:block;
    width:24px;
    height:20px;
}
.podcast_player_blk #soundSlider-block .sliderThumb{
    background: linear-gradient(180deg, #9A4799 0%, #5E227B 100%);
}
.podcast_player_blk #soundSlider-block .sliderThumb:hover{
    border: 2px solid #934295 !important;
}
.podcast_player_blk #soundSlider-block .sliderBack{
    background: linear-gradient(180deg, #9A4799 0%, #5E227B 100%);
}
.podcast_player_blk .progressbar-wrapper {
    bottom: 48px !important;left: -20px !important;
    width: 680% !important;
}
.podcast_player_blk .progressbar {
    display: block;
    background: linear-gradient(180deg, #9A4799 0%, #5E227B 100%);
    height: 4px;
}
.podcast_player_blk .mplayer-block-play, 
.podcast_player_blk .mplayer-block-progress, 
.podcast_player_blk .mplayer-block-volume {
    float: left;
    height: 1px;
    line-height: 47px;
}




/*Постраничкник*/
.podcast_pager {
    display: block;
	width: 100%;
	margin-top: 50px;
	margin-bottom: 40px;
	height: 40px;
	font-size: 1.1rem; 
	font-weight: normal;
	font-family: 'Montserrat-Regular',sans-serif;
}
.podcast_pager a {
	float: left;
	margin: 5px 5px; 
	padding: 5px 14px;
	background: #f1f1f1 !important;
	color: #5E227B !important;
	border-radius:50%;
	text-decoration: none;
}
.podcast_pager a:hover {
	float: left;
	margin: 5px 5px; 
	padding: 5px 14px;
	background: #fd7699 !important;
	color: #ffffff !important;
	border-radius: 50%;
	text-decoration: none;
}

.podcast_pager a.nobg, .podcast_pager a.nobg:hover  {background: none !important;}
.podcast_pager a.nobg:hover  {color:#fd7699 !important;}
.podcast_pager span, .podcast_pager b{
	float: left;
	margin: 5px 5px; 
	padding: 5px 14px;
	background: linear-gradient(180deg, #9A4799 0%, #5E227B 100%);
	color: #ffffff  !important;
	border-radius: 50%;
	text-decoration: none;
}










/*  анимация  */
.animated_slow {
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.animated-middle {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.animated-fast {
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
            transform: scale3d(0.8, 8.8, 0.8);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
            transform: scale3d(0.8, 0.8, 0.8);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
          animation-name: pulse;
}



/* пульс */

@-webkit-keyframes pulse-h {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
            transform: scale3d(0.97, 0.97, 0.97);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse-h {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
            transform: scale3d(0.97, 0.97, 0.97);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

.pulse-hover:hover {
  -webkit-animation-name: pulse-h;
          animation-name: pulse-h;
}





.animated.slow {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}


@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
            transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -6px, 0);
            transform: translate3d(0, -6px, 0);
  }

  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
            transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -4px, 0);
            transform: translate3d(0, -4px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-2px,0);
            transform: translate3d(0,-2px,0);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
            transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -6px, 0);
            transform: translate3d(0, -6px, 0);
  }

  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
            transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -4px, 0);
            transform: translate3d(0, -4px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-2px,0);
            transform: translate3d(0,-2px,0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
}



.slideUp{
	animation-name: slideUp;
	-webkit-animation-name: slideUp;	
	animation-duration: 0.2s;	
	-webkit-animation-duration: 0.2s;
	animation-timing-function: ease;	
	-webkit-animation-timing-function: ease;
	visibility: visible !important;			
}

@keyframes slideUp {
	0% {transform: translateY(100%);}
	50%{transform: translateY(-8%);}
	65%{transform: translateY(4%);}
	80%{transform: translateY(-4%);}
	95%{transform: translateY(2%);}			
	100% {transform: translateY(0%);}	
}

@-webkit-keyframes slideUp {
	0% {-webkit-transform: translateY(100%);}
	50%{-webkit-transform: translateY(-8%);}
	65%{-webkit-transform: translateY(4%);}
	80%{-webkit-transform: translateY(-4%);}
	95%{-webkit-transform: translateY(2%);}			
	100% {-webkit-transform: translateY(0%);}	
}

.slideUpSoft{
	animation-name: slideUpSoft;
	-webkit-animation-name: slideUpSoft;	
	animation-duration: 1.2s;	
	-webkit-animation-duration: 1.2s;
	animation-timing-function: ease;	
	-webkit-animation-timing-function: ease;
	visibility: visible !important;			
}

@keyframes slideUpSoft {
	0% {transform: translateY(100%);}
	50%{transform: translateY(-8%);}
	65%{transform: translateY(4%);}
	80%{transform: translateY(-4%);}
	95%{transform: translateY(2%);}			
	100% {transform: translateY(0%);}	
}

@-webkit-keyframes slideUpSoft {
	0% {-webkit-transform: translateY(100%);}
	50%{-webkit-transform: translateY(-8%);}
	65%{-webkit-transform: translateY(4%);}
	80%{-webkit-transform: translateY(-4%);}
	95%{-webkit-transform: translateY(2%);}			
	100% {-webkit-transform: translateY(0%);}	
}

@keyframes fadein {
  0%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 3.000);
 transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 3.000); }
  0% {-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); -moz-opacity: 0; -khtml-opacity: 0; opacity: 0;}
  100% {-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter: alpha(opacity=100); -moz-opacity: 1; -khtml-opacity: 1; opacity: 1;}
}
.fade-in, #mpajax_cover, #tooltip, #modal-overlay {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadein;
          animation-name: fadein;
}

@keyframes fadein-hover {
    100%, 
    50%, 
    0% {
        /*-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 10.000);*/
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 10.000); 
    }
}

.fade-in-hover:hover {
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadein-hover;
          animation-name: fadein-hover;
}



.imgzoom img {-webkit-transition: all 0.7s ease-in; -moz-transition: all 0.7s ease-in; 
-ms-transition: all 0.7s ease-in; -o-transition: all 0.7s ease-in; transition: all 0.7s ease-in;}
.imgzoom:hover img {-moz-transform: scale(1.1); -webkit-transform: scale(1.1); -o-transform: scale(1.1); transform:  scale(1.1);}
.imgzoom.middle:hover img {-moz-transform: scale(1.04); -webkit-transform: scale(1.04); -o-transform: scale(1.04); transform:  scale(1.04);}
.zoom {-webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; 
-ms-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease;}
.zoom:hover {-moz-transform: scale(1.1); -webkit-transform: scale(1.1); -o-transform: scale(1.1); transform:  scale(1.1);}

.zoom-slow {-ms-transition: all 2s ease-in; -webkit-transition: all 2s ease-in; -moz-transition: all 2s ease-in; 
 -o-transition: all 2s ease-in; transition: all 2s ease-in;}
.zoom-slow:hover {-moz-transform: scale(1.1); -webkit-transform: scale(1.1); -o-transform: scale(1.1); transform:  scale(1.1);}

.zoomblock  {-webkit-transition: all 0.7s ease-in; -moz-transition: all 0.7s ease-in; 
-ms-transition: all 0.7s ease-in; -o-transition: all 0.7s ease-in; transition: all 0.7s ease-in;}
.zoomblock:hover {-moz-transform: scale(1); -webkit-transform: scale(1); -o-transform: scale(1); transform:  scale(1);}

/* Search */
.podcast__search_wrapp {
    padding: 10px 0;
}
.podcast__search_form {
    display: flex;
}
.podcast__search_input {
    flex-grow: 1;
    height: 50px;
    padding-left: 68px;
    margin-right: 16px;
    border: 1px solid #83379e83;
    
    background: transparent url(/design/images/podcast/podcast_search.svg) no-repeat 34px 50% /28px auto;
    border-radius: 25px;
    outline: none;
}
.podcast__search_input:focus {
    border-color: #82379E;
}
@media (max-width: 575px) {
    .podcast__search_input {
        width: calc(100% - 90px);
        height: 40px;
        padding-right: 40px;
        margin: 0;
        
        border-radius: 20px;
    }
}
.podcast__search_button {
    min-width: 50px;
    padding: 0 81px;
    border: 0;
    
    font-family: "Montserrat-Regular", sans-serif;
    font-size: 20px;
    line-height: 50px;
    color: #82379E;
    
    background-color: #FAEEFF;
    border-radius: 25px;
    outline: none;
    cursor: pointer;
}
.podcast__search_button:hover,
.podcast__search_button:active {
    color: #fff;
    
    background-color: #82379E;
}
@media (max-width: 575px) {
    .podcast__search_button {
        padding: 0 31px;
        margin-left: -35px;

        font-size: 16px;
        line-height: 40px;

        border-radius: 20px;
    }
}
.podcast__clear_button {
    border: none;
    background: transparent url(/design/images/podcast/new_design/clear__ic.svg) no-repeat;
    background-position: center;
    background-size: contain;
    padding: 0;
    opacity: .3;
    transform: scale(1);
    transition: transform .2s linear;
}
.podcast__clear_button:focus {
    outline: none;
}
.podcast__clear_button:active {
    transform: scale(.97);
    transition: transform .2s linear;
}
/* Search */

@media (min-width: 1024px) {
    .podcast__container .section__header {
        padding: 0;
        margin-bottom: 32px;
    }
}
@media (max-width: 575px) {
    .podcast__container .section__header {
        margin-top: 16px;
    }
}
.podcast_header a[href="/brand-history#podcasts"] {
    display: none !important;
}
.podcast_header .header__content {
    grid-template-columns: repeat(4,1fr) !important;
    column-gap: 20px;
    padding: 10px 0;
}
@media (max-width: 575px) {
    .podcast_header .header__content {
        grid-template-columns: repeat(2,1fr) !important;
    }
}
.podcast__container .header__content a[href="/brand-history#podcasts"] {
    display: block !important;
}
#mainBlock .podcast__container .podcast_header .header__content {
    grid-template-columns: repeat(4,1fr) !important;
}
.podcast-player {
    z-index: 11;
}
.podcast-player #soundSlider-block .player-volume .icon-volume {
    color: #D21343 !important;
}

.podcast__pagination_wrapp {
    --podcast-player-gradient: #82379E;

    margin: 50px 0;
    display: flex;
    align-items: center;
}
.pagination__span-item, 
.pagination__link {
    padding: 14px 5px;
    /*background: var(--podcast-player-gradient);*/
    margin: 5px;
    display: flex;
    color: #fff;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat-Regular', sans-serif;
    transform: translateY(0);
    opacity: .8;
    transition: transform .1s linear;
}
.pagination__link:hover {
    color: #fff;
    text-decoration: none;
    opacity: 1;
    transform: scale(1.2);
    transition: transform .1s linear;
}
.pagination__span-item {
    opacity: 1;
    transform: scale(1.2);
    transition: transform .2s linear;
}
.podcast-player .share {
    background: none;
}