/* category listing */
section.category-listing {
    text-align: center;
}
div.catListingBox {
    text-align: center;
    margin: 15px 0;
}
div.category-image {
    margin-bottom: 10px;
    height: 250px;
    position: relative;
}
div.category-image img {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    max-height: 250px; /* Whatever your containing div's height is set to */
    margin: 0 auto;
    left: 0;
    right: 0;
}
div.category-image-button-wrapper {
    display: inline-block;
}
div.category-image-button {
    cursor: pointer;
}
div.catListingBox:hover {
    /*cursor: pointer;*/
}
.catListingBox:hover {
	-webkit-box-shadow: 0px 0px 3px 2px #B3B3B3;
	box-shadow: 0px 0px 3px 2px #B3B3B3;
}
.catListingBox .btn-primary {
	color: #626262;
	/*background-color: #ffffff;*/
	border-color: #ffffff;
}
.catListingBox:hover .btn-primary {
	color: #000000;
}
figure.sub-category {
    position: relative;
    border: 2px solid #DDDDDD;
    border-radius: 0;
    padding: 10px 10px 50px;
	height: 300px;
}
figure.sub-category img {
    display: block;
    vertical-align: middle;
	max-height: 100%;
	width: auto;
	position: absolute;
	top: 50%;
	-ms-transform: translateY(-58%);
	transform: translateY(-58%);
	margin: 0 auto;
	left: 0;
	right: 0;
}
figure.sub-category figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 30px;
    width: 250px;
    border-radius: 5px;
    margin: 10px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
img.category-image {
    margin: auto;
}
a.category-link {
    text-decoration: none;
    display: block;
    vertical-align: bottom;
}
span.category-name {
    font-size: 14px;
    font-weight: bold;
}
