/**/

.video {
	display: block;
	margin: 15px 0;
}

.video figure {
	position: relative;
	overflow: hidden;
}

.video figure img {
	display: block;
	width: 100%;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

.video:hover figure img, .video:focus figure img {
	-webkit-transform: scale3d(1.1,1.1,1);
	transform: scale3d(1.1,1.1,1);
}

.video figure figcaption {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	
	color: #fff;
	padding: 15px;
	padding-top: 30px;
	
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0) 1%, rgba(0,0,0,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 1%,rgba(0,0,0,1) 100%);
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0) 1%,rgba(0,0,0,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 );
}

.video figure .play {
	opacity: 0;
	
	position: absolute;
	top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
	
	font-size: 40px;
	color: #fff;
	
	-o-transition:.3s;
	-ms-transition:.3s;
	-moz-transition:.3s;
	-webkit-transition:.3s;
	transition:.3s;
}

.video:hover figure .play, .video:focus figure .play {
	opacity: 1;
}

.video figure .overlay {
	opacity: 0;
	
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	
	background: rgba(0,0,0,0.5);
	
	-o-transition:.3s;
	-ms-transition:.3s;
	-moz-transition:.3s;
	-webkit-transition:.3s;
	transition:.3s;
}

.video:hover figure .overlay, .video:focus figure .overlay {
	opacity: 1;
}