#memes {
	max-width: 1100px;
	min-width: 50px;
	margin: 20px auto;
	padding: 10px 15px 10px 10px;
	background-color: #000;
	color: #FFF;
	border-radius: 8px;
	font-family: arial;
	//font-weight: bold;
	line-height: 22px;
	text-align: left;
	font-size: 14px;
  	display: flex;
  	flex-wrap: wrap;
  	display: flex;
  	flex-direction: row;
  	flex-wrap: wrap;
  	justify-content: center;
  	align-content: flex-start;
	align-items: center;
}

.flex-item {
	//flex-grow: 1;
	//flex-shrink: 0;
	//flex-basis: 200px;
	justify-content: flex-start;
	display: flex;
	//flex: 1 1 auto;
	margin: 5px;
}

#memes img {
	text-align: center;
	max-height: 190px;
	cursor: pointer;
	display: block;
	max-width: 500px;
}

figure {
	color: #000;
	background-color: #fff;
	margin: 0;
	font-size: 16px;
	display: table;
    width: 1px;
}

figure img, figcaption {
    display: table-row;
}

figcaption {
	text-align: center;
	font-weight: bold;
	padding-left: 15px;
}

#meme_logo {
	background-image: url('../img/memes.png');
	width: 606px;
	height: 93px;
	display: block;
	margin: 20px auto;
}

.product-image-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
}

.product-image-overlay img {
    width: auto;
    max-width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}