.content-wrapper {
	min-height:50vh;
	margin-bottom:82px;
	overflow:hidden;
}

.sub-category {
	background-color:#F1F2F6;
	overflow:auto;
}

/* Items grid */
.items-grid-wide {
	display:grid;
	grid-template-columns:25% 25% 25% 25%;
	gap:0;
	border-left:1px solid #e5e5e5;
	border-top:1px solid #e5e5e5;
	margin-bottom: 50px;
	background-color:#fff;
	margin:35px 0;
}

a.sub-cat-item {
	border-bottom: 1px solid #e5e5e5;
	border-right: 1px solid #e5e5e5;
	overflow:hidden;
	color:#fff;
	display:block;
	text-decoration:none;
	font-size:14px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.item-photo-box {
	height:180px;
	width:100%;
	text-align:center;
	display:block;
    overflow: hidden;
}

.item-photo-box span {
	display:block;
	width:100vw;
	height:180px;
	display:table-cell;
	/* vertical-align:middle; */
}

.item-photo-box img {
	width:300px;
	transition: all .2s ease-in-out;
}

.item-title-box {
	height:74px;
	display:block;
	transition: all .05s ease-in-out;
	font-size:13px;
	background-position:right center;
	background-repeat:no-repeat;
	padding-left:10px;
	position:relative;
	display: flex;
	align-items: center;
	text-align:left;
    padding-right:22px;
	color:var(--main-color);
	line-height:1.4em;
}

/*
a.sub-cat-item:hover {
	color:#000;
}
*/

.item-title-box:after {
	content:'';
	width:8px;
	height:13px;
	position:absolute;
	margin-right:10px;
	right:0;
	z-index:300;
	background-image: url("data:image/svg+xml,%3Csvg width='8' height='13' viewBox='0 0 8 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.2056 1.19958L6.2681 6.26208L1.2056 11.3246' stroke='%23c1c1c1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
	background-repeat:no-repeat;
	background-position:right center;
	background-size:8px 13px;
}

.sub-cat-item:hover .item-title-box {
	/* background-color:#e5e5e5; */
    color:var(--hover-color);
}

.sub-cat-item:hover .item-title-box:after {
   background-image: url("data:image/svg+xml,%3Csvg width='8' height='13' viewBox='0 0 8 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.2056 1.19958L6.2681 6.26208L1.2056 11.3246' stroke='%23424242' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

a.sub-cat-item:hover .item-photo-box img {
	transform: scale(1.01);
}

.item-subtitle {
	color:#9C9C9C;
	font-size:12px;
	margin:10px;
	display:block;
    min-height:36px;
	display:none;
}

.item-prop-preview {
	min-height:94px;
	font-size:13px;
	color:#000;
	margin:20px 10px;
	display:block;
	line-height:1.8em;
}

.item-prop-preview b {
	font-weight:500;
	color:#676767;
}


/* Individual styles for brand */
/* .brand-jonyang {
	background-color:#ffae05;
} */


/* width < 1280 */
@media (max-width: 1280px) {

	.item-title-box {
		background-position:150px center;
		grid-template-columns:58% 42%;
		padding-left:8px;
	}

	.item-prop-preview {
		min-height:126px;
	}
}


/* for width < 1100 */
@media (max-width: 1100px) {

	/* category items */
	.items-grid-wide {
		grid-template-columns:33.3% 33.3% 33.3%;
	}

	.item-prop-preview {
		min-height:100px;
	}
}

/* for width < 1024px */
@media (max-width: 1024px) {
	.item-prop-preview {
		min-height:126px;
	}
}

@media (max-width: 840px) {

	/* category items */
	.items-grid-wide {
		grid-template-columns:50% 50%;
	}
}

/* width < 600 */
@media (max-width: 600px) {

	/* Root sections */
	.items-grid-wide {
		grid-template-columns:100%;
	}

	.item-title-box {
		grid-template-columns:65% 35%;
	}

	.item-photo-box,
	.item-photo-box span {
		height:200px;
	}

	.item-prop-preview {
		min-height:90px;
	}
}
