@charset "utf-8";

/* categoryWrap */
.lowerLayer .tab .tabBox .categoryWrap .category {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
}
.lowerLayer .tab .tabBox .categoryWrap .category li {
	width: 60px;
}
.lowerLayer .tab .tabBox .categoryWrap .category li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 50px;
	font-size: 15px;
	font-weight: 600;
	background: var(--whiteColor);
	border-radius: 8px;
	line-height: 1.2;
	padding: 0 10px;
	text-align: center;
}
.lowerLayer .tab .tabBox .categoryWrap .category li a[aria-current="page"] {
	border: 2px solid var(--greenColor);
}
.lowerLayer .tab .tabBox .categoryWrap .category li a.linkNone {
	pointer-events: none;
	color: #c3c3c3;
}
@media (max-width: 768px) {
	.lowerLayer .tab .tabBox .categoryWrap .category {
		gap: 10px;
	}
	.lowerLayer .tab .tabBox .categoryWrap .category li {
		width: calc((100% - 40px) / 5);
	}
	.lowerLayer .tab .tabBox .categoryWrap .category li a {
		height: 41px;
		font-size: 12.5px;
		border-radius: 6px;
		padding-bottom: 1px;
	}
}
