.video-posts-widget-grid{
    display : flex;
    flex-direction : row;
    flex-wrap : wrap;
    justify-content : space-between;
    align-items : stretch;
}

.video-posts-left-column, .video-posts-right-column{
    flex-grow : 1;
    max-width : 48%;
    margin : 4px;
    border-radius : 12px;
}
.video-posts-right-column{
    display : flex;
    justify-content : center;
    align-items : center;   
    flex-wrap : wrap;
    padding : 0px;
    border-radius : 12px;
    max-height : 325px;
    overflow : auto;
}
.video-posts-right-column > *{
    max-width : 100%;
}
.video-posts-right-column video{
    max-width : 100%;
    border-radius : 12px 12px;
}
.video-posts-right-column .mejs-video{
    border-radius : 12px;
}
.video-posts-right-column .mejs-video .mejs-controls{
    border-radius : 0 0 12px 12px;
}
.video-posts-left-column{
    display : flex;
    flex-direction: column;
    justify-content : space-between;
    align-items : stretch;
    
    border : 1px solid #a8a8a8;
}
.video-posts-left-column .video-post-info{
    flex-grow : 1;
    min-height : 80px;
    
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items : center;
    
    transition : all 0.25s ease;
    /*background-color : #fefefe;*/
    cursor : pointer;
    padding: 8px 20px;
    overflow : hidden;
}
.video-posts-left-column .video-post-info:first-child{
    border-radius : 12px 12px 0 0;
}
.video-posts-left-column .video-post-info:last-child{
    border-radius : 0 0 12px 12px;
}
.video-posts-left-column .video-post-info:hover, .video-posts-left-column .video-post-info.active{
    background-color : #f3f3f3;
}

.video-posts-left-column .video-post-info .video-post-info--index{
    font-family: 'yekanbakhfanum';
    font-size : 35px;
    font-weight : 600;
    width : 85px;
    text-align : center;
    color : #1d1d1b;
}
.video-posts-left-column .video-post-info .video-post-info--content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    flex-grow : 1;
}
.video-posts-left-column .video-post-info:not(:last-child){
    width : 100%;
    border-bottom : 1px solid #a8a8a8;
}

.video-posts-left-column .video-post-info .video-post-info--title{
    font-family: 'yekanbakhfanum';
    font-size: 17px;
    font-weight : 500;
    color: #454545;
    text-align: right;
    line-height: 23px;
    margin-bottom: 12px;
}
.video-posts-left-column .video-post-info .video-post-info--meta{
    font-family: 'YekanBakhFaNum';
    font-size : 13px;
    color : #8a8a8a;
    text-align : right;
    line-height : 19px;
    margin-bottom : 0;
}
