.video{
	margin-bottom: 20px;
}
.video .img{
	padding-top: 66.666666%;
	position: relative;
	overflow: hidden;
	background: #000000;
}
.video .img img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
	opacity: 0.5;
}
.video .img:hover img{
	opacity: 0.6;
}
.video .caption{
	padding: 10px 20px;
	background: #f6f6f6;
}
.video .tend a{
	font-size: 20px;
	line-height: 30px;
	font-weight: bold;
	font-family: 'Cabin Condensed', sans-serif;
	display: block;
	white-space: nowrap;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
	overflow: hidden;
}
.video .date{
	padding-left: 20px;
	position: relative;
	font-size: 13px;
	line-height: 21px;
	color: #999999;
}
.video .date:before{
	content: "\f073";
	position: absolute;
	font-family: 'Font Awesome 5 Free';
	font-weight: 500;
	left:0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.video .icon{
	width: 55px;
	height: 55px;
	background: #ffffff;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	z-index: 2;
	border-radius: 100%;
	font-size: 25px;
	line-height: 33px;
	pointer-events: none;
}
.video .icon i{
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.video .icon:before{

}
.video .icon:before{
    content: "";
    position: absolute;
    left: 50%;
    top:50%;
    -webkit-transform:translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    -o-transform:translate(-50%,-50%);
    -ms-transform:translate(-50%,-50%);
    transform:translate(-50%,-50%);
    width: 100%;
    height: 100%;
    -webkit-border-radius:50%;
    -moz-border-radius:50%;
    -o-border-radius:50%;
    -ms-border-radius:50%;
    border-radius:50%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    animation-name: spread-effect;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
}
.video:hover .icon:before{
    -webkit-box-shadow: 0 0 20px #fff;
    -moz-box-shadow: 0 0 20px #fff;
    -o-box-shadow: 0 0 20px #fff;
    box-shadow: 0 0 20px #fff;
}
@-webkit-keyframes spread-effect {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% {
        -ms-transform:translate(-50%,-50%) scale(1.4);
        -webkit-transform:translate(-50%,-50%) scale(1.4);
        transform:translate(-50%,-50%) scale(1.4);
        opacity: 0;
    }
}
@-moz-keyframes spread-effect {
    0% { opacity: 0; }
    20% { opacity: 1; }
    100% {
        -ms-transform:translate(-50%,-50%) scale(1.4);
        -webkit-transform:translate(-50%,-50%) scale(1.4);
        transform:translate(-50%,-50%) scale(1.4);
        opacity: 0;
    }
}
@-ms-keyframes spread-effect {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% {
        -ms-transform:translate(-50%,-50%) scale(1.4);
        -webkit-transform:translate(-50%,-50%) scale(1.4);
        transform:translate(-50%,-50%) scale(1.4);
        opacity: 0;
    }
}
@-o-keyframes spread-effect {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% {
        -ms-transform:translate(-50%,-50%) scale(1.4);
        -webkit-transform:translate(-50%,-50%) scale(1.4);
        transform:translate(-50%,-50%) scale(1.4);
        opacity: 0;
    }
}
@keyframes spread-effect {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% {
        -ms-transform:translate(-50%,-50%) scale(1.4);
        -webkit-transform:translate(-50%,-50%) scale(1.4);
        transform:translate(-50%,-50%) scale(1.4);
        opacity: 0;
    }
}
/*========================================================*/
.videoOther{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 300px;
}
.videoOther .title {
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    text-transform: uppercase;
    background: #f36f21;
    color: #ffffff;
    padding: 5px 15px;
    margin-bottom: 0px;
}
.videoOther .content {
    overflow: auto;
    height:-webkit-calc(100% - 35px);
    height:-moz-calc(100% - 35px);
    height:-o-calc(100% - 35px);
    height:calc(100% - 35px);
}
.videoOther .item{
    padding: 10px 0;
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}
.videoOther .item:after{
    content: "";
    display: block;
    clear: both;
}
.videoOther .item .img{
    width: 100px;
    margin-right: 10px;
    float: left;
}
.videoOther .item .img .wrap{
    padding-top: 66.666666%;
    position: relative;
    overflow: hidden;
}
.videoOther .item .img img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.videoOther .item .img:hover img{
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}
.videoOther .item .tend{
    overflow: hidden;
}
.videoOther .item .tend a{
    display: block;
    font-size: 14px;
    line-height: 22px;
    max-height: 66px;
    overflow: hidden;
    font-weight: normal;
}
/*=============================================*/
.contentVideoWrap{
    padding-right: 320px;
    position: relative;
}
.the-content{
    margin-bottom: 30px;
}
/*==========================================================================*/
/*============================RESPONSIVE====================================*/
/*==========================================================================*/
@media all and (max-width: 991px){
.contentVideoWrap{
    padding-right: 0;
}
.videoOther{
    position: initial;
    margin-bottom: 25px;
    width: 100%;
}
.videoOther .content{
    height: initial;
}
}

@media all and (max-width: 520px){
.vnt-video .row .col-xs-6{
	width: 100%;
}
}