#toggle-categories{
	position:relative;
	color: var(--color5);
	font-size: 18px;
	font-weight: 600;
	background:none;
}
#toggle-categories:hover{
	text-decoration:none;
}
#toggle-categories:focus{
	text-decoration:none;
}
#toggle-categories::after{
	position:absolute;
	content:"";
	width:30px;
	height:30px;
	background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2210%22%20viewBox%3D%220%200%2016%2010%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M1%201L8%208L15%201%22%20stroke%3D%22currentColor%22%20stroke-width%3D%221%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
	background-repeat:no-repeat;
	background-position:center center;
	top:65%;
	left:50%;
	transform:translateX(-50%);
}
#toggle-categories.active::after{
	transform: translateX(-50%) rotate(180deg);
}
.prod-category-section{}
.prod-category-section .prod-category-card{
	background-color:var(--color3);
	padding:20px 30px;
	border-radius:8px;
	border:3px solid var(--color3);
	height:100%;
	display:block;
	transition:all 0.2s linear;
}
.prod-category-section .prod-category-card:hover{
	background-color:#fff;
}

.prod-category-section .prod-category-card img{
	border-radius:8px;
	min-height:60px;
	height:160px;
	object-fit:contain;
}
.prod-category-section .card-body{}
.prod-category-section .card-body h4{
	color: var(--color5);
	font-style: normal;
	font-weight: 500;
}
@media screen and (max-width:500px){
	.prod-category-section .prod-category-card img{
	height:100%;
}
	.prod-category-section .prod-category-card {
	padding:15px;
	}
}