.store-wrap {
	width: 25%;
	min-width: 220px;
	position: relative;
	cursor: default;
	float: left;
}

.store-wrap .store-box {
	background-color: #fff;
	border: 1px solid #e2e2e2;
	position: relative;
	cursor: default;
	margin: 0 4px 8px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.store-wrap .store-box .image-box {
	vertical-align: middle;
	background: #fff;
	height: 220px;
	border: 3px solid #fff;
	overflow: hidden;
	position: relative;
	text-align: center;
}

.store-wrap .store-box .image-box a {
	display: block;
	height: 100%;
}

.store-wrap .store-box .image-box img {
	display: inline-block;
	max-height: 100%;
	width: auto;
	transition: all 0s linear 0.25s;
	-webkit-transition: all 0s linear 0.25s;
	-moz-transition: all 0s linear 0.25s;
	-ms-transition: all 0s linear 0.25s;
}

.store-wrap .store-box:hover .image-box img {
	opacity: 0.4;
}

.store-wrap .store-box .store-info-box {
	padding: 10px;
	text-align: center;
	border-top: 1px solid #e2e2e2;
}

.store-wrap .store-box .store-title {
	font-size: 14px;
	line-height: 20px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	font-weight: bold;
}
.store-wrap .store-box .store-title a,
.store-wrap .store-box .store-title a:hover {
	color: #222;
	text-decoration: none;
}
@media (max-width: 991px) {
	.store-wrap .store-box {
		width: 33.3%;
	}
}
@media (max-width: 767px){
	.store-wrap .store-box {
		width: 50%;
		float: left;
	}
}
@media (max-width: 580px){
	.store-wrap .store-box {
		width: 100%;
	}
}
