@font-face{
    font-family:'Montserrat';
    src: url('/design/images/assets/fonts/Montserrat-Regular.ttf') format('truetype');
}
@font-face{
    font-family:'Montserrat-Bold';
    src: url('/design/images/assets/fonts/Montserrat-Bold.ttf') format('truetype');
}

.playlist__podcast{
    background: #EBEBEB;
}
.playlist__podcast_wrap{
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	align-content: stretch;
	padding:10px;
}
.playlist__podcast_cover{
    display: block;
    margin: 0 auto;
    padding:10px;
}
.playlist__podcast_close{
    width: 12px;
    height: 12px;
    background: url('/design/images/podcast/playlist/playlist_close.svg') center center no-repeat;
    cursor: pointer;
    padding:12px;
}
.playlist__podcast_close:hover{
    width: 12px;
    height: 12px;
    background: url('/design/images/podcast/playlist/playlist_close.svg') center center no-repeat;
    cursor: pointer;
    padding:15px 12px 12px 12px ;
}

.playlist__podcast_title{
    font-size: 13px;
    line-height: 16px;
    text-align:center;
    color:#0C0D11;
}
.playlist__podcast_rubric{
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    color: #777777;
}
.playlist__podcast_player{
    width: 100%;
    margin:20px 0 20px 0;
}


.playlist__podcast_player_timeline{
    width: 94%;
    margin: auto auto 20px auto;
    height:10px;
    background: #B2B2B2;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	align-content: stretch;
}
.playlist__podcast_player_time_start{
    margin:-20px 0 0 0 ;
    font-size: 12px;
    line-height: 22px;
    color: #B2B2B2;
}
.playlist__podcast_player_time_end{
    margin:-20px 0 0 0 ;
    font-size: 12px;
    line-height: 22px;
    color: #B2B2B2;
}

/*кнопки контроля аудио*/
.playlist__podcast_control{
    width: 35%;
    margin:0 auto;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-around;
	align-items: center;
	align-content: center;
}
.playlist__podcast_control_prev{
    cursor: pointer;
    width: 32px;
    height: 20px;
    background: url('/design/images/podcast/playlist/playlist_prev.svg') center center no-repeat;
}
.playlist__podcast_control_next{
    cursor: pointer;
    width: 32px;
    height: 20px;
    background: url('/design/images/podcast/playlist/playlist_next.svg') center center no-repeat;
}
.playlist__podcast_control_play{
    cursor: pointer;
    width: 45px;
    height: 45px;
    background:#0C0D11 url('/design/images/podcast/playlist/playlist_play.svg') center center no-repeat;
    border-radius:46px;
    border:solid 2px #fff;
}
.playlist__podcast_control_prev:hover,
.playlist__podcast_control_next:hover,
.playlist__podcast_control_play:hover{
    opacity: 0.6;
}











/* Заголовок над плейлистом  */
.playlist__podcast_section_title{
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #0C0D11;
    text-align: center;
    padding:20px 0;
    font-weight: bold;
}

/* список воспроизведения */
.playlist__podcast_list{
    width: 100%;
    margin:0 auto;
}
.playlist__podcast_item{
    padding:8px;
    margin:0 0 4px 0;
    background:#fff;
    width: 100%;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	align-content: center;
}
.playlist__podcast_item:hover,
.playlist__podcast_item.active{
    border:solid 1px #777;
}
.playlist__podcast_item_cover{
    position: relative;
    width: 40px;
    height: 40px;
}
.playlist__podcast_item_img{
    position: relative;
    z-index: 1;
}
.playlist__podcast_play_pause{
    position: absolute;
    z-index: 2;
    width: 30px;
    height: 30px;
    top:5px;
    left:5px;
    border:0px;
}
.playlist__podcast_play_pause.play{
    background: url(/design/images/podcast/play-fill.svg) center center no-repeat;
    background-size: contain;
}
.playlist__podcast_play_pause.pause{
    background: url(/design/images/podcast/pause.svg) center center no-repeat; 
    background-size: contain;
}
.playlist__podcast_item_text{
    width: 90%;
    padding-left:20px;
}
.playlist__podcast_item_title{
    font-size: 12px;
    line-height: 15px;
    display: flex;
    align-items: center;
    color: #777777;
}
.playlist__podcast_item_timer{
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    color: #777777;
}
.playlist__podcast_item_control{
    width: 120px;
    display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	align-content: stretch;
}
.playlist__podcast_item_control_like{
    width: 40px;
    height: 40px;
    background: url(/design/images/podcast/playlist/playlist_like_ico.png) center center no-repeat;
    cursor:pointer;
}
.playlist__podcast_item_control_like:hover{
    transform: rotate(-15deg);
}
.playlist__podcast_item_control_trash{
    width: 40px;
    height: 40px;
    background: url(/design/images/podcast/playlist/playlist_trash_ico.png) center center no-repeat;
    cursor:pointer;
}
.playlist__podcast_item_control_trash:hover{
    opacity: 0.5;
}