.wp-video-gallery {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	margin-bottom: 1.5em;
}

.wp-video-gallery__thumbnail {
	cursor: pointer;
	position: relative;
	background-size: cover;
	background-position: center;
	flex-shrink: 0;
}

.wp-video-gallery__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	opacity: .7;
	transition: opacity 250ms;
}

.wp-video-gallery__play svg {
	fill: #fff;
	-webkit-filter: drop-shadow( 1px 1px 3px rgba(0,0,0,.5) ); 
	        filter: drop-shadow( 1px 1px 3px rgba(0,0,0,.5) );
}

.wp-video-gallery__thumbnail:hover .wp-video-gallery__play {
	opacity: .95;
}

.wp-video-gallery__content {
	padding-left: 15px;
}

/* lightbox */

.wpvg-lightbox {
	display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .7);
    text-align: center;
    z-index: 9999;
}

.wpvg-lightbox.active {
	display: block;
}

.wpvg-lightbox__content {
	margin-top: 40px;
}

.wpvg-lightbox p {
	cursor: default;
    text-align: center;
    color: #fff;
    margin: 10px;
    font-size: 12px;
}

.wpvg-error {
	padding: 10px;
	border: 1px solid #c30c0c;
	background: rgba(195,12,12, .1);
}

.wpvg-error svg {
	width: 1em;
	height: 1em;
	color: #c30c0c;
	display: inline-block;
	vertical-align: middle;
	margin: 0 5px;
}

.wpvg-error svg path {
	color: #c30c0c;
}

.wpvg-error span {
	display: inline-block;
	vertical-align: middle;
}