.pd2-video-podcast{
    direction: rtl;
}
.pd2-item{
    direction: ltr;
}
.rtl .pd2-video-podcast{
    direction: ltr;
}
.rtl .pd2-item{
    direction: rtl;
}
.pd2-video-podcast{
    height: 340px;
    overflow-y: scroll;
    scrollbar-color: rgba(238, 238, 238, 1) rgba(250, 250, 250, 1);
    scrollbar-width: thin;
    scrollbar-gutter: stable;
    background-color: rgba(255, 255, 255, 1);
    padding: 16px 16px 40px;
    border-radius: 8px;
}
.pd2-video-podcast::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: rgba(238, 238, 238, 1);
}
.pd2-video-podcast::-webkit-scrollbar-thumb {
    background: rgba(250, 250, 250, 1);
}

.pd2-video-podcast::-webkit-scrollbar {
    width: 9px;
}

.pd2-video-podcast::-webkit-scrollbar-button {
    height: 0;
    display: none;
}

.pd2-item{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(238, 238, 238, 1);
    padding: 14px;
}
.pd2-item:last-child{
    border-bottom: 0;
}
.pd2-item-play{
    width: 36px;
    height: 36px;
    position:relative;
    cursor: pointer;
}
.pd2-item-play > span{
    position: absolute;
    inset: 0;
}
.pd2-item-play > span.pd2-item-play-icon-active{
    visibility: hidden;
}
.pd2-item-main{
    width: calc(100% - 100px);
    display: flex;
    gap: 10px;
}

.pd2-item .read-more-btn{
    border: 2px solid rgba(224, 224, 224, 1);
    padding: 8px 24px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(66, 66, 66, 1);
}
.pd2-item .read-more-btn:hover{
    border-color: rgba(212, 175, 51, 1);
}
.pd2-item-title{
    width: calc(100% - 41px);
    color: rgba(117, 117, 117, 1);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}
.pd2-item-title a{
    color: rgba(117, 117, 117, 1) !important;
}
.pd2-item-title a:hover{
    color: rgba(66, 66, 66, 1) !important;
}

.pd2-view-all{
    width: 100%;
    padding: 14px 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(245, 245, 245, 1);
    border-radius: 8px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.pd2-view-all-btn{
    color: rgba(33, 33, 33, 1);
    font-size: 12px;
    font-weight: 500;
}

.pd2-item-active .read-more-btn{
    border-color: rgba(212, 175, 51, 1);
}
.pd2-item-active .pd2-item-play-icon{
    visibility: hidden;
}
.pd2-item-active .pd2-item-play-icon-active{
    visibility: visible !important;
}



/***************main***************/
.pd2-video-podcast-main{
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 35px rgba(205, 205, 205, 0.17);
    background-color: #FFF;
    padding: 20px;
}
.pd2-main{
    width: 100%;
    display: flex;
    gap: 12px;
}
.pd2-main-info{
    width: calc(100% - 250px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px
}
.pd2-main-info > p{
    font-size: 16px;
    font-weight: 500;
    color: rgba(66, 66, 66, 1);
    margin: 0;
}
.pd2-main-info > span{
    font-size: 14px;
    font-weight: 400;
    color: rgba(117, 117, 117, 1);
}
.pd2-main-info-post-into{
    display: flex;
    gap: 12px;
}
.pd2-main-info-post-into > span{
    padding: 8px 12px;
    background-color: rgba(250, 250, 250, 1);
    border-radius: 8px;
    display: flex;
    gap: 8px;
    color: rgba(117, 117, 117, 1);
    font-weight: 500;
    justify-content: center;
    align-items: center;
}
.pd2-main-info-post-into > span > span:nth-child(1){

}
.pd2-main-info-post-into > span > span:nth-child(2){
    color: rgba(158, 158, 158, 1);
    font-size: 14px;
    font-weight: 500;
}
.pd2-main-image{
    width: 250px;
    overflow: hidden;
    border-radius: 8px;
}
.pd2-main-image img{
    border-radius: 8px !important;
    height: 194px !important;
    width: 100%;
    object-fit: fill;
}

.pd2-main-info-player{
    padding: 15px;
    padding-bottom: 3px;
    border-radius: 8px;
    background-color: rgba(250, 250, 250, 1);
}
.pd2-main-info-player-controller{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.pd2-main-info-player-controller > span{
    cursor: pointer;
}

.pd2-main-info-player-progress{
    width: 100%;
    height: 6px;
    border-radius: 16px;
    background-color: rgba(238, 238, 238, 1);
    position: relative;
}
.pd2-main-info-player-progress::before{
    content: "";
    position: absolute;
    top:0;
    left: 0;
    width: var(--progress , 0);
    height: 6px;
    border-radius: 16px;
    background-color: rgba(4, 7, 58, 1);
}
.pd2-main-info-player-progress > span{
    position: absolute;
    top: -5px;
    left: calc(var(--progress, 0) - 9px);
    width: 16px;
    height: 16px;
    border-radius: 16px;
    background-color: rgba(248, 248, 248, 1);
    border: 3px solid rgba(4, 7, 58, 1);
}

.pd2-main-info-player-time{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(117, 117, 117, 1);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
}
.pd2-main-info-player-play .pd2-main-info-player-btn-pause{
    display: none
}

@media (max-width: 600px) {
    .pd2-main {
        gap: 12px;
        flex-direction: column-reverse;
    }
    .pd2-main-image , .pd2-main-info{
        width: 100%;
    }
    .pd2-main-info-player{
        margin-top: 11px
    }
}