.play-button {
	height: 72px;
	width: 72px;
	left: 50%;
	top: 50%;
	margin-left: -36px;
	margin-top: -36px;
	position: absolute;
}

.video-caption {
	display: none;
	text-align: left;
	font-size:0.8em;
	background-color: #ccc;
	padding: 5px;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	max-height: 60%;
	overflow: hidden;
}
.expanded .play-button {
	display: none !important;
}

.video-item:focus .video-caption,
.video-item:hover .video-caption,
.video-item:active .video-caption {
	display: block;
}

.video-gallery {
	width: 100%;
	display:block;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.video-gallery .video-reset {
	display: block;
	width:100%;
	text-align: right;
}

.video-item {
	margin: 0.5% 0;
	position: relative;
	background-color: #000;
	background-position: center;
	background-repeat: no-repeat;
	background-size:cover;
	display:inline-block;
}

.video-item iframe {
	border: none;
}

@media only screen and (max-width: 800px) {
	.video-item {
		width: 100%;
		display:block;
	}
	.video-caption {
		display:block;	
	}
	.expanded .video-caption {
		display:none !important;
	}
}