.box-video{
    position: relative;
    display: inline-block;
    width: 100%;
    background-color: #f0f0f0;
    margin-bottom: 20px;
}

.box-video .video-header{
    width: 34%;
    float: right;
    padding: 18px 24px;
    margin-bottom: 0;
}

.box-video .video-header h1,
.box-video .video-header h2{
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 5px;
}

.box-video .video-header .post-time{
    color: #838383;
    font-size: 14px;
}

.box-video .video-header .post-text{
    margin: 5px 0 15px;
    max-height: 200px;
}

.box-video .video-header .post-author{
    font-weight: 600;
    text-align: right;
}

.box-video .video-header .socialicon{
    line-height: 12px;
}

.box-video .video-content{
    display: flex;
    width: 66%;
    float: left;
    margin-bottom: 0;
}

.other-video-heading{
    position: relative;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
    padding-bottom: 5px;
    font-size: 22px;
}

.other-video-heading:before{
    position: absolute;
    content: "";
    background-color: #0264cd;
    height: 1px;
    width: 200px;
    bottom: -1px;
}

.video-item .video-thumb{
    position: relative;
    height: auto;
    overflow: hidden;
    padding-top: 56%;
}

.video-item .video-thumb img{
    right: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    top: 0;
    position: absolute;
    object-position: 50% 50%;
    object-fit: cover;
}

.video-item h3{
    font-weight: 400;
    font-size: 15px;
    margin: 5px 0 16px;
    min-height: 45px;
}

.duration-video{
    position: absolute;
    height: 30px;
    bottom: 10px;
    left: 20px;
    opacity: 0.8;
    filter: invert(1);
}

.duration-video svg{
    height: 100%;
    width: 100%;
}

/*************** SCROLLBAR BASE CSS ***************/
 
.scroll-wrapper {
    overflow: hidden !important;
    padding: 0 !important;
    position: relative;
}
 
.scroll-wrapper > .scroll-content {
    border: none !important;
    box-sizing: content-box !important;
    height: auto;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none !important;
    overflow: scroll !important;
    padding: 0;
    position: relative !important;
    top: 0;
    width: auto !important;
}
 
.scroll-wrapper > .scroll-content::-webkit-scrollbar {
    height: 0;
    width: 0;
}
 
.scroll-element {
    display: none;
}
.scroll-element, .scroll-element div {
    box-sizing: content-box;
}
 
.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
    display: block;
}
 
.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
    cursor: default;
}
 
.scroll-textarea {
    border: 1px solid #cccccc;
    border-top-color: #999999;
}
.scroll-textarea > .scroll-content {
    overflow: hidden !important;
}
.scroll-textarea > .scroll-content > textarea {
    border: none !important;
    box-sizing: border-box;
    height: 100% !important;
    margin: 0;
    max-height: none !important;
    max-width: none !important;
    overflow: scroll !important;
    outline: none;
    padding: 2px;
    position: relative !important;
    top: 0;
    width: 100% !important;
}
.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
    height: 0;
    width: 0;
}

@media (max-width: 767.98px) {
    .box-video .video-header,
    .box-video .video-content{
        width: 100%;
    }

    .box-video .video-header .post-text{
        max-height: 500px;
    }
}