.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:var(--main-color);
	display:block;
	text-decoration:none;
	font-size:14px;
	font-weight: bold;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
    background-color:#fff;
}

.item-photo-box {
	height:220px;
	width:100%;
	text-align:center;
	display:block;
    background-color:#fff;
}


.item-photo-box span {
	display:block;
	width:100vw;
	height:220px;
	display:table-cell;
	/* vertical-align:middle; */
}

.item-photo-box img {
	max-height:220px;
	width:auto;
	height:auto;
	transition: all .2s ease-in-out;
}

.item-title-box {
	height:48px;
	display:grid;
	grid-template-columns:60% 40%;
	transition: all .05s ease-in-out;
	/* vertical-align:middle; */
	background-position:right center;
	background-repeat:no-repeat;
	padding-left:8px;
	position:relative;
}

.item-title-left i {
	display:table-cell;
	vertical-align: middle;
	height:48px;
    padding-right: 16px;
}

.item-title-right {
	height:48px;
	display: flex;
	align-items: center;
	text-align:center;
}

.item-title-right:before {
	content:'';
	width:8px;
	height:13px;
	position:absolute;
	margin-left:-15px;
	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:#fff;
}
.sub-cat-item:hover .item-title-right:before {
	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='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
a.sub-cat-item:hover {
	color:var(--hover-color);
}

a.sub-cat-item:hover .item-photo-box img {
	transform: scale(1.01);
}

.item-title-right img {
	max-width:80%;
	margin:0 auto;
	z-index:200;
}

.item-logo-cover {
	position:absolute;
	/* background-color:#FFF; */
	display:block;
	width:100%;
	height:50px;
	-webkit-transform: skew(-20deg);
	-moz-transform: skew(-20deg);
	-o-transform: skew(-20deg);
	z-index:100;
}


/* 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;
	}

	/* category root items */
	.item-title-inner a span {
		width:138px;
	}

	.item-title-inner {
		padding-left:6px;
		font-size:12px;
	}
}


/* for width < 1100 */
@media (max-width: 1100px) {

	/* category items */
	.items-grid-wide {
		grid-template-columns:33.3% 33.3% 33.3%;
	}
}


@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%;
	}
}
